@retailcrm/embed-ui-v1-components 0.9.19 → 0.9.22-alpha.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/AGENTS.md +9 -1
- package/README.md +5 -2
- package/assets/sprites/actions/add-square-outlined.svg +8 -0
- package/assets/sprites/actions/drag.svg +8 -0
- package/bin/embed-ui-v1-components.mjs +231 -46
- package/bin/postinstall.mjs +3 -2
- package/dist/host.cjs +1223 -501
- package/dist/host.css +637 -10
- package/dist/host.d.ts +152 -78
- package/dist/host.js +1224 -502
- package/dist/remote.cjs +1358 -298
- package/dist/remote.d.ts +805 -67
- package/dist/remote.js +1360 -300
- package/docs/AI.md +99 -17
- package/docs/COMPONENTS.md +58 -59
- package/docs/FORMAT.md +10 -10
- package/docs/PROFILES.md +39 -22
- package/docs/README.md +11 -5
- package/docs/profiles/components/UiAddButton.yml +134 -0
- package/docs/profiles/components/UiAlert.yml +105 -0
- package/docs/profiles/components/UiAvatar.yml +88 -0
- package/docs/profiles/{UiAvatarList.yml → components/UiAvatarList.yml} +26 -0
- package/docs/profiles/{UiButton.yml → components/UiButton.yml} +14 -8
- package/docs/profiles/components/UiCalendar.yml +190 -0
- package/docs/profiles/components/UiCheckbox.yml +111 -0
- package/docs/profiles/components/UiCollapse.yml +129 -0
- package/docs/profiles/components/UiCollapseBox.yml +143 -0
- package/docs/profiles/{UiCollapseGroup.yml → components/UiCollapseGroup.yml} +24 -0
- package/docs/profiles/components/UiCopyButton.yml +104 -0
- package/docs/profiles/components/UiDate.yml +84 -0
- package/docs/profiles/components/UiDatePicker.yml +138 -0
- package/docs/profiles/components/UiError.yml +123 -0
- package/docs/profiles/{UiField.yml → components/UiField.yml} +46 -15
- package/docs/profiles/components/UiInfobox.yml +130 -0
- package/docs/profiles/components/UiLink.yml +111 -0
- package/docs/profiles/components/UiLoader.yml +71 -0
- package/docs/profiles/components/UiMenuItem.yml +93 -0
- package/docs/profiles/{UiMenuItemGroup.yml → components/UiMenuItemGroup.yml} +25 -0
- package/docs/profiles/components/UiModalSidebar.yml +156 -0
- package/docs/profiles/components/UiModalWindow.yml +181 -0
- package/docs/profiles/{UiModalWindowSurface.yml → components/UiModalWindowSurface.yml} +30 -0
- package/docs/profiles/components/UiNumberStepper.yml +100 -0
- package/docs/profiles/{UiPageHeader.yml → components/UiPageHeader.yml} +39 -23
- package/docs/profiles/components/UiPopconfirm.yml +164 -0
- package/docs/profiles/{UiPopper.yml → components/UiPopper.yml} +66 -13
- package/docs/profiles/{UiPopperConnector.yml → components/UiPopperConnector.yml} +5 -25
- package/docs/profiles/{UiPopperTarget.yml → components/UiPopperTarget.yml} +5 -25
- package/docs/profiles/components/UiRadio.yml +91 -0
- package/docs/profiles/{UiRadioSwitch.yml → components/UiRadioSwitch.yml} +55 -32
- package/docs/profiles/{UiRadioSwitchOption.yml → components/UiRadioSwitchOption.yml} +7 -13
- package/docs/profiles/components/UiScrollBox.yml +108 -0
- package/docs/profiles/{UiSelect.yml → components/UiSelect.yml} +133 -44
- package/docs/profiles/components/UiSelectOption.yml +74 -0
- package/docs/profiles/components/UiSelectOptionGroup.yml +66 -0
- package/docs/profiles/components/UiSkeleton.yml +82 -0
- package/docs/profiles/components/UiSlider.yml +161 -0
- package/docs/profiles/components/UiSwitch.yml +123 -0
- package/docs/profiles/components/UiTab.yml +234 -0
- package/docs/profiles/{UiTabGroup.yml → components/UiTabGroup.yml} +0 -30
- package/docs/profiles/components/UiTable.yml +622 -0
- package/docs/profiles/{UiTableBodyCell.yml → components/UiTableBodyCell.yml} +26 -0
- package/docs/profiles/components/UiTableColumn.yml +87 -0
- package/docs/profiles/components/UiTableFooterButton.yml +85 -0
- package/docs/profiles/components/UiTableFooterSection.yml +73 -0
- package/docs/profiles/{UiTableHeadCell.yml → components/UiTableHeadCell.yml} +26 -0
- package/docs/profiles/{UiTableSorter.yml → components/UiTableSorter.yml} +27 -0
- package/docs/profiles/components/UiTag.yml +90 -0
- package/docs/profiles/{UiTextbox.yml → components/UiTextbox.yml} +20 -32
- package/docs/profiles/components/UiTimePicker.yml +144 -0
- package/docs/profiles/{UiToggleButton.yml → components/UiToggleButton.yml} +16 -11
- package/docs/profiles/{UiToggleGroup.yml → components/UiToggleGroup.yml} +25 -13
- package/docs/profiles/{UiToggleGroupOption.yml → components/UiToggleGroupOption.yml} +7 -11
- package/docs/profiles/components/UiToolbarButton.yml +87 -0
- package/docs/profiles/components/UiToolbarLink.yml +80 -0
- package/docs/profiles/components/UiTooltip.yml +97 -0
- package/docs/profiles/components/UiTransition.yml +62 -0
- package/docs/profiles/components/UiYandexMap.yml +104 -0
- package/docs/profiles/pages/CardSettingsPage.yml +58 -0
- package/docs/profiles/pages/CollapseBlockPage.yml +46 -0
- package/docs/profiles/pages/EntityListPage.yml +66 -0
- package/docs/profiles/pages/ModalSidebar.yml +158 -0
- package/docs/profiles/pages/ModalWindow.yml +55 -0
- package/docs/profiles/pages/MultiColumnPage.yml +27 -0
- package/docs/profiles/pages/PageComposition.yml +56 -0
- package/package.json +15 -15
- package/docs/profiles/UiAddButton.yml +0 -57
- package/docs/profiles/UiAlert.yml +0 -48
- package/docs/profiles/UiAvatar.yml +0 -48
- package/docs/profiles/UiCalendar.yml +0 -48
- package/docs/profiles/UiCheckbox.yml +0 -53
- package/docs/profiles/UiCollapse.yml +0 -40
- package/docs/profiles/UiCollapseBox.yml +0 -51
- package/docs/profiles/UiCopyButton.yml +0 -52
- package/docs/profiles/UiDate.yml +0 -38
- package/docs/profiles/UiDatePicker.yml +0 -59
- package/docs/profiles/UiError.yml +0 -32
- package/docs/profiles/UiImage.yml +0 -39
- package/docs/profiles/UiInfobox.yml +0 -45
- package/docs/profiles/UiLink.yml +0 -51
- package/docs/profiles/UiLoader.yml +0 -38
- package/docs/profiles/UiMenuItem.yml +0 -57
- package/docs/profiles/UiModalSidebar.yml +0 -46
- package/docs/profiles/UiModalWindow.yml +0 -44
- package/docs/profiles/UiNumberStepper.yml +0 -52
- package/docs/profiles/UiRadio.yml +0 -38
- package/docs/profiles/UiScrollBox.yml +0 -31
- package/docs/profiles/UiSelectOption.yml +0 -44
- package/docs/profiles/UiSelectOptionGroup.yml +0 -38
- package/docs/profiles/UiSkeleton.yml +0 -41
- package/docs/profiles/UiSlider.yml +0 -38
- package/docs/profiles/UiSwitch.yml +0 -37
- package/docs/profiles/UiTab.yml +0 -119
- package/docs/profiles/UiTable.yml +0 -152
- package/docs/profiles/UiTableColumn.yml +0 -50
- package/docs/profiles/UiTableFooterButton.yml +0 -44
- package/docs/profiles/UiTableFooterSection.yml +0 -38
- package/docs/profiles/UiTag.yml +0 -41
- package/docs/profiles/UiTimePicker.yml +0 -46
- package/docs/profiles/UiToolbarButton.yml +0 -37
- package/docs/profiles/UiToolbarLink.yml +0 -32
- package/docs/profiles/UiTooltip.yml +0 -43
- package/docs/profiles/UiTransition.yml +0 -27
- package/docs/profiles/UiYandexMap.yml +0 -29
package/dist/host.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Alignment } from '@floating-ui/dom';
|
|
2
2
|
import { AllowedComponentProps } from 'vue';
|
|
3
|
+
import { Attrs } from 'vue';
|
|
3
4
|
import { Component } from 'vue';
|
|
4
5
|
import { ComponentCustomProperties } from 'vue';
|
|
5
6
|
import { ComponentCustomProps } from 'vue';
|
|
@@ -30,7 +31,6 @@ import { Ref } from 'vue';
|
|
|
30
31
|
import { RendererElement } from 'vue';
|
|
31
32
|
import { RendererNode } from 'vue';
|
|
32
33
|
import { SerializedEvent } from '@omnicajs/vue-remote/types/events';
|
|
33
|
-
import { ShallowUnwrapRef } from 'vue';
|
|
34
34
|
import { Side } from '@floating-ui/dom';
|
|
35
35
|
import { Slot } from 'vue';
|
|
36
36
|
import { SlotsType } from 'vue';
|
|
@@ -390,13 +390,13 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
390
390
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
391
391
|
invalid: boolean;
|
|
392
392
|
placeholder: string;
|
|
393
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
394
393
|
id: string | undefined;
|
|
395
394
|
max: number | `${number}`;
|
|
396
395
|
min: number | `${number}`;
|
|
397
396
|
width: WidthValue;
|
|
398
397
|
step: number | `${number}` | "any";
|
|
399
398
|
disabled: boolean;
|
|
399
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
400
400
|
outlined: boolean;
|
|
401
401
|
active: boolean;
|
|
402
402
|
value: string | number | null;
|
|
@@ -420,12 +420,12 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
420
420
|
readonly type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
421
421
|
readonly invalid: boolean;
|
|
422
422
|
readonly placeholder: string;
|
|
423
|
-
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
424
423
|
readonly max: number | `${number}`;
|
|
425
424
|
readonly min: number | `${number}`;
|
|
426
425
|
readonly width: WidthValue;
|
|
427
426
|
readonly step: number | `${number}` | "any";
|
|
428
427
|
readonly disabled: boolean;
|
|
428
|
+
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
429
429
|
readonly outlined: boolean;
|
|
430
430
|
readonly active: boolean;
|
|
431
431
|
readonly value: string | number | null;
|
|
@@ -455,10 +455,8 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
455
455
|
readonly onClear?: (() => any) | undefined;
|
|
456
456
|
readonly "onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
457
457
|
readonly "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
458
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "
|
|
459
|
-
$attrs:
|
|
460
|
-
[x: string]: unknown;
|
|
461
|
-
};
|
|
458
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes">;
|
|
459
|
+
$attrs: Attrs;
|
|
462
460
|
$refs: {
|
|
463
461
|
[x: string]: unknown;
|
|
464
462
|
} & {
|
|
@@ -634,13 +632,13 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
634
632
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
635
633
|
invalid: boolean;
|
|
636
634
|
placeholder: string;
|
|
637
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
638
635
|
id: string | undefined;
|
|
639
636
|
max: number | `${number}`;
|
|
640
637
|
min: number | `${number}`;
|
|
641
638
|
width: WidthValue;
|
|
642
639
|
step: number | `${number}` | "any";
|
|
643
640
|
disabled: boolean;
|
|
641
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
644
642
|
outlined: boolean;
|
|
645
643
|
active: boolean;
|
|
646
644
|
value: string | number | null;
|
|
@@ -692,13 +690,13 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
692
690
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
693
691
|
invalid: boolean;
|
|
694
692
|
placeholder: string;
|
|
695
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
696
693
|
id: string | undefined;
|
|
697
694
|
max: number | `${number}`;
|
|
698
695
|
min: number | `${number}`;
|
|
699
696
|
width: WidthValue;
|
|
700
697
|
step: number | `${number}` | "any";
|
|
701
698
|
disabled: boolean;
|
|
699
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
702
700
|
outlined: boolean;
|
|
703
701
|
active: boolean;
|
|
704
702
|
value: string | number | null;
|
|
@@ -855,16 +853,16 @@ declare const __VLS_component_2: DefineComponent_2<ExtractPropTypes<{
|
|
|
855
853
|
onClear?: (() => any) | undefined;
|
|
856
854
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
857
855
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
858
|
-
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "
|
|
859
|
-
getSelectionStart()
|
|
860
|
-
getSelectionEnd()
|
|
861
|
-
setSelectionRange(start: number, end: number)
|
|
862
|
-
focus()
|
|
863
|
-
blur()
|
|
864
|
-
select()
|
|
865
|
-
insert(value: string)
|
|
866
|
-
clear()
|
|
867
|
-
}
|
|
856
|
+
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes")> & {
|
|
857
|
+
getSelectionStart: () => number | null;
|
|
858
|
+
getSelectionEnd: () => number | null;
|
|
859
|
+
setSelectionRange: (start: number, end: number) => void;
|
|
860
|
+
focus: () => void;
|
|
861
|
+
blur: () => void;
|
|
862
|
+
select: () => void;
|
|
863
|
+
insert: (value: string) => Promise<void>;
|
|
864
|
+
clear: () => void;
|
|
865
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
868
866
|
$slots: {
|
|
869
867
|
prefix?(_: {}): any;
|
|
870
868
|
'leading-icon'?(_: {}): any;
|
|
@@ -1065,13 +1063,13 @@ declare function __VLS_template_2(): {
|
|
|
1065
1063
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
1066
1064
|
invalid: boolean;
|
|
1067
1065
|
placeholder: string;
|
|
1068
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1069
1066
|
id: string | undefined;
|
|
1070
1067
|
max: number | `${number}`;
|
|
1071
1068
|
min: number | `${number}`;
|
|
1072
1069
|
width: WidthValue;
|
|
1073
1070
|
step: number | `${number}` | "any";
|
|
1074
1071
|
disabled: boolean;
|
|
1072
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1075
1073
|
outlined: boolean;
|
|
1076
1074
|
active: boolean;
|
|
1077
1075
|
value: string | number | null;
|
|
@@ -1095,12 +1093,12 @@ declare function __VLS_template_2(): {
|
|
|
1095
1093
|
readonly type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
1096
1094
|
readonly invalid: boolean;
|
|
1097
1095
|
readonly placeholder: string;
|
|
1098
|
-
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1099
1096
|
readonly max: number | `${number}`;
|
|
1100
1097
|
readonly min: number | `${number}`;
|
|
1101
1098
|
readonly width: WidthValue;
|
|
1102
1099
|
readonly step: number | `${number}` | "any";
|
|
1103
1100
|
readonly disabled: boolean;
|
|
1101
|
+
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1104
1102
|
readonly outlined: boolean;
|
|
1105
1103
|
readonly active: boolean;
|
|
1106
1104
|
readonly value: string | number | null;
|
|
@@ -1130,10 +1128,8 @@ declare function __VLS_template_2(): {
|
|
|
1130
1128
|
readonly onClear?: (() => any) | undefined;
|
|
1131
1129
|
readonly "onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
1132
1130
|
readonly "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1133
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "
|
|
1134
|
-
$attrs:
|
|
1135
|
-
[x: string]: unknown;
|
|
1136
|
-
};
|
|
1131
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes">;
|
|
1132
|
+
$attrs: Attrs;
|
|
1137
1133
|
$refs: {
|
|
1138
1134
|
[x: string]: unknown;
|
|
1139
1135
|
} & {
|
|
@@ -1309,13 +1305,13 @@ declare function __VLS_template_2(): {
|
|
|
1309
1305
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
1310
1306
|
invalid: boolean;
|
|
1311
1307
|
placeholder: string;
|
|
1312
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1313
1308
|
id: string | undefined;
|
|
1314
1309
|
max: number | `${number}`;
|
|
1315
1310
|
min: number | `${number}`;
|
|
1316
1311
|
width: WidthValue;
|
|
1317
1312
|
step: number | `${number}` | "any";
|
|
1318
1313
|
disabled: boolean;
|
|
1314
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1319
1315
|
outlined: boolean;
|
|
1320
1316
|
active: boolean;
|
|
1321
1317
|
value: string | number | null;
|
|
@@ -1367,13 +1363,13 @@ declare function __VLS_template_2(): {
|
|
|
1367
1363
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
1368
1364
|
invalid: boolean;
|
|
1369
1365
|
placeholder: string;
|
|
1370
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1371
1366
|
id: string | undefined;
|
|
1372
1367
|
max: number | `${number}`;
|
|
1373
1368
|
min: number | `${number}`;
|
|
1374
1369
|
width: WidthValue;
|
|
1375
1370
|
step: number | `${number}` | "any";
|
|
1376
1371
|
disabled: boolean;
|
|
1372
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
1377
1373
|
outlined: boolean;
|
|
1378
1374
|
active: boolean;
|
|
1379
1375
|
value: string | number | null;
|
|
@@ -1530,16 +1526,16 @@ declare function __VLS_template_2(): {
|
|
|
1530
1526
|
onClear?: (() => any) | undefined;
|
|
1531
1527
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
1532
1528
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1533
|
-
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "
|
|
1534
|
-
getSelectionStart()
|
|
1535
|
-
getSelectionEnd()
|
|
1536
|
-
setSelectionRange(start: number, end: number)
|
|
1537
|
-
focus()
|
|
1538
|
-
blur()
|
|
1539
|
-
select()
|
|
1540
|
-
insert(value: string)
|
|
1541
|
-
clear()
|
|
1542
|
-
}
|
|
1529
|
+
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes")> & {
|
|
1530
|
+
getSelectionStart: () => number | null;
|
|
1531
|
+
getSelectionEnd: () => number | null;
|
|
1532
|
+
setSelectionRange: (start: number, end: number) => void;
|
|
1533
|
+
focus: () => void;
|
|
1534
|
+
blur: () => void;
|
|
1535
|
+
select: () => void;
|
|
1536
|
+
insert: (value: string) => Promise<void>;
|
|
1537
|
+
clear: () => void;
|
|
1538
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
1543
1539
|
$slots: {
|
|
1544
1540
|
prefix?(_: {}): any;
|
|
1545
1541
|
'leading-icon'?(_: {}): any;
|
|
@@ -1798,6 +1794,17 @@ declare enum INPUTMODE {
|
|
|
1798
1794
|
}
|
|
1799
1795
|
declare type Locale = 'en-GB' | 'es-ES' | 'ru-RU';
|
|
1800
1796
|
declare type Locale_2 = 'en-GB' | 'es-ES' | 'ru-RU';
|
|
1797
|
+
declare enum LogicTreeNodeView {
|
|
1798
|
+
ACTIONS = "actions",
|
|
1799
|
+
SUMMARY = "summary"
|
|
1800
|
+
}
|
|
1801
|
+
declare enum LogicTreeTone {
|
|
1802
|
+
BLUE = "blue",
|
|
1803
|
+
GREEN = "green",
|
|
1804
|
+
GREY = "grey",
|
|
1805
|
+
RED = "red",
|
|
1806
|
+
YELLOW = "yellow"
|
|
1807
|
+
}
|
|
1801
1808
|
declare type MODAL_SIDEBAR_ROLE = 'dialog' | 'alertdialog';
|
|
1802
1809
|
declare type MODAL_WINDOW_ROLE = 'dialog' | 'alertdialog';
|
|
1803
1810
|
export declare const ModalPlugin: Plugin_2;
|
|
@@ -1870,6 +1877,7 @@ declare enum SCROLLING_2 {
|
|
|
1870
1877
|
NATIVE = "native"
|
|
1871
1878
|
}
|
|
1872
1879
|
declare type ShowingOptions = {
|
|
1880
|
+
visible?: boolean;
|
|
1873
1881
|
shown?: boolean;
|
|
1874
1882
|
targetTriggers?: Trigger[] | TriggerSchema;
|
|
1875
1883
|
popperTriggers?: Trigger[] | TriggerSchema;
|
|
@@ -1880,19 +1888,19 @@ declare type ShowingOptions = {
|
|
|
1880
1888
|
container?: string | null;
|
|
1881
1889
|
};
|
|
1882
1890
|
declare enum SIZE {
|
|
1883
|
-
|
|
1891
|
+
LG = "lg",
|
|
1892
|
+
MD = "md",
|
|
1884
1893
|
SM = "sm",
|
|
1885
|
-
|
|
1894
|
+
XS = "xs"
|
|
1886
1895
|
}
|
|
1887
1896
|
declare enum SIZE_10 {
|
|
1888
1897
|
SM = "sm",
|
|
1889
1898
|
MD = "md"
|
|
1890
1899
|
}
|
|
1891
1900
|
declare enum SIZE_2 {
|
|
1892
|
-
|
|
1893
|
-
MD = "md",
|
|
1901
|
+
XS = "xs",
|
|
1894
1902
|
SM = "sm",
|
|
1895
|
-
|
|
1903
|
+
LG = "lg"
|
|
1896
1904
|
}
|
|
1897
1905
|
declare enum SIZE_3 {
|
|
1898
1906
|
SM = "sm",
|
|
@@ -2024,7 +2032,7 @@ declare type UiAlertMethods = {
|
|
|
2024
2032
|
scrollIntoView(): void;
|
|
2025
2033
|
};
|
|
2026
2034
|
declare type UiAlertProperties = {
|
|
2027
|
-
variant?:
|
|
2035
|
+
variant?: VARIANT_2 | `${VARIANT_2}`;
|
|
2028
2036
|
text?: string;
|
|
2029
2037
|
shown?: boolean;
|
|
2030
2038
|
closable?: boolean;
|
|
@@ -2041,7 +2049,7 @@ declare type UiAvatarListProperties = {
|
|
|
2041
2049
|
src: string;
|
|
2042
2050
|
name: string;
|
|
2043
2051
|
}>;
|
|
2044
|
-
size?:
|
|
2052
|
+
size?: SIZE_2;
|
|
2045
2053
|
};
|
|
2046
2054
|
declare type UiAvatarProperties = {
|
|
2047
2055
|
src?: string;
|
|
@@ -2050,7 +2058,7 @@ declare type UiAvatarProperties = {
|
|
|
2050
2058
|
status?: STATUS;
|
|
2051
2059
|
vip?: boolean;
|
|
2052
2060
|
bad?: boolean;
|
|
2053
|
-
size?:
|
|
2061
|
+
size?: SIZE_2;
|
|
2054
2062
|
optimize?: boolean | {
|
|
2055
2063
|
resize?: Dimensions;
|
|
2056
2064
|
crop?: Dimensions;
|
|
@@ -2066,8 +2074,8 @@ declare type UiButtonProperties = {
|
|
|
2066
2074
|
type?: HTMLButtonElement['type'];
|
|
2067
2075
|
href?: HTMLAnchorElement['href'] | undefined;
|
|
2068
2076
|
appearance?: APPEARANCE | `${APPEARANCE}`;
|
|
2069
|
-
variant?:
|
|
2070
|
-
size?:
|
|
2077
|
+
variant?: VARIANT | `${VARIANT}`;
|
|
2078
|
+
size?: SIZE | `${SIZE}`;
|
|
2071
2079
|
active?: boolean;
|
|
2072
2080
|
disabled?: boolean;
|
|
2073
2081
|
locked?: boolean;
|
|
@@ -2084,7 +2092,7 @@ declare type UiCalendarProperties = {
|
|
|
2084
2092
|
minDate?: Date | null;
|
|
2085
2093
|
maxDate?: Date | null;
|
|
2086
2094
|
nullable?: boolean;
|
|
2087
|
-
locale?:
|
|
2095
|
+
locale?: Locale;
|
|
2088
2096
|
};
|
|
2089
2097
|
export declare const UiCheckbox: DefineComponent<UiCheckboxProperties, UiCheckboxMethods>;
|
|
2090
2098
|
declare type UiCheckboxMethods = {
|
|
@@ -2145,7 +2153,7 @@ declare type UiCollapseProperties = {
|
|
|
2145
2153
|
export declare const UiCopyButton: DefineComponent<UiCopyButtonProperties>;
|
|
2146
2154
|
declare type UiCopyButtonProperties = {
|
|
2147
2155
|
text: string;
|
|
2148
|
-
size:
|
|
2156
|
+
size: SIZE;
|
|
2149
2157
|
tooltipOptions?: TooltipOptions;
|
|
2150
2158
|
};
|
|
2151
2159
|
export declare const UiDate: DefineComponent<UiDateProperties>;
|
|
@@ -2176,12 +2184,12 @@ declare type UiDatePickerProperties = {
|
|
|
2176
2184
|
popperOptions?: Omit<UiPopperProperties, 'visible' | 'target' | 'targetTriggers' | 'popperTriggers' | 'globalTriggers'>;
|
|
2177
2185
|
quickOptions?: QuickOption[];
|
|
2178
2186
|
textboxOptions?: Partial<Omit<UiTextboxProperties, 'id' | 'value' | 'placeholder' | 'clearable' | 'disabled' | 'readonly' | 'active'>>;
|
|
2179
|
-
locale?:
|
|
2187
|
+
locale?: Locale;
|
|
2180
2188
|
};
|
|
2181
2189
|
declare type UiDateProperties = {
|
|
2182
2190
|
date: Date | string;
|
|
2183
2191
|
withTime: boolean;
|
|
2184
|
-
locale?:
|
|
2192
|
+
locale?: Locale;
|
|
2185
2193
|
};
|
|
2186
2194
|
export declare const UiError: DefineComponent<UiErrorProperties>;
|
|
2187
2195
|
declare type UiErrorProperties = {
|
|
@@ -2232,6 +2240,39 @@ declare type UiLoaderProperties = {
|
|
|
2232
2240
|
fixed?: boolean;
|
|
2233
2241
|
overlay?: boolean;
|
|
2234
2242
|
};
|
|
2243
|
+
export declare const UiLogicTreeCaret: DefineComponent<UiLogicTreeCaretProperties>;
|
|
2244
|
+
declare type UiLogicTreeCaretProperties = {
|
|
2245
|
+
active?: boolean;
|
|
2246
|
+
};
|
|
2247
|
+
declare type UiLogicTreeConnector = {
|
|
2248
|
+
continues: boolean;
|
|
2249
|
+
placeholder?: boolean;
|
|
2250
|
+
tone: LogicTreeTone;
|
|
2251
|
+
visible: boolean;
|
|
2252
|
+
};
|
|
2253
|
+
export declare const UiLogicTreeNode: DefineComponent<UiLogicTreeNodeProperties>;
|
|
2254
|
+
export declare const UiLogicTreeNodeIcon: DefineComponent;
|
|
2255
|
+
export declare const UiLogicTreeNodeItem: DefineComponent;
|
|
2256
|
+
declare type UiLogicTreeNodeProperties = {
|
|
2257
|
+
pathKey?: string;
|
|
2258
|
+
nodeView?: LogicTreeNodeView;
|
|
2259
|
+
connectors?: UiLogicTreeConnector[];
|
|
2260
|
+
conjunction?: string;
|
|
2261
|
+
conjunctionEndPathKey?: string;
|
|
2262
|
+
conjunctionLabel?: string;
|
|
2263
|
+
conjunctionOffset?: number;
|
|
2264
|
+
conjunctionStartPathKey?: string;
|
|
2265
|
+
conjunctionTone?: LogicTreeTone;
|
|
2266
|
+
groupedHeader?: boolean;
|
|
2267
|
+
grouped?: boolean;
|
|
2268
|
+
groupedPosition?: 'end' | 'middle' | 'single' | 'start';
|
|
2269
|
+
editable?: boolean;
|
|
2270
|
+
disabled?: boolean;
|
|
2271
|
+
highlighted?: boolean;
|
|
2272
|
+
selected?: boolean;
|
|
2273
|
+
};
|
|
2274
|
+
export declare const UiLogicTreeRoot: DefineComponent<UiLogicTreeRootProperties>;
|
|
2275
|
+
declare type UiLogicTreeRootProperties = Record<string, never>;
|
|
2235
2276
|
export declare const UiMenuItem: DefineComponent<UiMenuItemProperties>;
|
|
2236
2277
|
export declare const UiMenuItemGroup: DefineComponent;
|
|
2237
2278
|
declare type UiMenuItemProperties = {
|
|
@@ -2454,13 +2495,13 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2454
2495
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
2455
2496
|
invalid: boolean;
|
|
2456
2497
|
placeholder: string;
|
|
2457
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2458
2498
|
id: string | undefined;
|
|
2459
2499
|
max: number | `${number}`;
|
|
2460
2500
|
min: number | `${number}`;
|
|
2461
2501
|
width: WidthValue;
|
|
2462
2502
|
step: number | `${number}` | "any";
|
|
2463
2503
|
disabled: boolean;
|
|
2504
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2464
2505
|
outlined: boolean;
|
|
2465
2506
|
active: boolean;
|
|
2466
2507
|
value: string | number | null;
|
|
@@ -2484,12 +2525,12 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2484
2525
|
readonly type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
2485
2526
|
readonly invalid: boolean;
|
|
2486
2527
|
readonly placeholder: string;
|
|
2487
|
-
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2488
2528
|
readonly max: number | `${number}`;
|
|
2489
2529
|
readonly min: number | `${number}`;
|
|
2490
2530
|
readonly width: WidthValue;
|
|
2491
2531
|
readonly step: number | `${number}` | "any";
|
|
2492
2532
|
readonly disabled: boolean;
|
|
2533
|
+
readonly size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2493
2534
|
readonly outlined: boolean;
|
|
2494
2535
|
readonly active: boolean;
|
|
2495
2536
|
readonly value: string | number | null;
|
|
@@ -2519,10 +2560,8 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2519
2560
|
readonly onClear?: (() => any) | undefined;
|
|
2520
2561
|
readonly "onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
2521
2562
|
readonly "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2522
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "
|
|
2523
|
-
$attrs:
|
|
2524
|
-
[x: string]: unknown;
|
|
2525
|
-
};
|
|
2563
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes">;
|
|
2564
|
+
$attrs: Attrs;
|
|
2526
2565
|
$refs: {
|
|
2527
2566
|
[x: string]: unknown;
|
|
2528
2567
|
} & {
|
|
@@ -2698,13 +2737,13 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2698
2737
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
2699
2738
|
invalid: boolean;
|
|
2700
2739
|
placeholder: string;
|
|
2701
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2702
2740
|
id: string | undefined;
|
|
2703
2741
|
max: number | `${number}`;
|
|
2704
2742
|
min: number | `${number}`;
|
|
2705
2743
|
width: WidthValue;
|
|
2706
2744
|
step: number | `${number}` | "any";
|
|
2707
2745
|
disabled: boolean;
|
|
2746
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2708
2747
|
outlined: boolean;
|
|
2709
2748
|
active: boolean;
|
|
2710
2749
|
value: string | number | null;
|
|
@@ -2756,13 +2795,13 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2756
2795
|
type: "text" | "url" | "search" | "email" | "password" | "tel" | TYPE_2;
|
|
2757
2796
|
invalid: boolean;
|
|
2758
2797
|
placeholder: string;
|
|
2759
|
-
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2760
2798
|
id: string | undefined;
|
|
2761
2799
|
max: number | `${number}`;
|
|
2762
2800
|
min: number | `${number}`;
|
|
2763
2801
|
width: WidthValue;
|
|
2764
2802
|
step: number | `${number}` | "any";
|
|
2765
2803
|
disabled: boolean;
|
|
2804
|
+
size: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
2766
2805
|
outlined: boolean;
|
|
2767
2806
|
active: boolean;
|
|
2768
2807
|
value: string | number | null;
|
|
@@ -2919,16 +2958,16 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2919
2958
|
onClear?: (() => any) | undefined;
|
|
2920
2959
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
2921
2960
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2922
|
-
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "
|
|
2923
|
-
getSelectionStart()
|
|
2924
|
-
getSelectionEnd()
|
|
2925
|
-
setSelectionRange(start: number, end: number)
|
|
2926
|
-
focus()
|
|
2927
|
-
blur()
|
|
2928
|
-
select()
|
|
2929
|
-
insert(value: string)
|
|
2930
|
-
clear()
|
|
2931
|
-
}
|
|
2961
|
+
}>, "insert" | "blur" | "focus" | "select" | "clear" | "getSelectionStart" | "getSelectionEnd" | "setSelectionRange" | ("type" | "invalid" | "placeholder" | "id" | "max" | "min" | "width" | "step" | "disabled" | "size" | "outlined" | "active" | "value" | "required" | "clearable" | "readonly" | "autocomplete" | "inputmode" | "maxlength" | "decimals" | "prefix" | "suffix" | "autofocus" | "autoselect" | "multiline" | "rows" | "cols" | "autofit" | "inputAttributes")> & {
|
|
2962
|
+
getSelectionStart: () => number | null;
|
|
2963
|
+
getSelectionEnd: () => number | null;
|
|
2964
|
+
setSelectionRange: (start: number, end: number) => void;
|
|
2965
|
+
focus: () => void;
|
|
2966
|
+
blur: () => void;
|
|
2967
|
+
select: () => void;
|
|
2968
|
+
insert: (value: string) => Promise<void>;
|
|
2969
|
+
clear: () => void;
|
|
2970
|
+
} & {} & ComponentCustomProperties & {} & {
|
|
2932
2971
|
$slots: {
|
|
2933
2972
|
prefix?(_: {}): any;
|
|
2934
2973
|
'leading-icon'?(_: {}): any;
|
|
@@ -2937,6 +2976,41 @@ export declare const UiPageHeaderTitle: DefineComponent_2<ExtractPropTypes<{
|
|
|
2937
2976
|
};
|
|
2938
2977
|
}) | null;
|
|
2939
2978
|
}, any>;
|
|
2979
|
+
export declare type UiPopconfirmMethods = {
|
|
2980
|
+
adjust(): Promise<void>;
|
|
2981
|
+
close(): void;
|
|
2982
|
+
dispose(): void;
|
|
2983
|
+
open(): void;
|
|
2984
|
+
toggle(): void;
|
|
2985
|
+
};
|
|
2986
|
+
export declare const UiPopconfirmPopper: DefineComponent<UiPopconfirmPopperProperties, UiPopconfirmPopperMethods>;
|
|
2987
|
+
export declare type UiPopconfirmPopperMethods = {
|
|
2988
|
+
adjust(): Promise<void>;
|
|
2989
|
+
close(): void;
|
|
2990
|
+
dispose(): void;
|
|
2991
|
+
open(): void;
|
|
2992
|
+
};
|
|
2993
|
+
export declare type UiPopconfirmPopperOptions = Partial<Omit<UiPopperProperties, 'target' | 'visible' | 'targetTriggers' | 'popperTriggers' | 'globalTriggers' | 'placement' | 'withArrow'>>;
|
|
2994
|
+
export declare type UiPopconfirmPopperProperties = {
|
|
2995
|
+
id?: string;
|
|
2996
|
+
visible?: boolean;
|
|
2997
|
+
title?: string;
|
|
2998
|
+
okVariant?: VARIANT | `${VARIANT}`;
|
|
2999
|
+
okTitle?: string | null;
|
|
3000
|
+
cancelTitle?: string | null;
|
|
3001
|
+
cancelAppearance?: APPEARANCE | `${APPEARANCE}`;
|
|
3002
|
+
cancelVariant?: VARIANT | `${VARIANT}`;
|
|
3003
|
+
buttonSize?: SIZE | `${SIZE}`;
|
|
3004
|
+
placement?: UiPopperProperties['placement'];
|
|
3005
|
+
popperClass?: string | null;
|
|
3006
|
+
popperOptions?: UiPopconfirmPopperOptions;
|
|
3007
|
+
locale?: Locale;
|
|
3008
|
+
};
|
|
3009
|
+
export declare type UiPopconfirmProperties = UiPopconfirmPopperProperties;
|
|
3010
|
+
export declare const UiPopconfirmTrigger: DefineComponent<UiPopconfirmTriggerProperties>;
|
|
3011
|
+
export declare type UiPopconfirmTriggerProperties = {
|
|
3012
|
+
visible?: boolean;
|
|
3013
|
+
};
|
|
2940
3014
|
export declare const UiPopper: DefineComponent<UiPopperProperties & {
|
|
2941
3015
|
target: Ref<HTMLElement | null>;
|
|
2942
3016
|
}, UiPopperMethods>;
|
|
@@ -3023,9 +3097,9 @@ export declare const UiRadioSwitchOptionShell: DefineComponent_2<ExtractPropType
|
|
|
3023
3097
|
default: boolean;
|
|
3024
3098
|
};
|
|
3025
3099
|
}>> & Readonly<{}>, {
|
|
3026
|
-
size: "sm" | "lg" | "md" | RADIO_SWITCH_SIZE | undefined;
|
|
3027
3100
|
id: string;
|
|
3028
3101
|
disabled: boolean;
|
|
3102
|
+
size: "sm" | "lg" | "md" | RADIO_SWITCH_SIZE | undefined;
|
|
3029
3103
|
appearance: "default" | "section" | RADIO_SWITCH_APPEARANCE | undefined;
|
|
3030
3104
|
checked: boolean;
|
|
3031
3105
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3289,8 +3363,8 @@ export declare const UiTabGroup: DefineComponent_2<ExtractPropTypes<{
|
|
|
3289
3363
|
};
|
|
3290
3364
|
}>> & Readonly<{
|
|
3291
3365
|
onChange?: ((id: string) => any) | undefined;
|
|
3292
|
-
"onUpdate:menuExpanded"?: ((expanded: boolean) => any) | undefined;
|
|
3293
3366
|
onLayout?: ((layout: TabLayout) => any) | undefined;
|
|
3367
|
+
"onUpdate:menuExpanded"?: ((expanded: boolean) => any) | undefined;
|
|
3294
3368
|
"onUpdate:activeId"?: ((id: string) => any) | undefined;
|
|
3295
3369
|
"onUpdate:focusableId"?: ((id: string | null) => any) | undefined;
|
|
3296
3370
|
}>, {
|
|
@@ -3572,8 +3646,8 @@ export declare const UiToggleGroupRoot: DefineComponent_2<ExtractPropTypes<{
|
|
|
3572
3646
|
default: string;
|
|
3573
3647
|
};
|
|
3574
3648
|
}>> & Readonly<{}>, {
|
|
3575
|
-
size: "xs" | "sm" | "lg" | "md" | UiToggleButtonSize | undefined;
|
|
3576
3649
|
disabled: boolean;
|
|
3650
|
+
size: "xs" | "sm" | "lg" | "md" | UiToggleButtonSize | undefined;
|
|
3577
3651
|
rubber: boolean;
|
|
3578
3652
|
ariaOrientation: "horizontal" | "vertical" | undefined;
|
|
3579
3653
|
ariaLabel: string;
|
|
@@ -3614,21 +3688,21 @@ export declare enum VALIGN {
|
|
|
3614
3688
|
BOTTOM = "bottom"
|
|
3615
3689
|
}
|
|
3616
3690
|
declare enum VARIANT {
|
|
3617
|
-
|
|
3618
|
-
WARNING = "warning",
|
|
3691
|
+
DEFAULT = "default",
|
|
3619
3692
|
SUCCESS = "success",
|
|
3620
3693
|
DANGER = "danger"
|
|
3621
3694
|
}
|
|
3622
3695
|
declare enum VARIANT_2 {
|
|
3623
|
-
|
|
3696
|
+
PRIMARY = "primary",
|
|
3697
|
+
WARNING = "warning",
|
|
3624
3698
|
SUCCESS = "success",
|
|
3625
3699
|
DANGER = "danger"
|
|
3626
3700
|
}
|
|
3627
3701
|
export declare class VueI18n {
|
|
3628
3702
|
private _state;
|
|
3629
|
-
constructor(locale?:
|
|
3630
|
-
get locale():
|
|
3631
|
-
set locale(locale:
|
|
3703
|
+
constructor(locale?: Locale_2 | undefined);
|
|
3704
|
+
get locale(): Locale_2 | undefined;
|
|
3705
|
+
set locale(locale: Locale_2 | undefined);
|
|
3632
3706
|
}
|
|
3633
3707
|
declare enum WIDTH {
|
|
3634
3708
|
FIT = "fit",
|