@node-projects/web-component-designer 0.1.227 → 0.1.229

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.
@@ -5,5 +5,6 @@ export declare enum BindableObjectType {
5
5
  number = "number",
6
6
  string = "string",
7
7
  date = "date",
8
- color = "color"
8
+ color = "color",
9
+ object = "object"
9
10
  }
@@ -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,kBAQX;AARD,WAAY,kBAAkB;IAC1B,6CAAuB,CAAA;IACvB,uCAAiB,CAAA;IACjB,yCAAmB,CAAA;IACnB,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;IACb,qCAAe,CAAA;AACnB,CAAC,EARW,kBAAkB,KAAlB,kBAAkB,QAQ7B"}
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 +1 @@
1
- export type BindableObjectsTarget = 'binding' | 'script' | 'property';
1
+ export type BindableObjectsTarget = 'itemsView' | 'binding' | 'script' | 'property';
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "A WYSIWYG designer webcomponent for html components",
3
3
  "name": "@node-projects/web-component-designer",
4
- "version": "0.1.227",
4
+ "version": "0.1.229",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",