@operato/context 1.5.32 → 1.5.35

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 CHANGED
@@ -3,6 +3,23 @@
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
+ ### [1.5.35](https://github.com/hatiolab/operato/compare/v1.5.34...v1.5.35) (2023-11-18)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * add ox-context-page-toolbar ([d9f6c42](https://github.com/hatiolab/operato/commit/d9f6c42b7be472c4ff72fd4027494e758e0a5b1b))
12
+
13
+
14
+
15
+ ### [1.5.34](https://github.com/hatiolab/operato/compare/v1.5.33...v1.5.34) (2023-11-18)
16
+
17
+ **Note:** Version bump only for package @operato/context
18
+
19
+
20
+
21
+
22
+
6
23
  ### [1.5.32](https://github.com/hatiolab/operato/compare/v1.5.31...v1.5.32) (2023-11-16)
7
24
 
8
25
  **Note:** Version bump only for package @operato/context
@@ -0,0 +1,17 @@
1
+ import '@material/mwc-icon';
2
+ import { LitElement } from 'lit';
3
+ declare const ContextPageToolbar_base: (new (...args: any[]) => {
4
+ _storeUnsubscribe: import("redux").Unsubscribe;
5
+ connectedCallback(): void;
6
+ disconnectedCallback(): void;
7
+ stateChanged(_state: unknown): void;
8
+ readonly isConnected: boolean;
9
+ }) & typeof LitElement;
10
+ export declare class ContextPageToolbar extends ContextPageToolbar_base {
11
+ static get styles(): import("lit").CSSResult[];
12
+ context: any;
13
+ private tools?;
14
+ render(): import("lit").TemplateResult<1>;
15
+ stateChanged(state: any): void;
16
+ }
17
+ export {};
@@ -0,0 +1,90 @@
1
+ import { __decorate } from "tslib";
2
+ import '@material/mwc-icon';
3
+ import { css, html, LitElement, nothing } from 'lit';
4
+ import { customElement, property, state } from 'lit/decorators.js';
5
+ import { connect } from 'pwa-helpers/connect-mixin.js';
6
+ import { TOOL_POSITION } from '@operato/layout';
7
+ import { store } from '@operato/shell';
8
+ let ContextPageToolbar = class ContextPageToolbar extends connect(store)(LitElement) {
9
+ static get styles() {
10
+ return [
11
+ css `
12
+ :host {
13
+ display: flex;
14
+ flex-direction: row-reverse;
15
+ position: relative;
16
+
17
+ justify-content: end;
18
+ align-items: center;
19
+
20
+ --context-action-bar-button-margin: 0px;
21
+ --context-action-bar-more-button-border-radius: 2px;
22
+
23
+ --mdc-icon-size: 20px;
24
+ --mdc-button-height: 20px;
25
+ --mdc-button-horizontal-padding: 2px;
26
+ }
27
+
28
+ :host > div {
29
+ display: flex;
30
+ flex-direction: row;
31
+
32
+ align-items: center;
33
+ }
34
+
35
+ * {
36
+ cursor: pointer;
37
+ }
38
+
39
+ mwc-icon {
40
+ background-color: var(--theme-white-color);
41
+ border: 1px solid rgba(var(--primary-color-rgb), 0.5);
42
+ padding: 1px 2px;
43
+ color: var(--primary-color);
44
+ }
45
+ `
46
+ ];
47
+ }
48
+ render() {
49
+ let contextKeys = Object.keys(this.context).filter(key => !!this.context[key]);
50
+ let tools = (this.tools || []).filter(tool => {
51
+ if (!tool.context || contextKeys.includes(tool.context)) {
52
+ return tool;
53
+ }
54
+ });
55
+ let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END);
56
+ let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT);
57
+ let centerTools = tools.filter(tool => tool.position == TOOL_POSITION.CENTER);
58
+ let rearTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR);
59
+ let rearEndTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR_END);
60
+ return html `
61
+ ${frontEndTools.length > 0
62
+ ? html `<div id="front-end">${frontEndTools.map(tool => html ` ${tool.template} `)}</div>`
63
+ : nothing}
64
+ ${frontTools.length > 0
65
+ ? html `<div id="front">${frontTools.map(tool => html ` ${tool.template} `)}</div>`
66
+ : nothing}
67
+ ${centerTools.length > 0
68
+ ? html `<div id="center">${centerTools.map(tool => html ` ${tool.template} `)}</div>`
69
+ : nothing}
70
+ ${rearTools.length > 0 ? html `<div id="rear">${rearTools.map(tool => html ` ${tool.template} `)}</div>` : nothing}
71
+ ${rearEndTools.length > 0
72
+ ? html `<div id="rear-end">${rearEndTools.map(tool => html ` ${tool.template} `)}</div>`
73
+ : nothing}
74
+ `;
75
+ }
76
+ stateChanged(state) {
77
+ this.tools = state.context.tools;
78
+ }
79
+ };
80
+ __decorate([
81
+ property({ type: Object })
82
+ ], ContextPageToolbar.prototype, "context", void 0);
83
+ __decorate([
84
+ state()
85
+ ], ContextPageToolbar.prototype, "tools", void 0);
86
+ ContextPageToolbar = __decorate([
87
+ customElement('ox-context-page-toolbar')
88
+ ], ContextPageToolbar);
89
+ export { ContextPageToolbar };
90
+ //# sourceMappingURL=ox-context-page-toolbar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-context-page-toolbar.js","sourceRoot":"","sources":["../../../src/layouts/ox-context-page-toolbar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon'\n\nimport { css, html, LitElement, nothing } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport { TOOL_POSITION } from '@operato/layout'\nimport { store } from '@operato/shell'\n\n@customElement('ox-context-page-toolbar')\nexport class ContextPageToolbar extends connect(store)(LitElement) {\n static get styles() {\n return [\n css`\n :host {\n display: flex;\n flex-direction: row-reverse;\n position: relative;\n\n justify-content: end;\n align-items: center;\n\n --context-action-bar-button-margin: 0px;\n --context-action-bar-more-button-border-radius: 2px;\n\n --mdc-icon-size: 20px;\n --mdc-button-height: 20px;\n --mdc-button-horizontal-padding: 2px;\n }\n\n :host > div {\n display: flex;\n flex-direction: row;\n\n align-items: center;\n }\n\n * {\n cursor: pointer;\n }\n\n mwc-icon {\n background-color: var(--theme-white-color);\n border: 1px solid rgba(var(--primary-color-rgb), 0.5);\n padding: 1px 2px;\n color: var(--primary-color);\n }\n `\n ]\n }\n\n @property({ type: Object }) context: any\n @state() private tools?: any[]\n\n render() {\n let contextKeys = Object.keys(this.context).filter(key => !!this.context[key])\n let tools = (this.tools || []).filter(tool => {\n if (!tool.context || contextKeys.includes(tool.context)) {\n return tool\n }\n })\n\n let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END)\n let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT)\n let centerTools = tools.filter(tool => tool.position == TOOL_POSITION.CENTER)\n let rearTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR)\n let rearEndTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR_END)\n\n return html`\n ${frontEndTools.length > 0\n ? html`<div id=\"front-end\">${frontEndTools.map(tool => html` ${tool.template} `)}</div>`\n : nothing}\n ${frontTools.length > 0\n ? html`<div id=\"front\">${frontTools.map(tool => html` ${tool.template} `)}</div>`\n : nothing}\n ${centerTools.length > 0\n ? html`<div id=\"center\">${centerTools.map(tool => html` ${tool.template} `)}</div>`\n : nothing}\n ${rearTools.length > 0 ? html`<div id=\"rear\">${rearTools.map(tool => html` ${tool.template} `)}</div>` : nothing}\n ${rearEndTools.length > 0\n ? html`<div id=\"rear-end\">${rearEndTools.map(tool => html` ${tool.template} `)}</div>`\n : nothing}\n `\n }\n\n stateChanged(state: any) {\n this.tools = state.context.tools\n }\n}\n"]}
@@ -1,5 +1,5 @@
1
1
  import '@material/mwc-icon';
2
- import { LitElement } from 'lit';
2
+ import { LitElement, nothing } from 'lit';
3
3
  declare const ContextToolbar_base: (new (...args: any[]) => {
4
4
  _storeUnsubscribe: import("redux").Unsubscribe;
5
5
  connectedCallback(): void;
@@ -11,7 +11,7 @@ export declare class ContextToolbar extends ContextToolbar_base {
11
11
  static get styles(): import("lit").CSSResult[];
12
12
  private context;
13
13
  private tools?;
14
- render(): import("lit").TemplateResult<1>;
14
+ render(): typeof nothing | import("lit").TemplateResult<1>;
15
15
  stateChanged(state: any): void;
16
16
  }
17
17
  export {};
@@ -1,6 +1,6 @@
1
1
  import { __decorate } from "tslib";
2
2
  import '@material/mwc-icon';
3
- import { css, html, LitElement } from 'lit';
3
+ import { css, html, LitElement, nothing } from 'lit';
4
4
  import { customElement, state } from 'lit/decorators.js';
5
5
  import { connect } from 'pwa-helpers/connect-mixin.js';
6
6
  import { TOOL_POSITION } from '@operato/layout';
@@ -87,10 +87,14 @@ let ContextToolbar = class ContextToolbar extends connect(store)(LitElement) {
87
87
  ];
88
88
  }
89
89
  render() {
90
+ if (this.context.toolbar === false) {
91
+ return nothing;
92
+ }
90
93
  let contextKeys = Object.keys(this.context).filter(key => !!this.context[key]);
91
94
  let tools = (this.tools || []).filter(tool => {
92
- if (!tool.context || contextKeys.includes(tool.context))
95
+ if (!tool.context || contextKeys.includes(tool.context)) {
93
96
  return tool;
97
+ }
94
98
  });
95
99
  let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END);
96
100
  let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT);
