bitboss-ui 3.0.0-beta.20 → 3.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/BbTable.md +206 -98
- package/dist/ai/changelog.json +21 -3
- package/dist/ai/components.json +40 -15
- package/dist/ai/guides/component-picker.md +18 -18
- package/dist/ai/guides/icons-policy.md +7 -3
- package/dist/ai/guides/installation-and-plugin-setup.md +11 -14
- package/dist/ai/guides/migration/components/bb-table.md +131 -17
- package/dist/ai/recipes/inertia/approvals-inbox.md +0 -1
- package/dist/ai/recipes/inertia/inline-edit-workspace.md +0 -1
- package/dist/ai/recipes/inertia/ownership-atlas.md +8 -9
- package/dist/ai/recipes/inertia/record-form.md +0 -1
- package/dist/ai/recipes/inertia/records-workspace.md +0 -1
- package/dist/ai/recipes/inertia/upload-center.md +0 -1
- package/dist/ai/recipes/nuxt/approvals-inbox.md +0 -1
- package/dist/ai/recipes/nuxt/inline-edit-workspace.md +0 -1
- package/dist/ai/recipes/nuxt/record-form.md +0 -1
- package/dist/ai/recipes/nuxt/records-workspace.md +0 -1
- package/dist/ai/recipes/nuxt/upload-center.md +0 -1
- package/dist/ai/recipes/vue/approvals-inbox.md +0 -1
- package/dist/ai/recipes/vue/inline-edit-workspace.md +0 -1
- package/dist/ai/recipes/vue/records-workspace.md +0 -1
- package/dist/ai/recipes/vue/upload-center.md +0 -1
- package/dist/ai/source/BbTable.md +564 -173
- package/dist/components/BbTable/BbTable.vue.d.ts +2 -0
- package/dist/components/BbTable/BbTable.vue_vue_type_script_setup_true_lang.js +865 -735
- package/dist/components/BbTable/types.d.ts +98 -46
- package/dist/components/BbTable/utils.d.ts +21 -16
- package/dist/components/BbTable/utils.js +8 -8
- package/dist/composables/useTableWidthContext.d.ts +24 -4
- package/dist/composables/useTableWidthContext.js +31 -28
- package/dist/deprecation/ai-deprecations.json.d.ts +22 -0
- package/dist/deprecation/ai-deprecations.json.js +1 -1
- package/dist/llms-full.txt +381 -173
- package/dist/llms-medium.txt +29 -32
- package/dist/vite.js +1 -1
- package/package.json +1 -1
- package/scripts/lib/eslint-plugin.mjs +9 -14
- package/scripts/lib/validate-bb-markup.mjs +0 -7
|
@@ -100,32 +100,67 @@ export type BbTableColumn<Item = any> = BaseColumn<Item> & {
|
|
|
100
100
|
* Defines the classes to be passed to this column's header cell.
|
|
101
101
|
*/
|
|
102
102
|
thClass?: Classes;
|
|
103
|
+
/**
|
|
104
|
+
* Hides the column: it renders no header and no cells and contributes no
|
|
105
|
+
* grid track, but stays DECLARED — its key keeps its slot in `order`, the
|
|
106
|
+
* header reorder writes the model back complete around it, and it comes
|
|
107
|
+
* back exactly where it was when the flag clears. This is how a column
|
|
108
|
+
* panel or a narrow-screen breakpoint hides a column; filtering `columns`
|
|
109
|
+
* is for a column that does not exist at all (a field this user does not
|
|
110
|
+
* have). Like `width`, the definition is the single declared truth: a
|
|
111
|
+
* header's `hideColumn()` sets a per-mount override that `hide:column` reports
|
|
112
|
+
* and that clears the moment this flag changes to anything but `true`
|
|
113
|
+
* (write the reported key back as `hidden: true` to persist it).
|
|
114
|
+
*/
|
|
115
|
+
hidden?: boolean;
|
|
116
|
+
/**
|
|
117
|
+
* Pins the column: its cells become `position: sticky` on the given side,
|
|
118
|
+
* in place — the column keeps its render slot and sticks there as the rest
|
|
119
|
+
* scrolls under it (spreadsheet freeze panes, not a pinned region). The
|
|
120
|
+
* offset accumulates the pinned columns before it on the same side, so
|
|
121
|
+
* pin a contiguous run from the edge: a lone `left` column in the middle
|
|
122
|
+
* sticks at `left: 0` and slides over everything before it, by design.
|
|
123
|
+
* The pin travels with the column through `order` and `reorderable`, and
|
|
124
|
+
* a `hidden` pinned column pins nothing. The structural columns pin
|
|
125
|
+
* through `fixed-select` / `fixed-actions` on the table.
|
|
126
|
+
*/
|
|
127
|
+
fixed?: 'left' | 'right';
|
|
103
128
|
/**
|
|
104
129
|
* Freezes the column to a fixed width (numbers are treated as px). When
|
|
105
130
|
* omitted the column syncs its width to the parent table's matching track.
|
|
106
131
|
*/
|
|
107
132
|
width?: number | string;
|
|
108
133
|
/**
|
|
109
|
-
* For a nested table,
|
|
110
|
-
* parent's
|
|
111
|
-
*
|
|
134
|
+
* For a nested table, which parent column this column snaps onto — by the
|
|
135
|
+
* parent's column KEY, as written (`'client'`, not a position), plus the
|
|
136
|
+
* reserved names `'select'` and `'actions'` for the parent's structural
|
|
137
|
+
* columns.
|
|
138
|
+
*
|
|
139
|
+
* - A single key takes that parent track: `snap: 'client'`.
|
|
140
|
+
* - A `[start, end]` pair spans from the start of `start` through the END
|
|
141
|
+
* of `end`, inclusive: `['client', 'amount']`, or `['name', 'actions']`
|
|
142
|
+
* to run across the parent's actions column too.
|
|
143
|
+
* - A trailing `.digits` on a key is a fraction of that track — `'amount.5'`
|
|
144
|
+
* as an end means "through half of `amount`", as a start "from halfway
|
|
145
|
+
* into it". Pairs only; a key that itself ends in `.digits` is written
|
|
146
|
+
* in its slot-name spelling (`line_1`).
|
|
112
147
|
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
148
|
+
* When omitted the column pairs with the parent column of the SAME key when
|
|
149
|
+
* there is one, and otherwise flows into the next parent track no other
|
|
150
|
+
* column claimed. A column whose target the parent does not render (a
|
|
151
|
+
* `hidden` parent column, a key it lacks) flows the same way; with no free
|
|
152
|
+
* track left it content-sizes and overflows. The last column runs to the end
|
|
153
|
+
* of the parent's data region unless it declares a `width` or an explicit
|
|
154
|
+
* pair, so a table with fewer columns than its parent widens its last
|
|
155
|
+
* content cell across the parent's trailing tracks rather than its actions
|
|
156
|
+
* cell.
|
|
120
157
|
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
*/
|
|
128
|
-
snap?: number | [start: number, end: number];
|
|
158
|
+
* Snaps resolve against the parent's RENDERED columns, so they are ignored
|
|
159
|
+
* (dev builds warn) under a parent that reorders — `reorderable`, or a
|
|
160
|
+
* non-empty `order` model — where the child falls back to positional
|
|
161
|
+
* inheritance. Never reorder the snapped child itself.
|
|
162
|
+
*/
|
|
163
|
+
snap?: string | [start: string, end: string];
|
|
129
164
|
};
|
|
130
165
|
export type BbTableProps<Item = any> = {
|
|
131
166
|
/**
|
|
@@ -135,10 +170,6 @@ export type BbTableProps<Item = any> = {
|
|
|
135
170
|
* label reads like the row) — look a cell up by `key`, never by position.
|
|
136
171
|
*/
|
|
137
172
|
accessibleLabel?: (columns: MappedCell[], item: any) => string;
|
|
138
|
-
/**
|
|
139
|
-
* Displays the actions column.
|
|
140
|
-
*/
|
|
141
|
-
actions?: boolean;
|
|
142
173
|
/**
|
|
143
174
|
* Label used in the header of the actions column.
|
|
144
175
|
*/
|
|
@@ -225,25 +256,27 @@ export type BbTableProps<Item = any> = {
|
|
|
225
256
|
*/
|
|
226
257
|
fixed?: boolean;
|
|
227
258
|
/**
|
|
228
|
-
*
|
|
229
|
-
*
|
|
230
|
-
*
|
|
231
|
-
*
|
|
232
|
-
* Indices are POSITIONS in the rendered column list (a selection column is
|
|
233
|
-
* index 0), like a spreadsheet's freeze panes — not per-column pins. With
|
|
234
|
-
* `order` the pinned slot holds and whichever column lands in it is
|
|
235
|
-
* pinned; dragging a column out of a pinned slot unpins it.
|
|
259
|
+
* Pins the actions column (the one the `#actions` slot creates) to the
|
|
260
|
+
* right edge, `position: sticky`, in place. Data columns pin through
|
|
261
|
+
* `column.fixed`; this is the same feature for the structural column that
|
|
262
|
+
* has no definition to carry it. No effect without an `#actions` slot.
|
|
236
263
|
*
|
|
237
|
-
* @defaultValue `
|
|
264
|
+
* @defaultValue `false`
|
|
238
265
|
*/
|
|
239
|
-
|
|
240
|
-
index: number;
|
|
241
|
-
position: 'left' | 'right';
|
|
242
|
-
}>;
|
|
266
|
+
fixedActions?: boolean;
|
|
243
267
|
/**
|
|
244
268
|
* Boolean that sets the headers as sticky to the top of the table.
|
|
245
269
|
*/
|
|
246
270
|
fixedHeaders?: boolean;
|
|
271
|
+
/**
|
|
272
|
+
* Pins the selection column to the left edge, `position: sticky`, in
|
|
273
|
+
* place. Data columns pin through `column.fixed`; this is the same feature
|
|
274
|
+
* for the structural column that has no definition to carry it. No effect
|
|
275
|
+
* unless the table is `selectable`.
|
|
276
|
+
*
|
|
277
|
+
* @defaultValue `false`
|
|
278
|
+
*/
|
|
279
|
+
fixedSelect?: boolean;
|
|
247
280
|
/**
|
|
248
281
|
* Defines the classes to be passed to the header row.
|
|
249
282
|
*/
|
|
@@ -368,16 +401,15 @@ export type BbTableProps<Item = any> = {
|
|
|
368
401
|
* Used by `v-model:order`. Ordered array of column keys — the render
|
|
369
402
|
* order of the data columns. Keys listed here render first, in this order;
|
|
370
403
|
* declared columns it omits follow, in declaration order (so a column added
|
|
371
|
-
* to `columns` later renders last);
|
|
372
|
-
*
|
|
373
|
-
*
|
|
374
|
-
*
|
|
375
|
-
*
|
|
376
|
-
*
|
|
377
|
-
* key
|
|
378
|
-
*
|
|
379
|
-
*
|
|
380
|
-
* part of it.
|
|
404
|
+
* to `columns` later renders last); a `hidden` column keeps its slot
|
|
405
|
+
* without rendering, and keys that match no declared column render
|
|
406
|
+
* nothing but are PRESERVED in place on every write. The header drag /
|
|
407
|
+
* keyboard reorder of `reorderable` writes it back complete (every
|
|
408
|
+
* declared key present, hidden ones included, duplicates dropped — first
|
|
409
|
+
* occurrence wins) with exactly the moved column relocated: every other
|
|
410
|
+
* key keeps its relative order, and a drop that changes nothing emits
|
|
411
|
+
* nothing. Works uncontrolled when unbound, exactly like `sort`. The
|
|
412
|
+
* `select` and `actions` columns are structural and never part of it.
|
|
381
413
|
*
|
|
382
414
|
* @defaultValue `[]`
|
|
383
415
|
*/
|
|
@@ -600,6 +632,14 @@ export type BbTableEvents = {
|
|
|
600
632
|
* its declared width.
|
|
601
633
|
*/
|
|
602
634
|
(e: 'resize:column', key: string, width: number | null): void;
|
|
635
|
+
/**
|
|
636
|
+
* A column was hidden from its header (a `#header:<key>` /
|
|
637
|
+
* `#header:<key>:append` control calling the slot's `hideColumn()`). Fired once;
|
|
638
|
+
* the table keeps the column hidden for the mount, or until the column's
|
|
639
|
+
* `hidden` flag changes — write `hidden: true` into the definition to
|
|
640
|
+
* persist it, `hidden: false` (a column panel) to show it again.
|
|
641
|
+
*/
|
|
642
|
+
(e: 'hide:column', key: string): void;
|
|
603
643
|
(e: 'update:expandedItems', value: any[]): void;
|
|
604
644
|
(e: 'update:unselectedItems', value: any[]): void;
|
|
605
645
|
(e: 'item:selected', value: any): void;
|
|
@@ -628,6 +668,12 @@ export type BbTableHeaderAffixSlotProps<Item = any> = {
|
|
|
628
668
|
sortOrder?: 'asc' | 'desc' | null;
|
|
629
669
|
/** Cycles this column's sort: unsorted → asc → desc → unsorted. */
|
|
630
670
|
toggleSort?: () => void;
|
|
671
|
+
/**
|
|
672
|
+
* Hides this column (fires `hide:column`). One-way by nature — a hidden
|
|
673
|
+
* column has no header to call it from; showing it again is the
|
|
674
|
+
* definition's job (`hidden: false`).
|
|
675
|
+
*/
|
|
676
|
+
hideColumn?: () => void;
|
|
631
677
|
};
|
|
632
678
|
export type BbTableSlots<Item = any> = {
|
|
633
679
|
/**
|
|
@@ -706,7 +752,11 @@ export type BbTableSlots<Item = any> = {
|
|
|
706
752
|
*/
|
|
707
753
|
'no-data'?: (props: object) => any;
|
|
708
754
|
/**
|
|
709
|
-
* Content rendered in the actions cell for each row.
|
|
755
|
+
* Content rendered in the actions cell for each row. Providing this slot
|
|
756
|
+
* is what CREATES the actions column (there is no prop): the header cell
|
|
757
|
+
* (labelled by `actions-text`, replaceable through `#header:actions`) and
|
|
758
|
+
* one cell per row appear with it, and go away with it. Pin it with
|
|
759
|
+
* `fixed-actions`.
|
|
710
760
|
* @param expanded - Whether this row is currently expanded.
|
|
711
761
|
* @param expandProps - Bind these onto an expand-toggle button to wire up aria attributes and keyboard handling.
|
|
712
762
|
* @param toggleExpanded - Toggles the expanded state for this row.
|
|
@@ -788,6 +838,8 @@ export type BbTableSlots<Item = any> = {
|
|
|
788
838
|
sortable?: boolean;
|
|
789
839
|
sortOrder?: 'asc' | 'desc' | null;
|
|
790
840
|
toggleSort?: () => void;
|
|
841
|
+
/** Header slots only: hides this column (fires `hide:column`). */
|
|
842
|
+
hideColumn?: () => void;
|
|
791
843
|
/**
|
|
792
844
|
* Optional because this catch-all also types the `head:*` /
|
|
793
845
|
* `header:*` column slots, which have no row and never receive one.
|
|
@@ -25,16 +25,18 @@ export declare const readResolvedTracks: (root: Element) => string[] | null;
|
|
|
25
25
|
* updates (e.g. in a `flush: 'post'` watch) and after every re-measure so the
|
|
26
26
|
* offsets follow the tracks.
|
|
27
27
|
*
|
|
28
|
-
*
|
|
29
|
-
* included)
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
28
|
+
* The pass is POSITIONAL (indices into the rendered track list, `select`
|
|
29
|
+
* included); the table resolves them from `column.fixed` / `fixed-select` /
|
|
30
|
+
* `fixed-actions` against the RENDERED column list on every change, so the
|
|
31
|
+
* pin follows the column. Cells are keyed by column, so a reorder MOVES the
|
|
32
|
+
* cell element — inline styles travel with it. A cell that stops being pinned
|
|
33
|
+
* (its column un-pinned, hidden, or another column moved into the slot it
|
|
34
|
+
* used to hold) would keep `position: sticky; left: 0px` and, once the
|
|
35
|
+
* container scrolls, paint over its neighbours (a stale `left` on a
|
|
36
|
+
* right-pinned cell would linger too), which is why every non-pinned cell is
|
|
37
|
+
* cleared and every pinned cell has its opposite side cleared. Clearing an
|
|
38
|
+
* absent inline property is mutation-free, so the pass is idempotent and
|
|
39
|
+
* cheap.
|
|
38
40
|
*/
|
|
39
41
|
export declare const applyFixedTableColumns: (root: HTMLElement, fixedColumns: FixedColumnConfig[],
|
|
40
42
|
/**
|
|
@@ -69,10 +71,13 @@ export declare const orderColumns: <C extends {
|
|
|
69
71
|
key: string;
|
|
70
72
|
}>(columns: readonly C[], model: readonly string[]) => C[];
|
|
71
73
|
/**
|
|
72
|
-
* The write-back. Moves `key` to render index `toIndex` among the
|
|
73
|
-
* columns
|
|
74
|
-
*
|
|
75
|
-
* the complete order (hidden columns
|
|
74
|
+
* The write-back. Moves `key` to render index `toIndex` among the RENDERED
|
|
75
|
+
* columns (the declared keys minus `hidden`) and returns the complete model
|
|
76
|
+
* to emit: the completed model with exactly ONE entry relocated — what
|
|
77
|
+
* dragging that entry in a panel listing the complete order (hidden columns
|
|
78
|
+
* included) would produce. `hidden` is the set of declared keys that render
|
|
79
|
+
* nothing (`column.hidden`); a key the consumer dropped from `columns`
|
|
80
|
+
* altogether is simply undeclared and behaves the same way.
|
|
76
81
|
*
|
|
77
82
|
* Invariants (each pinned by a unit test):
|
|
78
83
|
* 1. completeness — a permutation of `completeColumnOrder(model, declared)`,
|
|
@@ -80,7 +85,7 @@ export declare const orderColumns: <C extends {
|
|
|
80
85
|
* 2. single relocation — `result` without `key` equals the completed model
|
|
81
86
|
* without `key`: every other key, hidden ones included, keeps its
|
|
82
87
|
* relative order (this IS the "hidden columns keep their slot" guarantee);
|
|
83
|
-
* 3. render index — among the
|
|
88
|
+
* 3. render index — among the rendered keys, `key` sits at
|
|
84
89
|
* `clamp(toIndex, 0, N - 1)`;
|
|
85
90
|
* 4. adjacency — `key` lands right AFTER (moving right) / right BEFORE
|
|
86
91
|
* (moving left) the visible column it displaces, so a hidden key is never
|
|
@@ -89,7 +94,7 @@ export declare const orderColumns: <C extends {
|
|
|
89
94
|
* current index, returns the completed model unchanged (callers compare
|
|
90
95
|
* against the completed model and emit nothing).
|
|
91
96
|
*/
|
|
92
|
-
export declare const moveColumnKey: (model: readonly string[], declared: readonly string[], key: string, toIndex: number) => string[];
|
|
97
|
+
export declare const moveColumnKey: (model: readonly string[], declared: readonly string[], key: string, toIndex: number, hidden?: ReadonlySet<string>) => string[];
|
|
93
98
|
/** Sequence equality for the commit guard. */
|
|
94
99
|
export declare const sameColumnOrder: (a: readonly string[], b: readonly string[]) => boolean;
|
|
95
100
|
/**
|
|
@@ -19,7 +19,7 @@ var n = /^-?\d*\.?\d+px$/, r = (e) => {
|
|
|
19
19
|
position: typeof e == "number" ? "left" : e.position
|
|
20
20
|
})).sort((e, t) => e.position === t.position ? e.position === "left" ? e.index - t.index : t.index - e.index : e.position === "left" ? -1 : 1), f = d.reduce((e, t) => {
|
|
21
21
|
let n = u[t.index];
|
|
22
|
-
if (n === void 0) return c(`BbTable
|
|
22
|
+
if (n === void 0) return c(`BbTable fixed columns: cannot affix the column at rendered index ${t.index}. Table has ${l} columns (valid indices: 0–${l - 1}).`), e;
|
|
23
23
|
let r = e.filter((e) => e.position === t.position).reduce((e, t) => e + t.width, 0);
|
|
24
24
|
return e.push({
|
|
25
25
|
index: t.index,
|
|
@@ -54,13 +54,13 @@ var n = /^-?\d*\.?\d+px$/, r = (e) => {
|
|
|
54
54
|
r ? r.push(t) : n.set(e, [t]);
|
|
55
55
|
}
|
|
56
56
|
return o(t, [...n.keys()]).flatMap((e) => n.get(e) ?? []);
|
|
57
|
-
}, c = (e, t, n, r) => {
|
|
58
|
-
let
|
|
59
|
-
if (
|
|
60
|
-
let
|
|
61
|
-
if (
|
|
62
|
-
let
|
|
63
|
-
return
|
|
57
|
+
}, c = (e, t, n, r, i = /* @__PURE__ */ new Set()) => {
|
|
58
|
+
let a = new Set(t), s = o(e, t), c = s.filter((e) => a.has(e) && !i.has(e)), l = c.indexOf(n);
|
|
59
|
+
if (l < 0) return s;
|
|
60
|
+
let u = Math.max(0, Math.min(c.length - 1, r));
|
|
61
|
+
if (u === l) return s;
|
|
62
|
+
let d = c[u], f = s.filter((e) => e !== n);
|
|
63
|
+
return f.splice(f.indexOf(d) + +(u > l), 0, n), f;
|
|
64
64
|
}, l = (e, t) => e.length === t.length && e.every((e, n) => e === t[n]), u = (e) => Array.isArray(e) ? e : [e], d = t, f = (e, t, n) => {
|
|
65
65
|
let r = [...u(e)];
|
|
66
66
|
return t && r.push(...u(t)), n && r.push(...u(n)), r;
|
|
@@ -2,15 +2,33 @@ import { MaybeRefOrGetter } from 'vue';
|
|
|
2
2
|
/**
|
|
3
3
|
* A single table's entry in the shared width registry.
|
|
4
4
|
*
|
|
5
|
-
* `tracks` is keyed
|
|
6
|
-
*
|
|
5
|
+
* `tracks` is keyed by COLUMN KEY (the raw key as the consumer wrote it), and
|
|
6
|
+
* the structural columns participate under their reserved names: `'select'`,
|
|
7
|
+
* then every rendered data column's key, then `'actions'`. `keys` is that
|
|
8
|
+
* list in render order — a record cannot carry order a descendant may rely
|
|
9
|
+
* on, and a nested table needs it to turn a key into a gridline.
|
|
7
10
|
*/
|
|
8
11
|
export interface TableWidthNode {
|
|
9
12
|
id: string;
|
|
10
13
|
parentId: string | null;
|
|
11
|
-
/** Measured track widths as CSS lengths, keyed by
|
|
14
|
+
/** Measured track widths as CSS lengths, keyed by column key. */
|
|
12
15
|
tracks: Record<string, string>;
|
|
16
|
+
/** The track keys in render order (`select`?, data keys…, `actions`?). */
|
|
17
|
+
keys: string[];
|
|
18
|
+
/**
|
|
19
|
+
* True while this table's data columns can be reordered at runtime
|
|
20
|
+
* (`reorderable`, or a non-empty `order` model). A nested table's `snap`
|
|
21
|
+
* targets are ignored under such a parent — see BbTable § Nested tables.
|
|
22
|
+
*/
|
|
23
|
+
ordered: boolean;
|
|
13
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* The custom-property segment for a column key. Raw keys are the API
|
|
27
|
+
* everywhere (`order`, `hidden`, `snap`, the events…); only the CSS variable
|
|
28
|
+
* NAME needs an identifier-safe spelling, so the normalisation is internal
|
|
29
|
+
* and shared with the slot names (`address.city` → `address_city`).
|
|
30
|
+
*/
|
|
31
|
+
export declare const trackVarKey: (key: string) => string;
|
|
14
32
|
export type TableWidthRegistry = Map<string, TableWidthNode>;
|
|
15
33
|
export interface UseTableWidthContextOptions {
|
|
16
34
|
/** Explicit table id. When omitted a stable unique id is generated. */
|
|
@@ -35,9 +53,11 @@ export declare function useTableWidthContext(options: UseTableWidthContextOption
|
|
|
35
53
|
id: string;
|
|
36
54
|
parentId: string | null;
|
|
37
55
|
tracks: Record<string, string>;
|
|
56
|
+
keys: string[];
|
|
57
|
+
ordered: boolean;
|
|
38
58
|
};
|
|
39
59
|
registry: TableWidthRegistry;
|
|
40
|
-
setTracks: (tracks: Record<string, string
|
|
60
|
+
setTracks: (tracks: Record<string, string>, keys?: string[]) => void;
|
|
41
61
|
cssVars: import('vue').ComputedRef<Record<string, string>>;
|
|
42
62
|
};
|
|
43
63
|
/**
|
|
@@ -1,42 +1,45 @@
|
|
|
1
1
|
import { useId as e } from "./useId.js";
|
|
2
|
-
import {
|
|
2
|
+
import { slotKey as t } from "../utilities/functions/slotKey.js";
|
|
3
|
+
import { computed as n, onBeforeUnmount as r, onMounted as i, reactive as a, ref as o, toValue as s, watch as c, watchEffect as l } from "vue";
|
|
3
4
|
//#region src/composables/useTableWidthContext.ts
|
|
4
|
-
var
|
|
5
|
-
function
|
|
6
|
-
let
|
|
7
|
-
id:
|
|
5
|
+
var u = (e) => t(e), d = a(/* @__PURE__ */ new Map()), f = "[data-bb-table-id]";
|
|
6
|
+
function p(t) {
|
|
7
|
+
let p = e().id, m = n(() => s(t.id) || p.value), h = o(null), g = a({
|
|
8
|
+
id: m.value,
|
|
8
9
|
parentId: null,
|
|
9
|
-
tracks: {}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
tracks: {},
|
|
11
|
+
keys: [],
|
|
12
|
+
ordered: !1
|
|
13
|
+
}), _;
|
|
14
|
+
l(() => {
|
|
15
|
+
g.id = m.value, g.parentId = h.value, !(typeof window > "u") && (_ !== void 0 && _ !== m.value && d.get(_) === g && d.delete(_), d.set(m.value, g), _ = m.value);
|
|
13
16
|
});
|
|
14
|
-
let
|
|
15
|
-
let e =
|
|
16
|
-
if (
|
|
17
|
-
|
|
17
|
+
let v = () => {
|
|
18
|
+
let e = s(t.container), n = s(t.inheritFrom), r = e?.parentElement?.closest(f) ?? null;
|
|
19
|
+
if (n) for (; r && r.dataset.bbTableId !== n;) r = r.parentElement?.closest(f) ?? null;
|
|
20
|
+
h.value = r?.dataset.bbTableId ?? null;
|
|
18
21
|
};
|
|
19
|
-
|
|
20
|
-
|
|
22
|
+
i(v), c(() => s(t.inheritFrom), v), r(() => {
|
|
23
|
+
d.get(m.value) === g && d.delete(m.value);
|
|
21
24
|
});
|
|
22
|
-
let
|
|
25
|
+
let y = n(() => h.value ? d.get(h.value) ?? null : null);
|
|
23
26
|
return {
|
|
24
|
-
id:
|
|
25
|
-
parentId:
|
|
26
|
-
parentNode:
|
|
27
|
-
parentHasTrack: (e) => !!
|
|
28
|
-
parentVar: (e, t = "auto") =>
|
|
29
|
-
node:
|
|
30
|
-
registry:
|
|
31
|
-
setTracks: (e) => {
|
|
32
|
-
|
|
27
|
+
id: m,
|
|
28
|
+
parentId: h,
|
|
29
|
+
parentNode: y,
|
|
30
|
+
parentHasTrack: (e) => !!y.value?.tracks[e],
|
|
31
|
+
parentVar: (e, t = "auto") => h.value ? `var(--table-${h.value}-track-${u(e)}, ${t})` : t,
|
|
32
|
+
node: g,
|
|
33
|
+
registry: d,
|
|
34
|
+
setTracks: (e, t) => {
|
|
35
|
+
g.tracks = e, g.keys = t ?? Object.keys(e);
|
|
33
36
|
},
|
|
34
|
-
cssVars:
|
|
37
|
+
cssVars: n(() => {
|
|
35
38
|
let e = {};
|
|
36
|
-
for (let [t, n] of Object.entries(
|
|
39
|
+
for (let [t, n] of Object.entries(g.tracks)) e[`--table-${m.value}-track-${u(t)}`] = n;
|
|
37
40
|
return e;
|
|
38
41
|
})
|
|
39
42
|
};
|
|
40
43
|
}
|
|
41
44
|
//#endregion
|
|
42
|
-
export {
|
|
45
|
+
export { u as trackVarKey, p as useTableWidthContext };
|
|
@@ -931,6 +931,28 @@ declare const _default: [
|
|
|
931
931
|
"fix": {
|
|
932
932
|
"kind": "rename"
|
|
933
933
|
}
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"component": "BbTable",
|
|
937
|
+
"old": "actions",
|
|
938
|
+
"new": null,
|
|
939
|
+
"since": "3.0.0-beta.21",
|
|
940
|
+
"silent": true,
|
|
941
|
+
"migration": "ai/guides/migration/components/bb-table.md",
|
|
942
|
+
"fix": {
|
|
943
|
+
"kind": "remove"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"component": "BbTable",
|
|
948
|
+
"old": "fixedColumns",
|
|
949
|
+
"new": null,
|
|
950
|
+
"since": "3.0.0-beta.21",
|
|
951
|
+
"silent": true,
|
|
952
|
+
"migration": "ai/guides/migration/components/bb-table.md",
|
|
953
|
+
"fix": {
|
|
954
|
+
"kind": "manual"
|
|
955
|
+
}
|
|
934
956
|
}
|
|
935
957
|
]
|
|
936
958
|
;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
//#region src/deprecation/ai-deprecations.json
|
|
2
|
-
var e = /*#__PURE__*/ JSON.parse("[{\"component\":\"BbAlert\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-alert.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbAlert\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-alert.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbAvatar\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-avatar.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbBadge\",\"old\":\"content\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-badge.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"enabledWhileLoading\",\"new\":\"interactiveWhileLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbButton\",\"old\":\"theme\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltip\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltipPlacement\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltipTimeout\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckbox\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckboxGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckboxGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorInput\",\"old\":\"picker\",\"new\":\"eyeDropper\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-input.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorPalette\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbColorPalette\",\"old\":\"flip\",\"new\":\"disableFlip\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbColorPalette\",\"old\":\"picker\",\"new\":\"eyeDropper\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorPalette\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDatePicker\",\"old\":\"datetime\",\"new\":\"type\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbDatePickerInput\",\"old\":\"datetime\",\"new\":\"type\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"hidePopover\",\"new\":\"disableCalendar\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"rename\",\"valueMap\":{\"not-mobile\":\"desktop\"}}},{\"component\":\"BbDatePickerInput\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"width\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"canvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDialog\",\"old\":\"compact\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"hideHeader\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"overlayClasses\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"panelClasses\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbDropdown\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDropdown\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDropdownButton\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDropdownButton\",\"old\":\"autoLoading\",\"new\":\"disableAutoLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbDropdownButton\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbIcon\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-icon.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbIcon\",\"old\":\"type\",\"new\":\"icon\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-icon.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbOffCanvas\",\"old\":\"compact\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbOffCanvas\",\"old\":\"direction\",\"new\":\"side\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbOffCanvas\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbPagination\",\"old\":\"loading\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-pagination.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPagination\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-pagination.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbPopover\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"block\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"closeLabel\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"hideArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbPopover\",\"old\":\"restoreFocus\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"showClose\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"theme\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadio\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadioGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadioGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbRating\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-rating.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSelect\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbSelect\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbSelectPopover\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbSelectPopover\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSelectPopover\",\"old\":\"flip\",\"new\":\"disableFlip\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbSelectPopover\",\"old\":\"hideArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSelectPopover\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbSelectPopover\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSlider\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-slider.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSlider\",\"old\":\"thumbTranslate\",\"new\":\"disableThumbTranslate\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-slider.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbSpinner\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-spinner.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitch\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitchGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitchGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTable\",\"old\":\"allowSelectAll\",\"new\":\"disableSelectAll\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTable\",\"old\":\"enabledWhileLoading\",\"new\":\"interactiveWhileLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTabs\",\"old\":\"animateX\",\"new\":\"disableAnimateX\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabs\",\"old\":\"animateY\",\"new\":\"disableAnimateY\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabs\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTabsRoot\",\"old\":\"animateX\",\"new\":\"disableAnimateX\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabsRoot\",\"old\":\"animateY\",\"new\":\"disableAnimateY\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabsRoot\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTag\",\"old\":\"multiple\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tag.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbToast\",\"old\":\"placement\",\"new\":\"position\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-toast.md\",\"fix\":{\"kind\":\"valueMap\",\"valueMap\":{\"bottom\":\"bottom-center\",\"bottom-start\":\"bottom-left\",\"bottom-end\":\"bottom-right\",\"top\":\"top-center\",\"top-start\":\"top-left\",\"top-end\":\"top-right\"}}},{\"component\":\"BbToast\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-toast.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTooltip\",\"old\":\"block\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbTooltip\",\"old\":\"showClose\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbTooltip\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTooltip\",\"old\":\"timeout\",\"new\":\"delay\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"rename\"}}]");
|
|
2
|
+
var e = /*#__PURE__*/ JSON.parse("[{\"component\":\"BbAlert\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-alert.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbAlert\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-alert.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbAvatar\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-avatar.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbBadge\",\"old\":\"content\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-badge.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"enabledWhileLoading\",\"new\":\"interactiveWhileLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbButton\",\"old\":\"theme\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltip\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltipPlacement\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbButton\",\"old\":\"tooltipTimeout\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-button.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckbox\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckboxGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbCheckboxGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorInput\",\"old\":\"picker\",\"new\":\"eyeDropper\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-input.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorPalette\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbColorPalette\",\"old\":\"flip\",\"new\":\"disableFlip\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbColorPalette\",\"old\":\"picker\",\"new\":\"eyeDropper\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbColorPalette\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-color-palette.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDatePicker\",\"old\":\"datetime\",\"new\":\"type\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbDatePickerInput\",\"old\":\"datetime\",\"new\":\"type\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"hidePopover\",\"new\":\"disableCalendar\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"rename\",\"valueMap\":{\"not-mobile\":\"desktop\"}}},{\"component\":\"BbDatePickerInput\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDatePickerInput\",\"old\":\"width\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-date-picker-input.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"canvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDialog\",\"old\":\"compact\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"hideHeader\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"overlayClasses\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"panelClasses\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbDialog\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dialog.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbDropdown\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDropdown\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbDropdownButton\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbDropdownButton\",\"old\":\"autoLoading\",\"new\":\"disableAutoLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbDropdownButton\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-dropdown-button.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbIcon\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-icon.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbIcon\",\"old\":\"type\",\"new\":\"icon\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-icon.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbOffCanvas\",\"old\":\"compact\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbOffCanvas\",\"old\":\"direction\",\"new\":\"side\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbOffCanvas\",\"old\":\"showClose\",\"new\":\"hideClose\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-offcanvas.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbPagination\",\"old\":\"loading\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-pagination.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPagination\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-pagination.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbPopover\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"block\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"closeLabel\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"hideArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbPopover\",\"old\":\"restoreFocus\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbPopover\",\"old\":\"showClose\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbPopover\",\"old\":\"theme\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-popover.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadio\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadioGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbRadioGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbRating\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-rating.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSelect\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbSelect\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbSelectPopover\",\"old\":\"allowWriting\",\"new\":\"disableWriting\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"invert\",\"valueMap\":{\"not-mobile\":\"mobile\"}}},{\"component\":\"BbSelectPopover\",\"old\":\"arrowPadding\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSelectPopover\",\"old\":\"flip\",\"new\":\"disableFlip\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbSelectPopover\",\"old\":\"hideArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSelectPopover\",\"old\":\"offcanvasProps\",\"new\":\"offCanvasProps\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbSelectPopover\",\"old\":\"showArrow\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-select-popover.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbSlider\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-slider.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSlider\",\"old\":\"thumbTranslate\",\"new\":\"disableThumbTranslate\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-slider.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbSpinner\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-spinner.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitch\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitchGroup\",\"old\":\"color\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"manual\"}},{\"component\":\"BbSwitchGroup\",\"old\":\"labelPosition\",\"new\":\"legendPosition\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-checkbox-group.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTable\",\"old\":\"allowSelectAll\",\"new\":\"disableSelectAll\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTable\",\"old\":\"enabledWhileLoading\",\"new\":\"interactiveWhileLoading\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTabs\",\"old\":\"animateX\",\"new\":\"disableAnimateX\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabs\",\"old\":\"animateY\",\"new\":\"disableAnimateY\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabs\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTabsRoot\",\"old\":\"animateX\",\"new\":\"disableAnimateX\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabsRoot\",\"old\":\"animateY\",\"new\":\"disableAnimateY\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"invert\"}},{\"component\":\"BbTabsRoot\",\"old\":\"querykey\",\"new\":\"queryKey\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tabs.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTag\",\"old\":\"multiple\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tag.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbToast\",\"old\":\"placement\",\"new\":\"position\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-toast.md\",\"fix\":{\"kind\":\"valueMap\",\"valueMap\":{\"bottom\":\"bottom-center\",\"bottom-start\":\"bottom-left\",\"bottom-end\":\"bottom-right\",\"top\":\"top-center\",\"top-start\":\"top-left\",\"top-end\":\"top-right\"}}},{\"component\":\"BbToast\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-toast.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTooltip\",\"old\":\"block\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbTooltip\",\"old\":\"showClose\",\"new\":null,\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbTooltip\",\"old\":\"theme\",\"new\":\"variant\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTooltip\",\"old\":\"timeout\",\"new\":\"delay\",\"since\":\"3.0.0-unreleased\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-tooltip.md\",\"fix\":{\"kind\":\"rename\"}},{\"component\":\"BbTable\",\"old\":\"actions\",\"new\":null,\"since\":\"3.0.0-beta.21\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"remove\"}},{\"component\":\"BbTable\",\"old\":\"fixedColumns\",\"new\":null,\"since\":\"3.0.0-beta.21\",\"silent\":true,\"migration\":\"ai/guides/migration/components/bb-table.md\",\"fix\":{\"kind\":\"manual\"}}]");
|
|
3
3
|
//#endregion
|
|
4
4
|
export { e as default };
|