@inchurch/matcha-theme 20.0.8 → 20.276.0
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/abstracts/_colors.scss +404 -404
- package/abstracts/_elevation.scss +102 -102
- package/abstracts/_functions.scss +1212 -1212
- package/abstracts/_media-breakpoint.scss +23 -23
- package/abstracts/_typography.scss +127 -127
- package/base/_reset.scss +438 -438
- package/components/app-page-header.scss +260 -0
- package/components/matcha-accordion.scss +294 -157
- package/components/matcha-avatar.scss +171 -31
- package/components/matcha-badge.scss +4 -4
- package/components/matcha-breadcrumb.scss +232 -126
- package/components/matcha-button-toggle.scss +44 -0
- package/components/matcha-buttons.scss +908 -784
- package/components/matcha-calendar.scss +70 -2
- package/components/matcha-cards.scss +28 -2
- package/components/matcha-checkbox.scss +191 -490
- package/components/matcha-chip.scss +297 -212
- package/components/matcha-command-palette.scss +291 -63
- package/components/matcha-crop.scss +407 -172
- package/components/matcha-date.scss +81 -81
- package/components/matcha-divider.scss +86 -31
- package/components/matcha-drawer.scss +201 -50
- package/components/matcha-drop-image.scss +14 -0
- package/components/matcha-drop-list.scss +42 -1
- package/components/matcha-empty-state.scss +195 -83
- package/components/matcha-flag.scss +93 -52
- package/components/matcha-footer.scss +68 -164
- package/components/matcha-form-field.scss +52 -0
- package/components/matcha-form-section.scss +101 -101
- package/components/matcha-header.scss +135 -325
- package/components/matcha-highlight.scss +65 -197
- package/components/matcha-hint-text.scss +21 -0
- package/components/matcha-horizontal-tree.scss +317 -317
- package/components/matcha-icon.scss +17 -25
- package/components/matcha-list.scss +5 -5
- package/components/matcha-menu.scss +13 -0
- package/components/matcha-modal.scss +58 -84
- package/components/matcha-nav.scss +361 -230
- package/components/matcha-notification.scss +413 -197
- package/components/matcha-option.scss +79 -23
- package/components/matcha-paginator.scss +689 -235
- package/components/matcha-panel.scss +42 -26
- package/components/matcha-profile-card.scss +50 -50
- package/components/matcha-progress-bar.scss +257 -153
- package/components/matcha-radio.scss +244 -452
- package/components/matcha-scrollbox-shadow.scss +122 -122
- package/components/matcha-select.scss +3 -3
- package/components/matcha-skeleton.scss +18 -0
- package/components/matcha-slide-toggle.scss +47 -2
- package/components/matcha-slider.scss +172 -75
- package/components/matcha-snack-bar.scss +114 -121
- package/components/matcha-spinner.scss +76 -57
- package/components/matcha-status-pill.scss +82 -0
- package/components/matcha-stepper.scss +377 -177
- package/components/matcha-table.scss +569 -785
- package/components/matcha-tabs.scss +624 -469
- package/components/matcha-text-editor.scss +98 -144
- package/components/matcha-toolbar.scss +359 -206
- package/components/matcha-tooltip.scss +156 -62
- package/components/matcha-tree-view.scss +189 -0
- package/components/matcha-uploader.scss +240 -62
- package/fonts/manrope/manrope-latin-ext.woff2 +0 -0
- package/fonts/manrope/manrope-latin.woff2 +0 -0
- package/layout/matcha-page-layout.scss +776 -0
- package/main.scss +232 -261
- package/package.json +1 -1
- package/tokens/_animations-tokens.scss +37 -37
- package/tokens/_breakpoints-tokens.scss +35 -26
- package/tokens/_color-tokens.scss +1152 -1152
- package/tokens/_css-custom-properties.scss +650 -568
- package/tokens/_spacing-tokens.scss +94 -94
- package/vendors/angular-editor.scss +56 -56
- package/vendors/angular-material-fixes.scss +297 -297
- package/vendors/charts.scss +92 -92
- package/vendors/ng5-slider.scss +56 -56
- package/vendors/ngx-material-timepicker.scss +50 -50
- package/fonts/CircularStd-Black.eot +0 -0
- package/fonts/CircularStd-Black.svg +0 -3426
- package/fonts/CircularStd-Black.ttf +0 -0
- package/fonts/CircularStd-Black.woff +0 -0
- package/fonts/CircularStd-Black.woff2 +0 -0
- package/fonts/CircularStd-Bold.eot +0 -0
- package/fonts/CircularStd-Bold.otf +0 -0
- package/fonts/CircularStd-Bold.svg +0 -13532
- package/fonts/CircularStd-Bold.ttf +0 -0
- package/fonts/CircularStd-Bold.woff +0 -0
- package/fonts/CircularStd-Bold.woff2 +0 -0
- package/fonts/CircularStd-Medium.eot +0 -0
- package/fonts/CircularStd-Medium.otf +0 -0
- package/fonts/CircularStd-Medium.svg +0 -13511
- package/fonts/CircularStd-Medium.ttf +0 -0
- package/fonts/CircularStd-Medium.woff +0 -0
- package/fonts/CircularStd-Medium.woff2 +0 -0
- package/fonts/CircularStd-Regular.eot +0 -0
- package/fonts/CircularStd-Regular.otf +0 -0
- package/fonts/CircularStd-Regular.svg +0 -2378
- package/fonts/CircularStd-Regular.ttf +0 -0
- package/fonts/CircularStd-Regular.woff +0 -0
- package/fonts/CircularStd-Regular.woff2 +0 -0
package/main.scss
CHANGED
|
@@ -1,262 +1,233 @@
|
|
|
1
|
-
// TOKENS
|
|
2
|
-
@import "./tokens/animations-tokens";
|
|
3
|
-
@import "./tokens/breakpoints-tokens";
|
|
4
|
-
@import "./tokens/color-tokens";
|
|
5
|
-
@import "./tokens/elevation-tokens";
|
|
6
|
-
@import "./tokens/spacing-tokens";
|
|
7
|
-
@import "./tokens/typography-tokens";
|
|
8
|
-
@import "./tokens/css-custom-properties";
|
|
9
|
-
|
|
10
|
-
// FUNCTIONS
|
|
11
|
-
@import "./abstracts/functions"; // map-contrast() palette() map-color() light-theme() dark-theme() matcha-typography-level() matcha-typography-config() _matcha-get-type-value() matcha-font-size() matcha-line-height() matcha-font-weight() matcha-letter-spacing() matcha-font-family() _get-umbra-map() _get-penumbra-map() _get-ambient-map() elevation-transition-property-value()
|
|
12
|
-
|
|
13
|
-
// MIXINS
|
|
14
|
-
@import "./abstracts/colors"; // colors-classes-static() colors-classes-dynamic()
|
|
15
|
-
@import "./abstracts/elevation"; // elevation() _matcha-theme-elevation() matcha-overridable-elevation() _matcha-theme-overridable-elevation() elevation-transition() elevation-theme()
|
|
16
|
-
@import "./abstracts/media-breakpoint"; // media-breakpoint()
|
|
17
|
-
|
|
18
|
-
// TYPOGRAPHY
|
|
19
|
-
@import "./abstracts/typography"; // matcha-typography-font-shorthand() matcha-typography-level-to-styles() matcha-reset-typography()
|
|
20
|
-
|
|
21
|
-
// BASE
|
|
22
|
-
@import "./base/reset"; // base-body-reset-theme()
|
|
23
|
-
|
|
24
|
-
// COMPONENTS
|
|
25
|
-
@import "./components/matcha-audio-player.scss"; //matcha-audio-player-theme($theme)
|
|
26
|
-
@import "./components/matcha-autocomplete.scss"; // matcha-autocomplete-theme($theme)
|
|
27
|
-
@import "./components/matcha-option.scss"; // matcha-option-theme($theme)
|
|
28
|
-
@import "./components/matcha-panel.scss"; // matcha-panel-theme($theme)
|
|
29
|
-
@import "./components/matcha-select.scss"; // matcha-select-theme($theme)
|
|
30
|
-
@import "./components/matcha-buttons.scss"; // matcha-button-theme($theme)
|
|
31
|
-
@import "./components/matcha-button-toggle.scss"; // matcha-button-toggle-theme($theme)
|
|
32
|
-
@import "./components/matcha-cards.scss"; // matcha-cards-theme($theme)
|
|
33
|
-
@import "./components/matcha-color-pick.scss"; // matcha-color-pick-theme($theme)
|
|
34
|
-
@import "./components/matcha-draggable.scss"; // matcha-draggable-theme($theme)
|
|
35
|
-
@import "./components/matcha-drop-list.scss"; // matcha-drop-list-theme($theme)
|
|
36
|
-
@import "./components/matcha-header.scss"; // matcha-header-theme($theme)
|
|
37
|
-
@import "./components/
|
|
38
|
-
@import "./components/matcha-
|
|
39
|
-
@import "./components/matcha-
|
|
40
|
-
@import "./components/matcha-
|
|
41
|
-
@import "./components/matcha-
|
|
42
|
-
@import "./components/matcha-
|
|
43
|
-
@import "./components/matcha-
|
|
44
|
-
@import "./components/matcha-table
|
|
45
|
-
@import "./components/matcha-
|
|
46
|
-
@import "./components/matcha-
|
|
47
|
-
@import "./components/matcha-
|
|
48
|
-
@import "./components/matcha-
|
|
49
|
-
@import "./components/matcha-
|
|
50
|
-
@import "./components/matcha-
|
|
51
|
-
@import "./components/matcha-
|
|
52
|
-
@import "./components/matcha-
|
|
53
|
-
@import "./components/matcha-
|
|
54
|
-
@import "./components/matcha-
|
|
55
|
-
@import "./components/matcha-
|
|
56
|
-
@import "./components/matcha-
|
|
57
|
-
@import "./components/matcha-
|
|
58
|
-
@import "./components/matcha-
|
|
59
|
-
@import "./components/matcha-
|
|
60
|
-
@import "./components/matcha-
|
|
61
|
-
@import "./components/matcha-
|
|
62
|
-
@import "./components/matcha-
|
|
63
|
-
@import "./components/matcha-
|
|
64
|
-
@import "./components/matcha-
|
|
65
|
-
@import "./components/matcha-
|
|
66
|
-
@import "./components/matcha-
|
|
67
|
-
@import "./components/matcha-
|
|
68
|
-
@import "./components/matcha-
|
|
69
|
-
@import "./components/matcha-
|
|
70
|
-
@import "./components/matcha-
|
|
71
|
-
@import "./components/matcha-
|
|
72
|
-
@import "./components/matcha-
|
|
73
|
-
@import "./components/matcha-
|
|
74
|
-
@import "./components/matcha-
|
|
75
|
-
@import "./components/matcha-
|
|
76
|
-
@import "./components/matcha-
|
|
77
|
-
@import "./components/matcha-
|
|
78
|
-
@import "./components/matcha-
|
|
79
|
-
@import "./components/matcha-
|
|
80
|
-
@import "./components/matcha-
|
|
81
|
-
@import "./components/matcha-
|
|
82
|
-
@import "./components/matcha-
|
|
83
|
-
@import "./components/matcha-
|
|
84
|
-
@import "./components/matcha-
|
|
85
|
-
@import "./components/matcha-
|
|
86
|
-
@import "./components/matcha-
|
|
87
|
-
@import "./components/matcha-
|
|
88
|
-
@import "./components/matcha-
|
|
89
|
-
@import "./components/matcha-
|
|
90
|
-
|
|
91
|
-
//
|
|
92
|
-
@import "./
|
|
93
|
-
@import "./
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
@import "./
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
//
|
|
107
|
-
//
|
|
108
|
-
//
|
|
109
|
-
//
|
|
110
|
-
//
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
font-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
@
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
@
|
|
171
|
-
@
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
@include matcha-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
@
|
|
179
|
-
@include matcha-
|
|
180
|
-
|
|
181
|
-
@include
|
|
182
|
-
@include
|
|
183
|
-
|
|
184
|
-
@include
|
|
185
|
-
|
|
186
|
-
@include
|
|
187
|
-
@include
|
|
188
|
-
@include
|
|
189
|
-
@include
|
|
190
|
-
@include
|
|
191
|
-
@include
|
|
192
|
-
|
|
193
|
-
@include
|
|
194
|
-
@include
|
|
195
|
-
|
|
196
|
-
@include matcha-
|
|
197
|
-
@include matcha-
|
|
198
|
-
@include matcha-
|
|
199
|
-
@include matcha-
|
|
200
|
-
@include matcha-
|
|
201
|
-
@include matcha-
|
|
202
|
-
@include matcha-
|
|
203
|
-
|
|
204
|
-
@include matcha-
|
|
205
|
-
@include matcha-
|
|
206
|
-
@include matcha-
|
|
207
|
-
@include matcha-
|
|
208
|
-
@include matcha-
|
|
209
|
-
@include matcha-
|
|
210
|
-
@include matcha-
|
|
211
|
-
@include matcha-
|
|
212
|
-
@include matcha-
|
|
213
|
-
@include matcha-
|
|
214
|
-
@include matcha-
|
|
215
|
-
@include matcha-
|
|
216
|
-
@include matcha-
|
|
217
|
-
@include matcha-
|
|
218
|
-
@include matcha-
|
|
219
|
-
@include matcha-
|
|
220
|
-
@include matcha-
|
|
221
|
-
@include matcha-
|
|
222
|
-
@include matcha-
|
|
223
|
-
@include matcha-
|
|
224
|
-
@include matcha-
|
|
225
|
-
@include matcha-
|
|
226
|
-
@include matcha-
|
|
227
|
-
@include matcha-
|
|
228
|
-
@include matcha-
|
|
229
|
-
@include matcha-
|
|
230
|
-
@include matcha-
|
|
231
|
-
@include matcha-
|
|
232
|
-
@include matcha-
|
|
233
|
-
@include matcha-progress-bar-theme($theme);
|
|
234
|
-
@include matcha-page-builder-theme($theme);
|
|
235
|
-
@include matcha-snack-bar-theme($theme);
|
|
236
|
-
@include matcha-chip-theme($theme);
|
|
237
|
-
@include matcha-date-theme($theme);
|
|
238
|
-
@include matcha-calendar-theme($theme);
|
|
239
|
-
@include matcha-timepicker-theme($theme);
|
|
240
|
-
@include matcha-badge-theme($theme);
|
|
241
|
-
@include matcha-empty-state-theme($theme);
|
|
242
|
-
@include matcha-nav-theme($theme);
|
|
243
|
-
@include matcha-list-theme($theme);
|
|
244
|
-
@include matcha-icon-theme($theme);
|
|
245
|
-
@include matcha-text-editor-theme($theme);
|
|
246
|
-
@include matcha-chart-card-theme($theme);
|
|
247
|
-
@include matcha-crop-theme($theme);
|
|
248
|
-
@include matcha-footer-theme($theme);
|
|
249
|
-
@include matcha-uploader-theme($theme);
|
|
250
|
-
@include matcha-notification-theme($theme);
|
|
251
|
-
@include matcha-section-theme($theme);
|
|
252
|
-
@include matcha-form-section-theme($theme);
|
|
253
|
-
@include matcha-accordion-theme($theme);
|
|
254
|
-
@include matcha-breadcrumb-theme($theme);
|
|
255
|
-
@include matcha-image-theme($theme);
|
|
256
|
-
@include matcha-stepper-theme($theme);
|
|
257
|
-
@include matcha-toolbar-theme($theme);
|
|
258
|
-
@include matcha-command-palette-theme($theme);
|
|
259
|
-
@include matcha-profile-card-theme($theme);
|
|
260
|
-
@include matcha-flag-theme($theme);
|
|
261
|
-
@include matcha-emoji-theme($theme);
|
|
1
|
+
// TOKENS
|
|
2
|
+
@import "./tokens/animations-tokens";
|
|
3
|
+
@import "./tokens/breakpoints-tokens";
|
|
4
|
+
@import "./tokens/color-tokens";
|
|
5
|
+
@import "./tokens/elevation-tokens";
|
|
6
|
+
@import "./tokens/spacing-tokens";
|
|
7
|
+
@import "./tokens/typography-tokens";
|
|
8
|
+
@import "./tokens/css-custom-properties";
|
|
9
|
+
|
|
10
|
+
// FUNCTIONS
|
|
11
|
+
@import "./abstracts/functions"; // map-contrast() palette() map-color() light-theme() dark-theme() matcha-typography-level() matcha-typography-config() _matcha-get-type-value() matcha-font-size() matcha-line-height() matcha-font-weight() matcha-letter-spacing() matcha-font-family() _get-umbra-map() _get-penumbra-map() _get-ambient-map() elevation-transition-property-value()
|
|
12
|
+
|
|
13
|
+
// MIXINS
|
|
14
|
+
@import "./abstracts/colors"; // colors-classes-static() colors-classes-dynamic()
|
|
15
|
+
@import "./abstracts/elevation"; // elevation() _matcha-theme-elevation() matcha-overridable-elevation() _matcha-theme-overridable-elevation() elevation-transition() elevation-theme()
|
|
16
|
+
@import "./abstracts/media-breakpoint"; // media-breakpoint()
|
|
17
|
+
|
|
18
|
+
// TYPOGRAPHY
|
|
19
|
+
@import "./abstracts/typography"; // matcha-typography-font-shorthand() matcha-typography-level-to-styles() matcha-reset-typography()
|
|
20
|
+
|
|
21
|
+
// BASE
|
|
22
|
+
@import "./base/reset"; // base-body-reset-theme()
|
|
23
|
+
|
|
24
|
+
// COMPONENTS
|
|
25
|
+
@import "./components/matcha-audio-player.scss"; //matcha-audio-player-theme($theme)
|
|
26
|
+
@import "./components/matcha-autocomplete.scss"; // matcha-autocomplete-theme($theme)
|
|
27
|
+
@import "./components/matcha-option.scss"; // matcha-option-theme($theme)
|
|
28
|
+
@import "./components/matcha-panel.scss"; // matcha-panel-theme($theme)
|
|
29
|
+
@import "./components/matcha-select.scss"; // matcha-select-theme($theme)
|
|
30
|
+
@import "./components/matcha-buttons.scss"; // matcha-button-theme($theme)
|
|
31
|
+
@import "./components/matcha-button-toggle.scss"; // matcha-button-toggle-theme($theme)
|
|
32
|
+
@import "./components/matcha-cards.scss"; // matcha-cards-theme($theme)
|
|
33
|
+
@import "./components/matcha-color-pick.scss"; // matcha-color-pick-theme($theme)
|
|
34
|
+
@import "./components/matcha-draggable.scss"; // matcha-draggable-theme($theme)
|
|
35
|
+
@import "./components/matcha-drop-list.scss"; // matcha-drop-list-theme($theme)
|
|
36
|
+
@import "./components/matcha-header.scss"; // matcha-header-theme($theme) — lib component DSV3
|
|
37
|
+
@import "./components/app-page-header.scss"; // app-page-header-theme($theme) — page-header LEGACY da app
|
|
38
|
+
@import "./components/matcha-horizontal-tree.scss"; // matcha-horizontal-tree-theme($theme)
|
|
39
|
+
@import "./components/matcha-menu.scss"; // matcha-menu-theme($theme)
|
|
40
|
+
@import "./components/matcha-progress-bar.scss"; // matcha-progress-bar-theme($theme)
|
|
41
|
+
@import "./components/matcha-scrollbar.scss"; // matcha-scrollbar-theme($theme)
|
|
42
|
+
@import "./components/matcha-scrollbox-shadow.scss"; // matcha-scrollbox-shadow-theme($theme)
|
|
43
|
+
@import "./components/matcha-skeleton.scss"; // matcha-skeleton-theme($theme)
|
|
44
|
+
@import "./components/matcha-table.scss"; // matcha-table-modern (canon DSV3 1:1 Figma)
|
|
45
|
+
@import "./components/matcha-table-cell.scss"; // matcha-table-cell-theme($theme)
|
|
46
|
+
@import "./components/matcha-tooltip.scss"; // matcha-tooltip-theme($theme)
|
|
47
|
+
@import "./components/matcha-form-field.scss";
|
|
48
|
+
@import "./components/matcha-checkbox.scss";
|
|
49
|
+
@import "./components/matcha-accordion.scss";
|
|
50
|
+
@import "./components/matcha-ripple.scss"; // matcha-ripple-theme($theme)
|
|
51
|
+
@import "./components/matcha-spin.scss"; // matcha-spin-theme($theme)
|
|
52
|
+
@import "./components/matcha-spinner.scss"; // matcha-spinner-theme($theme)
|
|
53
|
+
@import "./components/matcha-hint-text.scss"; // matcha-hint-theme($theme)
|
|
54
|
+
@import "./components/matcha-slide-toggle.scss"; // matcha-slide-toggle($theme)
|
|
55
|
+
@import "./components/matcha-radio.scss"; // matcha-radio($theme)
|
|
56
|
+
@import "./components/matcha-avatar.scss"; // matcha-avatar($theme)
|
|
57
|
+
@import "./components/matcha-paginator.scss"; // matcha-paginator($theme)
|
|
58
|
+
@import "./components/matcha-slider.scss"; // matcha-slider($theme)
|
|
59
|
+
@import "./components/matcha-divider.scss"; // matcha-divider($theme)
|
|
60
|
+
@import "./components/matcha-highlight.scss"; // matcha-highlight($theme)
|
|
61
|
+
@import "./components/matcha-tabs.scss"; // matcha-tabs($theme)
|
|
62
|
+
@import "./components/matcha-modal.scss"; // matcha-modal($theme)
|
|
63
|
+
@import "./components/matcha-drawer.scss"; // matcha-drawer-theme($theme)
|
|
64
|
+
@import "./components/matcha-chip.scss"; // matcha-chip($theme)
|
|
65
|
+
@import "./components/matcha-status-pill.scss"; // matcha-status-pill
|
|
66
|
+
@import "./components/matcha-date.scss"; // matcha-date-theme($theme)
|
|
67
|
+
@import "./components/matcha-calendar.scss"; // matcha-calendar-theme($theme)
|
|
68
|
+
@import "./components/matcha-page-builder.scss"; // matcha-page-builder($theme)
|
|
69
|
+
@import "./components/matcha-snack-bar.scss"; // matcha-snack-bar-theme($theme)
|
|
70
|
+
@import "./components/matcha-timepicker.scss"; // matcha-timepicker-theme($theme)
|
|
71
|
+
@import "./components/matcha-badge.scss"; // matcha-badge-theme($theme)
|
|
72
|
+
@import "./components/matcha-empty-state.scss"; // matcha-empty-state-theme($theme)
|
|
73
|
+
@import "./components/matcha-tree-view.scss"; // matcha-tree-view-theme($theme)
|
|
74
|
+
@import "./components/matcha-nav.scss"; // matcha-nav-theme($theme)
|
|
75
|
+
@import "./components/matcha-list.scss"; // matcha-list-theme($theme)
|
|
76
|
+
@import "./components/matcha-icon.scss"; // matcha-icon-theme($theme)
|
|
77
|
+
@import "./components/matcha-text-editor.scss"; // matcha-text-editor-theme($theme)
|
|
78
|
+
@import "./components/matcha-chart-card.scss"; // matcha-chart-card-theme($theme)
|
|
79
|
+
@import "./components/matcha-crop.scss"; // matcha-crop-theme($theme)
|
|
80
|
+
@import "./components/matcha-footer.scss"; // matcha-footer-theme($theme)
|
|
81
|
+
@import "./components/matcha-uploader.scss"; // matcha-uploader-theme($theme)
|
|
82
|
+
@import "./components/matcha-drop-image.scss"; // matcha-drop-image-theme($theme)
|
|
83
|
+
@import "./components/matcha-notification.scss"; // matcha-notification-theme($theme)
|
|
84
|
+
@import "./components/matcha-section.scss"; // matcha-section-theme($theme)
|
|
85
|
+
@import "./components/matcha-form-section.scss"; // matcha-form-section-theme($theme)
|
|
86
|
+
@import "./components/matcha-breadcrumb.scss"; // matcha-breadcrumb-theme($theme)
|
|
87
|
+
@import "./components/matcha-image.scss"; // matcha-image-theme($theme)
|
|
88
|
+
@import "./components/matcha-stepper.scss"; // matcha-stepper-theme($theme)
|
|
89
|
+
@import "./components/matcha-toolbar.scss"; // matcha-toolbar-modern (canon DSV3 1:1 Figma 15866:92)
|
|
90
|
+
@import "./components/matcha-command-palette.scss"; // matcha-command-palette-theme($theme)
|
|
91
|
+
@import "./components/matcha-profile-card.scss"; // matcha-profile-card-theme($theme)
|
|
92
|
+
@import "./components/matcha-flag.scss"; // matcha-flag-theme($theme)
|
|
93
|
+
@import "./components/matcha-emoji.scss"; // matcha-emoji-theme($theme)
|
|
94
|
+
|
|
95
|
+
// LAYOUT
|
|
96
|
+
@import "./layout/matcha-page-layout.scss"; // matcha-page-layout-theme($theme)
|
|
97
|
+
|
|
98
|
+
// VENDORS
|
|
99
|
+
@import "./vendors/angular-editor.scss";
|
|
100
|
+
@import "./vendors/angular-material-fixes.scss";
|
|
101
|
+
@import "./vendors/calendar.scss";
|
|
102
|
+
@import "./vendors/charts.scss";
|
|
103
|
+
@import "./vendors/ng5-slider.scss";
|
|
104
|
+
@import "./vendors/ngx-material-timepicker.scss";
|
|
105
|
+
|
|
106
|
+
// ─── FONT LOADING — Manrope (SELF-HOSTED · zero dependência externa) ─────────
|
|
107
|
+
// REGRA DE OURO: fontes self-hosted, nunca @import/<link> do Google Fonts.
|
|
108
|
+
// Variable font (weight 400–800), woff2 local em fonts/manrope/.
|
|
109
|
+
// Atualizar: baixar de https://fonts.google.com/specimen/Manrope (licença OFL),
|
|
110
|
+
// pegar os woff2 latin + latin-ext e substituir os arquivos abaixo.
|
|
111
|
+
@font-face {
|
|
112
|
+
font-family: "Manrope";
|
|
113
|
+
font-style: normal;
|
|
114
|
+
font-weight: 400 800;
|
|
115
|
+
font-display: swap;
|
|
116
|
+
src: url("fonts/manrope/manrope-latin.woff2") format("woff2");
|
|
117
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
118
|
+
}
|
|
119
|
+
@font-face {
|
|
120
|
+
font-family: "Manrope";
|
|
121
|
+
font-style: normal;
|
|
122
|
+
font-weight: 400 800;
|
|
123
|
+
font-display: swap;
|
|
124
|
+
src: url("fonts/manrope/manrope-latin-ext.woff2") format("woff2");
|
|
125
|
+
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// CircularStd removido (2026-06-03): fonte comercial licenciada + fora da regra de
|
|
129
|
+
// ouro. Fonte canônica do DS é a Manrope (self-hosted acima). O token
|
|
130
|
+
// --matcha-font-family já resolve para 'Manrope'.
|
|
131
|
+
|
|
132
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
133
|
+
// @ CORE - Mixins and Includes
|
|
134
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
135
|
+
@mixin matcha-typography($config: null) {
|
|
136
|
+
@if $config ==null {
|
|
137
|
+
$config: matcha-typography-config();
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@include matcha-reset-typography($config);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
@mixin matcha-components($theme) {
|
|
144
|
+
@include matcha-css-custom-properties($theme);
|
|
145
|
+
|
|
146
|
+
@include colors-classes-dynamic($theme);
|
|
147
|
+
@include colors-classes-static($theme);
|
|
148
|
+
|
|
149
|
+
@include elevation-theme($theme);
|
|
150
|
+
|
|
151
|
+
@include vendor-angular-editor($theme);
|
|
152
|
+
@include vendor-angular-material-fixes($theme);
|
|
153
|
+
@include vendor-calendar-theme($theme);
|
|
154
|
+
@include vendor-chart($theme);
|
|
155
|
+
@include vendor-ng-5-theme($theme);
|
|
156
|
+
@include vendor-ngx-material-timepicker($theme);
|
|
157
|
+
|
|
158
|
+
@include base-typography-theme($theme);
|
|
159
|
+
@include base-body-reset-theme($theme);
|
|
160
|
+
|
|
161
|
+
@include matcha-cards-theme($theme);
|
|
162
|
+
@include matcha-horizontal-tree-theme($theme);
|
|
163
|
+
@include matcha-audio-player-theme($theme);
|
|
164
|
+
@include matcha-color-pick-theme($theme);
|
|
165
|
+
@include matcha-draggable-theme($theme);
|
|
166
|
+
@include matcha-scrollbox-shadow($theme);
|
|
167
|
+
@include matcha-scrollbar-theme($theme);
|
|
168
|
+
|
|
169
|
+
@include matcha-table-cell-theme($theme);
|
|
170
|
+
@include matcha-table-modern($theme); // canon DSV3 1:1 Figma 15641:275
|
|
171
|
+
@include matcha-toolbar($theme); // canon DSV3 1:1 Figma 15866:92
|
|
172
|
+
@include matcha-button-toggle($theme);
|
|
173
|
+
@include matcha-button-theme($theme);
|
|
174
|
+
@include matcha-ripple-theme($theme);
|
|
175
|
+
@include matcha-tooltip-theme($theme);
|
|
176
|
+
@include matcha-header-theme($theme);
|
|
177
|
+
@include app-page-header-theme($theme);
|
|
178
|
+
@include matcha-menu-theme($theme);
|
|
179
|
+
@include matcha-drop-list-theme($theme);
|
|
180
|
+
@include matcha-form-field($theme);
|
|
181
|
+
@include matcha-checkbox($theme);
|
|
182
|
+
@include matcha-spin($theme);
|
|
183
|
+
@include matcha-spinner-theme($theme);
|
|
184
|
+
@include matcha-hint-text($theme);
|
|
185
|
+
@include matcha-slide-toggle-theme($theme);
|
|
186
|
+
@include matcha-tabs($theme);
|
|
187
|
+
@include matcha-tabs-modern($theme);
|
|
188
|
+
@include matcha-modal-theme($theme);
|
|
189
|
+
@include matcha-skeleton-theme($theme);
|
|
190
|
+
@include matcha-radio($theme);
|
|
191
|
+
@include matcha-avatar-theme($theme);
|
|
192
|
+
@include matcha-drawer-theme($theme);
|
|
193
|
+
@include matcha-autocomplete-theme($theme);
|
|
194
|
+
@include matcha-panel-theme($theme);
|
|
195
|
+
@include matcha-option-theme($theme);
|
|
196
|
+
@include matcha-select-theme($theme);
|
|
197
|
+
@include matcha-paginator-theme($theme);
|
|
198
|
+
@include matcha-slider-theme($theme);
|
|
199
|
+
@include matcha-highlight-theme($theme);
|
|
200
|
+
@include matcha-divider-theme($theme);
|
|
201
|
+
@include matcha-chip-theme($theme);
|
|
202
|
+
@include matcha-progress-bar-theme($theme);
|
|
203
|
+
@include matcha-page-builder-theme($theme);
|
|
204
|
+
@include matcha-snack-bar-theme($theme);
|
|
205
|
+
@include matcha-chip-theme($theme);
|
|
206
|
+
@include matcha-date-theme($theme);
|
|
207
|
+
@include matcha-calendar-theme($theme);
|
|
208
|
+
@include matcha-timepicker-theme($theme);
|
|
209
|
+
@include matcha-badge-theme($theme);
|
|
210
|
+
@include matcha-empty-state-theme($theme);
|
|
211
|
+
@include matcha-tree-view-theme($theme);
|
|
212
|
+
@include matcha-nav-theme($theme);
|
|
213
|
+
@include matcha-list-theme($theme);
|
|
214
|
+
@include matcha-icon-theme($theme);
|
|
215
|
+
@include matcha-text-editor-theme($theme);
|
|
216
|
+
@include matcha-chart-card-theme($theme);
|
|
217
|
+
@include matcha-crop-theme($theme);
|
|
218
|
+
@include matcha-footer-theme($theme);
|
|
219
|
+
@include matcha-uploader-theme($theme);
|
|
220
|
+
@include matcha-drop-image-theme($theme);
|
|
221
|
+
@include matcha-notification-theme($theme);
|
|
222
|
+
@include matcha-section-theme($theme);
|
|
223
|
+
@include matcha-form-section-theme($theme);
|
|
224
|
+
@include matcha-accordion-theme($theme);
|
|
225
|
+
@include matcha-breadcrumb-theme($theme);
|
|
226
|
+
@include matcha-image-theme($theme);
|
|
227
|
+
@include matcha-stepper-theme($theme);
|
|
228
|
+
@include matcha-command-palette-theme($theme);
|
|
229
|
+
@include matcha-profile-card-theme($theme);
|
|
230
|
+
@include matcha-flag($theme);
|
|
231
|
+
@include matcha-emoji-theme($theme);
|
|
232
|
+
@include matcha-page-layout-theme($theme);
|
|
262
233
|
}
|
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
// Easing Curves
|
|
2
|
-
// TODO(jelbourn): all of these need to be revisited
|
|
3
|
-
|
|
4
|
-
// The default animation curves used by material design.
|
|
5
|
-
$time-transition-minimal: 80;
|
|
6
|
-
$time-transition-short: 200;
|
|
7
|
-
$time-transition-base: 400;
|
|
8
|
-
$time-transition-long: 600;
|
|
9
|
-
$time-transition-xl: 1000;
|
|
10
|
-
$time-delay-short: 50;
|
|
11
|
-
$time-delay-base: 100;
|
|
12
|
-
$time-delay-long: 200;
|
|
13
|
-
$time-duration-short: 2000;
|
|
14
|
-
$time-duration-base: 4000;
|
|
15
|
-
$time-duration-long: 6000;
|
|
16
|
-
|
|
17
|
-
$matcha-linear-out-slow-in-timing-function: cubic-bezier(0, 0, 0.2, 0.1) !default;
|
|
18
|
-
$matcha-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
19
|
-
$matcha-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0, 1, 1) !default;
|
|
20
|
-
|
|
21
|
-
$ease-in-out-curve-function: cubic-bezier(0.35, 0, 0.25, 1) !default;
|
|
22
|
-
|
|
23
|
-
$swift-ease-out-duration: #{$time-transition-base}ms !default;
|
|
24
|
-
$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
25
|
-
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;
|
|
26
|
-
|
|
27
|
-
$swift-ease-in-duration: #{$time-transition-short}ms !default;
|
|
28
|
-
$swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default;
|
|
29
|
-
$swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default;
|
|
30
|
-
|
|
31
|
-
$swift-ease-in-out-duration: #{$time-transition-long}ms !default;
|
|
32
|
-
$swift-ease-in-out-timing-function: $ease-in-out-curve-function !default;
|
|
33
|
-
$swift-ease-in-out: all $swift-ease-in-out-duration $swift-ease-in-out-timing-function !default;
|
|
34
|
-
|
|
35
|
-
$swift-linear-duration: #{$time-transition-minimal}ms !default;
|
|
36
|
-
$swift-linear-timing-function: linear !default;
|
|
37
|
-
$swift-linear: all $swift-linear-duration $swift-linear-timing-function !default;
|
|
1
|
+
// Easing Curves
|
|
2
|
+
// TODO(jelbourn): all of these need to be revisited
|
|
3
|
+
|
|
4
|
+
// The default animation curves used by material design.
|
|
5
|
+
$time-transition-minimal: 80;
|
|
6
|
+
$time-transition-short: 200;
|
|
7
|
+
$time-transition-base: 400;
|
|
8
|
+
$time-transition-long: 600;
|
|
9
|
+
$time-transition-xl: 1000;
|
|
10
|
+
$time-delay-short: 50;
|
|
11
|
+
$time-delay-base: 100;
|
|
12
|
+
$time-delay-long: 200;
|
|
13
|
+
$time-duration-short: 2000;
|
|
14
|
+
$time-duration-base: 4000;
|
|
15
|
+
$time-duration-long: 6000;
|
|
16
|
+
|
|
17
|
+
$matcha-linear-out-slow-in-timing-function: cubic-bezier(0, 0, 0.2, 0.1) !default;
|
|
18
|
+
$matcha-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
19
|
+
$matcha-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0, 1, 1) !default;
|
|
20
|
+
|
|
21
|
+
$ease-in-out-curve-function: cubic-bezier(0.35, 0, 0.25, 1) !default;
|
|
22
|
+
|
|
23
|
+
$swift-ease-out-duration: #{$time-transition-base}ms !default;
|
|
24
|
+
$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
25
|
+
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;
|
|
26
|
+
|
|
27
|
+
$swift-ease-in-duration: #{$time-transition-short}ms !default;
|
|
28
|
+
$swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default;
|
|
29
|
+
$swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default;
|
|
30
|
+
|
|
31
|
+
$swift-ease-in-out-duration: #{$time-transition-long}ms !default;
|
|
32
|
+
$swift-ease-in-out-timing-function: $ease-in-out-curve-function !default;
|
|
33
|
+
$swift-ease-in-out: all $swift-ease-in-out-duration $swift-ease-in-out-timing-function !default;
|
|
34
|
+
|
|
35
|
+
$swift-linear-duration: #{$time-transition-minimal}ms !default;
|
|
36
|
+
$swift-linear-timing-function: linear !default;
|
|
37
|
+
$swift-linear: all $swift-linear-duration $swift-linear-timing-function !default;
|