cleek 2.10.86 → 2.11.1

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 (32) hide show
  1. package/dist/cleek-styles/tiny-tailwind/aspect-ratio.styl +6 -0
  2. package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -0
  3. package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -0
  4. package/dist/cleek-styles/tiny-tailwind/border.styl +63 -0
  5. package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -0
  6. package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -0
  7. package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -0
  8. package/dist/cleek-styles/tiny-tailwind/height.styl +96 -0
  9. package/dist/cleek-styles/tiny-tailwind/index.styl +23 -0
  10. package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -0
  11. package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -0
  12. package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -0
  13. package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -0
  14. package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -0
  15. package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -0
  16. package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -0
  17. package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -0
  18. package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -0
  19. package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -0
  20. package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -0
  21. package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -0
  22. package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -0
  23. package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -0
  24. package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -0
  25. package/dist/main.cjs.js +1 -1
  26. package/dist/main.css +1 -1
  27. package/dist/main.es.js +1165 -1088
  28. package/dist/types/cleek-options/cleek-options.types.d.ts +1 -1
  29. package/dist/types/components/ck-dropdown-button.vue.d.ts +76 -0
  30. package/dist/types/components/ck-input.vue.d.ts +6 -0
  31. package/dist/types/components/index.d.ts +1 -0
  32. package/package.json +1 -1
@@ -0,0 +1,38 @@
1
+ .truncate
2
+ overflow hidden
3
+ text-overflow ellipsis
4
+ white-space nowrap
5
+ .text-ellipsis
6
+ text-overflow ellipsis
7
+ .text-clip
8
+ text-overflow clip
9
+ .line-clamp-1
10
+ overflow hidden
11
+ display -webkit-box
12
+ -webkit-box-orient vertical
13
+ -webkit-line-clamp 1
14
+ .line-clamp-2
15
+ overflow hidden
16
+ display -webkit-box
17
+ -webkit-box-orient vertical
18
+ -webkit-line-clamp 2
19
+ .line-clamp-3
20
+ overflow hidden
21
+ display -webkit-box
22
+ -webkit-box-orient vertical
23
+ -webkit-line-clamp 3
24
+ .line-clamp-4
25
+ overflow hidden
26
+ display -webkit-box
27
+ -webkit-box-orient vertical
28
+ -webkit-line-clamp 4
29
+ .line-clamp-5
30
+ overflow hidden
31
+ display -webkit-box
32
+ -webkit-box-orient vertical
33
+ -webkit-line-clamp 5
34
+ .line-clamp-6
35
+ overflow hidden
36
+ display -webkit-box
37
+ -webkit-box-orient vertical
38
+ -webkit-line-clamp 6
@@ -0,0 +1,8 @@
1
+ .uppercase
2
+ text-transform uppercase
3
+ .lowercase
4
+ text-transform lowercase
5
+ .capitalize
6
+ text-transform capitalize
7
+ .normal-case
8
+ text-transform none
@@ -0,0 +1,55 @@
1
+ // Transition property
2
+ .transition-none
3
+ transition-property none
4
+ .transition-all
5
+ transition-property all
6
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
7
+ transition-duration 150ms
8
+ .transition
9
+ transition-property color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter
10
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
11
+ transition-duration 150ms
12
+ .transition-colors
13
+ transition-property color, background-color, border-color, text-decoration-color, fill, stroke
14
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
15
+ transition-duration 150ms
16
+ .transition-opacity
17
+ transition-property opacity
18
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
19
+ transition-duration 150ms
20
+ .transition-shadow
21
+ transition-property box-shadow
22
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
23
+ transition-duration 150ms
24
+ .transition-transform
25
+ transition-property transform
26
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
27
+ transition-duration 150ms
28
+
29
+ // Duration
30
+ .duration-75
31
+ transition-duration 75ms
32
+ .duration-100
33
+ transition-duration 100ms
34
+ .duration-150
35
+ transition-duration 150ms
36
+ .duration-200
37
+ transition-duration 200ms
38
+ .duration-300
39
+ transition-duration 300ms
40
+ .duration-500
41
+ transition-duration 500ms
42
+ .duration-700
43
+ transition-duration 700ms
44
+ .duration-1000
45
+ transition-duration 1000ms
46
+
47
+ // Easing
48
+ .ease-linear
49
+ transition-timing-function linear
50
+ .ease-in
51
+ transition-timing-function cubic-bezier(0.4, 0, 1, 1)
52
+ .ease-out
53
+ transition-timing-function cubic-bezier(0, 0, 0.2, 1)
54
+ .ease-in-out
55
+ transition-timing-function cubic-bezier(0.4, 0, 0.2, 1)
@@ -0,0 +1,8 @@
1
+ .select-none
2
+ user-select none
3
+ .select-text
4
+ user-select text
5
+ .select-all
6
+ user-select all
7
+ .select-auto
8
+ user-select auto
@@ -0,0 +1,4 @@
1
+ .visible
2
+ visibility visible
3
+ .invisible
4
+ visibility hidden
@@ -0,0 +1,14 @@
1
+ .z-0
2
+ z-index 0
3
+ .z-10
4
+ z-index 10
5
+ .z-20
6
+ z-index 20
7
+ .z-30
8
+ z-index 30
9
+ .z-40
10
+ z-index 40
11
+ .z-50
12
+ z-index 50
13
+ .z-auto
14
+ z-index auto