cleek 2.11.10 → 2.11.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 (30) 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 +1832 -1782
  28. package/dist/types/components/ck-popup.vue.d.ts +8 -0
  29. package/dist/types/components/ck-switch.vue.d.ts +24 -0
  30. package/package.json +1 -1
@@ -1,63 +1,63 @@
1
- // Border width
2
- .border
3
- border-width 1px
4
- border-style solid
5
- border-color #e5e7eb
6
- .border-0
7
- border-width 0px
8
- .border-2
9
- border-width 2px
10
- border-style solid
11
- border-color #e5e7eb
12
- .border-t
13
- border-top-width 1px
14
- border-top-style solid
15
- border-top-color #e5e7eb
16
- .border-b
17
- border-bottom-width 1px
18
- border-bottom-style solid
19
- border-bottom-color #e5e7eb
20
- .border-l
21
- border-left-width 1px
22
- border-left-style solid
23
- border-left-color #e5e7eb
24
- .border-r
25
- border-right-width 1px
26
- border-right-style solid
27
- border-right-color #e5e7eb
28
-
29
- // Border radius
30
- .rounded-none
31
- border-radius 0px
32
- .rounded-sm
33
- border-radius 0.125rem
34
- .rounded
35
- border-radius 0.25rem
36
- .rounded-md
37
- border-radius 0.375rem
38
- .rounded-lg
39
- border-radius 0.5rem
40
- .rounded-xl
41
- border-radius 0.75rem
42
- .rounded-2xl
43
- border-radius 1rem
44
- .rounded-full
45
- border-radius 9999px
46
-
47
- // Overflow
48
- .overflow-hidden
49
- overflow hidden
50
- .overflow-auto
51
- overflow auto
52
- .overflow-scroll
53
- overflow scroll
54
- .overflow-visible
55
- overflow visible
56
- .overflow-x-hidden
57
- overflow-x hidden
58
- .overflow-x-auto
59
- overflow-x auto
60
- .overflow-y-hidden
61
- overflow-y hidden
62
- .overflow-y-auto
63
- overflow-y auto
1
+ // Border width
2
+ .border
3
+ border-width 1px
4
+ border-style solid
5
+ border-color #e5e7eb
6
+ .border-0
7
+ border-width 0px
8
+ .border-2
9
+ border-width 2px
10
+ border-style solid
11
+ border-color #e5e7eb
12
+ .border-t
13
+ border-top-width 1px
14
+ border-top-style solid
15
+ border-top-color #e5e7eb
16
+ .border-b
17
+ border-bottom-width 1px
18
+ border-bottom-style solid
19
+ border-bottom-color #e5e7eb
20
+ .border-l
21
+ border-left-width 1px
22
+ border-left-style solid
23
+ border-left-color #e5e7eb
24
+ .border-r
25
+ border-right-width 1px
26
+ border-right-style solid
27
+ border-right-color #e5e7eb
28
+
29
+ // Border radius
30
+ .rounded-none
31
+ border-radius 0px
32
+ .rounded-sm
33
+ border-radius 0.125rem
34
+ .rounded
35
+ border-radius 0.25rem
36
+ .rounded-md
37
+ border-radius 0.375rem
38
+ .rounded-lg
39
+ border-radius 0.5rem
40
+ .rounded-xl
41
+ border-radius 0.75rem
42
+ .rounded-2xl
43
+ border-radius 1rem
44
+ .rounded-full
45
+ border-radius 9999px
46
+
47
+ // Overflow
48
+ .overflow-hidden
49
+ overflow hidden
50
+ .overflow-auto
51
+ overflow auto
52
+ .overflow-scroll
53
+ overflow scroll
54
+ .overflow-visible
55
+ overflow visible
56
+ .overflow-x-hidden
57
+ overflow-x hidden
58
+ .overflow-x-auto
59
+ overflow-x auto
60
+ .overflow-y-hidden
61
+ overflow-y hidden
62
+ .overflow-y-auto
63
+ overflow-y auto
@@ -1,8 +1,8 @@
1
- .flex-row
2
- flex-direction row
3
- .flex-row-reverse
4
- flex-direction row-reverse
5
- .flex-col
6
- flex-direction column
7
- .flex-col-reverse
8
- flex-direction column-reverse
1
+ .flex-row
2
+ flex-direction row
3
+ .flex-row-reverse
4
+ flex-direction row-reverse
5
+ .flex-col
6
+ flex-direction column
7
+ .flex-col-reverse
8
+ flex-direction column-reverse
@@ -1,10 +1,10 @@
1
- .flex-1
2
- flex 1 1 0%
3
- .flex-auto
4
- flex 1 1 auto
5
- .flex-none
6
- flex none
7
- .grow
8
- flex-grow 1
9
- .grow-0
10
- flex-grow 0
1
+ .flex-1
2
+ flex 1 1 0%
3
+ .flex-auto
4
+ flex 1 1 auto
5
+ .flex-none
6
+ flex none
7
+ .grow
8
+ flex-grow 1
9
+ .grow-0
10
+ flex-grow 0
@@ -1,24 +1,24 @@
1
- .text-xs
2
- font-size 0.75rem
3
- line-height 1rem
4
- .text-sm
5
- font-size 0.875rem
6
- line-height 1.25rem
7
- .text-base
8
- font-size 1rem
9
- line-height 1.5rem
10
- .text-lg
11
- font-size 1.125rem
12
- line-height 1.75rem
13
- .text-xl
14
- font-size 1.25rem
15
- line-height 1.75rem
16
- .text-2xl
17
- font-size 1.5rem
18
- line-height 2rem
19
- .text-3xl
20
- font-size 1.875rem
21
- line-height 2.25rem
22
- .text-4xl
23
- font-size 2.25rem
24
- line-height 2.5rem
1
+ .text-xs
2
+ font-size 0.75rem
3
+ line-height 1rem
4
+ .text-sm
5
+ font-size 0.875rem
6
+ line-height 1.25rem
7
+ .text-base
8
+ font-size 1rem
9
+ line-height 1.5rem
10
+ .text-lg
11
+ font-size 1.125rem
12
+ line-height 1.75rem
13
+ .text-xl
14
+ font-size 1.25rem
15
+ line-height 1.75rem
16
+ .text-2xl
17
+ font-size 1.5rem
18
+ line-height 2rem
19
+ .text-3xl
20
+ font-size 1.875rem
21
+ line-height 2.25rem
22
+ .text-4xl
23
+ font-size 2.25rem
24
+ line-height 2.5rem
@@ -1,87 +1,87 @@
1
- // Grid template columns
2
- .grid-cols-1
3
- grid-template-columns repeat(1, minmax(0, 1fr))
4
- .grid-cols-2
5
- grid-template-columns repeat(2, minmax(0, 1fr))
6
- .grid-cols-3
7
- grid-template-columns repeat(3, minmax(0, 1fr))
8
- .grid-cols-4
9
- grid-template-columns repeat(4, minmax(0, 1fr))
10
- .grid-cols-5
11
- grid-template-columns repeat(5, minmax(0, 1fr))
12
- .grid-cols-6
13
- grid-template-columns repeat(6, minmax(0, 1fr))
14
- .grid-cols-7
15
- grid-template-columns repeat(7, minmax(0, 1fr))
16
- .grid-cols-8
17
- grid-template-columns repeat(8, minmax(0, 1fr))
18
- .grid-cols-9
19
- grid-template-columns repeat(9, minmax(0, 1fr))
20
- .grid-cols-10
21
- grid-template-columns repeat(10, minmax(0, 1fr))
22
- .grid-cols-11
23
- grid-template-columns repeat(11, minmax(0, 1fr))
24
- .grid-cols-12
25
- grid-template-columns repeat(12, minmax(0, 1fr))
26
- .grid-cols-none
27
- grid-template-columns none
28
-
29
- // Grid template rows
30
- .grid-rows-1
31
- grid-template-rows repeat(1, minmax(0, 1fr))
32
- .grid-rows-2
33
- grid-template-rows repeat(2, minmax(0, 1fr))
34
- .grid-rows-3
35
- grid-template-rows repeat(3, minmax(0, 1fr))
36
- .grid-rows-4
37
- grid-template-rows repeat(4, minmax(0, 1fr))
38
- .grid-rows-5
39
- grid-template-rows repeat(5, minmax(0, 1fr))
40
- .grid-rows-6
41
- grid-template-rows repeat(6, minmax(0, 1fr))
42
- .grid-rows-none
43
- grid-template-rows none
44
-
45
- // Column span
46
- .col-span-1
47
- grid-column span 1 / span 1
48
- .col-span-2
49
- grid-column span 2 / span 2
50
- .col-span-3
51
- grid-column span 3 / span 3
52
- .col-span-4
53
- grid-column span 4 / span 4
54
- .col-span-5
55
- grid-column span 5 / span 5
56
- .col-span-6
57
- grid-column span 6 / span 6
58
- .col-span-7
59
- grid-column span 7 / span 7
60
- .col-span-8
61
- grid-column span 8 / span 8
62
- .col-span-9
63
- grid-column span 9 / span 9
64
- .col-span-10
65
- grid-column span 10 / span 10
66
- .col-span-11
67
- grid-column span 11 / span 11
68
- .col-span-12
69
- grid-column span 12 / span 12
70
- .col-span-full
71
- grid-column 1 / -1
72
-
73
- // Row span
74
- .row-span-1
75
- grid-row span 1 / span 1
76
- .row-span-2
77
- grid-row span 2 / span 2
78
- .row-span-3
79
- grid-row span 3 / span 3
80
- .row-span-4
81
- grid-row span 4 / span 4
82
- .row-span-5
83
- grid-row span 5 / span 5
84
- .row-span-6
85
- grid-row span 6 / span 6
86
- .row-span-full
87
- grid-row 1 / -1
1
+ // Grid template columns
2
+ .grid-cols-1
3
+ grid-template-columns repeat(1, minmax(0, 1fr))
4
+ .grid-cols-2
5
+ grid-template-columns repeat(2, minmax(0, 1fr))
6
+ .grid-cols-3
7
+ grid-template-columns repeat(3, minmax(0, 1fr))
8
+ .grid-cols-4
9
+ grid-template-columns repeat(4, minmax(0, 1fr))
10
+ .grid-cols-5
11
+ grid-template-columns repeat(5, minmax(0, 1fr))
12
+ .grid-cols-6
13
+ grid-template-columns repeat(6, minmax(0, 1fr))
14
+ .grid-cols-7
15
+ grid-template-columns repeat(7, minmax(0, 1fr))
16
+ .grid-cols-8
17
+ grid-template-columns repeat(8, minmax(0, 1fr))
18
+ .grid-cols-9
19
+ grid-template-columns repeat(9, minmax(0, 1fr))
20
+ .grid-cols-10
21
+ grid-template-columns repeat(10, minmax(0, 1fr))
22
+ .grid-cols-11
23
+ grid-template-columns repeat(11, minmax(0, 1fr))
24
+ .grid-cols-12
25
+ grid-template-columns repeat(12, minmax(0, 1fr))
26
+ .grid-cols-none
27
+ grid-template-columns none
28
+
29
+ // Grid template rows
30
+ .grid-rows-1
31
+ grid-template-rows repeat(1, minmax(0, 1fr))
32
+ .grid-rows-2
33
+ grid-template-rows repeat(2, minmax(0, 1fr))
34
+ .grid-rows-3
35
+ grid-template-rows repeat(3, minmax(0, 1fr))
36
+ .grid-rows-4
37
+ grid-template-rows repeat(4, minmax(0, 1fr))
38
+ .grid-rows-5
39
+ grid-template-rows repeat(5, minmax(0, 1fr))
40
+ .grid-rows-6
41
+ grid-template-rows repeat(6, minmax(0, 1fr))
42
+ .grid-rows-none
43
+ grid-template-rows none
44
+
45
+ // Column span
46
+ .col-span-1
47
+ grid-column span 1 / span 1
48
+ .col-span-2
49
+ grid-column span 2 / span 2
50
+ .col-span-3
51
+ grid-column span 3 / span 3
52
+ .col-span-4
53
+ grid-column span 4 / span 4
54
+ .col-span-5
55
+ grid-column span 5 / span 5
56
+ .col-span-6
57
+ grid-column span 6 / span 6
58
+ .col-span-7
59
+ grid-column span 7 / span 7
60
+ .col-span-8
61
+ grid-column span 8 / span 8
62
+ .col-span-9
63
+ grid-column span 9 / span 9
64
+ .col-span-10
65
+ grid-column span 10 / span 10
66
+ .col-span-11
67
+ grid-column span 11 / span 11
68
+ .col-span-12
69
+ grid-column span 12 / span 12
70
+ .col-span-full
71
+ grid-column 1 / -1
72
+
73
+ // Row span
74
+ .row-span-1
75
+ grid-row span 1 / span 1
76
+ .row-span-2
77
+ grid-row span 2 / span 2
78
+ .row-span-3
79
+ grid-row span 3 / span 3
80
+ .row-span-4
81
+ grid-row span 4 / span 4
82
+ .row-span-5
83
+ grid-row span 5 / span 5
84
+ .row-span-6
85
+ grid-row span 6 / span 6
86
+ .row-span-full
87
+ grid-row 1 / -1
@@ -1,96 +1,96 @@
1
- .h-0
2
- height 0px
3
- .h-px
4
- height 1px
5
- .h-0.5
6
- height 0.125rem
7
- .h-1
8
- height 0.25rem
9
- .h-1.5
10
- height 0.375rem
11
- .h-2
12
- height 0.5rem
13
- .h-2.5
14
- height 0.625rem
15
- .h-3
16
- height 0.75rem
17
- .h-3.5
18
- height 0.875rem
19
- .h-4
20
- height 1rem
21
- .h-5
22
- height 1.25rem
23
- .h-6
24
- height 1.5rem
25
- .h-7
26
- height 1.75rem
27
- .h-8
28
- height 2rem
29
- .h-9
30
- height 2.25rem
31
- .h-10
32
- height 2.5rem
33
- .h-11
34
- height 2.75rem
35
- .h-12
36
- height 3rem
37
- .h-14
38
- height 3.5rem
39
- .h-16
40
- height 4rem
41
- .h-20
42
- height 5rem
43
- .h-24
44
- height 6rem
45
- .h-28
46
- height 7rem
47
- .h-32
48
- height 8rem
49
- .h-36
50
- height 9rem
51
- .h-40
52
- height 10rem
53
- .h-44
54
- height 11rem
55
- .h-48
56
- height 12rem
57
- .h-52
58
- height 13rem
59
- .h-56
60
- height 14rem
61
- .h-60
62
- height 15rem
63
- .h-64
64
- height 16rem
65
- .h-72
66
- height 18rem
67
- .h-80
68
- height 20rem
69
- .h-96
70
- height 24rem
71
- .h-1_2
72
- height 50%
73
- .h-1_3
74
- height 33.333333%
75
- .h-2_3
76
- height 66.666667%
77
- .h-1_4
78
- height 25%
79
- .h-3_4
80
- height 75%
81
- .h-auto
82
- height auto
83
- .h-full
84
- height 100%
85
- .h-screen
86
- height 100vh
87
- .h-svh
88
- height 100svh
89
- .h-dvh
90
- height 100dvh
91
- .h-min
92
- height min-content
93
- .h-max
94
- height max-content
95
- .h-fit
96
- height fit-content
1
+ .h-0
2
+ height 0px
3
+ .h-px
4
+ height 1px
5
+ .h-0.5
6
+ height 0.125rem
7
+ .h-1
8
+ height 0.25rem
9
+ .h-1.5
10
+ height 0.375rem
11
+ .h-2
12
+ height 0.5rem
13
+ .h-2.5
14
+ height 0.625rem
15
+ .h-3
16
+ height 0.75rem
17
+ .h-3.5
18
+ height 0.875rem
19
+ .h-4
20
+ height 1rem
21
+ .h-5
22
+ height 1.25rem
23
+ .h-6
24
+ height 1.5rem
25
+ .h-7
26
+ height 1.75rem
27
+ .h-8
28
+ height 2rem
29
+ .h-9
30
+ height 2.25rem
31
+ .h-10
32
+ height 2.5rem
33
+ .h-11
34
+ height 2.75rem
35
+ .h-12
36
+ height 3rem
37
+ .h-14
38
+ height 3.5rem
39
+ .h-16
40
+ height 4rem
41
+ .h-20
42
+ height 5rem
43
+ .h-24
44
+ height 6rem
45
+ .h-28
46
+ height 7rem
47
+ .h-32
48
+ height 8rem
49
+ .h-36
50
+ height 9rem
51
+ .h-40
52
+ height 10rem
53
+ .h-44
54
+ height 11rem
55
+ .h-48
56
+ height 12rem
57
+ .h-52
58
+ height 13rem
59
+ .h-56
60
+ height 14rem
61
+ .h-60
62
+ height 15rem
63
+ .h-64
64
+ height 16rem
65
+ .h-72
66
+ height 18rem
67
+ .h-80
68
+ height 20rem
69
+ .h-96
70
+ height 24rem
71
+ .h-1_2
72
+ height 50%
73
+ .h-1_3
74
+ height 33.333333%
75
+ .h-2_3
76
+ height 66.666667%
77
+ .h-1_4
78
+ height 25%
79
+ .h-3_4
80
+ height 75%
81
+ .h-auto
82
+ height auto
83
+ .h-full
84
+ height 100%
85
+ .h-screen
86
+ height 100vh
87
+ .h-svh
88
+ height 100svh
89
+ .h-dvh
90
+ height 100dvh
91
+ .h-min
92
+ height min-content
93
+ .h-max
94
+ height max-content
95
+ .h-fit
96
+ height fit-content