plugin-ui-for-kzt 0.0.10 → 0.0.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/example/App.vue.d.ts +46 -0
- package/dist/example/main.d.ts +1 -0
- package/dist/index.js +58230 -0
- package/dist/index.js.map +1 -0
- package/dist/sprite.svg +4 -0
- package/dist/src/components/BaseBreadCrumbs/BaseBreadCrumbs.vue.d.ts +34 -0
- package/dist/src/components/BaseButton/BaseButton.vue.d.ts +189 -0
- package/dist/src/components/BaseCalendar/BaseCalendar.vue.d.ts +176 -0
- package/dist/src/components/BaseCheckbox/BaseCheckbox.vue.d.ts +174 -0
- package/dist/src/components/BaseDropdown/BaseDropdown.vue.d.ts +151 -0
- package/dist/src/components/BaseIcon/BaseIcon.vue.d.ts +29 -0
- package/dist/src/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +202 -0
- package/dist/src/components/BaseInputEmail/BaseInputEmail.vue.d.ts +176 -0
- package/dist/src/components/BaseInputPhone/BaseInputPhone.vue.d.ts +251 -0
- package/dist/src/components/BaseLoader/BaseLoader.vue.d.ts +4 -0
- package/dist/src/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +148 -0
- package/dist/src/components/BaseRadio/BaseRadio.vue.d.ts +173 -0
- package/dist/src/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +142 -0
- package/dist/src/components/BaseSelect/BaseSelect.vue.d.ts +265 -0
- package/dist/src/components/BaseSiteInput/BaseSiteInput.vue.d.ts +119 -0
- package/dist/src/components/BaseTextarea/BaseTextarea.vue.d.ts +195 -0
- package/dist/src/components/BaseToggle/BaseToggle.vue.d.ts +166 -0
- package/dist/src/components/BaseTooltip/BaseTooltip.vue.d.ts +76 -0
- package/dist/src/components/DataTable/DataTable.vue.d.ts +42 -0
- package/dist/src/components/Modal/Modal.vue.d.ts +36 -0
- package/dist/src/components/Spinner/Spinner.vue.d.ts +46 -0
- package/dist/src/components/Toaster/Toaster.vue.d.ts +117 -0
- package/dist/src/components/Toaster/timer.d.ts +12 -0
- package/dist/src/components/Tooltip/Tooltip.vue.d.ts +43 -0
- package/dist/src/composables/kit/color.d.ts +6 -0
- package/dist/src/composables/kit/interactive.d.ts +7 -0
- package/dist/src/composables/kit/size.d.ts +6 -0
- package/dist/src/composables/kit/state.d.ts +17 -0
- package/dist/src/composables/kit/style.d.ts +8 -0
- package/dist/src/composables/kit/utils.d.ts +1 -0
- package/dist/src/icons/index.d.ts +4 -0
- package/dist/src/index.d.ts +33 -0
- package/dist/src/plugins/modalPlugin.d.ts +17 -0
- package/dist/src/plugins/toasterPlugin.d.ts +26 -0
- package/dist/src/store/modal.d.ts +11 -0
- package/dist/src/types/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
checkboxModel: import("vue").Ref<boolean, boolean>;
|
|
3
|
+
radioModel: import("vue").Ref<boolean, boolean>;
|
|
4
|
+
textAreaModel: import("vue").Ref<string, string>;
|
|
5
|
+
toggleModel: import("vue").Ref<boolean, boolean>;
|
|
6
|
+
inputModel: import("vue").Ref<string, string>;
|
|
7
|
+
emailModel: import("vue").Ref<string, string>;
|
|
8
|
+
selectedOption: import("vue").Ref<string, string>;
|
|
9
|
+
siteModel: import("vue").Ref<string, string>;
|
|
10
|
+
phoneModel: import("vue").Ref<string, string>;
|
|
11
|
+
currencyModel: import("vue").Ref<string, string>;
|
|
12
|
+
selectedOptionButton: import("vue").Ref<string, string>;
|
|
13
|
+
tooltipOptions: import("vue").Ref<{
|
|
14
|
+
title: string;
|
|
15
|
+
content: string;
|
|
16
|
+
position: string;
|
|
17
|
+
trigger: string;
|
|
18
|
+
theme: string;
|
|
19
|
+
}, {
|
|
20
|
+
title: string;
|
|
21
|
+
content: string;
|
|
22
|
+
position: string;
|
|
23
|
+
trigger: string;
|
|
24
|
+
theme: string;
|
|
25
|
+
} | {
|
|
26
|
+
title: string;
|
|
27
|
+
content: string;
|
|
28
|
+
position: string;
|
|
29
|
+
trigger: string;
|
|
30
|
+
theme: string;
|
|
31
|
+
}>;
|
|
32
|
+
itemsDropdown: import("vue").Ref<{
|
|
33
|
+
name: string;
|
|
34
|
+
text: string;
|
|
35
|
+
}[], {
|
|
36
|
+
name: string;
|
|
37
|
+
text: string;
|
|
38
|
+
}[] | {
|
|
39
|
+
name: string;
|
|
40
|
+
text: string;
|
|
41
|
+
}[]>;
|
|
42
|
+
calendarModel: import("vue").Ref<string, string>;
|
|
43
|
+
dropdownModel: import("vue").Ref<boolean, boolean>;
|
|
44
|
+
contentTooltip: import("vue").Ref<string, string>;
|
|
45
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|