@citruslime/ui 2.0.0 → 2.0.1-beta.0

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 (41) hide show
  1. package/dist/citrus-lime-ui.es.js +2223 -2991
  2. package/dist/citrus-lime-ui.umd.js +2 -2
  3. package/dist/components/accordion/cl-ui-accordion.vue.d.ts +1 -1
  4. package/dist/components/accordion/header/cl-ui-accordion-header.vue.d.ts +2 -0
  5. package/dist/components/accordion/item/cl-ui-accordion-item.vue.d.ts +3 -3
  6. package/dist/components/app/cl-ui-app.vue.d.ts +4 -4
  7. package/dist/components/button/cl-ui-button.vue.d.ts +6 -6
  8. package/dist/components/calendar/cl-ui-calendar.vue.d.ts +2266 -1
  9. package/dist/components/card/cl-ui-card.vue.d.ts +3 -3
  10. package/dist/components/combo-box/cl-ui-combo-box.vue.d.ts +5461 -97
  11. package/dist/components/combo-box/search-container/cl-ui-combo-box-search.vue.d.ts +2733 -41
  12. package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.vue.d.ts +2 -2
  13. package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts +11 -11
  14. package/dist/components/footer/cl-ui-footer.vue.d.ts +2 -0
  15. package/dist/components/grid/cell/cl-ui-grid-cell.vue.d.ts +2721 -25
  16. package/dist/components/grid/cl-ui-grid.vue.d.ts +11040 -327
  17. package/dist/components/grid/filter/cl-ui-grid-filter.vue.d.ts +2705 -22
  18. package/dist/components/grid/footer/cl-ui-grid-footer.vue.d.ts +2708 -27
  19. package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +2724 -48
  20. package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +2703 -21
  21. package/dist/components/header/cl-ui-header.vue.d.ts +2 -0
  22. package/dist/components/header/menu/cl-ui-header-menu.vue.d.ts +1 -1
  23. package/dist/components/input/cl-ui-input.vue.d.ts +2692 -1
  24. package/dist/components/language-switcher/cl-ui-language-switcher.vue.d.ts +2 -2
  25. package/dist/components/loading-spinner/cl-ui-loading-spinner.vue.d.ts +2 -0
  26. package/dist/components/login/cl-ui-login.vue.d.ts +2720 -26
  27. package/dist/components/modal/cl-ui-modal.vue.d.ts +5 -5
  28. package/dist/components/navigation/cl-ui-navigation.vue.d.ts +1 -1
  29. package/dist/components/navigation/group/cl-ui-navigation-group.vue.d.ts +1 -1
  30. package/dist/components/navigation/icon/cl-ui-navigation-icon.vue.d.ts +1 -1
  31. package/dist/components/navigation/item/cl-ui-navigation-item.vue.d.ts +2 -0
  32. package/dist/components/navigation/section/cl-ui-navigation-section.vue.d.ts +2 -0
  33. package/dist/components/notification/cl-ui-notification.vue.d.ts +3 -3
  34. package/dist/components/slider/cl-ui-slider.vue.d.ts +13 -20
  35. package/dist/components/tab/cl-ui-tab.vue.d.ts +4 -4
  36. package/dist/components/tab/content/cl-ui-tab-content.vue.d.ts +2 -0
  37. package/dist/components/tab/header/cl-ui-tab-header.vue.d.ts +7 -7
  38. package/dist/env.d.ts +1 -0
  39. package/dist/style.css +1 -1
  40. package/dist/utils/i18n/config.d.ts +1 -1
  41. package/package.json +9 -13
@@ -15,7 +15,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
15
15
  default: string;
16
16
  };
17
17
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
- 'clear-object': null;
18
+ 'clear-object': any;
19
19
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
20
  showClearButton: {
21
21
  type: BooleanConstructor;
@@ -33,7 +33,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
33
33
  default: string;
34
34
  };
35
35
  }>> & {
36
- "onClear-object"?: ((...args: any[]) => any) | undefined;
36
+ "onClear-object"?: ((...args: any[]) => any) | ((...args: unknown[]) => any);
37
37
  }, {
38
38
  text: string;
39
39
  showClearButton: boolean;
@@ -16,9 +16,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
16
16
  default: string;
17
17
  };
18
18
  option: {
19
- type: null;
19
+ type: any;
20
20
  required: false;
21
- default: null;
21
+ default: any;
22
22
  };
23
23
  index: {
24
24
  type: NumberConstructor;
@@ -32,7 +32,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
32
  option: ComboBoxItem | null;
33
33
  index: number;
34
34
  };
35
- emit: ((event: "create-object", ...args: any[]) => void) & ((event: "select-object", ...args: any[]) => void) & ((event: "option-highlighted", ...args: any[]) => void);
35
+ emit: ((event: "create-object", ...args: unknown[]) => void) & ((event: "create-object", ...args: any[]) => void) & ((event: "select-object", ...args: unknown[]) => void) & ((event: "select-object", ...args: any[]) => void) & ((event: "option-highlighted", ...args: unknown[]) => void) & ((event: "option-highlighted", ...args: any[]) => void);
36
36
  displayedText: import("vue").ComputedRef<string>;
37
37
  displayedParent: import("vue").ComputedRef<string>;
38
38
  isHighlighted: import("vue").Ref<boolean>;
@@ -40,9 +40,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
40
  onHover: (hovered: boolean) => void;
41
41
  updateHighlight: () => void;
42
42
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
43
- 'create-object': null;
44
- 'select-object': null;
45
- 'option-highlighted': null;
43
+ 'create-object': any;
44
+ 'select-object': any;
45
+ 'option-highlighted': any;
46
46
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
47
  isCreateNewOption: {
48
48
  type: BooleanConstructor;
@@ -60,18 +60,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
60
60
  default: string;
61
61
  };
62
62
  option: {
63
- type: null;
63
+ type: any;
64
64
  required: false;
65
- default: null;
65
+ default: any;
66
66
  };
67
67
  index: {
68
68
  type: NumberConstructor;
69
69
  required: true;
70
70
  };
71
71
  }>> & {
72
- "onCreate-object"?: ((...args: any[]) => any) | undefined;
73
- "onSelect-object"?: ((...args: any[]) => any) | undefined;
74
- "onOption-highlighted"?: ((...args: any[]) => any) | undefined;
72
+ "onCreate-object"?: ((...args: any[]) => any) | ((...args: unknown[]) => any);
73
+ "onSelect-object"?: ((...args: any[]) => any) | ((...args: unknown[]) => any);
74
+ "onOption-highlighted"?: ((...args: any[]) => any) | ((...args: unknown[]) => any);
75
75
  }, {
76
76
  text: string;
77
77
  isCreateNewOption: boolean;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
+ export default _default;