diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9721b7d9d8..d3942f7b3f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -69,3 +69,4 @@ jobs:
cache: npm
- run: npm ci
- run: npx nx affected --target=build --base=${{ github.event.pull_request.base.sha }}
+ - run: npx nx affected --target=build-scss --base=${{ github.event.pull_request.base.sha }}
diff --git a/apps/knapsack/public/ks-overrides.css b/apps/knapsack/public/ks-overrides.css
new file mode 100644
index 0000000000..acda46b3ca
--- /dev/null
+++ b/apps/knapsack/public/ks-overrides.css
@@ -0,0 +1,3 @@
+body {
+ background-color: var(--mdc-theme-background);
+}
diff --git a/libs/angular/project.json b/libs/angular/project.json
index fcc7ab01ec..87a2ccc17c 100644
--- a/libs/angular/project.json
+++ b/libs/angular/project.json
@@ -22,16 +22,8 @@
},
"defaultConfiguration": "production"
},
- "test": {
- "executor": "@nrwl/jest:jest",
- "outputs": ["{workspaceRoot}/coverage/libs/angular"],
- "options": {
- "jestConfig": "libs/angular/jest.config.js",
- "passWithNoTests": true
- }
- },
"build-scss": {
- "builder": "nx:run-commands",
+ "executor": "nx:run-commands",
"options": {
"commands": [
"mkdir -p dist/libs/angular/common/",
@@ -42,6 +34,14 @@
"parallel": false
}
},
+ "test": {
+ "executor": "@nrwl/jest:jest",
+ "outputs": ["{workspaceRoot}/coverage/libs/angular"],
+ "options": {
+ "jestConfig": "libs/angular/jest.config.js",
+ "passWithNoTests": true
+ }
+ },
"lint": {
"executor": "@nx/eslint:lint",
"options": {
diff --git a/libs/components/.storybook/preview.js b/libs/components/.storybook/preview.js
index 4d0b875114..debf0152b3 100644
--- a/libs/components/.storybook/preview.js
+++ b/libs/components/.storybook/preview.js
@@ -1,6 +1,6 @@
import { parameters as mainParameters } from '../../../.storybook/preview';
-import '../theme/theme.scss';
+import '../src/index.scss';
import '../../../.storybook/theme/markdown-elements.scss';
export const parameters = {
diff --git a/libs/components/index.html b/libs/components/index.html
index b1cd260061..c92ee30620 100644
--- a/libs/components/index.html
+++ b/libs/components/index.html
@@ -11,7 +11,7 @@
-
+
diff --git a/libs/components/project.json b/libs/components/project.json
index 2972dd0d3c..a08a6b70c9 100644
--- a/libs/components/project.json
+++ b/libs/components/project.json
@@ -25,6 +25,17 @@
},
"outputs": ["{workspaceRoot}/dist/libs/components"]
},
+ "build-scss": {
+ "executor": "nx:run-commands",
+ "options": {
+ "commands": [
+ "mkdir -p dist/libs/components/theme/",
+ "./node_modules/.bin/sass --trace --color --style=compressed --load-path=node_modules ./libs/components/src/theme/:./dist/libs/components/theme/"
+ ],
+ "parallel": false
+ },
+ "outputs": ["{workspaceRoot}/dist/libs/components/theme"]
+ },
"test": {
"executor": "nx:run-commands",
"options": {
diff --git a/libs/components/theme/theme.scss b/libs/components/src/index.scss
similarity index 89%
rename from libs/components/theme/theme.scss
rename to libs/components/src/index.scss
index aba85b8aa0..e25a532bac 100644
--- a/libs/components/theme/theme.scss
+++ b/libs/components/src/index.scss
@@ -1,7 +1,7 @@
@use '@covalent/tokens/index.scss' as tokens;
-@use '../src/icon/icon' as icon;
-@use '../src/skeleton/skeleton.styles' as skeleton; // TODO - should be a component for text and block
-@use './mixins' as theme;
+@use './icon/icon' as icon;
+@use './skeleton/skeleton.styles' as skeleton; // TODO - should be a component for text and block
+@use './theme/mixins' as theme;
@import '../../icons/covalent-icons.css';
@include icon.core-styles(); // TODO - include future support in icons css
diff --git a/libs/components/src/index.ts b/libs/components/src/index.ts
index f8edf236f8..dea42646f9 100644
--- a/libs/components/src/index.ts
+++ b/libs/components/src/index.ts
@@ -11,6 +11,9 @@ export * from './code-snippet/code-snippet';
export * from './dialog/dialog';
export * from './drawer/drawer';
export * from './empty-state/empty-state';
+export * from './expansion-panel/expansion-panel';
+export * from './expansion-panel/expansion-panel-item';
+export * from './formfield/formfield';
export * from './icon/icon';
export * from './icon-button/icon-button';
export * from './icon-checkbox/icon-check-toggle';
@@ -44,4 +47,4 @@ export * from './tree-list/tree-list';
export * from './tree-list/tree-list-item';
export * from './typography/typography';
-import '../theme/theme.scss';
+import './index.scss';
diff --git a/libs/components/theme/_mixins.scss b/libs/components/src/theme/_mixins.scss
similarity index 99%
rename from libs/components/theme/_mixins.scss
rename to libs/components/src/theme/_mixins.scss
index e6bba10421..39039a3a95 100644
--- a/libs/components/theme/_mixins.scss
+++ b/libs/components/src/theme/_mixins.scss
@@ -1,5 +1,5 @@
// Covalent themed components
-@use '../src/data-table/data-table.theme' as data-table;
+@use '../data-table/data-table.theme' as data-table;
@mixin components-theme($theme, $typography) {
// Foreground colors
diff --git a/libs/components/src/theme/dark-theme.scss b/libs/components/src/theme/dark-theme.scss
new file mode 100644
index 0000000000..7288535dcc
--- /dev/null
+++ b/libs/components/src/theme/dark-theme.scss
@@ -0,0 +1,10 @@
+@use '@covalent/tokens/index.scss' as tokens;
+@use './mixins' as theme;
+
+// Define the base theme using light tokens w/ dark tokens overriting for prefers-color-scheme:dark
+:root {
+ @include theme.components-theme(
+ map-get(tokens.$tokens, 'dark'),
+ map-get(tokens.$tokens, typography)
+ );
+}
diff --git a/libs/components/src/theme/light-theme.scss b/libs/components/src/theme/light-theme.scss
new file mode 100644
index 0000000000..c38ca6802c
--- /dev/null
+++ b/libs/components/src/theme/light-theme.scss
@@ -0,0 +1,10 @@
+@use '@covalent/tokens/index.scss' as tokens;
+@use './mixins' as theme;
+
+// Define the base theme using light tokens w/ dark tokens overriting for prefers-color-scheme:dark
+:root {
+ @include theme.components-theme(
+ map-get(tokens.$tokens, 'light'),
+ map-get(tokens.$tokens, typography)
+ );
+}
diff --git a/package-lock.json b/package-lock.json
index 6ef3384bd7..710e99c202 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -22,13 +22,13 @@
"@knapsack/app": "^4.41.14",
"@knapsack/renderer-angular": "^4.41.14",
"@knapsack/renderer-web-components": "^4.41.14",
- "@material/banner": "15.0.0-canary.83355c322.0",
- "@material/button": "15.0.0-canary.83355c322.0",
- "@material/card": "15.0.0-canary.83355c322.0",
- "@material/chips": "15.0.0-canary.83355c322.0",
- "@material/data-table": "15.0.0-canary.83355c322.0",
- "@material/icon-button": "15.0.0-canary.83355c322.0",
- "@material/image-list": "15.0.0-canary.83355c322.0",
+ "@material/banner": "15.0.0-canary.7f224ddd4.0",
+ "@material/button": "15.0.0-canary.7f224ddd4.0",
+ "@material/card": "15.0.0-canary.7f224ddd4.0",
+ "@material/chips": "15.0.0-canary.7f224ddd4.0",
+ "@material/data-table": "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/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-circular-progress": "^0.27.0",
@@ -50,7 +50,7 @@
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-top-app-bar": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
- "@material/tooltip": "15.0.0-canary.83355c322.0",
+ "@material/tooltip": "15.0.0-canary.7f224ddd4.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"easymde": "^2.18.0",
@@ -1101,179 +1101,6 @@
"rxjs": "^6.5.3 || ^7.4.0"
}
},
- "node_modules/@angular/material/node_modules/@material/banner": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/card": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/chips": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/data-table": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/icon-button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/image-list": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@angular/material/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
- "node_modules/@angular/material/node_modules/@material/tooltip": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
"node_modules/@angular/platform-browser": {
"version": "17.1.2",
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.1.2.tgz",
@@ -7106,886 +6933,148 @@
}
},
"node_modules/@material/banner": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oNZcid9Xgc2+OsdBZ4uwPGA229s2mnQMnU6nMW2suG/23q/CPkNNj8nV4WGLP2Svo+8kDh3oH1f+B2G70AGL4w==",
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-g9wBUZzYBizyBcBQXTIafnRUUPi7efU9gPJfzeGgkynXiccP/vh5XMmH+PBxl5v+4MlP/d4cZ2NUYoAN7UTqSA==",
"dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/button": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.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/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"
}
},
- "node_modules/@material/banner/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
+ "node_modules/@material/base": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-I9KQOKXpLfJkP8MqZyr8wZIzdPHrwPjFvGd9zSK91/vPyE4hzHRJc/0njsh9g8Lm9PRYLbifXX+719uTbHxx+A==",
"dependencies": {
"tslib": "^2.1.0"
}
},
- "node_modules/@material/banner/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
+ "node_modules/@material/button": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz",
+ "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"
}
},
- "node_modules/@material/banner/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
+ "node_modules/@material/card": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-kt7y9/IWOtJTr3Z/AoWJT3ZLN7CLlzXhx2udCLP9ootZU2bfGK0lzNwmo80bv/pJfrY9ihQKCtuGTtNxUy+vIw==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.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",
"tslib": "^2.1.0"
}
},
- "node_modules/@material/banner/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
+ "node_modules/@material/checkbox": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-rURcrL5O1u6hzWR+dNgiQ/n89vk6tdmdP3mZgnxJx61q4I/k1yijKqNJSLrkXH7Rto3bM5NRKMOlgvMvVd7UMQ==",
"dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
+ "@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"
}
},
- "node_modules/@material/banner/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
+ "node_modules/@material/chips": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.7f224ddd4.0.tgz",
+ "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"
}
},
- "node_modules/@material/banner/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/banner/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/banner/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/banner/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/banner/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/base": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-I9KQOKXpLfJkP8MqZyr8wZIzdPHrwPjFvGd9zSK91/vPyE4hzHRJc/0njsh9g8Lm9PRYLbifXX+719uTbHxx+A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-/EXNsI4CcB3NsHsqBkW/NP3MBdKK4e3ZnmUmFZox1GDXNJLe304iQARPH6PHbF/rkSfkLlI66ba8IL/iyEw+2g==",
- "dependencies": {
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/focus-ring": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/density": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-9QmfYHpf4FKiThvrOTHYh71V0Wz5NRngLQfpgDkX/jLzbAdBhphV9xw0IeucG9dzh0H+trVLYHLJOREgW70eCA==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/touch-target": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-VYN005I3cA6QBSwhqSGiFS1E+vpHa/I8WfVwRPJeQ1N0LZUqJ4uOZmBxENVGD7FxuraGFl0xDEeG4roOlXsp9A==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/button/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-SQ4svdy6thi3RQ7pTGLAacNj7T9nyxjNq380nRqidWYsnBxmMuNhEi3AR9ZtXHHgX98oyfNDlUu+fJjUlh7rsg==",
- "dependencies": {
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/card/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/checkbox": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-rURcrL5O1u6hzWR+dNgiQ/n89vk6tdmdP3mZgnxJx61q4I/k1yijKqNJSLrkXH7Rto3bM5NRKMOlgvMvVd7UMQ==",
+ "node_modules/@material/circular-progress": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-DJrqCKb+LuGtjNvKl8XigvyK02y36GRkfhMUYTcJEi3PrOE00bwXtyj7ilhzEVshQiXg6AHGWXtf5UqwNrx3Ow==",
"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/progress-indicator": "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"
- }
- },
- "node_modules/@material/checkbox/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/chips": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-tOhCAgxbG4N1eLnEPPuIMtawp8qDI62J+uHwAmt3dGE7Um9dGBpVHTTHhddmbAS1JeNFXEKCbzh81m/FuBdOrw==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/checkbox": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/focus-ring": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "safevalues": "^0.3.4",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/checkbox": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-G6WNvtoIQ0XePU9SsPdq2YsPHuJqdCvr92Gaq3tChwpkD+K1e3mkRnhp5EQXO1QbpZnXNTcI6zLHcR/CUN9fXA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/focus-ring": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/density": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-9QmfYHpf4FKiThvrOTHYh71V0Wz5NRngLQfpgDkX/jLzbAdBhphV9xw0IeucG9dzh0H+trVLYHLJOREgW70eCA==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
"tslib": "^2.1.0"
}
},
- "node_modules/@material/chips/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/touch-target": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-VYN005I3cA6QBSwhqSGiFS1E+vpHa/I8WfVwRPJeQ1N0LZUqJ4uOZmBxENVGD7FxuraGFl0xDEeG4roOlXsp9A==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/chips/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/circular-progress": {
+ "node_modules/@material/data-table": {
"version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-DJrqCKb+LuGtjNvKl8XigvyK02y36GRkfhMUYTcJEi3PrOE00bwXtyj7ilhzEVshQiXg6AHGWXtf5UqwNrx3Ow==",
+ "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.7f224ddd4.0.tgz",
+ "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/progress-indicator": "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",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-LVHxWNK0vUdCUQRubRTW3fOyQRev6FDESEwWh6tOY/wy+n6w2bNJOK0NHpg3a2usBhT2Tzq6axcLE8EeGRkt8g==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/checkbox": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/icon-button": "15.0.0-canary.83355c322.0",
- "@material/linear-progress": "15.0.0-canary.83355c322.0",
- "@material/list": "15.0.0-canary.83355c322.0",
- "@material/menu": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/select": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/checkbox": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-G6WNvtoIQ0XePU9SsPdq2YsPHuJqdCvr92Gaq3tChwpkD+K1e3mkRnhp5EQXO1QbpZnXNTcI6zLHcR/CUN9fXA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/focus-ring": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/density": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-9QmfYHpf4FKiThvrOTHYh71V0Wz5NRngLQfpgDkX/jLzbAdBhphV9xw0IeucG9dzh0H+trVLYHLJOREgW70eCA==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/floating-label": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-NW0ZtOVneRAkXBo3Y8+8KXK19O0UnWjOE2nvBWp7qCvfx269Hmq6SROnER2A7kUigekYas4dBlYvYtx88levJA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/line-ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-gUV2I6H3DpdEI9h/o4v5UfDqJc8ms5c+N74E0aic16iHM1CLQazJYesg71ZbhJPrBQ5fW4Us3IPVItnePWsMGA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/linear-progress": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZuO8OXfXG8nblSSM79ZmgriFdVxVHAWPpuq/F4EGpF1E6XXTlkfL5Wu4/n7FG9fWzwzJZjuKMXgTqFEWvF1JXw==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/progress-indicator": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/list": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-BXTmhQtRVQukgmNd6NIDS0ie799+nVNaXNMaI2FY2h4gkIlM1thKC3zbWPG2bAWRckBGMXcbF3649EB717rxgA==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/menu": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-m5YMSkJWn+YvXzQ9rSNV2F6L+0qzmx+SLvpvdM1P3irRGhXPvJU3PrjjRCutO0lAHNLNx+x7Ujs49gDRM3t/6g==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/list": "15.0.0-canary.83355c322.0",
- "@material/menu-surface": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/menu-surface": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Qzx7jPVVkNMwB04SjfO2QTW6TZ1pcS+2f8xsEEzJAV3Bnb3k95LVDxGk+18YBosE4vBFfrJM2yRmfLmP3BJsCQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/notched-outline": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-RSPCyjnxqbLSlev3kZk4wHCJ2VGvuXJMNhObAJ8JaDtNmUPBwd1m2YzsJ/i1r6vLRHmKT+D17Pb7QH430apJLQ==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/floating-label": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/progress-indicator": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-thxxywS8tmY38On0xbO6SizdDgJ9hyhyUfGEbXkxUpxtZ6vmQqlBI8FrxdBo5SlrIz5HAl6TBWmjQKV8N31+DQ==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/select": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-nNo7o6WKyc0+f6t6WImifXXABmFLWfU2S2jQIEmozRhpPduFJBAYkud/5GWhy4TvgQaoJ+f/0i6kMCRZWKu5bg==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/floating-label": "15.0.0-canary.83355c322.0",
- "@material/line-ripple": "15.0.0-canary.83355c322.0",
- "@material/list": "15.0.0-canary.83355c322.0",
- "@material/menu": "15.0.0-canary.83355c322.0",
- "@material/menu-surface": "15.0.0-canary.83355c322.0",
- "@material/notched-outline": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/touch-target": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-VYN005I3cA6QBSwhqSGiFS1E+vpHa/I8WfVwRPJeQ1N0LZUqJ4uOZmBxENVGD7FxuraGFl0xDEeG4roOlXsp9A==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/data-table/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.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"
}
},
@@ -8019,62 +7108,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/dialog/node_modules/@material/button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/dialog/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/dialog/node_modules/@material/icon-button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/dialog/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/dom": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.7f224ddd4.0.tgz",
@@ -8137,24 +7170,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/fab/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/fab/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/feature-targeting": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.7f224ddd4.0.tgz",
@@ -8173,244 +7188,62 @@
"@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"
- }
- },
- "node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-8OE173r8taUKiyf0Ua/4+mPvd6bjqUz+7pk2JP2alAedl2CHuPlaGCBLSM2Kllbon9SstBca1qauNMxpVbRj6w==",
- "dependencies": {
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0"
- }
- },
- "node_modules/@material/focus-ring/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/focus-ring/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/focus-ring/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/focus-ring/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/form-field": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/icon-button": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K5aBNXnYHLx6Gmx3cwoXpeCas8sVdIKhtixQXf+cBzcNivjZ8w2UcVsuMLku2QMt+FS9l+sPMc++gKoxISq0Tw==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/density": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/focus-ring": "15.0.0-canary.83355c322.0",
- "@material/ripple": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/touch-target": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/density": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-9QmfYHpf4FKiThvrOTHYh71V0Wz5NRngLQfpgDkX/jLzbAdBhphV9xw0IeucG9dzh0H+trVLYHLJOREgW70eCA==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/ripple": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-shyKWDsTt4b8LB2iVM63cW4fQeJOFOx03UtT2P0+LDKRAwhrAVmP9++SZlcsMNWwibXhsiJzNp6ysoIIsd+kaA==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/icon-button/node_modules/@material/touch-target": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-VYN005I3cA6QBSwhqSGiFS1E+vpHa/I8WfVwRPJeQ1N0LZUqJ4uOZmBxENVGD7FxuraGFl0xDEeG4roOlXsp9A==",
- "dependencies": {
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/image-list": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-scdHtgS3B7BKlwvVVIgf2AL2jKlZw7L7vXvz6CdIPx7i4wdsV42YCE2pm5N3NkwZoOjweX9AM0q1o9Al0UcPTQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/image-list/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
+ "@material/theme": "15.0.0-canary.7f224ddd4.0",
+ "@material/typography": "15.0.0-canary.7f224ddd4.0",
"tslib": "^2.1.0"
}
},
- "node_modules/@material/image-list/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
+ "node_modules/@material/focus-ring": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-Jmg1nltq4J6S6A10EGMZnvufrvU3YTi+8R8ZD9lkSbun0Fm2TVdICQt/Auyi6An9zP66oQN6c31eqO6KfIPsDg==",
"dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.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"
}
},
- "node_modules/@material/image-list/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
+ "node_modules/@material/form-field": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-fEPWgDQEPJ6WF7hNnIStxucHR9LE4DoDSMqCsGWS2Yu+NLZYLuCEecgR0UqQsl1EQdNRaFh8VH93KuxGd2hiPg==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
+ "@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"
}
},
- "node_modules/@material/image-list/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
+ "node_modules/@material/icon-button": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-DcK7IL4ICY/DW+48YQZZs9g0U1kRaW0Wb0BxhvppDMYziHo/CTpFdle4gjyuTyRxPOdHQz5a97ru48Z9O4muTw==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.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/theme": "15.0.0-canary.7f224ddd4.0",
+ "@material/touch-target": "15.0.0-canary.7f224ddd4.0",
"tslib": "^2.1.0"
}
},
- "node_modules/@material/image-list/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
+ "node_modules/@material/image-list": {
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-voMjG2p80XbjL1B2lmF65zO5gEgJOVKClLdqh4wbYzYfwY/SR9c8eLvlYG7DLdFaFBl/7gGxD8TvvZ329HUFPw==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
+ "@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"
}
},
@@ -8467,14 +7300,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/list/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/menu": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.7f224ddd4.0.tgz",
@@ -8509,14 +7334,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/menu/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/mwc-base": {
"version": "0.27.0",
"resolved": "https://registry.npmjs.org/@material/mwc-base/-/mwc-base-0.27.0.tgz",
@@ -11720,16 +10537,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/radio/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
"node_modules/@material/ripple": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.7f224ddd4.0.tgz",
@@ -11794,14 +10601,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/select/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/shape": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.7f224ddd4.0.tgz",
@@ -11831,14 +10630,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/slider/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/snackbar": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.7f224ddd4.0.tgz",
@@ -11860,62 +10651,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/snackbar/node_modules/@material/button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/snackbar/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/snackbar/node_modules/@material/icon-button": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/snackbar/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/switch": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.7f224ddd4.0.tgz",
@@ -11937,24 +10672,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/switch/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/switch/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/tab": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.7f224ddd4.0.tgz",
@@ -11992,14 +10709,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/tab-bar/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/tab-indicator": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.7f224ddd4.0.tgz",
@@ -12025,24 +10734,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/tab/node_modules/@material/focus-ring": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz",
- "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"
- }
- },
- "node_modules/@material/tab/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/textfield": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.7f224ddd4.0.tgz",
@@ -12065,14 +10756,6 @@
"tslib": "^2.1.0"
}
},
- "node_modules/@material/textfield/node_modules/@material/tokens": {
- "version": "15.0.0-canary.7f224ddd4.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
- "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.7f224ddd4.0"
- }
- },
"node_modules/@material/theme": {
"version": "15.0.0-canary.7f224ddd4.0",
"resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.7f224ddd4.0.tgz",
@@ -12083,171 +10766,30 @@
}
},
"node_modules/@material/tokens": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-g+YtonifCrincqTGIAS6/Xi2JO5wgeQVHhPkRkc4jq08h161YaqpaTBQ3s9rTwtr9WvprsqRIzFUr0Oevgr/OA==",
- "dependencies": {
- "@material/elevation": "15.0.0-canary.83355c322.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tokens/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
+ "@material/elevation": "15.0.0-canary.7f224ddd4.0"
}
},
"node_modules/@material/tooltip": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-o9CNX7p+g/yrJF15hFrNkmiHQ/p7d9D/uWMV+6Uj2jd8wd1FMERWzqxb07V9nktRVURt75yDJI2iDnmAbEPSZg==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/button": "15.0.0-canary.83355c322.0",
- "@material/dom": "15.0.0-canary.83355c322.0",
- "@material/elevation": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/shape": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "@material/tokens": "15.0.0-canary.83355c322.0",
- "@material/typography": "15.0.0-canary.83355c322.0",
- "safevalues": "^0.3.4",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/animation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-oCpp2A5Ql2Kj4duYWSsiJXATPVs8LYPCk6lelcLJ0kvm0IUXLfVlpE4lVH6CubOnrb2y5ByOnnnusJ6C8Mmn2A==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/base": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ruh/qYys46fwrMcVbbRRYOqdytiEC7fstjXTQRdaQLugveqLpU7lyiqVOwLbVE/1yAM+OTjJ7SRrZlk1ZvFuSw==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/dom": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-vhrq1hF5XuyyzBYQTZPUNdBxSTfeQXmzwHKwe+jIjY3MsddGTThanjywW1bivq5n4wK4JxqfvNH2WcSvlN+ozQ==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/elevation": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-jox39qn54gQKmFYqzQnYubW2tR/1x5k7fpxHhaeeSsm8XZ6gwmVYNXIHd/ZJBXjPo3kbbh7ihEMf7BJZGuy3AQ==",
- "dependencies": {
- "@material/animation": "15.0.0-canary.83355c322.0",
- "@material/base": "15.0.0-canary.83355c322.0",
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/feature-targeting": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-zNUdpFhcgJ/O3m/mhlfSgEAZpIvm9Q85IaEXaOQfb000wbqpAL9x/D6eQun9Uo5kMLE8sKbuRnDFVfVJFzWw3g==",
- "dependencies": {
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/rtl": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-ZOb9L00NFDEBTD5KjVzzXBXcAMc5rQ0MfyPL8O17zUvDQKuXaoemDKRTKGWVeAchyR2qm1u0gW69JRxr347ROw==",
- "dependencies": {
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/shape": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-K9MCIs6b4FiCpXIxT0XwLa/D/qG0LHGop2MmdZ+L3ab/WdR/v2t6tkg3HGCwropYrtpc5NbzHiD3ykfsbUnwNg==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/rtl": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/theme": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Doskj4MtWczHRGzJscXD18WR4vPJ3clfZSlV/AhtE6pxnlyGjZd2pNSw/2fR1Ys06XwbQGMb47exylpumB/tzw==",
- "dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "tslib": "^2.1.0"
- }
- },
- "node_modules/@material/tooltip/node_modules/@material/typography": {
- "version": "15.0.0-canary.83355c322.0",
- "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.83355c322.0.tgz",
- "integrity": "sha512-Ba5zcZeJ3qgj4ngSdKROWXhxPsMEmqKiMsnhz4b8dGBJjyro2bBTiW1KTNw0SaTDd2Ma1L0FEVxygJ/rggmuHQ==",
+ "version": "15.0.0-canary.7f224ddd4.0",
+ "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.7f224ddd4.0.tgz",
+ "integrity": "sha512-8qNk3pmPLTnam3XYC1sZuplQXW9xLn4Z4MI3D+U17Q7pfNZfoOugGr+d2cLA9yWAEjVJYB0mj8Yu86+udo4N9w==",
"dependencies": {
- "@material/feature-targeting": "15.0.0-canary.83355c322.0",
- "@material/theme": "15.0.0-canary.83355c322.0",
+ "@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"
}
},
diff --git a/package.json b/package.json
index 40af06a344..71f129a26b 100644
--- a/package.json
+++ b/package.json
@@ -42,13 +42,13 @@
"@knapsack/app": "^4.41.14",
"@knapsack/renderer-angular": "^4.41.14",
"@knapsack/renderer-web-components": "^4.41.14",
- "@material/banner": "15.0.0-canary.83355c322.0",
- "@material/button": "15.0.0-canary.83355c322.0",
- "@material/card": "15.0.0-canary.83355c322.0",
- "@material/chips": "15.0.0-canary.83355c322.0",
- "@material/data-table": "15.0.0-canary.83355c322.0",
- "@material/icon-button": "15.0.0-canary.83355c322.0",
- "@material/image-list": "15.0.0-canary.83355c322.0",
+ "@material/banner": "15.0.0-canary.7f224ddd4.0",
+ "@material/button": "15.0.0-canary.7f224ddd4.0",
+ "@material/card": "15.0.0-canary.7f224ddd4.0",
+ "@material/chips": "15.0.0-canary.7f224ddd4.0",
+ "@material/data-table": "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/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-circular-progress": "^0.27.0",
@@ -70,7 +70,7 @@
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-top-app-bar": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
- "@material/tooltip": "15.0.0-canary.83355c322.0",
+ "@material/tooltip": "15.0.0-canary.7f224ddd4.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"easymde": "^2.18.0",