cleek 2.10.16 → 2.10.18

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/LICENSE +21 -21
  2. package/README.md +24 -66
  3. package/dist/cleek-styles/clear-app.styl +34 -34
  4. package/dist/cleek-styles/cleek-classes.styl +6 -6
  5. package/dist/cleek-styles/cleek-mixins.styl +127 -127
  6. package/dist/cleek-styles/tiny-tailwind/.custom.styl +8 -8
  7. package/dist/cleek-styles/tiny-tailwind/align-items.styl +10 -10
  8. package/dist/cleek-styles/tiny-tailwind/cursor.styl +72 -72
  9. package/dist/cleek-styles/tiny-tailwind/display.styl +42 -42
  10. package/dist/cleek-styles/tiny-tailwind/flex-shrink.styl +4 -4
  11. package/dist/cleek-styles/tiny-tailwind/flex-wrap.styl +6 -6
  12. package/dist/cleek-styles/tiny-tailwind/font-weight.styl +18 -18
  13. package/dist/cleek-styles/tiny-tailwind/index.styl +15 -15
  14. package/dist/cleek-styles/tiny-tailwind/justify-content.styl +12 -12
  15. package/dist/cleek-styles/tiny-tailwind/margin.styl +576 -576
  16. package/dist/cleek-styles/tiny-tailwind/padding.styl +576 -576
  17. package/dist/cleek-styles/tiny-tailwind/position.styl +10 -10
  18. package/dist/cleek-styles/tiny-tailwind/text-align.styl +8 -8
  19. package/dist/cleek-styles/tiny-tailwind/whitespace.styl +10 -10
  20. package/dist/cleek-styles/tiny-tailwind/width.styl +72 -72
  21. package/dist/main.cjs.js +43 -43
  22. package/dist/main.css +1 -1
  23. package/dist/main.es.js +34551 -34475
  24. package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +4 -1
  25. package/dist/types/components/ck-select.vue.d.ts +241 -89
  26. package/dist/types/components/ck-switch-options.vue.d.ts +6 -6
  27. package/dist/types/components/index.d.ts +1 -0
  28. package/dist/types/composables/use-scroll-listener.composable.d.ts +3 -0
  29. package/dist/types/utils/string-helpers.d.ts +1 -0
  30. package/package.json +85 -85
@@ -1,42 +1,42 @@
1
- .block
2
- display block
3
- .inline-block
4
- display inline-block
5
- .inline
6
- display inline
7
- .flex
8
- display flex
9
- .inline-flex
10
- display inline-flex
11
- .table
12
- display table
13
- .inline-table
14
- display inline-table
15
- .table-caption
16
- display table-caption
17
- .table-cell
18
- display table-cell
19
- .table-column
20
- display table-column
21
- .table-column-group
22
- display table-column-group
23
- .table-footer-group
24
- display table-footer-group
25
- .table-header-group
26
- display table-header-group
27
- .table-row-group
28
- display table-row-group
29
- .table-row
30
- display table-row
31
- .flow-root
32
- display flow-root
33
- .grid
34
- display grid
35
- .inline-grid
36
- display inline-grid
37
- .contents
38
- display contents
39
- .list-item
40
- display list-item
41
- .hidden
42
- display none
1
+ .block
2
+ display block
3
+ .inline-block
4
+ display inline-block
5
+ .inline
6
+ display inline
7
+ .flex
8
+ display flex
9
+ .inline-flex
10
+ display inline-flex
11
+ .table
12
+ display table
13
+ .inline-table
14
+ display inline-table
15
+ .table-caption
16
+ display table-caption
17
+ .table-cell
18
+ display table-cell
19
+ .table-column
20
+ display table-column
21
+ .table-column-group
22
+ display table-column-group
23
+ .table-footer-group
24
+ display table-footer-group
25
+ .table-header-group
26
+ display table-header-group
27
+ .table-row-group
28
+ display table-row-group
29
+ .table-row
30
+ display table-row
31
+ .flow-root
32
+ display flow-root
33
+ .grid
34
+ display grid
35
+ .inline-grid
36
+ display inline-grid
37
+ .contents
38
+ display contents
39
+ .list-item
40
+ display list-item
41
+ .hidden
42
+ display none
@@ -1,4 +1,4 @@
1
- .shrink
2
- flex-shrink 1
3
- .shrink-0
4
- flex-shrink 0
1
+ .shrink
2
+ flex-shrink 1
3
+ .shrink-0
4
+ flex-shrink 0
@@ -1,6 +1,6 @@
1
- .flex-wrap
2
- flex-wrap wrap !important
3
- .flex-wrap-reverse
4
- flex-wrap wrap-reverse !important
5
- .flex-nowrap
6
- flex-wrap nowrap !important
1
+ .flex-wrap
2
+ flex-wrap wrap !important
3
+ .flex-wrap-reverse
4
+ flex-wrap wrap-reverse !important
5
+ .flex-nowrap
6
+ flex-wrap nowrap !important
@@ -1,18 +1,18 @@
1
- .font-thin
2
- font-weight 100
3
- .font-extralight
4
- font-weight 200
5
- .font-light
6
- font-weight 300
7
- .font-normal
8
- font-weight 400
9
- .font-medium
10
- font-weight 500
11
- .font-semibold
12
- font-weight 600
13
- .font-bold
14
- font-weight 700
15
- .font-extrabold
16
- font-weight 800
17
- .font-black
18
- font-weight 900
1
+ .font-thin
2
+ font-weight 100
3
+ .font-extralight
4
+ font-weight 200
5
+ .font-light
6
+ font-weight 300
7
+ .font-normal
8
+ font-weight 400
9
+ .font-medium
10
+ font-weight 500
11
+ .font-semibold
12
+ font-weight 600
13
+ .font-bold
14
+ font-weight 700
15
+ .font-extrabold
16
+ font-weight 800
17
+ .font-black
18
+ font-weight 900
@@ -1,15 +1,15 @@
1
- @import './.custom'
2
- @import './align-items'
3
- @import './cursor'
4
- @import './display'
5
- @import './flex-direction'
6
- @import './flex-shrink'
7
- @import './flex-wrap'
8
- @import './font-weight'
9
- @import './justify-content'
10
- @import './margin'
11
- @import './padding'
12
- @import './position'
13
- @import './text-align'
14
- @import './whitespace'
15
- @import './width'
1
+ @import './.custom'
2
+ @import './align-items'
3
+ @import './cursor'
4
+ @import './display'
5
+ @import './flex-direction'
6
+ @import './flex-shrink'
7
+ @import './flex-wrap'
8
+ @import './font-weight'
9
+ @import './justify-content'
10
+ @import './margin'
11
+ @import './padding'
12
+ @import './position'
13
+ @import './text-align'
14
+ @import './whitespace'
15
+ @import './width'
@@ -1,12 +1,12 @@
1
- .justify-start
2
- justify-content flex-start
3
- .justify-end
4
- justify-content flex-end
5
- .justify-center
6
- justify-content center
7
- .justify-between
8
- justify-content space-between
9
- .justify-around
10
- justify-content space-around
11
- .justify-evenly
12
- justify-content space-evenly
1
+ .justify-start
2
+ justify-content flex-start
3
+ .justify-end
4
+ justify-content flex-end
5
+ .justify-center
6
+ justify-content center
7
+ .justify-between
8
+ justify-content space-between
9
+ .justify-around
10
+ justify-content space-around
11
+ .justify-evenly
12
+ justify-content space-evenly