@operato/styles 2.0.0-alpha.148 → 2.0.0-alpha.149
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/src/common-grist-styles.js +4 -3
- package/dist/src/common-grist-styles.js.map +1 -1
- package/dist/src/common-header-styles.js +2 -1
- package/dist/src/common-header-styles.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/common-grist-styles.ts +4 -3
- package/src/common-header-styles.ts +2 -1
- package/themes/md-typescale-styles.css +15 -15
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,15 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.0.0-alpha.149](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.148...v2.0.0-alpha.149) (2024-05-30)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* styles ([9ec269b](https://github.com/hatiolab/operato/commit/9ec269b18bc82a931083137214fb6e3017201107))
|
12
|
+
|
13
|
+
|
14
|
+
|
6
15
|
## [2.0.0-alpha.148](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.147...v2.0.0-alpha.148) (2024-05-30)
|
7
16
|
|
8
17
|
|
@@ -85,7 +85,8 @@ export const CommonGristStyles = css `
|
|
85
85
|
justify-content: center;
|
86
86
|
gap: 0px 10px;
|
87
87
|
|
88
|
-
background-color: var(--md-sys-color-
|
88
|
+
background-color: var(--md-sys-color-primary-container);
|
89
|
+
color: var(--md-sys-color-on-primary-container);
|
89
90
|
border: 0;
|
90
91
|
border-radius: 50%;
|
91
92
|
padding: 5px;
|
@@ -95,13 +96,13 @@ export const CommonGristStyles = css `
|
|
95
96
|
}
|
96
97
|
|
97
98
|
#add button:hover {
|
98
|
-
background-color: var(--
|
99
|
+
background-color: var(--md-sys-color-on-primary-container);
|
100
|
+
color: var(--md-sys-color-primary-container);
|
99
101
|
box-shadow: var(--box-shadow);
|
100
102
|
}
|
101
103
|
|
102
104
|
#add button md-icon {
|
103
105
|
font-size: 1.5em;
|
104
|
-
color: var(--md-sys-color-on-primary-container);
|
105
106
|
}
|
106
107
|
|
107
108
|
#filters {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"common-grist-styles.js","sourceRoot":"","sources":["../../src/common-grist-styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,CAAA
|
1
|
+
{"version":3,"file":"common-grist-styles.js","sourceRoot":"","sources":["../../src/common-grist-styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqInC,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const CommonGristStyles = css`\n :host {\n display: flex;\n\n width: 100%;\n }\n\n ox-grist {\n flex: 1;\n overflow-y: auto;\n }\n\n [slot='headroom'] {\n display: flex;\n flex-direction: row;\n gap: 0 10px;\n align-items: center;\n padding: var(--spacing-small) var(--spacing-medium);\n\n --md-icon-size: var(--icon-size-medium);\n }\n\n [slot='headroom']:empty {\n padding: 0;\n }\n\n #sorters md-icon,\n #modes md-icon {\n --md-icon-size: var(--icon-size-small);\n }\n\n [slot='setting'] {\n position: absolute;\n top: -2px;\n right: 0;\n }\n\n #sorters {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n margin-left: auto;\n margin-right: var(--spacing-small);\n padding-left: var(--spacing-tiny);\n border-bottom: var(--md-sys-color-outline);\n position: relative;\n color: var(--md-sys-color-on-secondary-container);\n font-size: var(--fontsize-default);\n user-select: none;\n }\n\n #sorters > * {\n padding: var(--spacing-tiny);\n vertical-align: middle;\n }\n\n #modes > * {\n padding: var(--spacing-tiny);\n opacity: 0.5;\n color: var(--md-sys-color-on-primary-container);\n cursor: pointer;\n }\n\n #modes > md-icon[active] {\n border-radius: 9px;\n background-color: var(--md-sys-color-secondary-container);\n opacity: 1;\n color: var(--md-sys-color-on-secondary-container);\n cursor: default;\n }\n\n #modes > md-icon:hover {\n opacity: 1;\n color: var(--md-sys-color-on-secondary-container);\n }\n\n #add {\n text-align: right;\n }\n\n #add button {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0px 10px;\n\n background-color: var(--md-sys-color-primary-container);\n color: var(--md-sys-color-on-primary-container);\n border: 0;\n border-radius: 50%;\n padding: 5px;\n width: 30px;\n height: 30px;\n cursor: pointer;\n }\n\n #add button:hover {\n background-color: var(--md-sys-color-on-primary-container);\n color: var(--md-sys-color-primary-container);\n box-shadow: var(--box-shadow);\n }\n\n #add button md-icon {\n font-size: 1.5em;\n }\n\n #filters {\n flex: 1;\n\n display: flex;\n align-items: center;\n }\n\n #filters > * {\n margin-right: var(--spacing-small);\n }\n\n @media only screen and (max-width: 460px) {\n [slot='headroom'] {\n box-shadow: var(--box-shadow);\n padding: 0;\n }\n\n #modes {\n display: none;\n }\n\n #add {\n position: absolute;\n top: 10px;\n right: 10px;\n }\n }\n`\n"]}
|
@@ -42,7 +42,8 @@ export const CommonHeaderStyles = css `
|
|
42
42
|
}
|
43
43
|
|
44
44
|
label {
|
45
|
-
font: var(--md-sys-typescale-label-medium-weight
|
45
|
+
font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
46
|
+
var(--fontsize-default) var(--theme-font);
|
46
47
|
color: var(--md-sys-color-primary);
|
47
48
|
}
|
48
49
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"common-header-styles.js","sourceRoot":"","sources":["../../src/common-header-styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,kBAAkB,GAAG,GAAG,CAAA
|
1
|
+
{"version":3,"file":"common-header-styles.js","sourceRoot":"","sources":["../../src/common-header-styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,kBAAkB,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4HpC,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const CommonHeaderStyles = css`\n .header {\n display: grid;\n grid-template-areas:\n 'title actions'\n 'filters filters';\n gap: var(--spacing-small) var(--spacing-medium);\n padding: calc(var(--spacing-medium) / 2) var(--spacing-medium);\n\n align-items: center;\n\n .title {\n grid-area: title;\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: var(--spacing-small);\n\n font: var(--subtitle-font);\n color: var(--md-sys-color-on-secondary-container);\n text-transform: capitalize;\n }\n\n .filters {\n grid-area: filters;\n border: 1px solid var(--md-sys-color-outline-variant);\n border-radius: var(--md-sys-shape-corner-small, 5px);\n background-color: var(--md-sys-color-surface-container);\n padding: var(--spacing-small) var(--spacing-medium);\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: var(--spacing-large);\n\n .filter {\n display: flex;\n flex-direction: row;\n\n align-items: center;\n gap: var(--spacing-small);\n }\n\n label {\n font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))\n var(--fontsize-default) var(--theme-font);\n color: var(--md-sys-color-primary);\n }\n }\n\n .filters:empty {\n display: none;\n }\n\n .actions {\n grid-area: actions;\n margin-left: auto;\n display: flex;\n flex-direction: row-reverse;\n align-items: center;\n gap: var(--spacing-small);\n\n * {\n cursor: pointer;\n }\n\n .textbtn,\n .iconbtn {\n background-color: var(--md-sys-color-secondary-container);\n border: var(--button-border);\n border-radius: var(--button-border-radius);\n padding: var(--button-padding);\n\n color: var(--md-sys-color-on-secondary-container);\n font: var(--button-font);\n\n &:hover {\n border: var(--button-activ-border);\n background-color: var(--button-activ-background-color);\n box-shadow: var(--button-active-box-shadow);\n\n color: var(--md-sys-color-on-secondary);\n }\n }\n\n .iconbtn {\n padding: var(--spacing-tiny);\n line-height: 0.9;\n\n md-icon {\n --md-icon-size: var(--icon-size-medium);\n }\n }\n }\n\n :empty {\n padding: 0;\n }\n }\n\n @media only screen and (max-width: 460px) {\n .header {\n padding: 0;\n gap: 0;\n\n grid-template-areas:\n 'actions'\n 'filters';\n\n .title {\n display: none;\n }\n\n .filters {\n flex-wrap: wrap;\n gap: var(--spacing-medium);\n border: none;\n }\n\n .actions {\n background-color: var(--md-sys-color-on-secondary-container);\n margin: 0;\n }\n }\n }\n`\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/button-container-styles.ts","../src/common-button-styles.ts","../src/common-grist-styles.ts","../src/common-header-styles.ts","../src/headroom-styles.ts","../src/scrollbar-styles.ts","../src/spinner-styles.ts","../src/tooltip-styles.ts","../src/index.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../stories/button-container-styles.stories.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../../context/dist/src/layouts/ox-context-page-toolbar.d.ts","../stories/common-header-styles-actions.stories.ts","../stories/common-header-styles-pure.stories.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e056bb30bf82271634daeee81f772f4a7960085f01f6d4d09c8da1ebe5f6a623","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576",{"version":"86492a546c3308feaf1dde967afd325c321483b5e96f5fa9e9b6e691dc23fa9e","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","2524f58c8d67af441b487c0ce0e0dd9c18bf3d06c05f621874dcda9780d8e22c","c7dd759e5948a94b42422ba7cf70eb8455416def9447614a3bdc1a99b81fc8bb","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"09d7140dcff2f34d58b0c2e215ba9abfacd9c65a2fd82de0b65e2737e6308d2f","signature":"bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd"},{"version":"bd0450d595c3777f9a0a05faa5bb0715a43982641390c6f58c21f32e18c08438","signature":"7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b"},{"version":"0929eb18eac5b622d0d8e2e40ce736c70963589dedada3a34ba017c5defb2ff7","signature":"1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8"},{"version":"d8993001e6ccdcf56ce2ce21efd576343c478b36861ddcb07d235094bf96c3a0","signature":"bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6"},{"version":"b0ff03d3445957ba558b4121ffc8df30446e85467db136fa0e5ec0df039685da","signature":"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448"},{"version":"e47f7d9c16090ee54ba04a9c2880bfc4d55c63e6d04e1213064c2b3850f9708b","signature":"336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048"},{"version":"fedb425d33c53f7fabfa76f6a7043bdfe9ae6b152ca660598f0f2a77c7a49ab2","signature":"571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023"},{"version":"c06688ae39af41f2dfef301798a4f8d797f86eeab022551d33baad05706b9b35","signature":"2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e"},{"version":"b0a44a4472a2cfef50b05eb5e5cb75bc6633873ece8b40a3a36c8dd79991b472","signature":"b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146"},"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7",{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true},"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec",{"version":"e574417d82f7f9565fb6871b7cdeb0d17d7931c14d42e9aed8a00e721ff3750e","signature":"72bd2fe60e23b74c6ef1819121d5f65db72f531e47af12c2978899cf40347db3"},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","950fc6ac97ce76785f03282f907aac4b2cbd8ac74b17c963f1389847962cbc20","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","fab8dd946fe1c4092117c3939e822c4f7dcf827aec91db922f45c71c44085f57","ea4d0ede198caccace0378164a34bd26dc5df276aff53e03ec59dd22fdc2347a","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241",{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true},"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0",{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true},"2c887f29f6796ea68247c626acbef560ff29bb8d0042b641e4fc69559841463d",{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true},"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","55abfe582ce4b1917687712edf558626a341b1b1f339452509d879b633a94557","0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f",{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true},"93458a5ce30da930d0ed8922929cddf433fc6f4200815b6097d3e28c5ea87488","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d",{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true},"3c523c4338a858825c62005f03ff49eeaf8290bdda52a8b8554be555bab7a077","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244","1972258a991ecd2a222b87a5acaa2740de6d464a1e04b8eca6edfc1c08a2fae3",{"version":"890143c6db371311bf62d8e0d312694b2f62baa98b1a862e1fb1b7d2f1b18718","signature":"193a50bf7d0766fbec91f97c01325e5deb2665b1d3f700e9951aa920d191ae33"},{"version":"097da24c410f1165e5bd18ebeccf27ac28c13ef20b8115d225d19fd5500d0ad4","signature":"965606d730f8bb669eb8771c9aa1c1a6c89038ddbc5b1dce4b98c0d49cb567d7"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"90d7eec51e402c8536db1312ef5994a2566e34cc3eb42ce0923a724748310ae7","affectsGlobalScope":true},"2d6336a655a5cfd68661f773f611133b6992c25506b3f72b7773503924130a91","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"e0d3b6c099dfc2e8d29bdeaf2753e2ec1225b1d7896c3afeadfd284a3c0025ec","affectsGlobalScope":true},"e5999af8a68622f7eaac6745a421f9d438bd847b3e012575e2a395ea5e752fde","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","3bb6e21a9f30417c0a059e240b3f8f70c8af9c4cb6f2fd1bc2db594c647e285f","7483ef24249f6a3e24eb3d8136ec7fe0633cd6f8ffe752e2a8d99412aff35bb7","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"3e7dd0014ec3594783dc83ba8c06c13f191931a93e4d1b743371b2e7150cb9d4","affectsGlobalScope":true},"9230a0b87a2d01d26e770bf55de59f71f7631125095926d51d93942694e26f6b","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","cb8bd3f7d20c3f1a671f1a0c4619d9f90c151bcd52b32eb405f35e6b2dcedac2","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","26d5daea2aa3ba8e9d5540c75e1fec598ca76cf23ff0a772c5e1ae99d100d714","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"631a5f10cf3f2f0c962c60e2ad42e678a87067cb18d8437ba3caa6bd6875e04b","b329bfc2efb22b436a24554eadcdc29b7380c6ddfbfeb76653b7961020f725e7","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"9bc44886a3ef2320d7fcda7f245de4d991af93935b850692a98465126caba07d","affectsGlobalScope":true},{"version":"49137120ae42f2301ae81f904c6ada72215d2255454d7b4992458bff7ea241de","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","b98b461ffdbf07ca87e20cf007fe81084e487f2ddcea8d45b88e84ce70ddf6a4","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"77e7388c530402124af6eaf33e4693a3546be992657643a04533760296ee631c","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"ac14eb65c59722f0333e776a73e6a02cea23b5aa857a749ea176daf4e960e872","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[[58,66],70,126,127],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[48,49],[57,105],[54,57,98,100,101,102,103],[54,95,104],[104],[57,111],[57,94],[54,57],[57,96],[57,97],[57,67],[57],[57,102],[57,101],[54,57,96],[57,99],[128],[164],[165,170,199],[166,171,177,178,185,196,207],[166,167,177,185],[168,208],[169,170,178,186],[170,196,204],[171,173,177,185],[164,172],[173,174],[177],[175,177],[164,177],[177,178,179,196,207],[177,178,179,192,196,199],[162,165,212],[173,177,180,185,196,207],[177,178,180,181,185,196,204,207],[180,182,196,204,207],[128,129,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214],[177,183],[184,207,212],[173,177,185,196],[186],[187],[164,188],[185,186,189,206,212],[190],[191],[177,192,193],[192,194,208,210],[165,177,196,197,198,199],[165,196,198],[196,197],[199],[200],[164,196],[177,202,203],[202,203],[170,185,196,204],[205],[185,206],[165,180,191,207],[170,208],[196,209],[184,210],[211],[165,170,177,179,188,196,207,210,212],[196,213],[51],[50,54],[54],[52,53],[50,54,55,56],[77],[139,143,207],[139,196,207],[134],[136,139,204,207],[185,204],[215],[134,215],[136,139,185,207],[131,132,135,138,165,177,196,207],[131,137],[135,139,165,199,207,215],[165,215],[155,165,215],[133,134,215],[139],[133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161],[139,146,147],[137,139,147,148],[138],[131,134,139],[139,143,147,148],[143],[137,139,142,207],[131,136,137,139,143,146],[165,196],[134,139,155,165,212,215],[57,68,77,124],[57,110],[89,110,113,115,116,117,118,119,120,121,122,123],[88],[108,114],[68,112],[90,91,92,93,107,109],[57,108],[54,57,68],[54,57,68,90],[54,57,90],[54,57,92],[54,57,68,106],[80,81,82,83],[76,79,84,85,86,87],[77,78],[71,72,73,74,75],[72,73],[71,72,74],[47,57],[47],[47,58,59,60,61,62,63,64,65],[47,57,58,68,69],[47,57,61,68,69,125],[47,57,61,68,69],[58,59,60,61,62,63,64,65],[57,68]],"referencedMap":[[50,1],[106,2],[104,3],[105,4],[111,5],[112,6],[95,7],[94,8],[97,9],[98,10],[68,11],[67,8],[96,12],[103,13],[102,14],[99,15],[100,16],[69,12],[128,17],[129,17],[164,18],[165,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,27],[176,28],[175,29],[177,30],[178,31],[179,32],[163,33],[180,34],[181,35],[182,36],[215,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,47],[194,48],[196,49],[198,50],[197,51],[199,52],[200,53],[201,54],[202,55],[203,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[52,67],[55,68],[53,69],[54,70],[57,71],[78,72],[146,73],[153,74],[145,73],[160,75],[137,76],[136,77],[159,78],[154,79],[157,80],[139,81],[138,82],[134,83],[133,84],[156,85],[135,86],[140,87],[144,87],[162,88],[161,87],[148,89],[149,90],[151,91],[147,92],[150,93],[155,78],[142,94],[143,95],[152,96],[132,97],[158,98],[125,99],[121,100],[122,72],[114,8],[123,8],[124,101],[89,102],[117,103],[118,103],[115,103],[116,103],[120,103],[119,103],[113,104],[110,105],[109,106],[108,107],[91,108],[92,109],[93,110],[90,8],[107,111],[84,112],[85,12],[88,113],[79,114],[76,115],[74,116],[73,117],[58,118],[59,119],[60,118],[61,118],[62,118],[66,120],[63,118],[64,118],[65,118],[70,121],[126,122],[127,123]],"exportedModulesMap":[[50,1],[106,2],[104,3],[105,4],[111,5],[112,6],[95,7],[94,8],[97,9],[98,10],[68,11],[67,8],[96,12],[103,13],[102,14],[99,15],[100,16],[69,12],[128,17],[129,17],[164,18],[165,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,27],[176,28],[175,29],[177,30],[178,31],[179,32],[163,33],[180,34],[181,35],[182,36],[215,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,47],[194,48],[196,49],[198,50],[197,51],[199,52],[200,53],[201,54],[202,55],[203,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[52,67],[55,68],[53,69],[54,70],[57,71],[78,72],[146,73],[153,74],[145,73],[160,75],[137,76],[136,77],[159,78],[154,79],[157,80],[139,81],[138,82],[134,83],[133,84],[156,85],[135,86],[140,87],[144,87],[162,88],[161,87],[148,89],[149,90],[151,91],[147,92],[150,93],[155,78],[142,94],[143,95],[152,96],[132,97],[158,98],[125,99],[121,100],[122,72],[114,8],[123,8],[124,101],[89,102],[117,103],[118,103],[115,103],[116,103],[120,103],[119,103],[113,104],[110,105],[109,106],[108,107],[91,108],[92,109],[93,110],[90,8],[107,111],[84,112],[85,12],[88,113],[79,114],[76,115],[74,116],[73,117],[58,12],[60,12],[61,12],[62,12],[66,124],[63,12],[64,12],[65,12],[70,125],[126,125],[127,125]],"semanticDiagnosticsPerFile":[48,49,50,106,104,105,111,112,95,94,97,98,68,67,96,103,102,101,99,100,69,216,128,129,164,165,166,167,168,169,170,171,172,173,174,176,175,177,178,179,163,214,180,181,182,215,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,197,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,52,51,130,55,53,56,54,57,78,77,47,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,146,153,145,160,137,136,159,154,157,139,138,134,133,156,135,140,141,144,131,162,161,148,149,151,147,150,155,142,143,152,132,158,125,121,122,114,123,124,89,117,118,115,116,120,119,113,110,109,108,91,92,93,90,107,80,82,83,84,81,85,87,88,86,79,71,76,74,73,75,72,58,59,60,61,62,66,63,64,65,70,126,127]},"version":"5.4.5"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/button-container-styles.ts","../src/common-button-styles.ts","../src/common-grist-styles.ts","../src/common-header-styles.ts","../src/headroom-styles.ts","../src/scrollbar-styles.ts","../src/spinner-styles.ts","../src/tooltip-styles.ts","../src/index.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../stories/button-container-styles.stories.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../../context/dist/src/layouts/ox-context-page-toolbar.d.ts","../stories/common-header-styles-actions.stories.ts","../stories/common-header-styles-pure.stories.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e056bb30bf82271634daeee81f772f4a7960085f01f6d4d09c8da1ebe5f6a623","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576",{"version":"86492a546c3308feaf1dde967afd325c321483b5e96f5fa9e9b6e691dc23fa9e","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","2524f58c8d67af441b487c0ce0e0dd9c18bf3d06c05f621874dcda9780d8e22c","c7dd759e5948a94b42422ba7cf70eb8455416def9447614a3bdc1a99b81fc8bb","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"09d7140dcff2f34d58b0c2e215ba9abfacd9c65a2fd82de0b65e2737e6308d2f","signature":"bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd"},{"version":"bd0450d595c3777f9a0a05faa5bb0715a43982641390c6f58c21f32e18c08438","signature":"7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b"},{"version":"01d13dfd5b016923cd9dd520cbe09ee9505ec3ad45e79867825a41f0365cf3f7","signature":"1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8"},{"version":"277da5d4f2d2ec509610b3f7df85d974531483becdd43e7d8b1694ce801bd4fe","signature":"bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6"},{"version":"b0ff03d3445957ba558b4121ffc8df30446e85467db136fa0e5ec0df039685da","signature":"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448"},{"version":"e47f7d9c16090ee54ba04a9c2880bfc4d55c63e6d04e1213064c2b3850f9708b","signature":"336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048"},{"version":"fedb425d33c53f7fabfa76f6a7043bdfe9ae6b152ca660598f0f2a77c7a49ab2","signature":"571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023"},{"version":"c06688ae39af41f2dfef301798a4f8d797f86eeab022551d33baad05706b9b35","signature":"2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e"},{"version":"b0a44a4472a2cfef50b05eb5e5cb75bc6633873ece8b40a3a36c8dd79991b472","signature":"b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146"},"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7",{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true},"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec",{"version":"e574417d82f7f9565fb6871b7cdeb0d17d7931c14d42e9aed8a00e721ff3750e","signature":"72bd2fe60e23b74c6ef1819121d5f65db72f531e47af12c2978899cf40347db3"},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","950fc6ac97ce76785f03282f907aac4b2cbd8ac74b17c963f1389847962cbc20","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","9c7568f9c75cf6a7d35dc9f18c5971cd5b21344c686c7cce56b3558d3305d40f","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","3e62a55b950132d6eeacc607b7a1bff990d5484347b2be5a1f54db51af30ff25","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","fab8dd946fe1c4092117c3939e822c4f7dcf827aec91db922f45c71c44085f57","ea4d0ede198caccace0378164a34bd26dc5df276aff53e03ec59dd22fdc2347a","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241",{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true},"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0",{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true},"2c887f29f6796ea68247c626acbef560ff29bb8d0042b641e4fc69559841463d",{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true},"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","55abfe582ce4b1917687712edf558626a341b1b1f339452509d879b633a94557","0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f",{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true},"93458a5ce30da930d0ed8922929cddf433fc6f4200815b6097d3e28c5ea87488","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d",{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true},"3c523c4338a858825c62005f03ff49eeaf8290bdda52a8b8554be555bab7a077","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244","1972258a991ecd2a222b87a5acaa2740de6d464a1e04b8eca6edfc1c08a2fae3",{"version":"890143c6db371311bf62d8e0d312694b2f62baa98b1a862e1fb1b7d2f1b18718","signature":"193a50bf7d0766fbec91f97c01325e5deb2665b1d3f700e9951aa920d191ae33"},{"version":"097da24c410f1165e5bd18ebeccf27ac28c13ef20b8115d225d19fd5500d0ad4","signature":"965606d730f8bb669eb8771c9aa1c1a6c89038ddbc5b1dce4b98c0d49cb567d7"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"90d7eec51e402c8536db1312ef5994a2566e34cc3eb42ce0923a724748310ae7","affectsGlobalScope":true},"2d6336a655a5cfd68661f773f611133b6992c25506b3f72b7773503924130a91","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"e0d3b6c099dfc2e8d29bdeaf2753e2ec1225b1d7896c3afeadfd284a3c0025ec","affectsGlobalScope":true},"e5999af8a68622f7eaac6745a421f9d438bd847b3e012575e2a395ea5e752fde","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","3bb6e21a9f30417c0a059e240b3f8f70c8af9c4cb6f2fd1bc2db594c647e285f","7483ef24249f6a3e24eb3d8136ec7fe0633cd6f8ffe752e2a8d99412aff35bb7","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"3e7dd0014ec3594783dc83ba8c06c13f191931a93e4d1b743371b2e7150cb9d4","affectsGlobalScope":true},"9230a0b87a2d01d26e770bf55de59f71f7631125095926d51d93942694e26f6b","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","cb8bd3f7d20c3f1a671f1a0c4619d9f90c151bcd52b32eb405f35e6b2dcedac2","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","26d5daea2aa3ba8e9d5540c75e1fec598ca76cf23ff0a772c5e1ae99d100d714","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"631a5f10cf3f2f0c962c60e2ad42e678a87067cb18d8437ba3caa6bd6875e04b","b329bfc2efb22b436a24554eadcdc29b7380c6ddfbfeb76653b7961020f725e7","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"9bc44886a3ef2320d7fcda7f245de4d991af93935b850692a98465126caba07d","affectsGlobalScope":true},{"version":"49137120ae42f2301ae81f904c6ada72215d2255454d7b4992458bff7ea241de","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","b98b461ffdbf07ca87e20cf007fe81084e487f2ddcea8d45b88e84ce70ddf6a4","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"77e7388c530402124af6eaf33e4693a3546be992657643a04533760296ee631c","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"ac14eb65c59722f0333e776a73e6a02cea23b5aa857a749ea176daf4e960e872","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[[58,66],70,126,127],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[48,49],[57,105],[54,57,98,100,101,102,103],[54,95,104],[104],[57,111],[57,94],[54,57],[57,96],[57,97],[57,67],[57],[57,102],[57,101],[54,57,96],[57,99],[128],[164],[165,170,199],[166,171,177,178,185,196,207],[166,167,177,185],[168,208],[169,170,178,186],[170,196,204],[171,173,177,185],[164,172],[173,174],[177],[175,177],[164,177],[177,178,179,196,207],[177,178,179,192,196,199],[162,165,212],[173,177,180,185,196,207],[177,178,180,181,185,196,204,207],[180,182,196,204,207],[128,129,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214],[177,183],[184,207,212],[173,177,185,196],[186],[187],[164,188],[185,186,189,206,212],[190],[191],[177,192,193],[192,194,208,210],[165,177,196,197,198,199],[165,196,198],[196,197],[199],[200],[164,196],[177,202,203],[202,203],[170,185,196,204],[205],[185,206],[165,180,191,207],[170,208],[196,209],[184,210],[211],[165,170,177,179,188,196,207,210,212],[196,213],[51],[50,54],[54],[52,53],[50,54,55,56],[77],[139,143,207],[139,196,207],[134],[136,139,204,207],[185,204],[215],[134,215],[136,139,185,207],[131,132,135,138,165,177,196,207],[131,137],[135,139,165,199,207,215],[165,215],[155,165,215],[133,134,215],[139],[133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161],[139,146,147],[137,139,147,148],[138],[131,134,139],[139,143,147,148],[143],[137,139,142,207],[131,136,137,139,143,146],[165,196],[134,139,155,165,212,215],[57,68,77,124],[57,110],[89,110,113,115,116,117,118,119,120,121,122,123],[88],[108,114],[68,112],[90,91,92,93,107,109],[57,108],[54,57,68],[54,57,68,90],[54,57,90],[54,57,92],[54,57,68,106],[80,81,82,83],[76,79,84,85,86,87],[77,78],[71,72,73,74,75],[72,73],[71,72,74],[47,57],[47],[47,58,59,60,61,62,63,64,65],[47,57,58,68,69],[47,57,61,68,69,125],[47,57,61,68,69],[58,59,60,61,62,63,64,65],[57,68]],"referencedMap":[[50,1],[106,2],[104,3],[105,4],[111,5],[112,6],[95,7],[94,8],[97,9],[98,10],[68,11],[67,8],[96,12],[103,13],[102,14],[99,15],[100,16],[69,12],[128,17],[129,17],[164,18],[165,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,27],[176,28],[175,29],[177,30],[178,31],[179,32],[163,33],[180,34],[181,35],[182,36],[215,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,47],[194,48],[196,49],[198,50],[197,51],[199,52],[200,53],[201,54],[202,55],[203,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[52,67],[55,68],[53,69],[54,70],[57,71],[78,72],[146,73],[153,74],[145,73],[160,75],[137,76],[136,77],[159,78],[154,79],[157,80],[139,81],[138,82],[134,83],[133,84],[156,85],[135,86],[140,87],[144,87],[162,88],[161,87],[148,89],[149,90],[151,91],[147,92],[150,93],[155,78],[142,94],[143,95],[152,96],[132,97],[158,98],[125,99],[121,100],[122,72],[114,8],[123,8],[124,101],[89,102],[117,103],[118,103],[115,103],[116,103],[120,103],[119,103],[113,104],[110,105],[109,106],[108,107],[91,108],[92,109],[93,110],[90,8],[107,111],[84,112],[85,12],[88,113],[79,114],[76,115],[74,116],[73,117],[58,118],[59,119],[60,118],[61,118],[62,118],[66,120],[63,118],[64,118],[65,118],[70,121],[126,122],[127,123]],"exportedModulesMap":[[50,1],[106,2],[104,3],[105,4],[111,5],[112,6],[95,7],[94,8],[97,9],[98,10],[68,11],[67,8],[96,12],[103,13],[102,14],[99,15],[100,16],[69,12],[128,17],[129,17],[164,18],[165,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,27],[176,28],[175,29],[177,30],[178,31],[179,32],[163,33],[180,34],[181,35],[182,36],[215,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,47],[194,48],[196,49],[198,50],[197,51],[199,52],[200,53],[201,54],[202,55],[203,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[52,67],[55,68],[53,69],[54,70],[57,71],[78,72],[146,73],[153,74],[145,73],[160,75],[137,76],[136,77],[159,78],[154,79],[157,80],[139,81],[138,82],[134,83],[133,84],[156,85],[135,86],[140,87],[144,87],[162,88],[161,87],[148,89],[149,90],[151,91],[147,92],[150,93],[155,78],[142,94],[143,95],[152,96],[132,97],[158,98],[125,99],[121,100],[122,72],[114,8],[123,8],[124,101],[89,102],[117,103],[118,103],[115,103],[116,103],[120,103],[119,103],[113,104],[110,105],[109,106],[108,107],[91,108],[92,109],[93,110],[90,8],[107,111],[84,112],[85,12],[88,113],[79,114],[76,115],[74,116],[73,117],[58,12],[60,12],[61,12],[62,12],[66,124],[63,12],[64,12],[65,12],[70,125],[126,125],[127,125]],"semanticDiagnosticsPerFile":[48,49,50,106,104,105,111,112,95,94,97,98,68,67,96,103,102,101,99,100,69,216,128,129,164,165,166,167,168,169,170,171,172,173,174,176,175,177,178,179,163,214,180,181,182,215,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,197,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,52,51,130,55,53,56,54,57,78,77,47,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,146,153,145,160,137,136,159,154,157,139,138,134,133,156,135,140,141,144,131,162,161,148,149,151,147,150,155,142,143,152,132,158,125,121,122,114,123,124,89,117,118,115,116,120,119,113,110,109,108,91,92,93,90,107,80,82,83,84,81,85,87,88,86,79,71,76,74,73,75,72,58,59,60,61,62,66,63,64,65,70,126,127]},"version":"5.4.5"}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/styles",
|
3
3
|
"description": "Webcomponent styles following open-wc recommendations",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "2.0.0-alpha.
|
5
|
+
"version": "2.0.0-alpha.149",
|
6
6
|
"main": "dist/src/index.js",
|
7
7
|
"module": "dist/src/index.js",
|
8
8
|
"license": "MIT",
|
@@ -50,5 +50,5 @@
|
|
50
50
|
},
|
51
51
|
"customElements": "custom-elements.json",
|
52
52
|
"prettier": "@hatiolab/prettier-config",
|
53
|
-
"gitHead": "
|
53
|
+
"gitHead": "ae0a8ae9e4627a09783ea436f2498bd80880a736"
|
54
54
|
}
|
@@ -86,7 +86,8 @@ export const CommonGristStyles = css`
|
|
86
86
|
justify-content: center;
|
87
87
|
gap: 0px 10px;
|
88
88
|
|
89
|
-
background-color: var(--md-sys-color-
|
89
|
+
background-color: var(--md-sys-color-primary-container);
|
90
|
+
color: var(--md-sys-color-on-primary-container);
|
90
91
|
border: 0;
|
91
92
|
border-radius: 50%;
|
92
93
|
padding: 5px;
|
@@ -96,13 +97,13 @@ export const CommonGristStyles = css`
|
|
96
97
|
}
|
97
98
|
|
98
99
|
#add button:hover {
|
99
|
-
background-color: var(--
|
100
|
+
background-color: var(--md-sys-color-on-primary-container);
|
101
|
+
color: var(--md-sys-color-primary-container);
|
100
102
|
box-shadow: var(--box-shadow);
|
101
103
|
}
|
102
104
|
|
103
105
|
#add button md-icon {
|
104
106
|
font-size: 1.5em;
|
105
|
-
color: var(--md-sys-color-on-primary-container);
|
106
107
|
}
|
107
108
|
|
108
109
|
#filters {
|
@@ -43,7 +43,8 @@ export const CommonHeaderStyles = css`
|
|
43
43
|
}
|
44
44
|
|
45
45
|
label {
|
46
|
-
font: var(--md-sys-typescale-label-medium-weight
|
46
|
+
font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
47
|
+
var(--fontsize-default) var(--theme-font);
|
47
48
|
color: var(--md-sys-color-primary);
|
48
49
|
}
|
49
50
|
}
|
@@ -3,87 +3,87 @@
|
|
3
3
|
.md-typescale-display-small-prominent {
|
4
4
|
font: var(--md-sys-typescale-display-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
5
5
|
var(--md-sys-typescale-display-small-size, 2.25rem) / var(--md-sys-typescale-display-small-line-height, 2.75rem)
|
6
|
-
var(--md-sys-typescale-display-small-font, var(--md-ref-typeface-brand, '
|
6
|
+
var(--md-sys-typescale-display-small-font, var(--md-ref-typeface-brand, 'Roboto'));
|
7
7
|
}
|
8
8
|
.md-typescale-display-medium,
|
9
9
|
.md-typescale-display-medium-prominent {
|
10
10
|
font: var(--md-sys-typescale-display-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
11
11
|
var(--md-sys-typescale-display-medium-size, 2.8125rem) /
|
12
12
|
var(--md-sys-typescale-display-medium-line-height, 3.25rem)
|
13
|
-
var(--md-sys-typescale-display-medium-font, var(--md-ref-typeface-brand, '
|
13
|
+
var(--md-sys-typescale-display-medium-font, var(--md-ref-typeface-brand, 'Roboto'));
|
14
14
|
}
|
15
15
|
.md-typescale-display-large,
|
16
16
|
.md-typescale-display-large-prominent {
|
17
17
|
font: var(--md-sys-typescale-display-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
18
18
|
var(--md-sys-typescale-display-large-size, 3.5625rem) / var(--md-sys-typescale-display-large-line-height, 4rem)
|
19
|
-
var(--md-sys-typescale-display-large-font, var(--md-ref-typeface-brand, '
|
19
|
+
var(--md-sys-typescale-display-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
20
20
|
}
|
21
21
|
.md-typescale-headline-small,
|
22
22
|
.md-typescale-headline-small-prominent {
|
23
23
|
font: var(--md-sys-typescale-headline-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
24
24
|
var(--md-sys-typescale-headline-small-size, 1.5rem) / var(--md-sys-typescale-headline-small-line-height, 2rem)
|
25
|
-
var(--md-sys-typescale-headline-small-font, var(--md-ref-typeface-brand, '
|
25
|
+
var(--md-sys-typescale-headline-small-font, var(--md-ref-typeface-brand, 'Roboto'));
|
26
26
|
}
|
27
27
|
.md-typescale-headline-medium,
|
28
28
|
.md-typescale-headline-medium-prominent {
|
29
29
|
font: var(--md-sys-typescale-headline-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
30
30
|
var(--md-sys-typescale-headline-medium-size, 1.75rem) /
|
31
31
|
var(--md-sys-typescale-headline-medium-line-height, 2.25rem)
|
32
|
-
var(--md-sys-typescale-headline-medium-font, var(--md-ref-typeface-brand, '
|
32
|
+
var(--md-sys-typescale-headline-medium-font, var(--md-ref-typeface-brand, 'Roboto'));
|
33
33
|
}
|
34
34
|
.md-typescale-headline-large,
|
35
35
|
.md-typescale-headline-large-prominent {
|
36
36
|
font: var(--md-sys-typescale-headline-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
37
37
|
var(--md-sys-typescale-headline-large-size, 2rem) / var(--md-sys-typescale-headline-large-line-height, 2.5rem)
|
38
|
-
var(--md-sys-typescale-headline-large-font, var(--md-ref-typeface-brand, '
|
38
|
+
var(--md-sys-typescale-headline-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
39
39
|
}
|
40
40
|
.md-typescale-title-small,
|
41
41
|
.md-typescale-title-small-prominent {
|
42
42
|
font: var(--md-sys-typescale-title-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
43
43
|
var(--md-sys-typescale-title-small-size, 0.875rem) / var(--md-sys-typescale-title-small-line-height, 1.25rem)
|
44
|
-
var(--md-sys-typescale-title-small-font, var(--md-ref-typeface-plain, '
|
44
|
+
var(--md-sys-typescale-title-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
45
45
|
}
|
46
46
|
.md-typescale-title-medium,
|
47
47
|
.md-typescale-title-medium-prominent {
|
48
48
|
font: var(--md-sys-typescale-title-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
49
49
|
var(--md-sys-typescale-title-medium-size, 1rem) / var(--md-sys-typescale-title-medium-line-height, 1.5rem)
|
50
|
-
var(--md-sys-typescale-title-medium-font, var(--md-ref-typeface-plain, '
|
50
|
+
var(--md-sys-typescale-title-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
51
51
|
}
|
52
52
|
.md-typescale-title-large,
|
53
53
|
.md-typescale-title-large-prominent {
|
54
54
|
font: var(--md-sys-typescale-title-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
55
55
|
var(--md-sys-typescale-title-large-size, 1.375rem) / var(--md-sys-typescale-title-large-line-height, 1.75rem)
|
56
|
-
var(--md-sys-typescale-title-large-font, var(--md-ref-typeface-brand, '
|
56
|
+
var(--md-sys-typescale-title-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
57
57
|
}
|
58
58
|
.md-typescale-body-small,
|
59
59
|
.md-typescale-body-small-prominent {
|
60
60
|
font: var(--md-sys-typescale-body-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
61
61
|
var(--md-sys-typescale-body-small-size, 0.75rem) / var(--md-sys-typescale-body-small-line-height, 1rem)
|
62
|
-
var(--md-sys-typescale-body-small-font, var(--md-ref-typeface-plain, '
|
62
|
+
var(--md-sys-typescale-body-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
63
63
|
}
|
64
64
|
.md-typescale-body-medium,
|
65
65
|
.md-typescale-body-medium-prominent {
|
66
66
|
font: var(--md-sys-typescale-body-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
67
67
|
var(--md-sys-typescale-body-medium-size, 0.875rem) / var(--md-sys-typescale-body-medium-line-height, 1.25rem)
|
68
|
-
var(--md-sys-typescale-body-medium-font, var(--md-ref-typeface-plain, '
|
68
|
+
var(--md-sys-typescale-body-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
69
69
|
}
|
70
70
|
.md-typescale-body-large,
|
71
71
|
.md-typescale-body-large-prominent {
|
72
72
|
font: var(--md-sys-typescale-body-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
73
73
|
var(--md-sys-typescale-body-large-size, 1rem) / var(--md-sys-typescale-body-large-line-height, 1.5rem)
|
74
|
-
var(--md-sys-typescale-body-large-font, var(--md-ref-typeface-plain, '
|
74
|
+
var(--md-sys-typescale-body-large-font, var(--md-ref-typeface-plain, 'Roboto'));
|
75
75
|
}
|
76
76
|
.md-typescale-label-small,
|
77
77
|
.md-typescale-label-small-prominent {
|
78
78
|
font: var(--md-sys-typescale-label-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
79
79
|
var(--md-sys-typescale-label-small-size, 0.6875rem) / var(--md-sys-typescale-label-small-line-height, 1rem)
|
80
|
-
var(--md-sys-typescale-label-small-font, var(--md-ref-typeface-plain, '
|
80
|
+
var(--md-sys-typescale-label-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
81
81
|
}
|
82
82
|
.md-typescale-label-medium,
|
83
83
|
.md-typescale-label-medium-prominent {
|
84
84
|
font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
85
85
|
var(--md-sys-typescale-label-medium-size, 0.75rem) / var(--md-sys-typescale-label-medium-line-height, 1rem)
|
86
|
-
var(--md-sys-typescale-label-medium-font, var(--md-ref-typeface-plain, '
|
86
|
+
var(--md-sys-typescale-label-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
87
87
|
}
|
88
88
|
.md-typescale-label-medium-prominent {
|
89
89
|
font-weight: var(--md-sys-typescale-label-medium-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|
@@ -92,7 +92,7 @@
|
|
92
92
|
.md-typescale-label-large-prominent {
|
93
93
|
font: var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500))
|
94
94
|
var(--md-sys-typescale-label-large-size, 0.875rem) / var(--md-sys-typescale-label-large-line-height, 1.25rem)
|
95
|
-
var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, '
|
95
|
+
var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, 'Roboto'));
|
96
96
|
}
|
97
97
|
.md-typescale-label-large-prominent {
|
98
98
|
font-weight: var(--md-sys-typescale-label-large-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|