@retailcrm/embed-ui-v1-components 0.9.11-alpha.6 → 0.9.11
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/host.cjs +12 -15
- package/dist/host.css +5 -0
- package/dist/host.js +12 -15
- package/dist/remote.d.ts +266 -38
- package/package.json +2 -2
package/dist/host.cjs
CHANGED
|
@@ -6560,10 +6560,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
6560
6560
|
const props = __props;
|
|
6561
6561
|
const emit = __emit;
|
|
6562
6562
|
const uid2 = vue.useId();
|
|
6563
|
-
const
|
|
6564
|
-
const inputId = vue.computed(() => `${boxId.value}-input`);
|
|
6565
|
-
const popperId = vue.computed(() => `${boxId.value}-popper`);
|
|
6566
|
-
const popperContentId = vue.computed(() => `${boxId.value}-content`);
|
|
6563
|
+
const inputId = vue.computed(() => props.id ?? uid2);
|
|
6567
6564
|
const i18n = vue.computed(() => _i18n$4.init(vue.inject(I18nInjectKey, null)?.locale ?? _i18n$4.fallback));
|
|
6568
6565
|
const trigger = vue.ref(null);
|
|
6569
6566
|
const popperContent = vue.ref(null);
|
|
@@ -6797,10 +6794,10 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
6797
6794
|
});
|
|
6798
6795
|
return (_ctx, _cache) => {
|
|
6799
6796
|
return vue.openBlock(), vue.createElementBlock("span", vue.mergeProps({
|
|
6800
|
-
id:
|
|
6797
|
+
id: `${inputId.value}-root`,
|
|
6801
6798
|
ref_key: "trigger",
|
|
6802
6799
|
ref: trigger,
|
|
6803
|
-
"aria-controls":
|
|
6800
|
+
"aria-controls": `${inputId.value}-popper`,
|
|
6804
6801
|
"aria-disabled": __props.disabled ? "true" : "false",
|
|
6805
6802
|
"aria-expanded": showCalendar.value ? "true" : "false",
|
|
6806
6803
|
"aria-haspopup": "dialog",
|
|
@@ -6849,7 +6846,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
6849
6846
|
} : void 0
|
|
6850
6847
|
]), 1040, ["id", "clearable", "value", "placeholder", "active", "disabled", "readonly"])),
|
|
6851
6848
|
vue.createVNode(_sfc_main$u, vue.mergeProps({
|
|
6852
|
-
id:
|
|
6849
|
+
id: `${inputId.value}-popper`,
|
|
6853
6850
|
visible: showCalendar.value,
|
|
6854
6851
|
target: triggerTarget.value,
|
|
6855
6852
|
"global-triggers": [],
|
|
@@ -6864,7 +6861,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
6864
6861
|
}), {
|
|
6865
6862
|
default: vue.withCtx(() => [
|
|
6866
6863
|
vue.createElementVNode("div", {
|
|
6867
|
-
id:
|
|
6864
|
+
id: `${inputId.value}-popper-content`,
|
|
6868
6865
|
ref_key: "popperContent",
|
|
6869
6866
|
ref: popperContent,
|
|
6870
6867
|
class: "ui-v1-date-picker__popper-content",
|
|
@@ -7830,7 +7827,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
7830
7827
|
"aria-hidden": visibility.value !== "shown" ? "true" : "false",
|
|
7831
7828
|
class: [_ctx.$attrs.class, {
|
|
7832
7829
|
["ui-v1-modal"]: true,
|
|
7833
|
-
["ui-v1-modal_overlapped"]: state.overlapped,
|
|
7830
|
+
["ui-v1-modal_overlapped"]: state.overlapped || __props.fixed,
|
|
7834
7831
|
["ui-v1-modal-sidebar-overlay"]: true,
|
|
7835
7832
|
["ui-v1-modal-sidebar-overlay_fixed"]: __props.fixed,
|
|
7836
7833
|
[`ui-v1-modal-sidebar-overlay_${__props.direction}`]: __props.fixed
|
|
@@ -7851,6 +7848,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
7851
7848
|
id: __props.id + "-sidebar",
|
|
7852
7849
|
class: vue.normalizeClass({
|
|
7853
7850
|
"ui-v1-modal-sidebar": true,
|
|
7851
|
+
"ui-v1-modal-sidebar_fixed": __props.fixed,
|
|
7854
7852
|
"ui-v1-modal-sidebar_left": __props.direction === vue.unref(DIRECTION$1).LEFT,
|
|
7855
7853
|
"ui-v1-modal-sidebar_size_sm": __props.size === vue.unref(SIZE$2).SM,
|
|
7856
7854
|
"ui-v1-modal-sidebar_size_lg": __props.size === vue.unref(SIZE$2).LG
|
|
@@ -10366,9 +10364,8 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
10366
10364
|
const props = __props;
|
|
10367
10365
|
const emit = __emit;
|
|
10368
10366
|
const uid2 = vue.useId();
|
|
10369
|
-
const
|
|
10370
|
-
const
|
|
10371
|
-
const listboxId = vue.computed(() => `${boxId.value}-listbox`);
|
|
10367
|
+
const inputId = vue.computed(() => props.id ?? uid2);
|
|
10368
|
+
const listboxId = vue.computed(() => `${inputId.value}-listbox`);
|
|
10372
10369
|
const i18n = vue.computed(() => _i18n.init(vue.inject(I18nInjectKey, null)?.locale ?? _i18n.fallback));
|
|
10373
10370
|
const root = vue.ref(null);
|
|
10374
10371
|
const rootTarget = vue.computed(() => root);
|
|
@@ -10622,11 +10619,11 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
10622
10619
|
});
|
|
10623
10620
|
return (_ctx, _cache) => {
|
|
10624
10621
|
return vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
10625
|
-
id:
|
|
10622
|
+
id: `${inputId.value}-root`,
|
|
10626
10623
|
ref_key: "root",
|
|
10627
10624
|
ref: root,
|
|
10628
10625
|
"aria-activedescendant": expanded.value && activeOptionId.value ? activeOptionId.value : void 0,
|
|
10629
|
-
"aria-controls":
|
|
10626
|
+
"aria-controls": `${inputId.value}-listbox`,
|
|
10630
10627
|
"aria-disabled": __props.disabled ? "true" : "false",
|
|
10631
10628
|
"aria-expanded": expanded.value ? "true" : "false",
|
|
10632
10629
|
"aria-haspopup": "listbox",
|
|
@@ -10667,7 +10664,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
10667
10664
|
_: 3
|
|
10668
10665
|
}, 16, ["id", "value", "placeholder", "clearable", "disabled", "readonly"]),
|
|
10669
10666
|
vue.createVNode(_sfc_main$u, {
|
|
10670
|
-
id:
|
|
10667
|
+
id: `${inputId.value}-listbox`,
|
|
10671
10668
|
visible: expanded.value,
|
|
10672
10669
|
target: rootTarget.value,
|
|
10673
10670
|
"global-triggers": [],
|
package/dist/host.css
CHANGED
|
@@ -2860,10 +2860,12 @@
|
|
|
2860
2860
|
background: none;
|
|
2861
2861
|
}
|
|
2862
2862
|
.ui-v1-modal-sidebar-overlay_left {
|
|
2863
|
+
left: 0;
|
|
2863
2864
|
right: auto;
|
|
2864
2865
|
}
|
|
2865
2866
|
.ui-v1-modal-sidebar-overlay_right {
|
|
2866
2867
|
left: auto;
|
|
2868
|
+
right: 0;
|
|
2867
2869
|
}
|
|
2868
2870
|
.ui-v1-modal-sidebar {
|
|
2869
2871
|
display: flex;
|
|
@@ -2878,6 +2880,9 @@
|
|
|
2878
2880
|
right: 0;
|
|
2879
2881
|
bottom: 0;
|
|
2880
2882
|
}
|
|
2883
|
+
.ui-v1-modal-sidebar_fixed {
|
|
2884
|
+
position: fixed;
|
|
2885
|
+
}
|
|
2881
2886
|
.ui-v1-modal-sidebar_left {
|
|
2882
2887
|
left: 0;
|
|
2883
2888
|
right: auto;
|
package/dist/host.js
CHANGED
|
@@ -6558,10 +6558,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
6558
6558
|
const props = __props;
|
|
6559
6559
|
const emit = __emit;
|
|
6560
6560
|
const uid2 = useId();
|
|
6561
|
-
const
|
|
6562
|
-
const inputId = computed(() => `${boxId.value}-input`);
|
|
6563
|
-
const popperId = computed(() => `${boxId.value}-popper`);
|
|
6564
|
-
const popperContentId = computed(() => `${boxId.value}-content`);
|
|
6561
|
+
const inputId = computed(() => props.id ?? uid2);
|
|
6565
6562
|
const i18n = computed(() => _i18n$4.init(inject(I18nInjectKey, null)?.locale ?? _i18n$4.fallback));
|
|
6566
6563
|
const trigger = ref(null);
|
|
6567
6564
|
const popperContent = ref(null);
|
|
@@ -6795,10 +6792,10 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
6795
6792
|
});
|
|
6796
6793
|
return (_ctx, _cache) => {
|
|
6797
6794
|
return openBlock(), createElementBlock("span", mergeProps({
|
|
6798
|
-
id:
|
|
6795
|
+
id: `${inputId.value}-root`,
|
|
6799
6796
|
ref_key: "trigger",
|
|
6800
6797
|
ref: trigger,
|
|
6801
|
-
"aria-controls":
|
|
6798
|
+
"aria-controls": `${inputId.value}-popper`,
|
|
6802
6799
|
"aria-disabled": __props.disabled ? "true" : "false",
|
|
6803
6800
|
"aria-expanded": showCalendar.value ? "true" : "false",
|
|
6804
6801
|
"aria-haspopup": "dialog",
|
|
@@ -6847,7 +6844,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
6847
6844
|
} : void 0
|
|
6848
6845
|
]), 1040, ["id", "clearable", "value", "placeholder", "active", "disabled", "readonly"])),
|
|
6849
6846
|
createVNode(_sfc_main$u, mergeProps({
|
|
6850
|
-
id:
|
|
6847
|
+
id: `${inputId.value}-popper`,
|
|
6851
6848
|
visible: showCalendar.value,
|
|
6852
6849
|
target: triggerTarget.value,
|
|
6853
6850
|
"global-triggers": [],
|
|
@@ -6862,7 +6859,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
6862
6859
|
}), {
|
|
6863
6860
|
default: withCtx(() => [
|
|
6864
6861
|
createElementVNode("div", {
|
|
6865
|
-
id:
|
|
6862
|
+
id: `${inputId.value}-popper-content`,
|
|
6866
6863
|
ref_key: "popperContent",
|
|
6867
6864
|
ref: popperContent,
|
|
6868
6865
|
class: "ui-v1-date-picker__popper-content",
|
|
@@ -7828,7 +7825,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
7828
7825
|
"aria-hidden": visibility.value !== "shown" ? "true" : "false",
|
|
7829
7826
|
class: [_ctx.$attrs.class, {
|
|
7830
7827
|
["ui-v1-modal"]: true,
|
|
7831
|
-
["ui-v1-modal_overlapped"]: state.overlapped,
|
|
7828
|
+
["ui-v1-modal_overlapped"]: state.overlapped || __props.fixed,
|
|
7832
7829
|
["ui-v1-modal-sidebar-overlay"]: true,
|
|
7833
7830
|
["ui-v1-modal-sidebar-overlay_fixed"]: __props.fixed,
|
|
7834
7831
|
[`ui-v1-modal-sidebar-overlay_${__props.direction}`]: __props.fixed
|
|
@@ -7849,6 +7846,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
7849
7846
|
id: __props.id + "-sidebar",
|
|
7850
7847
|
class: normalizeClass({
|
|
7851
7848
|
"ui-v1-modal-sidebar": true,
|
|
7849
|
+
"ui-v1-modal-sidebar_fixed": __props.fixed,
|
|
7852
7850
|
"ui-v1-modal-sidebar_left": __props.direction === unref(DIRECTION$1).LEFT,
|
|
7853
7851
|
"ui-v1-modal-sidebar_size_sm": __props.size === unref(SIZE$2).SM,
|
|
7854
7852
|
"ui-v1-modal-sidebar_size_lg": __props.size === unref(SIZE$2).LG
|
|
@@ -10364,9 +10362,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
10364
10362
|
const props = __props;
|
|
10365
10363
|
const emit = __emit;
|
|
10366
10364
|
const uid2 = useId();
|
|
10367
|
-
const
|
|
10368
|
-
const
|
|
10369
|
-
const listboxId = computed(() => `${boxId.value}-listbox`);
|
|
10365
|
+
const inputId = computed(() => props.id ?? uid2);
|
|
10366
|
+
const listboxId = computed(() => `${inputId.value}-listbox`);
|
|
10370
10367
|
const i18n = computed(() => _i18n.init(inject(I18nInjectKey, null)?.locale ?? _i18n.fallback));
|
|
10371
10368
|
const root = ref(null);
|
|
10372
10369
|
const rootTarget = computed(() => root);
|
|
@@ -10620,11 +10617,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
10620
10617
|
});
|
|
10621
10618
|
return (_ctx, _cache) => {
|
|
10622
10619
|
return openBlock(), createElementBlock("div", mergeProps({
|
|
10623
|
-
id:
|
|
10620
|
+
id: `${inputId.value}-root`,
|
|
10624
10621
|
ref_key: "root",
|
|
10625
10622
|
ref: root,
|
|
10626
10623
|
"aria-activedescendant": expanded.value && activeOptionId.value ? activeOptionId.value : void 0,
|
|
10627
|
-
"aria-controls":
|
|
10624
|
+
"aria-controls": `${inputId.value}-listbox`,
|
|
10628
10625
|
"aria-disabled": __props.disabled ? "true" : "false",
|
|
10629
10626
|
"aria-expanded": expanded.value ? "true" : "false",
|
|
10630
10627
|
"aria-haspopup": "listbox",
|
|
@@ -10665,7 +10662,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
10665
10662
|
_: 3
|
|
10666
10663
|
}, 16, ["id", "value", "placeholder", "clearable", "disabled", "readonly"]),
|
|
10667
10664
|
createVNode(_sfc_main$u, {
|
|
10668
|
-
id:
|
|
10665
|
+
id: `${inputId.value}-listbox`,
|
|
10669
10666
|
visible: expanded.value,
|
|
10670
10667
|
target: rootTarget.value,
|
|
10671
10668
|
"global-triggers": [],
|
package/dist/remote.d.ts
CHANGED
|
@@ -821,7 +821,13 @@ export declare const UiAddButton: {
|
|
|
821
821
|
click: (event: SerializedEvent) => boolean;
|
|
822
822
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
823
823
|
blur: (event: SerializedEvent) => boolean;
|
|
824
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
824
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
825
|
+
$slots: {
|
|
826
|
+
[x: string]: never;
|
|
827
|
+
} & {
|
|
828
|
+
default?: (...args: never[]) => unknown;
|
|
829
|
+
};
|
|
830
|
+
});
|
|
825
831
|
declare type UiAddButtonProperties = {
|
|
826
832
|
type?: HTMLButtonElement['type'];
|
|
827
833
|
small?: boolean;
|
|
@@ -877,7 +883,13 @@ export declare const UiAlert: {
|
|
|
877
883
|
shown: () => boolean;
|
|
878
884
|
hiding: () => boolean;
|
|
879
885
|
hidden: () => boolean;
|
|
880
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
886
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
887
|
+
$slots: {
|
|
888
|
+
[x: string]: never;
|
|
889
|
+
} & {
|
|
890
|
+
default?: (...args: never[]) => unknown;
|
|
891
|
+
};
|
|
892
|
+
});
|
|
881
893
|
declare type UiAlertMethods = {
|
|
882
894
|
scrollIntoView(): void;
|
|
883
895
|
};
|
|
@@ -934,7 +946,13 @@ export declare const UiAvatar: {
|
|
|
934
946
|
[x: string]: never;
|
|
935
947
|
}, MethodOptions, {
|
|
936
948
|
[x: string]: never;
|
|
937
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
949
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
950
|
+
$slots: {
|
|
951
|
+
[x: string]: never;
|
|
952
|
+
} & {
|
|
953
|
+
default?: (...args: never[]) => unknown;
|
|
954
|
+
};
|
|
955
|
+
});
|
|
938
956
|
export declare const UiAvatarList: {
|
|
939
957
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<RemoteProperties<UiAvatarListProperties>>>, {
|
|
940
958
|
[x: string]: unknown;
|
|
@@ -976,7 +994,13 @@ export declare const UiAvatarList: {
|
|
|
976
994
|
[x: string]: never;
|
|
977
995
|
}, MethodOptions, {
|
|
978
996
|
[x: string]: never;
|
|
979
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
997
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
998
|
+
$slots: {
|
|
999
|
+
[x: string]: never;
|
|
1000
|
+
} & {
|
|
1001
|
+
default?: (...args: never[]) => unknown;
|
|
1002
|
+
};
|
|
1003
|
+
});
|
|
980
1004
|
declare type UiAvatarListProperties = {
|
|
981
1005
|
avatars?: Array<{
|
|
982
1006
|
src: string;
|
|
@@ -1044,7 +1068,13 @@ export declare const UiButton: {
|
|
|
1044
1068
|
click: (event: SerializedEvent) => boolean;
|
|
1045
1069
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1046
1070
|
blur: (event: SerializedEvent) => boolean;
|
|
1047
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1071
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1072
|
+
$slots: {
|
|
1073
|
+
[x: string]: never;
|
|
1074
|
+
} & {
|
|
1075
|
+
default?: (...args: never[]) => unknown;
|
|
1076
|
+
};
|
|
1077
|
+
});
|
|
1048
1078
|
declare type UiButtonMethods = {
|
|
1049
1079
|
click(): void;
|
|
1050
1080
|
focus(): void;
|
|
@@ -1104,7 +1134,13 @@ export declare const UiCalendar: {
|
|
|
1104
1134
|
}, MethodOptions, {
|
|
1105
1135
|
change: (value: Date | Date[] | null) => boolean;
|
|
1106
1136
|
'update:value': (value: Date | Date[] | null) => boolean;
|
|
1107
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1137
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1138
|
+
$slots: {
|
|
1139
|
+
[x: string]: never;
|
|
1140
|
+
} & {
|
|
1141
|
+
default?: (...args: never[]) => unknown;
|
|
1142
|
+
};
|
|
1143
|
+
});
|
|
1108
1144
|
declare type UiCalendarMethods = {
|
|
1109
1145
|
viewTo(...dates: Date[]): void;
|
|
1110
1146
|
};
|
|
@@ -1164,7 +1200,13 @@ export declare const UiCheckbox: {
|
|
|
1164
1200
|
click: (event: SerializedEvent) => boolean;
|
|
1165
1201
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1166
1202
|
blur: (event: SerializedEvent) => boolean;
|
|
1167
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1203
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1204
|
+
$slots: {
|
|
1205
|
+
[x: string]: never;
|
|
1206
|
+
} & {
|
|
1207
|
+
default?: (...args: never[]) => unknown;
|
|
1208
|
+
};
|
|
1209
|
+
});
|
|
1168
1210
|
declare type UiCheckboxMethods = {
|
|
1169
1211
|
click(): void;
|
|
1170
1212
|
focus(): void;
|
|
@@ -1229,7 +1271,13 @@ export declare const UiCollapse: {
|
|
|
1229
1271
|
collapsing: () => boolean;
|
|
1230
1272
|
expanded: () => boolean;
|
|
1231
1273
|
expanding: () => boolean;
|
|
1232
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1274
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1275
|
+
$slots: {
|
|
1276
|
+
[x: string]: never;
|
|
1277
|
+
} & {
|
|
1278
|
+
default?: (...args: never[]) => unknown;
|
|
1279
|
+
};
|
|
1280
|
+
});
|
|
1233
1281
|
export declare const UiCollapseBox: {
|
|
1234
1282
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<RemoteProperties<UiCollapseBoxProperties>>>, {
|
|
1235
1283
|
[x: string]: unknown;
|
|
@@ -1281,7 +1329,13 @@ export declare const UiCollapseBox: {
|
|
|
1281
1329
|
'expand-cancel': () => boolean;
|
|
1282
1330
|
toggle: (expanded: boolean) => boolean;
|
|
1283
1331
|
'update:expanded': (expanded: boolean) => boolean;
|
|
1284
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1332
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1333
|
+
$slots: {
|
|
1334
|
+
[x: string]: never;
|
|
1335
|
+
} & {
|
|
1336
|
+
default?: (...args: never[]) => unknown;
|
|
1337
|
+
};
|
|
1338
|
+
});
|
|
1285
1339
|
declare type UiCollapseBoxMethods = {
|
|
1286
1340
|
isExpanded(): boolean;
|
|
1287
1341
|
expand(): void;
|
|
@@ -1355,7 +1409,13 @@ export declare const UiCollapseGroup: {
|
|
|
1355
1409
|
}) => boolean;
|
|
1356
1410
|
expanded: (id: string | null) => boolean;
|
|
1357
1411
|
'update:activeBoxId': (id: string | null) => boolean;
|
|
1358
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1412
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1413
|
+
$slots: {
|
|
1414
|
+
[x: string]: never;
|
|
1415
|
+
} & {
|
|
1416
|
+
default?: (...args: never[]) => unknown;
|
|
1417
|
+
};
|
|
1418
|
+
});
|
|
1359
1419
|
declare type UiCollapseGroupMethods = {
|
|
1360
1420
|
expand(id: string | null, force: boolean | undefined): void;
|
|
1361
1421
|
collapse(id: string | null): void;
|
|
@@ -1418,7 +1478,13 @@ export declare const UiCopyButton: {
|
|
|
1418
1478
|
click: (event: SerializedEvent) => boolean;
|
|
1419
1479
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1420
1480
|
blur: (event: SerializedEvent) => boolean;
|
|
1421
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1481
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1482
|
+
$slots: {
|
|
1483
|
+
[x: string]: never;
|
|
1484
|
+
} & {
|
|
1485
|
+
default?: (...args: never[]) => unknown;
|
|
1486
|
+
};
|
|
1487
|
+
});
|
|
1422
1488
|
declare type UiCopyButtonProperties = {
|
|
1423
1489
|
text: string;
|
|
1424
1490
|
size: SIZE_2;
|
|
@@ -1466,7 +1532,13 @@ export declare const UiDate: {
|
|
|
1466
1532
|
[x: string]: never;
|
|
1467
1533
|
}, MethodOptions, {
|
|
1468
1534
|
[x: string]: never;
|
|
1469
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1535
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1536
|
+
$slots: {
|
|
1537
|
+
[x: string]: never;
|
|
1538
|
+
} & {
|
|
1539
|
+
default?: (...args: never[]) => unknown;
|
|
1540
|
+
};
|
|
1541
|
+
});
|
|
1470
1542
|
export declare const UiDatePicker: {
|
|
1471
1543
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<RemoteProperties<UiDatePickerProperties>>>, {
|
|
1472
1544
|
[x: string]: unknown;
|
|
@@ -1514,7 +1586,13 @@ export declare const UiDatePicker: {
|
|
|
1514
1586
|
close: () => boolean;
|
|
1515
1587
|
change: (value: Date | Date[] | null) => boolean;
|
|
1516
1588
|
'update:value': (value: Date | Date[] | null) => boolean;
|
|
1517
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1589
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1590
|
+
$slots: {
|
|
1591
|
+
[x: string]: never;
|
|
1592
|
+
} & {
|
|
1593
|
+
default?: (...args: never[]) => unknown;
|
|
1594
|
+
};
|
|
1595
|
+
});
|
|
1518
1596
|
declare type UiDatePickerMethods = {
|
|
1519
1597
|
open(): void;
|
|
1520
1598
|
close(): void;
|
|
@@ -1595,7 +1673,13 @@ export declare const UiError: {
|
|
|
1595
1673
|
click: (event: SerializedEvent) => boolean;
|
|
1596
1674
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1597
1675
|
blur: (event: SerializedEvent) => boolean;
|
|
1598
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1676
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1677
|
+
$slots: {
|
|
1678
|
+
[x: string]: never;
|
|
1679
|
+
} & {
|
|
1680
|
+
default?: (...args: never[]) => unknown;
|
|
1681
|
+
};
|
|
1682
|
+
});
|
|
1599
1683
|
declare type UiErrorProperties = {
|
|
1600
1684
|
message: string;
|
|
1601
1685
|
align?: ALIGN | `${ALIGN}`;
|
|
@@ -1650,7 +1734,13 @@ export declare const UiInfobox: {
|
|
|
1650
1734
|
hide: () => boolean;
|
|
1651
1735
|
'update:expanded': (expanded: boolean) => boolean;
|
|
1652
1736
|
'update:shown': (shown: boolean) => boolean;
|
|
1653
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1737
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1738
|
+
$slots: {
|
|
1739
|
+
[x: string]: never;
|
|
1740
|
+
} & {
|
|
1741
|
+
default?: (...args: never[]) => unknown;
|
|
1742
|
+
};
|
|
1743
|
+
});
|
|
1654
1744
|
declare type UiInfoboxMethods = {
|
|
1655
1745
|
show(): void;
|
|
1656
1746
|
hide(): void;
|
|
@@ -1711,7 +1801,13 @@ export declare const UiLink: {
|
|
|
1711
1801
|
click: (event: SerializedEvent) => boolean;
|
|
1712
1802
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1713
1803
|
blur: (event: SerializedEvent) => boolean;
|
|
1714
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1804
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1805
|
+
$slots: {
|
|
1806
|
+
[x: string]: never;
|
|
1807
|
+
} & {
|
|
1808
|
+
default?: (...args: never[]) => unknown;
|
|
1809
|
+
};
|
|
1810
|
+
});
|
|
1715
1811
|
declare type UiLinkProperties = {
|
|
1716
1812
|
href?: string;
|
|
1717
1813
|
external?: boolean;
|
|
@@ -1768,7 +1864,13 @@ export declare const UiLoader: {
|
|
|
1768
1864
|
click: (event: SerializedEvent) => boolean;
|
|
1769
1865
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
1770
1866
|
blur: (event: SerializedEvent) => boolean;
|
|
1771
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1867
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1868
|
+
$slots: {
|
|
1869
|
+
[x: string]: never;
|
|
1870
|
+
} & {
|
|
1871
|
+
default?: (...args: never[]) => unknown;
|
|
1872
|
+
};
|
|
1873
|
+
});
|
|
1772
1874
|
declare type UiLoaderProperties = {
|
|
1773
1875
|
diameter?: Numeric;
|
|
1774
1876
|
thickness?: Numeric;
|
|
@@ -1814,7 +1916,13 @@ export declare const UiMenuItem: {
|
|
|
1814
1916
|
[x: string]: never;
|
|
1815
1917
|
}, {
|
|
1816
1918
|
[x: string]: never;
|
|
1817
|
-
}, MethodOptions, never[], ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1919
|
+
}, MethodOptions, never[], ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1920
|
+
$slots: {
|
|
1921
|
+
[x: string]: never;
|
|
1922
|
+
} & {
|
|
1923
|
+
default?: (...args: never[]) => unknown;
|
|
1924
|
+
};
|
|
1925
|
+
});
|
|
1818
1926
|
export declare const UiMenuItemGroup: {
|
|
1819
1927
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<{
|
|
1820
1928
|
[x: string]: never;
|
|
@@ -1858,7 +1966,13 @@ export declare const UiMenuItemGroup: {
|
|
|
1858
1966
|
[x: string]: never;
|
|
1859
1967
|
}, {
|
|
1860
1968
|
[x: string]: never;
|
|
1861
|
-
}, MethodOptions, never[], ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
1969
|
+
}, MethodOptions, never[], ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1970
|
+
$slots: {
|
|
1971
|
+
[x: string]: never;
|
|
1972
|
+
} & {
|
|
1973
|
+
default?: (...args: never[]) => unknown;
|
|
1974
|
+
};
|
|
1975
|
+
});
|
|
1862
1976
|
export declare const UiMenuItemGroupType: SchemaType<"UiMenuItemGroup">;
|
|
1863
1977
|
declare type UiMenuItemProperties = {
|
|
1864
1978
|
description?: string;
|
|
@@ -1933,7 +2047,13 @@ export declare const UiModalSidebar: {
|
|
|
1933
2047
|
'update:opened': (opened: boolean) => boolean;
|
|
1934
2048
|
'update:overlapped': (overlapped: boolean) => boolean;
|
|
1935
2049
|
'scroll:y:end': () => boolean;
|
|
1936
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2050
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2051
|
+
$slots: {
|
|
2052
|
+
[x: string]: never;
|
|
2053
|
+
} & {
|
|
2054
|
+
default?: (...args: never[]) => unknown;
|
|
2055
|
+
};
|
|
2056
|
+
});
|
|
1937
2057
|
declare type UiModalSidebarProperties = {
|
|
1938
2058
|
id?: string;
|
|
1939
2059
|
opened?: boolean;
|
|
@@ -2005,7 +2125,13 @@ export declare const UiModalWindow: {
|
|
|
2005
2125
|
'content:scroll:y:end': () => boolean;
|
|
2006
2126
|
toggle: (opened: boolean) => boolean;
|
|
2007
2127
|
'update:opened': (opened: boolean) => boolean;
|
|
2008
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2128
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2129
|
+
$slots: {
|
|
2130
|
+
[x: string]: never;
|
|
2131
|
+
} & {
|
|
2132
|
+
default?: (...args: never[]) => unknown;
|
|
2133
|
+
};
|
|
2134
|
+
});
|
|
2009
2135
|
declare type UiModalWindowMethods = UiModalWindowSurfaceMethods;
|
|
2010
2136
|
declare type UiModalWindowProperties = UiModalWindowSurfaceProperties;
|
|
2011
2137
|
export declare const UiModalWindowSurface: {
|
|
@@ -2069,7 +2195,13 @@ export declare const UiModalWindowSurface: {
|
|
|
2069
2195
|
'scroll:y:end': (event: SerializedEvent) => boolean;
|
|
2070
2196
|
'update:opened': (opened: boolean) => boolean;
|
|
2071
2197
|
'update:overlapped': (overlapped: boolean) => boolean;
|
|
2072
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2198
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2199
|
+
$slots: {
|
|
2200
|
+
[x: string]: never;
|
|
2201
|
+
} & {
|
|
2202
|
+
default?: (...args: never[]) => unknown;
|
|
2203
|
+
};
|
|
2204
|
+
});
|
|
2073
2205
|
declare type UiModalWindowSurfaceMethods = {
|
|
2074
2206
|
open(): void;
|
|
2075
2207
|
close(): void;
|
|
@@ -2140,7 +2272,13 @@ export declare const UiNumberStepper: {
|
|
|
2140
2272
|
increase: (value: number | null) => boolean;
|
|
2141
2273
|
decrease: (value: number | null) => boolean;
|
|
2142
2274
|
violation: (payload: ViolationPayload) => boolean;
|
|
2143
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2275
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2276
|
+
$slots: {
|
|
2277
|
+
[x: string]: never;
|
|
2278
|
+
} & {
|
|
2279
|
+
default?: (...args: never[]) => unknown;
|
|
2280
|
+
};
|
|
2281
|
+
});
|
|
2144
2282
|
declare type UiNumberStepperMethods = {
|
|
2145
2283
|
focus(): void;
|
|
2146
2284
|
blur(): void;
|
|
@@ -2206,7 +2344,13 @@ export declare const UiPopper: {
|
|
|
2206
2344
|
[x: string]: never;
|
|
2207
2345
|
}, MethodOptions, {
|
|
2208
2346
|
[x: string]: never;
|
|
2209
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2347
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2348
|
+
$slots: {
|
|
2349
|
+
[x: string]: never;
|
|
2350
|
+
} & {
|
|
2351
|
+
default?: (...args: never[]) => unknown;
|
|
2352
|
+
};
|
|
2353
|
+
});
|
|
2210
2354
|
export declare const UiPopperConnector: {
|
|
2211
2355
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<{
|
|
2212
2356
|
[x: string]: never;
|
|
@@ -2254,7 +2398,13 @@ export declare const UiPopperConnector: {
|
|
|
2254
2398
|
[x: string]: never;
|
|
2255
2399
|
}, MethodOptions, {
|
|
2256
2400
|
[x: string]: never;
|
|
2257
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2401
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2402
|
+
$slots: {
|
|
2403
|
+
[x: string]: never;
|
|
2404
|
+
} & {
|
|
2405
|
+
default?: (...args: never[]) => unknown;
|
|
2406
|
+
};
|
|
2407
|
+
});
|
|
2258
2408
|
export declare const UiPopperConnectorType: SchemaType<"UiPopperConnector">;
|
|
2259
2409
|
declare type UiPopperProperties = FloatingOptions & ShowingOptions & {
|
|
2260
2410
|
withArrow?: boolean;
|
|
@@ -2306,7 +2456,13 @@ export declare const UiPopperTarget: {
|
|
|
2306
2456
|
[x: string]: never;
|
|
2307
2457
|
}, MethodOptions, {
|
|
2308
2458
|
[x: string]: never;
|
|
2309
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2459
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2460
|
+
$slots: {
|
|
2461
|
+
[x: string]: never;
|
|
2462
|
+
} & {
|
|
2463
|
+
default?: (...args: never[]) => unknown;
|
|
2464
|
+
};
|
|
2465
|
+
});
|
|
2310
2466
|
export declare const UiPopperTargetType: SchemaType<"UiPopperTarget", RemoteProperties<{
|
|
2311
2467
|
tag?: string;
|
|
2312
2468
|
}>>;
|
|
@@ -2356,7 +2512,13 @@ export declare const UiRadio: {
|
|
|
2356
2512
|
click: (event: SerializedEvent) => boolean;
|
|
2357
2513
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
2358
2514
|
blur: (event: SerializedEvent) => boolean;
|
|
2359
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2515
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2516
|
+
$slots: {
|
|
2517
|
+
[x: string]: never;
|
|
2518
|
+
} & {
|
|
2519
|
+
default?: (...args: never[]) => unknown;
|
|
2520
|
+
};
|
|
2521
|
+
});
|
|
2360
2522
|
declare type UiRadioMethods = {
|
|
2361
2523
|
click(): void;
|
|
2362
2524
|
focus(): void;
|
|
@@ -2420,7 +2582,13 @@ export declare const UiScrollBox: {
|
|
|
2420
2582
|
blur: (event: SerializedEvent) => boolean;
|
|
2421
2583
|
'ps-y-reach-start': (event: SerializedEvent) => boolean;
|
|
2422
2584
|
'ps-y-reach-end': (event: SerializedEvent) => boolean;
|
|
2423
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2585
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2586
|
+
$slots: {
|
|
2587
|
+
[x: string]: never;
|
|
2588
|
+
} & {
|
|
2589
|
+
default?: (...args: never[]) => unknown;
|
|
2590
|
+
};
|
|
2591
|
+
});
|
|
2424
2592
|
declare type UiScrollBoxMethods = {
|
|
2425
2593
|
scroll(y: number): void;
|
|
2426
2594
|
update(): void;
|
|
@@ -2489,7 +2657,13 @@ export declare const UiSlider: {
|
|
|
2489
2657
|
[x: string]: never;
|
|
2490
2658
|
}, MethodOptions, {
|
|
2491
2659
|
'update:value': (value: number | number[]) => boolean;
|
|
2492
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2660
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2661
|
+
$slots: {
|
|
2662
|
+
[x: string]: never;
|
|
2663
|
+
} & {
|
|
2664
|
+
default?: (...args: never[]) => unknown;
|
|
2665
|
+
};
|
|
2666
|
+
});
|
|
2493
2667
|
declare type UiSliderProperties = {
|
|
2494
2668
|
type?: TYPE_3 | `${TYPE_3}`;
|
|
2495
2669
|
value?: number | number[];
|
|
@@ -2543,7 +2717,13 @@ export declare const UiSwitch: {
|
|
|
2543
2717
|
click: (event: SerializedEvent) => boolean;
|
|
2544
2718
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
2545
2719
|
blur: (event: SerializedEvent) => boolean;
|
|
2546
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2720
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2721
|
+
$slots: {
|
|
2722
|
+
[x: string]: never;
|
|
2723
|
+
} & {
|
|
2724
|
+
default?: (...args: never[]) => unknown;
|
|
2725
|
+
};
|
|
2726
|
+
});
|
|
2547
2727
|
declare type UiSwitchMethods = {
|
|
2548
2728
|
click(): void;
|
|
2549
2729
|
focus(): void;
|
|
@@ -2603,7 +2783,13 @@ export declare const UiTag: {
|
|
|
2603
2783
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
2604
2784
|
blur: (event: SerializedEvent) => boolean;
|
|
2605
2785
|
remove: () => boolean;
|
|
2606
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2786
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2787
|
+
$slots: {
|
|
2788
|
+
[x: string]: never;
|
|
2789
|
+
} & {
|
|
2790
|
+
default?: (...args: never[]) => unknown;
|
|
2791
|
+
};
|
|
2792
|
+
});
|
|
2607
2793
|
declare type UiTagProperties = {
|
|
2608
2794
|
size?: SIZE_7 | `${SIZE_7}`;
|
|
2609
2795
|
pinned?: boolean;
|
|
@@ -2671,7 +2857,13 @@ export declare const UiTextbox: {
|
|
|
2671
2857
|
'update:focused': (focused: boolean) => boolean;
|
|
2672
2858
|
'update:value': (value: string | number) => boolean;
|
|
2673
2859
|
clear: () => boolean;
|
|
2674
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2860
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2861
|
+
$slots: {
|
|
2862
|
+
[x: string]: never;
|
|
2863
|
+
} & {
|
|
2864
|
+
default?: (...args: never[]) => unknown;
|
|
2865
|
+
};
|
|
2866
|
+
});
|
|
2675
2867
|
declare type UiTextboxInputAttributes = Record<string, string | number | boolean | undefined>;
|
|
2676
2868
|
declare type UiTextboxMethods = {
|
|
2677
2869
|
getSelectionStart(): number | null;
|
|
@@ -2762,7 +2954,13 @@ export declare const UiTimePicker: {
|
|
|
2762
2954
|
'update:value': (value: string) => boolean;
|
|
2763
2955
|
focus: (event: FocusEvent) => boolean;
|
|
2764
2956
|
blur: (event: Event) => boolean;
|
|
2765
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
2957
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2958
|
+
$slots: {
|
|
2959
|
+
[x: string]: never;
|
|
2960
|
+
} & {
|
|
2961
|
+
default?: (...args: never[]) => unknown;
|
|
2962
|
+
};
|
|
2963
|
+
});
|
|
2766
2964
|
declare type UiTimePickerMethods = {
|
|
2767
2965
|
open(): void;
|
|
2768
2966
|
close(): void;
|
|
@@ -2827,7 +3025,13 @@ export declare const UiToolbarButton: {
|
|
|
2827
3025
|
click: (event: SerializedEvent) => boolean;
|
|
2828
3026
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
2829
3027
|
blur: (event: SerializedEvent) => boolean;
|
|
2830
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
3028
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3029
|
+
$slots: {
|
|
3030
|
+
[x: string]: never;
|
|
3031
|
+
} & {
|
|
3032
|
+
default?: (...args: never[]) => unknown;
|
|
3033
|
+
};
|
|
3034
|
+
});
|
|
2831
3035
|
declare type UiToolbarButtonProperties = Omit<UiButtonProperties, 'appearance' | 'size' | 'type'>;
|
|
2832
3036
|
export declare const UiToolbarButtonType: SchemaType<"UiToolbarButton", RemoteProperties<UiToolbarButtonProperties>, RemoteCallable<UiButtonMethods>>;
|
|
2833
3037
|
export declare const UiToolbarLink: {
|
|
@@ -2875,7 +3079,13 @@ export declare const UiToolbarLink: {
|
|
|
2875
3079
|
click: (event: SerializedEvent) => boolean;
|
|
2876
3080
|
focus: (event: SerializedFocusEvent) => boolean;
|
|
2877
3081
|
blur: (event: SerializedEvent) => boolean;
|
|
2878
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
3082
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3083
|
+
$slots: {
|
|
3084
|
+
[x: string]: never;
|
|
3085
|
+
} & {
|
|
3086
|
+
default?: (...args: never[]) => unknown;
|
|
3087
|
+
};
|
|
3088
|
+
});
|
|
2879
3089
|
declare type UiToolbarLinkProperties = Omit<UiLinkProperties, 'size'>;
|
|
2880
3090
|
export declare const UiToolbarLinkType: SchemaType<"UiToolbarLink", RemoteProperties<UiToolbarLinkProperties>, Record<string, never>>;
|
|
2881
3091
|
export declare const UiTooltip: {
|
|
@@ -2919,7 +3129,13 @@ export declare const UiTooltip: {
|
|
|
2919
3129
|
[x: string]: never;
|
|
2920
3130
|
}, MethodOptions, {
|
|
2921
3131
|
[x: string]: never;
|
|
2922
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
3132
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3133
|
+
$slots: {
|
|
3134
|
+
[x: string]: never;
|
|
3135
|
+
} & {
|
|
3136
|
+
default?: (...args: never[]) => unknown;
|
|
3137
|
+
};
|
|
3138
|
+
});
|
|
2923
3139
|
export declare const UiTooltipType: SchemaType<"UiTooltip", RemoteProperties<UiPopperProperties>>;
|
|
2924
3140
|
export declare const UiTransition: {
|
|
2925
3141
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<RemoteProperties<UiTransitionProps>>>, {
|
|
@@ -2962,7 +3178,13 @@ export declare const UiTransition: {
|
|
|
2962
3178
|
[x: string]: never;
|
|
2963
3179
|
}, MethodOptions, {
|
|
2964
3180
|
[x: string]: never;
|
|
2965
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
3181
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3182
|
+
$slots: {
|
|
3183
|
+
[x: string]: never;
|
|
3184
|
+
} & {
|
|
3185
|
+
default?: (...args: never[]) => unknown;
|
|
3186
|
+
};
|
|
3187
|
+
});
|
|
2966
3188
|
declare type UiTransitionProps = {
|
|
2967
3189
|
name?: string;
|
|
2968
3190
|
appear?: boolean;
|
|
@@ -3011,7 +3233,13 @@ export declare const UiYandexMap: {
|
|
|
3011
3233
|
}, MethodOptions, {
|
|
3012
3234
|
change: (address: string) => boolean;
|
|
3013
3235
|
'update:address': (address: string) => boolean;
|
|
3014
|
-
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps
|
|
3236
|
+
}, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3237
|
+
$slots: {
|
|
3238
|
+
[x: string]: never;
|
|
3239
|
+
} & {
|
|
3240
|
+
default?: (...args: never[]) => unknown;
|
|
3241
|
+
};
|
|
3242
|
+
});
|
|
3015
3243
|
declare type UiYandexMapProperties = {
|
|
3016
3244
|
apiKey: string;
|
|
3017
3245
|
address?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retailcrm/embed-ui-v1-components",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.9.11
|
|
4
|
+
"version": "0.9.11",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
|
7
7
|
"repository": "git@github.com:retailcrm/embed-ui.git",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"vue": "^3.5"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@omnicajs/vue-remote": "^0.2.
|
|
57
|
+
"@omnicajs/vue-remote": "^0.2.17",
|
|
58
58
|
"@remote-ui/rpc": "^1.4.7",
|
|
59
59
|
"@retailcrm/image-preview": "^1.0.2",
|
|
60
60
|
"date-fns": "^4.1.0",
|