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.
- package/dist/cleek-styles/tiny-tailwind/aspect-ratio.styl +6 -0
- package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -0
- package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -0
- package/dist/cleek-styles/tiny-tailwind/border.styl +63 -0
- package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -0
- package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -0
- package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -0
- package/dist/cleek-styles/tiny-tailwind/height.styl +96 -0
- package/dist/cleek-styles/tiny-tailwind/index.styl +23 -0
- package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -0
- package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -0
- package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -0
- package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -0
- package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -0
- package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -0
- package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -0
- package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -0
- package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -0
- package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -0
- package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -0
- package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -0
- package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -0
- package/dist/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +1165 -1088
- package/dist/types/cleek-options/cleek-options.types.d.ts +1 -1
- package/dist/types/components/ck-dropdown-button.vue.d.ts +76 -0
- package/dist/types/components/ck-input.vue.d.ts +6 -0
- package/dist/types/components/index.d.ts +1 -0
- 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,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)
|