@@ -1 +1 @@
1
- {"version":3,"file":"ox-context-toolbar.js","sourceRoot":"","sources":["../../../src/layouts/ox-context-toolbar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport { TOOL_POSITION } from '@operato/layout'\nimport { store } from '@operato/shell'\n\n@customElement('ox-context-toolbar')\nexport class ContextToolbar extends connect(store)(LitElement) {\n static get styles() {\n return [\n css`\n :host {\n display: flex;\n position: relative;\n\n background-color: var(--context-toolbar-background-color);\n justify-content: space-between;\n box-shadow: var(--context-toolbar-shadow-line);\n }\n #front-end {\n padding-left: var(--context-toolbar-side-padding);\n }\n #rear-end {\n padding-right: var(--context-toolbar-side-padding);\n }\n #front-end mwc-icon,\n #front mwc-icon {\n background-color: var(--context-toolbar-function-button-background-color);\n border: var(--context-toolbar-function-button-border);\n height: var(--context-toolbar-function-button-height);\n margin: var(--context-toolbar-button-margin);\n padding: var(--context-toolbar-function-button-padding);\n color: var(--context-toolbar-function-button-color);\n line-height: var(--context-toolbar-function-button-lineheight);\n cursor: pointer;\n }\n #front-end mwc-icon:first-child,\n #front mwc-icon:first-child {\n border-top-left-radius: var(--context-toolbar-function-button-radius);\n border-bottom-left-radius: var(--context-toolbar-function-button-radius);\n }\n #front-end mwc-icon:last-child,\n #front mwc-icon:last-child {\n border-top-right-radius: var(--context-toolbar-function-button-radius);\n border-bottom-right-radius: var(--context-toolbar-function-button-radius);\n }\n\n #front-end mwc-icon {\n background-color: var(--primary-color);\n }\n #front-end mwc-icon:hover {\n background-color: var(--context-toolbar-function-button-background-color);\n }\n #front mwc-icon:hover {\n background-color: var(--context-toolbar-function-button-hover-background-color);\n }\n\n #center {\n flex: 1;\n align-items: center;\n justify-content: end;\n }\n\n #center > * {\n align-items: center;\n }\n #rear-end > *,\n #rear > * {\n margin: var(--context-toolbar-button-margin);\n }\n #rear-end {\n align-items: start;\n }\n\n div > * {\n align-items: center;\n }\n\n div {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n overflow: hidden;\n padding: 0;\n }\n `\n ]\n }\n\n @state() private context: any\n @state() private tools?: any[]\n\n render() {\n let contextKeys = Object.keys(this.context).filter(key => !!this.context[key])\n let tools = (this.tools || []).filter(tool => {\n if (!tool.context || contextKeys.includes(tool.context)) return tool\n })\n\n let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END)\n let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT)\n let centerTools = tools.filter(tool => tool.position == TOOL_POSITION.CENTER)\n let rearTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR)\n let rearEndTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR_END)\n\n return html`\n <div id=\"front-end\">${frontEndTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"front\">${frontTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"center\">${centerTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"rear\">${rearTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"rear-end\">${rearEndTools.map(tool => html` ${tool.template} `)}</div>\n `\n }\n\n stateChanged(state: any) {\n this.tools = state.context.tools\n this.context = state.route.context\n }\n}\n"]}
1
+ {"version":3,"file":"ox-context-toolbar.js","sourceRoot":"","sources":["../../../src/layouts/ox-context-toolbar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon'\n\nimport { css, html, LitElement, nothing } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport { TOOL_POSITION } from '@operato/layout'\nimport { store } from '@operato/shell'\n\n@customElement('ox-context-toolbar')\nexport class ContextToolbar extends connect(store)(LitElement) {\n static get styles() {\n return [\n css`\n :host {\n display: flex;\n position: relative;\n\n background-color: var(--context-toolbar-background-color);\n justify-content: space-between;\n box-shadow: var(--context-toolbar-shadow-line);\n }\n #front-end {\n padding-left: var(--context-toolbar-side-padding);\n }\n #rear-end {\n padding-right: var(--context-toolbar-side-padding);\n }\n #front-end mwc-icon,\n #front mwc-icon {\n background-color: var(--context-toolbar-function-button-background-color);\n border: var(--context-toolbar-function-button-border);\n height: var(--context-toolbar-function-button-height);\n margin: var(--context-toolbar-button-margin);\n padding: var(--context-toolbar-function-button-padding);\n color: var(--context-toolbar-function-button-color);\n line-height: var(--context-toolbar-function-button-lineheight);\n cursor: pointer;\n }\n #front-end mwc-icon:first-child,\n #front mwc-icon:first-child {\n border-top-left-radius: var(--context-toolbar-function-button-radius);\n border-bottom-left-radius: var(--context-toolbar-function-button-radius);\n }\n #front-end mwc-icon:last-child,\n #front mwc-icon:last-child {\n border-top-right-radius: var(--context-toolbar-function-button-radius);\n border-bottom-right-radius: var(--context-toolbar-function-button-radius);\n }\n\n #front-end mwc-icon {\n background-color: var(--primary-color);\n }\n #front-end mwc-icon:hover {\n background-color: var(--context-toolbar-function-button-background-color);\n }\n #front mwc-icon:hover {\n background-color: var(--context-toolbar-function-button-hover-background-color);\n }\n\n #center {\n flex: 1;\n align-items: center;\n justify-content: end;\n }\n\n #center > * {\n align-items: center;\n }\n #rear-end > *,\n #rear > * {\n margin: var(--context-toolbar-button-margin);\n }\n #rear-end {\n align-items: start;\n }\n\n div > * {\n align-items: center;\n }\n\n div {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n overflow: hidden;\n padding: 0;\n }\n `\n ]\n }\n\n @state() private context: any\n @state() private tools?: any[]\n\n render() {\n if (this.context.toolbar === false) {\n return nothing\n }\n\n let contextKeys = Object.keys(this.context).filter(key => !!this.context[key])\n let tools = (this.tools || []).filter(tool => {\n if (!tool.context || contextKeys.includes(tool.context)) {\n return tool\n }\n })\n\n let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END)\n let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT)\n let centerTools = tools.filter(tool => tool.position == TOOL_POSITION.CENTER)\n let rearTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR)\n let rearEndTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR_END)\n\n return html`\n <div id=\"front-end\">${frontEndTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"front\">${frontTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"center\">${centerTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"rear\">${rearTools.map(tool => html` ${tool.template} `)}</div>\n\n <div id=\"rear-end\">${rearEndTools.map(tool => html` ${tool.template} `)}</div>\n `\n }\n\n stateChanged(state: any) {\n this.tools = state.context.tools\n this.context = state.route.context\n }\n}\n"]}
@@ -50,6 +50,13 @@ let PageActionContextBar = class PageActionContextBar extends connect(store)(Lit
50
50
  font-size: 2rem;
51
51
  }
52
52
 
