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.
Files changed (42) hide show
  1. package/dist/example/App.vue.d.ts +46 -0
  2. package/dist/example/main.d.ts +1 -0
  3. package/dist/index.js +58230 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/sprite.svg +4 -0
  6. package/dist/src/components/BaseBreadCrumbs/BaseBreadCrumbs.vue.d.ts +34 -0
  7. package/dist/src/components/BaseButton/BaseButton.vue.d.ts +189 -0
  8. package/dist/src/components/BaseCalendar/BaseCalendar.vue.d.ts +176 -0
  9. package/dist/src/components/BaseCheckbox/BaseCheckbox.vue.d.ts +174 -0
  10. package/dist/src/components/BaseDropdown/BaseDropdown.vue.d.ts +151 -0
  11. package/dist/src/components/BaseIcon/BaseIcon.vue.d.ts +29 -0
  12. package/dist/src/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +202 -0
  13. package/dist/src/components/BaseInputEmail/BaseInputEmail.vue.d.ts +176 -0
  14. package/dist/src/components/BaseInputPhone/BaseInputPhone.vue.d.ts +251 -0
  15. package/dist/src/components/BaseLoader/BaseLoader.vue.d.ts +4 -0
  16. package/dist/src/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +148 -0
  17. package/dist/src/components/BaseRadio/BaseRadio.vue.d.ts +173 -0
  18. package/dist/src/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +142 -0
  19. package/dist/src/components/BaseSelect/BaseSelect.vue.d.ts +265 -0
  20. package/dist/src/components/BaseSiteInput/BaseSiteInput.vue.d.ts +119 -0
  21. package/dist/src/components/BaseTextarea/BaseTextarea.vue.d.ts +195 -0
  22. package/dist/src/components/BaseToggle/BaseToggle.vue.d.ts +166 -0
  23. package/dist/src/components/BaseTooltip/BaseTooltip.vue.d.ts +76 -0
  24. package/dist/src/components/DataTable/DataTable.vue.d.ts +42 -0
  25. package/dist/src/components/Modal/Modal.vue.d.ts +36 -0
  26. package/dist/src/components/Spinner/Spinner.vue.d.ts +46 -0
  27. package/dist/src/components/Toaster/Toaster.vue.d.ts +117 -0
  28. package/dist/src/components/Toaster/timer.d.ts +12 -0
  29. package/dist/src/components/Tooltip/Tooltip.vue.d.ts +43 -0
  30. package/dist/src/composables/kit/color.d.ts +6 -0
  31. package/dist/src/composables/kit/interactive.d.ts +7 -0
  32. package/dist/src/composables/kit/size.d.ts +6 -0
  33. package/dist/src/composables/kit/state.d.ts +17 -0
  34. package/dist/src/composables/kit/style.d.ts +8 -0
  35. package/dist/src/composables/kit/utils.d.ts +1 -0
  36. package/dist/src/icons/index.d.ts +4 -0
  37. package/dist/src/index.d.ts +33 -0
  38. package/dist/src/plugins/modalPlugin.d.ts +17 -0
  39. package/dist/src/plugins/toasterPlugin.d.ts +26 -0
  40. package/dist/src/store/modal.d.ts +11 -0
  41. package/dist/src/types/index.d.ts +5 -0
  42. 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 {};