Angular 18 migration
This commit is contained in:
parent
b1e93a9334
commit
6ce7ec6682
@ -15,13 +15,13 @@
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^18.2.6",
|
||||
"@angular/cdk": "^17.3.10",
|
||||
"@angular/cdk": "^18.2.6",
|
||||
"@angular/common": "^18.2.6",
|
||||
"@angular/compiler": "^18.2.6",
|
||||
"@angular/core": "^18.2.6",
|
||||
"@angular/flex-layout": "^15.0.0-beta.42",
|
||||
"@angular/forms": "^18.2.6",
|
||||
"@angular/material": "^17.3.10",
|
||||
"@angular/material": "^18.2.6",
|
||||
"@angular/platform-browser": "^18.2.6",
|
||||
"@angular/platform-browser-dynamic": "^18.2.6",
|
||||
"@angular/router": "^18.2.6",
|
||||
@ -32,7 +32,7 @@
|
||||
"@flowjs/ngx-flow": "~0.8.1",
|
||||
"@geoman-io/leaflet-geoman-free": "2.14.2",
|
||||
"@iplab/ngx-color-picker": "^17.2.2",
|
||||
"@mat-datetimepicker/core": "~13.0.2",
|
||||
"@mat-datetimepicker/core": "~14.0.0",
|
||||
"@material-ui/core": "4.12.3",
|
||||
"@material-ui/icons": "4.11.2",
|
||||
"@material-ui/pickers": "3.3.10",
|
||||
|
||||
@ -16,8 +16,8 @@
|
||||
@use '@angular/material' as mat;
|
||||
@import '../theme.scss';
|
||||
|
||||
$primary-color: rgba(mat.get-color-from-palette($tb-primary, 50), 0.4);
|
||||
$border: 1px solid mat.get-color-from-palette($tb-primary);
|
||||
$primary-color: rgba(mat.m2-get-color-from-palette($tb-primary, 50), 0.4);
|
||||
$border: 1px solid mat.m2-get-color-from-palette($tb-primary);
|
||||
|
||||
:host {
|
||||
.tb-alarm-comments {
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
@import '../theme.scss';
|
||||
@import '../scss/constants.scss';
|
||||
|
||||
$tb-warn: mat.get-color-from-palette(map-get($tb-theme, warn), text);
|
||||
$tb-warn: mat.m2-get-color-from-palette(map-get($tb-theme, warn), text);
|
||||
|
||||
:host {
|
||||
.tb-layout-fixed-container {
|
||||
@ -35,7 +35,7 @@ $tb-warn: mat.get-color-from-palette(map-get($tb-theme, warn), text);
|
||||
|
||||
.tb-layout-preview {
|
||||
width: 100%;
|
||||
background-color: rgba(mat.get-color-from-palette($tb-primary, 50), 0.6);
|
||||
background-color: rgba(mat.m2-get-color-from-palette($tb-primary, 50), 0.6);
|
||||
padding: 35px;
|
||||
|
||||
&-container {
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: mat.get-color-from-palette($primary);
|
||||
background-color: mat.m2-get-color-from-palette($primary);
|
||||
}
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@ -54,20 +54,20 @@ $tb-mat-indigo: (
|
||||
)
|
||||
);
|
||||
|
||||
$tb-primary: mat.define-palette($tb-mat-indigo);
|
||||
$tb-accent: mat.define-palette(mat.$deep-orange-palette);
|
||||
$tb-primary: mat.m2-define-palette($tb-mat-indigo);
|
||||
$tb-accent: mat.m2-define-palette(mat.$m2-deep-orange-palette);
|
||||
|
||||
$background: (background: map_get(mat.$grey-palette, 200));
|
||||
$background: (background: map_get(mat.$m2-grey-palette, 200));
|
||||
|
||||
$tb-theme-background: map_merge(mat.$light-theme-background-palette, $background);
|
||||
$tb-theme-background: map_merge(mat.$m2-light-theme-background-palette, $background);
|
||||
|
||||
$tb-mat-theme: mat.define-light-theme((
|
||||
$tb-mat-theme: mat.m2-define-light-theme((
|
||||
color: (
|
||||
primary: $tb-primary,
|
||||
accent: $tb-accent
|
||||
),
|
||||
typography: mat.define-typography-config(
|
||||
$button: mat.define-typography-level(14px, 36px, 500, $letter-spacing: 0.03125em)
|
||||
typography: mat.m2-define-typography-config(
|
||||
$button: mat.m2-define-typography-level(14px, 36px, 500, $letter-spacing: 0.03125em)
|
||||
),
|
||||
density: 0
|
||||
));
|
||||
@ -77,8 +77,8 @@ $color: map_merge($color, (background: $tb-theme-background));
|
||||
$tb-mat-theme: map_merge($tb-mat-theme, (color: $color));
|
||||
$tb-theme: map_merge($tb-mat-theme, $color);
|
||||
|
||||
$primary: mat.get-color-from-palette($tb-primary);
|
||||
$accent: mat.get-color-from-palette($tb-accent);
|
||||
$primary: mat.m2-get-color-from-palette($tb-primary);
|
||||
$accent: mat.m2-get-color-from-palette($tb-accent);
|
||||
|
||||
$tb-dark-mat-indigo: (
|
||||
50: #e8eaf6,
|
||||
@ -113,7 +113,7 @@ $tb-dark-mat-indigo: (
|
||||
)
|
||||
);
|
||||
|
||||
$tb-dark-primary: mat.define-palette($tb-dark-mat-indigo);
|
||||
$tb-dark-primary: mat.m2-define-palette($tb-dark-mat-indigo);
|
||||
|
||||
$tb-dark-theme-background: (
|
||||
status-bar: black,
|
||||
@ -130,15 +130,15 @@ $tb-dark-theme-background: (
|
||||
disabled-button-toggle: black,
|
||||
unselected-chip: map_get($tb-dark-mat-indigo, 700),
|
||||
disabled-list-option: black,
|
||||
tooltip: map_get(mat.$grey-palette, 700),
|
||||
tooltip: map_get(mat.$m2-grey-palette, 700),
|
||||
);
|
||||
|
||||
$tb-dark-theme: mat.define-dark-theme((
|
||||
$tb-dark-theme: mat.m2-define-dark-theme((
|
||||
color: (
|
||||
primary: $tb-dark-primary,
|
||||
accent: $tb-accent
|
||||
),
|
||||
typography: mat.define-typography-config(),
|
||||
typography: mat.m2-define-typography-config(),
|
||||
density: 0
|
||||
));
|
||||
|
||||
@ -156,32 +156,32 @@ $tb-dark-theme: map_merge($tb-dark-theme, $color);
|
||||
|
||||
mat-fab-toolbar {
|
||||
.mat-fab-toolbar-background {
|
||||
background: mat.get-color-from-palette($background, app-bar);
|
||||
color: mat.get-color-from-palette($foreground, text);
|
||||
background: mat.m2-get-color-from-palette($background, app-bar);
|
||||
color: mat.m2-get-color-from-palette($foreground, text);
|
||||
}
|
||||
&.mat-primary {
|
||||
.mat-fab-toolbar-background {
|
||||
background: mat.get-color-from-palette($primary);
|
||||
color: mat.get-color-from-palette($primary, default-contrast);
|
||||
background: mat.m2-get-color-from-palette($primary);
|
||||
color: mat.m2-get-color-from-palette($primary, default-contrast);
|
||||
}
|
||||
}
|
||||
&.mat-accent {
|
||||
.mat-fab-toolbar-background {
|
||||
background: mat.get-color-from-palette($accent);
|
||||
color: mat.get-color-from-palette($accent, default-contrast);
|
||||
background: mat.m2-get-color-from-palette($accent);
|
||||
color: mat.m2-get-color-from-palette($accent, default-contrast);
|
||||
}
|
||||
}
|
||||
&.mat-warn {
|
||||
.mat-fab-toolbar-background {
|
||||
background: mat.get-color-from-palette($warn);
|
||||
color: mat.get-color-from-palette($warn, default-contrast);
|
||||
background: mat.m2-get-color-from-palette($warn);
|
||||
color: mat.m2-get-color-from-palette($warn, default-contrast);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin _mat-toolbar-inverse-color($palette) {
|
||||
background: mat.get-color-from-palette($palette, default-contrast);
|
||||
background: mat.m2-get-color-from-palette($palette, default-contrast);
|
||||
color: rgba(black, 0.87);
|
||||
}
|
||||
|
||||
@ -194,8 +194,8 @@ $tb-dark-theme: map_merge($tb-dark-theme, $color);
|
||||
|
||||
mat-fab-toolbar {
|
||||
.mat-fab-toolbar-background {
|
||||
background: mat.get-color-from-palette($background, app-bar);
|
||||
color: mat.get-color-from-palette($foreground, text);
|
||||
background: mat.m2-get-color-from-palette($background, app-bar);
|
||||
color: mat.m2-get-color-from-palette($foreground, text);
|
||||
}
|
||||
&.mat-primary {
|
||||
.mat-fab-toolbar-background {
|
||||
@ -207,15 +207,15 @@ $tb-dark-theme: map_merge($tb-dark-theme, $color);
|
||||
@include _mat-toolbar-inverse-color($primary);
|
||||
button.mat-mdc-icon-button {
|
||||
.mat-icon {
|
||||
color: mat.get-color-from-palette($primary);
|
||||
color: mat.m2-get-color-from-palette($primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.mat-mdc-fab {
|
||||
&.mat-primary {
|
||||
background: mat.get-color-from-palette($primary, default-contrast);
|
||||
color: mat.get-color-from-palette($primary);
|
||||
background: mat.m2-get-color-from-palette($primary, default-contrast);
|
||||
color: mat.m2-get-color-from-palette($primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -228,7 +228,7 @@ $tb-dark-theme: map_merge($tb-dark-theme, $color);
|
||||
|
||||
mat-toolbar{
|
||||
&.mat-hue-3 {
|
||||
background-color: mat.get-color-from-palette($primary, 'A100');
|
||||
background-color: mat.m2-get-color-from-palette($primary, 'A100');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -21,8 +21,8 @@ $mat-datetimepicker-selected-today-box-shadow-width: 1px;
|
||||
|
||||
$primary: map-get($theme, primary);
|
||||
|
||||
$primary-color: mat.get-color-from-palette($primary);
|
||||
$primary-contrast: mat.get-color-from-palette($primary, default-contrast);
|
||||
$primary-color: mat.m2-get-color-from-palette($primary);
|
||||
$primary-contrast: mat.m2-get-color-from-palette($primary, default-contrast);
|
||||
|
||||
.mat-datetimepicker-calendar-header {
|
||||
background-color: $primary-color;
|
||||
|
||||
782
ui-ngx/yarn.lock
782
ui-ngx/yarn.lock
@ -336,10 +336,10 @@
|
||||
vite "5.4.6"
|
||||
watchpack "2.4.1"
|
||||
|
||||
"@angular/cdk@^17.3.10":
|
||||
version "17.3.10"
|
||||
resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-17.3.10.tgz#4a3bab529cd65bb19cb89c89b3548dcc534d1a44"
|
||||
integrity sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==
|
||||
"@angular/cdk@^18.2.6":
|
||||
version "18.2.6"
|
||||
resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-18.2.6.tgz#159bd04ffabbe970eaa5dcd758163ed382c04975"
|
||||
integrity sha512-Gfq/iv4zhlKYpdQkDaBRwxI71NHNUHM1Cs1XhnZ0/oFct5HXvSv1RHRGTKqBJLLACaAPzZKXJ/UglLoyO5CNiQ==
|
||||
dependencies:
|
||||
tslib "^2.3.0"
|
||||
optionalDependencies:
|
||||
@ -422,58 +422,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-18.2.6.tgz#c1cd36e40579b5bacaf0d666477c138577d2a6dd"
|
||||
integrity sha512-GBvBvS2llh+/l2YhO7UO5o3GftlvQQoXnw3v0hcNoHKwcnvqXV4CCi+T2WOaZyK0iB8Is4QRbMrpJUC66HokZg==
|
||||
|
||||
"@angular/material@^17.3.10":
|
||||
version "17.3.10"
|
||||
resolved "https://registry.yarnpkg.com/@angular/material/-/material-17.3.10.tgz#db4c41bcc4ba6a6328be3d89dc95947a48555b54"
|
||||
integrity sha512-hHMQES0tQPH5JW33W+mpBPuM8ybsloDTqFPuRV8cboDjosAWfJhzAKF3ozICpNlUrs62La/2Wu/756GcQrxebg==
|
||||
"@angular/material@^18.2.6":
|
||||
version "18.2.6"
|
||||
resolved "https://registry.yarnpkg.com/@angular/material/-/material-18.2.6.tgz#bbecf3e6f08af7acc35ab78986c49b2e875ecbab"
|
||||
integrity sha512-ObxC/vomSb9QF3vIztuiInQzws+D6u09Dhfx6uNFjtyICqxEFpF7+Qx7QVDWrsuXOgxZTKgacK8f46iV8hWUfg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/auto-init" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/banner" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/card" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/checkbox" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/chips" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/circular-progress" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/data-table" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dialog" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/drawer" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/fab" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/floating-label" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/form-field" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/icon-button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/image-list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/layout-grid" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/line-ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/linear-progress" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu-surface" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/notched-outline" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/radio" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/segmented-button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/select" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/slider" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/snackbar" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/switch" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-bar" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-indicator" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-scroller" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/textfield" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tooltip" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/top-app-bar" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.3.0"
|
||||
|
||||
"@angular/platform-browser-dynamic@^18.2.6":
|
||||
@ -2745,12 +2698,12 @@
|
||||
resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.13.tgz#93bcd6dc24afd1cc60dd88a65b9e4fab32dcf397"
|
||||
integrity sha512-UCrMJQY/gJnOl3XgbWRZZUvGGBuKy6i0YNSptgMzHBjs+QYDYR1Mt/RLTOPy4fzzves65O1EDmlL//OzEqoLlA==
|
||||
|
||||
"@mat-datetimepicker/core@~13.0.2":
|
||||
version "13.0.2"
|
||||
resolved "https://registry.yarnpkg.com/@mat-datetimepicker/core/-/core-13.0.2.tgz#033d1e04ec982936852fabad24d6e08a9d78bd52"
|
||||
integrity sha512-1xpS6Te76aZJAO8/obh8D99VzT2ABxwmpgx53JX34khQQ3trGps4sw3MyjVUx2mP7pWENHVEPz6TmXt73+KTBg==
|
||||
"@mat-datetimepicker/core@~14.0.0":
|
||||
version "14.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@mat-datetimepicker/core/-/core-14.0.0.tgz#1776ae74c3ff94b2bf4e1c6c01c9366c8ab876b5"
|
||||
integrity sha512-jds4b/BPdu1Yy90y6lyucGfLxq3DKutvDLYTt4+YdSItMHu6vfkclAxllky0Qb1ANlNrFQAOdfNOCUIGTnnWag==
|
||||
dependencies:
|
||||
tslib "^2.6.2"
|
||||
tslib "^2.6.3"
|
||||
|
||||
"@material-ui/core@4.12.3":
|
||||
version "4.12.3"
|
||||
@ -2835,708 +2788,6 @@
|
||||
prop-types "^15.7.2"
|
||||
react-is "^16.8.0 || ^17.0.0"
|
||||
|
||||
"@material/animation@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/animation/-/animation-15.0.0-canary.7f224ddd4.0.tgz#14b4f80718f9d405953dfca4376f9bcef609adc6"
|
||||
integrity sha512-1GSJaPKef+7HRuV+HusVZHps64cmZuOItDbt40tjJVaikcaZvwmHlcTxRIqzcRoCdt5ZKHh3NoO7GB9Khg4Jnw==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/auto-init@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/auto-init/-/auto-init-15.0.0-canary.7f224ddd4.0.tgz#9d1b6ed5d27e0c4c037a0cdc14e73729282d718d"
|
||||
integrity sha512-t7ZGpRJ3ec0QDUO0nJu/SMgLW7qcuG2KqIsEYD1Ej8qhI2xpdR2ydSDQOkVEitXmKoGol1oq4nYSBjTlB65GqA==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/banner@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/banner/-/banner-15.0.0-canary.7f224ddd4.0.tgz#2cf24525e3dd1104f8c311d63c71f2e6200de1fb"
|
||||
integrity sha512-g9wBUZzYBizyBcBQXTIafnRUUPi7efU9gPJfzeGgkynXiccP/vh5XMmH+PBxl5v+4MlP/d4cZ2NUYoAN7UTqSA==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/base@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/base/-/base-15.0.0-canary.7f224ddd4.0.tgz#4960bef078e0c092f5293eb331f732d8e8e9265e"
|
||||
integrity sha512-I9KQOKXpLfJkP8MqZyr8wZIzdPHrwPjFvGd9zSK91/vPyE4hzHRJc/0njsh9g8Lm9PRYLbifXX+719uTbHxx+A==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/button@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz#8de20a17fa75529f65553d9fb6c4af5d2743fa94"
|
||||
integrity sha512-BHB7iyHgRVH+JF16+iscR+Qaic+p7LU1FOLgP8KucRlpF9tTwIxQA6mJwGRi5gUtcG+vyCmzVS+hIQ6DqT/7BA==
|
||||
dependencies:
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/card@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/card/-/card-15.0.0-canary.7f224ddd4.0.tgz#3ac82035f7260ce8b8337402d2102bc254169dff"
|
||||
integrity sha512-kt7y9/IWOtJTr3Z/AoWJT3ZLN7CLlzXhx2udCLP9ootZU2bfGK0lzNwmo80bv/pJfrY9ihQKCtuGTtNxUy+vIw==
|
||||
dependencies:
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/checkbox@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/checkbox/-/checkbox-15.0.0-canary.7f224ddd4.0.tgz#a8223914b244cd7a23d9279b9fce3197a9473e69"
|
||||
integrity sha512-rURcrL5O1u6hzWR+dNgiQ/n89vk6tdmdP3mZgnxJx61q4I/k1yijKqNJSLrkXH7Rto3bM5NRKMOlgvMvVd7UMQ==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/chips@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/chips/-/chips-15.0.0-canary.7f224ddd4.0.tgz#e5f44ba72100188e49075fc701d187ef3e75ba82"
|
||||
integrity sha512-AYAivV3GSk/T/nRIpH27sOHFPaSMrE3L0WYbnb5Wa93FgY8a0fbsFYtSH2QmtwnzXveg+B1zGTt7/xIIcynKdQ==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/checkbox" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
safevalues "^0.3.4"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/circular-progress@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/circular-progress/-/circular-progress-15.0.0-canary.7f224ddd4.0.tgz#0ee8de2cc989007a6029e60f6c7fb36af222a0ac"
|
||||
integrity sha512-DJrqCKb+LuGtjNvKl8XigvyK02y36GRkfhMUYTcJEi3PrOE00bwXtyj7ilhzEVshQiXg6AHGWXtf5UqwNrx3Ow==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/progress-indicator" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/data-table@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/data-table/-/data-table-15.0.0-canary.7f224ddd4.0.tgz#fc5417a3e476896e92b8ada4804ef82d373831fa"
|
||||
integrity sha512-/2WZsuBIq9z9RWYF5Jo6b7P6u0fwit+29/mN7rmAZ6akqUR54nXyNfoSNiyydMkzPlZZsep5KrSHododDhBZbA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/checkbox" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/icon-button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/linear-progress" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/select" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/density@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/density/-/density-15.0.0-canary.7f224ddd4.0.tgz#3fd8625b734597556c2bf18362a709485b4d1899"
|
||||
integrity sha512-o9EXmGKVpiQ6mHhyV3oDDzc78Ow3E7v8dlaOhgaDSXgmqaE8v5sIlLNa/LKSyUga83/fpGk3QViSGXotpQx0jA==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/dialog@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/dialog/-/dialog-15.0.0-canary.7f224ddd4.0.tgz#13b414c6afa6e015845d1bbf09337d8eb1270465"
|
||||
integrity sha512-u0XpTlv1JqWC/bQ3DavJ1JguofTelLT2wloj59l3/1b60jv42JQ6Am7jU3I8/SIUB1MKaW7dYocXjDWtWJakLA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/icon-button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/dom@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/dom/-/dom-15.0.0-canary.7f224ddd4.0.tgz#4650cdc01439d033073bca09bbe94e5cbdc1a70e"
|
||||
integrity sha512-mQ1HT186GPQSkRg5S18i70typ5ZytfjL09R0gJ2Qg5/G+MLCGi7TAjZZSH65tuD/QGOjel4rDdWOTmYbPYV6HA==
|
||||
dependencies:
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/drawer@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/drawer/-/drawer-15.0.0-canary.7f224ddd4.0.tgz#089efcc9ba1622c6f6acb5e292f2edd9b2482558"
|
||||
integrity sha512-qyO0W0KBftfH8dlLR0gVAgv7ZHNvU8ae11Ao6zJif/YxcvK4+gph1z8AO4H410YmC2kZiwpSKyxM1iQCCzbb4g==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/elevation@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/elevation/-/elevation-15.0.0-canary.7f224ddd4.0.tgz#b8fdde1b096dd8352440fc7a616c137d18e9c687"
|
||||
integrity sha512-tV6s4/pUBECedaI36Yj18KmRCk1vfue/JP/5yYRlFNnLMRVISePbZaKkn/BHXVf+26I3W879+XqIGlDVdmOoMA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/fab@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/fab/-/fab-15.0.0-canary.7f224ddd4.0.tgz#e99acd7dc990e81ccb0deb834e6b6c3bd1747ea8"
|
||||
integrity sha512-4h76QrzfZTcPdd+awDPZ4Q0YdSqsXQnS540TPtyXUJ/5G99V6VwGpjMPIxAsW0y+pmI9UkLL/srrMaJec+7r4Q==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/feature-targeting@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/feature-targeting/-/feature-targeting-15.0.0-canary.7f224ddd4.0.tgz#bb1a326dad1cfd113459d7cb0096c0ab7ce0c951"
|
||||
integrity sha512-SAjtxYh6YlKZriU83diDEQ7jNSP2MnxKsER0TvFeyG1vX/DWsUyYDOIJTOEa9K1N+fgJEBkNK8hY55QhQaspew==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/floating-label@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/floating-label/-/floating-label-15.0.0-canary.7f224ddd4.0.tgz#c47c9df4424bfdcb824ba91096b130bc574c7127"
|
||||
integrity sha512-0KMo5ijjYaEHPiZ2pCVIcbaTS2LycvH9zEhEMKwPPGssBCX7iz5ffYQFk7e5yrQand1r3jnQQgYfHAwtykArnQ==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/focus-ring@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz#b1822b45a99009e9854a9e6c9f013708d159039d"
|
||||
integrity sha512-Jmg1nltq4J6S6A10EGMZnvufrvU3YTi+8R8ZD9lkSbun0Fm2TVdICQt/Auyi6An9zP66oQN6c31eqO6KfIPsDg==
|
||||
dependencies:
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
|
||||
"@material/form-field@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/form-field/-/form-field-15.0.0-canary.7f224ddd4.0.tgz#0f3c332361ca5e00fdafb9f854cc5cebe445a340"
|
||||
integrity sha512-fEPWgDQEPJ6WF7hNnIStxucHR9LE4DoDSMqCsGWS2Yu+NLZYLuCEecgR0UqQsl1EQdNRaFh8VH93KuxGd2hiPg==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/icon-button@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz#75a31e0b1287f98fba4355554725248340521c04"
|
||||
integrity sha512-DcK7IL4ICY/DW+48YQZZs9g0U1kRaW0Wb0BxhvppDMYziHo/CTpFdle4gjyuTyRxPOdHQz5a97ru48Z9O4muTw==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/image-list@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/image-list/-/image-list-15.0.0-canary.7f224ddd4.0.tgz#36bb04e6cf16a293dfb850d0fce585b1d2c724c3"
|
||||
integrity sha512-voMjG2p80XbjL1B2lmF65zO5gEgJOVKClLdqh4wbYzYfwY/SR9c8eLvlYG7DLdFaFBl/7gGxD8TvvZ329HUFPw==
|
||||
dependencies:
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/layout-grid@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/layout-grid/-/layout-grid-15.0.0-canary.7f224ddd4.0.tgz#656c39a44a715331ce11fe0aea281bc0e6c793aa"
|
||||
integrity sha512-veDABLxMn2RmvfnUO2RUmC1OFfWr4cU+MrxKPoDD2hl3l3eDYv5fxws6r5T1JoSyXoaN+oEZpheS0+M9Ure8Pg==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/line-ripple@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/line-ripple/-/line-ripple-15.0.0-canary.7f224ddd4.0.tgz#66487ff758834306180a7449ce4487103bcfe1d8"
|
||||
integrity sha512-f60hVJhIU6I3/17Tqqzch1emUKEcfVVgHVqADbU14JD+oEIz429ZX9ksZ3VChoU3+eejFl+jVdZMLE/LrAuwpg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/linear-progress@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/linear-progress/-/linear-progress-15.0.0-canary.7f224ddd4.0.tgz#b18179c6790db14870505e4362184d01ee3b9cb3"
|
||||
integrity sha512-pRDEwPQielDiC9Sc5XhCXrGxP8wWOnAO8sQlMebfBYHYqy5hhiIzibezS8CSaW4MFQFyXmCmpmqWlbqGYRmiyg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/progress-indicator" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/list@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/list/-/list-15.0.0-canary.7f224ddd4.0.tgz#e096d903ddbf06dd0177a317953d902133395b5e"
|
||||
integrity sha512-Is0NV91sJlXF5pOebYAtWLF4wU2MJDbYqztML/zQNENkQxDOvEXu3nWNb3YScMIYJJXvARO0Liur5K4yPagS1Q==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/menu-surface@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/menu-surface/-/menu-surface-15.0.0-canary.7f224ddd4.0.tgz#80678f927beec0ec22e68cb05b9242dc0b99543a"
|
||||
integrity sha512-7RZHvw0gbwppaAJ/Oh5SWmfAKJ62aw1IMB3+3MRwsb5PLoV666wInYa+zJfE4i7qBeOn904xqT2Nko5hY0ssrg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/menu@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/menu/-/menu-15.0.0-canary.7f224ddd4.0.tgz#f7a2fc94640afae6e816a75abf5dfc77d0bf9920"
|
||||
integrity sha512-D11QU1dXqLbh5X1zKlEhS3QWh0b5BPNXlafc5MXfkdJHhOiieb7LC9hMJhbrHtj24FadJ7evaFW/T2ugJbJNnQ==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu-surface" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/notched-outline@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/notched-outline/-/notched-outline-15.0.0-canary.7f224ddd4.0.tgz#d13391d4e211c077980e2fed81d81cc81a6a84fa"
|
||||
integrity sha512-Yg2usuKB2DKlKIBISbie9BFsOVuffF71xjbxPbybvqemxqUBd+bD5/t6H1fLE+F8/NCu5JMigho4ewUU+0RCiw==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/floating-label" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/progress-indicator@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/progress-indicator/-/progress-indicator-15.0.0-canary.7f224ddd4.0.tgz#6d70bf1ecf406c1da317402021a2970506921077"
|
||||
integrity sha512-UPbDjE5CqT+SqTs0mNFG6uFEw7wBlgYmh+noSkQ6ty/EURm8lF125dmi4dv4kW0+octonMXqkGtAoZwLIHKf/w==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/radio@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/radio/-/radio-15.0.0-canary.7f224ddd4.0.tgz#57834ac2d3441d1036041a94fe00b80c44d26b56"
|
||||
integrity sha512-wR1X0Sr0KmQLu6+YOFKAI84G3L6psqd7Kys5kfb8WKBM36zxO5HQXC5nJm/Y0rdn22ixzsIz2GBo0MNU4V4k1A==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/ripple@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/ripple/-/ripple-15.0.0-canary.7f224ddd4.0.tgz#5ce82710d337314f343d0b80e39f33a109e42801"
|
||||
integrity sha512-JqOsWM1f4aGdotP0rh1vZlPZTg6lZgh39FIYHFMfOwfhR+LAikUJ+37ciqZuewgzXB6iiRO6a8aUH6HR5SJYPg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/rtl@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/rtl/-/rtl-15.0.0-canary.7f224ddd4.0.tgz#25cf5447c2f59eea80bdb83a71ab19f15ff32e3d"
|
||||
integrity sha512-UVf14qAtmPiaaZjuJtmN36HETyoKWmsZM/qn1L5ciR2URb8O035dFWnz4ZWFMmAYBno/L7JiZaCkPurv2ZNrGA==
|
||||
dependencies:
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/segmented-button@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/segmented-button/-/segmented-button-15.0.0-canary.7f224ddd4.0.tgz#c36ca64ea8dfeb73bfdfdddb08b436e6c29f7071"
|
||||
integrity sha512-LCnVRUSAhELTKI/9hSvyvIvQIpPpqF29BV+O9yM4WoNNmNWqTulvuiv7grHZl6Z+kJuxSg4BGbsPxxb9dXozPg==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/touch-target" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/select@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/select/-/select-15.0.0-canary.7f224ddd4.0.tgz#cf7fe97b9e4b47d1a53ee5fa1d21c3fe2245361c"
|
||||
integrity sha512-WioZtQEXRpglum0cMSzSqocnhsGRr+ZIhvKb3FlaNrTaK8H3Y4QA7rVjv3emRtrLOOjaT6/RiIaUMTo9AGzWQQ==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/floating-label" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/line-ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/list" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/menu-surface" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/notched-outline" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/shape@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/shape/-/shape-15.0.0-canary.7f224ddd4.0.tgz#f4cb9f8f779449b12d69d8a303bab54211db7e52"
|
||||
integrity sha512-8z8l1W3+cymObunJoRhwFPKZ+FyECfJ4MJykNiaZq7XJFZkV6xNmqAVrrbQj93FtLsECn9g4PjjIomguVn/OEw==
|
||||
dependencies:
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/slider@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/slider/-/slider-15.0.0-canary.7f224ddd4.0.tgz#beba0d242fd110f063422fba40be3850cda01e44"
|
||||
integrity sha512-QU/WSaSWlLKQRqOhJrPgm29wqvvzRusMqwAcrCh1JTrCl+xwJ43q5WLDfjYhubeKtrEEgGu9tekkAiYfMG7EBw==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/snackbar@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/snackbar/-/snackbar-15.0.0-canary.7f224ddd4.0.tgz#55765e8755d031186954fed98c2fb6209e82bce0"
|
||||
integrity sha512-sm7EbVKddaXpT/aXAYBdPoN0k8yeg9+dprgBUkrdqGzWJAeCkxb4fv2B3He88YiCtvkTz2KLY4CThPQBSEsMFQ==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/icon-button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/switch@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/switch/-/switch-15.0.0-canary.7f224ddd4.0.tgz#71fa2bd8819917dae6991e118aef819d780d690e"
|
||||
integrity sha512-lEDJfRvkVyyeHWIBfoxYjJVl+WlEAE2kZ/+6OqB1FW0OV8ftTODZGhHRSzjVBA1/p4FPuhAtKtoK9jTpa4AZjA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
safevalues "^0.3.4"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/tab-bar@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tab-bar/-/tab-bar-15.0.0-canary.7f224ddd4.0.tgz#34fb2585163c4da265ce6ca318e6bf6efd7caf1b"
|
||||
integrity sha512-p1Asb2NzrcECvAQU3b2SYrpyJGyJLQWR+nXTYzDKE8WOpLIRCXap2audNqD7fvN/A20UJ1J8U01ptrvCkwJ4eA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-indicator" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-scroller" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/tab-indicator@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tab-indicator/-/tab-indicator-15.0.0-canary.7f224ddd4.0.tgz#85f91e23142249d18379cf6415d3b2385ccdee0e"
|
||||
integrity sha512-h9Td3MPqbs33spcPS7ecByRHraYgU4tNCZpZzZXw31RypjKvISDv/PS5wcA4RmWqNGih78T7xg4QIGsZg4Pk4w==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/tab-scroller@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tab-scroller/-/tab-scroller-15.0.0-canary.7f224ddd4.0.tgz#f0fc898fc8f3ca293676d04179ed2b1d03cb38a1"
|
||||
integrity sha512-LFeYNjQpdXecwECd8UaqHYbhscDCwhGln5Yh+3ctvcEgvmDPNjhKn/DL3sWprWvG8NAhP6sHMrsGhQFVdCWtTg==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/tab@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tab/-/tab-15.0.0-canary.7f224ddd4.0.tgz#77950384cbf0a418dc59352e244c0c3ec0ee83cb"
|
||||
integrity sha512-E1xGACImyCLurhnizyOTCgOiVezce4HlBFAI6YhJo/AyVwjN2Dtas4ZLQMvvWWqpyhITNkeYdOchwCC1mrz3AQ==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/focus-ring" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tab-indicator" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/textfield@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/textfield/-/textfield-15.0.0-canary.7f224ddd4.0.tgz#db502c644180f31afc6060bc5baaafab303d6608"
|
||||
integrity sha512-AExmFvgE5nNF0UA4l2cSzPghtxSUQeeoyRjFLHLy+oAaE4eKZFrSy0zEpqPeWPQpEMDZk+6Y+6T3cOFYBeSvsw==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/density" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/floating-label" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/line-ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/notched-outline" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/theme@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/theme/-/theme-15.0.0-canary.7f224ddd4.0.tgz#7523997eb51a21bffd598aa84fd1e76b7a0bb980"
|
||||
integrity sha512-hs45hJoE9yVnoVOcsN1jklyOa51U4lzWsEnQEuJTPOk2+0HqCQ0yv/q0InpSnm2i69fNSyZC60+8HADZGF8ugQ==
|
||||
dependencies:
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/tokens@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz#4ae8b300fc3ea5b9a6e53c3257a5aa0efd3442a3"
|
||||
integrity sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==
|
||||
dependencies:
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
|
||||
"@material/tooltip@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/tooltip/-/tooltip-15.0.0-canary.7f224ddd4.0.tgz#78bf4353b426030071944cdef45f1c2a023537f6"
|
||||
integrity sha512-8qNk3pmPLTnam3XYC1sZuplQXW9xLn4Z4MI3D+U17Q7pfNZfoOugGr+d2cLA9yWAEjVJYB0mj8Yu86+udo4N9w==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/button" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/dom" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/tokens" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
safevalues "^0.3.4"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/top-app-bar@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/top-app-bar/-/top-app-bar-15.0.0-canary.7f224ddd4.0.tgz#ac042d558f0763e8e9f8e48504eac7062882f353"
|
||||
integrity sha512-SARR5/ClYT4CLe9qAXakbr0i0cMY0V3V4pe3ElIJPfL2Z2c4wGR1mTR8m2LxU1MfGKK8aRoUdtfKaxWejp+eNA==
|
||||
dependencies:
|
||||
"@material/animation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/elevation" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/ripple" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/shape" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/typography" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/touch-target@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/touch-target/-/touch-target-15.0.0-canary.7f224ddd4.0.tgz#ab80eeec967fa1444dc5d0198c4c826916a9ff86"
|
||||
integrity sha512-BJo/wFKHPYLGsRaIpd7vsQwKr02LtO2e89Psv0on/p0OephlNIgeB9dD9W+bQmaeZsZ6liKSKRl6wJWDiK71PA==
|
||||
dependencies:
|
||||
"@material/base" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/rtl" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@material/typography@15.0.0-canary.7f224ddd4.0":
|
||||
version "15.0.0-canary.7f224ddd4.0"
|
||||
resolved "https://registry.yarnpkg.com/@material/typography/-/typography-15.0.0-canary.7f224ddd4.0.tgz#1191633c70ad0ee0e162feacb5e6efaf42a52cef"
|
||||
integrity sha512-kBaZeCGD50iq1DeRRH5OM5Jl7Gdk+/NOfKArkY4ksBZvJiStJ7ACAhpvb8MEGm4s3jvDInQFLsDq3hL+SA79sQ==
|
||||
dependencies:
|
||||
"@material/feature-targeting" "15.0.0-canary.7f224ddd4.0"
|
||||
"@material/theme" "15.0.0-canary.7f224ddd4.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@mdi/svg@^7.2.96":
|
||||
version "7.4.47"
|
||||
resolved "https://registry.yarnpkg.com/@mdi/svg/-/svg-7.4.47.tgz#f8e5516aae129764a76d1bb2f27e55bee03e6e90"
|
||||
@ -12001,11 +11252,6 @@ safe-regex-test@^1.0.3:
|
||||
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
||||
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
||||
|
||||
safevalues@^0.3.4:
|
||||
version "0.3.4"
|
||||
resolved "https://registry.yarnpkg.com/safevalues/-/safevalues-0.3.4.tgz#82e846a02b6956d7d40bf9f41e92e13fce0186db"
|
||||
integrity sha512-LRneZZRXNgjzwG4bDQdOTSbze3fHm1EAKN/8bePxnlEZiBmkYEDggaHbuvHI9/hoqHbGfsEA7tWS9GhYHZBBsw==
|
||||
|
||||
sass-loader@14.1.1:
|
||||
version "14.1.1"
|
||||
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-14.1.1.tgz#2c9d2277c5b1c5fe789cd0570c046d8ad23cb7ca"
|
||||
@ -12984,7 +12230,7 @@ tslib@2.6.3:
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0"
|
||||
integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==
|
||||
|
||||
tslib@^2.6.2:
|
||||
tslib@^2.6.3:
|
||||
version "2.7.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01"
|
||||
integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user