@x-plat/design-system 0.1.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.
Files changed (165) hide show
  1. package/README.md +123 -0
  2. package/dist/attributes-DJIWir_0.d.cts +7 -0
  3. package/dist/attributes-DJIWir_0.d.ts +7 -0
  4. package/dist/breakpoints-DsXkJgdl.d.cts +35 -0
  5. package/dist/breakpoints-DsXkJgdl.d.ts +35 -0
  6. package/dist/colors-BG91q_uV.d.cts +133 -0
  7. package/dist/colors-BG91q_uV.d.ts +133 -0
  8. package/dist/components/Button/index.cjs +203 -0
  9. package/dist/components/Button/index.css +1231 -0
  10. package/dist/components/Button/index.d.cts +132 -0
  11. package/dist/components/Button/index.d.ts +132 -0
  12. package/dist/components/Button/index.js +176 -0
  13. package/dist/components/Card/index.cjs +56 -0
  14. package/dist/components/Card/index.css +27 -0
  15. package/dist/components/Card/index.d.cts +13 -0
  16. package/dist/components/Card/index.d.ts +13 -0
  17. package/dist/components/Card/index.js +29 -0
  18. package/dist/components/Chart/index.cjs +393 -0
  19. package/dist/components/Chart/index.css +4 -0
  20. package/dist/components/Chart/index.d.cts +10 -0
  21. package/dist/components/Chart/index.d.ts +10 -0
  22. package/dist/components/Chart/index.js +367 -0
  23. package/dist/components/CheckBox/index.cjs +1116 -0
  24. package/dist/components/CheckBox/index.css +598 -0
  25. package/dist/components/CheckBox/index.d.cts +132 -0
  26. package/dist/components/CheckBox/index.d.ts +132 -0
  27. package/dist/components/CheckBox/index.js +1089 -0
  28. package/dist/components/Chip/index.cjs +193 -0
  29. package/dist/components/Chip/index.css +1227 -0
  30. package/dist/components/Chip/index.d.cts +132 -0
  31. package/dist/components/Chip/index.d.ts +132 -0
  32. package/dist/components/Chip/index.js +166 -0
  33. package/dist/components/DatePicker/index.cjs +1653 -0
  34. package/dist/components/DatePicker/index.css +1417 -0
  35. package/dist/components/DatePicker/index.d.cts +56 -0
  36. package/dist/components/DatePicker/index.d.ts +56 -0
  37. package/dist/components/DatePicker/index.js +1613 -0
  38. package/dist/components/HtmlTypeWriter/index.cjs +172 -0
  39. package/dist/components/HtmlTypeWriter/index.css +23 -0
  40. package/dist/components/HtmlTypeWriter/index.d.cts +14 -0
  41. package/dist/components/HtmlTypeWriter/index.d.ts +14 -0
  42. package/dist/components/HtmlTypeWriter/index.js +135 -0
  43. package/dist/components/ImageSelector/index.cjs +1063 -0
  44. package/dist/components/ImageSelector/index.css +85 -0
  45. package/dist/components/ImageSelector/index.d.cts +10 -0
  46. package/dist/components/ImageSelector/index.d.ts +10 -0
  47. package/dist/components/ImageSelector/index.js +1026 -0
  48. package/dist/components/Input/index.cjs +410 -0
  49. package/dist/components/Input/index.css +74 -0
  50. package/dist/components/Input/index.d.cts +23 -0
  51. package/dist/components/Input/index.d.ts +23 -0
  52. package/dist/components/Input/index.js +372 -0
  53. package/dist/components/Modal/index.cjs +101 -0
  54. package/dist/components/Modal/index.css +39 -0
  55. package/dist/components/Modal/index.d.cts +16 -0
  56. package/dist/components/Modal/index.d.ts +16 -0
  57. package/dist/components/Modal/index.js +64 -0
  58. package/dist/components/PopOver/index.cjs +176 -0
  59. package/dist/components/PopOver/index.css +27 -0
  60. package/dist/components/PopOver/index.d.cts +15 -0
  61. package/dist/components/PopOver/index.d.ts +15 -0
  62. package/dist/components/PopOver/index.js +139 -0
  63. package/dist/components/Radio/index.cjs +257 -0
  64. package/dist/components/Radio/index.css +777 -0
  65. package/dist/components/Radio/index.d.cts +154 -0
  66. package/dist/components/Radio/index.d.ts +154 -0
  67. package/dist/components/Radio/index.js +219 -0
  68. package/dist/components/Select/index.cjs +1203 -0
  69. package/dist/components/Select/index.css +136 -0
  70. package/dist/components/Select/index.d.cts +44 -0
  71. package/dist/components/Select/index.d.ts +44 -0
  72. package/dist/components/Select/index.js +1165 -0
  73. package/dist/components/Swiper/index.cjs +144 -0
  74. package/dist/components/Swiper/index.d.cts +24 -0
  75. package/dist/components/Swiper/index.d.ts +24 -0
  76. package/dist/components/Swiper/index.js +128 -0
  77. package/dist/components/Switch/index.cjs +240 -0
  78. package/dist/components/Switch/index.css +780 -0
  79. package/dist/components/Switch/index.d.cts +131 -0
  80. package/dist/components/Switch/index.d.ts +131 -0
  81. package/dist/components/Switch/index.js +203 -0
  82. package/dist/components/Tab/index.cjs +122 -0
  83. package/dist/components/Tab/index.css +59 -0
  84. package/dist/components/Tab/index.d.cts +18 -0
  85. package/dist/components/Tab/index.d.ts +18 -0
  86. package/dist/components/Tab/index.js +85 -0
  87. package/dist/components/Table/index.cjs +384 -0
  88. package/dist/components/Table/index.css +4093 -0
  89. package/dist/components/Table/index.d.cts +174 -0
  90. package/dist/components/Table/index.d.ts +174 -0
  91. package/dist/components/Table/index.js +343 -0
  92. package/dist/components/TextArea/index.cjs +114 -0
  93. package/dist/components/TextArea/index.css +34 -0
  94. package/dist/components/TextArea/index.d.cts +6 -0
  95. package/dist/components/TextArea/index.d.ts +6 -0
  96. package/dist/components/TextArea/index.js +77 -0
  97. package/dist/components/Tooltip/index.cjs +210 -0
  98. package/dist/components/Tooltip/index.css +599 -0
  99. package/dist/components/Tooltip/index.d.cts +134 -0
  100. package/dist/components/Tooltip/index.d.ts +134 -0
  101. package/dist/components/Tooltip/index.js +173 -0
  102. package/dist/components/Video/index.cjs +269 -0
  103. package/dist/components/Video/index.css +71 -0
  104. package/dist/components/Video/index.d.cts +15 -0
  105. package/dist/components/Video/index.d.ts +15 -0
  106. package/dist/components/Video/index.js +232 -0
  107. package/dist/components/index.cjs +3221 -0
  108. package/dist/components/index.css +9972 -0
  109. package/dist/components/index.d.cts +23 -0
  110. package/dist/components/index.d.ts +23 -0
  111. package/dist/components/index.js +3167 -0
  112. package/dist/index.cjs +8216 -0
  113. package/dist/index.css +10087 -0
  114. package/dist/index.d.cts +31 -0
  115. package/dist/index.d.ts +31 -0
  116. package/dist/index.js +7855 -0
  117. package/dist/layout/Grid/FullGrid/index.cjs +54 -0
  118. package/dist/layout/Grid/FullGrid/index.css +21 -0
  119. package/dist/layout/Grid/FullGrid/index.d.cts +9 -0
  120. package/dist/layout/Grid/FullGrid/index.d.ts +9 -0
  121. package/dist/layout/Grid/FullGrid/index.js +27 -0
  122. package/dist/layout/Grid/FullScreen/index.cjs +54 -0
  123. package/dist/layout/Grid/FullScreen/index.css +23 -0
  124. package/dist/layout/Grid/FullScreen/index.d.cts +9 -0
  125. package/dist/layout/Grid/FullScreen/index.d.ts +9 -0
  126. package/dist/layout/Grid/FullScreen/index.js +27 -0
  127. package/dist/layout/Grid/GapGrid/index.cjs +32 -0
  128. package/dist/layout/Grid/GapGrid/index.d.cts +12 -0
  129. package/dist/layout/Grid/GapGrid/index.d.ts +12 -0
  130. package/dist/layout/Grid/GapGrid/index.js +11 -0
  131. package/dist/layout/Grid/Item/index.cjs +71 -0
  132. package/dist/layout/Grid/Item/index.css +19 -0
  133. package/dist/layout/Grid/Item/index.d.cts +20 -0
  134. package/dist/layout/Grid/Item/index.d.ts +20 -0
  135. package/dist/layout/Grid/Item/index.js +44 -0
  136. package/dist/layout/Grid/index.cjs +95 -0
  137. package/dist/layout/Grid/index.css +65 -0
  138. package/dist/layout/Grid/index.d.cts +5 -0
  139. package/dist/layout/Grid/index.d.ts +5 -0
  140. package/dist/layout/Grid/index.js +65 -0
  141. package/dist/layout/Header/index.cjs +45 -0
  142. package/dist/layout/Header/index.css +11 -0
  143. package/dist/layout/Header/index.d.cts +10 -0
  144. package/dist/layout/Header/index.d.ts +10 -0
  145. package/dist/layout/Header/index.js +18 -0
  146. package/dist/layout/Layout/index.cjs +44 -0
  147. package/dist/layout/Layout/index.css +23 -0
  148. package/dist/layout/Layout/index.d.cts +15 -0
  149. package/dist/layout/Layout/index.d.ts +15 -0
  150. package/dist/layout/Layout/index.js +17 -0
  151. package/dist/layout/SideBar/index.cjs +101 -0
  152. package/dist/layout/SideBar/index.css +10 -0
  153. package/dist/layout/SideBar/index.d.cts +16 -0
  154. package/dist/layout/SideBar/index.d.ts +16 -0
  155. package/dist/layout/SideBar/index.js +62 -0
  156. package/dist/layout/index.cjs +188 -0
  157. package/dist/layout/index.css +112 -0
  158. package/dist/layout/index.d.cts +8 -0
  159. package/dist/layout/index.d.ts +8 -0
  160. package/dist/layout/index.js +143 -0
  161. package/dist/tokens/index.cjs +6225 -0
  162. package/dist/tokens/index.d.cts +593 -0
  163. package/dist/tokens/index.d.ts +593 -0
  164. package/dist/tokens/index.js +5900 -0
  165. package/package.json +86 -0
