cleek 3.0.0 → 3.0.2

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 (33) hide show
  1. package/dist/cleek-styles/tiny-tailwind/aspect-ratio.styl +6 -6
  2. package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -161
  3. package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -161
  4. package/dist/cleek-styles/tiny-tailwind/border.styl +63 -63
  5. package/dist/cleek-styles/tiny-tailwind/flex-direction.styl +8 -8
  6. package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -10
  7. package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -24
  8. package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -87
  9. package/dist/cleek-styles/tiny-tailwind/height.styl +96 -96
  10. package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -328
  11. package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -28
  12. package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -20
  13. package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -30
  14. package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -4
  15. package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -16
  16. package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -127
  17. package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -159
  18. package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -8
  19. package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -38
  20. package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -8
  21. package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -55
  22. package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -8
  23. package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -4
  24. package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -14
  25. package/dist/main.cjs.js +1 -1
  26. package/dist/main.css +1 -1
  27. package/dist/main.es.js +1750 -1685
  28. package/dist/types/components/ck-skeleton.vue.d.ts +11 -0
  29. package/dist/types/components/ck-table/ck-table.vue.d.ts +0 -1
  30. package/dist/types/components/ck-table/{loading-and-no-results-text/LoadingAndNoResultsText.vue.d.ts → no-results-text/NoResultsText.vue.d.ts} +0 -3
  31. package/dist/types/components/index.d.ts +2 -0
  32. package/dist/types/composables/use-delayed-loading.composable.d.ts +3 -0
  33. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ type __VLS_Props = {
2
+ width?: string;
3
+ height?: string;
4
+ radius?: string;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ width: string;
8
+ height: string;
9
+ radius: string;
10
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
11
+ export default _default;
@@ -17,7 +17,6 @@ type __VLS_Props = {
17
17
  listLength?: number;
18
18
  search?: string;
19
19
  searchPlaceholder?: string;
20
- loadingText?: string;
21
20
  isLoading?: boolean;
22
21
  hideHeaderActions?: boolean;
23
22
  hideRefreshBtn?: boolean;
@@ -1,7 +1,4 @@
1
1
  type __VLS_Props = {
2
- listLength?: number;
3
- isLoading?: boolean;
4
- loadingText?: string;
5
2
  noResultsText?: string;
6
3
  };
7
4
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -30,6 +30,7 @@ export { default as CkPopup } from './ck-popup.vue';
30
30
  export { default as CkRadio } from './ck-radio.vue';
31
31
  export { default as CkSelect } from './ck-select.vue';
32
32
  export { default as CkSidebar } from './ck-sidebar.vue';
33
+ export { default as CkSkeleton } from './ck-skeleton.vue';
33
34
  export { default as CkSwitch } from './ck-switch.vue';
34
35
  export { default as CkSwitchOptions } from './ck-switch-options.vue';
35
36
  export { default as CkTextarea } from './ck-textarea.vue';
@@ -44,6 +45,7 @@ export declare class TableData {
44
45
  itemsPerPage: number;
45
46
  isLoading: boolean;
46
47
  isEmpty: boolean;
48
+ hasLoadedOnce: boolean;
47
49
  sortBy: TableSort | null;
48
50
  constructor(itemsPerPage: number);
49
51
  }
@@ -0,0 +1,3 @@
1
+ export declare function useDelayedLoading(isLoading: () => boolean | undefined): {
2
+ isDisplayingLoading: import('vue').Ref<boolean, boolean>;
3
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cleek",
3
3
  "description": "Complete UX Vue library",
4
- "version": "3.0.0",
4
+ "version": "3.0.2",
5
5
  "author": "Quantic Onion",
6
6
  "license": "MIT",
7
7
  "repository": "github:quantic-core/cleek",