mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
Add css styles options to all components (#2454)
* add css styling in all components * formatting * formatting * small typo * small typo * use builder to add style instead
This commit is contained in:
committed by
Kevin Cunnane
parent
287811f4ab
commit
10f05e75ce
@@ -340,7 +340,7 @@ class FormContainerBuilder extends ContainerBuilderImpl<sqlops.FormContainer, sq
|
||||
itemConfig.config.isInGroup = true;
|
||||
this._component.insertItem(component.component as ComponentWrapper, componentIndex, itemConfig.config);
|
||||
if (componentIndex) {
|
||||
componentIndex ++;
|
||||
componentIndex++;
|
||||
}
|
||||
this.addComponentActions(component, layout);
|
||||
});
|
||||
@@ -560,6 +560,10 @@ class ComponentWrapper implements sqlops.Component {
|
||||
return this.notifyPropertyChanged();
|
||||
}
|
||||
|
||||
public updateProperty(key: string, value: any): Thenable<void> {
|
||||
return this.setProperty(key, value);
|
||||
}
|
||||
|
||||
protected notifyPropertyChanged(): Thenable<void> {
|
||||
return this._proxy.$setProperties(this._handle, this._id, this.properties);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user