@ws-ui/shared 0.0.50 → 0.1.1
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/declarations/datasources/datasource.d.ts +4 -0
- package/dist/declarations/datasources/interfaces/catalog.d.ts +2 -0
- package/dist/declarations/webform/webform.d.ts +1 -0
- package/dist/index.cjs.js +34 -34
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +538 -541
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/shared.d.ts +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/model.d.ts +1 -0
- package/package.json +9 -4
|
@@ -98,6 +98,7 @@ declare namespace datasources {
|
|
|
98
98
|
type: string;
|
|
99
99
|
kind: EAttributeKind;
|
|
100
100
|
scope: AttributeScope;
|
|
101
|
+
uuid?: string;
|
|
101
102
|
} & Partial<{
|
|
102
103
|
indexKind: TIndexType;
|
|
103
104
|
autogenerate: boolean;
|
|
@@ -152,6 +153,9 @@ declare namespace datasources {
|
|
|
152
153
|
key: IDataClassKey[];
|
|
153
154
|
methods: catalog.IMethod[];
|
|
154
155
|
exposed?: boolean;
|
|
156
|
+
extraProperties?: IAttributeProperties;
|
|
157
|
+
virtual?: boolean;
|
|
158
|
+
uuid?: string;
|
|
155
159
|
}
|
|
156
160
|
|
|
157
161
|
type IDataClasses = { [key: string]: IDetailedDataClass };
|
|
@@ -68,6 +68,7 @@ declare namespace catalog {
|
|
|
68
68
|
collectionName: string;
|
|
69
69
|
scope: DataclassScope;
|
|
70
70
|
attributes: IAttribute[];
|
|
71
|
+
uuid?: string;
|
|
71
72
|
} & Partial<{
|
|
72
73
|
defaultTopSize: number;
|
|
73
74
|
leave_tag_on_delete: boolean;
|
|
@@ -86,6 +87,7 @@ declare namespace catalog {
|
|
|
86
87
|
type: string;
|
|
87
88
|
kind: AttributeKind;
|
|
88
89
|
scope: Scope;
|
|
90
|
+
uuid?: string;
|
|
89
91
|
} & Partial<{
|
|
90
92
|
indexKind?: AttributeIndexKind | null;
|
|
91
93
|
invalidAlias: boolean;
|