cleek 2.10.11 → 2.10.12

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 (45) hide show
  1. package/dist/main.cjs.js +145 -352
  2. package/dist/main.css +1 -1
  3. package/dist/main.es.js +48438 -48216
  4. package/dist/types/cleek-options/cleek-options.store.d.ts +421 -1
  5. package/dist/types/components/ck-button.vue.d.ts +4 -4
  6. package/dist/types/components/ck-card.vue.d.ts +4 -4
  7. package/dist/types/components/ck-checkbox.vue.d.ts +11 -11
  8. package/dist/types/components/ck-chip.vue.d.ts +4 -4
  9. package/dist/types/components/ck-circle.vue.d.ts +4 -4
  10. package/dist/types/components/ck-div.vue.d.ts +4 -4
  11. package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +3 -3
  12. package/dist/types/components/ck-icon.vue.d.ts +4 -4
  13. package/dist/types/components/ck-img.vue.d.ts +4 -4
  14. package/dist/types/components/ck-input/ck-input-date.vue.d.ts +4 -4
  15. package/dist/types/components/ck-input/ck-input-time.vue.d.ts +4 -4
  16. package/dist/types/components/ck-input.vue.d.ts +22 -22
  17. package/dist/types/components/ck-label.vue.d.ts +3 -3
  18. package/dist/types/components/ck-navbar/ck-navbar.vue.d.ts +3 -3
  19. package/dist/types/components/ck-notify/components/CkAlert.vue.d.ts +4 -4
  20. package/dist/types/components/ck-notify/components/CkConfirm.vue.d.ts +7 -7
  21. package/dist/types/components/ck-notify/components/CkNotify.vue.d.ts +6 -6
  22. package/dist/types/components/ck-popup.vue.d.ts +5 -5
  23. package/dist/types/components/ck-radio.vue.d.ts +4 -4
  24. package/dist/types/components/ck-select.vue.d.ts +5 -5
  25. package/dist/types/components/ck-sidebar.vue.d.ts +3 -3
  26. package/dist/types/components/ck-switch-options.vue.d.ts +5 -5
  27. package/dist/types/components/ck-switch.vue.d.ts +4 -4
  28. package/dist/types/components/ck-table/ck-pagination/ck-pagination.vue.d.ts +4 -4
  29. package/dist/types/components/ck-table/ck-table.vue.d.ts +4 -4
  30. package/dist/types/components/ck-table/ck-td.vue.d.ts +3 -3
  31. package/dist/types/components/ck-table/ck-th.vue.d.ts +3 -3
  32. package/dist/types/components/ck-table/ck-tr.vue.d.ts +1 -1
  33. package/dist/types/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +4 -4
  34. package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +4 -4
  35. package/dist/types/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +4 -4
  36. package/dist/types/components/ck-table/inner-components/ck-table__title.vue.d.ts +3 -3
  37. package/dist/types/components/ck-tabs/ck-tab.vue.d.ts +3 -3
  38. package/dist/types/components/ck-tabs/ck-tabs.vue.d.ts +1 -1
  39. package/dist/types/components/ck-textarea.vue.d.ts +5 -5
  40. package/dist/types/components/ck-toggle/ck-toggle.vue.d.ts +4 -4
  41. package/dist/types/components/showers/ck-datetime-shower.vue.d.ts +4 -4
  42. package/dist/types/components/showers/ck-time-shower.vue.d.ts +3 -3
  43. package/dist/types/hooks/rainbow.d.ts +1 -1
  44. package/dist/types/hooks/windowWidth.d.ts +1 -1
  45. package/package.json +1 -1
@@ -1,18 +1,18 @@
1
1
  import { ColumnItem } from '../../../types/table';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  modelValue: boolean;
5
5
  columns?: object;
6
6
  columnsArray?: ColumnItem[];
7
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => void;
9
9
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
10
  modelValue: boolean;
11
11
  columns?: object;
12
12
  columnsArray?: ColumnItem[];
13
- }>>> & {
13
+ }>>> & Readonly<{
14
14
  "onUpdate:modelValue"?: (value: boolean) => any;
15
- }, {}, {}>;
15
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
16
16
  export default _default;
17
17
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
18
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,6 +1,6 @@
1
1
  import { Layout, TableVersion } from '../../../cleek-options/cleek-options.types';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  search?: string;
5
5
  hasColumnsManager: boolean;
6
6
  showRefreshBtn: boolean;
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
15
15
  type: boolean;
16
16
  default: undefined;
17
17
  };
18
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
19
  "update:search": (search: string) => void;
20
20
  refreshList: (pageChange: boolean) => void;
21
21
  openColumnsManager: () => void;
@@ -34,11 +34,11 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
34
34
  type: boolean;
35
35
  default: undefined;
36
36
  };
37
- }>>> & {
37
+ }>>> & Readonly<{
38
38
  "onUpdate:search"?: (search: string) => any;
39
39
  onRefreshList?: (pageChange: boolean) => any;
40
40
  onOpenColumnsManager?: () => any;
41
- }, {}, {}>;
41
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
42
42
  export default _default;
43
43
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
44
44
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,13 +1,13 @@
1
1
  import { Align, Layout } from '../../../cleek-options/cleek-options.types';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  totalPages: number;
5
5
  currentPage: number;
6
6
  align: Align;
