allaw-ui 2.8.3 → 2.8.4

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.
@@ -1,172 +1,176 @@
1
1
  .backdrop {
2
- position: fixed;
3
- top: 0;
4
- left: 0;
5
- height: 100vh;
6
- width: 100vw;
7
- z-index: 4500;
2
+ position: fixed;
3
+ top: 0;
4
+ left: 0;
5
+ height: 100vh;
6
+ width: 100vw;
7
+ z-index: 4500;
8
8
  }
9
9
 
10
10
  .baseFilter {
11
- position: relative;
12
- width: fit-content;
11
+ position: relative;
12
+ width: fit-content;
13
+ z-index: 4501;
13
14
  }
14
15
 
15
- .smallOpenFilter{
16
- position: relative;
17
- width: fit-content;
16
+ .smallOpenFilter {
17
+ position: relative;
18
+ width: fit-content;
18
19
  }
19
20
 
20
21
  .options {
21
- position: absolute;
22
- top: 120%;
23
- left: 0;
24
- width: fit-content;
25
- border: 0.5px solid #ddd;
26
- border-radius: 4px;
27
- background-color: #ffffff;
28
- box-shadow: rgba(9, 30, 66, 0.15) 0px 8px 12px 0px;
29
- z-index: 5000;
30
- padding: 0.4rem 0rem;
22
+ position: absolute;
23
+ top: 120%;
24
+ left: 0;
25
+ width: fit-content;
26
+ border: 0.5px solid #ddd;
27
+ border-radius: 4px;
28
+ background-color: #ffffff;
29
+ box-shadow: rgba(9, 30, 66, 0.15) 0px 8px 12px 0px;
30
+ z-index: 5000;
31
+ padding: 0.4rem 0rem;
31
32
  }
32
33
 
33
34
  .item {
34
- background: none;
35
- border: none;
36
- display: flex;
37
- flex-direction: row;
38
- align-items: center;
39
- gap: 0.75rem;
40
- padding: 0.5rem 1rem;
41
- cursor: pointer;
42
- border-left: 2px solid #FFF;
43
- width: 100%;
44
- color: #0000
35
+ background: none;
36
+ border: none;
37
+ display: flex;
38
+ flex-direction: row;
39
+ align-items: center;
40
+ gap: 0.75rem;
41
+ padding: 0.5rem 1rem;
42
+ cursor: pointer;
43
+ border-left: 2px solid #fff;
44
+ width: 100%;
45
+ color: #0000;
45
46
  }
46
47
 
47
48
  .round {
48
-
49
- display: flex;
50
- align-items: center;
51
- justify-content: center;
52
- border: 1px solid #D1DCE7;
53
- border-radius: 3rem;
54
- padding: 2px;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: center;
52
+ border: 1px solid #d1dce7;
53
+ border-radius: 3rem;
54
+ padding: 2px;
55
55
  }
56
56
 
57
57
  .selected {
58
- background-color: #25BEEB;
59
- min-width: 0.6rem;
60
- min-height: 0.6rem;
61
- border-radius: 1rem;
62
- display: block;
58
+ background-color: #25beeb;
59
+ min-width: 0.6rem;
60
+ min-height: 0.6rem;
61
+ border-radius: 1rem;
62
+ display: block;
63
63
  }
64
64
 
65
65
  .notSelected {
66
- background-color: #FFF;
67
- min-width: 0.6rem;
68
- min-height: 0.6rem;
69
- border-radius: 1rem;
70
- display: block;
66
+ background-color: #fff;
67
+ min-width: 0.6rem;
68
+ min-height: 0.6rem;
69
+ border-radius: 1rem;
70
+ display: block;
71
71
  }
72
72
 
73
73
  .item > span {
74
- text-wrap: nowrap;
75
- font-family: var(--font-open-sans);
76
- font-size: 14px;
77
- font-weight: 500;
78
- color: #000;
74
+ text-wrap: nowrap;
75
+ font-family: var(--font-open-sans);
76
+ font-size: 14px;
77
+ font-weight: 500;
78
+ color: #000;
79
79
  }
80
80
 
81
81
  .item:hover {
82
- background-color: #EFF2F5;
83
- border-left: 2px solid #25BEEB;
82
+ background-color: #eff2f5;
83
+ border-left: 2px solid #25beeb;
84
84
  }
85
85
 
86
86
  .optionsSmall {
87
- position: fixed;
88
- right: 0;
89
- transition: bottom 225ms cubic-bezier(0, 0, 0.2, 1);
90
- max-height: 90dvh;
91
- background-color: white;
92
- width: 100vw;
93
- display: none;
94
- border-radius: 16px 16px 0 0;
95
- padding: 1rem;
96
- flex-direction: column;
97
- gap: 2rem;
87
+ position: fixed;
88
+ right: 0;
89
+ transition: bottom 225ms cubic-bezier(0, 0, 0.2, 1);
90
+ max-height: 90dvh;
91
+ background-color: white;
92
+ width: 100vw;
93
+ display: none;
94
+ border-radius: 16px 16px 0 0;
95
+ padding: 1rem;
96
+ flex-direction: column;
97
+ gap: 2rem;
98
98
  }
99
99
 
100
100
  .smallItem {
101
- background: none;
102
- border: none;
103
- display: flex;
104
- flex-direction: row-reverse;
105
- align-items: center;
106
- justify-content: space-between;
107
- padding: 1.5rem 1rem;
108
- cursor: pointer;
109
- border-left: 2px solid #FFF;
110
- width: 100%;
111
- color: #0000;
112
- border-top: 1px solid #e4edf6;
101
+ background: none;
102
+ border: none;
103
+ display: flex;
104
+ flex-direction: row-reverse;
105
+ align-items: center;
106
+ justify-content: space-between;
107
+ padding: 1.5rem 1rem;
108
+ cursor: pointer;
109
+ border-left: 2px solid #fff;
110
+ width: 100%;
111
+ color: #0000;
112
+ border-top: 1px solid #e4edf6;
113
113
  }
114
114
 
115
115
  .smallItem:first-child {
116
- border-top: none;
116
+ border-top: none;
117
117
  }
118
118
 
119
119
  .smallItem > span {
120
- text-wrap: nowrap;
121
- font-family: var(--font-open-sans);
122
- font-size: 14px;
123
- font-weight: 500;
124
- color: #000;
120
+ text-wrap: nowrap;
121
+ font-family: var(--font-open-sans);
122
+ font-size: 14px;
123
+ font-weight: 500;
124
+ color: #000;
125
125
  }
126
126
 
127
127
  .choices {
128
- display: flex;
129
- flex-direction: column;
128
+ display: flex;
129
+ flex-direction: column;
130
130
  }
131
131
 
132
132
  .closeButton {
133
- height: fit-content;
134
- border: none;
135
- color: #000;
136
- background: transparent;
137
- cursor: pointer;
138
- width: 20px;
139
- display: flex;
140
- align-items: center;
141
- justify-content: center;
133
+ height: fit-content;
134
+ border: none;
135
+ color: #000;
136
+ background: transparent;
137
+ cursor: pointer;
138
+ width: 20px;
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
142
  }
143
143
 
144
144
  .closeButton > i {
145
- font-size: 16px;
145
+ font-size: 16px;
146
146
  }
147
147
 
148
148
  .row {
149
- width: 100%;
150
- height: fit-content;
151
- display: flex;
152
- flex-direction: row;
153
- justify-content: space-between;
154
- align-items: center;
155
- gap: 1rem;
156
- padding: 1rem 0.5rem;
149
+ width: 100%;
150
+ height: fit-content;
151
+ display: flex;
152
+ flex-direction: row;
153
+ justify-content: space-between;
154
+ align-items: center;
155
+ gap: 1rem;
156
+ padding: 1rem 0.5rem;
157
157
  }
158
158
 
159
159
  @media screen and (max-width: 800px) {
160
- .options {
161
- display: none;
162
- }
163
-
164
- .optionsSmall {
165
- z-index: 5000;
166
- display: flex;
167
- }
168
-
169
- .backdrop {
170
- background: linear-gradient(180deg, rgba(26, 50, 56, 0.00) 0%, rgba(2, 9, 11, 0.45) 100%);
171
- }
172
- }
160
+ .options {
161
+ display: none;
162
+ }
163
+
164
+ .optionsSmall {
165
+ z-index: 5000;
166
+ display: flex;
167
+ }
168
+
169
+ .backdrop {
170
+ background: linear-gradient(
171
+ 180deg,
172
+ rgba(26, 50, 56, 0) 0%,
173
+ rgba(2, 9, 11, 0.45) 100%
174
+ );
175
+ }
176
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allaw-ui",
3
- "version": "2.8.3",
3
+ "version": "2.8.4",
4
4
  "description": "Composants UI pour l'application Allaw",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",