@node-projects/web-component-designer 0.1.227 → 0.1.228
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.
- package/dist/elements/services/bindableObjectsService/BindableObjectType.d.ts +2 -1
- package/dist/elements/services/bindableObjectsService/BindableObjectType.js +1 -0
- package/dist/elements/services/bindableObjectsService/BindableObjectType.js.map +1 -1
- package/dist/elements/services/bindableObjectsService/IBindableObject.d.ts +2 -1
- package/dist/elements/widgets/designerView/DomConverter.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,5 +7,6 @@ export var BindableObjectType;
|
|
|
7
7
|
BindableObjectType["string"] = "string";
|
|
8
8
|
BindableObjectType["date"] = "date";
|
|
9
9
|
BindableObjectType["color"] = "color";
|
|
10
|
+
BindableObjectType["object"] = "object";
|
|
10
11
|
})(BindableObjectType || (BindableObjectType = {}));
|
|
11
12
|
//# sourceMappingURL=BindableObjectType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BindableObjectType.js","sourceRoot":"","sources":["../../../../src/elements/services/bindableObjectsService/BindableObjectType.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"BindableObjectType.js","sourceRoot":"","sources":["../../../../src/elements/services/bindableObjectsService/BindableObjectType.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,kBASX;AATD,WAAY,kBAAkB;IAC1B,6CAAuB,CAAA;IACvB,uCAAiB,CAAA;IACjB,yCAAmB,CAAA;IACnB,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,uCAAiB,CAAA;AACrB,CAAC,EATW,kBAAkB,KAAlB,kBAAkB,QAS7B"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { BindableObjectType } from './BindableObjectType.js';
|
|
2
2
|
export interface IBindableObject<T> {
|
|
3
|
-
readonly bindabletype?: 'signal' | 'property';
|
|
3
|
+
readonly bindabletype?: 'signal' | 'property' | 'context';
|
|
4
4
|
readonly specialType?: string;
|
|
5
5
|
readonly type: BindableObjectType;
|
|
6
6
|
readonly name: string;
|
|
7
7
|
readonly fullName: string;
|
|
8
8
|
readonly children?: false | IBindableObject<T>[];
|
|
9
9
|
readonly originalObject?: T;
|
|
10
|
+
readonly description?: string;
|
|
10
11
|
}
|
|
@@ -2,6 +2,6 @@ import { IDesignItem } from "../../item/IDesignItem.js";
|
|
|
2
2
|
export declare class DomConverter {
|
|
3
3
|
static normalizeAttributeValue(value: string | number, useSingleQuotes?: boolean): string;
|
|
4
4
|
static normalizeContentValue(value: string): string;
|
|
5
|
-
static IsSelfClosingElement(tag: string): tag is "area" | "base" | "br" | "col" | "embed" | "hr" | "img" | "input" | "keygen" | "
|
|
5
|
+
static IsSelfClosingElement(tag: string): tag is "link" | "area" | "base" | "br" | "col" | "embed" | "hr" | "img" | "input" | "keygen" | "meta" | "param" | "source" | "track" | "wbr";
|
|
6
6
|
static ConvertToString(designItems: IDesignItem[], beautifyOutput?: boolean, updatePositions?: boolean): string;
|
|
7
7
|
}
|
package/package.json
CHANGED