7
7
  itemsPerPage: number;
8
8
  listLength: number;
9
9
  layout: Layout;
10
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
11
  refreshList: () => void;
12
12
  "update:currentPage": (value: number) => void;
13
13
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
@@ -17,10 +17,10 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
17
17
  itemsPerPage: number;
18
18
  listLength: number;
19
19
  layout: Layout;
20
- }>>> & {
20
+ }>>> & Readonly<{
21
21
  onRefreshList?: () => any;
22
22
  "onUpdate:currentPage"?: (value: number) => any;
23
- }, {}, {}>;
23
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
24
  export default _default;
25
25
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
26
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,15 +1,15 @@
1
1
  import { Color } from '../../../cleek-options/cleek-options.types';
2
2
  import { ColumnItem } from '../../../types/table';
3
3
 
4
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  col: ColumnItem;
6
6
  textColor?: Color;
7
7
  backgroundColor?: Color;
8
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
8
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
9
  col: ColumnItem;
10
10
  textColor?: Color;
11
11
  backgroundColor?: Color;
12
- }>>>, {}, {}>;
12
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
13
13
  export default _default;
14
14
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
15
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -3,13 +3,13 @@ import { Icon } from '../../cleek-options/cleek-options.types';
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
5
5
  };
6
- declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
7
  title: string;
8
8
  icon: Icon;
9
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
10
  title: string;
11
11
  icon: Icon;
12
- }>>>, {}, {}>;
12
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
13
13
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
14
14
  export default _default;
15
15
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,7 +1,7 @@
1
1
  declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
3
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
5
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
6
6
  export default _default;
7
7
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,6 +1,6 @@
1
1
  import { Align, AlignVertical, Color, Layout, SizeInCSS } from '../cleek-options/cleek-options.types';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  modelValue: string;
5
5
  disabled?: boolean;
6
6
  placeholder?: string;
@@ -21,7 +21,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
21
21
  delayChangeTime?: number;
22
22
  label?: string;
23
23
  labelAlign?: Align;
24
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
25
  "update:modelValue": (value: string) => void;
26
26
  input: (event: Event) => void;
27
27
  change: (event: Event) => void;
@@ -48,13 +48,13 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
48
48
  delayChangeTime?: number;
49
49
  label?: string;
50
50
  labelAlign?: Align;
51
- }>>> & {
51
+ }>>> & Readonly<{
52
+ onInput?: (event: Event) => any;
52
53
  onClick?: (event: Event) => any;
53
54
  onChange?: (event: Event) => any;
54
- onInput?: (event: Event) => any;
55
55
  "onUpdate:modelValue"?: (value: string) => any;
56
56
  onChangeDelayed?: (value: string) => any;
57
- }, {}, {}>;
57
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
58
58
  export default _default;
59
59
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
60
60
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -3,13 +3,13 @@ import { Color, Icon, Layout } from '../../cleek-options/cleek-options.types';
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
5
5
  };
6
- declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
6
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
7
  modelValue: boolean;
8
8
  color?: Color;
9
9
  layout?: Layout;
10
10
  icon?: Icon;
11
11
  preventAutoUpdate?: boolean;
12
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
13
  "update:modelValue": (value: boolean) => void;
14
14
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
15
15
  modelValue: boolean;
@@ -17,9 +17,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
17
17
  layout?: Layout;
18
18
  icon?: Icon;
19
19
  preventAutoUpdate?: boolean;
20
- }>>> & {
20
+ }>>> & Readonly<{
21
21
  "onUpdate:modelValue"?: (value: boolean) => any;
22
- }, {}, {}>;
22
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
23
23
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
24
24
  export default _default;
25
25
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,11 +1,11 @@
1
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
2
  datetime?: string | null;
3
3
  date?: string | null;
4
4
  time?: string | number | null;
5
5
  timeInMinutes?: boolean;
6
6
  noDateMsg?: string;
7
7
  split?: boolean;
8
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
9
  click: (event: Event) => void;
10
10
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
11
11
  datetime?: string | null;
@@ -14,9 +14,9 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
14
14
  timeInMinutes?: boolean;
15
15
  noDateMsg?: string;
16
16
  split?: boolean;
17
- }>>> & {
17
+ }>>> & Readonly<{
18
18
  onClick?: (event: Event) => any;
19
- }, {}, {}>;
19
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
20
  export default _default;
21
21
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
22
22
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,11 +1,11 @@
1
1
  type TsTime = string;
2
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
3
3
  time?: TsTime;
4
4
  minutes?: number;
5
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
6
  time?: TsTime;
7
7
  minutes?: number;
8
- }>>>, {}, {}>;
8
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
11
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,4 +1,4 @@
1
1
  export default function useRainbow(): {
2
- rainbow: import('vue').Ref<string>;
2
+ rainbow: import('vue').Ref<string, string>;
3
3
  colors: string[];
4
4
  };
@@ -1,3 +1,3 @@
1
1
  export default function useWindowWidth(): {
2
- windowWidth: import('vue').Ref<number>;
2
+ windowWidth: import('vue').Ref<number, number>;
3
3
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cleek",
3
3
  "description": "Complete UX Vue library",
4
- "version": "2.10.11",
4
+ "version": "2.10.12",
5
5
  "author": "Quantic Onion",
6
6
  "license": "MIT",
7
7
  "repository": "",