@bimetal/table-vue-components 0.29.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/LICENSE ADDED
@@ -0,0 +1,129 @@
1
+ # PolyForm Noncommercial License 1.0.0
2
+
3
+ <https://polyformproject.org/licenses/noncommercial/1.0.0>
4
+
5
+ ## Acceptance
6
+
7
+ In order to get any license under these terms, you must agree
8
+ to them as both strict obligations and conditions to all
9
+ your licenses.
10
+
11
+ ## Copyright License
12
+
13
+ The licensor grants you a copyright license for the
14
+ software to do everything you might do with the software
15
+ that would otherwise infringe the licensor's copyright
16
+ in it for any permitted purpose. However, you may
17
+ only distribute the software according to [Distribution
18
+ License](#distribution-license) and make changes or new works
19
+ based on the software according to [Changes and New Works
20
+ License](#changes-and-new-works-license).
21
+
22
+ ## Distribution License
23
+
24
+ The licensor grants you an additional copyright license
25
+ to distribute copies of the software. Your license
26
+ to distribute covers distributing the software with
27
+ changes and new works permitted by [Changes and New Works
28
+ License](#changes-and-new-works-license).
29
+
30
+ ## Notices
31
+
32
+ You must ensure that anyone who gets a copy of any part of
33
+ the software from you also gets a copy of these terms or the
34
+ URL for them above, as well as copies of any plain-text lines
35
+ beginning with `Required Notice:` that the licensor provided
36
+ with the software. For example:
37
+
38
+ > Required Notice: Copyright Andreas Biederbeck (https://bimetal.dev)
39
+
40
+ ## Changes and New Works License
41
+
42
+ The licensor grants you an additional copyright license to
43
+ make changes and new works based on the software for any
44
+ permitted purpose.
45
+
46
+ ## Patent License
47
+
48
+ The licensor grants you a patent license for the software that
49
+ covers patent claims the licensor can license, or becomes able
50
+ to license, that you would infringe by using the software.
51
+
52
+ ## Noncommercial Purposes
53
+
54
+ Any noncommercial purpose is a permitted purpose.
55
+
56
+ ## Personal Uses
57
+
58
+ Personal use for research, experiment, and testing for
59
+ the benefit of public knowledge, personal study, private
60
+ entertainment, hobby projects, amateur pursuits, or religious
61
+ observance, without any anticipated commercial application,
62
+ is use for a permitted purpose.
63
+
64
+ ## Noncommercial Organizations
65
+
66
+ Use by any charitable organization, educational institution,
67
+ public research organization, public safety or health
68
+ organization, environmental protection organization,
69
+ or government institution is use for a permitted purpose
70
+ regardless of the source of funding or obligations resulting
71
+ from the funding.
72
+
73
+ ## Fair Use
74
+
75
+ You may have "fair use" rights for the software under the
76
+ law. These terms do not limit them.
77
+
78
+ ## No Other Rights
79
+
80
+ These terms do not allow you to sublicense or transfer any of
81
+ your licenses to anyone else, or prevent the licensor from
82
+ granting licenses to anyone else. These terms do not imply
83
+ any other licenses.
84
+
85
+ ## Patent Defense
86
+
87
+ If you make any written claim that the software infringes or
88
+ contributes to infringement of any patent, your patent license
89
+ for the software granted under these terms ends immediately. If
90
+ your company makes such a claim, your patent license ends
91
+ immediately for work on behalf of your company.
92
+
93
+ ## Violations
94
+
95
+ The first time you are notified in writing that you have
96
+ violated any of these terms, or any agreement made under them,
97
+ you have 32 calendar days to come into compliance. If you come
98
+ into compliance, your licenses revive and continue as if you had
99
+ never violated.
100
+
101
+ ## No Liability
102
+
103
+ ***As far as the law allows, the software comes as is, without
104
+ any warranty or condition, and the licensor will not be liable
105
+ to you for any damages arising out of these terms or the use
106
+ or nature of the software, under any kind of legal claim.***
107
+
108
+ ## Definitions
109
+
110
+ The **licensor** is the individual or entity offering these
111
+ terms, and the **software** is the software the licensor makes
112
+ available under these terms.
113
+
114
+ **You** refers to the individual or entity agreeing to these
115
+ terms.
116
+
117
+ **Your company** is any legal entity, sole proprietorship,
118
+ or other kind of organization that you work for, plus all
119
+ organizations that have control over, are under the control of,
120
+ or are under common control with that organization. **Control**
121
+ means ownership of substantially all the assets of an entity,
122
+ or the power to direct its management and policies by vote,
123
+ contract, or otherwise. Control can be direct or indirect.
124
+
125
+ **Your licenses** are all the licenses granted to you for the
126
+ software under these terms.
127
+
128
+ **Use** means anything you do with the software requiring one
129
+ of your licenses.
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # @bimetal/table-vue-components
2
+
3
+ The default **Vue 3 table / data-grid** for BIMETAL — a thin binding over the
4
+ canonical [`@bimetal/table-headless`](../table-headless) controller. Every
5
+ interaction decision (sort cycle, inline-edit lifecycle, selection, input
6
+ policy, undo, keyboard semantics) lives in the headless controller; this
7
+ package owns only the DOM: normalising keyboard events and rendering the
8
+ canonical `.bm-table*` markup with ARIA grid roles.
9
+
10
+ ## Features
11
+
12
+ - **Column sorting** — header click cycles none → asc → desc → none; the active
13
+ header reflects `aria-sort` and a directional glyph.
14
+ - **Inline cell editing** — click a cell to edit in place; boolean cells toggle a
15
+ checkbox, text/number cells use a typed input. Enter commits, Escape cancels —
16
+ both owned by the controller.
17
+ - **Row selection, add & delete** — select a row, add via the toolbar, delete via
18
+ the per-row action button.
19
+ - **Search, undo, theming** — text search, one-click undo toast, light/dark token
20
+ set from `@bimetal/table-themes`.
21
+
22
+ ## Usage
23
+
24
+ ```vue
25
+ <script setup lang="ts">
26
+ import { Table } from '@bimetal/table-vue-components';
27
+ import { createTableStore } from '@bimetal/table-data';
28
+ import '@bimetal/table-vue-components/styles';
29
+
30
+ const store = createTableStore();
31
+ // …seed the rows…
32
+ const config = {
33
+ columns: [
34
+ { id: 'name', header: 'Name', type: 'text' as const },
35
+ { id: 'qty', header: 'Qty', type: 'number' as const },
36
+ { id: 'active', header: 'Active', type: 'boolean' as const },
37
+ ],
38
+ };
39
+ </script>
40
+
41
+ <template>
42
+ <Table :store="store" :config="config" />
43
+ </template>
44
+ ```
45
+
46
+ ## License
47
+
48
+ PolyForm-Noncommercial-1.0.0
@@ -0,0 +1 @@
1
+ {"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.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.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.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@vue/shared/dist/shared.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../../../node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../../../node_modules/@vue/reactivity/dist/reactivity.d.ts","../../../../node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../../../node_modules/vue/dist/vue.d.mts","../../../engine/headless-core/dist/types.d.ts","../../../engine/headless-core/dist/controller-core.d.ts","../../../engine/headless-core/dist/deep-copy.d.ts","../../../engine/headless-core/dist/error-router.d.ts","../../../engine/headless-core/dist/virtual-window.d.ts","../../../engine/headless-core/dist/reorder-gesture.d.ts","../../../engine/headless-core/dist/index.d.ts","../../../frameworks/vue/dist/composables/usecontroller.d.ts","../../../frameworks/vue/dist/composables/usefocustrap.d.ts","../../../engine/event-sourcing/dist/types.d.ts","../../../engine/event-sourcing/dist/wrap-intent.d.ts","../../../engine/event-sourcing/dist/create-domain-store.d.ts","../../../engine/event-sourcing/dist/aggregate-helpers.d.ts","../../../engine/event-sourcing/dist/errors.d.ts","../../../engine/event-sourcing/dist/id.d.ts","../../../engine/event-sourcing/dist/validation.d.ts","../../../engine/event-sourcing/dist/diagnostics.d.ts","../../../engine/event-sourcing/dist/in-memory-store.d.ts","../../../engine/event-sourcing/dist/validate-envelopes.d.ts","../../../engine/event-sourcing/dist/event-bus.d.ts","../../../engine/event-sourcing/dist/topic.d.ts","../../../engine/event-sourcing/dist/broker-bridge.d.ts","../../../engine/event-sourcing/dist/in-memory-snapshot-store.d.ts","../../../engine/event-sourcing/dist/index.d.ts","../../../kanban/kanban-data/dist/types.d.ts","../../../kanban/kanban-data/dist/commands.d.ts","../../../kanban/kanban-data/dist/board-fold.d.ts","../../../kanban/kanban-data/dist/aggregate.d.ts","../../../kanban/kanban-data/dist/projection.d.ts","../../../kanban/kanban-data/dist/store.d.ts","../../../kanban/kanban-data/dist/index.d.ts","../../../kanban/kanban-headless/dist/types.d.ts","../../../kanban/kanban-headless/dist/create-controller.d.ts","../../../kanban/kanban-headless/dist/config.d.ts","../../../kanban/kanban-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/usekanbancontroller.d.ts","../../table-data/dist/types.d.ts","../../table-data/dist/commands.d.ts","../../table-data/dist/aggregate.d.ts","../../table-data/dist/projection.d.ts","../../table-data/dist/store.d.ts","../../table-data/dist/index.d.ts","../../table-headless/dist/types.d.ts","../../table-headless/dist/create-controller.d.ts","../../table-headless/dist/config.d.ts","../../table-headless/dist/format.d.ts","../../table-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/usetablecontroller.d.ts","../../../engine/core/dist/types.d.ts","../../../engine/core/dist/errors.d.ts","../../../engine/core/dist/constants.d.ts","../../../engine/core/dist/datetime.d.ts","../../../engine/core/dist/date-strings.d.ts","../../../engine/core/dist/time-range.d.ts","../../../engine/core/dist/duration.d.ts","../../../engine/core/dist/granularity.d.ts","../../../engine/core/dist/format.d.ts","../../../engine/core/dist/index.d.ts","../../../gantt/gantt-data/dist/types.d.ts","../../../gantt/gantt-data/dist/commands.d.ts","../../../gantt/gantt-data/dist/chart-fold.d.ts","../../../gantt/gantt-data/dist/aggregate.d.ts","../../../gantt/gantt-data/dist/projection.d.ts","../../../gantt/gantt-data/dist/store.d.ts","../../../gantt/gantt-data/dist/index.d.ts","../../../gantt/gantt-headless/dist/types.d.ts","../../../gantt/gantt-headless/dist/create-controller.d.ts","../../../gantt/gantt-headless/dist/config.d.ts","../../../gantt/gantt-headless/dist/layout.d.ts","../../../gantt/gantt-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/useganttcontroller.d.ts","../../../whiteboard/whiteboard-data/dist/types.d.ts","../../../whiteboard/whiteboard-data/dist/commands.d.ts","../../../whiteboard/whiteboard-data/dist/canvas-fold.d.ts","../../../whiteboard/whiteboard-data/dist/style.d.ts","../../../whiteboard/whiteboard-data/dist/aggregate.d.ts","../../../whiteboard/whiteboard-data/dist/projection.d.ts","../../../whiteboard/whiteboard-data/dist/store.d.ts","../../../whiteboard/whiteboard-data/dist/index.d.ts","../../../whiteboard/whiteboard-headless/dist/geometry.d.ts","../../../whiteboard/whiteboard-headless/dist/types.d.ts","../../../whiteboard/whiteboard-headless/dist/create-controller.d.ts","../../../whiteboard/whiteboard-headless/dist/config.d.ts","../../../whiteboard/whiteboard-headless/dist/layout.d.ts","../../../whiteboard/whiteboard-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/usewhiteboardcontroller.d.ts","../../../tree/tree-data/dist/types.d.ts","../../../tree/tree-data/dist/commands.d.ts","../../../tree/tree-data/dist/tree-fold.d.ts","../../../tree/tree-data/dist/aggregate.d.ts","../../../tree/tree-data/dist/projection.d.ts","../../../tree/tree-data/dist/store.d.ts","../../../tree/tree-data/dist/index.d.ts","../../../tree/tree-headless/dist/types.d.ts","../../../tree/tree-headless/dist/create-controller.d.ts","../../../tree/tree-headless/dist/config.d.ts","../../../tree/tree-headless/dist/layout.d.ts","../../../tree/tree-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/usetreecontroller.d.ts","../../../list/list-data/dist/types.d.ts","../../../list/list-data/dist/commands.d.ts","../../../list/list-data/dist/list-fold.d.ts","../../../list/list-data/dist/aggregate.d.ts","../../../list/list-data/dist/projection.d.ts","../../../list/list-data/dist/store.d.ts","../../../list/list-data/dist/index.d.ts","../../../list/list-headless/dist/types.d.ts","../../../list/list-headless/dist/create-controller.d.ts","../../../list/list-headless/dist/config.d.ts","../../../list/list-headless/dist/layout.d.ts","../../../list/list-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/uselistcontroller.d.ts","../../../picker/picker-headless/dist/types.d.ts","../../../picker/picker-headless/dist/create-controller.d.ts","../../../picker/picker-headless/dist/config.d.ts","../../../picker/picker-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/usepickercontroller.d.ts","../../../forms/forms-data/dist/types.d.ts","../../../forms/forms-data/dist/commands.d.ts","../../../forms/forms-data/dist/form-fold.d.ts","../../../forms/forms-data/dist/validate.d.ts","../../../forms/forms-data/dist/aggregate.d.ts","../../../forms/forms-data/dist/projection.d.ts","../../../forms/forms-data/dist/store.d.ts","../../../forms/forms-data/dist/index.d.ts","../../../forms/forms-headless/dist/types.d.ts","../../../forms/forms-headless/dist/create-builder-controller.d.ts","../../../forms/forms-headless/dist/renderer-types.d.ts","../../../forms/forms-headless/dist/create-renderer-controller.d.ts","../../../forms/forms-headless/dist/config.d.ts","../../../forms/forms-headless/dist/layout.d.ts","../../../forms/forms-headless/dist/conditions.d.ts","../../../forms/forms-headless/dist/index.d.ts","../../../frameworks/vue/dist/composables/useformcontroller.d.ts","../../../frameworks/vue/dist/index.d.ts","../src/components/table.ts","../src/index.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/@types/node/web-globals/blob.d.ts","../../../../node_modules/@types/node/web-globals/console.d.ts","../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.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-stats.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/round-robin-pool.d.ts","../../../../node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.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/snapshot-agent.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/@types/node/web-globals/performance.d.ts","../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/@types/node/web-globals/timers.d.ts","../../../../node_modules/@types/node/web-globals/url.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.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/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/inspector.generated.d.ts","../../../../node_modules/@types/node/inspector/promises.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/path/posix.d.ts","../../../../node_modules/@types/node/path/win32.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/quic.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/promises.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/test/reporters.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/util/types.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/index.d.ts","../../../../node_modules/@types/amqplib/properties.d.ts","../../../../node_modules/@types/amqplib/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/better-sqlite3/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/deep-eql/index.d.ts","../../../../node_modules/assertion-error/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/ms/index.d.ts","../../../../node_modules/@types/debug/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/estree-jsx/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/google-protobuf/index.d.ts","../../../../node_modules/@types/unist/index.d.ts","../../../../node_modules/@types/hast/index.d.ts","../../../../node_modules/@types/mdast/index.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../../node_modules/@types/trusted-types/index.d.ts","../../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[67,215,279,287,291,294,296,297,298,311],[215,279,287,291,294,296,297,298,311],[215,279,287,290,291,294,296,297,298,311,336,337],[67,68,215,279,287,291,294,296,297,298,311,340,341,342],[67,68,215,279,287,291,294,296,297,298,311],[215,279,287,291,294,296,297,298,311,336],[215,279,287,291,293,294,296,297,298,311,336,345],[215,279,287,291,294,296,297,298,311,347,348],[215,279,287,291,293,294,296,297,298,311,336],[215,279,287,291,294,296,297,298,311,350],[215,279,287,291,294,296,297,298,311,352,353],[215,279,287,290,291,293,294,296,297,298,311,336,354,355,356],[215,279,287,291,294,296,297,298,311,346,357,359],[215,279,287,291,294,296,297,298,311,362],[215,276,277,279,287,291,294,296,297,298,311],[215,278,279,287,291,294,296,297,298,311],[279,287,291,294,296,297,298,311],[215,279,287,291,294,296,297,298,311,319],[215,279,280,285,287,290,291,294,296,297,298,300,311,316,328],[215,279,280,281,287,290,291,294,296,297,298,311],[215,279,282,287,291,294,296,297,298,311,329],[215,279,283,284,287,291,294,296,297,298,302,311],[215,279,284,287,291,294,296,297,298,311,316,325],[215,279,285,287,290,291,294,296,297,298,300,311],[215,278,279,286,287,291,294,296,297,298,311],[215,279,287,288,291,294,296,297,298,311],[215,279,287,289,290,291,294,296,297,298,311],[215,278,279,287,290,291,294,296,297,298,311],[215,279,287,290,291,292,294,296,297,298,311,316,328],[215,279,287,290,291,292,294,296,297,298,311,316,319],[215,266,279,287,290,291,293,294,296,297,298,300,311,316,328],[215,279,287,290,291,293,294,296,297,298,300,311,316,325,328],[215,279,287,291,293,294,295,296,297,298,311,316,325,328],[213,214,215,216,217,218,219,220,221,222,223,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,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],[215,279,287,290,291,294,296,297,298,311],[215,279,287,291,294,296,298,311],[215,279,287,291,294,296,297,298,299,311,328],[215,279,287,290,291,294,296,297,298,300,311,316],[215,279,287,291,294,296,297,298,302,311],[215,279,287,291,294,296,297,298,303,311],[215,279,287,290,291,294,296,297,298,306,311],[215,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,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],[215,279,287,291,294,296,297,298,308,311],[215,279,287,291,294,296,297,298,309,311],[215,279,284,287,291,294,296,297,298,300,311,319],[215,279,287,290,291,294,296,297,298,311,312],[215,279,287,291,294,296,297,298,311,313,329,332],[215,279,287,290,291,294,296,297,298,311,316,318,319],[215,279,287,291,294,296,297,298,311,317,319],[215,279,287,291,294,296,297,298,311,319,329],[215,279,287,291,294,296,297,298,311,320],[215,276,279,287,291,294,296,297,298,311,316,322,328],[215,279,287,291,294,296,297,298,311,316,321],[215,279,287,290,291,294,296,297,298,311,323,324],[215,279,287,291,294,296,297,298,311,323,324],[215,279,284,287,291,294,296,297,298,300,311,316,325],[215,279,287,291,294,296,297,298,311,326],[215,279,287,291,294,296,297,298,300,311,327],[215,279,287,291,293,294,296,297,298,309,311,328],[215,279,287,291,294,296,297,298,311,329,330],[215,279,284,287,291,294,296,297,298,311,330],[215,279,287,291,294,296,297,298,311,316,331],[215,279,287,291,294,296,297,298,299,311,332],[215,279,287,291,294,296,297,298,311,333],[215,279,282,287,291,294,296,297,298,311],[215,279,284,287,291,294,296,297,298,311],[215,279,287,291,294,296,297,298,311,329],[215,266,279,287,291,294,296,297,298,311],[215,279,287,291,294,296,297,298,311,328],[215,279,287,291,294,296,297,298,311,334],[215,279,287,291,294,296,297,298,306,311],[215,279,287,291,294,296,297,298,311,324],[215,266,279,287,290,291,292,294,296,297,298,306,311,316,319,328,331,332,334],[215,279,287,291,294,296,297,298,311,316,335],[215,279,287,291,294,296,297,298,311,366],[73,215,279,287,291,294,296,297,298,311,365],[215,279,287,291,294,296,297,298,311,316,336],[215,279,287,291,293,294,296,297,298,311,336,358],[215,279,287,291,294,296,297,298,311,368],[215,279,287,290,291,293,294,295,296,297,298,300,311,316,325,328,335,336],[66,67,68,215,279,287,291,294,296,297,298,311],[69,215,279,287,291,294,296,297,298,311],[66,215,279,287,291,294,296,297,298,311],[66,71,72,74,215,279,287,291,294,296,297,298,311],[71,72,73,74,215,279,287,291,294,296,297,298,311],[215,230,233,236,237,279,287,291,294,296,297,298,311,328],[215,233,279,287,291,294,296,297,298,311,316,328],[215,233,237,279,287,291,294,296,297,298,311,328],[215,279,287,291,294,296,297,298,311,316],[215,227,279,287,291,294,296,297,298,311],[215,231,279,287,291,294,296,297,298,311],[215,229,230,233,279,287,291,294,296,297,298,311,328],[215,279,287,291,294,296,297,298,300,311,325],[215,227,279,287,291,294,296,297,298,311,336],[215,229,233,279,287,291,294,296,297,298,300,311,328],[215,224,225,226,228,232,279,287,290,291,294,296,297,298,311,316,328],[215,233,242,250,279,287,291,294,296,297,298,311],[215,225,231,279,287,291,294,296,297,298,311],[215,233,260,261,279,287,291,294,296,297,298,311],[215,225,228,233,279,287,291,294,296,297,298,311,319,328,336],[215,233,279,287,291,294,296,297,298,311],[215,229,233,279,287,291,294,296,297,298,311,328],[215,224,279,287,291,294,296,297,298,311],[215,227,228,229,231,232,233,234,235,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,261,262,263,264,265,279,287,291,294,296,297,298,311],[215,233,253,256,279,287,291,294,296,297,298,311],[215,233,242,243,244,279,287,291,294,296,297,298,311],[215,231,233,243,245,279,287,291,294,296,297,298,311],[215,232,279,287,291,294,296,297,298,311],[215,225,227,233,279,287,291,294,296,297,298,311],[215,233,237,243,245,279,287,291,294,296,297,298,311],[215,237,279,287,291,294,296,297,298,311],[215,231,233,236,279,287,291,294,296,297,298,311,328],[215,225,229,233,242,279,287,291,294,296,297,298,311],[215,233,253,279,287,291,294,296,297,298,311],[215,245,279,287,291,294,296,297,298,311],[215,225,229,233,237,279,287,291,294,296,297,298,311],[215,227,233,260,279,287,291,294,296,297,298,311,319,334,336],[70,74,215,279,287,291,294,296,297,298,311],[124,215,279,287,291,294,296,297,298,311],[124,125,126,127,128,129,130,131,132,215,279,287,291,294,296,297,298,311],[85,215,279,287,291,294,296,297,298,311],[85,92,215,279,287,291,294,296,297,298,311],[85,86,87,88,89,90,91,92,93,94,95,96,97,98,215,279,287,291,294,296,297,298,311],[76,215,279,287,291,294,296,297,298,311],[76,77,78,79,80,81,215,279,287,291,294,296,297,298,311],[99,193,215,279,287,291,294,296,297,298,311],[193,215,279,287,291,294,296,297,298,311],[99,193,194,195,196,197,198,199,215,279,287,291,294,296,297,298,311],[99,215,279,287,291,294,296,297,298,311],[200,215,279,287,291,294,296,297,298,311],[201,215,279,287,291,294,296,297,298,311],[203,215,279,287,291,294,296,297,298,311],[191,200,201,202,203,204,205,206,207,215,279,287,291,294,296,297,298,311],[82,191,200,201,215,279,287,291,294,296,297,298,311],[82,200,215,279,287,291,294,296,297,298,311],[75,82,215,279,287,291,294,296,297,298,311],[75,215,279,287,291,294,296,297,298,311],[75,208,215,279,287,291,294,296,297,298,311],[75,145,215,279,287,291,294,296,297,298,311],[75,110,215,279,287,291,294,296,297,298,311],[75,186,215,279,287,291,294,296,297,298,311],[75,191,215,279,287,291,294,296,297,298,311],[75,122,215,279,287,291,294,296,297,298,311],[75,173,215,279,287,291,294,296,297,298,311],[75,160,215,279,287,291,294,296,297,298,311],[83,84,110,111,122,123,133,145,146,160,161,173,174,186,187,191,192,208,209,215,279,287,291,294,296,297,298,311],[99,134,215,279,287,291,294,296,297,298,311],[134,215,279,287,291,294,296,297,298,311],[99,134,135,136,137,138,139,215,279,287,291,294,296,297,298,311],[99,133,215,279,287,291,294,296,297,298,311],[141,215,279,287,291,294,296,297,298,311],[133,140,141,142,143,144,215,279,287,291,294,296,297,298,311],[82,133,140,215,279,287,291,294,296,297,298,311],[99,100,215,279,287,291,294,296,297,298,311],[100,215,279,287,291,294,296,297,298,311],[99,100,101,102,103,104,105,215,279,287,291,294,296,297,298,311],[107,215,279,287,291,294,296,297,298,311],[106,107,108,109,215,279,287,291,294,296,297,298,311],[82,106,215,279,287,291,294,296,297,298,311],[99,175,215,279,287,291,294,296,297,298,311],[175,215,279,287,291,294,296,297,298,311],[99,175,176,177,178,179,180,215,279,287,291,294,296,297,298,311],[182,215,279,287,291,294,296,297,298,311],[181,182,183,184,185,215,279,287,291,294,296,297,298,311],[82,181,215,279,287,291,294,296,297,298,311],[188,215,279,287,291,294,296,297,298,311],[188,189,190,215,279,287,291,294,296,297,298,311],[82,215,279,287,291,294,296,297,298,311],[99,112,215,279,287,291,294,296,297,298,311],[112,215,279,287,291,294,296,297,298,311],[99,112,113,114,115,116,215,279,287,291,294,296,297,298,311],[118,215,279,287,291,294,296,297,298,311],[117,118,119,120,121,215,279,287,291,294,296,297,298,311],[82,117,215,279,287,291,294,296,297,298,311],[75,117,122,210,215,279,287,291,294,296,297,298,311],[210,211,215,279,287,291,294,296,297,298,311],[99,162,215,279,287,291,294,296,297,298,311],[162,215,279,287,291,294,296,297,298,311],[99,162,163,164,165,166,167,215,279,287,291,294,296,297,298,311],[169,215,279,287,291,294,296,297,298,311],[168,169,170,171,172,215,279,287,291,294,296,297,298,311],[82,168,215,279,287,291,294,296,297,298,311],[99,147,215,279,287,291,294,296,297,298,311],[147,215,279,287,291,294,296,297,298,311],[99,147,148,149,150,151,152,153,215,279,287,291,294,296,297,298,311],[156,215,279,287,291,294,296,297,298,311],[154,155,156,157,158,159,215,279,287,291,294,296,297,298,311],[154,155,156,215,279,287,291,294,296,297,298,311],[82,154,155,215,279,287,291,294,296,297,298,311]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"524a409ad72186b7f6cb16898c349465cfa876f641d6cb6137b3123d5cfca619","impliedFormat":1},{"version":"ebe84ad8344962b7117a3b95065f47383215020eaf1b626463863b45b4d16e62","impliedFormat":1},{"version":"8fa68a409acbfc169f88bc6763ffb2df73b49346a938fd7b75397261995db523","impliedFormat":1},{"version":"3e74c6f34a28b7c948bfdaf19172000d589093660b3605f8c21c1b30173c729b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"88ad1af02cacc61bf79683b021d326eeafc91231660a06495c5046d4649ec3a2","impliedFormat":1},{"version":"c0191592be8eb7906f99ac4b8798d80a585b94001ea1a5f50d6ce5b0d13a5c62","impliedFormat":99},"614fb2a482f2942b9bf0fa1cc02ef91a20bdea0e5a6d20d249e8049aa3508094","72a95dbf345ec438eaeca328ac140c9c091940727465014255fca84340122a99","0b8bef5a1a1ca261edf6336ccd5f8487e9a7d77dbb8382cd2f0a382e335b0ce6","7d15296514e6370d85a2c8f9543ea6076364ee9ce5bb28a214c2984850b9f84d","36549077616f7ffb7a03b7d752749f77e3ee80cdae064c6ab6a6bdfd8e7f8664","e31f465bba898471ade3cb5e5c46381f6b4de6fc9a22e57e4b2e2ee2b7441ae9","8133f9e78d726599d6640573fc44de9317d28f52640a5bd8831c00d64f75ce95","36307ca654baa4e6a5dcd060333fa35a583725493077b55c7abf9db95502071f","754140b88ce3afe8bbafbb0273283dcf053df662e277858980b3bf361d568eb5","24c28fc1ded093cd96e5cbcba59787e07f47b7f0fd666d6a579464292bf35fa0","98e32045a66fc1149ec1376399c67f0695df6a7521cefa601cdf268824148dbf","239b6e23f278cca9421ea7e76dc69813603ee9ca74257446b4ada2a536bb0513","71dbc598080174b9bffbf6296bd410a5e20359fab4fada0c9fc7e457d025b57c","eedcb9d5cb4359a781662caed3fe1f272c0837d9d6f6e4be5dc5f47891d232ec","acb314e7ae9f9f2dd28ef4f0f1d916e8ad65a01521235b925111046edebbc45d","52f90291f47d74a00a30007fcdea55ddee4c9b9bb71f9225eb11de834bcfcfd1","df8bca724310793c45b8e6df8d77744b55a5986fd2dceb74bbfb2361890eed61","b178d3182f441bedf19f95be51e48cf68243cabf2629c90e3ebfcd084110de18","23a0f5bf62c18f6c534e09ade0109d26491a00d2ce90c3f09dbe6d1fca05a334","91a9e7fe477539623392444a3d866e27ff0ed28cf220026ac4c7ca169007fae0","1795a3dd93df189f4f60b4052ef2c26fdfc631984712f5a49e9fffabf5b925fe","8d1852dc8f23b7e6900704a99ef67750adb37ba526876fbb66f2abbfd95bc46e","68c6bba43ac9b6477d7843d770ae1d14ac495f52ae6d9f1f99cf44024623804c","970a2da64f680eb2ac07ae927405104541c6428c2aa2be6451c76ac37530dad2","cb6c4e82f7d179e767d86d1fd98869271e8bba74ba6b3c7e0c85c6f26b2f61a5","1865455ef19cd277398db53f005f131a0e6b44caff0d10d12cd76b71617e0028","df266a1c2ce0ddc7f11c0799829bf6d051b3ab2b65fafabb0718c42b1bf9d78d","e7e9dff9934b720d5aab8cf1c3093097524afa1baf3a628a2b472a2fc0ad0860","cc723e82f6b6754e90b95daf6cfe4d838f9a7ef2af191be5846637a1104864c1","76dfbc95ce5d183cb19ea0e0fcf5d3a863fa282c5c54dbced30b2f3ce2cda827","9f8d36494f7403a88aef3c2c9a1d306a4733d519a13a6de01489c7db2ae561cd","d0f60af67c743fb036f6147cb69754eda89afbedb59b2243e59bca8164640d5b","3000766425a28e80079d18ab89c233101f9254f04493de51fed651016cb1407d","cd55bd434cdbcb30149e4b88db76b5500218d8e0ecc53f4d8bfcc4d0fd8f0580","30d825b94d0926721341f0a2fb69cc76526d14d07e486a7ff633b14f10e4d3d1","475e92fbdadaa7e4cfdd1b7d95ab33a938ff5fbc7bdf00562db77f8cc4c854c4","c8ec087364680fae5a56dd3f707c1b7ccf22bd4faf8a3ccddc4d9cd2f170ea6b","7ce90c001945ae015b59f18b3194b2b1f1d910d822904eb2a8ca586dc658e940","a86999556176ba3eabb72b48b901d09cb4070ab0533de447a17e106b1ef978b2","15cfd41776eea74115a2595c3ceac6ad501f798d1680f1d411b73aa529120860","af8235caf6e06300a7dc21e9069bc0e706b3e65595754f8fed96cfbfb127ae61","d45fd3b812cda2a7c029e1d6ff232c3fed7ac111cf0db30fbc26cb04e3a47237","6276bf98f4bd9f5e5a077d1156179457e8580c6cc296d58fcc9c00d265974a63","76b7edb52e250d20060f6d0c263666807fbf0bd14c1468499f06b9c022a946f3","b625c9b7d636adcd3e0ea2494470ff3987e80fd7d2f3cb412bdd89615930061e","2d5e6832aff18921b7ea6dd97b6ba10153755223c2beebb691d34a80b40d4415","6a3fd2f30190b949d825a94c73b30710170347326d2abe3c1b149500098d02f0","fece8aeff09d508bacfafacafc732e5c9d541fdfd83d999995822ebb54c80b85","cf26ef0bfa6ecdfb6c6d3779342d49efb0ee23ec2615450dd5734433e08bc27d","af1d08ad27c74802dfcdbf3d330244f6fc5788299845a006686538b66f9833e1","c8d50640061a6230888848ffd49c5779b1bcf402e9f4beda5d89ec4c2abcb539","8d872a45abc0b7f80777900fa6d56118d9164efa7b55d53b351d37fac640dfdc","43224ad98c16e34ccf3edb9488bd895e2fe5332cdf0daab02e18e47935d10312","0392da4726a758d03ee55a15dc4424a246e3b517f091fc0a60de3811fc89e11c","70552c3d0b0f65e587e0588102c594d67a15405d6e9dc12fe8aa66a03cb299fe","b68625e443c4c7693517ec8b10cb29adca73bc7f954f16da89bb3bd54861d605","777a8dba9366f037fb208685916c0f7cee5a39665ca1ee658fc4273b30b08d4c","b0a777fb18feff9622775d1c0a19b9d16fdb055f6ec2b50537fa501edb9dd153","a53b2958825b9d354266663471f2f4f4026b9e4f8e78de84e1f23cbd7abc33f4","c071c1e45a382bc8d2fd6ee35ae32c42725d9fb27bc11e183e12a796e301c37d","b927df18f2981d23497d37154be205e55c1606cb60f8c657c8250891dfd3dd84","3465faedee29e92b2278e5b3eb479f2beb689476cebb6f08c936e7397c6495c4","5820ad82436120f7133a2456ab4414a36db07ad9ccdcde47391fea6279e700e2","3643ad3e3e9e776708e70e60d5aee791791aca05a983d25fa750b0961f4cd917","0899df51196ba889be4bce3dce88247cd6a7893267c558aaf8e49fa6591856cb","7f8f1949dfc711f1270ceff60aa148ec3f74449e2edbfc2ec3a32711b95789d7","21a8a97904fe3a01dacecdd01edeaa38b958ca9167c77bb0e7ce539ce40eec54","fadb8f12e0fd3cd8d4d162e20f49ef0d830ca8450507c08a8dd8ee895ba82390","4b9cb082decdb6fa6a22c6ae5aeef0c76931e652a639504fb2fd37aaa8d0c4c6","36bc45ca760295aeab10a623193a7ee42441a9b86ed1530ca78a8caaab86d906","c566093bc40d6aa6be380ed1dab187aaedc6bf86b365bee01f100b02088a11c2","6df0e3bb8468174ed6fe4b70db68ea86c1dc98a680e9a8b8e0310abe23aaf342","1c409709e43d8de3ee440d56e68c8a9430540a53ce855c71df30609811efded4","97468d469ff87dcd6946104adf28bfb740435d344296b8f49ad89607626aab3d","319d8b2062a89f1c84f83160f1da54b2ff20f70d72c14ac49fa07bea2bc8b8d2","fca099af552800b6662d3c3811b3311662e4349e39f5385365b6eee5e2dda145","274b93c110214a5c028e799ff1f0fc9a48b537d1a59bbf0b6934442f318c595a","68a555fcf814712e3fa1e38e64f187a67390a5b47ecee06d9c1db1d114db0dd3","f0c74bc83887a9f3b658bfb220a8266d345e6f1ed0b834c819dcbbf45706db70","51a6551e5cd92efbe6e801733f20ae4855873887cd308949007ef26a8b06587f","9c838ee277e1d061adfe058e4ac0933c2ede1c22526fc65a8d511f361fdea05b","bb4791a326e707b6b35aa175d86b71114448a9526eee5892f3628c5813033c27","b54d593acee6e02ef71828496d79e5e9740324b31c05e5a9aa13080fb8a6af4f","00b2acfe1c9554890873c292fb7088c2f4f758541d584e66c916a0ba932851ea","b3d5d475bb14394a1cbf29a6e30d3c66c2bc3131ded967618ca1f2c9961da4ed","afe8135dcd0ca4496f2aaa7d526cb819d112d98816418c8459e6ab748b49704a","a6a2f71d7bb1531c74b038186098454487292a2a3263b3f9ae4282d98b7b336a","6a351c05d069ffe2de726e22fb98a09446a2659dc27f49e7cc93dada83cad505","9295229c26496eb611dff011869f2c332415c1bf0f6e8521a5a1c8230ad83f6a","fdcd276b80f8423b5a2e8d0b5f969a20ae230d06c8a8b1e3d22a9b3d9f9b587f","bab20c6437d2ac7d7ce386da2129c8bd8028fc80fc8ee5b3e94f3a5219148994","225330b5aa3902ac6e7598ba344d3905977a19094e69f1c3cde1adbbabcffba6","7316ba3a057849dd6db37d883f25e5e86214afdd1c10fdee36e6067c72898e85","e1d1b614b7c3e131bcb19d2bc3a3f7667f78c6c893e1e1d472d3393855f37785","2fa0139078b5c6e81aa4f4fed2bdf8e13710e110e2a72b63dd078db21fb5298a","a64e1824d507f84cd5537cfc2350bf161e1500cc3a1c7eabdea5f8f574133751","80618fd94673713681640aaa00ef38687629241e8b12b911039aecb3a17a6bc6","f719fc734457a8000c311c91255e77cfc4b892d60e4f7fec6afc8cd343762be0","4d590bbcc6fb07d70424c5f0d85f42bfb3c8185efe8cdc865f62b457ac706eab","5b05273616675cf6abc3d9110fa331613cc85690a1696d1b97d35e3be74b0f42","50be39fbb133d81da6fe026aa41ccdad308f5f17c0a027c0e68ce70b869ef246","0a9f1b92fa1b21aa6a7327870d7becf42982334468532b17f3677d89ea1193fc","979b37ccef27ce066f55646af3bacdc6b002bca148f572fc150f1b771b06f6b6","85a6209f89e4dde364a3ed35a28cdb4141b39547a2a63739b59eb8d29f744f6d","4ca031b63ffe79afe0cb1810fd0d3a3dc87d2b99a681391bd0dc381615e01e7e","e4fbd8bf61ae023a0f944029db097bfda4bd84281edcc1fd38de1be04ef43eb1","22b3222f2aa8be0fee1b07f4d9fc2eb2e48b90abb65a7152c5d3f334cf5e42fb","51e2098b8045a18fc79ac2829ba5b9cd6517b947c77a9432874e183bc7863b12","9b31c33a2a963d9cf26aa3b72edf5dce4e24f1f8d119011906158a69bbf1d3af","b4316100895ff690098bcaed65ca249dbdc6a1f6bd54164ed5635d80597913d6","8f2d38fcde722230cc7b21fe0f59e9b383393ae64330fcde8f9edcd73f7a3cb6","9b3d112e9d09d311ab3f5dc2cf13010ecfd19f5334b4700d4e276e5084a020fd","d12f6b0344cb03693ff28f4c73526d6288c78c4de7f0aa5699a9dc09077b439f","a74e9e6cd61b7d12f14d06f593d1da84532fe7cec418151bad97e746841649e8","cccca79104d37c7819f7b9a87b8602274e7958ec09d1647397f25c47d1c6fd2d","b5e0ae144536cf7d1ec451ae4d3400c59c9799d01261d2e8cd22069c0ee9848a","51c8cc167a20520cdd02117c881332fd6aaf6c8110a368021170ee4869073410","aa069923963543ff1a00246785c999f56892fc1525737e3624940abdecf5d3ac","b1aaa3bd32c7b9443a9ed83eeb5bc75a7e079717d8bf128a761d769f6bb344a2","44ef58e6fa3153fdf2e1d0391a6d78c113cbc0ba23d691b86acfceeb759d8575","504a01e83f56e373cb60c08f2faec00b3073d255c25a67255d824b776c5feaa4","7b58c1f76ea142599f1fb0dd116599c647bba7c8241eb762688b532da590b2d6","e9beb322aca08413b274e753b06146e4f60c5ef6d8be02be6ac6dd11d7cff01a","bf8d277d2eab3ebd14524fdcf8d7ffba22e1d638f85beaabc9ae02f9ea24d9a4","21c060d4d95eef42c68c7d7118ca933af7842e350e383bbcfac77f5a1378adf5","ee74a14f300ae751d8f9e4c54b6c55c84c1af24dc7726c6f38fd3858d64bd580","fb747fede2dcf5ffc8d5ea931b4702b39008411d5a215aa155f01431287acfbc","ac371800c1457e15ba15c150d10005af302ee9b9165a5bafce35f3ffd08b1d53","32a01550898de086c410ba8079365e312d776ff82202b675ba2bd21c99158e2d","d514a68472b4613f58a0a086e8ce8e4767c9f60b0cded9ae7fd1da1dd2944327","dd5ad3af079e2fc0de1eda8ba9f84b44951bfd79eadd145f2df3767c233db132","61ad61b4ff41fe7e6d88d42e356cfab46699c1c3a6d669f92340831ed5a29bae","b9851e30c611c27f19d609025ba7833d5e52afc99a805f1daa2c569f1a66f035","640c7591fc427cd54aec04c3836d3f4531fcf1039f5009115dd2e456b97d89c6","a2b9be54a47e368fabed505fc193193901f66dc40c6ba0adf03f865e500d3df4",{"version":"be973a8bc35b790fe5663e47949beea2339089150b049e04d4e95f6f60fed5c6","signature":"61bf3b48276c426b9717d0a4f75f099cb8c9d2231ab76b36b7b0f92fdd595835"},{"version":"544cca1a2bd174b3e58cc92c4fe147558569da7685b12f1e25a8563a114f4cd0","signature":"7fe6e4dc16f769249d580afdf876f04851d637191cb7aa67c705c48200d9ac9a"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"80219a97fd3ce5f91af5c355a264844027a899b3d9a3cd41cf6f3bc5947edc95","impliedFormat":1},{"version":"89444c76f16bf7994e230d98e1bc3f01d654de04ef02f60430d9a98d5b450a8b","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"fac3e88881b35d3a757ed891ac912b2674792c25e2a1a74e1f5fbc72d19a9792","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"c51b3c3f6c5aa5b121124f4b593996826aab90667f95de88c1ff13c1736e11ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"3856f7d31d0c47ec0dded3ec552519a3cd6639c1ad7be279dd1b31abffd8cc85","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"4ebf086fa2e5ef2b65133a944cb3f8ab518a22087727dfbfc802a3654c396f2f","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"0c51e46ad16a1d483119debc7227cd8fb6f8534408802cef1ce23d298b5a2dd5","impliedFormat":1},{"version":"cd1ac3689ea594fc7fc0e632de1e009106506055603f6457a361e87e15624f80","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"c2a6a737189ced24ffe0634e9239b087e4c26378d0490f95141b9b9b042b746c","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"93a3b8e57c68e348fc4054b245bd7cf4893225f56c991028844b693c2fa8c03c","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"6823ccc7b5b77bbf898d878dbcad18aa45e0fa96bdd0abd0de98d514845d9ed9","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"168d88e14e0d81fe170e0dadd38ae9d217476c11435ea640ddb9b7382bdb6c1f","impliedFormat":1},{"version":"8e04cf0688e0d921111659c2b55851957017148fa7b977b02727477d155b3c47","impliedFormat":1},{"version":"4f817d326453d8d578758889131c3cab8665a0aa252df1ea254a83b653422efa","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"18942319aff2c9619e05c379641b571f0958506472a4b539f906be08fcccf806","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[211,212],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":99,"noFallthroughCasesInSwitch":true,"noUncheckedSideEffectImports":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[68,1],[67,2],[338,3],[337,2],[339,2],[343,4],[340,1],[341,5],[342,1],[344,6],[346,7],[349,8],[345,9],[351,10],[347,2],[353,11],[352,2],[357,12],[360,13],[361,2],[363,14],[358,2],[364,14],[350,2],[276,15],[277,15],[278,16],[215,17],[279,18],[280,19],[281,20],[213,2],[282,21],[283,22],[284,23],[285,24],[286,25],[287,26],[288,26],[289,27],[290,28],[291,29],[292,30],[216,2],[214,2],[293,31],[294,32],[295,33],[336,34],[296,35],[297,36],[298,35],[299,37],[300,38],[302,39],[303,40],[304,40],[305,40],[306,41],[307,42],[308,43],[309,44],[310,45],[311,46],[312,46],[313,47],[314,2],[315,2],[316,48],[317,49],[318,48],[319,50],[320,51],[321,52],[322,53],[323,54],[324,55],[325,56],[326,57],[327,58],[328,59],[329,60],[330,61],[331,62],[332,63],[333,64],[217,35],[218,2],[219,65],[220,66],[221,2],[222,67],[223,2],[267,68],[268,69],[269,70],[270,70],[271,71],[272,2],[273,18],[274,72],[275,69],[334,73],[335,74],[355,2],[356,2],[367,75],[365,2],[366,76],[354,77],[359,78],[369,79],[368,2],[362,2],[370,2],[371,80],[69,81],[70,82],[71,83],[72,84],[74,85],[66,2],[348,2],[301,2],[73,2],[64,2],[65,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[1,2],[62,2],[63,2],[242,86],[255,87],[239,88],[256,89],[265,90],[230,91],[231,92],[229,93],[264,6],[259,94],[263,95],[233,96],[252,97],[232,98],[262,99],[227,100],[228,94],[234,101],[235,2],[241,102],[238,101],[225,103],[266,104],[257,105],[245,106],[244,101],[246,107],[249,108],[243,109],[247,110],[260,6],[236,111],[237,112],[250,113],[226,89],[254,114],[253,101],[240,112],[248,115],[251,116],[258,2],[224,2],[261,117],[75,118],[126,2],[128,119],[127,119],[130,119],[125,2],[132,119],[131,119],[133,120],[129,119],[124,2],[88,121],[97,121],[87,121],[92,121],[89,121],[95,121],[90,2],[98,121],[93,122],[99,123],[96,121],[85,2],[94,121],[91,2],[86,121],[77,124],[78,2],[79,2],[82,125],[81,2],[76,2],[80,2],[197,126],[194,127],[195,127],[200,128],[198,126],[199,126],[193,129],[196,127],[207,130],[205,131],[202,131],[204,132],[208,133],[206,131],[203,134],[201,135],[83,136],[84,137],[209,138],[146,139],[111,140],[187,141],[192,142],[123,143],[174,144],[161,145],[210,146],[137,147],[136,148],[135,148],[140,149],[138,147],[139,147],[134,150],[143,151],[142,151],[145,152],[144,151],[141,153],[103,154],[102,155],[101,155],[106,156],[104,154],[105,154],[100,129],[109,157],[108,157],[110,158],[107,159],[178,160],[176,161],[181,162],[177,161],[179,160],[180,160],[175,129],[184,163],[183,163],[186,164],[185,163],[182,165],[190,166],[189,166],[191,167],[188,168],[114,169],[113,170],[117,171],[115,169],[116,169],[112,129],[120,172],[119,172],[121,172],[122,173],[118,174],[211,175],[212,176],[165,177],[163,178],[168,179],[166,177],[167,177],[164,178],[162,129],[171,180],[170,180],[173,181],[172,180],[169,182],[151,183],[149,184],[148,184],[154,185],[152,183],[153,183],[150,184],[147,129],[158,186],[157,186],[155,2],[160,187],[159,188],[156,189]],"emitSignatures":[[211,"3fe72ee744cb5aa4f62c027711abfc4dd3e99d3969c721855e47f1cb63ac95ad"]],"latestChangedDtsFile":"./components/Table.d.ts","version":"5.8.3"}
@@ -0,0 +1,95 @@
1
+ import { type PropType, type VNode } from 'vue';
2
+ import type { TableConfigInput } from '@bimetal/table-headless';
3
+ import type { TableStore } from '@bimetal/table-data';
4
+ export interface TableProps {
5
+ /** The row store. Immutable after mount (the controller is created once). */
6
+ store: TableStore;
7
+ /** Column schema + locale overrides, merged with defaults. */
8
+ config?: TableConfigInput;
9
+ /** Apply the dark token set (`data-theme="dark"`). */
10
+ darkMode?: boolean;
11
+ /** Optional toolbar heading. Omitted → no heading is rendered (a data grid owns
12
+ * no page title — the consumer supplies one if wanted). */
13
+ title?: string;
14
+ /** Optional small toolbar tagline next to the heading. */
15
+ tag?: string;
16
+ /** Show the search box in the toolbar (default true). */
17
+ showSearch?: boolean;
18
+ /** Surfaces infrastructure errors (a domain rejection becomes an undo toast). */
19
+ onError?: (err: unknown) => void;
20
+ }
21
+ /**
22
+ * The Vue table / data-grid — a thin binding over the canonical
23
+ * `@bimetal/table-headless` controller. Renders `snapshot.viewColumns` on the
24
+ * canonical `.bm-table*` DOM with ARIA grid roles; the controller owns sort,
25
+ * inline edit, selection, undo and the keyboard semantics.
26
+ */
27
+ export declare const Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
28
+ store: {
29
+ type: PropType<TableStore>;
30
+ required: true;
31
+ };
32
+ config: {
33
+ type: PropType<TableConfigInput>;
34
+ default: undefined;
35
+ };
36
+ darkMode: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ title: {
41
+ type: StringConstructor;
42
+ default: undefined;
43
+ };
44
+ tag: {
45
+ type: StringConstructor;
46
+ default: undefined;
47
+ };
48
+ showSearch: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ onError: {
53
+ type: PropType<(err: unknown) => void>;
54
+ default: undefined;
55
+ };
56
+ }>, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
57
+ [key: string]: any;
58
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
59
+ store: {
60
+ type: PropType<TableStore>;
61
+ required: true;
62
+ };
63
+ config: {
64
+ type: PropType<TableConfigInput>;
65
+ default: undefined;
66
+ };
67
+ darkMode: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
71
+ title: {
72
+ type: StringConstructor;
73
+ default: undefined;
74
+ };
75
+ tag: {
76
+ type: StringConstructor;
77
+ default: undefined;
78
+ };
79
+ showSearch: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
83
+ onError: {
84
+ type: PropType<(err: unknown) => void>;
85
+ default: undefined;
86
+ };
87
+ }>> & Readonly<{}>, {
88
+ title: string;
89
+ onError: (err: unknown) => void;
90
+ config: TableConfigInput;
91
+ darkMode: boolean;
92
+ tag: string;
93
+ showSearch: boolean;
94
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
95
+ //# sourceMappingURL=Table.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../src/components/Table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiE,KAAK,QAAQ,EAAE,KAAK,KAAK,EAAK,MAAM,KAAK,CAAC;AAGlH,OAAO,KAAK,EAAgD,gBAAgB,EAA8F,MAAM,yBAAyB,CAAC;AAC1M,OAAO,KAAK,EAAE,UAAU,EAAa,MAAM,qBAAqB,CAAC;AAEjE,MAAM,WAAW,UAAU;IACzB,6EAA6E;IAC7E,KAAK,EAAE,UAAU,CAAC;IAClB,8DAA8D;IAC9D,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,sDAAsD;IACtD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;gEAC4D;IAC5D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0DAA0D;IAC1D,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,yDAAyD;IACzD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iFAAiF;IACjF,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAC;CAClC;AA+LD;;;;;GAKG;AACH,eAAO,MAAM,KAAK;;cAGW,QAAQ,CAAC,UAAU,CAAC;;;;cACnB,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;cAKvB,QAAQ,CAAC,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAC;;;;;;;cANpC,QAAQ,CAAC,UAAU,CAAC;;;;cACnB,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;cAKvB,QAAQ,CAAC,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAC;;;;;mBAAjB,OAAO,KAAK,IAAI;;;;;4EAkT9D,CAAC"}
@@ -0,0 +1,499 @@
1
+ import { defineComponent, onMounted, onUnmounted, ref, watch, nextTick, h } from 'vue';
2
+ import { useTableController } from '@bimetal/vue';
3
+ import { formatCell, emptyCellLabel, sortIndicator, pinGlyph, formatAggregate, parsePageSize, TABLE_PAGE_SIZE_OPTIONS } from '@bimetal/table-headless';
4
+ /** Pin modifier class for a header/cell from the column's resolved pin side. */
5
+ const pinClass = (col, base) => col.pin === 'left' ? ` bm-table__${base}--pinned-left` : col.pin === 'right' ? ` bm-table__${base}--pinned-right` : '';
6
+ /** Inline sticky offset the controller computed (left/right edge), or undefined.
7
+ * Vue does NOT auto-append px to numeric style values, so emit explicit units. */
8
+ const pinStyle = (col) => col.pin === 'left' ? { left: (col.stickyOffset ?? 0) + 'px' } : col.pin === 'right' ? { right: (col.stickyOffset ?? 0) + 'px' } : undefined;
9
+ /** True when a keyboard event targets a text-editing element. */
10
+ function isEditableTarget(t) {
11
+ const el = t;
12
+ if (!el || !el.tagName)
13
+ return false;
14
+ const tag = el.tagName;
15
+ return tag === 'INPUT' || tag === 'TEXTAREA' || el.isContentEditable === true;
16
+ }
17
+ /**
18
+ * Inline cell editor: a boolean checkbox or a text/number input. Enter/Escape
19
+ * are owned by the controller via the window key forwarder — the editor must
20
+ * NOT also decide them, or a single Enter commits twice.
21
+ */
22
+ function renderEditor(type, value, ctrl) {
23
+ if (type === 'boolean') {
24
+ return h('input', {
25
+ class: 'bm-table__cell-input',
26
+ type: 'checkbox',
27
+ autofocus: true,
28
+ checked: value === true,
29
+ onChange: (e) => { ctrl.updateDraft(e.target.checked); ctrl.voidCommitEdit(); },
30
+ });
31
+ }
32
+ return h('input', {
33
+ class: 'bm-table__cell-input',
34
+ autofocus: true,
35
+ type: type === 'number' ? 'number' : 'text',
36
+ value: value == null ? '' : String(value),
37
+ onInput: (e) => ctrl.updateDraftFromInput(e.target.value),
38
+ });
39
+ }
40
+ /**
41
+ * A single filter-row input — text (contains), number (min/max range) or boolean
42
+ * (any/true/false). The controller parses + clears emptied filters; this only
43
+ * renders the controlled value from the active `ColumnFilter`.
44
+ */
45
+ function renderFilterCell(col, filter, ctrl, locale) {
46
+ if (col.type === 'number') {
47
+ const f = filter?.type === 'number' ? filter : undefined;
48
+ return h('div', { class: 'bm-table__filter-num' }, [
49
+ h('input', {
50
+ class: 'bm-table__filter-input', type: 'number', placeholder: locale.filterMin, 'aria-label': `${col.header} ${locale.filterMin}`,
51
+ value: f?.min ?? '',
52
+ onInput: (e) => ctrl.setNumberFilterFromInput(col.id, 'min', e.target.value),
53
+ }),
54
+ h('input', {
55
+ class: 'bm-table__filter-input', type: 'number', placeholder: locale.filterMax, 'aria-label': `${col.header} ${locale.filterMax}`,
56
+ value: f?.max ?? '',
57
+ onInput: (e) => ctrl.setNumberFilterFromInput(col.id, 'max', e.target.value),
58
+ }),
59
+ ]);
60
+ }
61
+ if (col.type === 'boolean') {
62
+ const v = filter?.type === 'boolean' ? (filter.value ? 'true' : 'false') : '';
63
+ return h('select', {
64
+ class: 'bm-table__filter-select', 'aria-label': col.header, value: v,
65
+ onChange: (e) => { const tv = e.target.value; ctrl.setBooleanFilter(col.id, tv === '' ? null : tv === 'true'); },
66
+ }, [
67
+ h('option', { value: '' }, locale.filterAny),
68
+ h('option', { value: 'true' }, locale.filterTrue),
69
+ h('option', { value: 'false' }, locale.filterFalse),
70
+ ]);
71
+ }
72
+ return h('input', {
73
+ class: 'bm-table__filter-input', type: 'search', placeholder: locale.filter, 'aria-label': col.header,
74
+ value: filter?.type === 'text' ? filter.query : '',
75
+ onInput: (e) => ctrl.setTextFilter(col.id, e.target.value),
76
+ });
77
+ }
78
+ /** A leaf data row (the existing row rendering; `aria-level` when grouped). */
79
+ function renderDataRow(vr, viewColumns, selectable, grouped, isSelected, editing, activeCell, navAnchor, ctrl, locale) {
80
+ const cells = viewColumns.map((col) => {
81
+ const isEditing = editing != null && editing.rowId === vr.id && editing.columnId === col.id;
82
+ const cellText = formatCell(vr.cells[col.id], col.type);
83
+ return h('td', { key: col.id, 'data-col-id': col.id, role: 'gridcell', 'data-pin': col.pin ?? undefined, style: pinStyle(col), class: 'bm-table__cell' + pinClass(col, 'cell') }, [
84
+ isEditing
85
+ ? renderEditor(col.type, editing.draft, ctrl)
86
+ : h('button', {
87
+ type: 'button',
88
+ class: 'bm-table__cell-btn',
89
+ tabindex: navAnchor?.rowId === vr.id && navAnchor?.columnId === col.id ? 0 : -1,
90
+ 'data-roving-key': vr.id + ':' + col.id,
91
+ 'data-active-cell': activeCell?.rowId === vr.id && activeCell?.columnId === col.id ? '' : undefined,
92
+ 'aria-label': cellText === '' ? emptyCellLabel(vr.cells[col.id], col, locale) : undefined,
93
+ onClick: () => ctrl.activateCell(vr.id, col.id),
94
+ }, cellText),
95
+ ]);
96
+ });
97
+ if (selectable) {
98
+ cells.unshift(h('td', { class: 'bm-table__cell bm-table__cell--select', role: 'gridcell' }, [
99
+ h('input', {
100
+ type: 'checkbox',
101
+ class: 'bm-table__select-row',
102
+ 'aria-label': locale.columns,
103
+ checked: isSelected,
104
+ onChange: () => { },
105
+ onClick: (e) => ctrl.selectRow(vr.id, e.shiftKey ? { range: true } : { additive: true }),
106
+ }),
107
+ ]));
108
+ }
109
+ cells.push(h('td', { class: 'bm-table__cell bm-table__cell--actions', role: 'gridcell' }, [
110
+ h('button', {
111
+ class: 'bm-table__delete', type: 'button', title: locale.deleteRow, 'aria-label': locale.deleteRow,
112
+ onClick: (e) => { e.stopPropagation(); ctrl.voidDeleteRow(vr.id); },
113
+ }, '✕'),
114
+ ]));
115
+ return h('tr', {
116
+ key: vr.id,
117
+ 'data-row-id': vr.id,
118
+ role: 'row',
119
+ 'aria-selected': isSelected,
120
+ 'aria-level': grouped ? vr.level + 1 : undefined,
121
+ class: 'bm-table__row' + (isSelected ? ' bm-table__row--selected' : ''),
122
+ }, cells);
123
+ }
124
+ /** A group-header visual row: tri-state checkbox (resolves to leaf ids), an
125
+ * expand/collapse toggle + label + count on the grouped column, per-group
126
+ * aggregates on the aggregate columns. */
127
+ function renderGroupRow(vr, viewColumns, selectable, labelColId, ctrl, locale) {
128
+ const cells = [];
129
+ if (selectable) {
130
+ cells.push(h('td', { class: 'bm-table__cell bm-table__cell--select', role: 'gridcell' }, [
131
+ h('input', {
132
+ type: 'checkbox',
133
+ class: 'bm-table__select-row',
134
+ 'aria-label': locale.columns,
135
+ indeterminate: vr.selectionState === 'some',
136
+ checked: vr.selectionState === 'all',
137
+ onChange: () => ctrl.toggleGroupSelection(vr.key),
138
+ }),
139
+ ]));
140
+ }
141
+ for (const col of viewColumns) {
142
+ const content = col.id === labelColId
143
+ ? h('button', {
144
+ type: 'button', class: 'bm-table__group-toggle', style: { paddingLeft: vr.level * 16 + 'px' },
145
+ 'aria-expanded': !vr.collapsed, onClick: () => ctrl.toggleGroupCollapse(vr.key),
146
+ }, [
147
+ h('span', { class: 'bm-table__group-caret' }, vr.collapsed ? '▸' : '▾'),
148
+ ` ${vr.label} `,
149
+ h('span', { class: 'bm-table__group-count' }, `(${vr.count})`),
150
+ ])
151
+ : col.aggregate ? formatAggregate(vr.aggregates[col.id]) : '';
152
+ cells.push(h('td', { key: col.id, 'data-col-id': col.id, role: 'gridcell', 'data-pin': col.pin ?? undefined, style: pinStyle(col), class: 'bm-table__cell' + pinClass(col, 'cell') }, [content]));
153
+ }
154
+ cells.push(h('td', { class: 'bm-table__cell bm-table__cell--actions', role: 'gridcell' }));
155
+ return h('tr', {
156
+ key: 'g:' + vr.key,
157
+ 'data-group-key': vr.key,
158
+ role: 'row',
159
+ 'aria-level': vr.level + 1,
160
+ 'aria-expanded': !vr.collapsed,
161
+ class: 'bm-table__row bm-table__group-row' + (vr.continued ? ' bm-table__group-row--continued' : ''),
162
+ }, cells);
163
+ }
164
+ /** The grand-total aggregate visual row. */
165
+ function renderAggregateRow(vr, viewColumns, selectable, labelColId, locale) {
166
+ const cells = [];
167
+ if (selectable)
168
+ cells.push(h('td', { class: 'bm-table__cell bm-table__cell--select', role: 'gridcell' }));
169
+ for (const col of viewColumns) {
170
+ const content = col.id === labelColId
171
+ ? h('span', { class: 'bm-table__grand-total' }, `Σ ${locale.grandTotal}`)
172
+ : col.aggregate ? formatAggregate(vr.aggregates[col.id]) : '';
173
+ cells.push(h('td', { key: col.id, 'data-col-id': col.id, role: 'gridcell', 'data-pin': col.pin ?? undefined, style: pinStyle(col), class: 'bm-table__cell' + pinClass(col, 'cell') }, [content]));
174
+ }
175
+ cells.push(h('td', { class: 'bm-table__cell bm-table__cell--actions', role: 'gridcell' }));
176
+ return h('tr', { key: 'a:' + vr.key, role: 'row', class: 'bm-table__row bm-table__aggregate-row' }, cells);
177
+ }
178
+ /**
179
+ * The Vue table / data-grid — a thin binding over the canonical
180
+ * `@bimetal/table-headless` controller. Renders `snapshot.viewColumns` on the
181
+ * canonical `.bm-table*` DOM with ARIA grid roles; the controller owns sort,
182
+ * inline edit, selection, undo and the keyboard semantics.
183
+ */
184
+ export const Table = defineComponent({
185
+ name: 'Table',
186
+ props: {
187
+ store: { type: Object, required: true },
188
+ config: { type: Object, default: undefined },
189
+ darkMode: { type: Boolean, default: false },
190
+ title: { type: String, default: undefined },
191
+ tag: { type: String, default: undefined },
192
+ showSearch: { type: Boolean, default: true },
193
+ onError: { type: Function, default: undefined },
194
+ },
195
+ setup(props) {
196
+ const { snapshot, ctrl } = useTableController({ store: props.store, config: props.config, onError: (err) => props.onError?.(err) }, { config: () => props.config });
197
+ // The controller owns the keyboard semantics (Ctrl/Cmd+Z, Enter, Escape,
198
+ // Delete); the binding only forwards a normalized event.
199
+ const onKey = (e) => ctrl.handleKeydown({
200
+ key: e.key, ctrlKey: e.ctrlKey, metaKey: e.metaKey, shiftKey: e.shiftKey,
201
+ isEditable: isEditableTarget(e.target), preventDefault: () => e.preventDefault(),
202
+ });
203
+ // Column resize: the binding measures the start width (DOM) on pointerdown and
204
+ // forwards the raw pointer X + pointerId; the CONTROLLER owns the gesture and
205
+ // decides the clamped width. A pointercancel (touch-scroll / OS abort) aborts
206
+ // cleanly via cancelColumnResize.
207
+ let activePointer = null;
208
+ const onResizeStart = (e, columnId) => {
209
+ if (e.button !== 0)
210
+ return; // primary button only — never arm on right/middle click
211
+ e.preventDefault();
212
+ e.stopPropagation();
213
+ const th = e.currentTarget.closest('th');
214
+ if (!th)
215
+ return;
216
+ ctrl.startColumnResize(columnId, th.getBoundingClientRect().width, e.clientX, e.pointerId);
217
+ activePointer = e.pointerId;
218
+ };
219
+ const onResizeMove = (e) => { if (activePointer === e.pointerId)
220
+ ctrl.resizeColumnTo(e.clientX, e.pointerId); };
221
+ const onResizeUp = (e) => { if (activePointer === e.pointerId) {
222
+ ctrl.endColumnResize(e.pointerId);
223
+ activePointer = null;
224
+ } };
225
+ const onResizeCancel = (e) => { if (activePointer === e.pointerId) {
226
+ ctrl.cancelColumnResize(e.pointerId);
227
+ activePointer = null;
228
+ } };
229
+ // Column reorder: the CONTROLLER owns the shared drag gesture (pointerId-bound,
230
+ // threshold, cancel). The binding only forwards the pointer X + the hit-tested
231
+ // header under the pointer (its id + measured geometry); the controller maps the
232
+ // x-axis onto the gesture and decides the drop. No pointer session / order math
233
+ // here. A SEPARATE dragPointer keeps it from colliding with the resize gesture.
234
+ let dragPointer = null;
235
+ const hitHeader = (clientX, clientY) => {
236
+ const el = document.elementFromPoint(clientX, clientY)?.closest('.bm-table__header[data-col-id]');
237
+ if (!el)
238
+ return undefined;
239
+ const r = el.getBoundingClientRect();
240
+ return { columnId: el.dataset.colId, left: r.left, width: r.width };
241
+ };
242
+ const onReorderStart = (e, columnId) => {
243
+ if (e.button !== 0)
244
+ return; // primary button only — never arm on right/middle click
245
+ e.preventDefault();
246
+ e.stopPropagation();
247
+ ctrl.startColumnDrag(columnId, e.clientX, e.pointerId);
248
+ dragPointer = e.pointerId;
249
+ };
250
+ const onDragMove = (e) => { if (dragPointer === e.pointerId)
251
+ ctrl.updateColumnDrag(e.clientX, e.pointerId, hitHeader(e.clientX, e.clientY)); };
252
+ const onDragUp = (e) => { if (dragPointer === e.pointerId) {
253
+ ctrl.endColumnDrag(e.pointerId);
254
+ dragPointer = null;
255
+ } };
256
+ const onDragCancel = (e) => { if (dragPointer === e.pointerId) {
257
+ ctrl.cancelColumnDrag(e.pointerId);
258
+ dragPointer = null;
259
+ } };
260
+ // Virtualization: the binding REPORTS the scroll container's scrollTop + measured
261
+ // height; the controller owns all window/offset math. We never compute the window.
262
+ const scrollEl = ref(null);
263
+ const rootEl = ref(null);
264
+ const reportViewport = () => { const el = scrollEl.value; if (el)
265
+ ctrl.setViewport(el.scrollTop, el.clientHeight); };
266
+ let resizeObserver = null;
267
+ onMounted(() => {
268
+ if (typeof window !== 'undefined') {
269
+ window.addEventListener('pointermove', onResizeMove);
270
+ window.addEventListener('pointerup', onResizeUp);
271
+ window.addEventListener('pointercancel', onResizeCancel);
272
+ window.addEventListener('pointermove', onDragMove);
273
+ window.addEventListener('pointerup', onDragUp);
274
+ window.addEventListener('pointercancel', onDragCancel);
275
+ const el = scrollEl.value;
276
+ if (el) {
277
+ reportViewport(); // initial measure
278
+ el.addEventListener('scroll', reportViewport, { passive: true });
279
+ resizeObserver = new ResizeObserver(reportViewport);
280
+ resizeObserver.observe(el);
281
+ }
282
+ }
283
+ });
284
+ onUnmounted(() => {
285
+ if (typeof window !== 'undefined') {
286
+ window.removeEventListener('pointermove', onResizeMove);
287
+ window.removeEventListener('pointerup', onResizeUp);
288
+ window.removeEventListener('pointercancel', onResizeCancel);
289
+ window.removeEventListener('pointermove', onDragMove);
290
+ window.removeEventListener('pointerup', onDragUp);
291
+ window.removeEventListener('pointercancel', onDragCancel);
292
+ const el = scrollEl.value;
293
+ if (el)
294
+ el.removeEventListener('scroll', reportViewport);
295
+ resizeObserver?.disconnect();
296
+ resizeObserver = null;
297
+ }
298
+ });
299
+ // Roving focus: when the controller moves the active cell (arrow keys), focus its
300
+ // button so keyboard navigation actually moves DOM focus (the a11y baseline). Scope
301
+ // the query to THIS component's root so multiple tables on a page never steal focus
302
+ // from one another.
303
+ watch(() => snapshot.value.activeCell, () => {
304
+ nextTick(() => {
305
+ const el = rootEl.value?.querySelector('.bm-table__cell-btn[data-active-cell]');
306
+ if (el && !snapshot.value.editing)
307
+ el.focus();
308
+ });
309
+ });
310
+ return () => {
311
+ const snap = snapshot.value;
312
+ const { viewColumns, visualRows, editing, lastAction } = snap;
313
+ const locale = snap.config.locale;
314
+ const selectedIds = new Set(snap.selectedIds);
315
+ const selectable = snap.selectable;
316
+ const grouped = snap.grouped;
317
+ const groupBy = new Set(snap.groupBy);
318
+ const multiSort = snap.sorts.length > 1;
319
+ const hidden = new Set(snap.columnState.hidden);
320
+ const pins = snap.columnState.pins;
321
+ const drag = snap.columnDrag;
322
+ const virtual = snap.virtual;
323
+ const colCount = viewColumns.length + 1 + (selectable ? 1 : 0);
324
+ const activeCell = snap.activeCell;
325
+ // The roving-tabindex anchor: the controller computes it so it always points at a
326
+ // RENDERED/mounted cell, even when the active cell has paged/scrolled out of view.
327
+ const navAnchor = snap.navAnchor;
328
+ // Drag-reorder preview classes (the dragged header dims; the hovered target
329
+ // shows the drop edge the controller decided). The order changes only on drop.
330
+ const dragClass = (col) => (drag?.draggedId === col.id ? ' bm-table__header--dragging' : '')
331
+ + (drag?.over?.columnId === col.id ? (drag.over.zone === 'before' ? ' bm-table__header--drop-before' : ' bm-table__header--drop-after') : '');
332
+ const toolbar = h('div', { class: 'bm-table__toolbar' }, [
333
+ props.title ? h('h1', { class: 'bm-table__title' }, props.title) : null,
334
+ props.tag ? h('span', { class: 'bm-table__tag' }, props.tag) : null,
335
+ props.showSearch
336
+ ? h('input', {
337
+ class: 'bm-table__search', type: 'search', placeholder: locale.search, 'aria-label': locale.search, value: snap.query,
338
+ onInput: (e) => ctrl.setQuery(e.target.value),
339
+ })
340
+ : null,
341
+ h('button', { class: 'bm-table__btn bm-table__btn--primary', type: 'button', onClick: () => ctrl.voidAddRow() }, `+ ${locale.addRow}`),
342
+ h('button', { class: 'bm-table__btn', type: 'button', onClick: () => ctrl.voidUndo() }, `↶ ${locale.undo}`),
343
+ h('button', {
344
+ class: 'bm-table__btn bm-table__filter-toggle' + (snap.filtersOpen ? ' bm-table__btn--active' : ''),
345
+ type: 'button',
346
+ 'aria-pressed': snap.filtersOpen,
347
+ onClick: () => ctrl.toggleFilters(),
348
+ }, `⌕ ${locale.filter}`),
349
+ h('details', { class: 'bm-table__cols' }, [
350
+ h('summary', { class: 'bm-table__btn' }, locale.columns),
351
+ h('div', { class: 'bm-table__cols-menu', role: 'group', 'aria-label': locale.columns }, snap.configColumns.map((c) => h('label', { key: c.id, class: 'bm-table__cols-item' }, [
352
+ h('input', {
353
+ type: 'checkbox',
354
+ checked: !hidden.has(c.id),
355
+ onChange: () => ctrl.toggleColumnVisibility(c.id),
356
+ }),
357
+ c.header,
358
+ c.groupable !== false
359
+ ? h('button', {
360
+ type: 'button',
361
+ class: 'bm-table__cols-group' + (groupBy.has(c.id) ? ' bm-table__cols-group--active' : ''),
362
+ 'data-col-id': c.id,
363
+ title: locale.groupColumn,
364
+ 'aria-label': locale.groupColumn,
365
+ 'aria-pressed': groupBy.has(c.id),
366
+ onClick: (e) => { e.preventDefault(); e.stopPropagation(); ctrl.toggleGroupBy(c.id); },
367
+ }, '⊞')
368
+ : null,
369
+ c.pinnable !== false
370
+ ? h('button', {
371
+ type: 'button',
372
+ class: 'bm-table__cols-pin' + (pins[c.id] ? ' bm-table__cols-pin--active' : ''),
373
+ 'data-col-id': c.id,
374
+ 'data-pin': pins[c.id] ?? 'none',
375
+ title: `${locale.pinColumn}: ${pins[c.id] ?? '—'}`,
376
+ 'aria-label': locale.pinColumn,
377
+ onClick: (e) => { e.preventDefault(); e.stopPropagation(); ctrl.cyclePinColumn(c.id); },
378
+ }, pinGlyph(pins[c.id]))
379
+ : null,
380
+ ]))),
381
+ ]),
382
+ ]);
383
+ const headerRow = h('tr', { role: 'row' }, [
384
+ selectable
385
+ ? h('th', { class: 'bm-table__header bm-table__header--select', role: 'columnheader' }, [
386
+ h('input', {
387
+ type: 'checkbox',
388
+ class: 'bm-table__select-all',
389
+ 'aria-label': locale.columns,
390
+ indeterminate: snap.selectionState === 'some',
391
+ checked: snap.selectionState === 'all',
392
+ onChange: () => ctrl.toggleSelectAll(),
393
+ }),
394
+ ])
395
+ : null,
396
+ ...viewColumns.map((col) => h('th', {
397
+ key: col.id,
398
+ 'data-col-id': col.id,
399
+ role: 'columnheader',
400
+ 'aria-sort': col.ariaSort ?? undefined,
401
+ 'data-pin': col.pin ?? undefined,
402
+ style: { ...(col.width != null ? { width: col.width + 'px' } : {}), ...pinStyle(col) },
403
+ class: 'bm-table__header' + (col.sortable ? ' bm-table__header--sortable' : '') + (col.sort === 'asc' ? ' bm-table__header--sorted-asc' : col.sort === 'desc' ? ' bm-table__header--sorted-desc' : '') + pinClass(col, 'header') + dragClass(col),
404
+ onClick: (e) => { if (col.sortable)
405
+ ctrl.setSort(col.id, { additive: e.shiftKey }); },
406
+ }, [
407
+ h('span', { class: 'bm-table__reorder-handle', 'data-col-id': col.id, title: locale.reorderColumn, 'aria-label': locale.reorderColumn, onPointerdown: (e) => onReorderStart(e, col.id), onClick: (e) => e.stopPropagation() }, '⠿'),
408
+ col.header + sortIndicator(col, multiSort),
409
+ h('span', { class: 'bm-table__resize-handle', 'data-col-id': col.id, onPointerdown: (e) => onResizeStart(e, col.id), onClick: (e) => e.stopPropagation() }),
410
+ ])),
411
+ h('th', { class: 'bm-table__header bm-table__header--actions', role: 'columnheader' }, [h('span', { class: 'bm-table__sr' }, locale.actions)]),
412
+ ]);
413
+ const filterRow = snap.filtersOpen
414
+ ? h('tr', { class: 'bm-table__filter-row', role: 'row' }, [
415
+ selectable
416
+ ? h('th', { class: 'bm-table__filter-cell bm-table__cell--select', role: 'columnheader' }, [h('span', { class: 'bm-table__sr' }, locale.columns)])
417
+ : null,
418
+ ...viewColumns.map((col) => h('th', {
419
+ key: col.id,
420
+ 'data-col-id': col.id,
421
+ role: 'columnheader',
422
+ 'data-pin': col.pin ?? undefined,
423
+ style: pinStyle(col),
424
+ class: 'bm-table__filter-cell' + pinClass(col, 'cell'),
425
+ }, [
426
+ col.filterable ? renderFilterCell(col, snap.columnFilters[col.id], ctrl, locale) : null,
427
+ ])),
428
+ h('th', { class: 'bm-table__filter-cell bm-table__cell--actions', role: 'columnheader' }, [h('span', { class: 'bm-table__sr' }, locale.actions)]),
429
+ ])
430
+ : null;
431
+ const bodyRows = [];
432
+ if (visualRows.length === 0) {
433
+ bodyRows.push(h('tr', { class: 'bm-table__row', role: 'row' }, [
434
+ h('td', { class: 'bm-table__empty', role: 'gridcell', colspan: colCount }, locale.empty),
435
+ ]));
436
+ }
437
+ // Virtual spacers: the controller's px offsets — the binding applies them, no math.
438
+ if (virtual && virtual.offsetTop > 0) {
439
+ bodyRows.push(h('tr', { key: 'spacer-top', class: 'bm-table__spacer', 'aria-hidden': 'true' }, [
440
+ h('td', { colspan: colCount, style: { height: virtual.offsetTop + 'px' } }),
441
+ ]));
442
+ }
443
+ for (const vr of (virtual ? virtual.rows : visualRows)) {
444
+ if (vr.kind === 'group') {
445
+ bodyRows.push(renderGroupRow(vr, viewColumns, selectable, snap.groupLabelColumnId, ctrl, locale));
446
+ }
447
+ else if (vr.kind === 'aggregate') {
448
+ bodyRows.push(renderAggregateRow(vr, viewColumns, selectable, snap.groupLabelColumnId, locale));
449
+ }
450
+ else {
451
+ bodyRows.push(renderDataRow(vr, viewColumns, selectable, grouped, selectedIds.has(vr.id), editing, activeCell, navAnchor, ctrl, locale));
452
+ }
453
+ }
454
+ if (virtual && virtual.offsetBottom > 0) {
455
+ bodyRows.push(h('tr', { key: 'spacer-bottom', class: 'bm-table__spacer', 'aria-hidden': 'true' }, [
456
+ h('td', { colspan: colCount, style: { height: virtual.offsetBottom + 'px' } }),
457
+ ]));
458
+ }
459
+ const grid = h('div', { class: 'bm-table__scroll' + (virtual ? ' bm-table__scroll--virtual' : ''), ref: scrollEl }, [
460
+ h('table', { class: 'bm-table__grid', role: grouped ? 'treegrid' : 'grid', 'aria-multiselectable': selectable || undefined }, [
461
+ h('thead', { class: 'bm-table__head' }, [headerRow, filterRow]),
462
+ h('tbody', {}, bodyRows),
463
+ ]),
464
+ ]);
465
+ const pager = h('div', { class: 'bm-table__pager' }, [
466
+ h('label', { class: 'bm-table__page-size-label' }, [
467
+ `${locale.pageSize}: `,
468
+ h('select', {
469
+ class: 'bm-table__page-size',
470
+ value: snap.pageSize ?? '',
471
+ onChange: (e) => ctrl.setPageSize(parsePageSize(e.target.value)),
472
+ }, TABLE_PAGE_SIZE_OPTIONS.map((opt) => h('option', { key: opt ?? 'all', value: opt ?? '' }, opt == null ? locale.pageAll : String(opt)))),
473
+ ]),
474
+ h('button', { class: 'bm-table__page-prev', type: 'button', 'aria-label': locale.pagePrev, disabled: snap.pageIndex <= 0, onClick: () => ctrl.prevPage() }, '‹'),
475
+ h('span', { class: 'bm-table__page-status' }, `${snap.pageIndex + 1} / ${snap.pageCount}`),
476
+ h('button', { class: 'bm-table__page-next', type: 'button', 'aria-label': locale.pageNext, disabled: snap.pageIndex >= snap.pageCount - 1, onClick: () => ctrl.nextPage() }, '›'),
477
+ ]);
478
+ return h('div', {
479
+ class: 'bm-table' + (virtual ? ' bm-table--virtual' : ''),
480
+ ref: rootEl,
481
+ 'data-theme': props.darkMode ? 'dark' : undefined,
482
+ style: virtual ? { '--bm-row-height': virtual.rowHeight + 'px' } : undefined,
483
+ // v0.29 Tastatur: keydown element-scoped to the grid root (not window — no document routing).
484
+ onKeydown: onKey,
485
+ }, [
486
+ toolbar,
487
+ grid,
488
+ pager,
489
+ lastAction
490
+ ? h('div', { class: 'bm-table__toast', role: 'status' }, [
491
+ h('span', { class: 'bm-table__toast-msg' }, lastAction.description),
492
+ h('button', { class: 'bm-table__toast-dismiss', type: 'button', onClick: () => ctrl.dismissUndo() }, '×'),
493
+ ])
494
+ : null,
495
+ ]);
496
+ };
497
+ },
498
+ });
499
+ //# sourceMappingURL=Table.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Table.js","sourceRoot":"","sources":["../../src/components/Table.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @module @bimetal/table-vue-components
3
+ *
4
+ * The default Vue 3 table / data-grid — a thin binding over the canonical
5
+ * `@bimetal/table-headless` controller (instance #3 of the shipped component
6
+ * family). Column sorting, inline cell editing, row selection, add/delete,
7
+ * undo. Styles ship from `@bimetal/table-themes`.
8
+ */
9
+ export { Table } from './components/Table.js';
10
+ export type { TableProps } from './components/Table.js';
11
+ export * from '@bimetal/vue';
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,YAAY,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAGxD,cAAc,cAAc,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @module @bimetal/table-vue-components
3
+ *
4
+ * The default Vue 3 table / data-grid — a thin binding over the canonical
5
+ * `@bimetal/table-headless` controller (instance #3 of the shipped component
6
+ * family). Column sorting, inline cell editing, row selection, add/delete,
7
+ * undo. Styles ship from `@bimetal/table-themes`.
8
+ */
9
+ export { Table } from './components/Table.js';
10
+ // Re-export the generic Vue table binding for convenience.
11
+ export * from '@bimetal/vue';
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAG9C,2DAA2D;AAC3D,cAAc,cAAc,CAAC"}
@@ -0,0 +1 @@
1
+ @import '@bimetal/table-themes';
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@bimetal/table-vue-components",
3
+ "version": "0.29.0",
4
+ "description": "Default Vue 3 table / data-grid — sorting, inline cell editing, selection, undo, theming. A thin binding over the canonical table controller.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./styles": "./dist/styles/index.css"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsc -b && node scripts/copy-css.mjs",
22
+ "dev": "tsc -b --watch",
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "vitest run",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "dependencies": {
28
+ "@bimetal/vue": "^0.29.0",
29
+ "@bimetal/table-data": "^0.29.0",
30
+ "@bimetal/table-headless": "^0.29.0",
31
+ "@bimetal/table-themes": "^0.29.0"
32
+ },
33
+ "peerDependencies": {
34
+ "vue": "^3.3.0"
35
+ },
36
+ "devDependencies": {
37
+ "@vue/test-utils": "^2.4.6",
38
+ "happy-dom": "^18.0.1",
39
+ "vitest": "^3.2.4",
40
+ "vue": "^3.5.13"
41
+ },
42
+ "sideEffects": [
43
+ "**/*.css"
44
+ ],
45
+ "license": "PolyForm-Noncommercial-1.0.0",
46
+ "author": "Andreas Biederbeck"
47
+ }