@heartlandone/vega 2.95.0 → 2.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{app-globals-76815382.js → app-globals-38afea36.js} +7 -7
- package/dist/cjs/{code-block-493c7ce7.js → code-block-4126dc3b.js} +1501 -55
- package/dist/cjs/{component-value-history-controller-slimmer.abstract-ab21fcbf.js → component-value-history-controller-slimmer.abstract-38ba956e.js} +2 -2
- package/dist/cjs/{content-state-fc34a814.js → content-state-50e8a03c.js} +142 -580
- package/dist/cjs/{element-appender-slimmer-1d6323c2.js → element-appender-slimmer-7773fdab.js} +115 -0
- package/dist/cjs/{image-annotation-action-7c4cd316.js → image-annotation-action-89363de8.js} +2 -2
- package/dist/cjs/{image-extension-30a7c10f.js → image-extension-c881c454.js} +2 -2
- package/dist/cjs/index.cjs.js +10 -10
- package/dist/cjs/{link-extension-92a63cb7.js → link-extension-b7f99a52.js} +2 -2
- package/dist/cjs/loader.cjs.js +7 -7
- package/dist/cjs/{public-rules-9e1ea1d9.js → public-rules-72894208.js} +3 -3
- package/dist/cjs/{range-30219330.js → range-95d41dea.js} +1 -1
- package/dist/cjs/{rich-text-editor-required-rule-23bf7485.js → rich-text-editor-required-rule-4d6d2493.js} +1 -1
- package/dist/cjs/{split-cell-operation-43752212.js → split-cell-operation-70be116d.js} +2 -2
- package/dist/cjs/{token-extension-d123d9d0.js → token-extension-eb828948.js} +35 -11
- package/dist/cjs/vega-code-block.cjs.entry.js +3 -3
- package/dist/cjs/vega-date-picker_2.cjs.entry.js +1 -1
- package/dist/cjs/vega-dropdown_5.cjs.entry.js +27 -4
- package/dist/cjs/vega-env-manager-23b8b23c.js +2 -2
- package/dist/cjs/vega-popover_2.cjs.entry.js +1 -1
- package/dist/cjs/vega-rich-text-content.cjs.entry.js +58 -9
- package/dist/cjs/vega-rich-text-editor_4.cjs.entry.js +608 -90
- package/dist/cjs/vega-rich-text-table-properties_3.cjs.entry.js +3 -3
- package/dist/cjs/vega-section-title.cjs.entry.js +896 -14
- package/dist/cjs/vega-time-picker_2.cjs.entry.js +1 -1
- package/dist/cjs/vega-tooltip_2.cjs.entry.js +1 -1
- package/dist/cjs/vega.cjs.js +7 -7
- package/dist/collection/components/vega-combo-box/vega-combo-box.js +2 -2
- package/dist/collection/components/vega-dropdown/vega-dropdown.js +30 -7
- package/dist/collection/components/vega-input-select/vega-input-select.js +2 -2
- package/dist/collection/components/vega-rich-text-content/vega-rich-text-content.css +4 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/block-delete-node-content-strategy.js +29 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/block-delete-text-or-decorator-node-strategy.js +10 -1
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/block-transform-to-list-strategy.js +8 -3
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-annotation-strategy.abstract.js +60 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-item-replace-nest-list-strategy.js +36 -4
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-items-strategy.abstract.js +27 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-nest-items-strategy.js +74 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-remove-list-item-strategy.js +81 -1
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-selection.js +30 -0
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-to-list-strategy.js +160 -9
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-to-paragraph-strategy.js +376 -10
- package/dist/collection/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-unnest-items-strategy.js +104 -0
- package/dist/collection/components/vega-rich-text-editor/dto/actions/modify-content-action.abstract.js +2 -0
- package/dist/collection/components/vega-rich-text-editor/dto/actions/nest-list-items-action.js +12 -0
- package/dist/collection/components/vega-rich-text-editor/dto/actions/unnest-list-items-action.js +12 -0
- package/dist/collection/components/vega-rich-text-editor/dto/annotations/list-annotation.js +12 -0
- package/dist/collection/components/vega-rich-text-editor/dto/blocks/list-block.js +10 -1
- package/dist/collection/components/vega-rich-text-editor/dto/blocks/list-item-block.js +11 -3
- package/dist/collection/components/vega-rich-text-editor/dto/content-state.js +7 -1
- package/dist/collection/components/vega-rich-text-editor/dto/filter-styles-strategies/list-block/list-block-filter-styles-strategy.js +8 -4
- package/dist/collection/components/vega-rich-text-editor/dto/renderers/blocks/list-block-renderer.js +34 -1
- package/dist/collection/components/vega-rich-text-editor/dto/renderers/blocks/list-item-block-renderer.js +20 -3
- package/dist/collection/components/vega-rich-text-editor/extensions/table/annotation-handler/table-annotation-handler-base.js +25 -1
- package/dist/collection/components/vega-rich-text-editor/slimmers/controllers/helper/element-to-dto-strategy/li-to-rte-list-item-block-strategy.js +2 -0
- package/dist/collection/components/vega-rich-text-editor/slimmers/controllers/helper/input-event-handler/abstract-delete-content-handler.js +29 -0
- package/dist/collection/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/bullets-numbers-toolbar-button-slimmer.js +30 -1
- package/dist/collection/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/abstract-list-keyboard-handler.js +204 -0
- package/dist/collection/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/list-shift-tab-outdent-handler.js +42 -0
- package/dist/collection/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/list-tab-indent-handler.js +34 -0
- package/dist/collection/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/list-keyboard-slimmer.js +180 -0
- package/dist/collection/components/vega-section-title/slimmers/a11y-tree/build-section-title-a11y-tree.js +54 -0
- package/dist/collection/components/vega-section-title/slimmers/renderers/vega-section-title-renderer.js +4 -4
- package/dist/collection/components/vega-section-title/vega-section-title.js +18 -2
- package/dist/collection/helpers/a11y-tree/a11y-node-dto.js +210 -0
- package/dist/collection/helpers/a11y-tree/a11y-tree-applier.js +189 -0
- package/dist/collection/helpers/a11y-tree/a11y-tree.types.js +48 -0
- package/dist/collection/helpers/a11y-tree/strategies/baseline-strategy.js +78 -0
- package/dist/collection/helpers/a11y-tree/strategies/firefox-nvda-strategy.js +56 -0
- package/dist/collection/helpers/a11y-tree/strategies/webkit-voiceover-strategy.js +140 -0
- package/dist/collection/helpers/a11y-tree/strategy-resolver.js +172 -0
- package/dist/collection/helpers/slimmers/a11y-tree-slimmer.js +54 -0
- package/dist/collection/helpers/slimmers/element-appender/element-appender-slimmer.js +29 -0
- package/dist/collection/helpers/slimmers/element-appender/visibility-modifiers/clip-on-scroll-modifier.js +70 -0
- package/dist/collection/helpers/slimmers/element-appender/visibility-modifiers/visibility-modifier.interface.js +1 -0
- package/dist/collection/helpers/ui/element-appender.js +16 -0
- package/dist/esm/{app-globals-eafcc7a1.js → app-globals-d7b651c1.js} +7 -7
- package/dist/esm/{code-block-e12588fe.js → code-block-0a88b481.js} +1495 -51
- package/dist/esm/{component-value-history-controller-slimmer.abstract-4e8eb313.js → component-value-history-controller-slimmer.abstract-6846edfa.js} +2 -2
- package/dist/esm/{content-state-8032467a.js → content-state-79ca99e5.js} +105 -541
- package/dist/esm/{element-appender-slimmer-7fcb944b.js → element-appender-slimmer-73ad10ae.js} +115 -0
- package/dist/esm/{image-annotation-action-08a20d5e.js → image-annotation-action-bb299ef1.js} +2 -2
- package/dist/esm/{image-extension-b6c7e4a7.js → image-extension-48a96f98.js} +2 -2
- package/dist/esm/index.js +8 -8
- package/dist/esm/{link-extension-97fcb8fb.js → link-extension-09534514.js} +2 -2
- package/dist/esm/loader.js +7 -7
- package/dist/esm/{public-rules-c06f0d2a.js → public-rules-5eb03ef0.js} +3 -3
- package/dist/esm/{range-e999837f.js → range-d4deb7df.js} +1 -1
- package/dist/esm/{rich-text-editor-required-rule-71f8ee98.js → rich-text-editor-required-rule-5bbbce23.js} +1 -1
- package/dist/esm/{split-cell-operation-359f8082.js → split-cell-operation-7f3058ad.js} +2 -2
- package/dist/esm/{token-extension-f5bf9c21.js → token-extension-40c32bcc.js} +30 -6
- package/dist/esm/vega-code-block.entry.js +3 -3
- package/dist/esm/vega-date-picker_2.entry.js +1 -1
- package/dist/esm/vega-dropdown_5.entry.js +27 -4
- package/dist/esm/vega-env-manager-8f8dc473.js +2 -2
- package/dist/esm/vega-popover_2.entry.js +1 -1
- package/dist/esm/vega-rich-text-content.entry.js +58 -9
- package/dist/esm/vega-rich-text-editor_4.entry.js +604 -86
- package/dist/esm/vega-rich-text-table-properties_3.entry.js +3 -3
- package/dist/esm/vega-section-title.entry.js +897 -15
- package/dist/esm/vega-time-picker_2.entry.js +1 -1
- package/dist/esm/vega-tooltip_2.entry.js +1 -1
- package/dist/esm/vega.js +7 -7
- package/dist/sri/vega-sri-manifest.json +94 -94
- package/dist/types/components/vega-combo-box/vega-combo-box.d.ts +6 -6
- package/dist/types/components/vega-dropdown/types.d.ts +2 -2
- package/dist/types/components/vega-dropdown/vega-dropdown.d.ts +32 -9
- package/dist/types/components/vega-input-select/vega-input-select.d.ts +6 -6
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-annotation-strategy.abstract.d.ts +36 -0
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-item-replace-nest-list-strategy.d.ts +14 -2
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-items-strategy.abstract.d.ts +22 -0
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-nest-items-strategy.d.ts +21 -0
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-remove-list-item-strategy.d.ts +14 -0
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-selection.d.ts +15 -0
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-to-list-strategy.d.ts +30 -3
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-transform-to-paragraph-strategy.d.ts +99 -3
- package/dist/types/components/vega-rich-text-editor/dto/action-handle-strategies/modify-content-strategies/list-unnest-items-strategy.d.ts +22 -0
- package/dist/types/components/vega-rich-text-editor/dto/actions/modify-content-action.abstract.d.ts +2 -0
- package/dist/types/components/vega-rich-text-editor/dto/actions/nest-list-items-action.d.ts +11 -0
- package/dist/types/components/vega-rich-text-editor/dto/actions/unnest-list-items-action.d.ts +11 -0
- package/dist/types/components/vega-rich-text-editor/dto/annotations/list-annotation.d.ts +8 -0
- package/dist/types/components/vega-rich-text-editor/dto/blocks/list-block.d.ts +6 -1
- package/dist/types/components/vega-rich-text-editor/dto/blocks/list-item-block.d.ts +5 -1
- package/dist/types/components/vega-rich-text-editor/dto/content-state.d.ts +2 -2
- package/dist/types/components/vega-rich-text-editor/dto/renderers/blocks/list-block-renderer.d.ts +2 -0
- package/dist/types/components/vega-rich-text-editor/dto/renderers/blocks/list-item-block-renderer.d.ts +8 -0
- package/dist/types/components/vega-rich-text-editor/extensions/table/annotation-handler/table-annotation-handler-base.d.ts +18 -0
- package/dist/types/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/bullets-numbers-toolbar-button-slimmer.d.ts +8 -0
- package/dist/types/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/abstract-list-keyboard-handler.d.ts +99 -0
- package/dist/types/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/list-shift-tab-outdent-handler.d.ts +15 -0
- package/dist/types/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/helper/list-tab-indent-handler.d.ts +15 -0
- package/dist/types/components/vega-rich-text-editor/slimmers/renderers/tools/bullets-numbers/list-keyboard-slimmer.d.ts +73 -0
- package/dist/types/components/vega-section-title/slimmers/a11y-tree/build-section-title-a11y-tree.d.ts +41 -0
- package/dist/types/components/vega-section-title/vega-section-title.d.ts +9 -0
- package/dist/types/components.d.ts +10 -10
- package/dist/types/helpers/a11y-tree/a11y-node-dto.d.ts +173 -0
- package/dist/types/helpers/a11y-tree/a11y-tree-applier.d.ts +28 -0
- package/dist/types/helpers/a11y-tree/a11y-tree.types.d.ts +137 -0
- package/dist/types/helpers/a11y-tree/strategies/baseline-strategy.d.ts +18 -0
- package/dist/types/helpers/a11y-tree/strategies/firefox-nvda-strategy.d.ts +16 -0
- package/dist/types/helpers/a11y-tree/strategies/webkit-voiceover-strategy.d.ts +23 -0
- package/dist/types/helpers/a11y-tree/strategy-resolver.d.ts +59 -0
- package/dist/types/helpers/slimmers/a11y-tree-slimmer.d.ts +49 -0
- package/dist/types/helpers/slimmers/element-appender/element-appender-slimmer.d.ts +9 -0
- package/dist/types/helpers/slimmers/element-appender/visibility-modifiers/clip-on-scroll-modifier.d.ts +37 -0
- package/dist/types/helpers/slimmers/element-appender/visibility-modifiers/visibility-modifier.interface.d.ts +56 -0
- package/dist/types/helpers/ui/element-appender.d.ts +7 -0
- package/dist/vega/index.esm.js +1 -1
- package/dist/vega/{p-9c39f90b.entry.js → p-1dfbc542.entry.js} +1 -1
- package/dist/vega/{p-e235020b.entry.js → p-22cc174e.entry.js} +1 -1
- package/dist/vega/{p-b187b82d.entry.js → p-2df5d59b.entry.js} +1 -1
- package/dist/vega/{p-f7e459cd.js → p-312d8205.js} +1 -1
- package/dist/vega/{p-a7209700.js → p-3345d903.js} +1 -1
- package/dist/vega/{p-02355de8.js → p-3c23ec90.js} +1 -1
- package/dist/vega/p-55e0014a.js +3 -0
- package/dist/vega/p-5f377954.js +1 -1
- package/dist/vega/p-65fee02f.entry.js +1 -0
- package/dist/vega/p-6a51d720.js +1 -0
- package/dist/vega/{p-fe24b459.js → p-6c7b6d45.js} +1 -1
- package/dist/vega/{p-579cdeae.js → p-84b7a775.js} +1 -1
- package/dist/vega/{p-df828d90.entry.js → p-96da7d30.entry.js} +1 -1
- package/dist/vega/{p-88be9ec5.js → p-9d3f69cb.js} +1 -1
- package/dist/vega/{p-8a001caa.js → p-9f11b579.js} +1 -1
- package/dist/vega/{p-ba2b9663.entry.js → p-acaff62d.entry.js} +1 -1
- package/dist/vega/p-b63319e9.entry.js +1 -0
- package/dist/vega/{p-c079c935.entry.js → p-b660f38c.entry.js} +1 -1
- package/dist/vega/p-b8ffa42f.entry.js +1 -0
- package/dist/vega/{p-4fe40b76.js → p-c4564904.js} +1 -1
- package/dist/vega/p-d9158512.js +1 -0
- package/dist/vega/p-e62d41ee.js +1 -0
- package/dist/vega/{p-9f7154d2.js → p-ec5dee32.js} +1 -1
- package/dist/vega/{p-05d04c07.entry.js → p-f29d9707.entry.js} +1 -1
- package/dist/vega/vega.esm.js +1 -1
- package/package.json +3 -2
- package/dist/vega/p-0be4df0a.js +0 -1
- package/dist/vega/p-38c9d782.js +0 -1
- package/dist/vega/p-513bc0d9.js +0 -1
- package/dist/vega/p-8d4b85e7.entry.js +0 -1
- package/dist/vega/p-c5d3b008.entry.js +0 -1
- package/dist/vega/p-d25ca0c3.entry.js +0 -1
- package/dist/vega/p-f4da615a.js +0 -3
|
@@ -13,7 +13,7 @@ import { X as isTimeStr, ae as pad, i as isNonNullable, af as convert12HourTo24H
|
|
|
13
13
|
import { i as isArrayEqual } from './array-7888f339.js';
|
|
14
14
|
import { F as FORM_ELEMENT_VALUE_CHANGE } from './static-subject-title-1c86e974.js';
|
|
15
15
|
import { C as ChangeManager } from './change-manager-6a7eb88c.js';
|
|
16
|
-
import { E as ElementAppenderSlimmer } from './element-appender-slimmer-
|
|
16
|
+
import { E as ElementAppenderSlimmer } from './element-appender-slimmer-73ad10ae.js';
|
|
17
17
|
import { C as ClickOutsideOnlyToDismissStrategy } from './click-outside-only-to-dismiss-strategy-3d286c1b.js';
|
|
18
18
|
import { K as KeyboardManagerSlimmer } from './keyboard-manager-slimmer-f3f66c15.js';
|
|
19
19
|
import { I as InternalFormFieldValidationRule } from './internal-form-field-validation-rule.abstract-f5b6bdbf.js';
|
|
@@ -3,7 +3,7 @@ import { s as sanitizeVegaComponent } from './component-7d906393.js';
|
|
|
3
3
|
import { I as InjectKeyboardManager } from './inject-keyboard-manager-86126b5b.js';
|
|
4
4
|
import { c as MapToComponentField, M as MapToComponentMethod, I as InjectVegaSlimmer } from './global-slimmer-registry-17c4efd4.js';
|
|
5
5
|
import { V as VegaComponentUsageRuntimeMetricsSlimmer, I as InjectVegaGlobalSlimmer } from './component-usage-runtime-metrics-4b1afd04.js';
|
|
6
|
-
import { E as ElementAppenderSlimmer } from './element-appender-slimmer-
|
|
6
|
+
import { E as ElementAppenderSlimmer } from './element-appender-slimmer-73ad10ae.js';
|
|
7
7
|
import { c as createDeprecatedPropertySlimmer } from './deprecated-property-slimmer-ea34fa7b.js';
|
|
8
8
|
import './keyboard-manager-a0c3e1cf.js';
|
|
9
9
|
import './ui-d73f756a.js';
|
package/dist/esm/vega.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { p as promiseResolve, b as bootstrapLazy } from './index-090d31ca.js';
|
|
2
|
-
import { g as globalScripts } from './app-globals-
|
|
2
|
+
import { g as globalScripts } from './app-globals-d7b651c1.js';
|
|
3
3
|
import './feature-flag-controller-3fd04ea9.js';
|
|
4
4
|
import './global-slimmer-registry-17c4efd4.js';
|
|
5
5
|
import './index-9c9865c0.js';
|
|
6
|
-
import './token-extension-
|
|
6
|
+
import './token-extension-40c32bcc.js';
|
|
7
7
|
import './misc-9fdbcfbb.js';
|
|
8
8
|
import './ui-d73f756a.js';
|
|
9
9
|
import './create-public-api-runtime-metrics-slimmer-48f85199.js';
|
|
@@ -23,8 +23,8 @@ import './static-subject-title-1c86e974.js';
|
|
|
23
23
|
import './internal-calendar-period-factory-3a07dba0.js';
|
|
24
24
|
import './type-guard-ec5e8628.js';
|
|
25
25
|
import './typography-19c3b9be.js';
|
|
26
|
-
import './link-extension-
|
|
27
|
-
import './code-block-
|
|
26
|
+
import './link-extension-09534514.js';
|
|
27
|
+
import './code-block-0a88b481.js';
|
|
28
28
|
import './dom-node-subject-observer-factory-ddff8662.js';
|
|
29
29
|
import './observer-3959f9dd.js';
|
|
30
30
|
import './vega-internal-event-id-827eb1ce.js';
|
|
@@ -34,14 +34,14 @@ import './tinycolor-polyfill-7be0eb93.js';
|
|
|
34
34
|
import './vega-nonce-manager-497e5eb5.js';
|
|
35
35
|
import './index-3b327f29.js';
|
|
36
36
|
import './object-0c277f57.js';
|
|
37
|
-
import './content-state-
|
|
37
|
+
import './content-state-79ca99e5.js';
|
|
38
38
|
import './internal-icon-manager-e7c57096.js';
|
|
39
39
|
import './icon-manager-4ef3f6dd.js';
|
|
40
|
-
import './split-cell-operation-
|
|
40
|
+
import './split-cell-operation-7f3058ad.js';
|
|
41
41
|
import './remote-invocation-registry-d69245c2.js';
|
|
42
42
|
import './pixel-f32c07ce.js';
|
|
43
43
|
import './timer-9321173b.js';
|
|
44
|
-
import './image-extension-
|
|
44
|
+
import './image-extension-48a96f98.js';
|
|
45
45
|
import './copy-54e45e2d.js';
|
|
46
46
|
import './vega-dialog-controller-726b74f9.js';
|
|
47
47
|
import './valid-credit-card-number-rule-ca5a47d6.js';
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-
|
|
2
|
+
"generatedAt": "2026-07-31T02:56:17.625Z",
|
|
3
3
|
"baseUrl": "/vega/",
|
|
4
4
|
"files": {
|
|
5
5
|
"index.esm.js": {
|
|
6
|
-
"integrity": "sha384-
|
|
6
|
+
"integrity": "sha384-lSnDnWbhrYQAsakRIVwSpm4dTclKW3qvFMXGGt23uh2XZrPq8Xp3b9vt8eHjvb/N",
|
|
7
7
|
"url": "/vega/index.esm.js"
|
|
8
8
|
},
|
|
9
9
|
"p-014cd411.js": {
|
|
10
10
|
"integrity": "sha384-OdNNQUhIipVl9vSR3HrFQdVwelNO994ebLUCstG+KW5Q/klx4KoM4wR1CCRhRy60",
|
|
11
11
|
"url": "/vega/p-014cd411.js"
|
|
12
12
|
},
|
|
13
|
-
"p-02355de8.js": {
|
|
14
|
-
"integrity": "sha384-pI2OgsNJQF0N8LWoviUtRz7Hx2j+Kaq0q0WtcZdxlDa8th7BDNpNtSjWtFxylD0X",
|
|
15
|
-
"url": "/vega/p-02355de8.js"
|
|
16
|
-
},
|
|
17
13
|
"p-02841589.js": {
|
|
18
14
|
"integrity": "sha384-+/Nnh1av/rA44aX6VVnBUXVocxXGCSWL8rriIEet3Ocy083ZtlgWXSCm7b+TyI8m",
|
|
19
15
|
"url": "/vega/p-02841589.js"
|
|
@@ -22,18 +18,10 @@
|
|
|
22
18
|
"integrity": "sha384-WsOVfXThXqe5QUSBGV9ymJFmkVOvhILoaluGdY9F5uVhO7gZUbOmsfSI+3lx6dd4",
|
|
23
19
|
"url": "/vega/p-0512308f.entry.js"
|
|
24
20
|
},
|
|
25
|
-
"p-05d04c07.entry.js": {
|
|
26
|
-
"integrity": "sha384-mX1OGud2bcTC+oh0Fq/hK1CBJ6xAy/chJ5NDyc7GdKzu5OiT0gLPdxffxkRp+0RJ",
|
|
27
|
-
"url": "/vega/p-05d04c07.entry.js"
|
|
28
|
-
},
|
|
29
21
|
"p-07c2725a.js": {
|
|
30
22
|
"integrity": "sha384-7wuVE52AUvMxuE+RGbI0AipNbcTfQT8Gk8H8JPWjxLHN9/cAwcekLVJxlYRHQidT",
|
|
31
23
|
"url": "/vega/p-07c2725a.js"
|
|
32
24
|
},
|
|
33
|
-
"p-0be4df0a.js": {
|
|
34
|
-
"integrity": "sha384-nbMMyuMe0NVofRvfFbBekD0calW0nAZtNHNHSv5CpNBc/c+L6M2xFLtSHZFbk1v/",
|
|
35
|
-
"url": "/vega/p-0be4df0a.js"
|
|
36
|
-
},
|
|
37
25
|
"p-0c667d6a.js": {
|
|
38
26
|
"integrity": "sha384-LII2o7xWEJ+1UC55ocKid2wp49XMCb40eyUmcLk0gTgV+jgaiebmpi0Njs3F/V0L",
|
|
39
27
|
"url": "/vega/p-0c667d6a.js"
|
|
@@ -70,6 +58,10 @@
|
|
|
70
58
|
"integrity": "sha384-O4HYOr1c8XW68tD+mT4D/+ndZzTQhKW7INBEhnNc6DDBC/DX5+wXIKgdISjnGHS/",
|
|
71
59
|
"url": "/vega/p-1d8312d3.entry.js"
|
|
72
60
|
},
|
|
61
|
+
"p-1dfbc542.entry.js": {
|
|
62
|
+
"integrity": "sha384-Gk545iG1z2DAdIh04HqAMUl5P0f+RC/jqt099RyUikW9U+OGEgqjt4ZPASPjXFqA",
|
|
63
|
+
"url": "/vega/p-1dfbc542.entry.js"
|
|
64
|
+
},
|
|
73
65
|
"p-1ec763ab.js": {
|
|
74
66
|
"integrity": "sha384-qGGtzjOyoggzxNzsCDZ6RdHLSCvLTjidq6iSAezgjI3Igwk0ePdD9VJiw1adgrKa",
|
|
75
67
|
"url": "/vega/p-1ec763ab.js"
|
|
@@ -82,6 +74,10 @@
|
|
|
82
74
|
"integrity": "sha384-+ReIVVZEUyic/HzFFPSBmDTaSYFSJbD9QiIPaHKzsJPHyxmJ16InKnCDA8gcfCxV",
|
|
83
75
|
"url": "/vega/p-200c8914.entry.js"
|
|
84
76
|
},
|
|
77
|
+
"p-22cc174e.entry.js": {
|
|
78
|
+
"integrity": "sha384-LPb20FyZqXJNeQMb5BO6XFaj0bPFa4QVd5fvasTub1kW3Ky8xD4eRJ/OrsLJAbWk",
|
|
79
|
+
"url": "/vega/p-22cc174e.entry.js"
|
|
80
|
+
},
|
|
85
81
|
"p-262ec334.js": {
|
|
86
82
|
"integrity": "sha384-wnoxYBmpEyheBWUKqoOhVcSF2jQCWvEWYNDkpQ+vXSNsI7WIUjCV8fWeRH7Wmq8J",
|
|
87
83
|
"url": "/vega/p-262ec334.js"
|
|
@@ -118,6 +114,10 @@
|
|
|
118
114
|
"integrity": "sha384-Ziu7hRH3Y1AObt8SoL8I/3SkbDCyf4nT669Y0iMGPygYQ0HH9P80Ly2B/Ml9Kio3",
|
|
119
115
|
"url": "/vega/p-2d8d4d5b.entry.js"
|
|
120
116
|
},
|
|
117
|
+
"p-2df5d59b.entry.js": {
|
|
118
|
+
"integrity": "sha384-F/0qFrNkIGExf+AODmnopxxZlXjvYDRGPAF2/W5rfdZNb5d/nv3xvxmiO9TQnSuA",
|
|
119
|
+
"url": "/vega/p-2df5d59b.entry.js"
|
|
120
|
+
},
|
|
121
121
|
"p-306720b8.entry.js": {
|
|
122
122
|
"integrity": "sha384-xTgmP2/6CtWRBIXADEKt3gaaX2Y90IVjP2ZruYLIku7zEr6AtazAE71mOb3KXIap",
|
|
123
123
|
"url": "/vega/p-306720b8.entry.js"
|
|
@@ -126,6 +126,10 @@
|
|
|
126
126
|
"integrity": "sha384-qNzlUwSnKGjDT1PrH9SIRtqjtnE0RJKWu3yKXSMbtVJrvwZRGeRj3lDsEgRuA5fJ",
|
|
127
127
|
"url": "/vega/p-31216140.js"
|
|
128
128
|
},
|
|
129
|
+
"p-312d8205.js": {
|
|
130
|
+
"integrity": "sha384-YOEomNyrZb7EsvFtATezIERA8H99ciy7RPtVbTQ1P0zNwM2pDX3LVSs6GCqDIEAi",
|
|
131
|
+
"url": "/vega/p-312d8205.js"
|
|
132
|
+
},
|
|
129
133
|
"p-320091b7.js": {
|
|
130
134
|
"integrity": "sha384-6ibO91KjDshdl/xO3HOZ0QPkLLo2A3Cy+ewLxGivUiIJ8lz02BL8561CggLBHksK",
|
|
131
135
|
"url": "/vega/p-320091b7.js"
|
|
@@ -134,6 +138,10 @@
|
|
|
134
138
|
"integrity": "sha384-G4ssRSTRD0wpbkqL/bZZRfS17NnLUpDw5m/Squ3FZcKgx2fjsJpfXleuQ/H4wgjB",
|
|
135
139
|
"url": "/vega/p-331a62d5.js"
|
|
136
140
|
},
|
|
141
|
+
"p-3345d903.js": {
|
|
142
|
+
"integrity": "sha384-xDUWBCSdsQzn1Ua4VRgJROvszdxCbIoVY21cx/kfAhtbIX7lIlZEdZWaFngVYtJM",
|
|
143
|
+
"url": "/vega/p-3345d903.js"
|
|
144
|
+
},
|
|
137
145
|
"p-36949349.js": {
|
|
138
146
|
"integrity": "sha384-Pw+SgmX9i+PzYuFhfPuVpb+1wOM/c1ZtmuPcNxOxiXERHAS+X/LLHPgc0CBx9ydQ",
|
|
139
147
|
"url": "/vega/p-36949349.js"
|
|
@@ -142,10 +150,6 @@
|
|
|
142
150
|
"integrity": "sha384-E33dTbpXdwUcEXvyBKtyhvLgk7QNErzQpnubzLxx2jDKjAlJ2PVfBko0I1fLcEhR",
|
|
143
151
|
"url": "/vega/p-36d2df7a.entry.js"
|
|
144
152
|
},
|
|
145
|
-
"p-38c9d782.js": {
|
|
146
|
-
"integrity": "sha384-mkrs3efBYZGOJMXXhpmXp7NVklAbjEjsj41Wko+jgNq5vOcuaNImjB+zSEcZ4Rx8",
|
|
147
|
-
"url": "/vega/p-38c9d782.js"
|
|
148
|
-
},
|
|
149
153
|
"p-3911e760.entry.js": {
|
|
150
154
|
"integrity": "sha384-R6/8LNIFgjH40/LFuD+etrsrPcNIL5jUEsiDocLJZ3JDkoNCuk8i9VOcFjZ0FvD4",
|
|
151
155
|
"url": "/vega/p-3911e760.entry.js"
|
|
@@ -158,6 +162,10 @@
|
|
|
158
162
|
"integrity": "sha384-WrUjmWQ3Hj7NtNB7vGiCVAQ4UHyUq0gykE5RMgj3jLUi5Xs4QHXmFiLd75QBtbst",
|
|
159
163
|
"url": "/vega/p-3a68b729.js"
|
|
160
164
|
},
|
|
165
|
+
"p-3c23ec90.js": {
|
|
166
|
+
"integrity": "sha384-bbbwP9/+3klLo4zB92EMHz2pYBmJrubs2EZpNlbvoJ2LVo59/AnfAPlZXq69832S",
|
|
167
|
+
"url": "/vega/p-3c23ec90.js"
|
|
168
|
+
},
|
|
161
169
|
"p-3c309a38.js": {
|
|
162
170
|
"integrity": "sha384-DZhJCdQnuIt+dBWDmiSuVssK3d574/fXOXZP2bfxkRFjTgUfcd4POSplcRPM0NgJ",
|
|
163
171
|
"url": "/vega/p-3c309a38.js"
|
|
@@ -210,18 +218,10 @@
|
|
|
210
218
|
"integrity": "sha384-ahnPs/RYztljcdWvmX5jM47ri5Qb9NJUQgBrA46ZegALWOOv6j0Pzakdlsa35pMk",
|
|
211
219
|
"url": "/vega/p-4edd7f8c.js"
|
|
212
220
|
},
|
|
213
|
-
"p-4fe40b76.js": {
|
|
214
|
-
"integrity": "sha384-kRhTJAcRpfOkL/yxZ9PhPqz1HSqWMaFOsOax/oXNZihFKzaFCXjYI21mj9pznZkh",
|
|
215
|
-
"url": "/vega/p-4fe40b76.js"
|
|
216
|
-
},
|
|
217
221
|
"p-4ff48b84.js": {
|
|
218
222
|
"integrity": "sha384-xrUcXyTuzeOzz498GEoQCHhWhO020xQT305Uh8FO1eAtDCcCc/lWCBdsN31bjKA6",
|
|
219
223
|
"url": "/vega/p-4ff48b84.js"
|
|
220
224
|
},
|
|
221
|
-
"p-513bc0d9.js": {
|
|
222
|
-
"integrity": "sha384-osgojPdsJuGeCdVLd7SPd1GRCoBVRi0JDeL9UYPchQDDels5IzJc/cfgMTamE0/1",
|
|
223
|
-
"url": "/vega/p-513bc0d9.js"
|
|
224
|
-
},
|
|
225
225
|
"p-519a7d55.js": {
|
|
226
226
|
"integrity": "sha384-LfsRUT773INGDWpiq8/Gd/iwlJR8DE3o2V9CuKobouh/TlzOWQ14CnWKKVnPGg01",
|
|
227
227
|
"url": "/vega/p-519a7d55.js"
|
|
@@ -242,14 +242,14 @@
|
|
|
242
242
|
"integrity": "sha384-y+CRVk2bpJe5Gk8S7YzH8e0TqAEBFyOfuxKR5KO7+xJTojzWfduethmyBhYchedz",
|
|
243
243
|
"url": "/vega/p-5447a8e8.js"
|
|
244
244
|
},
|
|
245
|
+
"p-55e0014a.js": {
|
|
246
|
+
"integrity": "sha384-1iuKfVsjlnfQwGeU5Xv/RxmiTauC4RbSFYPMVDXQJsrU8/R5s17LHqu+gPsvHtkW",
|
|
247
|
+
"url": "/vega/p-55e0014a.js"
|
|
248
|
+
},
|
|
245
249
|
"p-56d19601.entry.js": {
|
|
246
250
|
"integrity": "sha384-zwCyZdJ2IIH6dDSooMiMBuTWoRciftG0x7VWYg5CBhUjdhcviPT9LcRPcp9FjB5L",
|
|
247
251
|
"url": "/vega/p-56d19601.entry.js"
|
|
248
252
|
},
|
|
249
|
-
"p-579cdeae.js": {
|
|
250
|
-
"integrity": "sha384-wr+9sLNxXT+vrHPXEs9u2ifopuuyYwdgzdq7gaChuwpJjiecM0LNuxUDMuPYzi6r",
|
|
251
|
-
"url": "/vega/p-579cdeae.js"
|
|
252
|
-
},
|
|
253
253
|
"p-590fd123.js": {
|
|
254
254
|
"integrity": "sha384-kU/EmjUGTf4gwVzBztz5aKPmau5CEUAW3Ym2NRhtIaWbx6x6ffx+XFuPtwA8GUCt",
|
|
255
255
|
"url": "/vega/p-590fd123.js"
|
|
@@ -286,6 +286,10 @@
|
|
|
286
286
|
"integrity": "sha384-4VZQcAIb5XfHG4y7W5Ww6EjefjVi5O4vrCnx3Nzj4fJ8w1PkYDhNgzz70xaTflmw",
|
|
287
287
|
"url": "/vega/p-61ce8029.js"
|
|
288
288
|
},
|
|
289
|
+
"p-65fee02f.entry.js": {
|
|
290
|
+
"integrity": "sha384-1sR8Z5//yBlD4nfgAfPF5YWQAATIaYRRRqWlm5MH3CD8MeQrlGAFZ0F4VnYv5cNJ",
|
|
291
|
+
"url": "/vega/p-65fee02f.entry.js"
|
|
292
|
+
},
|
|
289
293
|
"p-66647244.js": {
|
|
290
294
|
"integrity": "sha384-ds4qo2ErdHkjY0zQssb99fCYhHHupre4N+Z88sqSwZwcy1YS66iJMTkZXE1VGQvz",
|
|
291
295
|
"url": "/vega/p-66647244.js"
|
|
@@ -298,6 +302,10 @@
|
|
|
298
302
|
"integrity": "sha384-MMaPhmVVsCV4KtvESZj7SxRK66+vKrJ0VZzgjt0MFTFxCYmzk0ZsyXdyn9/qyYeP",
|
|
299
303
|
"url": "/vega/p-6a334573.js"
|
|
300
304
|
},
|
|
305
|
+
"p-6a51d720.js": {
|
|
306
|
+
"integrity": "sha384-hGTlBvZvfZKTcJZdKYCcqMV/KGcrKDIVhtxXydrV5dl9UwWw6bzYkOek2Gl5MU7A",
|
|
307
|
+
"url": "/vega/p-6a51d720.js"
|
|
308
|
+
},
|
|
301
309
|
"p-6b2342e0.js": {
|
|
302
310
|
"integrity": "sha384-UL9b21shdvhTDBt8RfNys45rftlTyQWyvsvhLOoVhd9vqhNx4G95U1fVx5CZzMTC",
|
|
303
311
|
"url": "/vega/p-6b2342e0.js"
|
|
@@ -306,6 +314,10 @@
|
|
|
306
314
|
"integrity": "sha384-clOjVJlhr3pseQonz5lgX9q3q8iqErNDHX6HtfpI7fBYoAeq8ZcRQoipBR6dqBOJ",
|
|
307
315
|
"url": "/vega/p-6bd5c49b.js"
|
|
308
316
|
},
|
|
317
|
+
"p-6c7b6d45.js": {
|
|
318
|
+
"integrity": "sha384-kkTDQFJ12ThTmlTP9bGCaTx3O2n79LS9CHgYcV00HzP/MmgINhNJoOFqqsilUOlT",
|
|
319
|
+
"url": "/vega/p-6c7b6d45.js"
|
|
320
|
+
},
|
|
309
321
|
"p-6c9c2f8c.entry.js": {
|
|
310
322
|
"integrity": "sha384-O9TZGfJPcQmZlCzB1NiNf0fPZ0VEatKxk/xa+rO1drIgO8gAfW2et/5Bl6IliO/q",
|
|
311
323
|
"url": "/vega/p-6c9c2f8c.entry.js"
|
|
@@ -382,6 +394,10 @@
|
|
|
382
394
|
"integrity": "sha384-OdGwPUI2jasDuzpZ+p/63d8Z2o3J91Xdq2c6YziVjxVKrVg2OQowfDono3hdJTX+",
|
|
383
395
|
"url": "/vega/p-841b3281.entry.js"
|
|
384
396
|
},
|
|
397
|
+
"p-84b7a775.js": {
|
|
398
|
+
"integrity": "sha384-GES2kL7T/LJhdA/wZv3/AOLy8DtdjHwHVO8Ct4cmmGWMIwRkjIExVVcm4DjmG87v",
|
|
399
|
+
"url": "/vega/p-84b7a775.js"
|
|
400
|
+
},
|
|
385
401
|
"p-8720816e.js": {
|
|
386
402
|
"integrity": "sha384-Zlh6qnP3tMqVqUr/fI1c9nVmN9w0SasMBkRK2trdgOIR2KekGPuHZshn7ArAa7Ac",
|
|
387
403
|
"url": "/vega/p-8720816e.js"
|
|
@@ -398,10 +414,6 @@
|
|
|
398
414
|
"integrity": "sha384-RVO6h9ZCS8ETpF7sAEHaKXN87sce6REoWb162XO67k1as5aAp3eEK9MuTN/vOggv",
|
|
399
415
|
"url": "/vega/p-88a6c89a.js"
|
|
400
416
|
},
|
|
401
|
-
"p-88be9ec5.js": {
|
|
402
|
-
"integrity": "sha384-JkvgKut3poNVRzjaztR4aYxfR92wprXjFzcRcHro3lJwzAJfUYh1JQsnkWk3nlb1",
|
|
403
|
-
"url": "/vega/p-88be9ec5.js"
|
|
404
|
-
},
|
|
405
417
|
"p-890a5254.js": {
|
|
406
418
|
"integrity": "sha384-SI/HJYKkk+HnGWcSy9cLh8wmSSH+2c5gKKHn6P4xJLK1qEt8AXjYl5WXUHALYW4S",
|
|
407
419
|
"url": "/vega/p-890a5254.js"
|
|
@@ -410,10 +422,6 @@
|
|
|
410
422
|
"integrity": "sha384-g6fC18QKNltQoP4k5BEPUJiGOD7oiCEAq6B1b5lSvPwolzU3C4CyGfxAC23bzaaw",
|
|
411
423
|
"url": "/vega/p-892edf88.entry.js"
|
|
412
424
|
},
|
|
413
|
-
"p-8a001caa.js": {
|
|
414
|
-
"integrity": "sha384-oeoBZzfHABWN6lBWzKhkTylIUCytGRbt/40pjBVztCMj1vV0IGB14EEiW6ib1O5J",
|
|
415
|
-
"url": "/vega/p-8a001caa.js"
|
|
416
|
-
},
|
|
417
425
|
"p-8b5d3a52.js": {
|
|
418
426
|
"integrity": "sha384-arQZrpDoF76nEBNba6GhsK/diXONsxf3mZe/s9LYCjtq8sD1sZNHbvq9VmYh4IMt",
|
|
419
427
|
"url": "/vega/p-8b5d3a52.js"
|
|
@@ -430,10 +438,6 @@
|
|
|
430
438
|
"integrity": "sha384-1K6eFPU37v0PviFAg97t9l4wMT9a546i6rTe88e4ja0dO7cX6pWBVXkqZA4BDYoA",
|
|
431
439
|
"url": "/vega/p-8ce9e214.js"
|
|
432
440
|
},
|
|
433
|
-
"p-8d4b85e7.entry.js": {
|
|
434
|
-
"integrity": "sha384-k668JqNDTaeCTWTxnUU5bNJxGwtIhtYpTihCumL/cfkPfluXe80wZfhcM9h0Wb/Q",
|
|
435
|
-
"url": "/vega/p-8d4b85e7.entry.js"
|
|
436
|
-
},
|
|
437
441
|
"p-8d96f0e8.entry.js": {
|
|
438
442
|
"integrity": "sha384-AxqybKrIzDcxcP/7bDGBGxM5JQGg+sSIrBCNscZ3Lsy8NP3gp0jcG7KYegFMC1wd",
|
|
439
443
|
"url": "/vega/p-8d96f0e8.entry.js"
|
|
@@ -450,6 +454,10 @@
|
|
|
450
454
|
"integrity": "sha384-Iu46J1YjwesIF2Jz4NSUUt4CMwWxipjih0J/UmZaRVJOwltgMtVxKCx/hckjPyhL",
|
|
451
455
|
"url": "/vega/p-919cddc3.js"
|
|
452
456
|
},
|
|
457
|
+
"p-96da7d30.entry.js": {
|
|
458
|
+
"integrity": "sha384-Y8jY2grTMTyJ3V56sCgoSebhG9hIPudkh5KcdmI6tJSd2SqynPNQSuYcem/o5Fec",
|
|
459
|
+
"url": "/vega/p-96da7d30.entry.js"
|
|
460
|
+
},
|
|
453
461
|
"p-97215133.js": {
|
|
454
462
|
"integrity": "sha384-/hJ88h+Z6cunMn6lcHOujZGvKbKfPbksNH8WrTPSYHyZroQdPyZFry46/VwJrUiL",
|
|
455
463
|
"url": "/vega/p-97215133.js"
|
|
@@ -466,9 +474,9 @@
|
|
|
466
474
|
"integrity": "sha384-8+JeezVdQQOyK78tnl+ODrhw1wzWr6V9nNw9f5DIstbsvwHCgmVGjRieECTWuyuv",
|
|
467
475
|
"url": "/vega/p-9bdc6e11.entry.js"
|
|
468
476
|
},
|
|
469
|
-
"p-
|
|
470
|
-
"integrity": "sha384-
|
|
471
|
-
"url": "/vega/p-
|
|
477
|
+
"p-9d3f69cb.js": {
|
|
478
|
+
"integrity": "sha384-ZpV2TIvaa7R4ip2MGjLCCya8wfDqhL9e5GXbMe1DK73/DiHWOZ+q2eRggsn6Mnmu",
|
|
479
|
+
"url": "/vega/p-9d3f69cb.js"
|
|
472
480
|
},
|
|
473
481
|
"p-9d96d83f.entry.js": {
|
|
474
482
|
"integrity": "sha384-8ggf43Myrthb9v73lk3SIeqd+TDM/DsZ3cgM1XY3fAA/ZK6EPWe4ZFhoRx1Hv91z",
|
|
@@ -478,14 +486,14 @@
|
|
|
478
486
|
"integrity": "sha384-RJL/c9nAO9ON9DpLlPlZrpyPNO9dNE/DA3OZMiq0bd6MQiM1H91X2XaTyjjBFWWy",
|
|
479
487
|
"url": "/vega/p-9dcecdd3.js"
|
|
480
488
|
},
|
|
489
|
+
"p-9f11b579.js": {
|
|
490
|
+
"integrity": "sha384-WwLOZY66yMeWt3WNeYmP+ZIX5xSlmcDJnsfuMnCZ0YpJBUKC2dsnwOR6llGGaEeR",
|
|
491
|
+
"url": "/vega/p-9f11b579.js"
|
|
492
|
+
},
|
|
481
493
|
"p-9f201152.entry.js": {
|
|
482
494
|
"integrity": "sha384-mc51VfFW5at2s+jqAOliTl/VYYLt9H3rxt4zxGlCLiLGxS0wQyXWixzPgYKiduja",
|
|
483
495
|
"url": "/vega/p-9f201152.entry.js"
|
|
484
496
|
},
|
|
485
|
-
"p-9f7154d2.js": {
|
|
486
|
-
"integrity": "sha384-2IPgO0VcJ7VQ2i1eaXWsmSPd+5pX6fDqQSwQtWeXM3Q7lXa+kSv2DUGbJmWMtWIr",
|
|
487
|
-
"url": "/vega/p-9f7154d2.js"
|
|
488
|
-
},
|
|
489
497
|
"p-9fb3aeeb.entry.js": {
|
|
490
498
|
"integrity": "sha384-ARmLsOjIOuDXjk2dquCQhdmvQBaE7bxZ+LsZ7RAtU/SRi1EktJTFZxV8v3ax/Ew6",
|
|
491
499
|
"url": "/vega/p-9fb3aeeb.entry.js"
|
|
@@ -502,10 +510,6 @@
|
|
|
502
510
|
"integrity": "sha384-RtC349t6oxSUSYsc8JAd6liVpG8vTEjlx98EToqNsCErbKV3YxQbVuYUaGT06I9u",
|
|
503
511
|
"url": "/vega/p-a2bd621e.js"
|
|
504
512
|
},
|
|
505
|
-
"p-a7209700.js": {
|
|
506
|
-
"integrity": "sha384-i84IRA9Ug9iUMyPrB/b0ljL8Cg1hhk/Ng9NexMSyBu15ATNEt7fFv42SQA2v3ZFS",
|
|
507
|
-
"url": "/vega/p-a7209700.js"
|
|
508
|
-
},
|
|
509
513
|
"p-a775825e.entry.js": {
|
|
510
514
|
"integrity": "sha384-VKFZm3O+MQY+OmcdjSn7yx291kz0i+5ZMlNVGE8xV4wb3+9T1xoFlcK5AIAYYOGg",
|
|
511
515
|
"url": "/vega/p-a775825e.entry.js"
|
|
@@ -526,6 +530,10 @@
|
|
|
526
530
|
"integrity": "sha384-OZfjiSRzKH4dxDeCQA06wgvvdBi34VWK9GX0wtuA52bjHZmhZsOSdrS0ZHDjquGh",
|
|
527
531
|
"url": "/vega/p-abd7aeaa.js"
|
|
528
532
|
},
|
|
533
|
+
"p-acaff62d.entry.js": {
|
|
534
|
+
"integrity": "sha384-/V71FGAfJeHcGYfJBZHIZvFp+BIJTNX03lp+pz4ob16KtQtMDXIe1mwBJrfwrumN",
|
|
535
|
+
"url": "/vega/p-acaff62d.entry.js"
|
|
536
|
+
},
|
|
529
537
|
"p-adc64ff6.entry.js": {
|
|
530
538
|
"integrity": "sha384-dDMuPS8mCsU1YcT3BFJtSAjHVQERtqIMY+3+4Ef50xYdpvZkWpTxZes+1tyQnn5l",
|
|
531
539
|
"url": "/vega/p-adc64ff6.entry.js"
|
|
@@ -538,10 +546,6 @@
|
|
|
538
546
|
"integrity": "sha384-/Gk7Hj7IWSRwwXvP45BTbF29QqDQ6FoHXFBK9Q+GAOLnNKCXioxyI6MNZ9h/Rt3z",
|
|
539
547
|
"url": "/vega/p-afcd8f04.js"
|
|
540
548
|
},
|
|
541
|
-
"p-b187b82d.entry.js": {
|
|
542
|
-
"integrity": "sha384-QK82wlnm1rJJooYXFql3EaWmMMXg2rZx92a0ucbgLm2EkQFyCJ2rcSdqiXobLmRD",
|
|
543
|
-
"url": "/vega/p-b187b82d.entry.js"
|
|
544
|
-
},
|
|
545
549
|
"p-b19b1c08.js": {
|
|
546
550
|
"integrity": "sha384-RlpuylIhcjAI0GjtpuWCBQwl0m+XBm0RSAebWVo+7oYWEexE5UeNZJKr/7hrP5hZ",
|
|
547
551
|
"url": "/vega/p-b19b1c08.js"
|
|
@@ -574,6 +578,14 @@
|
|
|
574
578
|
"integrity": "sha384-YzPDA8/fUvc2ssgV3v207XGF7HoBa+uNf0bCPBD+zBAdk1K4zKS8aXWQVxYLomLC",
|
|
575
579
|
"url": "/vega/p-b6225d01.js"
|
|
576
580
|
},
|
|
581
|
+
"p-b63319e9.entry.js": {
|
|
582
|
+
"integrity": "sha384-eaFyzqUJVMZonb1JlNNCdlgi5JIXhBgks/ZOghWepCyRNOT1AgWPFly0tCWG6B0A",
|
|
583
|
+
"url": "/vega/p-b63319e9.entry.js"
|
|
584
|
+
},
|
|
585
|
+
"p-b660f38c.entry.js": {
|
|
586
|
+
"integrity": "sha384-FMXlpnBdgondQ2op81kX8VTHHmUZcaKTmmhpCcxZ0FdAb0/nUB1VgEADqpZPGBwm",
|
|
587
|
+
"url": "/vega/p-b660f38c.entry.js"
|
|
588
|
+
},
|
|
577
589
|
"p-b75ee3ba.js": {
|
|
578
590
|
"integrity": "sha384-acjZRrMTBChYWCKYOA7TcvANdC864ichwpAtm10qB/jVHhchfOzW3WZjIQPCTr8z",
|
|
579
591
|
"url": "/vega/p-b75ee3ba.js"
|
|
@@ -586,14 +598,14 @@
|
|
|
586
598
|
"integrity": "sha384-j6GfEqauRePgVcxe7W7jfCv+uZfKqeAIEmyZqY4iIJ/aY3hJq5wz0wIMbdBCdckb",
|
|
587
599
|
"url": "/vega/p-b8c13ac9.entry.js"
|
|
588
600
|
},
|
|
601
|
+
"p-b8ffa42f.entry.js": {
|
|
602
|
+
"integrity": "sha384-b2FuTNCy4RwvuCfD23TCjFAwjWXWNUvSwqtsIGCKAfKRmmJEAmUfMyLgjUhf3ZDr",
|
|
603
|
+
"url": "/vega/p-b8ffa42f.entry.js"
|
|
604
|
+
},
|
|
589
605
|
"p-b9e72de2.entry.js": {
|
|
590
606
|
"integrity": "sha384-fToMQq1aVkxwGpUgTd//SYkhCLLq+ZFhflM7ryg6O47EgwnVQt6Itw6KEjbZFHSJ",
|
|
591
607
|
"url": "/vega/p-b9e72de2.entry.js"
|
|
592
608
|
},
|
|
593
|
-
"p-ba2b9663.entry.js": {
|
|
594
|
-
"integrity": "sha384-QiH9QqIRSRYtSX6YLTjj8OwvhbaIbqJJnneFeOsjq5QHrDaG6AkXBx39aycyJZkh",
|
|
595
|
-
"url": "/vega/p-ba2b9663.entry.js"
|
|
596
|
-
},
|
|
597
609
|
"p-ba662fe5.js": {
|
|
598
610
|
"integrity": "sha384-TxTUCoMqelvLa550po+Auj2wTKD2cZUVbmUWPTxNHRQiXVd+DcocgaFFo06TJtQH",
|
|
599
611
|
"url": "/vega/p-ba662fe5.js"
|
|
@@ -618,10 +630,6 @@
|
|
|
618
630
|
"integrity": "sha384-M1iPCvv2DQ9ybios5PZHtfoRKtlCxLJdpt6iLNxKUjx0HcnW9wb+lB+lpAGj1efq",
|
|
619
631
|
"url": "/vega/p-c04a90d8.entry.js"
|
|
620
632
|
},
|
|
621
|
-
"p-c079c935.entry.js": {
|
|
622
|
-
"integrity": "sha384-5JaXarXSf19xqYMoOrch2ptJZPD/pfAzwIo7X8m8nlMkiS3q8mv4aVBcWHPBkFsG",
|
|
623
|
-
"url": "/vega/p-c079c935.entry.js"
|
|
624
|
-
},
|
|
625
633
|
"p-c0e42c03.entry.js": {
|
|
626
634
|
"integrity": "sha384-7Kh/fG1M7iAbxMNZCLn3YRTLMZJDaqYYCsssf8xp3ukmUsxtKfUrKSlybvNBcre8",
|
|
627
635
|
"url": "/vega/p-c0e42c03.entry.js"
|
|
@@ -630,14 +638,14 @@
|
|
|
630
638
|
"integrity": "sha384-D45l+6FXMc1FolFAMuQNAOSS4DilVlpAuB4NG7b3/Jc73HtwKYj1Qy0+nSECISZi",
|
|
631
639
|
"url": "/vega/p-c41f5684.entry.js"
|
|
632
640
|
},
|
|
641
|
+
"p-c4564904.js": {
|
|
642
|
+
"integrity": "sha384-vsHJAvIVou0hvhHqRd5yC8aUfWlJrESHKYqy28Un2wMYcC4wyao3BBByLFwUm5dF",
|
|
643
|
+
"url": "/vega/p-c4564904.js"
|
|
644
|
+
},
|
|
633
645
|
"p-c54b5a8f.entry.js": {
|
|
634
646
|
"integrity": "sha384-X5PrbV/h328LFPKpXoc1mhYXOGlR7JovzFRdspzoMRjb0fI9fhlEu4sBurY8oHaX",
|
|
635
647
|
"url": "/vega/p-c54b5a8f.entry.js"
|
|
636
648
|
},
|
|
637
|
-
"p-c5d3b008.entry.js": {
|
|
638
|
-
"integrity": "sha384-+ohOFiuvKDW5G0HkcQYc+mpVfOItnk7CjRJ06+Xqi9gHi5Er7Br10+XXsrkhFPMO",
|
|
639
|
-
"url": "/vega/p-c5d3b008.entry.js"
|
|
640
|
-
},
|
|
641
649
|
"p-c78fe943.js": {
|
|
642
650
|
"integrity": "sha384-YmaSzstaHT467nrKi2qUnGaH9THiHH3AHLE3RYg29kBUlN0IYtEMV+PWpgD5zkiQ",
|
|
643
651
|
"url": "/vega/p-c78fe943.js"
|
|
@@ -654,10 +662,6 @@
|
|
|
654
662
|
"integrity": "sha384-tSicHhZeYR133P/yg1F1OMJss16WGC3URbqt5bdbtS/apfyvJ1gBCpZGvEgtJBE5",
|
|
655
663
|
"url": "/vega/p-cdbbdcc2.js"
|
|
656
664
|
},
|
|
657
|
-
"p-d25ca0c3.entry.js": {
|
|
658
|
-
"integrity": "sha384-r5H+lDjFe3/fWdslm1hvwXrgQ9X2t426Ygm0WSAPho9Rhisz8rNteGfzA3OqVGfX",
|
|
659
|
-
"url": "/vega/p-d25ca0c3.entry.js"
|
|
660
|
-
},
|
|
661
665
|
"p-d27ae9ff.js": {
|
|
662
666
|
"integrity": "sha384-mG91UrBXLfAXXLsAR9Zqto6w7jMzTP3iTlmV+VfraVnMMKvXCHOlV6MXqqkOGqt3",
|
|
663
667
|
"url": "/vega/p-d27ae9ff.js"
|
|
@@ -670,14 +674,14 @@
|
|
|
670
674
|
"integrity": "sha384-S+qMxovzBOQrvBEEK3uNwrcGzwq2VM7y7Pbn2aG+HxFCQbk69bA4gPJxEQPZlmcw",
|
|
671
675
|
"url": "/vega/p-d4ea8e22.js"
|
|
672
676
|
},
|
|
677
|
+
"p-d9158512.js": {
|
|
678
|
+
"integrity": "sha384-bTUZ+a2HB1Qlk8NGpN8Kr3WtFk+De1A/KAB8Syrscta60GZ7y909zUsUsdZHpEF8",
|
|
679
|
+
"url": "/vega/p-d9158512.js"
|
|
680
|
+
},
|
|
673
681
|
"p-db11134b.entry.js": {
|
|
674
682
|
"integrity": "sha384-Sfhxa5xKMeykJlVJd/FcjQ5taHWfZD1BkEVOIRnauQjHbMyg+LkCGrqCzugGCbTB",
|
|
675
683
|
"url": "/vega/p-db11134b.entry.js"
|
|
676
684
|
},
|
|
677
|
-
"p-df828d90.entry.js": {
|
|
678
|
-
"integrity": "sha384-fjMvpQFPmBrOkr4EQEObR6OZiY7EUIBc/cXphncC4QpOrSr2XbI5XechWi/cJxCC",
|
|
679
|
-
"url": "/vega/p-df828d90.entry.js"
|
|
680
|
-
},
|
|
681
685
|
"p-e1737c8e.entry.js": {
|
|
682
686
|
"integrity": "sha384-iXR+Cv7KEQS2Tj3+/i0Suq7QAnJAownFNLlhGV4nwq2SZJ2EpcY6Skxg3NX3o/kx",
|
|
683
687
|
"url": "/vega/p-e1737c8e.entry.js"
|
|
@@ -686,10 +690,6 @@
|
|
|
686
690
|
"integrity": "sha384-U4KO4g7kAXxdWdLrOQUOlOPkV3mXQ/oF/zQHGjTNfqoALNQNp4ktGN4i+RQwU6yD",
|
|
687
691
|
"url": "/vega/p-e1b57e8f.entry.js"
|
|
688
692
|
},
|
|
689
|
-
"p-e235020b.entry.js": {
|
|
690
|
-
"integrity": "sha384-NtbV/ip3D8Zaw3wo/Fzlo/3o66NGeppoHVVWaBDDaWlxI4JSKg3tFCFCJnyDHzB3",
|
|
691
|
-
"url": "/vega/p-e235020b.entry.js"
|
|
692
|
-
},
|
|
693
693
|
"p-e4266b45.entry.js": {
|
|
694
694
|
"integrity": "sha384-btyfqQN3Lti3D3Hnur1sjEVOe9T9p/1vVF3tO9ixgSuQrp/830tUPa4pR3N8oPou",
|
|
695
695
|
"url": "/vega/p-e4266b45.entry.js"
|
|
@@ -706,6 +706,10 @@
|
|
|
706
706
|
"integrity": "sha384-0Wv0BF4PxCEXaSAaYYZnM4p8R4KXWux2zPxrEdbRF6ZBVHMew+4VW3AH1hoVIaPe",
|
|
707
707
|
"url": "/vega/p-e5ff77f7.entry.js"
|
|
708
708
|
},
|
|
709
|
+
"p-e62d41ee.js": {
|
|
710
|
+
"integrity": "sha384-fe5q4hWobggYg/k3e9Ug0sLJr++FC0rvCXJ0HStY+DKFWBDaXhnijjobarMzJpe1",
|
|
711
|
+
"url": "/vega/p-e62d41ee.js"
|
|
712
|
+
},
|
|
709
713
|
"p-e8f50fc5.js": {
|
|
710
714
|
"integrity": "sha384-CMMlF2dhBCt6kbeeMyl8HjdnULLmMxSnCLeWEEZcjp59EWHg0XC7fFI+wE7ilMQJ",
|
|
711
715
|
"url": "/vega/p-e8f50fc5.js"
|
|
@@ -718,6 +722,10 @@
|
|
|
718
722
|
"integrity": "sha384-abzTtaNnxmWTf2+LXcjONrBInEubnArutGrVIvedtXExUO3g0+zD0AGklvJpFIj1",
|
|
719
723
|
"url": "/vega/p-ec162599.entry.js"
|
|
720
724
|
},
|
|
725
|
+
"p-ec5dee32.js": {
|
|
726
|
+
"integrity": "sha384-yzCVO1LPKoZl/9jJdkK/HPPUx+VguMfbZtKcapNavWmvKY1w7wFuMuRGtGkrkMoe",
|
|
727
|
+
"url": "/vega/p-ec5dee32.js"
|
|
728
|
+
},
|
|
721
729
|
"p-ec64cc59.entry.js": {
|
|
722
730
|
"integrity": "sha384-JZrdoRMrc5qQN6ypDjxxla75uaG3FIPHv/f0ZJa6ORJKZUB6Otc7U7YA7+93Ne6Y",
|
|
723
731
|
"url": "/vega/p-ec64cc59.entry.js"
|
|
@@ -738,22 +746,18 @@
|
|
|
738
746
|
"integrity": "sha384-kfOpQSk88TKprtGGRoKYEp8myDtyGrWAdkOBhIchYy0DfO34ada0CyJT/vyL3n/G",
|
|
739
747
|
"url": "/vega/p-f1974321.js"
|
|
740
748
|
},
|
|
749
|
+
"p-f29d9707.entry.js": {
|
|
750
|
+
"integrity": "sha384-ylxeWMCEcVWPKrZ0OlWBWt5IWoXX0NOoni/Ir79eUu7M7AwKvPAWmBHhJA8LkrXK",
|
|
751
|
+
"url": "/vega/p-f29d9707.entry.js"
|
|
752
|
+
},
|
|
741
753
|
"p-f396c69a.js": {
|
|
742
754
|
"integrity": "sha384-uKifHsuDWamC3F9GpLmvuIuBC8ZPi+pnElDIgBoo1VTpVaTTjB75M/SVVMWJclzi",
|
|
743
755
|
"url": "/vega/p-f396c69a.js"
|
|
744
756
|
},
|
|
745
|
-
"p-f4da615a.js": {
|
|
746
|
-
"integrity": "sha384-1X2E98izloUSkXGjiNehH4JOjBiWv/dF+16YoUqmBVqY/IcvhVuYBTXUAaX8SZE4",
|
|
747
|
-
"url": "/vega/p-f4da615a.js"
|
|
748
|
-
},
|
|
749
757
|
"p-f78944d7.entry.js": {
|
|
750
758
|
"integrity": "sha384-mE0nJnERdCBQjh3d01u3fRiF0jf3PBNs4EYzJKHks3JhU05BT0qVlh+/BAa4E8mK",
|
|
751
759
|
"url": "/vega/p-f78944d7.entry.js"
|
|
752
760
|
},
|
|
753
|
-
"p-f7e459cd.js": {
|
|
754
|
-
"integrity": "sha384-9Gb/l1ynsa0DLMlktivKlr3n3gXD7mySt5oRvrga1ubI2ZN3GkppPS9S8uqbHqXk",
|
|
755
|
-
"url": "/vega/p-f7e459cd.js"
|
|
756
|
-
},
|
|
757
761
|
"p-f9bfee81.entry.js": {
|
|
758
762
|
"integrity": "sha384-2I0DhRCRKq04klVq4n18VMm0bhvKQnUFgwj6KzFAHQ4hqpRAvsUrNa+3tkFT5xWy",
|
|
759
763
|
"url": "/vega/p-f9bfee81.entry.js"
|
|
@@ -778,16 +782,12 @@
|
|
|
778
782
|
"integrity": "sha384-QvS9GqGpSByu3tossD/71HdVSdclg5FLTjdZOCU8UpOjpWFZ+2daPVjsKhxCDD4y",
|
|
779
783
|
"url": "/vega/p-fd70418f.js"
|
|
780
784
|
},
|
|
781
|
-
"p-fe24b459.js": {
|
|
782
|
-
"integrity": "sha384-b/FbkQnTNyF54D7ouL2qP7PU/MQBy5LvZ4mAWbXvT1ZUePhUVSJWHkU3C3TfePNQ",
|
|
783
|
-
"url": "/vega/p-fe24b459.js"
|
|
784
|
-
},
|
|
785
785
|
"p-ffdc25ec.js": {
|
|
786
786
|
"integrity": "sha384-jsIi6Aym/huqOnKy9dl/W1N3xLRhAsb+UeLu3hmMsgLjWH2iIsMeiyvGOSJGMFoK",
|
|
787
787
|
"url": "/vega/p-ffdc25ec.js"
|
|
788
788
|
},
|
|
789
789
|
"vega.esm.js": {
|
|
790
|
-
"integrity": "sha384-
|
|
790
|
+
"integrity": "sha384-Gj6wrH9VNA1XEAdUQ68EcjHQQzDA8UFeJH0mm2dEfKBE1KHLAtufjUmzDuUM2Z4p",
|
|
791
791
|
"url": "/vega/vega.esm.js"
|
|
792
792
|
}
|
|
793
793
|
}
|
|
@@ -208,19 +208,19 @@ export declare class VegaComboBox {
|
|
|
208
208
|
*/
|
|
209
209
|
search: EventEmitter<string>;
|
|
210
210
|
/**
|
|
211
|
-
* An event emitter
|
|
211
|
+
* An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
|
|
212
212
|
*
|
|
213
|
-
* The event's `detail` property is `true` when all items
|
|
214
|
-
*
|
|
213
|
+
* The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
|
|
214
|
+
* and `false` when the Select All checkbox is clicked to clear all selected items.
|
|
215
215
|
*
|
|
216
216
|
* @vegaVersion 2.95.0
|
|
217
217
|
*/
|
|
218
218
|
vegaDropdownSelectAllClick: EventEmitter<boolean>;
|
|
219
219
|
/**
|
|
220
|
-
* An event emitter
|
|
220
|
+
* An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
|
|
221
221
|
*
|
|
222
|
-
* The event's `detail` property is `true` when all items
|
|
223
|
-
*
|
|
222
|
+
* The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
|
|
223
|
+
* and `false` when the Select All checkbox is clicked to clear all selected items.
|
|
224
224
|
*
|
|
225
225
|
* @eventSemantics namespace:native
|
|
226
226
|
* @vegaVersion 2.95.0
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Detail payload emitted by `vegaDropdownSelectAllClick` / `dropdownSelectAllClick`.
|
|
3
3
|
*
|
|
4
|
-
* `true` means
|
|
5
|
-
* `false` means Select All
|
|
4
|
+
* `true` means the Select All checkbox was clicked to select all items.
|
|
5
|
+
* `false` means the Select All checkbox was clicked to clear all selected items.
|
|
6
6
|
*/
|
|
7
7
|
export type VegaDropdownSelectAllClickEventDetail = boolean;
|
|
8
8
|
|
|
@@ -281,10 +281,33 @@ export declare class VegaDropdown {
|
|
|
281
281
|
*/
|
|
282
282
|
searchTriggerBy: VegaDropdownSearchTriggerByType;
|
|
283
283
|
/**
|
|
284
|
-
* Determines whether the dropdown position
|
|
284
|
+
* Determines whether the dropdown uses viewport-based positioning (`position: fixed`) or container-based positioning (`position: absolute`).
|
|
285
285
|
*
|
|
286
|
-
*
|
|
287
|
-
*
|
|
286
|
+
* **Technical Implementation:**
|
|
287
|
+
*
|
|
288
|
+
* - When `false` (default): The dropdown content box renders with `position: absolute` and its coordinates are calculated relative to the nearest positioned ancestor. Combined with `positionRelativeTo`, you can specify which ancestor to measure from, which ensures the menu scrolls together with that ancestor.
|
|
289
|
+
*
|
|
290
|
+
* - When `true`: The dropdown content box renders with `position: fixed` and its coordinates are calculated from the viewport. The menu is visually anchored to the trigger element via JavaScript and moves with it on scroll, even though it is not part of the document flow. `positionRelativeTo` has no effect in this mode.
|
|
291
|
+
*
|
|
292
|
+
* When to set `isScreenPosition` to `true`:
|
|
293
|
+
*
|
|
294
|
+
* - Dropdowns that need to break out of container constraints (non-Shadow-DOM only):
|
|
295
|
+
* When you want the dropdown to appear outside its container's boundaries (e.g., to avoid being clipped by a parent's
|
|
296
|
+
* `overflow: hidden` or small dimensions), viewport-based positioning allows it to render freely.
|
|
297
|
+
* This only works for regular (non-Shadow-DOM) containers. Shadow DOM boundaries cannot be escaped with `position: fixed`.
|
|
298
|
+
*
|
|
299
|
+
* - Dropdowns in fixed or sticky positioned containers:
|
|
300
|
+
* When the dropdown trigger is inside a fixed or sticky positioned container, viewport-based positioning ensures correct alignment.
|
|
301
|
+
*
|
|
302
|
+
* When to keep `isScreenPosition` as `false` (default):
|
|
303
|
+
*
|
|
304
|
+
* - Simple layouts where the dropdown and its trigger are not inside scrollable containers
|
|
305
|
+
* - When you want the dropdown to scroll naturally with its container (using `position: absolute`)
|
|
306
|
+
* - When you need `positionRelativeTo` to control which ancestor the dropdown is positioned relative to
|
|
307
|
+
* - When `matchContainerHeight` is needed (this property is overridden when `isScreenPosition` is `true`)
|
|
308
|
+
*
|
|
309
|
+
* @VegaWarning - Setting this to `true` override the `positionRelativeTo` and `matchContainerHeight` properties, rendering them ineffective.
|
|
310
|
+
* - Currently, when set to `true`, the position calculation may be inaccurate if the popover is placed inside a scrollable container within a shadowRoot (e.g., inside a vega-modal with scrollable content).
|
|
288
311
|
* @vegaVersion 2.36.0
|
|
289
312
|
*/
|
|
290
313
|
isScreenPosition: boolean;
|
|
@@ -341,19 +364,19 @@ export declare class VegaDropdown {
|
|
|
341
364
|
*/
|
|
342
365
|
dropdownClick: EventEmitter<string>;
|
|
343
366
|
/**
|
|
344
|
-
* An event emitter
|
|
367
|
+
* An event emitter only fired when the Select All checkbox has been clicked.
|
|
345
368
|
*
|
|
346
|
-
* The event's `detail` property is `true` when all items
|
|
347
|
-
*
|
|
369
|
+
* The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
|
|
370
|
+
* and `false` when the Select All checkbox is clicked to clear all selected items.
|
|
348
371
|
*
|
|
349
372
|
* @vegaVersion 2.93.0
|
|
350
373
|
*/
|
|
351
374
|
vegaDropdownSelectAllClick: EventEmitter<boolean>;
|
|
352
375
|
/**
|
|
353
|
-
* An event emitter
|
|
376
|
+
* An event emitter only fired when the Select All checkbox has been clicked.
|
|
354
377
|
*
|
|
355
|
-
* The event's `detail` property is `true` when all items
|
|
356
|
-
*
|
|
378
|
+
* The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
|
|
379
|
+
* and `false` when the Select All checkbox is clicked to clear all selected items.
|
|
357
380
|
* @eventSemantics namespace:native
|
|
358
381
|
* @vegaVersion 2.93.0
|
|
359
382
|
*/
|