monkey-style-guide 21.2.7 → 21.2.8

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/README.md +24 -24
  2. package/assets/scss/autocomplete/_index.scss +6 -6
  3. package/assets/scss/autocomplete/_styles.scss +149 -149
  4. package/assets/scss/directives/_badge.scss +48 -48
  5. package/assets/scss/directives/_index.scss +8 -8
  6. package/assets/scss/directives/_popover.scss +102 -102
  7. package/assets/scss/directives/_styles.scss +99 -99
  8. package/assets/scss/input/_index.scss +6 -6
  9. package/assets/scss/input/_styles.scss +67 -67
  10. package/assets/scss/partials/_breakpoints.scss +145 -145
  11. package/assets/scss/partials/_grid-system.scss +5069 -5069
  12. package/assets/scss/partials/_helper-classes.scss +373 -373
  13. package/assets/scss/partials/_icons.scss +38 -38
  14. package/assets/scss/partials/_index.scss +14 -14
  15. package/assets/scss/partials/_popover.scss +3 -3
  16. package/assets/scss/partials/_scrollbars.scss +29 -29
  17. package/assets/scss/partials/_skeleton-loading.scss +95 -95
  18. package/assets/scss/partials/_style-reset.scss +191 -191
  19. package/assets/scss/partials/_variables.scss +95 -95
  20. package/assets/scss/table/_index.scss +6 -6
  21. package/assets/scss/table/_styles.scss +11 -11
  22. package/assets/scss/theme.scss +14 -14
  23. package/assets/scss/typography/_index.scss +6 -6
  24. package/assets/scss/typography/_styles.scss +60 -60
  25. package/fesm2022/monkey-style-guide.mjs +2658 -2049
  26. package/fesm2022/monkey-style-guide.mjs.map +1 -1
  27. package/monkey-style-guide-21.2.8.tgz +0 -0
  28. package/package.json +1 -1
  29. package/types/monkey-style-guide.d.ts +351 -103
  30. package/monkey-style-guide-21.2.7.tgz +0 -0
