monkey-style-guide-v2 0.0.32 → 0.0.34
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/assets/scss/partials/_helper-classes.scss +14 -6
- package/assets/scss/partials/_skeleton-loading.scss +28 -5
- package/assets/scss/theme.scss +1 -0
- package/assets/scss/typography/_index.scss +7 -0
- package/assets/scss/typography/_styles.scss +5 -0
- package/fesm2022/monkey-style-guide-v2.mjs +655 -41
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/button/button.component.d.ts +2 -1
- package/lib/components/checkbox/checkbox.component.d.ts +1 -1
- package/lib/components/icon-button/icon-button.component.d.ts +2 -1
- package/lib/components/index.d.ts +2 -0
- package/lib/components/stepper/index.d.ts +3 -0
- package/lib/components/stepper/step/step.component.d.ts +23 -0
- package/lib/components/stepper/stepper.component.d.ts +22 -0
- package/lib/components/stepper/stepper.module.d.ts +10 -0
- package/lib/components/tabs/index.d.ts +4 -0
- package/lib/components/tabs/tab-link.directive.d.ts +22 -0
- package/lib/components/tabs/tab.component.d.ts +17 -0
- package/lib/components/tabs/tabs.component.d.ts +38 -0
- package/lib/components/tabs/tabs.module.d.ts +9 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/stepper.service.d.ts +8 -0
- package/monkey-style-guide-v2-0.0.34.tgz +0 -0
- package/package.json +1 -1
- package/utils/icon.d.ts +1 -1
- package/utils/index.d.ts +0 -1
- package/monkey-style-guide-v2-0.0.32.tgz +0 -0
- package/utils/tests-utils.d.ts +0 -1
|
@@ -8,7 +8,15 @@
|
|
|
8
8
|
/* stylelint-disable selector-class-pattern */
|
|
9
9
|
@use 'variables' as *;
|
|
10
10
|
|
|
11
|
+
body {
|
|
12
|
+
margin: 0;
|
|
13
|
+
padding: 0;
|
|
14
|
+
background-color: var(--mecx-color-white);
|
|
15
|
+
}
|
|
16
|
+
|
|
11
17
|
:root {
|
|
18
|
+
background-color: var(--mecx-color-white);
|
|
19
|
+
|
|
12
20
|
@each $key, $value in $mecx-gray {
|
|
13
21
|
--mecx-color-gray-#{$key}: #{$value};
|
|
14
22
|
}
|
|
@@ -18,15 +26,15 @@
|
|
|
18
26
|
}
|
|
19
27
|
|
|
20
28
|
@each $key, $value in $mecx-weight {
|
|
21
|
-
--mecx-
|
|
29
|
+
--mecx-fw-#{$key}: #{$value};
|
|
22
30
|
}
|
|
23
31
|
|
|
24
32
|
@each $key, $value in $mecx-lh {
|
|
25
|
-
--mecx-
|
|
33
|
+
--mecx-lh-#{$key}: #{$value};
|
|
26
34
|
}
|
|
27
35
|
|
|
28
36
|
@each $key, $value in $mecx-sizes {
|
|
29
|
-
--mecx-
|
|
37
|
+
--mecx-fs-#{$key}: #{$value};
|
|
30
38
|
}
|
|
31
39
|
|
|
32
40
|
--mecx-color-box-shadow: #00000029;
|
|
@@ -46,19 +54,19 @@
|
|
|
46
54
|
}
|
|
47
55
|
|
|
48
56
|
@each $key, $value in $mecx-weight {
|
|
49
|
-
.
|
|
57
|
+
.fw-#{$key} {
|
|
50
58
|
font-weight: $value !important;
|
|
51
59
|
}
|
|
52
60
|
}
|
|
53
61
|
|
|
54
62
|
@each $key, $value in $mecx-lh {
|
|
55
|
-
.
|
|
63
|
+
.lh-#{$key} {
|
|
56
64
|
line-height: $value !important;
|
|
57
65
|
}
|
|
58
66
|
}
|
|
59
67
|
|
|
60
68
|
@each $key, $value in $mecx-sizes {
|
|
61
|
-
.
|
|
69
|
+
.fs-#{$key} {
|
|
62
70
|
font-size: $value !important;
|
|
63
71
|
}
|
|
64
72
|
}
|
|
@@ -21,34 +21,57 @@
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
.text-loading-xxs {
|
|
25
|
+
@extend %skeleton;
|
|
26
|
+
|
|
27
|
+
border-radius: 2px;
|
|
28
|
+
margin: 2px 0;
|
|
29
|
+
height: 8px;
|
|
30
|
+
}
|
|
31
|
+
|
|
24
32
|
.text-loading-xs {
|
|
25
33
|
@extend %skeleton;
|
|
26
34
|
|
|
27
|
-
|
|
35
|
+
border-radius: 2px;
|
|
36
|
+
margin: 2px 0;
|
|
37
|
+
height: 9px;
|
|
28
38
|
}
|
|
29
39
|
|
|
30
40
|
.text-loading-sm {
|
|
31
41
|
@extend %skeleton;
|
|
32
42
|
|
|
33
|
-
|
|
43
|
+
border-radius: 2px;
|
|
44
|
+
margin: 2px 0;
|
|
45
|
+
height: 10px;
|
|
34
46
|
}
|
|
35
47
|
|
|
36
48
|
.text-loading-md {
|
|
37
49
|
@extend %skeleton;
|
|
38
50
|
|
|
39
|
-
|
|
51
|
+
border-radius: 2px;
|
|
52
|
+
margin: 2px 0;
|
|
53
|
+
height: 12px;
|
|
40
54
|
}
|
|
41
55
|
|
|
42
56
|
.text-loading-lg {
|
|
43
57
|
@extend %skeleton;
|
|
44
58
|
|
|
45
|
-
|
|
59
|
+
margin: 2px 0;
|
|
60
|
+
height: 20px;
|
|
46
61
|
}
|
|
47
62
|
|
|
48
63
|
.text-loading-xl {
|
|
49
64
|
@extend %skeleton;
|
|
50
65
|
|
|
51
|
-
|
|
66
|
+
margin: 2px 0;
|
|
67
|
+
height: 28px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.text-loading-xxl {
|
|
71
|
+
@extend %skeleton;
|
|
72
|
+
|
|
73
|
+
margin: 2px 0;
|
|
74
|
+
height: 44px;
|
|
52
75
|
}
|
|
53
76
|
|
|
54
77
|
.loading-sm {
|
package/assets/scss/theme.scss
CHANGED