monkey-style-guide 21.2.4 → 21.2.6

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 -43
  25. package/fesm2022/monkey-style-guide.mjs +3260 -2804
  26. package/fesm2022/monkey-style-guide.mjs.map +1 -1
  27. package/monkey-style-guide-21.2.6.tgz +0 -0
  28. package/package.json +1 -1
  29. package/types/monkey-style-guide.d.ts +189 -242
  30. package/monkey-style-guide-21.2.4.tgz +0 -0
@@ -1,191 +1,191 @@
1
- /* stylelint-disable color-no-hex */
2
-
3
- /*
4
- html5doctor.com Reset Stylesheet
5
- v1.6.1
6
- Last Updated: 2010-09-17
7
- Author: Richard Clark - http://richclarkdesign.com
8
- Twitter: @rich_clark
9
- */
10
-
11
- html,
12
- body,
13
- div,
14
- span,
15
- object,
16
- iframe,
17
- h1,
18
- h2,
19
- h3,
20
- h4,
21
- h5,
22
- h6,
23
- p,
24
- blockquote,
25
- pre,
26
- abbr,
27
- address,
28
- cite,
29
- code,
30
- del,
31
- dfn,
32
- em,
33
- img,
34
- ins,
35
- kbd,
36
- q,
37
- samp,
38
- small,
39
- strong,
40
- sub,
41
- sup,
42
- var,
43
- b,
44
- i,
45
- dl,
46
- dt,
47
- dd,
48
- ol,
49
- ul,
50
- li,
51
- fieldset,
52
- form,
53
- label,
54
- legend,
55
- table,
56
- caption,
57
- tbody,
58
- tfoot,
59
- thead,
60
- tr,
61
- th,
62
- td,
63
- article,
64
- aside,
65
- canvas,
66
- details,
67
- figcaption,
68
- figure,
69
- footer,
70
- header,
71
- hgroup,
72
- menu,
73
- nav,
74
- section,
75
- summary,
76
- time,
77
- mark,
78
- audio,
79
- video {
80
- margin: 0;
81
- padding: 0;
82
- border: 0;
83
- outline: 0;
84
- font-size: 100%;
85
- vertical-align: baseline;
86
- background: transparent;
87
- }
88
-
89
- body {
90
- line-height: 1;
91
- }
92
-
93
- article,
94
- aside,
95
- details,
96
- figcaption,
97
- figure,
98
- footer,
99
- header,
100
- hgroup,
101
- menu,
102
- nav,
103
- section {
104
- display: block;
105
- }
106
-
107
- nav ul {
108
- list-style: none;
109
- }
110
-
111
- blockquote,
112
- q {
113
- quotes: none;
114
- }
115
-
116
- blockquote::before,
117
- blockquote::after,
118
- q::before,
119
- q::after {
120
- content: '';
121
- content: none;
122
- }
123
-
124
- a {
125
- margin: 0;
126
- padding: 0;
127
- font-size: 100%;
128
- vertical-align: baseline;
129
- background: transparent;
130
- }
131
-
132
- /* change colours to suit your needs */
133
- ins {
134
- background-color: #ff9;
135
- color: #000;
136
- text-decoration: none;
137
- }
138
-
139
- /* change colours to suit your needs */
140
- mark {
141
- background-color: #ff9;
142
- color: #000;
143
- font-style: italic;
144
- font-weight: bold;
145
- }
146
-
147
- del {
148
- text-decoration: line-through;
149
- }
150
-
151
- abbr[title],
152
- dfn[title] {
153
- border-bottom: 1px dotted;
154
- cursor: help;
155
- }
156
-
157
- table {
158
- border-collapse: collapse;
159
- border-spacing: 0;
160
- }
161
-
162
- /* change border colour to suit your needs */
163
- hr {
164
- display: block;
165
- height: 1px;
166
- border: 0;
167
- border-top: 1px solid #ccc;
168
- margin: 1em 0;
169
- padding: 0;
170
- }
171
-
172
- input,
173
- select {
174
- vertical-align: middle;
175
- }
176
-
177
- input:focus,
178
- textarea:focus,
179
- select:focus {
180
- outline: none;
181
- }
182
-
183
- button {
184
- border: none;
185
- }
186
-
187
- button:focus,
188
- button:active,
189
- button:hover {
190
- outline: none;
191
- }
1
+ /* stylelint-disable color-no-hex */
2
+
3
+ /*
4
+ html5doctor.com Reset Stylesheet
5
+ v1.6.1
6
+ Last Updated: 2010-09-17
7
+ Author: Richard Clark - http://richclarkdesign.com
8
+ Twitter: @rich_clark
9
+ */
10
+
11
+ html,
12
+ body,
13
+ div,
14
+ span,
15
+ object,
16
+ iframe,
17
+ h1,
18
+ h2,
19
+ h3,
20
+ h4,
21
+ h5,
22
+ h6,
23
+ p,
24
+ blockquote,
25
+ pre,
26
+ abbr,
27
+ address,
28
+ cite,
29
+ code,
30
+ del,
31
+ dfn,
32
+ em,
33
+ img,
34
+ ins,
35
+ kbd,
36
+ q,
37
+ samp,
38
+ small,
39
+ strong,
40
+ sub,
41
+ sup,
42
+ var,
43
+ b,
44
+ i,
45
+ dl,
46
+ dt,
47
+ dd,
48
+ ol,
49
+ ul,
50
+ li,
51
+ fieldset,
52
+ form,
53
+ label,
54
+ legend,
55
+ table,
56
+ caption,
57
+ tbody,
58
+ tfoot,
59
+ thead,
60
+ tr,
61
+ th,
62
+ td,
63
+ article,
64
+ aside,
65
+ canvas,
66
+ details,
67
+ figcaption,
68
+ figure,
69
+ footer,
70
+ header,
71
+ hgroup,
72
+ menu,
73
+ nav,
74
+ section,
75
+ summary,
76
+ time,
77
+ mark,
78
+ audio,
79
+ video {
80
+ margin: 0;
81
+ padding: 0;
82
+ border: 0;
83
+ outline: 0;
84
+ font-size: 100%;
85
+ vertical-align: baseline;
86
+ background: transparent;
87
+ }
88
+
89
+ body {
90
+ line-height: 1;
91
+ }
92
+
93
+ article,
94
+ aside,
95
+ details,
96
+ figcaption,
97
+ figure,
98
+ footer,
99
+ header,
100
+ hgroup,
101
+ menu,
102
+ nav,
103
+ section {
104
+ display: block;
105
+ }
106
+
107
+ nav ul {
108
+ list-style: none;
109
+ }
110
+
111
+ blockquote,
112
+ q {
113
+ quotes: none;
114
+ }
115
+
116
+ blockquote::before,
117
+ blockquote::after,
118
+ q::before,
119
+ q::after {
120
+ content: '';
121
+ content: none;
122
+ }
123
+
124
+ a {
125
+ margin: 0;
126
+ padding: 0;
127
+ font-size: 100%;
128
+ vertical-align: baseline;
129
+ background: transparent;
130
+ }
131
+
132
+ /* change colours to suit your needs */
133
+ ins {
134
+ background-color: #ff9;
135
+ color: #000;
136
+ text-decoration: none;
137
+ }
138
+
139
+ /* change colours to suit your needs */
140
+ mark {
141
+ background-color: #ff9;
142
+ color: #000;
143
+ font-style: italic;
144
+ font-weight: bold;
145
+ }
146
+
147
+ del {
148
+ text-decoration: line-through;
149
+ }
150
+
151
+ abbr[title],
152
+ dfn[title] {
153
+ border-bottom: 1px dotted;
154
+ cursor: help;
155
+ }
156
+
157
+ table {
158
+ border-collapse: collapse;
159
+ border-spacing: 0;
160
+ }
161
+
162
+ /* change border colour to suit your needs */
163
+ hr {
164
+ display: block;
165
+ height: 1px;
166
+ border: 0;
167
+ border-top: 1px solid #ccc;
168
+ margin: 1em 0;
169
+ padding: 0;
170
+ }
171
+
172
+ input,
173
+ select {
174
+ vertical-align: middle;
175
+ }
176
+
177
+ input:focus,
178
+ textarea:focus,
179
+ select:focus {
180
+ outline: none;
181
+ }
182
+
183
+ button {
184
+ border: none;
185
+ }
186
+
187
+ button:focus,
188
+ button:active,
189
+ button:hover {
190
+ outline: none;
191
+ }
@@ -1,95 +1,95 @@
1
- /* stylelint-disable color-no-hex */
2
-
3
- /**************************
4
- * Copyright Monkey Exchange. All Rights Reserved
5
- * This style guide was developed by Monkey Exchange Team
6
- * MIT Licence
7
- **************************/
8
- $mecx-theme: (
9
- main: var(--mecx-color-theme-main),
10
- 50: #fff,
11
- 100: var(--mecx-color-theme-100),
12
- 200: var(--mecx-color-theme-200),
13
- 300: var(--mecx-color-theme-300),
14
- 400: var(--mecx-color-theme-400),
15
- 500: var(--mecx-color-theme-500),
16
- 600: var(--mecx-color-theme-600),
17
- 700: var(--mecx-color-theme-700),
18
- 800: var(--mecx-color-theme-800),
19
- 900: var(--mecx-color-theme-900)
20
- );
21
- $mecx-error: (
22
- main: #fa3838,
23
- 100: #ffecec,
24
- 500: #fa3838,
25
- 700: #db0505
26
- );
27
- $mecx-warning: (
28
- main: #efa30e,
29
- 100: #fff8eb,
30
- 500: #efa30e,
31
- 700: #cb8601
32
- );
33
- $mecx-success: (
34
- main: #00875a,
35
- 100: #ebfff8,
36
- 500: #00875a,
37
- 700: #005236
38
- );
39
- $mecx-question: (
40
- main: #8d38fa,
41
- 100: #f4ebff,
42
- 500: #8d38fa,
43
- 800: #2d0264
44
- );
45
- $mecx-support: (
46
- 'blue': #003687,
47
- 'pink': #870069,
48
- 'brown': #873100,
49
- 'green': #7c8700
50
- );
51
- $mecx-gray: (
52
- 50: #f8fafb,
53
- 100: #f1f2f3,
54
- 200: #e9eaec,
55
- 300: #d3d6da,
56
- 400: #bdc1c7,
57
- 500: #868d98,
58
- 600: #676e79,
59
- 700: #545a63,
60
- 800: #2f3237,
61
- 900: #1f2024
62
- );
63
- $mecx-align: ('left', 'center', 'right', 'justify');
64
- $mecx-sizes: (
65
- base: 14px,
66
- 12: 12px,
67
- 13: 13px,
68
- xxs: 14px,
69
- xs: 16px,
70
- sm: 18px,
71
- md: 20px,
72
- lg: 24px,
73
- xl: 32px,
74
- xxl: 40px
75
- );
76
- $mecx-lh: (
77
- base: 1.6,
78
- 16: 16px,
79
- 24: 24px,
80
- 32: 32px,
81
- 40: 40px,
82
- 48: 48px
83
- );
84
- $mecx-weight: (
85
- regular: 400,
86
- medium: 500,
87
- semibold: 600,
88
- bold: 700
89
- );
90
- $mecx-spaces: (
91
- xs: 8px,
92
- small: 12px,
93
- medium: 24px,
94
- cozy: 16px
95
- );
1
+ /* stylelint-disable color-no-hex */
2
+
3
+ /**************************
4
+ * Copyright Monkey Exchange. All Rights Reserved
5
+ * This style guide was developed by Monkey Exchange Team
6
+ * MIT Licence
7
+ **************************/
8
+ $mecx-theme: (
9
+ main: var(--mecx-color-theme-main),
10
+ 50: #fff,
11
+ 100: var(--mecx-color-theme-100),
12
+ 200: var(--mecx-color-theme-200),
13
+ 300: var(--mecx-color-theme-300),
14
+ 400: var(--mecx-color-theme-400),
15
+ 500: var(--mecx-color-theme-500),
16
+ 600: var(--mecx-color-theme-600),
17
+ 700: var(--mecx-color-theme-700),
18
+ 800: var(--mecx-color-theme-800),
19
+ 900: var(--mecx-color-theme-900)
20
+ );
21
+ $mecx-error: (
22
+ main: #fa3838,
23
+ 100: #ffecec,
24
+ 500: #fa3838,
25
+ 700: #db0505
26
+ );
27
+ $mecx-warning: (
28
+ main: #efa30e,
29
+ 100: #fff8eb,
30
+ 500: #efa30e,
31
+ 700: #cb8601
32
+ );
33
+ $mecx-success: (
34
+ main: #00875a,
35
+ 100: #ebfff8,
36
+ 500: #00875a,
37
+ 700: #005236
38
+ );
39
+ $mecx-question: (
40
+ main: #8d38fa,
41
+ 100: #f4ebff,
42
+ 500: #8d38fa,
43
+ 800: #2d0264
44
+ );
45
+ $mecx-support: (
46
+ 'blue': #003687,
47
+ 'pink': #870069,
48
+ 'brown': #873100,
49
+ 'green': #7c8700
50
+ );
51
+ $mecx-gray: (
52
+ 50: #f8fafb,
53
+ 100: #f1f2f3,
54
+ 200: #e9eaec,
55
+ 300: #d3d6da,
56
+ 400: #bdc1c7,
57
+ 500: #868d98,
58
+ 600: #676e79,
59
+ 700: #545a63,
60
+ 800: #2f3237,
61
+ 900: #1f2024
62
+ );
63
+ $mecx-align: ('left', 'center', 'right', 'justify');
64
+ $mecx-sizes: (
65
+ base: 14px,
66
+ 12: 12px,
67
+ 13: 13px,
68
+ xxs: 14px,
69
+ xs: 16px,
70
+ sm: 18px,
71
+ md: 20px,
72
+ lg: 24px,
73
+ xl: 32px,
74
+ xxl: 40px
75
+ );
76
+ $mecx-lh: (
77
+ base: 1.6,
78
+ 16: 16px,
79
+ 24: 24px,
80
+ 32: 32px,
81
+ 40: 40px,
82
+ 48: 48px
83
+ );
84
+ $mecx-weight: (
85
+ regular: 400,
86
+ medium: 500,
87
+ semibold: 600,
88
+ bold: 700
89
+ );
90
+ $mecx-spaces: (
91
+ xs: 8px,
92
+ small: 12px,
93
+ medium: 24px,
94
+ cozy: 16px
95
+ );
@@ -1,6 +1,6 @@
1
- /**************************
2
- * Copyright Monkey Exchange. All Rights Reserved
3
- * This style guide was developed by Monkey Exchange Team
4
- * MIT Licence
5
- **************************/
6
- @use 'styles';
1
+ /**************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ **************************/
6
+ @use 'styles';
@@ -1,11 +1,11 @@
1
- /** ************************
2
- * Copyright Monkey Exchange. All Rights Reserved
3
- * This style guide was developed by Monkey Exchange Team
4
- * MIT Licence
5
- ************************* */
6
- .mecx-table {
7
- width: 100%;
8
- min-width: 400px;
9
- height: 100%;
10
- border-collapse: separate;
11
- }
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
6
+ .mecx-table {
7
+ width: 100%;
8
+ min-width: 400px;
9
+ height: 100%;
10
+ border-collapse: separate;
11
+ }
@@ -1,14 +1,14 @@
1
- /* stylelint-disable color-no-hex */
2
-
3
- /** ************************
4
- * Copyright Monkey Exchange. All Rights Reserved
5
- * This style guide was developed by Monkey Exchange Team
6
- * MIT Licence
7
- ************************* */
8
- @use '@angular/cdk/overlay-prebuilt.css';
9
- @use './partials';
10
- @use './input';
11
- @use './autocomplete';
12
- @use './directives';
13
- @use './table';
14
- @use './typography';
1
+ /* stylelint-disable color-no-hex */
2
+
3
+ /** ************************
4
+ * Copyright Monkey Exchange. All Rights Reserved
5
+ * This style guide was developed by Monkey Exchange Team
6
+ * MIT Licence
7
+ ************************* */
8
+ @use '@angular/cdk/overlay-prebuilt.css';
9
+ @use './partials';
10
+ @use './input';
11
+ @use './autocomplete';
12
+ @use './directives';
13
+ @use './table';
14
+ @use './typography';
@@ -1,6 +1,6 @@
1
- /**************************
2
- * Copyright Monkey Exchange. All Rights Reserved
3
- * This style guide was developed by Monkey Exchange Team
4
- * MIT Licence
5
- **************************/
6
- @use 'styles';
1
+ /**************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ **************************/
6
+ @use 'styles';