@@ -1,373 +1,373 @@
1
- /**************************
2
- * Copyright Monkey Exchange. All Rights Reserved
3
- * This style guide was developed by Monkey Exchange Team
4
- * MIT Licence
5
- **************************/
6
- /* stylelint-disable color-no-hex */
7
- /* stylelint-disable selector-class-pattern */
8
- @use 'variables' as *;
9
-
10
- body {
11
- margin: 0;
12
- padding: 0;
13
- background-color: var(--mecx-color-white);
14
- }
15
-
16
- :root {
17
- background-color: var(--mecx-color-white);
18
-
19
- @each $key, $value in $mecx-error {
20
- --mecx-color-error-#{$key}: #{$value};
21
- }
22
-
23
- @each $key, $value in $mecx-warning {
24
- --mecx-color-warning-#{$key}: #{$value};
25
- }
26
-
27
- @each $key, $value in $mecx-success {
28
- --mecx-color-success-#{$key}: #{$value};
29
- }
30
-
31
- @each $key, $value in $mecx-question {
32
- --mecx-color-question-#{$key}: #{$value};
33
- }
34
-
35
- @each $key, $value in $mecx-support {
36
- --mecx-color-support-#{$key}: #{$value};
37
- }
38
-
39
- @each $key, $value in $mecx-gray {
40
- --mecx-color-gray-#{$key}: #{$value};
41
- }
42
-
43
- @each $key, $value in $mecx-spaces {
44
- --mecx-spaces-#{$key}: #{$value};
45
- }
46
-
47
- @each $key, $value in $mecx-weight {
48
- --mecx-fw-#{$key}: #{$value};
49
- }
50
-
51
- @each $key, $value in $mecx-lh {
52
- --mecx-lh-#{$key}: #{$value};
53
- }
54
-
55
- @each $key, $value in $mecx-sizes {
56
- --mecx-fs-#{$key}: #{$value};
57
- }
58
-
59
- --mecx-color-box-shadow: #00000029;
60
- --mecx-color-info: #003687;
61
- --mecx-color-link: #06c;
62
- --mecx-color-white: #fff;
63
- --mecx-color-overlay: #00000052;
64
- }
65
-
66
- @each $key, $value in $mecx-gray {
67
- .text-gray-#{$key} {
68
- color: $value !important;
69
- }
70
-
71
- .bg-gray-#{$key} {
72
- background-color: $value !important;
73
- }
74
- }
75
-
76
- @each $key, $value in $mecx-weight {
77
- .fw-#{$key} {
78
- font-weight: $value !important;
79
- }
80
- }
81
-
82
- @each $key, $value in $mecx-lh {
83
- .lh-#{$key} {
84
- line-height: $value !important;
85
- }
86
- }
87
-
88
- @each $key, $value in $mecx-sizes {
89
- .fs-#{$key} {
90
- font-size: $value !important;
91
- }
92
- }
93
-
94
- @each $key, $value in $mecx-theme {
95
- .text-theme-#{$key} {
96
- color: $value !important;
97
- }
98
-
99
- .bg-theme-#{$key} {
100
- background-color: $value !important;
101
- }
102
- }
103
-
104
- @each $key, $value in $mecx-success {
105
- .text-success-#{$key} {
106
- color: $value !important;
107
- }
108
-
109
- .bg-success-#{$key} {
110
- background-color: $value !important;
111
- }
112
- }
113
-
114
- @each $key, $value in $mecx-error {
115
- .text-error-#{$key} {
116
- color: $value !important;
117
- }
118
-
119
- .bg-error-#{$key} {
120
- background-color: $value !important;
121
- }
122
- }
123
-
124
- @each $key, $value in $mecx-warning {
125
- .text-warning-#{$key} {
126
- color: $value !important;
127
- }
128
-
129
- .bg-warning-#{$key} {
130
- background-color: $value !important;
131
- }
132
- }
133
-
134
- @each $key, $value in $mecx-question {
135
- .text-question-#{$key} {
136
- color: $value !important;
137
- }
138
-
139
- .bg-question-#{$key} {
140
- background-color: $value !important;
141
- }
142
- }
143
-
144
- .text-center {
145
- text-align: center !important;
146
- }
147
-
148
- .text-left {
149
- text-align: left !important;
150
- }
151
-
152
- .text-right {
153
- text-align: right !important;
154
- }
155
-
156
- .text-justify {
157
- text-align: justify !important;
158
- }
159
-
160
- .text-upper {
161
- text-transform: uppercase !important;
162
- }
163
-
164
- .text-lower {
165
- text-transform: lowercase !important;
166
- }
167
-
168
- .text-decoration-none {
169
- text-decoration: none !important;
170
- }
171
-
172
- .text-underline {
173
- text-decoration: underline !important;
174
- }
175
-
176
- .text-capitalize {
177
- text-transform: capitalize !important;
178
- }
179
-
180
- .text-truncate {
181
- overflow: hidden !important;
182
- text-overflow: ellipsis !important;
183
- white-space: nowrap !important;
184
- }
185
-
186
- .text-wrap {
187
- white-space: normal !important;
188
- }
189
-
190
- .text-nowrap {
191
- white-space: nowrap !important;
192
- }
193
-
194
- .text-break {
195
- word-wrap: break-word !important;
196
- word-break: break-word !important;
197
- }
198
-
199
- .opacity-0 {
200
- opacity: 0 !important;
201
- }
202
-
203
- .opacity-25 {
204
- opacity: 0.25 !important;
205
- }
206
-
207
- .opacity-50 {
208
- opacity: 0.5 !important;
209
- }
210
-
211
- .opacity-75 {
212
- opacity: 0.75 !important;
213
- }
214
-
215
- .opacity-100 {
216
- opacity: 1 !important;
217
- }
218
-
219
- .overflow-auto {
220
- overflow: auto !important;
221
- }
222
-
223
- .overflow-hidden {
224
- overflow: hidden !important;
225
- }
226
-
227
- .overflow-visible {
228
- overflow: visible !important;
229
- }
230
-
231
- .overflow-scroll {
232
- overflow: scroll !important;
233
- }
234
-
235
- .overflow-x-auto {
236
- overflow-x: auto !important;
237
- }
238
-
239
- .overflow-x-hidden {
240
- overflow-x: hidden !important;
241
- }
242
-
243
- .overflow-x-visible {
244
- overflow-x: visible !important;
245
- }
246
-
247
- .overflow-x-scroll {
248
- overflow-x: scroll !important;
249
- }
250
-
251
- .overflow-y-auto {
252
- overflow-y: auto !important;
253
- }
254
-
255
- .overflow-y-hidden {
256
- overflow-y: hidden !important;
257
- }
258
-
259
- .overflow-y-visible {
260
- overflow-y: visible !important;
261
- }
262
-
263
- .overflow-y-scroll {
264
- overflow-y: scroll !important;
265
- }
266
-
267
- .position-static {
268
- position: static !important;
269
- }
270
-
271
- .position-relative {
272
- position: relative !important;
273
- }
274
-
275
- .position-absolute {
276
- position: absolute !important;
277
- }
278
-
279
- .position-fixed {
280
- position: fixed !important;
281
- }
282
-
283
- .position-sticky {
284
- position: sticky !important;
285
- }
286
-
287
- .w-25 {
288
- width: 25% !important;
289
- }
290
-
291
- .w-50 {
292
- width: 50% !important;
293
- }
294
-
295
- .w-75 {
296
- width: 75% !important;
297
- }
298
-
299
- .w-100 {
300
- width: 100% !important;
301
- }
302
-
303
- .w-auto {
304
- width: auto !important;
305
- }
306
-
307
- .mw-100 {
308
- max-width: 100% !important;
309
- }
310
-
311
- .vw-100 {
312
- width: 100vw !important;
313
- }
314
-
315
- .min-vw-100 {
316
- min-width: 100vw !important;
317
- }
318
-
319
- .h-25 {
320
- height: 25% !important;
321
- }
322
-
323
- .h-50 {
324
- height: 50% !important;
325
- }
326
-
327
- .h-75 {
328
- height: 75% !important;
329
- }
330
-
331
- .h-100 {
332
- height: 100% !important;
333
- }
334
-
335
- .h-auto {
336
- height: auto !important;
337
- }
338
-
339
- .mh-100 {
340
- max-height: 100% !important;
341
- }
342
-
343
- .vh-100 {
344
- height: 100vh !important;
345
- }
346
-
347
- .min-vh-100 {
348
- min-height: 100vh !important;
349
- }
350
-
351
- .gap-0 {
352
- gap: 0 !important;
353
- }
354
-
355
- .gap-1 {
356
- gap: 0.25rem !important;
357
- }
358
-
359
- .gap-2 {
360
- gap: 0.5rem !important;
361
- }
362
-
363
- .gap-3 {
364
- gap: 1rem !important;
365
- }
366
-
367
- .gap-4 {
368
- gap: 1.5rem !important;
369
- }
370
-
371
- .gap-5 {
372
- gap: 3rem !important;
373
- }
1
+ /**************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ **************************/
6
+ /* stylelint-disable color-no-hex */
7
+ /* stylelint-disable selector-class-pattern */
8
+ @use 'variables' as *;
9
+
10
+ body {
11
+ margin: 0;
12
+ padding: 0;
13
+ background-color: var(--mecx-color-white);
14
+ }
15
+
16
+ :root {
17
+ background-color: var(--mecx-color-white);
18
+
19
+ @each $key, $value in $mecx-error {
20
+ --mecx-color-error-#{$key}: #{$value};
21
+ }
22
+
23
+ @each $key, $value in $mecx-warning {
24
+ --mecx-color-warning-#{$key}: #{$value};
25
+ }
26
+
27
+ @each $key, $value in $mecx-success {
28
+ --mecx-color-success-#{$key}: #{$value};
29
+ }
30
+
31
+ @each $key, $value in $mecx-question {
32
+ --mecx-color-question-#{$key}: #{$value};
33
+ }
34
+
35
+ @each $key, $value in $mecx-support {
36
+ --mecx-color-support-#{$key}: #{$value};
37
+ }
38
+
39
+ @each $key, $value in $mecx-gray {
40
+ --mecx-color-gray-#{$key}: #{$value};
41
+ }
42
+
43
+ @each $key, $value in $mecx-spaces {
44
+ --mecx-spaces-#{$key}: #{$value};
45
+ }
46
+
47
+ @each $key, $value in $mecx-weight {
48
+ --mecx-fw-#{$key}: #{$value};
49
+ }
50
+
51
+ @each $key, $value in $mecx-lh {
52
+ --mecx-lh-#{$key}: #{$value};
53
+ }
54
+
55
+ @each $key, $value in $mecx-sizes {
56
+ --mecx-fs-#{$key}: #{$value};
57
+ }
58
+
59
+ --mecx-color-box-shadow: #00000029;
60
+ --mecx-color-info: #003687;
61
+ --mecx-color-link: #06c;
62
+ --mecx-color-white: #fff;
63
+ --mecx-color-overlay: #00000052;
64
+ }
65
+
66
+ @each $key, $value in $mecx-gray {
67
+ .text-gray-#{$key} {
68
+ color: $value !important;
69
+ }
70
+
71
+ .bg-gray-#{$key} {
72
+ background-color: $value !important;
73
+ }
74
+ }
75
+
76
+ @each $key, $value in $mecx-weight {
77
+ .fw-#{$key} {
78
+ font-weight: $value !important;
79
+ }
80
+ }
81
+
82
+ @each $key, $value in $mecx-lh {
83
+ .lh-#{$key} {
84
+ line-height: $value !important;
85
+ }
86
+ }
87
+
88
+ @each $key, $value in $mecx-sizes {
89
+ .fs-#{$key} {
90
+ font-size: $value !important;
91
+ }
92
+ }
93
+
94
+ @each $key, $value in $mecx-theme {
95
+ .text-theme-#{$key} {
96
+ color: $value !important;
97
+ }
98
+
99
+ .bg-theme-#{$key} {
100
+ background-color: $value !important;
101
+ }
102
+ }
103
+
104
+ @each $key, $value in $mecx-success {
105
+ .text-success-#{$key} {
106
+ color: $value !important;
107
+ }
108
+
109
+ .bg-success-#{$key} {
110
+ background-color: $value !important;
111
+ }
112
+ }
113
+
114
+ @each $key, $value in $mecx-error {
115
+ .text-error-#{$key} {
116
+ color: $value !important;
117
+ }
118
+
119
+ .bg-error-#{$key} {
120
+ background-color: $value !important;
121
+ }
122
+ }
123
+
124
+ @each $key, $value in $mecx-warning {
125
+ .text-warning-#{$key} {
126
+ color: $value !important;
127
+ }
128
+
129
+ .bg-warning-#{$key} {
130
+ background-color: $value !important;
131
+ }
132
+ }
133
+
134
+ @each $key, $value in $mecx-question {
135
+ .text-question-#{$key} {
136
+ color: $value !important;
137
+ }
138
+
139
+ .bg-question-#{$key} {
140
+ background-color: $value !important;
141
+ }
142
+ }
143
+
144
+ .text-center {
145
+ text-align: center !important;
146
+ }
147
+
148
+ .text-left {
149
+ text-align: left !important;
150
+ }
151
+
152
+ .text-right {
153
+ text-align: right !important;
154
+ }
155
+
156
+ .text-justify {
157
+ text-align: justify !important;
158
+ }
159
+
160
+ .text-upper {
161
+ text-transform: uppercase !important;
162
+ }
163
+
164
+ .text-lower {
165
+ text-transform: lowercase !important;
166
+ }
167
+
168
+ .text-decoration-none {
169
+ text-decoration: none !important;
170
+ }
171
+
172
+ .text-underline {
173
+ text-decoration: underline !important;
174
+ }
175
+
176
+ .text-capitalize {
177
+ text-transform: capitalize !important;
178
+ }
179
+
180
+ .text-truncate {
181
+ overflow: hidden !important;
182
+ text-overflow: ellipsis !important;
183
+ white-space: nowrap !important;
184
+ }
185
+
186
+ .text-wrap {
187
+ white-space: normal !important;
188
+ }
189
+
190
+ .text-nowrap {
191
+ white-space: nowrap !important;
192
+ }
193
+
194
+ .text-break {
195
+ word-wrap: break-word !important;
196
+ word-break: break-word !important;
197
+ }
198
+
199
+ .opacity-0 {
200
+ opacity: 0 !important;
201
+ }
202
+
203
+ .opacity-25 {
204
+ opacity: 0.25 !important;
205
+ }
206
+
207
+ .opacity-50 {
208
+ opacity: 0.5 !important;
209
+ }
210
+
211
+ .opacity-75 {
212
+ opacity: 0.75 !important;
213
+ }
214
+
215
+ .opacity-100 {
216
+ opacity: 1 !important;
217
+ }
218
+
219
+ .overflow-auto {
220
+ overflow: auto !important;
221
+ }
222
+
223
+ .overflow-hidden {
224
+ overflow: hidden !important;
225
+ }
226
+
227
+ .overflow-visible {
228
+ overflow: visible !important;
229
+ }
230
+
231
+ .overflow-scroll {
232
+ overflow: scroll !important;
233
+ }
234
+
235
+ .overflow-x-auto {
236
+ overflow-x: auto !important;
237
+ }
238
+
239
+ .overflow-x-hidden {
240
+ overflow-x: hidden !important;
241
+ }
242
+
243
+ .overflow-x-visible {
244
+ overflow-x: visible !important;
245
+ }
246
+
247
+ .overflow-x-scroll {
248
+ overflow-x: scroll !important;
249
+ }
250
+
251
+ .overflow-y-auto {
252
+ overflow-y: auto !important;
253
+ }
254
+
255
+ .overflow-y-hidden {
256
+ overflow-y: hidden !important;
257
+ }
258
+
259
+ .overflow-y-visible {
260
+ overflow-y: visible !important;
261
+ }
262
+
263
+ .overflow-y-scroll {
264
+ overflow-y: scroll !important;
265
+ }
266
+
267
+ .position-static {
268
+ position: static !important;
269
+ }
270
+
271
+ .position-relative {
272
+ position: relative !important;
273
+ }
274
+
275
+ .position-absolute {
276
+ position: absolute !important;
277
+ }
278
+
279
+ .position-fixed {
280
+ position: fixed !important;
281
+ }
282
+
283
+ .position-sticky {
284
+ position: sticky !important;
285
+ }
286
+
287
+ .w-25 {
288
+ width: 25% !important;
289
+ }
290
+
291
+ .w-50 {
292
+ width: 50% !important;
293
+ }
294
+
295
+ .w-75 {
296
+ width: 75% !important;
297
+ }
298
+
299
+ .w-100 {
300
+ width: 100% !important;
301
+ }
302
+
303
+ .w-auto {
304
+ width: auto !important;
305
+ }
306
+
307
+ .mw-100 {
308
+ max-width: 100% !important;
309
+ }
310
+
311
+ .vw-100 {
312
+ width: 100vw !important;
313
+ }
314
+
315
+ .min-vw-100 {
316
+ min-width: 100vw !important;
317
+ }
318
+
319
+ .h-25 {
320
+ height: 25% !important;
321
+ }
322
+
323
+ .h-50 {
324
+ height: 50% !important;
325
+ }
326
+
327
+ .h-75 {
328
+ height: 75% !important;
329
+ }
330
+
331
+ .h-100 {
332
+ height: 100% !important;
333
+ }
334
+
335
+ .h-auto {
336
+ height: auto !important;
337
+ }
338
+
339
+ .mh-100 {
340
+ max-height: 100% !important;
341
+ }
342
+
343
+ .vh-100 {
344
+ height: 100vh !important;
345
+ }
346
+
347
+ .min-vh-100 {
348
+ min-height: 100vh !important;
349
+ }
350
+
351
+ .gap-0 {
352
+ gap: 0 !important;
353
+ }
354
+
355
+ .gap-1 {
356
+ gap: 0.25rem !important;
357
+ }
358
+
359
+ .gap-2 {
360
+ gap: 0.5rem !important;
361
+ }
362
+
363
+ .gap-3 {
364
+ gap: 1rem !important;
365
+ }
366
+
367
+ .gap-4 {
368
+ gap: 1.5rem !important;
369
+ }
370
+
371
+ .gap-5 {
372
+ gap: 3rem !important;
373
+ }