@itcase/ui 1.0.11 → 1.0.13

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 (34) hide show
  1. package/dist/components/Avatar.js +4 -2
  2. package/dist/components/DatePicker.js +1091 -342
  3. package/dist/components/Empty.js +95 -0
  4. package/dist/components/FormField.js +1 -2
  5. package/dist/components/Grid.js +8 -14
  6. package/dist/components/Label.js +0 -5
  7. package/dist/components/Modal.js +228 -10
  8. package/dist/components/Search.js +3 -4
  9. package/dist/components/Segmented.js +5 -1
  10. package/dist/components/Select.js +2 -3
  11. package/dist/components/Swiper.js +4208 -188
  12. package/dist/components/Switch.js +3 -2
  13. package/dist/components/Textarea.js +5 -1
  14. package/dist/components/Tile.js +0 -3
  15. package/dist/css/components/Choice/Choice.css +6 -0
  16. package/dist/css/components/DatePicker/DatePicker.css +30 -4
  17. package/dist/css/components/Empty/Empty.css +13 -0
  18. package/dist/css/components/Input/Input.css +12 -4
  19. package/dist/css/components/Segmented/Segmented.css +16 -0
  20. package/dist/css/components/Swiper/Swiper.css +128 -83
  21. package/dist/{defineProperty-72768a50.js → defineProperty-f9e5e1f3.js} +14 -5
  22. package/dist/hooks/styleAttributes.js +5 -1
  23. package/package.json +27 -27
  24. package/dist/Modal-375ef8c3.js +0 -234
  25. package/dist/components/DateRangePicker.js +0 -218
  26. package/dist/components/Emoji.js +0 -124
  27. package/dist/components/Profile.js +0 -105
  28. package/dist/css/components/DateRangePicker/DateRangePicker.css +0 -1021
  29. package/dist/css/components/Emoji/Emoji.css +0 -104
  30. package/dist/css/components/Emoji/css/__icon/emoji__icon-shape.css +0 -12
  31. package/dist/css/components/Emoji/css/__icon/emoji__icon.css +0 -5
  32. package/dist/css/components/Profile/Profile.css +0 -19
  33. package/dist/index-738f53f6.js +0 -787
  34. package/dist/typeof-6dd323c6.js +0 -13
@@ -1,104 +0,0 @@
1
- .emoji {
2
- position: relative;
3
- }
4
- .emoji {
5
- &_direction {
6
- @each $val in row, row-reverse, column, column-reverse {
7
- &_$(val) {
8
- display: flex;
9
- flex-direction: $(val);
10
- }
11
- }
12
- &_horizontal {
13
- display: flex;
14
- flex-direction: row;
15
- }
16
- &_vertical {
17
- display: flex;
18
- flex-direction: column;
19
- }
20
- }
21
- }
22
- .emoji {
23
- &_shape {
24
- &_rounded {
25
- border-radius: 12px;
26
- }
27
- &_circular {
28
- border-radius: 50%;
29
- }
30
- }
31
- }
32
- .emoji_size {
33
- &_40 {
34
- height: 40px;
35
- width: 40px;
36
- min-height: 40px;
37
- min-width: 40px;
38
- display: flex;
39
- justify-content: center;
40
- align-items: center;
41
- font-size: 30px;
42
- }
43
-
44
- &_50 {
45
- height: 50px;
46
- width: 50px;
47
- min-height: 50px;
48
- min-width: 50px;
49
- display: flex;
50
- justify-content: center;
51
- align-items: center;
52
- font-size: 35px;
53
- }
54
-
55
- &_56 {
56
- height: 56px;
57
- width: 56px;
58
- min-height: 56px;
59
- min-width: 56px;
60
- display: flex;
61
- justify-content: center;
62
- align-items: center;
63
- font-size: 40px;
64
- }
65
-
66
- &_60 {
67
- height: 60px;
68
- width: 60px;
69
- min-height: 60px;
70
- min-width: 60px;
71
- display: flex;
72
- justify-content: center;
73
- align-items: center;
74
- font-size: 35px;
75
- }
76
-
77
- &_76 {
78
- height: 76px;
79
- width: 76px;
80
- min-height: 76px;
81
- min-width: 76px;
82
- display: flex;
83
- justify-content: center;
84
- align-items: center;
85
- font-size: 40px;
86
- }
87
- }
88
- .emoji {
89
- &__icon {
90
- &-shape {
91
- &_rounded {
92
- border-radius: 12px;
93
- }
94
- &_circular {
95
- border-radius: 50%;
96
- }
97
- }
98
- }
99
- }
100
- .emoji {
101
- &__icon {
102
- position: relative;
103
- }
104
- }
@@ -1,12 +0,0 @@
1
- .emoji {
2
- &__icon {
3
- &-shape {
4
- &_rounded {
5
- border-radius: 12px;
6
- }
7
- &_circular {
8
- border-radius: 50%;
9
- }
10
- }
11
- }
12
- }
@@ -1,5 +0,0 @@
1
- .emoji {
2
- &__icon {
3
- position: relative;
4
- }
5
- }
@@ -1,19 +0,0 @@
1
- .profile {
2
- display: flex;
3
- &__avatar {
4
- margin: 0 12px 0 0;
5
- }
6
- }
7
- .profile {
8
- &_shape {
9
- &_rounded {
10
- border-radius: 8px;
11
- position: relative;
12
- overflow: hidden;
13
- }
14
- &_circular {
15
- border-radius: 50%;
16
- }
17
- }
18
- }
19
-