@evercam/ui 1.0.0-preview-ligthModeBugsFix-dc4ac0bdd → 1.0.0-preview-addingSmartSearchAutomation-a2e81c849
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/attributes.json +5 -0
- package/dist/components/ERadioGroup.vue.d.ts +1 -0
- package/dist/index.mjs +849 -826
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/dist/tags.json +2 -1
- package/dist/web-types.json +12 -3
- package/package.json +1 -1
package/dist/attributes.json
CHANGED
|
@@ -1437,6 +1437,11 @@
|
|
|
1437
1437
|
"description": "",
|
|
1438
1438
|
"default": ""
|
|
1439
1439
|
},
|
|
1440
|
+
"ERadioGroup/lazy-root": {
|
|
1441
|
+
"type": "object",
|
|
1442
|
+
"description": "",
|
|
1443
|
+
"default": null
|
|
1444
|
+
},
|
|
1440
1445
|
"ESelect/value": {
|
|
1441
1446
|
"type": "string|number|boolean|object|array",
|
|
1442
1447
|
"description": "",
|
|
@@ -11,6 +11,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
11
11
|
withDescription: boolean;
|
|
12
12
|
withIcon: boolean;
|
|
13
13
|
itemsWrapperClasses: any;
|
|
14
|
+
lazyRoot: Element | null;
|
|
14
15
|
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, {
|
|
15
16
|
isSelected(value: any): boolean;
|
|
16
17
|
onItemClick(value: any, event?: Event | undefined): void;
|