mis-crystal-design-system 18.1.6-test-1 → 18.1.6-test-2
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.
- package/button/button.directive.scss +71 -0
- package/drawer/drawer.scss +20 -0
- package/esm2022/dynamic-form/dynamic-form.component.mjs +34 -5
- package/fesm2022/mis-crystal-design-system-dynamic-form.mjs +33 -4
- package/fesm2022/mis-crystal-design-system-dynamic-form.mjs.map +1 -1
- package/input/mis-input.component.scss +187 -0
- package/modal/modal.scss +9 -0
- package/package.json +7 -7
- package/styles/fonts/icomoon.eot +0 -0
- package/styles/fonts/icomoon.svg +315 -0
- package/styles/fonts/icomoon.ttf +0 -0
- package/styles/fonts/icomoon.woff +0 -0
- package/styles/mis-borders-backgrounds.scss +764 -0
- package/styles/mis-color-constants.scss +353 -0
- package/styles/mis-flex.scss +321 -0
- package/styles/mis-fonts.scss +124 -0
- package/styles/mis-icons.scss +1054 -0
- package/styles/mis-mixins.scss +46 -0
- package/styles/mis-old-icon-styles.scss +0 -0
- package/styles/mis-spacing-sizing.scss +2590 -0
- package/styles/mis-typography.scss +462 -0
|
@@ -0,0 +1,462 @@
|
|
|
1
|
+
//Typography------------------------------------------------------------------------------------------
|
|
2
|
+
//Font-Family----------------------------------------------------
|
|
3
|
+
.font-lato {
|
|
4
|
+
font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.font-sans {
|
|
8
|
+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
|
|
9
|
+
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.font-serif {
|
|
13
|
+
font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.font-mono {
|
|
17
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//Font-Size------------------------------------------------------
|
|
21
|
+
.text-xs {
|
|
22
|
+
font-size: 0.75rem; /* 12px */
|
|
23
|
+
line-height: 1rem; /* 16px */
|
|
24
|
+
}
|
|
25
|
+
.text-sm {
|
|
26
|
+
font-size: 0.875rem; /* 14px */
|
|
27
|
+
line-height: 1.25rem; /* 20px */
|
|
28
|
+
}
|
|
29
|
+
.text-base {
|
|
30
|
+
font-size: 1rem; /* 16px */
|
|
31
|
+
line-height: 1.5rem; /* 24px */
|
|
32
|
+
}
|
|
33
|
+
.text-lg {
|
|
34
|
+
font-size: 1.125rem; /* 18px */
|
|
35
|
+
line-height: 1.75rem; /* 28px */
|
|
36
|
+
}
|
|
37
|
+
.text-xl {
|
|
38
|
+
font-size: 1.25rem; /* 20px */
|
|
39
|
+
line-height: 1.75rem; /* 28px */
|
|
40
|
+
}
|
|
41
|
+
.text-2xl {
|
|
42
|
+
font-size: 1.5rem; /* 24px */
|
|
43
|
+
line-height: 2rem; /* 32px */
|
|
44
|
+
}
|
|
45
|
+
.text-3xl {
|
|
46
|
+
font-size: 1.875rem; /* 30px */
|
|
47
|
+
line-height: 2.25rem; /* 36px */
|
|
48
|
+
}
|
|
49
|
+
.text-4xl {
|
|
50
|
+
font-size: 2.25rem; /* 36px */
|
|
51
|
+
line-height: 2.5rem; /* 40px */
|
|
52
|
+
}
|
|
53
|
+
.text-5xl {
|
|
54
|
+
font-size: 3rem; /* 48px */
|
|
55
|
+
line-height: 1;
|
|
56
|
+
}
|
|
57
|
+
.text-6xl {
|
|
58
|
+
font-size: 3.75rem; /* 60px */
|
|
59
|
+
line-height: 1;
|
|
60
|
+
}
|
|
61
|
+
.text-7xl {
|
|
62
|
+
font-size: 4.5rem; /* 72px */
|
|
63
|
+
line-height: 1;
|
|
64
|
+
}
|
|
65
|
+
.text-8xl {
|
|
66
|
+
font-size: 6rem; /* 96px */
|
|
67
|
+
line-height: 1;
|
|
68
|
+
}
|
|
69
|
+
.text-9xl {
|
|
70
|
+
font-size: 8rem; /* 128px */
|
|
71
|
+
line-height: 1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
//Font-Style------------------------------------------------------
|
|
75
|
+
.italic {
|
|
76
|
+
font-style: italic;
|
|
77
|
+
}
|
|
78
|
+
.not-italic {
|
|
79
|
+
font-style: normal;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
//Font-weight------------------------------------------------------
|
|
83
|
+
.font-thin {
|
|
84
|
+
font-weight: 100;
|
|
85
|
+
}
|
|
86
|
+
.font-extralight {
|
|
87
|
+
font-weight: 200;
|
|
88
|
+
}
|
|
89
|
+
.font-light {
|
|
90
|
+
font-weight: 300;
|
|
91
|
+
}
|
|
92
|
+
.font-normal {
|
|
93
|
+
font-weight: 400;
|
|
94
|
+
}
|
|
95
|
+
.font-medium {
|
|
96
|
+
font-weight: 500;
|
|
97
|
+
}
|
|
98
|
+
.font-semibold {
|
|
99
|
+
font-weight: 600;
|
|
100
|
+
}
|
|
101
|
+
.font-bold {
|
|
102
|
+
font-weight: 700;
|
|
103
|
+
}
|
|
104
|
+
.font-extrabold {
|
|
105
|
+
font-weight: 800;
|
|
106
|
+
}
|
|
107
|
+
.font-black {
|
|
108
|
+
font-weight: 900;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
//Letter-spacing-------------------------------------------------------
|
|
112
|
+
.tracking-tighter {
|
|
113
|
+
letter-spacing: -0.05em;
|
|
114
|
+
}
|
|
115
|
+
.tracking-tight {
|
|
116
|
+
letter-spacing: -0.025em;
|
|
117
|
+
}
|
|
118
|
+
.tracking-normal {
|
|
119
|
+
letter-spacing: 0em;
|
|
120
|
+
}
|
|
121
|
+
.tracking-wide {
|
|
122
|
+
letter-spacing: 0.025em;
|
|
123
|
+
}
|
|
124
|
+
.tracking-wider {
|
|
125
|
+
letter-spacing: 0.05em;
|
|
126
|
+
}
|
|
127
|
+
.tracking-widest {
|
|
128
|
+
letter-spacing: 0.1em;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
//Line-height-----------------------------------------------------------
|
|
132
|
+
.leading-3 {
|
|
133
|
+
line-height: 0.75rem; /* 12px */
|
|
134
|
+
}
|
|
135
|
+
.leading-4 {
|
|
136
|
+
line-height: 1rem; /* 16px */
|
|
137
|
+
}
|
|
138
|
+
.leading-5 {
|
|
139
|
+
line-height: 1.25rem; /* 20px */
|
|
140
|
+
}
|
|
141
|
+
.leading-6 {
|
|
142
|
+
line-height: 1.5rem; /* 24px */
|
|
143
|
+
}
|
|
144
|
+
.leading-7 {
|
|
145
|
+
line-height: 1.75rem; /* 28px */
|
|
146
|
+
}
|
|
147
|
+
.leading-8 {
|
|
148
|
+
line-height: 2rem; /* 32px */
|
|
149
|
+
}
|
|
150
|
+
.leading-9 {
|
|
151
|
+
line-height: 2.25rem; /* 36px */
|
|
152
|
+
}
|
|
153
|
+
.leading-10 {
|
|
154
|
+
line-height: 2.5rem; /* 40px */
|
|
155
|
+
}
|
|
156
|
+
.leading-none {
|
|
157
|
+
line-height: 1;
|
|
158
|
+
}
|
|
159
|
+
.leading-tight {
|
|
160
|
+
line-height: 1.25;
|
|
161
|
+
}
|
|
162
|
+
.leading-snug {
|
|
163
|
+
line-height: 1.375;
|
|
164
|
+
}
|
|
165
|
+
.leading-normal {
|
|
166
|
+
line-height: 1.5;
|
|
167
|
+
}
|
|
168
|
+
.leading-relaxed {
|
|
169
|
+
line-height: 1.625;
|
|
170
|
+
}
|
|
171
|
+
.leading-loose {
|
|
172
|
+
line-height: 2;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
//Text-align------------------------------------------------------------
|
|
176
|
+
.text-left {
|
|
177
|
+
text-align: left;
|
|
178
|
+
}
|
|
179
|
+
.text-center {
|
|
180
|
+
text-align: center;
|
|
181
|
+
}
|
|
182
|
+
.text-right {
|
|
183
|
+
text-align: right;
|
|
184
|
+
}
|
|
185
|
+
.text-justify {
|
|
186
|
+
text-align: justify;
|
|
187
|
+
}
|
|
188
|
+
.text-start {
|
|
189
|
+
text-align: start;
|
|
190
|
+
}
|
|
191
|
+
.text-end {
|
|
192
|
+
text-align: end;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
//Text-decoration---------------------------------------------------------
|
|
196
|
+
.underline {
|
|
197
|
+
text-decoration-line: underline;
|
|
198
|
+
}
|
|
199
|
+
.overline {
|
|
200
|
+
text-decoration-line: overline;
|
|
201
|
+
}
|
|
202
|
+
.line-through {
|
|
203
|
+
text-decoration-line: line-through;
|
|
204
|
+
}
|
|
205
|
+
.no-underline {
|
|
206
|
+
text-decoration-line: none;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
//Text-decoration-style-----------------------------------------------------
|
|
210
|
+
.decoration-solid {
|
|
211
|
+
text-decoration-style: solid;
|
|
212
|
+
}
|
|
213
|
+
.decoration-double {
|
|
214
|
+
text-decoration-style: double;
|
|
215
|
+
}
|
|
216
|
+
.decoration-dotted {
|
|
217
|
+
text-decoration-style: dotted;
|
|
218
|
+
}
|
|
219
|
+
.decoration-dashed {
|
|
220
|
+
text-decoration-style: dashed;
|
|
221
|
+
}
|
|
222
|
+
.font-bold {
|
|
223
|
+
text-decoration-style: wavy;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
//Text-decoration-thickness--------------------------------------------------
|
|
227
|
+
.decoration-auto {
|
|
228
|
+
text-decoration-thickness: auto;
|
|
229
|
+
}
|
|
230
|
+
.decoration-from-font {
|
|
231
|
+
text-decoration-thickness: from-font;
|
|
232
|
+
}
|
|
233
|
+
.decoration-0 {
|
|
234
|
+
text-decoration-thickness: 0px;
|
|
235
|
+
}
|
|
236
|
+
.decoration-1 {
|
|
237
|
+
text-decoration-thickness: 1px;
|
|
238
|
+
}
|
|
239
|
+
.decoration-2 {
|
|
240
|
+
text-decoration-thickness: 2px;
|
|
241
|
+
}
|
|
242
|
+
.decoration-4 {
|
|
243
|
+
text-decoration-thickness: 4px;
|
|
244
|
+
}
|
|
245
|
+
.decoration-8 {
|
|
246
|
+
text-decoration-thickness: 8px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
//Text-underline-offset----------------------------------------------------------
|
|
250
|
+
.underline-offset-auto {
|
|
251
|
+
text-underline-offset: auto;
|
|
252
|
+
}
|
|
253
|
+
.underline-offset-0 {
|
|
254
|
+
text-underline-offset: 0px;
|
|
255
|
+
}
|
|
256
|
+
.underline-offset-1 {
|
|
257
|
+
text-underline-offset: 1px;
|
|
258
|
+
}
|
|
259
|
+
.underline-offset-2 {
|
|
260
|
+
text-underline-offset: 2px;
|
|
261
|
+
}
|
|
262
|
+
.underline-offset-4 {
|
|
263
|
+
text-underline-offset: 4px;
|
|
264
|
+
}
|
|
265
|
+
.underline-offset-8 {
|
|
266
|
+
text-underline-offset: 8px;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
//Text-transform-------------------------------------------------------------------
|
|
270
|
+
.uppercase {
|
|
271
|
+
text-transform: uppercase;
|
|
272
|
+
}
|
|
273
|
+
.lowercase {
|
|
274
|
+
text-transform: lowercase;
|
|
275
|
+
}
|
|
276
|
+
.capitalize {
|
|
277
|
+
text-transform: capitalize;
|
|
278
|
+
}
|
|
279
|
+
.normal-case {
|
|
280
|
+
text-transform: none;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
//Text-Overflow----------------------------------------------------------------------
|
|
284
|
+
.truncate {
|
|
285
|
+
overflow: hidden;
|
|
286
|
+
text-overflow: ellipsis;
|
|
287
|
+
white-space: nowrap;
|
|
288
|
+
}
|
|
289
|
+
.text-ellipsis {
|
|
290
|
+
text-overflow: ellipsis;
|
|
291
|
+
}
|
|
292
|
+
.text-clip {
|
|
293
|
+
text-overflow: clip;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
//Text-indent------------------------------------------------------------------------
|
|
297
|
+
.indent-0 {
|
|
298
|
+
text-indent: 0px;
|
|
299
|
+
}
|
|
300
|
+
.indent-px {
|
|
301
|
+
text-indent: 1px;
|
|
302
|
+
}
|
|
303
|
+
.indent-2px {
|
|
304
|
+
text-indent: 0.125rem; /* 2px */
|
|
305
|
+
}
|
|
306
|
+
.indent-1 {
|
|
307
|
+
text-indent: 0.25rem; /* 4px */
|
|
308
|
+
}
|
|
309
|
+
.indent-6px {
|
|
310
|
+
text-indent: 0.375rem; /* 6px */
|
|
311
|
+
}
|
|
312
|
+
.indent-2 {
|
|
313
|
+
text-indent: 0.5rem; /* 8px */
|
|
314
|
+
}
|
|
315
|
+
.indent-10px {
|
|
316
|
+
text-indent: 0.625rem; /* 10px */
|
|
317
|
+
}
|
|
318
|
+
.indent-3 {
|
|
319
|
+
text-indent: 0.75rem; /* 12px */
|
|
320
|
+
}
|
|
321
|
+
.indent-14px {
|
|
322
|
+
text-indent: 0.875rem; /* 14px */
|
|
323
|
+
}
|
|
324
|
+
.indent-4 {
|
|
325
|
+
text-indent: 1rem; /* 16px */
|
|
326
|
+
}
|
|
327
|
+
.indent-5 {
|
|
328
|
+
text-indent: 1.25rem; /* 20px */
|
|
329
|
+
}
|
|
330
|
+
.indent-6 {
|
|
331
|
+
text-indent: 1.5rem; /* 24px */
|
|
332
|
+
}
|
|
333
|
+
.indent-7 {
|
|
334
|
+
text-indent: 1.75rem; /* 28px */
|
|
335
|
+
}
|
|
336
|
+
.indent-8 {
|
|
337
|
+
text-indent: 2rem; /* 32px */
|
|
338
|
+
}
|
|
339
|
+
.indent-9 {
|
|
340
|
+
text-indent: 2.25rem; /* 36px */
|
|
341
|
+
}
|
|
342
|
+
.indent-10 {
|
|
343
|
+
text-indent: 2.5rem; /* 40px */
|
|
344
|
+
}
|
|
345
|
+
.indent-11 {
|
|
346
|
+
text-indent: 2.75rem; /* 44px */
|
|
347
|
+
}
|
|
348
|
+
.indent-12 {
|
|
349
|
+
text-indent: 3rem; /* 48px */
|
|
350
|
+
}
|
|
351
|
+
.indent-14 {
|
|
352
|
+
text-indent: 3.5rem; /* 56px */
|
|
353
|
+
}
|
|
354
|
+
.indent-16 {
|
|
355
|
+
text-indent: 4rem; /* 64px */
|
|
356
|
+
}
|
|
357
|
+
.indent-20 {
|
|
358
|
+
text-indent: 5rem; /* 80px */
|
|
359
|
+
}
|
|
360
|
+
.indent-24 {
|
|
361
|
+
text-indent: 6rem; /* 96px */
|
|
362
|
+
}
|
|
363
|
+
.indent-28 {
|
|
364
|
+
text-indent: 7rem; /* 112px */
|
|
365
|
+
}
|
|
366
|
+
.indent-32 {
|
|
367
|
+
text-indent: 8rem; /* 128px */
|
|
368
|
+
}
|
|
369
|
+
.indent-36 {
|
|
370
|
+
text-indent: 9rem; /* 144px */
|
|
371
|
+
}
|
|
372
|
+
.indent-40 {
|
|
373
|
+
text-indent: 10rem; /* 160px */
|
|
374
|
+
}
|
|
375
|
+
.indent-44 {
|
|
376
|
+
text-indent: 11rem; /* 176px */
|
|
377
|
+
}
|
|
378
|
+
.indent-48 {
|
|
379
|
+
text-indent: 12rem; /* 192px */
|
|
380
|
+
}
|
|
381
|
+
.indent-52 {
|
|
382
|
+
text-indent: 13rem; /* 208px */
|
|
383
|
+
}
|
|
384
|
+
.indent-56 {
|
|
385
|
+
text-indent: 14rem; /* 224px */
|
|
386
|
+
}
|
|
387
|
+
.indent-60 {
|
|
388
|
+
text-indent: 15rem; /* 240px */
|
|
389
|
+
}
|
|
390
|
+
.indent-64 {
|
|
391
|
+
text-indent: 16rem; /* 256px */
|
|
392
|
+
}
|
|
393
|
+
.indent-72 {
|
|
394
|
+
text-indent: 18rem; /* 288px */
|
|
395
|
+
}
|
|
396
|
+
.indent-80 {
|
|
397
|
+
text-indent: 20rem; /* 320px */
|
|
398
|
+
}
|
|
399
|
+
.indent-96 {
|
|
400
|
+
text-indent: 24rem; /* 384px */
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
//Vertical-align-------------------------------------------------------------------
|
|
404
|
+
.align-baseline {
|
|
405
|
+
vertical-align: baseline;
|
|
406
|
+
}
|
|
407
|
+
.align-top {
|
|
408
|
+
vertical-align: top;
|
|
409
|
+
}
|
|
410
|
+
.align-middle {
|
|
411
|
+
vertical-align: middle;
|
|
412
|
+
}
|
|
413
|
+
.align-bottom {
|
|
414
|
+
vertical-align: bottom;
|
|
415
|
+
}
|
|
416
|
+
.align-text-top {
|
|
417
|
+
vertical-align: text-top;
|
|
418
|
+
}
|
|
419
|
+
.align-text-bottom {
|
|
420
|
+
vertical-align: text-bottom;
|
|
421
|
+
}
|
|
422
|
+
.align-sub {
|
|
423
|
+
vertical-align: sub;
|
|
424
|
+
}
|
|
425
|
+
.align-super {
|
|
426
|
+
vertical-align: super;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
//WhiteSpace-------------------------------------------------------------------
|
|
430
|
+
.whitespace-normal {
|
|
431
|
+
white-space: normal;
|
|
432
|
+
}
|
|
433
|
+
.whitespace-nowrap {
|
|
434
|
+
white-space: nowrap;
|
|
435
|
+
}
|
|
436
|
+
.whitespace-pre {
|
|
437
|
+
white-space: pre;
|
|
438
|
+
}
|
|
439
|
+
.whitespace-pre-line {
|
|
440
|
+
white-space: pre-line;
|
|
441
|
+
}
|
|
442
|
+
.whitespace-pre-wrap {
|
|
443
|
+
white-space: pre-wrap;
|
|
444
|
+
}
|
|
445
|
+
.whitespace-break-spaces {
|
|
446
|
+
white-space: break-spaces;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
//Word Break-------------------------------------------------------------------
|
|
450
|
+
.break-normal {
|
|
451
|
+
overflow-wrap: normal;
|
|
452
|
+
word-break: normal;
|
|
453
|
+
}
|
|
454
|
+
.break-words {
|
|
455
|
+
overflow-wrap: break-word;
|
|
456
|
+
}
|
|
457
|
+
.break-all {
|
|
458
|
+
word-break: break-all;
|
|
459
|
+
}
|
|
460
|
+
.break-keep {
|
|
461
|
+
word-break: keep-all;
|
|
462
|
+
}
|