53
+ mwc-icon {
54
+ background-color: var(--theme-white-color);
55
+ border: 1px solid rgba(var(--primary-color-rgb), 0.5);
56
+ padding: 1px 2px;
57
+ color: var(--primary-color);
58
+ }
59
+
53
60
  @media screen and (max-width: 460px) {
54
61
  mwc-button {
55
62
  --mdc-button-horizontal-padding: var(--padding-default);
@@ -105,7 +112,7 @@ let PageActionContextBar = class PageActionContextBar extends connect(store)(Lit
105
112
  let { type, title, icon, action, select, href, emphasis } = $action;
106
113
  let { outlined, raised, dense, danger } = emphasis || {};
107
114
  return type == 'text'
108
- ? html ` <span>${title}</span> `
115
+ ? html ` <span @click=${action}>${title}</span> `
109
116
  : type == 'select' || (select && select.length > 0)
110
117
  ? html `
111
118
  <select @change=${action}>
@@ -114,7 +121,9 @@ let PageActionContextBar = class PageActionContextBar extends connect(store)(Lit
114
121
  `
115
122
  : type == 'link'
116
123
  ? html ` <a href=${href}>${title}</a> `
117
- : html `
124
+ : type == 'icon'
125
+ ? html `<mwc-icon @click=${action}>${icon}</mwc-icon>`
126
+ : html `
118
127
  <mwc-button
119
128
  label=${title}
120
129
  icon=${icon || 'done_all'}
@@ -123,23 +132,23 @@ let PageActionContextBar = class PageActionContextBar extends connect(store)(Lit
123
132
  ?outlined=${outlined}
124
133
  ?danger=${danger}
125
134
  @click=${async (e) => {
126
- var _a;
127
- /* all actions should be bloked for a second */
128
- const button = e.currentTarget;
129
- button.icon = 'rotate_right';
130
- button.setAttribute('working', true);
131
- button.disabled = true;
132
- try {
133
- await action();
134
- }
135
- finally {
136
- await sleep(1000);
137
- button.disabled = false;
138
- /* because icon can be changed after sleep, don't use closure 'icon'. */
139
- button.icon = ((_a = this.actions[idx]) === null || _a === void 0 ? void 0 : _a.icon) || 'done_all';
140
- button.removeAttribute('working');
141
- }
142
- }}
135
+ var _a;
136
+ /* all actions should be bloked for a second */
137
+ const button = e.currentTarget;
138
+ button.icon = 'rotate_right';
139
+ button.setAttribute('working', true);
140
+ button.disabled = true;
141
+ try {
142
+ await action();
143
+ }
144
+ finally {
145
+ await sleep(1000);
146
+ button.disabled = false;
147
+ /* because icon can be changed after sleep, don't use closure 'icon'. */
148
+ button.icon = ((_a = this.actions[idx]) === null || _a === void 0 ? void 0 : _a.icon) || 'done_all';
149
+ button.removeAttribute('working');
150
+ }
151
+ }}
143
152
  ></mwc-button>
144
153
  `;
145
154
  })}
@@ -1 +1 @@
1
- {"version":3,"file":"ox-page-action-context-bar.js","sourceRoot":"","sources":["../../../src/tools/ox-page-action-context-bar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-button'\nimport '@material/mwc-icon'\nimport './ox-page-action-overlay-template.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport throttle from 'lodash-es/throttle'\nimport { connect } from 'pwa-helpers/connect-mixin'\n\nimport { openOverlay } from '@operato/layout'\nimport { store } from '@operato/shell'\nimport { sleep } from '@operato/utils'\n\n@customElement('ox-page-action-context-bar')\nexport class PageActionContextBar extends connect(store)(LitElement) {\n static get styles() {\n return [\n css`\n :host {\n display: flex;\n overflow: hidden;\n position: relative;\n }\n\n :host *:focus {\n outline: none;\n }\n\n mwc-button {\n white-space: nowrap;\n margin: var(--context-action-bar-button-margin);\n border-radius: var(--context-action-bar-more-button-border-radius);\n }\n\n [danger] {\n --mdc-theme-primary: var(--mdc-danger-button-primary-color);\n --mdc-button-outline-color: var(--mdc-danger-button-outline-color);\n }\n\n [more] {\n position: absolute;\n top: 0;\n right: 38px;\n background-color: var(--context-action-bar-more-button-background-color);\n box-shadow: -2px 0px 2px 1px rgba(0, 0, 0, 0.2);\n padding: var(--context-action-bar-more-button-padding);\n color: var(--context-action-bar-more-button-color);\n font-size: 2rem;\n }\n\n @media screen and (max-width: 460px) {\n mwc-button {\n --mdc-button-horizontal-padding: var(--padding-default);\n --mdc-shape-small: var(--context-action-bar-more-button-border-radius);\n }\n\n [more] {\n position: absolute;\n margin-top: -10px;\n right: 0px;\n padding: var(--padding-default);\n font-size: 2rem;\n }\n }\n\n @keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n }\n `\n ]\n }\n\n @state() actions: any[] = []\n @state() private overflown: boolean = false\n\n private overflownUpdaterThrottle: any\n private resizeCallback: any\n\n get overflownUpdater() {\n if (!this.overflownUpdaterThrottle) {\n this.overflownUpdaterThrottle = throttle(() => {\n this.overflown = this.scrollWidth > this.clientWidth\n }, 100)\n }\n\n return this.overflownUpdaterThrottle\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.resizeCallback = () => this.overflownUpdater()\n\n window.addEventListener('resize', this.resizeCallback)\n }\n\n disconnectedCallback() {\n super.disconnectedCallback()\n\n window.removeEventListener('resize', this.resizeCallback)\n }\n\n render() {\n return html`\n ${this.renderActions()}\n ${this.overflown ? html` <mwc-icon more @click=${this.showMore.bind(this)}>more_horiz</mwc-icon> ` : html``}\n `\n }\n\n renderActions() {\n return html`\n ${this.actions.map(($action, idx) => {\n let { type, title, icon, action, select, href, emphasis } = $action as any\n let { outlined, raised, dense, danger } = emphasis || {}\n\n return type == 'text'\n ? html` <span>${title}</span> `\n : type == 'select' || (select && select.length > 0)\n ? html`\n <select @change=${action}>\n ${select.map((option: any) => html` <option>${option}</option> `)}\n </select>\n `\n : type == 'link'\n ? html` <a href=${href}>${title}</a> `\n : html`\n <mwc-button\n label=${title}\n icon=${icon || 'done_all'}\n ?dense=${dense}\n ?raised=${raised}\n ?outlined=${outlined}\n ?danger=${danger}\n @click=${async (e: MouseEvent) => {\n /* all actions should be bloked for a second */\n const button = e.currentTarget as any\n button.icon = 'rotate_right'\n button.setAttribute('working', true)\n button.disabled = true\n\n try {\n await action()\n } finally {\n await sleep(1000)\n button.disabled = false\n /* because icon can be changed after sleep, don't use closure 'icon'. */\n button.icon = this.actions[idx]?.icon || 'done_all'\n button.removeAttribute('working')\n }\n }}\n ></mwc-button>\n `\n })}\n `\n }\n\n async updated(changed: PropertyValues<this>) {\n if (changed.has('actions')) {\n requestAnimationFrame(this.overflownUpdater)\n }\n }\n\n stateChanged(state: any) {\n this.actions = state.route?.context?.actions?.filter((action: any) => !!action) || []\n }\n\n showMore() {\n openOverlay('context-toolbar-overlay', {\n template: html`<ox-page-action-overlay-template></ox-page-action-overlay-template>`\n })\n }\n}\n"]}
1
+ {"version":3,"file":"ox-page-action-context-bar.js","sourceRoot":"","sources":["../../../src/tools/ox-page-action-context-bar.ts"],"names":[],"mappings":";AAAA,OAAO,sBAAsB,CAAA;AAC7B,OAAO,oBAAoB,CAAA;AAC3B,OAAO,sCAAsC,CAAA;AAE7C,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,KAAK,CAAA;AAC3D,OAAO,EAAE,aAAa,EAAmB,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACzE,OAAO,QAAQ,MAAM,oBAAoB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAEnD,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAG/B,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,OAAO,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC;IAA7D;;QAsEI,YAAO,GAAU,EAAE,CAAA;QACX,cAAS,GAAY,KAAK,CAAA;IAoG7C,CAAC;IA1KC,MAAM,KAAK,MAAM;QACf,OAAO;YACL,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+DF;SACF,CAAA;IACH,CAAC;IAQD,IAAI,gBAAgB;QAClB,IAAI,CAAC,IAAI,CAAC,wBAAwB,EAAE;YAClC,IAAI,CAAC,wBAAwB,GAAG,QAAQ,CAAC,GAAG,EAAE;gBAC5C,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAA;YACtD,CAAC,EAAE,GAAG,CAAC,CAAA;SACR;QAED,OAAO,IAAI,CAAC,wBAAwB,CAAA;IACtC,CAAC;IAED,iBAAiB;QACf,KAAK,CAAC,iBAAiB,EAAE,CAAA;QAEzB,IAAI,CAAC,cAAc,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAA;QAEnD,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAA;IACxD,CAAC;IAED,oBAAoB;QAClB,KAAK,CAAC,oBAAoB,EAAE,CAAA;QAE5B,MAAM,CAAC,mBAAmB,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAA;IAC3D,CAAC;IAED,MAAM;QACJ,OAAO,IAAI,CAAA;QACP,IAAI,CAAC,aAAa,EAAE;QACpB,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAA,0BAA0B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,IAAI,CAAA,EAAE;KAC5G,CAAA;IACH,CAAC;IAED,aAAa;QACX,OAAO,IAAI,CAAA;QACP,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,GAAG,EAAE,EAAE;YAClC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,OAAc,CAAA;YAC1E,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,QAAQ,IAAI,EAAE,CAAA;YAExD,OAAO,IAAI,IAAI,MAAM;gBACnB,CAAC,CAAC,IAAI,CAAA,iBAAiB,MAAM,IAAI,KAAK,UAAU;gBAChD,CAAC,CAAC,IAAI,IAAI,QAAQ,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;oBACnD,CAAC,CAAC,IAAI,CAAA;gCACgB,MAAM;kBACpB,MAAM,CAAC,GAAG,CAAC,CAAC,MAAW,EAAE,EAAE,CAAC,IAAI,CAAA,YAAY,MAAM,YAAY,CAAC;;aAEpE;oBACH,CAAC,CAAC,IAAI,IAAI,MAAM;wBAChB,CAAC,CAAC,IAAI,CAAA,YAAY,IAAI,IAAI,KAAK,OAAO;wBACtC,CAAC,CAAC,IAAI,IAAI,MAAM;4BAChB,CAAC,CAAC,IAAI,CAAA,oBAAoB,MAAM,IAAI,IAAI,aAAa;4BACrD,CAAC,CAAC,IAAI,CAAA;;wBAEQ,KAAK;uBACN,IAAI,IAAI,UAAU;yBAChB,KAAK;0BACJ,MAAM;4BACJ,QAAQ;0BACV,MAAM;yBACP,KAAK,EAAE,CAAa,EAAE,EAAE;;gCAC/B,+CAA+C;gCAC/C,MAAM,MAAM,GAAG,CAAC,CAAC,aAAoB,CAAA;gCACrC,MAAM,CAAC,IAAI,GAAG,cAAc,CAAA;gCAC5B,MAAM,CAAC,YAAY,CAAC,SAAS,EAAE,IAAI,CAAC,CAAA;gCACpC,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAA;gCAEtB,IAAI;oCACF,MAAM,MAAM,EAAE,CAAA;iCACf;wCAAS;oCACR,MAAM,KAAK,CAAC,IAAI,CAAC,CAAA;oCACjB,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAA;oCACvB,wEAAwE;oCACxE,MAAM,CAAC,IAAI,GAAG,CAAA,MAAA,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,0CAAE,IAAI,KAAI,UAAU,CAAA;oCACnD,MAAM,CAAC,eAAe,CAAC,SAAS,CAAC,CAAA;iCAClC;4BACH,CAAC;;aAEJ,CAAA;QACP,CAAC,CAAC;KACH,CAAA;IACH,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAA6B;QACzC,IAAI,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE;YAC1B,qBAAqB,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAA;SAC7C;IACH,CAAC;IAED,YAAY,CAAC,KAAU;;QACrB,IAAI,CAAC,OAAO,GAAG,CAAA,MAAA,MAAA,MAAA,KAAK,CAAC,KAAK,0CAAE,OAAO,0CAAE,OAAO,0CAAE,MAAM,CAAC,CAAC,MAAW,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,KAAI,EAAE,CAAA;IACvF,CAAC;IAED,QAAQ;QACN,WAAW,CAAC,yBAAyB,EAAE;YACrC,QAAQ,EAAE,IAAI,CAAA,qEAAqE;SACpF,CAAC,CAAA;IACJ,CAAC;CACF,CAAA;AArGU;IAAR,KAAK,EAAE;qDAAoB;AACX;IAAhB,KAAK,EAAE;uDAAmC;AAvEhC,oBAAoB;IADhC,aAAa,CAAC,4BAA4B,CAAC;GAC/B,oBAAoB,CA2KhC","sourcesContent":["import '@material/mwc-button'\nimport '@material/mwc-icon'\nimport './ox-page-action-overlay-template.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport throttle from 'lodash-es/throttle'\nimport { connect } from 'pwa-helpers/connect-mixin'\n\nimport { openOverlay } from '@operato/layout'\nimport { store } from '@operato/shell'\nimport { sleep } from '@operato/utils'\n\n@customElement('ox-page-action-context-bar')\nexport class PageActionContextBar extends connect(store)(LitElement) {\n static get styles() {\n return [\n css`\n :host {\n display: flex;\n overflow: hidden;\n position: relative;\n }\n\n :host *:focus {\n outline: none;\n }\n\n mwc-button {\n white-space: nowrap;\n margin: var(--context-action-bar-button-margin);\n border-radius: var(--context-action-bar-more-button-border-radius);\n }\n\n [danger] {\n --mdc-theme-primary: var(--mdc-danger-button-primary-color);\n --mdc-button-outline-color: var(--mdc-danger-button-outline-color);\n }\n\n [more] {\n position: absolute;\n top: 0;\n right: 38px;\n background-color: var(--context-action-bar-more-button-background-color);\n box-shadow: -2px 0px 2px 1px rgba(0, 0, 0, 0.2);\n padding: var(--context-action-bar-more-button-padding);\n color: var(--context-action-bar-more-button-color);\n font-size: 2rem;\n }\n\n mwc-icon {\n background-color: var(--theme-white-color);\n border: 1px solid rgba(var(--primary-color-rgb), 0.5);\n padding: 1px 2px;\n color: var(--primary-color);\n }\n\n @media screen and (max-width: 460px) {\n mwc-button {\n --mdc-button-horizontal-padding: var(--padding-default);\n --mdc-shape-small: var(--context-action-bar-more-button-border-radius);\n }\n\n [more] {\n position: absolute;\n margin-top: -10px;\n right: 0px;\n padding: var(--padding-default);\n font-size: 2rem;\n }\n }\n\n @keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n }\n `\n ]\n }\n\n @state() actions: any[] = []\n @state() private overflown: boolean = false\n\n private overflownUpdaterThrottle: any\n private resizeCallback: any\n\n get overflownUpdater() {\n if (!this.overflownUpdaterThrottle) {\n this.overflownUpdaterThrottle = throttle(() => {\n this.overflown = this.scrollWidth > this.clientWidth\n }, 100)\n }\n\n return this.overflownUpdaterThrottle\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.resizeCallback = () => this.overflownUpdater()\n\n window.addEventListener('resize', this.resizeCallback)\n }\n\n disconnectedCallback() {\n super.disconnectedCallback()\n\n window.removeEventListener('resize', this.resizeCallback)\n }\n\n render() {\n return html`\n ${this.renderActions()}\n ${this.overflown ? html` <mwc-icon more @click=${this.showMore.bind(this)}>more_horiz</mwc-icon> ` : html``}\n `\n }\n\n renderActions() {\n return html`\n ${this.actions.map(($action, idx) => {\n let { type, title, icon, action, select, href, emphasis } = $action as any\n let { outlined, raised, dense, danger } = emphasis || {}\n\n return type == 'text'\n ? html` <span @click=${action}>${title}</span> `\n : type == 'select' || (select && select.length > 0)\n ? html`\n <select @change=${action}>\n ${select.map((option: any) => html` <option>${option}</option> `)}\n </select>\n `\n : type == 'link'\n ? html` <a href=${href}>${title}</a> `\n : type == 'icon'\n ? html`<mwc-icon @click=${action}>${icon}</mwc-icon>`\n : html`\n <mwc-button\n label=${title}\n icon=${icon || 'done_all'}\n ?dense=${dense}\n ?raised=${raised}\n ?outlined=${outlined}\n ?danger=${danger}\n @click=${async (e: MouseEvent) => {\n /* all actions should be bloked for a second */\n const button = e.currentTarget as any\n button.icon = 'rotate_right'\n button.setAttribute('working', true)\n button.disabled = true\n\n try {\n await action()\n } finally {\n await sleep(1000)\n button.disabled = false\n /* because icon can be changed after sleep, don't use closure 'icon'. */\n button.icon = this.actions[idx]?.icon || 'done_all'\n button.removeAttribute('working')\n }\n }}\n ></mwc-button>\n `\n })}\n `\n }\n\n async updated(changed: PropertyValues<this>) {\n if (changed.has('actions')) {\n requestAnimationFrame(this.overflownUpdater)\n }\n }\n\n stateChanged(state: any) {\n this.actions = state.route?.context?.actions?.filter((action: any) => !!action) || []\n }\n\n showMore() {\n openOverlay('context-toolbar-overlay', {\n template: html`<ox-page-action-overlay-template></ox-page-action-overlay-template>`\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.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/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/styles/ox-context-toolbar-overlay-style.ts","../src/index.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.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/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/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/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-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","../../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","../src/layouts/ox-context-toolbar.ts","../../../node_modules/pwa-helpers/media-query.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../../../node_modules/pwa-helpers/network.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../../node_modules/pwa-helpers/pwa-helpers.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/index.d.ts","../src/tools/ox-page-action-overlay-template.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../src/tools/ox-page-action-context-bar.ts","../../help/dist/src/controller/help.d.ts","../../help/dist/src/components/ox-help-icon.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.d.ts","../../data-grist/dist/src/data-grid/data-grid-accum-field.d.ts","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filter-select-buttons.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/value-generator/registry.d.ts","../../data-grist/dist/src/value-generator/index.d.ts","../../data-grist/dist/src/utils/list-param.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../../help/dist/src/grist/help-decorated-renderer.d.ts","../../help/dist/src/components/ox-inline-help.d.ts","../../help/dist/src/components/ox-title-with-help.d.ts","../../help/dist/src/index.d.ts","../src/tools/ox-page-title-bar.ts","../src/tools/ox-title-bar.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/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":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"67defaf102712826c691f244d166b1538d950f6e901766349bdfa3a9bdf191cd","signature":"eedbf3ce362c14809e33ff0bde9ab21880ccc7d7831416d63719e0150b8da694"},{"version":"508e5427699f074217d661958a9abd16b7fe45ba4b87ef8693f53433ea2fa9a3","signature":"4ef60d395e4ce6a23681b2d153b25f3f5c263c3acce4cf4a3a2bb134c4ff23db"},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","25436b30271e935128764e9d28f39c2cd02f15e145988103eb6b8593c89880b0","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","538c9958c03297ee51a16a5c1461f67e51e71ada1b617f32a5a734f38d69ef5a","0fd96fefc155744dae4e1788f930a5b25022b47e9d45d3898b32434e49cc4cb3","661d75db74fa3c5e22089d54d70ae0dc2638ba02502e26d620909e860e95a002","9dafb0e93dc590bbce0dd504d5de624e58b54c8d494d81fcf0a5a56ef66fbdb1","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"740abf7b444d5aea53aa623c41aef143bcd0dc1dc07738473e406ea564d2f6ea","53f6ea5a77721fbc299e620218cd6d32b704210566de1d6e8bd6ecdb5c01c980","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","522e47f35f1984d6066dc822445fa03712808125f7b4cd1a7f0da331fd56b0a3","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","0c16400903650cc73c12a6a0f9243631f8645828a016a0e676cb784b675a452f","f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383","6629bdbf20ff103042e8a04fff6ca25559cf481abc58d6853a2d80a99f8ebc9d","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244",{"version":"e437c71d6684bc395fe3e3d848c94acaaef53e8122140f57fc07df82fab883e9","signature":"55f92ba7a983ec8a88bda6aa0efdf7417dfe53a88de4921eb9b28c8780079024"},"d2c5f82ffdcecb79f7999cde82035dea787441c77cfeba04e4670d96272856cd","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68","0efa0ae7820fedc30b27c86db22c664e1f09009e450a33270cfebd9ad50d19b6","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","c5bba3df0c3031ed400fcecfbe2012c585f97294a8bab7c50d350f7452254f97","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","97148bcf59cdf0e725f81c39df7acd2174a4edf5f739b275669f4d58c8bdce47","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"66fd8c5269870c4a28cc96e2efc5a6484c11e826413402b3321c8bdc3a958150","signature":"7e356ef6717216a71684c0f0d93c54d0448753e1eee9ba865e2975fcbabbef23"},"32ab25b7b28b24a138d879ca371b18c8fdfdd564ad5107e1333c5aa5d5fea494","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","b82fc740467e59abe3d6170417e461527d2a95610f55915fc59557c4b7be55ba","1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769",{"version":"e619463f132f758efe91931d2583dd945d3cc3af31baa1913c3d4aeb9a94d5a8","signature":"c77ecebdd53a890716b93338a1c6f3faee229516e46f7a794dcc2a1c3d0bc23e"},"a3ec644a6d3c4b142baab2ce25823e716804f5ed2018e32547377a82607830a2","433f68715ce2721491922e8b449e7ad33aeff11c2f932f8ab5a2af751af37119","d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","feed4a5ba77e66eacec93acac9a5ecfb3082d97cc5d5e2e9cbac6728701f9774","cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","360490448bbccda1d52f8e0d94b9946a71515acf6afb1759d03a9f61957c0071","3bb77e76870104c3b0b16f82682b1608ff85ad183560c5390e1884b807d977fb","963ebb3206e705d26b01faa5d49534f05be8884d81417b1e0aa069447931f82a","c8089775da5e00fbe5b11a03cff5981d29101992c010bdfc5adfeae4d92b7480","969d2d471070d6eca43e3cdd452b4544a549567f272e9207209460f843e20fb2","d4598e36eaa29d6c2a786e436d3d223b7ccd3e4f53d6925fa52207273736cd4a","4f87dea21bec06ed47e197495e88292806597728496fded1aa4312d42dc36ad6","9d162dd4edb4c49260a5c9e3d37b0fbea32d7ea4d1d60b7f2d2b7f35abe562cb","555663519c551cda16bd59d2340c972858b2d87711bd8109c2ddeb4662267a05","5bad1c569fab63bcfd9e570c22bb022546fec47bfe77264a289363fad551f91f","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","726fc52e8e1e0e9a4ab75c27c052ea0db38f463f65f56d3821e39abe8532c3b2","acbeb7d589177710ea8bab0116c10fc2b8afc4c14bea1754ea74d85c98a3b2f2","e4b489c61d522bef596c4a029eb2d70d91308bbf83b5a50663adaecd3fc5f1db","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","e462828bab3b0c950d53834bb25e95ee53bfe6e616594fbb3aac1a62a400e73e","5284b22e53ac9eed0de25fd9a02436d850389ff49a076621877a6c546aba1581","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","70594838909a394e4017449b7eb8d414d90f4fab1b1dd493588f6a22f2b575cf","90f2ae348cb711eed7d99b1d6967e30067fc4e435a8bc7f1403f14757ecd79e4","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","affd76cc3fb68150bf5f27b27ae9d7ddb6e88af5c1fdf74ee6b23ba999ad5bf0","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","e05f2d4d1fda6064989c4c9aa42c87c83fced485df6a0e051ca4fa69497d398d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","d5ada86344cd49d26a5d151cdfe8bf45f3ac291cc4df3645041c0b2bcfc3dddd","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","1c8d6092ec81841053eb264b5f6db411bb0b9a95c6e0f6bb18475ade6676895c","9a46476728ded19d2eb9396420106e49c5c7c36cd093f13eb9f8afea63f4b996","0f85a0bab1ed365725136ede09c0c4c2af9555e1f9e4ff70482734128696ac1d","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","602e11b58de6d2b48ed8d1023762009a7f03aa5744cc283833e97f99dd29a4ac","0c5344fdadc6f4f6b825c2234d7082c1e93c9c252394d369f39939a2a98cc92e","8cd1878e199b044a1d1faea0fcc85acfc2d8391f78be10dbb75542b61af92712","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","0c6b193c3f51c5d1ae598073fcf57833ae748f91551c73f7f4e31facd282941c","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","2c4a628921d77106f4262d458da8b134c2da67b1ab15131d2367cd57d1a56920","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","f5a45ce6b2f338c8b01d81aea746ff852d3e91abe24afc631b1042fb6bc022d8","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","72c83a2e8bc082f5221401930d6b474c3a1db69f7e2eafdf155a002dfc4456af","5ad158e347a2257cea31daef0412f080300ce76e256527e681ee2ca22d033bb0","945b80386ce77a1e6fb01e7fe924d6b065f87bda5631761f8eb9d51f5d4c85d0","d7a767976ba46e5dbac26693a8dc976d4eb44e501001c8f2f447a3cc72a55065",{"version":"2917b1b261f7aa6c10c559819b77cb6b769d538446acd1e1f4f090c042e98956","signature":"876e8a72f473ec05c5de39af1154a973b533663fdd2830480df4315dfa51b3cf"},{"version":"8c23f07d1e8428b15689a1a8fef9f7d7f3dc51b4a4ffc75d818ab6f563b69bdd","signature":"9b2aae0753bda8c64c28acdb8380bf85bf48aad0834a148c3c406997986fd340"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","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":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"46d317b6ee5a27bed0c9553bbadaedd710ab334606e6a5b1aaba4fe0b31d899d","affectsGlobalScope":true}],"root":[58,59,126,162,177,255,256],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[336],[49,336],[61,336],[49,61,336],[49,61,69,336],[47,48,336],[57,95,96,97,336],[57,60,103,104,105,107,336],[57,108,336],[57,336],[57,96,98,100,101,336],[57,102,336],[96,336],[97,99,336],[95,100,336],[175,336],[163,165,166,167,168,169,170,171,172,173,174,175,336],[163,164,166,167,168,169,170,171,172,173,174,175,336],[164,165,166,167,168,169,170,171,172,173,174,175,336],[163,164,165,167,168,169,170,171,172,173,174,175,336],[163,164,165,166,168,169,170,171,172,173,174,175,336],[163,164,165,166,167,169,170,171,172,173,174,175,336],[163,164,165,166,167,168,170,171,172,173,174,175,336],[163,164,165,166,167,168,169,171,172,173,174,175,336],[163,164,165,166,167,168,169,170,172,173,174,175,336],[163,164,165,166,167,168,169,170,171,173,174,175,336],[163,164,165,166,167,168,169,170,171,172,174,175,336],[163,164,165,166,167,168,169,170,171,172,173,175,336],[163,164,165,166,167,168,169,170,171,172,173,174,336],[257,336],[293,336],[294,299,327,336],[295,306,307,314,324,335,336],[295,296,306,314,336],[297,336],[298,299,307,315,336],[299,324,332,336],[300,302,306,314,336],[301,336],[302,303,336],[306,336],[304,306,336],[293,306,336],[306,307,308,324,335,336],[306,307,308,321,324,327,336],[291,336,340],[302,306,309,314,324,335,336],[306,307,309,310,314,324,332,335,336],[309,311,324,332,335,336],[257,258,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342],[306,312,336],[313,335,336,340],[302,306,314,324,336],[315,336],[316,336],[293,317,336],[318,334,336,340],[319,336],[320,336],[306,321,322,336],[321,323,336,338],[294,306,324,325,326,327,336],[294,324,326,336],[324,325,336],[327,336],[328,336],[293,324,336],[306,330,331,336],[330,331,336],[299,314,324,332,336],[333,336],[314,334,336],[294,309,320,335,336],[299,336],[324,336,337],[313,336,338],[336,339],[294,299,306,308,317,324,335,336,338,340],[324,336,341],[50,336],[49,53,336],[51,52,336],[181,336],[51,180,336],[62,63,64,65,66,67,68,69,70,336],[106,336],[49,53,55,56,336],[53,336],[52,53,336],[72,336],[73,80,127,128,129,130,336],[268,272,335,336],[268,324,335,336],[263,336],[265,268,332,335,336],[314,332,336],[336,343],[263,336,343],[265,268,314,335,336],[260,261,264,267,294,306,324,335,336],[260,266,336],[264,268,294,327,335,336,343],[294,336,343],[284,294,336,343],[262,263,336,343],[268,336],[262,263,264,265,266,267,268,269,270,272,273,274,275,276,277,278,279,280,281,282,283,285,286,287,288,289,290,336],[268,275,276,336],[266,268,276,277,336],[267,336],[260,263,268,336],[268,272,276,277,336],[272,336],[266,268,271,335,336],[260,265,266,268,272,275,336],[294,324,336],[263,268,284,294,336,340,343],[46,58,336],[46,57,60,71,73,89,125,336],[46,57,336],[46,57,60,71,73,89,109,125,161,162,176,336],[46,57,58,60,71,89,131,140,161,336],[46,57,60,71,89,131,161,254,336],[46,57,60,71,89,131,254,336],[249,336],[220,336],[57,220,336],[60,183,336],[57,60,187,192,204,336],[57,60,182,183,202,203,220,336],[57,175,184,189,220,336],[57,60,220,336],[57,60,91,220,336],[57,187,188,190,191,192,220,336],[57,193,197,198,199,220,336],[57,60,192,196,336],[57,60,194,195,202,220,336],[57,199,220,224,336],[57,205,220,336],[57,220,222,223,336],[206,207,208,336],[57,206,336],[57,184,220,336],[206,220,336],[57,60,336],[57,92,220,336],[210,211,212,213,214,215,216,217,336],[241,336],[243,336],[239,336],[200,202,209,218,220,221,225,238,240,242,244,245,247,248,336],[186,201,336],[57,60,186,200,336],[57,60,184,220,336],[57,60,184,185,220,336],[219,226,227,228,229,230,231,232,233,234,235,236,237,336],[57,219,336],[219,220,336],[181,182,183,184,194,195,196,204,205,209,218,219,336],[246,336],[179,250,336],[178,179,251,252,253,336],[57,113,336],[90,113,114,116,117,118,119,120,121,122,123,124,336],[89,336],[111,115,336],[60,109,336],[91,92,93,94,110,112,336],[57,111,336],[57,60,91,336],[57,91,336],[57,93,336],[57,109,336],[82,83,84,85,336],[79,81,86,87,88,336],[72,80,336],[74,75,76,77,78,336],[75,76,336],[74,75,77,336],[132,133,134,135,136,137,138,139,336],[141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,336],[152,153,336],[153,336],[152,336],[58],[57,60,72],[57],[57,60,72,109,162]],"referencedMap":[[47,1],[61,2],[62,3],[65,4],[63,4],[67,4],[70,5],[69,1],[68,4],[66,4],[64,3],[48,1],[49,6],[95,1],[97,1],[104,1],[98,7],[96,1],[108,8],[109,9],[60,10],[102,11],[103,12],[105,13],[100,14],[101,15],[99,1],[176,16],[164,17],[165,18],[163,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[344,1],[257,30],[258,30],[293,31],[294,32],[295,33],[296,34],[297,35],[298,36],[299,37],[300,38],[301,39],[302,40],[303,40],[305,41],[304,42],[306,43],[307,44],[308,45],[292,46],[342,1],[309,47],[310,48],[311,49],[343,50],[312,51],[313,52],[314,53],[315,54],[316,55],[317,56],[318,57],[319,58],[320,59],[321,60],[322,60],[323,61],[324,62],[326,63],[325,64],[327,65],[328,66],[329,67],[330,68],[331,69],[332,70],[333,71],[334,72],[335,73],[336,74],[337,75],[338,76],[339,77],[340,78],[341,79],[51,80],[50,1],[259,1],[55,81],[54,82],[180,83],[181,84],[71,85],[107,86],[57,87],[52,88],[106,89],[56,1],[53,82],[73,90],[80,90],[127,1],[128,1],[129,1],[131,91],[130,1],[72,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[275,92],[282,93],[274,92],[289,94],[266,95],[265,96],[288,97],[283,98],[286,99],[268,100],[267,101],[263,102],[262,103],[285,104],[264,105],[269,106],[270,1],[273,106],[260,1],[291,107],[290,106],[277,108],[278,109],[280,110],[276,111],[279,112],[284,97],[271,113],[272,114],[281,115],[261,116],[287,117],[59,118],[126,119],[58,120],[177,121],[162,122],[255,123],[256,124],[250,125],[221,126],[182,127],[203,128],[183,127],[198,129],[204,130],[199,126],[189,127],[190,131],[184,127],[191,132],[188,133],[193,134],[200,135],[195,127],[194,127],[197,136],[196,137],[192,127],[225,138],[223,139],[224,140],[205,127],[222,1],[209,141],[208,142],[206,143],[207,144],[187,145],[213,126],[212,126],[214,126],[215,126],[216,126],[211,126],[217,146],[218,147],[210,126],[242,148],[241,1],[244,149],[243,126],[240,150],[239,126],[249,151],[202,152],[201,153],[185,154],[186,155],[238,156],[227,126],[228,126],[229,126],[236,126],[235,126],[237,126],[230,126],[231,126],[232,157],[234,126],[233,126],[219,143],[226,158],[245,127],[220,159],[248,126],[247,160],[246,126],[179,145],[252,10],[253,145],[178,1],[251,161],[254,162],[122,163],[123,90],[115,10],[124,10],[125,164],[90,165],[118,166],[119,166],[116,166],[117,166],[121,166],[120,166],[114,167],[113,168],[112,169],[111,145],[92,170],[93,171],[94,172],[91,10],[110,173],[82,1],[84,1],[85,1],[86,174],[83,1],[87,10],[89,175],[88,1],[81,176],[74,1],[79,177],[77,178],[76,179],[78,1],[75,1],[138,10],[136,1],[137,10],[139,10],[132,10],[140,180],[133,10],[134,10],[135,10],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,181],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,182],[152,183],[153,184]],"exportedModulesMap":[[47,1],[61,2],[62,3],[65,4],[63,4],[67,4],[70,5],[69,1],[68,4],[66,4],[64,3],[48,1],[49,6],[95,1],[97,1],[104,1],[98,7],[96,1],[108,8],[109,9],[60,10],[102,11],[103,12],[105,13],[100,14],[101,15],[99,1],[176,16],[164,17],[165,18],[163,19],[166,20],[167,21],[168,22],[169,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[344,1],[257,30],[258,30],[293,31],[294,32],[295,33],[296,34],[297,35],[298,36],[299,37],[300,38],[301,39],[302,40],[303,40],[305,41],[304,42],[306,43],[307,44],[308,45],[292,46],[342,1],[309,47],[310,48],[311,49],[343,50],[312,51],[313,52],[314,53],[315,54],[316,55],[317,56],[318,57],[319,58],[320,59],[321,60],[322,60],[323,61],[324,62],[326,63],[325,64],[327,65],[328,66],[329,67],[330,68],[331,69],[332,70],[333,71],[334,72],[335,73],[336,74],[337,75],[338,76],[339,77],[340,78],[341,79],[51,80],[50,1],[259,1],[55,81],[54,82],[180,83],[181,84],[71,85],[107,86],[57,87],[52,88],[106,89],[56,1],[53,82],[73,90],[80,90],[127,1],[128,1],[129,1],[131,91],[130,1],[72,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[275,92],[282,93],[274,92],[289,94],[266,95],[265,96],[288,97],[283,98],[286,99],[268,100],[267,101],[263,102],[262,103],[285,104],[264,105],[269,106],[270,1],[273,106],[260,1],[291,107],[290,106],[277,108],[278,109],[280,110],[276,111],[279,112],[284,97],[271,113],[272,114],[281,115],[261,116],[287,117],[59,185],[126,186],[58,187],[177,188],[162,186],[255,186],[256,186],[250,125],[221,126],[182,127],[203,128],[183,127],[198,129],[204,130],[199,126],[189,127],[190,131],[184,127],[191,132],[188,133],[193,134],[200,135],[195,127],[194,127],[197,136],[196,137],[192,127],[225,138],[223,139],[224,140],[205,127],[222,1],[209,141],[208,142],[206,143],[207,144],[187,145],[213,126],[212,126],[214,126],[215,126],[216,126],[211,126],[217,146],[218,147],[210,126],[242,148],[241,1],[244,149],[243,126],[240,150],[239,126],[249,151],[202,152],[201,153],[185,154],[186,155],[238,156],[227,126],[228,126],[229,126],[236,126],[235,126],[237,126],[230,126],[231,126],[232,157],[234,126],[233,126],[219,143],[226,158],[245,127],[220,159],[248,126],[247,160],[246,126],[179,145],[252,10],[253,145],[178,1],[251,161],[254,162],[122,163],[123,90],[115,10],[124,10],[125,164],[90,165],[118,166],[119,166],[116,166],[117,166],[121,166],[120,166],[114,167],[113,168],[112,169],[111,145],[92,170],[93,171],[94,172],[91,10],[110,173],[82,1],[84,1],[85,1],[86,174],[83,1],[87,10],[89,175],[88,1],[81,176],[74,1],[79,177],[77,178],[76,179],[78,1],[75,1],[138,10],[136,1],[137,10],[139,10],[132,10],[140,180],[133,10],[134,10],[135,10],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,181],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,182],[152,183],[153,184]],"semanticDiagnosticsPerFile":[47,61,62,65,63,67,70,69,68,66,64,48,49,95,97,104,98,96,108,109,60,102,103,105,100,101,99,176,164,165,163,166,167,168,169,170,171,172,173,174,175,344,257,258,293,294,295,296,297,298,299,300,301,302,303,305,304,306,307,308,292,342,309,310,311,343,312,313,314,315,316,317,318,319,320,321,322,323,324,326,325,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,51,50,259,55,54,180,181,71,107,57,52,106,56,53,73,80,127,128,129,131,130,72,46,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,275,282,274,289,266,265,288,283,286,268,267,263,262,285,264,269,270,273,260,291,290,277,278,280,276,279,284,271,272,281,261,287,59,126,58,177,162,255,256,250,221,182,203,183,198,204,199,189,190,184,191,188,193,200,195,194,197,196,192,225,223,224,205,222,209,208,206,207,187,213,212,214,215,216,211,217,218,210,242,241,244,243,240,239,249,202,201,185,186,238,227,228,229,236,235,237,230,231,232,234,233,219,226,245,220,248,247,246,179,252,253,178,251,254,122,123,115,124,125,90,118,119,116,117,121,120,114,113,112,111,92,93,94,91,110,82,84,85,86,83,87,89,88,81,74,79,77,76,78,75,138,136,137,139,132,140,133,134,135,157,142,155,150,144,151,160,143,156,147,161,158,145,148,149,141,159,146,154,152,153]},"version":"5.2.2"}
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.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/node_modules/lit-html/directive.d.ts","../../../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/styles/ox-context-toolbar-overlay-style.ts","../src/index.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.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/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/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/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-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","../../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","../src/layouts/ox-context-page-toolbar.ts","../src/layouts/ox-context-toolbar.ts","../../../node_modules/pwa-helpers/media-query.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../../../node_modules/pwa-helpers/network.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../../node_modules/pwa-helpers/pwa-helpers.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/index.d.ts","../src/tools/ox-page-action-overlay-template.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../src/tools/ox-page-action-context-bar.ts","../../help/dist/src/controller/help.d.ts","../../help/dist/src/components/ox-help-icon.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.d.ts","../../data-grist/dist/src/data-grid/data-grid-accum-field.d.ts","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filter-select-buttons.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/value-generator/registry.d.ts","../../data-grist/dist/src/value-generator/index.d.ts","../../data-grist/dist/src/utils/list-param.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../../help/dist/src/grist/help-decorated-renderer.d.ts","../../help/dist/src/components/ox-inline-help.d.ts","../../help/dist/src/components/ox-title-with-help.d.ts","../../help/dist/src/index.d.ts","../src/tools/ox-page-title-bar.ts","../src/tools/ox-title-bar.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/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":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"67defaf102712826c691f244d166b1538d950f6e901766349bdfa3a9bdf191cd","signature":"eedbf3ce362c14809e33ff0bde9ab21880ccc7d7831416d63719e0150b8da694"},{"version":"508e5427699f074217d661958a9abd16b7fe45ba4b87ef8693f53433ea2fa9a3","signature":"4ef60d395e4ce6a23681b2d153b25f3f5c263c3acce4cf4a3a2bb134c4ff23db"},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","25436b30271e935128764e9d28f39c2cd02f15e145988103eb6b8593c89880b0","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","538c9958c03297ee51a16a5c1461f67e51e71ada1b617f32a5a734f38d69ef5a","0fd96fefc155744dae4e1788f930a5b25022b47e9d45d3898b32434e49cc4cb3","661d75db74fa3c5e22089d54d70ae0dc2638ba02502e26d620909e860e95a002","9dafb0e93dc590bbce0dd504d5de624e58b54c8d494d81fcf0a5a56ef66fbdb1","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"740abf7b444d5aea53aa623c41aef143bcd0dc1dc07738473e406ea564d2f6ea","53f6ea5a77721fbc299e620218cd6d32b704210566de1d6e8bd6ecdb5c01c980","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","522e47f35f1984d6066dc822445fa03712808125f7b4cd1a7f0da331fd56b0a3","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","0c16400903650cc73c12a6a0f9243631f8645828a016a0e676cb784b675a452f","f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383","6629bdbf20ff103042e8a04fff6ca25559cf481abc58d6853a2d80a99f8ebc9d","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244",{"version":"fb99d14423b9a533e9ea0653881e8035ea07ec4db39c21685aabef01f72c1f49","signature":"1f30f229a3db05a79301b092bc8a80e12ae6a69d706cb1aee923a529c682a8f7"},{"version":"20cbf20265247c7175e1c660c47238f3542363c6f82e034ee35957f8d7cc5227","signature":"8491093de8f7060c9a52593513368ffc753b875b3dfe32289d9255e095bd359b"},"d2c5f82ffdcecb79f7999cde82035dea787441c77cfeba04e4670d96272856cd","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68","0efa0ae7820fedc30b27c86db22c664e1f09009e450a33270cfebd9ad50d19b6","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","c5bba3df0c3031ed400fcecfbe2012c585f97294a8bab7c50d350f7452254f97","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","97148bcf59cdf0e725f81c39df7acd2174a4edf5f739b275669f4d58c8bdce47","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"66fd8c5269870c4a28cc96e2efc5a6484c11e826413402b3321c8bdc3a958150","signature":"7e356ef6717216a71684c0f0d93c54d0448753e1eee9ba865e2975fcbabbef23"},"32ab25b7b28b24a138d879ca371b18c8fdfdd564ad5107e1333c5aa5d5fea494","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","b82fc740467e59abe3d6170417e461527d2a95610f55915fc59557c4b7be55ba","1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769",{"version":"e80942c286ed4b6fc8c7d98c073f4c350761020313fff2b3cdcd20e7476e5356","signature":"c77ecebdd53a890716b93338a1c6f3faee229516e46f7a794dcc2a1c3d0bc23e"},"a3ec644a6d3c4b142baab2ce25823e716804f5ed2018e32547377a82607830a2","433f68715ce2721491922e8b449e7ad33aeff11c2f932f8ab5a2af751af37119","d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","feed4a5ba77e66eacec93acac9a5ecfb3082d97cc5d5e2e9cbac6728701f9774","cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","360490448bbccda1d52f8e0d94b9946a71515acf6afb1759d03a9f61957c0071","3bb77e76870104c3b0b16f82682b1608ff85ad183560c5390e1884b807d977fb","963ebb3206e705d26b01faa5d49534f05be8884d81417b1e0aa069447931f82a","c8089775da5e00fbe5b11a03cff5981d29101992c010bdfc5adfeae4d92b7480","969d2d471070d6eca43e3cdd452b4544a549567f272e9207209460f843e20fb2","d4598e36eaa29d6c2a786e436d3d223b7ccd3e4f53d6925fa52207273736cd4a","4f87dea21bec06ed47e197495e88292806597728496fded1aa4312d42dc36ad6","9d162dd4edb4c49260a5c9e3d37b0fbea32d7ea4d1d60b7f2d2b7f35abe562cb","555663519c551cda16bd59d2340c972858b2d87711bd8109c2ddeb4662267a05","5bad1c569fab63bcfd9e570c22bb022546fec47bfe77264a289363fad551f91f","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","726fc52e8e1e0e9a4ab75c27c052ea0db38f463f65f56d3821e39abe8532c3b2","acbeb7d589177710ea8bab0116c10fc2b8afc4c14bea1754ea74d85c98a3b2f2","e4b489c61d522bef596c4a029eb2d70d91308bbf83b5a50663adaecd3fc5f1db","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","e462828bab3b0c950d53834bb25e95ee53bfe6e616594fbb3aac1a62a400e73e","5284b22e53ac9eed0de25fd9a02436d850389ff49a076621877a6c546aba1581","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","70594838909a394e4017449b7eb8d414d90f4fab1b1dd493588f6a22f2b575cf","90f2ae348cb711eed7d99b1d6967e30067fc4e435a8bc7f1403f14757ecd79e4","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","affd76cc3fb68150bf5f27b27ae9d7ddb6e88af5c1fdf74ee6b23ba999ad5bf0","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","e05f2d4d1fda6064989c4c9aa42c87c83fced485df6a0e051ca4fa69497d398d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","d5ada86344cd49d26a5d151cdfe8bf45f3ac291cc4df3645041c0b2bcfc3dddd","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","1c8d6092ec81841053eb264b5f6db411bb0b9a95c6e0f6bb18475ade6676895c","9a46476728ded19d2eb9396420106e49c5c7c36cd093f13eb9f8afea63f4b996","0f85a0bab1ed365725136ede09c0c4c2af9555e1f9e4ff70482734128696ac1d","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","602e11b58de6d2b48ed8d1023762009a7f03aa5744cc283833e97f99dd29a4ac","0c5344fdadc6f4f6b825c2234d7082c1e93c9c252394d369f39939a2a98cc92e","8cd1878e199b044a1d1faea0fcc85acfc2d8391f78be10dbb75542b61af92712","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","0c6b193c3f51c5d1ae598073fcf57833ae748f91551c73f7f4e31facd282941c","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","2c4a628921d77106f4262d458da8b134c2da67b1ab15131d2367cd57d1a56920","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","f5a45ce6b2f338c8b01d81aea746ff852d3e91abe24afc631b1042fb6bc022d8","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","72c83a2e8bc082f5221401930d6b474c3a1db69f7e2eafdf155a002dfc4456af","5ad158e347a2257cea31daef0412f080300ce76e256527e681ee2ca22d033bb0","945b80386ce77a1e6fb01e7fe924d6b065f87bda5631761f8eb9d51f5d4c85d0","d7a767976ba46e5dbac26693a8dc976d4eb44e501001c8f2f447a3cc72a55065",{"version":"2917b1b261f7aa6c10c559819b77cb6b769d538446acd1e1f4f090c042e98956","signature":"876e8a72f473ec05c5de39af1154a973b533663fdd2830480df4315dfa51b3cf"},{"version":"8c23f07d1e8428b15689a1a8fef9f7d7f3dc51b4a4ffc75d818ab6f563b69bdd","signature":"9b2aae0753bda8c64c28acdb8380bf85bf48aad0834a148c3c406997986fd340"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","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":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"46d317b6ee5a27bed0c9553bbadaedd710ab334606e6a5b1aaba4fe0b31d899d","affectsGlobalScope":true}],"root":[58,59,126,127,163,178,256,257],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[337],[49,337],[61,337],[49,61,337],[49,61,69,337],[47,48,337],[57,95,96,97,337],[57,60,103,104,105,107,337],[57,108,337],[57,337],[57,96,98,100,101,337],[57,102,337],[96,337],[97,99,337],[95,100,337],[176,337],[164,166,167,168,169,170,171,172,173,174,175,176,337],[164,165,167,168,169,170,171,172,173,174,175,176,337],[165,166,167,168,169,170,171,172,173,174,175,176,337],[164,165,166,168,169,170,171,172,173,174,175,176,337],[164,165,166,167,169,170,171,172,173,174,175,176,337],[164,165,166,167,168,170,171,172,173,174,175,176,337],[164,165,166,167,168,169,171,172,173,174,175,176,337],[164,165,166,167,168,169,170,172,173,174,175,176,337],[164,165,166,167,168,169,170,171,173,174,175,176,337],[164,165,166,167,168,169,170,171,172,174,175,176,337],[164,165,166,167,168,169,170,171,172,173,175,176,337],[164,165,166,167,168,169,170,171,172,173,174,176,337],[164,165,166,167,168,169,170,171,172,173,174,175,337],[258,337],[294,337],[295,300,328,337],[296,307,308,315,325,336,337],[296,297,307,315,337],[298,337],[299,300,308,316,337],[300,325,333,337],[301,303,307,315,337],[302,337],[303,304,337],[307,337],[305,307,337],[294,307,337],[307,308,309,325,336,337],[307,308,309,322,325,328,337],[292,337,341],[303,307,310,315,325,336,337],[307,308,310,311,315,325,333,336,337],[310,312,325,333,336,337],[258,259,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343],[307,313,337],[314,336,337,341],[303,307,315,325,337],[316,337],[317,337],[294,318,337],[319,335,337,341],[320,337],[321,337],[307,322,323,337],[322,324,337,339],[295,307,325,326,327,328,337],[295,325,327,337],[325,326,337],[328,337],[329,337],[294,325,337],[307,331,332,337],[331,332,337],[300,315,325,333,337],[334,337],[315,335,337],[295,310,321,336,337],[300,337],[325,337,338],[314,337,339],[337,340],[295,300,307,309,318,325,336,337,339,341],[325,337,342],[50,337],[49,53,337],[51,52,337],[182,337],[51,181,337],[62,63,64,65,66,67,68,69,70,337],[106,337],[49,53,55,56,337],[53,337],[52,53,337],[72,337],[73,80,128,129,130,131,337],[269,273,336,337],[269,325,336,337],[264,337],[266,269,333,336,337],[315,333,337],[337,344],[264,337,344],[266,269,315,336,337],[261,262,265,268,295,307,325,336,337],[261,267,337],[265,269,295,328,336,337,344],[295,337,344],[285,295,337,344],[263,264,337,344],[269,337],[263,264,265,266,267,268,269,270,271,273,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,337],[269,276,277,337],[267,269,277,278,337],[268,337],[261,264,269,337],[269,273,277,278,337],[273,337],[267,269,272,336,337],[261,266,267,269,273,276,337],[295,325,337],[264,269,285,295,337,341,344],[46,58,337],[46,57,60,71,73,89,125,337],[46,57,337],[46,57,60,71,73,89,109,125,162,163,177,337],[46,57,58,60,71,89,132,141,162,337],[46,57,60,71,89,132,162,255,337],[46,57,60,71,89,132,255,337],[250,337],[221,337],[57,221,337],[60,184,337],[57,60,188,193,205,337],[57,60,183,184,203,204,221,337],[57,176,185,190,221,337],[57,60,221,337],[57,60,91,221,337],[57,188,189,191,192,193,221,337],[57,194,198,199,200,221,337],[57,60,193,197,337],[57,60,195,196,203,221,337],[57,200,221,225,337],[57,206,221,337],[57,221,223,224,337],[207,208,209,337],[57,207,337],[57,185,221,337],[207,221,337],[57,60,337],[57,92,221,337],[211,212,213,214,215,216,217,218,337],[242,337],[244,337],[240,337],[201,203,210,219,221,222,226,239,241,243,245,246,248,249,337],[187,202,337],[57,60,187,201,337],[57,60,185,221,337],[57,60,185,186,221,337],[220,227,228,229,230,231,232,233,234,235,236,237,238,337],[57,220,337],[220,221,337],[182,183,184,185,195,196,197,205,206,210,219,220,337],[247,337],[180,251,337],[179,180,252,253,254,337],[57,113,337],[90,113,114,116,117,118,119,120,121,122,123,124,337],[89,337],[111,115,337],[60,109,337],[91,92,93,94,110,112,337],[57,111,337],[57,60,91,337],[57,91,337],[57,93,337],[57,109,337],[82,83,84,85,337],[79,81,86,87,88,337],[72,80,337],[74,75,76,77,78,337],[75,76,337],[74,75,77,337],[133,134,135,136,137,138,139,140,337],[142,143,144,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,337],[153,154,337],[154,337],[153,337],[58],[57,60,72],[57],[57,60,72,109,163]],"referencedMap":[[47,1],[61,2],[62,3],[65,4],[63,4],[67,4],[70,5],[69,1],[68,4],[66,4],[64,3],[48,1],[49,6],[95,1],[97,1],[104,1],[98,7],[96,1],[108,8],[109,9],[60,10],[102,11],[103,12],[105,13],[100,14],[101,15],[99,1],[177,16],[165,17],[166,18],[164,19],[167,20],[168,21],[169,22],[170,23],[171,24],[172,25],[173,26],[174,27],[175,28],[176,29],[345,1],[258,30],[259,30],[294,31],[295,32],[296,33],[297,34],[298,35],[299,36],[300,37],[301,38],[302,39],[303,40],[304,40],[306,41],[305,42],[307,43],[308,44],[309,45],[293,46],[343,1],[310,47],[311,48],[312,49],[344,50],[313,51],[314,52],[315,53],[316,54],[317,55],[318,56],[319,57],[320,58],[321,59],[322,60],[323,60],[324,61],[325,62],[327,63],[326,64],[328,65],[329,66],[330,67],[331,68],[332,69],[333,70],[334,71],[335,72],[336,73],[337,74],[338,75],[339,76],[340,77],[341,78],[342,79],[51,80],[50,1],[260,1],[55,81],[54,82],[181,83],[182,84],[71,85],[107,86],[57,87],[52,88],[106,89],[56,1],[53,82],[73,90],[80,90],[128,1],[129,1],[130,1],[132,91],[131,1],[72,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[276,92],[283,93],[275,92],[290,94],[267,95],[266,96],[289,97],[284,98],[287,99],[269,100],[268,101],[264,102],[263,103],[286,104],[265,105],[270,106],[271,1],[274,106],[261,1],[292,107],[291,106],[278,108],[279,109],[281,110],[277,111],[280,112],[285,97],[272,113],[273,114],[282,115],[262,116],[288,117],[59,118],[126,119],[127,119],[58,120],[178,121],[163,122],[256,123],[257,124],[251,125],[222,126],[183,127],[204,128],[184,127],[199,129],[205,130],[200,126],[190,127],[191,131],[185,127],[192,132],[189,133],[194,134],[201,135],[196,127],[195,127],[198,136],[197,137],[193,127],[226,138],[224,139],[225,140],[206,127],[223,1],[210,141],[209,142],[207,143],[208,144],[188,145],[214,126],[213,126],[215,126],[216,126],[217,126],[212,126],[218,146],[219,147],[211,126],[243,148],[242,1],[245,149],[244,126],[241,150],[240,126],[250,151],[203,152],[202,153],[186,154],[187,155],[239,156],[228,126],[229,126],[230,126],[237,126],[236,126],[238,126],[231,126],[232,126],[233,157],[235,126],[234,126],[220,143],[227,158],[246,127],[221,159],[249,126],[248,160],[247,126],[180,145],[253,10],[254,145],[179,1],[252,161],[255,162],[122,163],[123,90],[115,10],[124,10],[125,164],[90,165],[118,166],[119,166],[116,166],[117,166],[121,166],[120,166],[114,167],[113,168],[112,169],[111,145],[92,170],[93,171],[94,172],[91,10],[110,173],[82,1],[84,1],[85,1],[86,174],[83,1],[87,10],[89,175],[88,1],[81,176],[74,1],[79,177],[77,178],[76,179],[78,1],[75,1],[139,10],[137,1],[138,10],[140,10],[133,10],[141,180],[134,10],[135,10],[136,10],[158,1],[143,1],[156,1],[151,1],[145,1],[152,1],[161,1],[144,1],[157,1],[148,1],[162,181],[159,1],[146,1],[149,1],[150,1],[142,1],[160,1],[147,1],[155,182],[153,183],[154,184]],"exportedModulesMap":[[47,1],[61,2],[62,3],[65,4],[63,4],[67,4],[70,5],[69,1],[68,4],[66,4],[64,3],[48,1],[49,6],[95,1],[97,1],[104,1],[98,7],[96,1],[108,8],[109,9],[60,10],[102,11],[103,12],[105,13],[100,14],[101,15],[99,1],[177,16],[165,17],[166,18],[164,19],[167,20],[168,21],[169,22],[170,23],[171,24],[172,25],[173,26],[174,27],[175,28],[176,29],[345,1],[258,30],[259,30],[294,31],[295,32],[296,33],[297,34],[298,35],[299,36],[300,37],[301,38],[302,39],[303,40],[304,40],[306,41],[305,42],[307,43],[308,44],[309,45],[293,46],[343,1],[310,47],[311,48],[312,49],[344,50],[313,51],[314,52],[315,53],[316,54],[317,55],[318,56],[319,57],[320,58],[321,59],[322,60],[323,60],[324,61],[325,62],[327,63],[326,64],[328,65],[329,66],[330,67],[331,68],[332,69],[333,70],[334,71],[335,72],[336,73],[337,74],[338,75],[339,76],[340,77],[341,78],[342,79],[51,80],[50,1],[260,1],[55,81],[54,82],[181,83],[182,84],[71,85],[107,86],[57,87],[52,88],[106,89],[56,1],[53,82],[73,90],[80,90],[128,1],[129,1],[130,1],[132,91],[131,1],[72,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[276,92],[283,93],[275,92],[290,94],[267,95],[266,96],[289,97],[284,98],[287,99],[269,100],[268,101],[264,102],[263,103],[286,104],[265,105],[270,106],[271,1],[274,106],[261,1],[292,107],[291,106],[278,108],[279,109],[281,110],[277,111],[280,112],[285,97],[272,113],[273,114],[282,115],[262,116],[288,117],[59,185],[126,186],[127,186],[58,187],[178,188],[163,186],[256,186],[257,186],[251,125],[222,126],[183,127],[204,128],[184,127],[199,129],[205,130],[200,126],[190,127],[191,131],[185,127],[192,132],[189,133],[194,134],[201,135],[196,127],[195,127],[198,136],[197,137],[193,127],[226,138],[224,139],[225,140],[206,127],[223,1],[210,141],[209,142],[207,143],[208,144],[188,145],[214,126],[213,126],[215,126],[216,126],[217,126],[212,126],[218,146],[219,147],[211,126],[243,148],[242,1],[245,149],[244,126],[241,150],[240,126],[250,151],[203,152],[202,153],[186,154],[187,155],[239,156],[228,126],[229,126],[230,126],[237,126],[236,126],[238,126],[231,126],[232,126],[233,157],[235,126],[234,126],[220,143],[227,158],[246,127],[221,159],[249,126],[248,160],[247,126],[180,145],[253,10],[254,145],[179,1],[252,161],[255,162],[122,163],[123,90],[115,10],[124,10],[125,164],[90,165],[118,166],[119,166],[116,166],[117,166],[121,166],[120,166],[114,167],[113,168],[112,169],[111,145],[92,170],[93,171],[94,172],[91,10],[110,173],[82,1],[84,1],[85,1],[86,174],[83,1],[87,10],[89,175],[88,1],[81,176],[74,1],[79,177],[77,178],[76,179],[78,1],[75,1],[139,10],[137,1],[138,10],[140,10],[133,10],[141,180],[134,10],[135,10],[136,10],[158,1],[143,1],[156,1],[151,1],[145,1],[152,1],[161,1],[144,1],[157,1],[148,1],[162,181],[159,1],[146,1],[149,1],[150,1],[142,1],[160,1],[147,1],[155,182],[153,183],[154,184]],"semanticDiagnosticsPerFile":[47,61,62,65,63,67,70,69,68,66,64,48,49,95,97,104,98,96,108,109,60,102,103,105,100,101,99,177,165,166,164,167,168,169,170,171,172,173,174,175,176,345,258,259,294,295,296,297,298,299,300,301,302,303,304,306,305,307,308,309,293,343,310,311,312,344,313,314,315,316,317,318,319,320,321,322,323,324,325,327,326,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,51,50,260,55,54,181,182,71,107,57,52,106,56,53,73,80,128,129,130,132,131,72,46,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,276,283,275,290,267,266,289,284,287,269,268,264,263,286,265,270,271,274,261,292,291,278,279,281,277,280,285,272,273,282,262,288,59,126,127,58,178,163,256,257,251,222,183,204,184,199,205,200,190,191,185,192,189,194,201,196,195,198,197,193,226,224,225,206,223,210,209,207,208,188,214,213,215,216,217,212,218,219,211,243,242,245,244,241,240,250,203,202,186,187,239,228,229,230,237,236,238,231,232,233,235,234,220,227,246,221,249,248,247,180,253,254,179,252,255,122,123,115,124,125,90,118,119,116,117,121,120,114,113,112,111,92,93,94,91,110,82,84,85,86,83,87,89,88,81,74,79,77,76,78,75,139,137,138,140,133,141,134,135,136,158,143,156,151,145,152,161,144,157,148,162,159,146,149,150,142,160,147,155,153,154]},"version":"5.2.2"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/context",
3
3
  "description": "Webcomponent context following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "1.5.32",
5
+ "version": "1.5.35",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -12,6 +12,7 @@
12
12
  "./ox-page-action-overlay-template.js": "./dist/src/tools/ox-page-action-overlay-template.js",
13
13
  "./ox-page-action-context-bar.js": "./dist/src/tools/ox-page-action-context-bar.js",
14
14
  "./ox-context-toolbar.js": "./dist/src/layouts/ox-context-toolbar.js",
15
+ "./ox-context-page-toolbar.js": "./dist/src/layouts/ox-context-page-toolbar.js",
15
16
  "./ox-context-toolbar-overlay-style.js": "./dist/src/styles/ox-context-toolbar-overlay-style.js"
16
17
  },
17
18
  "typesVersions": {
@@ -31,6 +32,9 @@
31
32
  "ox-context-toolbar.js": [
32
33
  "dist/src/layouts/ox-context-toolbar.d.ts"
33
34
  ],
35
+ "ox-context-page-toolbar.js": [
36
+ "dist/src/layouts/ox-context-page-toolbar.d.ts"
37
+ ],
34
38
  "ox-context-toolbar-overlay-style.js": [
35
39
  "dist/src/styles/ox-context-toolbar-overlay-style.d.ts"
36
40
  ]
@@ -60,11 +64,11 @@
60
64
  },
61
65
  "dependencies": {
62
66
  "@material/mwc-icon": "^0.27.0",
63
- "@operato/help": "^1.5.32",
64
- "@operato/input": "^1.5.28",
65
- "@operato/layout": "^1.5.28",
66
- "@operato/shell": "^1.5.28",
67
- "@operato/styles": "^1.5.28",
67
+ "@operato/help": "^1.5.35",
68
+ "@operato/input": "^1.5.35",
69
+ "@operato/layout": "^1.5.35",
70
+ "@operato/shell": "^1.5.35",
71
+ "@operato/styles": "^1.5.35",
68
72
  "@operato/utils": "^1.4.64",
69
73
  "lit": "^2.5.0",
70
74
  "lodash-es": "^4.17.21",
@@ -102,5 +106,5 @@
102
106
  "prettier --write"
103
107
  ]
104
108
  },
105
- "gitHead": "cc7c19babfdb76202f12efaff1f28317608789cf"
109
+ "gitHead": "1f204e6fb9d39c6bb676403358b60477dd0135ae"
106
110
  }
@@ -0,0 +1,89 @@
1
+ import '@material/mwc-icon'
2
+
3
+ import { css, html, LitElement, nothing } from 'lit'
4
+ import { customElement, property, query, state } from 'lit/decorators.js'
5
+ import { connect } from 'pwa-helpers/connect-mixin.js'
6
+
7
+ import { TOOL_POSITION } from '@operato/layout'
8
+ import { store } from '@operato/shell'
9
+
10
+ @customElement('ox-context-page-toolbar')
11
+ export class ContextPageToolbar extends connect(store)(LitElement) {
12
+ static get styles() {
13
+ return [
14
+ css`
15
+ :host {
16
+ display: flex;
17
+ flex-direction: row-reverse;
18
+ position: relative;
19
+
20
+ justify-content: end;
21
+ align-items: center;
22
+
23
+ --context-action-bar-button-margin: 0px;
24
+ --context-action-bar-more-button-border-radius: 2px;
25
+
26
+ --mdc-icon-size: 20px;
27
+ --mdc-button-height: 20px;
28
+ --mdc-button-horizontal-padding: 2px;
29
+ }
30
+
31
+ :host > div {
32
+ display: flex;
33
+ flex-direction: row;
34
+
35
+ align-items: center;
36
+ }
37
+
38
+ * {
39
+ cursor: pointer;
40
+ }
41
+
42
+ mwc-icon {
43
+ background-color: var(--theme-white-color);
44
+ border: 1px solid rgba(var(--primary-color-rgb), 0.5);
45
+ padding: 1px 2px;
46
+ color: var(--primary-color);
47
+ }
48
+ `
49
+ ]
50
+ }
51
+
52
+ @property({ type: Object }) context: any
53
+ @state() private tools?: any[]
54
+
55
+ render() {
56
+ let contextKeys = Object.keys(this.context).filter(key => !!this.context[key])
57
+ let tools = (this.tools || []).filter(tool => {
58
+ if (!tool.context || contextKeys.includes(tool.context)) {
59
+ return tool
60
+ }
61
+ })
62
+
63
+ let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END)
64
+ let frontTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT)
65
+ let centerTools = tools.filter(tool => tool.position == TOOL_POSITION.CENTER)
66
+ let rearTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR)
67
+ let rearEndTools = tools.filter(tool => tool.position == TOOL_POSITION.REAR_END)
68
+
69
+ return html`
70
+ ${frontEndTools.length > 0
71
+ ? html`<div id="front-end">${frontEndTools.map(tool => html` ${tool.template} `)}</div>`
72
+ : nothing}
73
+ ${frontTools.length > 0
74
+ ? html`<div id="front">${frontTools.map(tool => html` ${tool.template} `)}</div>`
75
+ : nothing}
76
+ ${centerTools.length > 0
77
+ ? html`<div id="center">${centerTools.map(tool => html` ${tool.template} `)}</div>`
78
+ : nothing}
79
+ ${rearTools.length > 0 ? html`<div id="rear">${rearTools.map(tool => html` ${tool.template} `)}</div>` : nothing}
80
+ ${rearEndTools.length > 0
81
+ ? html`<div id="rear-end">${rearEndTools.map(tool => html` ${tool.template} `)}</div>`
82
+ : nothing}
83
+ `
84
+ }
85
+
86
+ stateChanged(state: any) {
87
+ this.tools = state.context.tools
88
+ }
89
+ }
@@ -1,6 +1,6 @@
1
1
  import '@material/mwc-icon'
2
2
 
3
- import { css, html, LitElement } from 'lit'
3
+ import { css, html, LitElement, nothing } from 'lit'
4
4
  import { customElement, property, query, state } from 'lit/decorators.js'
5
5
  import { connect } from 'pwa-helpers/connect-mixin.js'
6
6
 
@@ -94,9 +94,15 @@ export class ContextToolbar extends connect(store)(LitElement) {
94
94
  @state() private tools?: any[]
95
95
 
96
96
  render() {
97
+ if (this.context.toolbar === false) {
98
+ return nothing
99
+ }
100
+
97
101
  let contextKeys = Object.keys(this.context).filter(key => !!this.context[key])
98
102
  let tools = (this.tools || []).filter(tool => {
99
- if (!tool.context || contextKeys.includes(tool.context)) return tool
103
+ if (!tool.context || contextKeys.includes(tool.context)) {
104
+ return tool
105
+ }
100
106
  })
101
107
 
102
108
  let frontEndTools = tools.filter(tool => tool.position == TOOL_POSITION.FRONT_END)
@@ -48,6 +48,13 @@ export class PageActionContextBar extends connect(store)(LitElement) {
48
48
  font-size: 2rem;
49
49
  }
50
50
 
51
+ mwc-icon {
52
+ background-color: var(--theme-white-color);
53
+ border: 1px solid rgba(var(--primary-color-rgb), 0.5);
54
+ padding: 1px 2px;
55
+ color: var(--primary-color);
56
+ }
57
+
51
58
  @media screen and (max-width: 460px) {
52
59
  mwc-button {
53
60
  --mdc-button-horizontal-padding: var(--padding-default);
@@ -119,7 +126,7 @@ export class PageActionContextBar extends connect(store)(LitElement) {
119
126
  let { outlined, raised, dense, danger } = emphasis || {}
120
127
 
121
128
  return type == 'text'
122
- ? html` <span>${title}</span> `
129
+ ? html` <span @click=${action}>${title}</span> `
123
130
  : type == 'select' || (select && select.length > 0)
124
131
  ? html`
125
132
  <select @change=${action}>
@@ -128,6 +135,8 @@ export class PageActionContextBar extends connect(store)(LitElement) {
128
135
  `
129
136
  : type == 'link'
130
137
  ? html` <a href=${href}>${title}</a> `
138
+ : type == 'icon'
139
+ ? html`<mwc-icon @click=${action}>${icon}</mwc-icon>`
131
140
  : html`
132
141
  <mwc-button
133
142
  label=${title}