@vgip/meta-ui 1.4.4 → 1.5.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/esm2020/lib/common/metaAutofocus.directive.mjs +3 -3
- package/esm2020/lib/common/metaIcons.pipe.mjs +3 -3
- package/esm2020/lib/common/metaModel.pipe.mjs +3 -3
- package/esm2020/lib/common/metaStripHtml.pipe.mjs +3 -3
- package/esm2020/lib/common/utils/colorThemes.mjs +3 -1
- package/esm2020/lib/field.mjs +205 -175
- package/esm2020/lib/fieldAbstract.mjs +65 -65
- package/esm2020/lib/fieldBoolean/index.mjs +4 -4
- package/esm2020/lib/fieldDatetime/index.mjs +8 -8
- package/esm2020/lib/fieldInput/index.mjs +7 -7
- package/esm2020/lib/fieldRadio/index.mjs +8 -8
- package/esm2020/lib/fieldRichtext/index.mjs +8 -8
- package/esm2020/lib/fieldText/index.mjs +4 -4
- package/esm2020/lib/fieldUnknown/index.mjs +3 -3
- package/esm2020/lib/index.mjs +19 -21
- package/esm2020/lib/services/metaContext/index.mjs +3 -3
- package/esm2020/lib/services/metaMsg/index.mjs +3 -3
- package/esm2020/lib/services/metaReference/index.mjs +3 -3
- package/esm2020/lib/services/metaResource/index.mjs +3 -3
- package/esm2020/lib/services/metaResource/metaHttpClient.mjs +3 -3
- package/esm2020/lib/services/metaTracker/index.mjs +3 -3
- package/esm2020/lib/services/resourceDrafts/index.mjs +3 -3
- package/fesm2015/vgip-meta-ui.mjs +356 -326
- package/fesm2015/vgip-meta-ui.mjs.map +1 -1
- package/fesm2020/vgip-meta-ui.mjs +356 -326
- package/fesm2020/vgip-meta-ui.mjs.map +1 -1
- package/{vgip-meta-ui.d.ts → index.d.ts} +0 -0
- package/lib/common/metaAutofocus.directive.d.ts +1 -1
- package/lib/common/metaIcons.pipe.d.ts +1 -1
- package/lib/common/metaModel.pipe.d.ts +1 -1
- package/lib/common/metaStripHtml.pipe.d.ts +1 -1
- package/lib/field.d.ts +32 -25
- package/lib/fieldAbstract.d.ts +9 -9
- package/lib/fieldBoolean/index.d.ts +1 -1
- package/lib/fieldDatetime/index.d.ts +2 -2
- package/lib/fieldInput/index.d.ts +2 -2
- package/lib/fieldRadio/index.d.ts +2 -2
- package/lib/fieldRichtext/index.d.ts +1 -1
- package/lib/fieldText/index.d.ts +1 -1
- package/lib/fieldUnknown/index.d.ts +1 -1
- package/package.json +5 -5
|
File without changes
|
|
@@ -6,5 +6,5 @@ export declare class MetaAutofocusDirective implements AfterContentInit {
|
|
|
6
6
|
constructor(elementRef: ElementRef);
|
|
7
7
|
ngAfterContentInit(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaAutofocusDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MetaAutofocusDirective, "[vgipMetaFormAutofocus]", never, { "vgipMetaFormAutofocus": "vgipMetaFormAutofocus"; }, {}, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MetaAutofocusDirective, "[vgipMetaFormAutofocus]", never, { "vgipMetaFormAutofocus": "vgipMetaFormAutofocus"; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -6,5 +6,5 @@ export declare class MetaIconsPipe implements PipeTransform {
|
|
|
6
6
|
constructor(sanitizer: DomSanitizer);
|
|
7
7
|
transform(value: any, ...args: any[]): any;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaIconsPipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MetaIconsPipe, "metaIcons">;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MetaIconsPipe, "metaIcons", false>;
|
|
10
10
|
}
|
|
@@ -4,5 +4,5 @@ export declare class MetaModelPipe implements PipeTransform {
|
|
|
4
4
|
constructor();
|
|
5
5
|
transform(value: any, args?: any): any;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaModelPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MetaModelPipe, "metaModel">;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MetaModelPipe, "metaModel", false>;
|
|
8
8
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class MetaStripHtmlPipe implements PipeTransform {
|
|
4
4
|
transform(value: string): any;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaStripHtmlPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MetaStripHtmlPipe, "metaStripHtml">;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MetaStripHtmlPipe, "metaStripHtml", false>;
|
|
7
7
|
}
|
package/lib/field.d.ts
CHANGED
|
@@ -24,9 +24,9 @@ export declare class MetaRefDialog implements OnInit {
|
|
|
24
24
|
preferResourceType: string;
|
|
25
25
|
theme: string;
|
|
26
26
|
constructor(el: ElementRef);
|
|
27
|
-
ngOnInit(): void;
|
|
28
27
|
get isEditable(): boolean;
|
|
29
28
|
get isPersistent(): any;
|
|
29
|
+
ngOnInit(): void;
|
|
30
30
|
close(): void;
|
|
31
31
|
dismiss(): void;
|
|
32
32
|
onResourceDone(result: any): void;
|
|
@@ -35,16 +35,16 @@ export declare class MetaRefDialog implements OnInit {
|
|
|
35
35
|
private keyEventListener;
|
|
36
36
|
private applyTheme;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaRefDialog, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetaRefDialog, "ng-component", never, {}, {}, never, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaRefDialog, "ng-component", never, {}, {}, never, never, false, never>;
|
|
39
39
|
}
|
|
40
40
|
export declare class FieldComposite extends FieldAbstract implements OnInit {
|
|
41
41
|
meta: any;
|
|
42
42
|
value: any;
|
|
43
|
-
ngOnInit(): void;
|
|
44
43
|
get isRow(): boolean;
|
|
45
44
|
get fields(): any;
|
|
45
|
+
ngOnInit(): void;
|
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComposite, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComposite, "ng-component", never, { "meta": "meta"; }, {}, never, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComposite, "ng-component", never, { "meta": "meta"; }, {}, never, never, false, never>;
|
|
48
48
|
}
|
|
49
49
|
export declare class FieldSelect extends FieldAbstract implements OnInit {
|
|
50
50
|
private componentFactoryResolver;
|
|
@@ -60,27 +60,34 @@ export declare class FieldSelect extends FieldAbstract implements OnInit {
|
|
|
60
60
|
isCreatable: boolean;
|
|
61
61
|
asyncOptions: Array<any>;
|
|
62
62
|
searching: boolean;
|
|
63
|
+
filteredOptions: Array<any>;
|
|
64
|
+
searchInputText: '';
|
|
65
|
+
searchInput: HTMLInputElement;
|
|
63
66
|
constructor(componentFactoryResolver: ComponentFactoryResolver, referenceService: MetaReferenceService, metaResource: MetaResourceService);
|
|
67
|
+
get options(): any;
|
|
68
|
+
get groupedOptions(): any;
|
|
69
|
+
get resourceService(): any;
|
|
70
|
+
get optionsBackup(): any;
|
|
64
71
|
static setup(instance: any, parent: any, meta: any): void;
|
|
65
72
|
ngOnInit(): void;
|
|
66
73
|
onActivated(ev: any): void;
|
|
74
|
+
detectSearchBlock(element: any): any;
|
|
67
75
|
onBlur(ev: any): void;
|
|
68
76
|
onOptionSelect(ev: any, option: any): void;
|
|
69
77
|
clear(ev?: any): boolean;
|
|
70
78
|
openResource(ev: any): void;
|
|
71
79
|
showDropdown(): void;
|
|
72
80
|
dismissDropdown(event?: any): void;
|
|
81
|
+
onSearchChange(): void;
|
|
82
|
+
clearSearchField(): void;
|
|
73
83
|
private ensureDropdownIsVisible;
|
|
74
84
|
private ensureDropdownOptionIsVisible;
|
|
75
85
|
private filterOptions;
|
|
76
86
|
private clickout;
|
|
77
87
|
private keydown;
|
|
78
|
-
get options(): any;
|
|
79
|
-
get groupedOptions(): any;
|
|
80
88
|
private searchOptions;
|
|
81
|
-
get resourceService(): any;
|
|
82
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldSelect, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldSelect, "ng-component", never, {}, {}, never, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldSelect, "ng-component", never, {}, {}, never, never, false, never>;
|
|
84
91
|
}
|
|
85
92
|
export declare class FieldReference extends FieldAbstract implements OnInit {
|
|
86
93
|
private componentFactoryResolver;
|
|
@@ -114,6 +121,12 @@ export declare class FieldReference extends FieldAbstract implements OnInit {
|
|
|
114
121
|
asyncSuggestions: Array<any>;
|
|
115
122
|
smartSuggestions: Array<any>;
|
|
116
123
|
constructor(componentFactoryResolver: ComponentFactoryResolver, referenceService: MetaReferenceService, metaResource: MetaResourceService, metaMsgService: MetaMsgService, metaContext: MetaContextService, metaTracker: MetaTrackerService);
|
|
124
|
+
get disabled(): any;
|
|
125
|
+
get showTypes(): any;
|
|
126
|
+
get suggestions(): any[];
|
|
127
|
+
get hasAppendButton(): any;
|
|
128
|
+
get resourceService(): any;
|
|
129
|
+
get metaReference(): any;
|
|
117
130
|
ngOnInit(): void;
|
|
118
131
|
clearSearchResourceType(): void;
|
|
119
132
|
onSearchResourceTypeChanged(resourceType?: any): void;
|
|
@@ -136,25 +149,19 @@ export declare class FieldReference extends FieldAbstract implements OnInit {
|
|
|
136
149
|
private buildPlaceholderLabel;
|
|
137
150
|
private keydown;
|
|
138
151
|
private buildExternalLink;
|
|
139
|
-
get disabled(): any;
|
|
140
|
-
get showTypes(): any;
|
|
141
|
-
get suggestions(): any[];
|
|
142
|
-
get hasAppendButton(): any;
|
|
143
152
|
private searchAutoSuggestions;
|
|
144
|
-
get resourceService(): any;
|
|
145
|
-
get metaReference(): any;
|
|
146
153
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldReference, never>;
|
|
147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReference, "ng-component", never, {}, {}, never, never>;
|
|
154
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReference, "ng-component", never, {}, {}, never, never, false, never>;
|
|
148
155
|
}
|
|
149
156
|
export declare class FieldList extends FieldAbstract implements OnInit {
|
|
150
157
|
items: Array<any>;
|
|
151
158
|
value: any;
|
|
152
|
-
ngOnInit(): void;
|
|
153
159
|
get list(): any;
|
|
160
|
+
ngOnInit(): void;
|
|
154
161
|
add(): void;
|
|
155
162
|
remove(itemIndex: any): void;
|
|
156
163
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldList, never>;
|
|
157
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldList, "ng-component", never, {}, {}, never, never>;
|
|
164
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldList, "ng-component", never, {}, {}, never, never, false, never>;
|
|
158
165
|
}
|
|
159
166
|
export declare class MetaLayout implements OnInit, AfterContentChecked, OnChanges {
|
|
160
167
|
private componentFactoryResolver;
|
|
@@ -177,6 +184,7 @@ export declare class MetaLayout implements OnInit, AfterContentChecked, OnChange
|
|
|
177
184
|
integrationCode: string;
|
|
178
185
|
resourceType: string;
|
|
179
186
|
constructor(componentFactoryResolver: ComponentFactoryResolver, ref: ChangeDetectorRef, el: ElementRef, metaResource: MetaResourceService, referenceService: MetaReferenceService);
|
|
187
|
+
get isPersistedResource(): any;
|
|
180
188
|
ngOnInit(): void;
|
|
181
189
|
ngOnChanges(changes: any): void;
|
|
182
190
|
countOptionalFields(): void;
|
|
@@ -184,10 +192,9 @@ export declare class MetaLayout implements OnInit, AfterContentChecked, OnChange
|
|
|
184
192
|
ngAfterContentChecked(): void;
|
|
185
193
|
toggleOptionalFields(): void;
|
|
186
194
|
openChild(childResource: any, childModel?: any): void;
|
|
187
|
-
get isPersistedResource(): any;
|
|
188
195
|
private applyTheme;
|
|
189
196
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaLayout, never>;
|
|
190
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetaLayout, "vgip-meta-layout", never, { "meta": "meta"; "resource": "resource"; "integration": "integration"; "type": "type"; "preview": "preview"; "theme": "theme"; }, {}, never, never>;
|
|
197
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaLayout, "vgip-meta-layout", never, { "meta": "meta"; "resource": "resource"; "integration": "integration"; "type": "type"; "preview": "preview"; "theme": "theme"; }, {}, never, never, false, never>;
|
|
191
198
|
}
|
|
192
199
|
export declare class MetaResource implements OnInit, OnChanges {
|
|
193
200
|
private componentFactoryResolver;
|
|
@@ -217,6 +224,8 @@ export declare class MetaResource implements OnInit, OnChanges {
|
|
|
217
224
|
isEditable: boolean;
|
|
218
225
|
isPersistent: boolean;
|
|
219
226
|
constructor(componentFactoryResolver: ComponentFactoryResolver, ref: ChangeDetectorRef, el: ElementRef, metaResourceService: MetaResourceService, metaContext: MetaContextService, metaMsgService: MetaMsgService);
|
|
227
|
+
get niceFields(): any;
|
|
228
|
+
get fieldNames(): string[];
|
|
220
229
|
ngOnInit(): void;
|
|
221
230
|
ngOnChanges(changes: any): void;
|
|
222
231
|
editMode(): void;
|
|
@@ -230,8 +239,6 @@ export declare class MetaResource implements OnInit, OnChanges {
|
|
|
230
239
|
showParsedError(resourceForm: any, parsedError: any): void;
|
|
231
240
|
submit(resourceForm: any): void;
|
|
232
241
|
clearFormErrors(): void;
|
|
233
|
-
get niceFields(): any;
|
|
234
|
-
get fieldNames(): string[];
|
|
235
242
|
private onMenuClickout;
|
|
236
243
|
private suggestFieldProperty;
|
|
237
244
|
private execTransformer;
|
|
@@ -241,7 +248,7 @@ export declare class MetaResource implements OnInit, OnChanges {
|
|
|
241
248
|
private applyTheme;
|
|
242
249
|
private forceUiUpdate;
|
|
243
250
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaResource, never>;
|
|
244
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetaResource, "vgip-meta-resource", never, { "resource": "resource"; "model": "model"; "metaResourceServiceDelegated": "metaResourceServiceDelegated"; "theme": "theme"; }, { "done": "done"; }, never, never>;
|
|
251
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaResource, "vgip-meta-resource", never, { "resource": "resource"; "model": "model"; "metaResourceServiceDelegated": "metaResourceServiceDelegated"; "theme": "theme"; }, { "done": "done"; }, never, never, false, never>;
|
|
245
252
|
}
|
|
246
253
|
export declare class MetaResourceCard implements OnInit {
|
|
247
254
|
private componentFactoryResolver;
|
|
@@ -255,13 +262,13 @@ export declare class MetaResourceCard implements OnInit {
|
|
|
255
262
|
ngOnInit(): void;
|
|
256
263
|
open(reference: any, model?: any): void;
|
|
257
264
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaResourceCard, never>;
|
|
258
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetaResourceCard, "vgip-meta-resource-card", never, { "resource": "resource"; "model": "model"; }, {}, never, never>;
|
|
265
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaResourceCard, "vgip-meta-resource-card", never, { "resource": "resource"; "model": "model"; }, {}, never, never, false, never>;
|
|
259
266
|
}
|
|
260
267
|
export declare class MetaFieldContentDirective {
|
|
261
268
|
viewContainerRef: ViewContainerRef;
|
|
262
269
|
constructor(viewContainerRef: ViewContainerRef);
|
|
263
270
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaFieldContentDirective, never>;
|
|
264
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MetaFieldContentDirective, "[metaFieldContent]", never, {}, {}, never>;
|
|
271
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MetaFieldContentDirective, "[metaFieldContent]", never, {}, {}, never, never, false, never>;
|
|
265
272
|
}
|
|
266
273
|
export declare class MetaField extends FieldAbstract implements OnInit {
|
|
267
274
|
componentFactoryResolver: ComponentFactoryResolver;
|
|
@@ -279,5 +286,5 @@ export declare class MetaField extends FieldAbstract implements OnInit {
|
|
|
279
286
|
constructor(componentFactoryResolver: ComponentFactoryResolver, el: ElementRef);
|
|
280
287
|
ngOnInit(): void;
|
|
281
288
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaField, never>;
|
|
282
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetaField, "vgip-meta-field", never, { "meta": "meta"; "parent": "parent"; "integrationCode": "integrationCode"; "resourceType": "resourceType"; "index": "index"; "preview": "preview"; "theme": "theme"; }, { "onChange": "onChange"; "onLeave": "onLeave"; }, never, never>;
|
|
289
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaField, "vgip-meta-field", never, { "meta": "meta"; "parent": "parent"; "integrationCode": "integrationCode"; "resourceType": "resourceType"; "index": "index"; "preview": "preview"; "theme": "theme"; }, { "onChange": "onChange"; "onLeave": "onLeave"; }, never, never, false, never>;
|
|
283
290
|
}
|
package/lib/fieldAbstract.d.ts
CHANGED
|
@@ -27,16 +27,8 @@ export declare abstract class FieldAbstract implements AfterViewInit {
|
|
|
27
27
|
logicalDisabled: boolean;
|
|
28
28
|
theme: string;
|
|
29
29
|
flags: any;
|
|
30
|
-
static setup(instance: any, parent: any, meta: any): void;
|
|
31
|
-
ngAfterViewInit(): void;
|
|
32
|
-
get isOptional(): boolean;
|
|
33
|
-
focus(): void;
|
|
34
|
-
modelToValue(m: any, valueType: any): any;
|
|
35
|
-
onSubjectChange(model: any): void;
|
|
36
|
-
onModelChange(model: any): void;
|
|
37
30
|
get parentChangeSubject(): any;
|
|
38
31
|
get isPersistedParent(): any;
|
|
39
|
-
clear(): void;
|
|
40
32
|
get validations(): any;
|
|
41
33
|
get name(): any;
|
|
42
34
|
get default(): any;
|
|
@@ -44,9 +36,17 @@ export declare abstract class FieldAbstract implements AfterViewInit {
|
|
|
44
36
|
get readonly(): boolean;
|
|
45
37
|
get sendToServer(): boolean;
|
|
46
38
|
get uiInput(): HTMLInputElement;
|
|
39
|
+
get isOptional(): boolean;
|
|
40
|
+
static setup(instance: any, parent: any, meta: any): void;
|
|
41
|
+
ngAfterViewInit(): void;
|
|
42
|
+
focus(): void;
|
|
43
|
+
modelToValue(m: any, valueType: any): any;
|
|
44
|
+
onSubjectChange(model: any): void;
|
|
45
|
+
onModelChange(model: any): void;
|
|
46
|
+
clear(): void;
|
|
47
47
|
private applyValidations;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldAbstract, never>;
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldAbstract, never, never, {}, {}, never>;
|
|
49
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldAbstract, never, never, {}, {}, never, never, false, never>;
|
|
50
50
|
}
|
|
51
51
|
export declare class MetaElem {
|
|
52
52
|
csselem: string;
|
|
@@ -6,5 +6,5 @@ export declare class FieldBoolean extends FieldAbstract implements OnInit {
|
|
|
6
6
|
value: boolean;
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldBoolean, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldBoolean, "ng-component", never, { "meta": "meta"; }, {}, never, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldBoolean, "ng-component", never, { "meta": "meta"; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -8,6 +8,7 @@ export declare class FieldDatetime extends FieldAbstract implements OnInit {
|
|
|
8
8
|
value: any;
|
|
9
9
|
type: string;
|
|
10
10
|
placeholder: string;
|
|
11
|
+
get suggestions(): any;
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
onActivated(ev: any): void;
|
|
13
14
|
clear(ev?: any): boolean;
|
|
@@ -18,9 +19,8 @@ export declare class FieldDatetime extends FieldAbstract implements OnInit {
|
|
|
18
19
|
private showDropdown;
|
|
19
20
|
private clickout;
|
|
20
21
|
private keydown;
|
|
21
|
-
get suggestions(): any;
|
|
22
22
|
private autoSetValue;
|
|
23
23
|
private setupLogicalValidation;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldDatetime, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldDatetime, "ng-component", never, {}, {}, never, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldDatetime, "ng-component", never, {}, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
@@ -13,6 +13,7 @@ export declare class FieldInput extends FieldAbstract implements OnInit {
|
|
|
13
13
|
showClear: boolean;
|
|
14
14
|
asyncSuggestions: Array<any>;
|
|
15
15
|
constructor(metaContext: MetaContextService);
|
|
16
|
+
get suggestions(): any;
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
onActivated(ev: any): void;
|
|
18
19
|
clear(ev?: any): boolean;
|
|
@@ -26,7 +27,6 @@ export declare class FieldInput extends FieldAbstract implements OnInit {
|
|
|
26
27
|
private showDropdown;
|
|
27
28
|
private clickout;
|
|
28
29
|
private keydown;
|
|
29
|
-
get suggestions(): any;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldInput, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldInput, "ng-component", never, {}, {}, never, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldInput, "ng-component", never, {}, {}, never, never, false, never>;
|
|
32
32
|
}
|
|
@@ -4,12 +4,12 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class FieldRadio extends FieldAbstract implements OnInit {
|
|
5
5
|
meta: any;
|
|
6
6
|
value: any;
|
|
7
|
+
get options(): any;
|
|
7
8
|
ngOnInit(): void;
|
|
8
9
|
onOptionChange(model: any): void;
|
|
9
10
|
onActivated(ev: any): void;
|
|
10
11
|
onBlur(ev: any): void;
|
|
11
|
-
get options(): any;
|
|
12
12
|
private keydown;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldRadio, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldRadio, "ng-component", never, { "meta": "meta"; }, {}, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldRadio, "ng-component", never, { "meta": "meta"; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -26,5 +26,5 @@ export declare class FieldRichtext extends FieldAbstract implements OnInit {
|
|
|
26
26
|
onModelChangeLocal(value: any): void;
|
|
27
27
|
textToSpeech(): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldRichtext, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldRichtext, "ng-component", never, { "meta": "meta"; }, {}, never, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldRichtext, "ng-component", never, { "meta": "meta"; }, {}, never, never, false, never>;
|
|
30
30
|
}
|
package/lib/fieldText/index.d.ts
CHANGED
|
@@ -11,5 +11,5 @@ export declare class FieldText extends FieldAbstract implements OnInit {
|
|
|
11
11
|
onModelChangeLocal(value: any): void;
|
|
12
12
|
textToSpeech(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldText, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldText, "ng-component", never, { "meta": "meta"; }, {}, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldText, "ng-component", never, { "meta": "meta"; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -2,5 +2,5 @@ import { FieldAbstract } from '../fieldAbstract';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class FieldUnknown extends FieldAbstract {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldUnknown, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldUnknown, "ng-component", never, {}, {}, never, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldUnknown, "ng-component", never, {}, {}, never, never, false, never>;
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vgip/meta-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "VGIP Meta UI",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
6
|
+
"@angular/common": "^15.1.0",
|
|
7
|
+
"@angular/core": "^15.1.0",
|
|
8
8
|
"@vonagevolta/volta2": "^0.0.56",
|
|
9
9
|
"ngx-quill": "^13.1.0",
|
|
10
10
|
"quill": "^1.3.7"
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"esm2020": "esm2020/vgip-meta-ui.mjs",
|
|
18
18
|
"fesm2020": "fesm2020/vgip-meta-ui.mjs",
|
|
19
19
|
"fesm2015": "fesm2015/vgip-meta-ui.mjs",
|
|
20
|
-
"typings": "
|
|
20
|
+
"typings": "index.d.ts",
|
|
21
21
|
"exports": {
|
|
22
22
|
"./package.json": {
|
|
23
23
|
"default": "./package.json"
|
|
24
24
|
},
|
|
25
25
|
".": {
|
|
26
|
-
"types": "./
|
|
26
|
+
"types": "./index.d.ts",
|
|
27
27
|
"esm2020": "./esm2020/vgip-meta-ui.mjs",
|
|
28
28
|
"es2020": "./fesm2020/vgip-meta-ui.mjs",
|
|
29
29
|
"es2015": "./fesm2015/vgip-meta-ui.mjs",
|