@inchurch/matcha-theme 21.4.0 → 22.1.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 +236 -236
- package/abstracts/_elevation.scss +108 -108
- package/abstracts/_functions.scss +321 -321
- package/abstracts/_media-breakpoint.scss +26 -26
- package/abstracts/_theme-api.scss +219 -219
- package/abstracts/_typography.scss +128 -128
- package/base/_reset.scss +446 -445
- package/components/app-page-header.scss +260 -260
- package/components/matcha-accordion.scss +293 -293
- package/components/matcha-audio-player.scss +31 -31
- package/components/matcha-autocomplete.scss +145 -145
- package/components/matcha-avatar.scss +440 -301
- package/components/matcha-badge.scss +120 -120
- package/components/matcha-breadcrumb.scss +231 -231
- package/components/matcha-button-toggle.scss +383 -384
- package/components/matcha-buttons.scss +913 -913
- package/components/matcha-calendar.scss +218 -218
- package/components/matcha-cards.scss +230 -230
- package/components/matcha-chart-card.scss +53 -53
- package/components/matcha-checkbox.scss +255 -255
- package/components/matcha-chip.scss +292 -292
- package/components/matcha-color-pick.scss +34 -34
- package/components/matcha-command-palette.scss +316 -316
- package/components/matcha-contact.scss +35 -0
- package/components/matcha-crop.scss +406 -406
- package/components/matcha-date.scss +81 -81
- package/components/matcha-divider.scss +100 -100
- package/components/matcha-draggable.scss +23 -23
- package/components/matcha-drawer.scss +376 -376
- package/components/matcha-drop-image.scss +14 -14
- package/components/matcha-drop-list.scss +430 -430
- package/components/matcha-emoji.scss +69 -69
- package/components/matcha-empty-state.scss +230 -230
- package/components/matcha-file-uploader.scss +471 -471
- package/components/matcha-flag.scss +103 -103
- package/components/matcha-footer.scss +91 -91
- package/components/matcha-form-field.scss +606 -606
- package/components/matcha-form-section.scss +100 -100
- package/components/matcha-header.scss +135 -135
- package/components/matcha-highlight.scss +164 -164
- package/components/matcha-hint-text.scss +90 -90
- package/components/matcha-horizontal-tree.scss +316 -316
- package/components/matcha-icon.scss +98 -98
- package/components/matcha-image.scss +61 -61
- package/components/matcha-list.scss +211 -211
- package/components/matcha-menu.scss +99 -99
- package/components/matcha-modal.scss +210 -210
- package/components/matcha-nav.scss +581 -581
- package/components/matcha-notification.scss +413 -413
- package/components/matcha-option.scss +170 -170
- package/components/matcha-page-builder.scss +4196 -4196
- package/components/matcha-paginator.scss +689 -689
- package/components/matcha-panel.scss +194 -194
- package/components/matcha-profile-card.scss +50 -50
- package/components/matcha-progress-bar.scss +313 -313
- package/components/matcha-radio.scss +320 -320
- package/components/matcha-ripple.scss +7 -7
- package/components/matcha-scrollbar.scss +33 -33
- package/components/matcha-scrollbox-shadow.scss +120 -120
- package/components/matcha-section.scss +102 -102
- package/components/matcha-select-multiple.scss +56 -56
- package/components/matcha-select.scss +667 -667
- package/components/matcha-skeleton.scss +155 -155
- package/components/matcha-slide-toggle.scss +369 -369
- package/components/matcha-slider.scss +285 -285
- package/components/matcha-snack-bar.scss +259 -259
- package/components/matcha-spin.scss +164 -164
- package/components/matcha-spinner.scss +97 -97
- package/components/matcha-status-pill.scss +38 -18
- package/components/matcha-stepper.scss +376 -376
- package/components/matcha-table-cell.scss +49 -41
- package/components/matcha-table.scss +579 -579
- package/components/matcha-tabs.scss +600 -600
- package/components/matcha-text-editor.scss +105 -105
- package/components/matcha-time.scss +33 -33
- package/components/matcha-timepicker.scss +13 -13
- package/components/matcha-toolbar.scss +359 -359
- package/components/matcha-tooltip.scss +224 -224
- package/components/matcha-tree-view.scss +257 -257
- package/layout/matcha-page-layout.scss +778 -778
- package/main.scss +331 -329
- package/package.json +1 -1
- package/tokens/_animations-tokens.scss +37 -37
- package/tokens/_breakpoints-tokens.scss +35 -35
- package/tokens/_color-tokens.scss +274 -274
- package/tokens/_elevation-tokens.scss +33 -33
- package/tokens/_emit-tokens.scss +324 -324
- package/tokens/_material-palette.scss +1149 -1149
- package/tokens/_primitives.scss +98 -98
- package/tokens/_semantic-aliases.scss +120 -120
- package/tokens/_spacing-tokens.scss +94 -94
- package/tokens/_static-tokens.scss +137 -137
- package/tokens/_typography-tokens.scss +65 -65
- package/vendors/charts.scss +90 -90
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;
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
// =============================================================================
|
|
2
|
-
// Breakpoints SCSS — alinhados ao canon NEW DSV3 (Tailwind-like).
|
|
3
|
-
// Antes usavam Angular Material legacy (600/1024/1440/1920). MIGRADO em
|
|
4
|
-
// 2026-05-22 pra Tailwind-style (480/640/768/1024/1280/1536) que matcha 1:1
|
|
5
|
-
// com os tokens CSS custom property `--matcha-bp-*`.
|
|
6
|
-
//
|
|
7
|
-
// Single source of truth pra @include media-breakpoint($name).
|
|
8
|
-
// =============================================================================
|
|
9
|
-
$breakpoints: (
|
|
10
|
-
xs: 'screen and (max-width: 479px)',
|
|
11
|
-
sm: 'screen and (min-width: 480px) and (max-width: 639px)',
|
|
12
|
-
md: 'screen and (min-width: 640px) and (max-width: 767px)',
|
|
13
|
-
lg: 'screen and (min-width: 768px) and (max-width: 1023px)',
|
|
14
|
-
xl: 'screen and (min-width: 1024px) and (max-width: 1279px)',
|
|
15
|
-
2xl: 'screen and (min-width: 1280px) and (max-width: 5000px)',
|
|
16
|
-
lt-sm: 'screen and (max-width: 479px)',
|
|
17
|
-
lt-md: 'screen and (max-width: 639px)',
|
|
18
|
-
lt-lg: 'screen and (max-width: 767px)',
|
|
19
|
-
lt-xl: 'screen and (max-width: 1023px)',
|
|
20
|
-
gt-xs: 'screen and (min-width: 480px)',
|
|
21
|
-
gt-sm: 'screen and (min-width: 640px)',
|
|
22
|
-
gt-md: 'screen and (min-width: 768px)',
|
|
23
|
-
gt-lg: 'screen and (min-width: 1024px)',
|
|
24
|
-
gt-xl: 'screen and (min-width: 1280px)'
|
|
25
|
-
) !default;
|
|
26
|
-
|
|
27
|
-
// Re-map the breakpoints for the helper classes
|
|
28
|
-
$helper-breakpoints: (
|
|
29
|
-
initial: null,
|
|
30
|
-
xs: 'xs',
|
|
31
|
-
sm: 'gt-xs',
|
|
32
|
-
md: 'gt-sm',
|
|
33
|
-
lg: 'gt-md',
|
|
34
|
-
xl: 'gt-lg'
|
|
35
|
-
);
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Breakpoints SCSS — alinhados ao canon NEW DSV3 (Tailwind-like).
|
|
3
|
+
// Antes usavam Angular Material legacy (600/1024/1440/1920). MIGRADO em
|
|
4
|
+
// 2026-05-22 pra Tailwind-style (480/640/768/1024/1280/1536) que matcha 1:1
|
|
5
|
+
// com os tokens CSS custom property `--matcha-bp-*`.
|
|
6
|
+
//
|
|
7
|
+
// Single source of truth pra @include media-breakpoint($name).
|
|
8
|
+
// =============================================================================
|
|
9
|
+
$breakpoints: (
|
|
10
|
+
xs: 'screen and (max-width: 479px)',
|
|
11
|
+
sm: 'screen and (min-width: 480px) and (max-width: 639px)',
|
|
12
|
+
md: 'screen and (min-width: 640px) and (max-width: 767px)',
|
|
13
|
+
lg: 'screen and (min-width: 768px) and (max-width: 1023px)',
|
|
14
|
+
xl: 'screen and (min-width: 1024px) and (max-width: 1279px)',
|
|
15
|
+
2xl: 'screen and (min-width: 1280px) and (max-width: 5000px)',
|
|
16
|
+
lt-sm: 'screen and (max-width: 479px)',
|
|
17
|
+
lt-md: 'screen and (max-width: 639px)',
|
|
18
|
+
lt-lg: 'screen and (max-width: 767px)',
|
|
19
|
+
lt-xl: 'screen and (max-width: 1023px)',
|
|
20
|
+
gt-xs: 'screen and (min-width: 480px)',
|
|
21
|
+
gt-sm: 'screen and (min-width: 640px)',
|
|
22
|
+
gt-md: 'screen and (min-width: 768px)',
|
|
23
|
+
gt-lg: 'screen and (min-width: 1024px)',
|
|
24
|
+
gt-xl: 'screen and (min-width: 1280px)'
|
|
25
|
+
) !default;
|
|
26
|
+
|
|
27
|
+
// Re-map the breakpoints for the helper classes
|
|
28
|
+
$helper-breakpoints: (
|
|
29
|
+
initial: null,
|
|
30
|
+
xs: 'xs',
|
|
31
|
+
sm: 'gt-xs',
|
|
32
|
+
md: 'gt-sm',
|
|
33
|
+
lg: 'gt-md',
|
|
34
|
+
xl: 'gt-lg'
|
|
35
|
+
);
|