@node-projects/web-component-designer 0.1.111 → 0.1.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13,6 +13,11 @@ export declare class PropertyGrid extends BaseCustomWebComponentLazyAppend {
|
|
|
13
13
|
private _instanceServiceContainer;
|
|
14
14
|
private _selectionChangedHandler;
|
|
15
15
|
static readonly style: CSSStyleSheet;
|
|
16
|
+
static readonly properties: {
|
|
17
|
+
serviceContainer: ObjectConstructor;
|
|
18
|
+
instanceServiceContainer: ObjectConstructor;
|
|
19
|
+
selectedItems: ArrayConstructor;
|
|
20
|
+
};
|
|
16
21
|
constructor();
|
|
17
22
|
set serviceContainer(value: ServiceContainer);
|
|
18
23
|
get serviceContainer(): ServiceContainer;
|
|
@@ -26,6 +26,11 @@ export class PropertyGrid extends BaseCustomWebComponentLazyAppend {
|
|
|
26
26
|
box-shadow: inset 0 3px 0 var(--highlight-pink, #e91e63);
|
|
27
27
|
}
|
|
28
28
|
`;
|
|
29
|
+
static properties = {
|
|
30
|
+
serviceContainer: Object,
|
|
31
|
+
instanceServiceContainer: Object,
|
|
32
|
+
selectedItems: Array
|
|
33
|
+
};
|
|
29
34
|
constructor() {
|
|
30
35
|
super();
|
|
31
36
|
this._restoreCachedInititalValues();
|
|
@@ -132,7 +132,7 @@ export class PropertyGridWithHeader extends BaseCustomWebComponentLazyAppend {
|
|
|
132
132
|
};
|
|
133
133
|
}
|
|
134
134
|
set serviceContainer(value) {
|
|
135
|
-
this.
|
|
135
|
+
this._pg.serviceContainer = value;
|
|
136
136
|
}
|
|
137
137
|
set instanceServiceContainer(value) {
|
|
138
138
|
this._instanceServiceContainer = value;
|
package/package.json
CHANGED