@@ -0,0 +1,598 @@
1
+ /* src/components/CheckBox/checkbox.scss */
2
+ .lib-xplat-checkbox {
3
+ display: flex;
4
+ align-items: center;
5
+ gap: 0.5rem;
6
+ cursor: pointer;
7
+ user-select: none;
8
+ width: fit-content;
9
+ }
10
+ .lib-xplat-checkbox > input {
11
+ display: none;
12
+ pointer-events: none;
13
+ }
14
+ .lib-xplat-checkbox > .checkbox {
15
+ width: 1.25rem;
16
+ height: 1.25rem;
17
+ display: flex;
18
+ align-items: center;
19
+ justify-content: center;
20
+ border-radius: 0.25rem;
21
+ transition: border-color 0.2s, background-color 0.2s;
22
+ }
23
+ .lib-xplat-checkbox > .checkbox.unchecked {
24
+ border: 1px solid #A1A1A1;
25
+ }
26
+ .lib-xplat-checkbox:hover .lib-xplat-checkbox > .checkbox.unchecked {
27
+ border-color: #525252;
28
+ background-color: #F5F5F5;
29
+ }
30
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-50 {
31
+ background-color: #FFF0F0;
32
+ }
33
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-50:hover {
34
+ background-color: rgb(255, 199.2, 199.2);
35
+ }
36
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-100 {
37
+ background-color: #FFDDDE;
38
+ }
39
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-100:hover {
40
+ background-color: rgb(255, 180.2, 182.4);
41
+ }
42
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-200 {
43
+ background-color: #FFC1C2;
44
+ }
45
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-200:hover {
46
+ background-color: rgb(255, 152.2, 153.8580645161);
47
+ }
48
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-300 {
49
+ background-color: #FF9698;
50
+ }
51
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-300:hover {
52
+ background-color: rgb(255, 109.2, 111.9771428571);
53
+ }
54
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-400 {
55
+ background-color: #FF5A5D;
56
+ }
57
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-400:hover {
58
+ background-color: rgb(255, 49.2, 52.9418181818);
59
+ }
60
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-500 {
61
+ background-color: #FF272B;
62
+ }
63
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-500:hover {
64
+ background-color: rgb(253.2, 0, 4.6888888889);
65
+ }
66
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-600 {
67
+ background-color: #F80409;
68
+ }
69
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-600:hover {
70
+ background-color: rgb(207.8476190476, 3.3523809524, 7.5428571429);
71
+ }
72
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-700 {
73
+ background-color: #D40105;
74
+ }
75
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-700:hover {
76
+ background-color: rgb(171.3915492958, 0.8084507042, 4.0422535211);
77
+ }
78
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-800 {
79
+ background-color: #AE0609;
80
+ }
81
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-800:hover {
82
+ background-color: rgb(134.56, 4.64, 6.96);
83
+ }
84
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-900 {
85
+ background-color: #900C0F;
86
+ }
87
+ .lib-xplat-checkbox > .checkbox.checked.xplat-red-900:hover {
88
+ background-color: rgb(106.3384615385, 8.8615384615, 11.0769230769);
89
+ }
90
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-50 {
91
+ background-color: #E5F6EA;
92
+ }
93
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-50:hover {
94
+ background-color: rgb(198.6914285714, 235.5085714286, 209.52);
95
+ }
96
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-100 {
97
+ background-color: #C1E7CC;
98
+ }
99
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-100:hover {
100
+ background-color: rgb(163.5860465116, 219.6139534884, 179.8046511628);
101
+ }
102
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-200 {
103
+ background-color: #98D8AC;
104
+ }
105
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-200:hover {
106
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
107
+ }
108
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-300 {
109
+ background-color: #6CCA8B;
110
+ }
111
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-300:hover {
112
+ background-color: rgb(78.012, 191.188, 115.336);
113
+ }
114
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-400 {
115
+ background-color: #47BE72;
116
+ }
117
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-400:hover {
118
+ background-color: rgb(57.4819277108, 162.7180722892, 95.5084337349);
119
+ }
120
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-500 {
121
+ background-color: #10B259;
122
+ }
123
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-500:hover {
124
+ background-color: rgb(12.6350515464, 140.5649484536, 70.2824742268);
125
+ }
126
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-600 {
127
+ background-color: #00A34F;
128
+ }
129
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-600:hover {
130
+ background-color: rgb(0, 122.2, 59.2257668712);
131
+ }
132
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-700 {
133
+ background-color: #009143;
134
+ }
135
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-700:hover {
136
+ background-color: rgb(0, 104.2, 48.1475862069);
137
+ }
138
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-800 {
139
+ background-color: #007F38;
140
+ }
141
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-800:hover {
142
+ background-color: rgb(0, 86.2, 38.0094488189);
143
+ }
144
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-900 {
145
+ background-color: #006024;
146
+ }
147
+ .lib-xplat-checkbox > .checkbox.checked.xplat-green-900:hover {
148
+ background-color: rgb(0, 55.2, 20.7);
149
+ }
150
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-50 {
151
+ background-color: #FFF8EC;
152
+ }
153
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-50:hover {
154
+ background-color: rgb(255, 232.9684210526, 195.2);
155
+ }
156
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-100 {
157
+ background-color: #FFF0D3;
158
+ }
159
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-100:hover {
160
+ background-color: rgb(255, 226.0909090909, 170.2);
161
+ }
162
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-200 {
163
+ background-color: #FFDDA5;
164
+ }
165
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-200:hover {
166
+ background-color: rgb(255, 205.5866666667, 124.2);
167
+ }
168
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-300 {
169
+ background-color: #FFC46D;
170
+ }
171
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-300:hover {
172
+ background-color: rgb(255, 179.5123287671, 68.2);
173
+ }
174
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-400 {
175
+ background-color: #FF9F32;
176
+ }
177
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-400:hover {
178
+ background-color: rgb(255, 139.8936585366, 9.2);
179
+ }
180
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-500 {
181
+ background-color: #FF820A;
182
+ }
183
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-500:hover {
184
+ background-color: rgb(224.2, 109.812244898, 0);
185
+ }
186
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-600 {
187
+ background-color: #FF6900;
188
+ }
189
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-600:hover {
190
+ background-color: rgb(214.2, 88.2, 0);
191
+ }
192
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-700 {
193
+ background-color: #CC4B02;
194
+ }
195
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-700:hover {
196
+ background-color: rgb(163.5961165049, 60.145631068, 1.6038834951);
197
+ }
198
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-800 {
199
+ background-color: #A13A0B;
200
+ }
201
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-800:hover {
202
+ background-color: rgb(122.8093023256, 44.2418604651, 8.3906976744);
203
+ }
204
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-900 {
205
+ background-color: #82320C;
206
+ }
207
+ .lib-xplat-checkbox > .checkbox.checked.xplat-orange-900:hover {
208
+ background-color: rgb(92.6478873239, 35.6338028169, 8.5521126761);
209
+ }
210
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-50 {
211
+ background-color: #FFFDE7;
212
+ }
213
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-50:hover {
214
+ background-color: rgb(255, 249.6, 190.2);
215
+ }
216
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-100 {
217
+ background-color: #FFFAC1;
218
+ }
219
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-100:hover {
220
+ background-color: rgb(255, 246.7096774194, 152.2);
221
+ }
222
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-200 {
223
+ background-color: #FFF186;
224
+ }
225
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-200:hover {
226
+ background-color: rgb(255, 236.279338843, 93.2);
227
+ }
228
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-300 {
229
+ background-color: #FFE041;
230
+ }
231
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-300:hover {
232
+ background-color: rgb(255, 217.3431578947, 24.2);
233
+ }
234
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-400 {
235
+ background-color: #FFCC0D;
236
+ }
237
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-400:hover {
238
+ background-color: rgb(227.2, 179.3190082645, 0);
239
+ }
240
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-500 {
241
+ background-color: #F0B100;
242
+ }
243
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-500:hover {
244
+ background-color: rgb(199.2, 146.91, 0);
245
+ }
246
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-600 {
247
+ background-color: #D18800;
248
+ }
249
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-600:hover {
250
+ background-color: rgb(168.2, 109.4507177033, 0);
251
+ }
252
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-700 {
253
+ background-color: #A66002;
254
+ }
255
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-700:hover {
256
+ background-color: rgb(125.6857142857, 72.6857142857, 1.5142857143);
257
+ }
258
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-800 {
259
+ background-color: #894B0A;
260
+ }
261
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-800:hover {
262
+ background-color: rgb(98.9755102041, 54.1836734694, 7.2244897959);
263
+ }
264
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-900 {
265
+ background-color: #743D0F;
266
+ }
267
+ .lib-xplat-checkbox > .checkbox.checked.xplat-yellow-900:hover {
268
+ background-color: rgb(79.8717557252, 42.0015267176, 10.3282442748);
269
+ }
270
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-50 {
271
+ background-color: #F1F4FD;
272
+ }
273
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-50:hover {
274
+ background-color: rgb(205.3, 215.95, 247.9);
275
+ }
276
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-100 {
277
+ background-color: #DFE7FA;
278
+ }
279
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-100:hover {
280
+ background-color: rgb(187.7135135135, 204.5351351351, 244.4864864865);
281
+ }
282
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-200 {
283
+ background-color: #C5D4F8;
284
+ }
285
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-200:hover {
286
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
287
+ }
288
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-300 {
289
+ background-color: #9EB8F2;
290
+ }
291
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-300:hover {
292
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
293
+ }
294
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-400 {
295
+ background-color: #7093EA;
296
+ }
297
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-400:hover {
298
+ background-color: rgb(76.4243902439, 120.1317073171, 228.7756097561);
299
+ }
300
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-500 {
301
+ background-color: #4D6DE3;
302
+ }
303
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-500:hover {
304
+ background-color: rgb(41.745631068, 80.0834951456, 221.454368932);
305
+ }
306
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-600 {
307
+ background-color: #3950D7;
308
+ }
309
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-600:hover {
310
+ background-color: rgb(38.8571428571, 61.2, 192.3428571429);
311
+ }
312
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-700 {
313
+ background-color: #303EC5;
314
+ }
315
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-700:hover {
316
+ background-color: rgb(40.0065306122, 51.6751020408, 164.1934693878);
317
+ }
318
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-800 {
319
+ background-color: #2D35A0;
320
+ }
321
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-800:hover {
322
+ background-color: rgb(36.043902439, 42.4517073171, 128.156097561);
323
+ }
324
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-900 {
325
+ background-color: #29317F;
326
+ }
327
+ .lib-xplat-checkbox > .checkbox.checked.xplat-blue-900:hover {
328
+ background-color: rgb(31.0428571429, 37.1, 96.1571428571);
329
+ }
330
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-50 {
331
+ background-color: #EEFAFF;
332
+ }
333
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-50:hover {
334
+ background-color: rgb(197.2, 238, 255);
335
+ }
336
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-100 {
337
+ background-color: #D9F4FF;
338
+ }
339
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-100:hover {
340
+ background-color: rgb(176.2, 232.1894736842, 255);
341
+ }
342
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-200 {
343
+ background-color: #BBEDFF;
344
+ }
345
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-200:hover {
346
+ background-color: rgb(146.2, 226.2, 255);
347
+ }
348
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-300 {
349
+ background-color: #8DE3FF;
350
+ }
351
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-300:hover {
352
+ background-color: rgb(100.2, 216.9789473684, 255);
353
+ }
354
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-400 {
355
+ background-color: #57D0FF;
356
+ }
357
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-400:hover {
358
+ background-color: rgb(46.2, 196.5857142857, 255);
359
+ }
360
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-500 {
361
+ background-color: #30B6FF;
362
+ }
363
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-500:hover {
364
+ background-color: rgb(7.2, 167.6115942029, 255);
365
+ }
366
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-600 {
367
+ background-color: #1999F7;
368
+ }
369
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-600:hover {
370
+ background-color: rgb(7.7714285714, 132.1142857143, 223.4285714286);
371
+ }
372
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-700 {
373
+ background-color: #1280E3;
374
+ }
375
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-700:hover {
376
+ background-color: rgb(15.0024489796, 106.6840816327, 189.1975510204);
377
+ }
378
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-800 {
379
+ background-color: #1566B8;
380
+ }
381
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-800:hover {
382
+ background-color: rgb(16.8204878049, 81.6995121951, 147.3795121951);
383
+ }
384
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-900 {
385
+ background-color: #175791;
386
+ }
387
+ .lib-xplat-checkbox > .checkbox.checked.xplat-lightblue-900:hover {
388
+ background-color: rgb(17.4142857143, 65.8714285714, 109.7857142857);
389
+ }
390
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-50 {
391
+ background-color: #FBF6FE;
392
+ }
393
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-50:hover {
394
+ background-color: rgb(234.68, 209.28, 249.92);
395
+ }
396
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-100 {
397
+ background-color: #F5EAFD;
398
+ }
399
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-100:hover {
400
+ background-color: rgb(227.2608695652, 196.747826087, 249.452173913);
401
+ }
402
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-200 {
403
+ background-color: #EDD8FC;
404
+ }
405
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-200:hover {
406
+ background-color: rgb(219.5142857143, 178.1142857143, 249.0857142857);
407
+ }
408
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-300 {
409
+ background-color: #E0BAF8;
410
+ }
411
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-300:hover {
412
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
413
+ }
414
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-400 {
415
+ background-color: #CD8DF3;
416
+ }
417
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-400:hover {
418
+ background-color: rgb(188.8095238095, 104.0857142857, 239.1142857143);
419
+ }
420
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-500 {
421
+ background-color: #B961EB;
422
+ }
423
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-500:hover {
424
+ background-color: rgb(168.9550561798, 60.7842696629, 230.4157303371);
425
+ }
426
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-600 {
427
+ background-color: #A541DC;
428
+ }
429
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-600:hover {
430
+ background-color: rgb(146.52, 37.9866666667, 206.2133333333);
431
+ }
432
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-700 {
433
+ background-color: #9230C5;
434
+ }
435
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-700:hover {
436
+ background-color: rgb(121.6865306122, 40.0065306122, 164.1934693878);
437
+ }
438
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-800 {
439
+ background-color: #782B9E;
440
+ }
441
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-800:hover {
442
+ background-color: rgb(95.6417910448, 34.271641791, 125.928358209);
443
+ }
444
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-900 {
445
+ background-color: #62247F;
446
+ }
447
+ .lib-xplat-checkbox > .checkbox.checked.xplat-purple-900:hover {
448
+ background-color: rgb(73.4699386503, 26.9889570552, 95.2110429448);
449
+ }
450
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-50 {
451
+ background-color: #FFF4FE;
452
+ }
453
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-50:hover {
454
+ background-color: rgb(255, 203.2, 250.2909090909);
455
+ }
456
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-100 {
457
+ background-color: #FFE7FD;
458
+ }
459
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-100:hover {
460
+ background-color: rgb(255, 190.2, 249.6);
461
+ }
462
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-200 {
463
+ background-color: #FFCFFA;
464
+ }
465
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-200:hover {
466
+ background-color: rgb(255, 166.2, 245.75);
467
+ }
468
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-300 {
469
+ background-color: #FEA9F1;
470
+ }
471
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-300:hover {
472
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
473
+ }
474
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-400 {
475
+ background-color: #FD75E7;
476
+ }
477
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-400:hover {
478
+ background-color: rgb(252.4171428571, 76.7828571429, 224.0057142857);
479
+ }
480
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-500 {
481
+ background-color: #F553DA;
482
+ }
483
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-500:hover {
484
+ background-color: rgb(242.7582417582, 44.4417582418, 209.7054945055);
485
+ }
486
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-600 {
487
+ background-color: #D821B6;
488
+ }
489
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-600:hover {
490
+ background-color: rgb(180.6072289157, 27.5927710843, 152.178313253);
491
+ }
492
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-700 {
493
+ background-color: #B31892;
494
+ }
495
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-700:hover {
496
+ background-color: rgb(143.0236453202, 19.1763546798, 116.6561576355);
497
+ }
498
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-800 {
499
+ background-color: #921676;
500
+ }
501
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-800:hover {
502
+ background-color: rgb(110.5428571429, 16.6571428571, 89.3428571429);
503
+ }
504
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-900 {
505
+ background-color: #781761;
506
+ }
507
+ .lib-xplat-checkbox > .checkbox.checked.xplat-pink-900:hover {
508
+ background-color: rgb(85.7622377622, 16.4377622378, 69.3244755245);
509
+ }
510
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-50 {
511
+ background-color: #FAFAFA;
512
+ }
513
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-50:hover {
514
+ background-color: rgb(229.6, 229.6, 229.6);
515
+ }
516
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-100 {
517
+ background-color: #F5F5F5;
518
+ }
519
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-100:hover {
520
+ background-color: rgb(224.6, 224.6, 224.6);
521
+ }
522
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-200 {
523
+ background-color: #E5E5E5;
524
+ }
525
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-200:hover {
526
+ background-color: rgb(208.6, 208.6, 208.6);
527
+ }
528
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-300 {
529
+ background-color: #D4D4D4;
530
+ }
531
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-300:hover {
532
+ background-color: rgb(191.6, 191.6, 191.6);
533
+ }
534
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-400 {
535
+ background-color: #A1A1A1;
536
+ }
537
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-400:hover {
538
+ background-color: rgb(140.6, 140.6, 140.6);
539
+ }
540
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-500 {
541
+ background-color: #737373;
542
+ }
543
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-500:hover {
544
+ background-color: rgb(94.6, 94.6, 94.6);
545
+ }
546
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-600 {
547
+ background-color: #525252;
548
+ }
549
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-600:hover {
550
+ background-color: rgb(61.6, 61.6, 61.6);
551
+ }
552
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-700 {
553
+ background-color: #404040;
554
+ }
555
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-700:hover {
556
+ background-color: rgb(43.6, 43.6, 43.6);
557
+ }
558
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-800 {
559
+ background-color: #262626;
560
+ }
561
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-800:hover {
562
+ background-color: rgb(17.6, 17.6, 17.6);
563
+ }
564
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-900 {
565
+ background-color: #171717;
566
+ }
567
+ .lib-xplat-checkbox > .checkbox.checked.xplat-neutral-900:hover {
568
+ background-color: rgb(2.6, 2.6, 2.6);
569
+ }
570
+ .lib-xplat-checkbox > .checkbox.checked.xplat-black {
571
+ background-color: #000000;
572
+ }
573
+ .lib-xplat-checkbox > .checkbox.checked.xplat-black:hover {
574
+ background-color: hsl(0, 0%, -8%);
575
+ }
576
+ .lib-xplat-checkbox > .checkbox.checked.xplat-white {
577
+ background-color: #FFFFFF;
578
+ }
579
+ .lib-xplat-checkbox > .checkbox.checked.xplat-white:hover {
580
+ background-color: rgb(234.6, 234.6, 234.6);
581
+ }
582
+ .lib-xplat-checkbox > .checkbox.checked.test-default {
583
+ background-color: #ffffff;
584
+ }
585
+ .lib-xplat-checkbox > .checkbox.checked.test-default:hover {
586
+ background-color: rgb(234.6, 234.6, 234.6);
587
+ }
588
+ .lib-xplat-checkbox > .checkbox.disabled {
589
+ cursor: not-allowed;
590
+ background-color: #A1A1A1 !important;
591
+ border-color: #A1A1A1 !important;
592
+ }
593
+ .lib-xplat-checkbox > .label {
594
+ color: #171717;
595
+ font-weight: 400;
596
+ line-height: 1em;
597
+ padding-top: 0.05rem;
598
+ }