@astryxdesign/cli 0.3.0-canary.e9fc2bb → 0.3.0-canary.ee705d8

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.
Files changed (30) hide show
  1. package/api/template/template.test.mjs +26 -0
  2. package/assets/codemods/transforms/next/__tests__/next-codemods.test.mjs +92 -0
  3. package/assets/codemods/transforms/next/index.mjs +11 -1
  4. package/assets/codemods/transforms/next/rename-dropdown-menu-radio-dot-target.mjs +152 -0
  5. package/assets/codemods/transforms/v0.3.0/__tests__/migrate-table-rowexpansion-to-tree.test.mjs +201 -0
  6. package/assets/codemods/transforms/v0.3.0/index.mjs +8 -0
  7. package/assets/codemods/transforms/v0.3.0/migrate-table-rowexpansion-to-tree.mjs +214 -0
  8. package/assets/docs/getting-started.doc.mjs +3 -3
  9. package/assets/templates/blocks/components/Stepper/StepperHorizontal.doc.mjs +14 -0
  10. package/assets/templates/blocks/components/Stepper/StepperHorizontal.tsx +24 -0
  11. package/assets/templates/blocks/components/Stepper/StepperIndicatorModes.doc.mjs +14 -0
  12. package/assets/templates/blocks/components/Stepper/StepperIndicatorModes.tsx +68 -0
  13. package/assets/templates/blocks/components/Stepper/StepperMultiStepForm.doc.mjs +14 -0
  14. package/assets/templates/blocks/components/Stepper/StepperMultiStepForm.tsx +92 -0
  15. package/assets/templates/blocks/components/Stepper/StepperOnTrackVertical.doc.mjs +14 -0
  16. package/assets/templates/blocks/components/Stepper/StepperOnTrackVertical.tsx +41 -0
  17. package/assets/templates/blocks/components/Stepper/StepperShowcase.doc.mjs +15 -0
  18. package/assets/templates/blocks/components/Stepper/StepperShowcase.tsx +25 -0
  19. package/assets/templates/blocks/components/Stepper/StepperStatus.doc.mjs +14 -0
  20. package/assets/templates/blocks/components/Stepper/StepperStatus.tsx +50 -0
  21. package/assets/templates/blocks/components/Stepper/StepperVerticalOnboarding.doc.mjs +14 -0
  22. package/assets/templates/blocks/components/Stepper/StepperVerticalOnboarding.tsx +40 -0
  23. package/assets/templates/blocks/components/Table/TableRowExpansionTable.tsx +61 -58
  24. package/assets/templates/blocks/components/TextArea/TextAreaStates.tsx +1 -1
  25. package/assets/templates/themes/neutral/neutralTheme.ts +4 -1
  26. package/authoring/doctypes/base/type.ts +15 -0
  27. package/clients/cli/commands/build-theme.registry.test.mjs +14 -1
  28. package/foundation/discovery/template-adapter.d.mts +6 -3
  29. package/foundation/discovery/template-adapter.mjs +30 -14
  30. package/package.json +9 -9
@@ -52,6 +52,32 @@ describe('stripTemplateAssetRefs', () => {
52
52
  const out = stripTemplateAssetRefs(src);
53
53
  expect(out).toBe(src);
54
54
  });
55
+
56
+ it('strips a /template-assets .mp4 source to an empty string, not the image data URI (#4780)', () => {
57
+ const src = "src: '/template-assets/Nature-1.mp4',";
58
+ const out = stripTemplateAssetRefs(src);
59
+ expect(out).toBe("src: '',");
60
+ expect(out).not.toContain('data:image/svg+xml,');
61
+ expect(out).not.toContain('/template-assets/');
62
+ });
63
+
64
+ it('strips other video extensions (.webm, .mov, .ogv) the same way', () => {
65
+ for (const ext of ['webm', 'mov', 'ogv']) {
66
+ const src = `src: '/template-assets/clip.${ext}',`;
67
+ const out = stripTemplateAssetRefs(src);
68
+ expect(out).toBe("src: '',");
69
+ }
70
+ });
71
+
72
+ it('still replaces an adjacent image reference with the placeholder when a video reference is also present', () => {
73
+ const src = [
74
+ "poster: '/template-assets/Nature-1-poster.jpg',",
75
+ "src: '/template-assets/Nature-1.mp4',",
76
+ ].join('\n');
77
+ const out = stripTemplateAssetRefs(src);
78
+ expect(out).toContain('data:image/svg+xml,');
79
+ expect(out).toContain("src: '',");
80
+ });
55
81
  });
56
82
 
57
83
  describe('template --skeleton component extraction (prefix-agnostic)', () => {
@@ -0,0 +1,92 @@
1
+ // Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ /**
4
+ * @file Unit tests for the staged (next-release) codemods.
5
+ *
6
+ * Mirrors v0.3.0/__tests__/next-codemods.test.mjs, which covers the codemods
7
+ * after promotion. Keeping a copy here means a staged transform is tested from
8
+ * the day it is written rather than the day it is released.
9
+ */
10
+
11
+ import {describe, expect, it} from 'vitest';
12
+ import jscodeshift from 'jscodeshift';
13
+
14
+ const j = jscodeshift.withParser('tsx');
15
+ const api = {jscodeshift: j, stats: () => {}, report: () => {}};
16
+
17
+ async function apply(name, source) {
18
+ const {default: transform} = await import(`../${name}.mjs`);
19
+ return transform({source, path: 'test.tsx'}, api) ?? source;
20
+ }
21
+
22
+ const TRANSFORM = 'rename-dropdown-menu-radio-dot-target';
23
+
24
+ describe('rename-dropdown-menu-radio-dot-target', () => {
25
+ it('renames the theme target key in a defineTheme components map', async () => {
26
+ const input = `import {defineTheme} from '@astryxdesign/core/theme';
27
+ export const theme = defineTheme({
28
+ name: 'brand',
29
+ components: {
30
+ 'dropdown-menu-radio-dot': {base: {backgroundColor: 'var(--color-accent)'}},
31
+ },
32
+ });`;
33
+ const output = await apply(TRANSFORM, input);
34
+ expect(output).toContain("'radio-indicator-dot':");
35
+ // The old name survives only inside the TODO comment the rename attaches.
36
+ expect(output).not.toContain("'dropdown-menu-radio-dot':");
37
+ });
38
+
39
+ it('warns that the new target is app-wide, not menu-only', async () => {
40
+ const input = `const components = {
41
+ 'dropdown-menu-radio-dot': {base: {width: '10px'}},
42
+ };`;
43
+ const output = await apply(TRANSFORM, input);
44
+ // The rename cannot preserve scope — there is no menu-only dot element
45
+ // left — so the author has to decide, and must be told.
46
+ expect(output).toContain('TODO(astryx upgrade)');
47
+ expect(output).toContain('EVERY radio dot');
48
+ });
49
+
50
+ it('renames the rendered class inside a selector string', async () => {
51
+ const input = `const sel = '.astryx-dropdown-menu-radio-dot';
52
+ const nested = '.astryx-dropdown-menu-radio .astryx-dropdown-menu-radio-dot';`;
53
+ const output = await apply(TRANSFORM, input);
54
+ expect(output).toContain("'.astryx-radio-indicator-dot'");
55
+ expect(output).toContain(
56
+ '.astryx-dropdown-menu-radio .astryx-radio-indicator-dot',
57
+ );
58
+ });
59
+
60
+ it('renames the class inside a template literal', async () => {
61
+ const input =
62
+ 'const css = `.astryx-dropdown-menu-radio-dot { background: ${c}; }`;';
63
+ const output = await apply(TRANSFORM, input);
64
+ expect(output).toContain('.astryx-radio-indicator-dot {');
65
+ expect(output).not.toContain('astryx-dropdown-menu-radio-dot');
66
+ });
67
+
68
+ it('leaves the surviving dropdown-menu-radio target alone', async () => {
69
+ // Only the DOT target was removed; the circle still carries the
70
+ // menu-specific target, so a theme keyed on it must not be rewritten.
71
+ const input = `const components = {
72
+ 'dropdown-menu-radio': {base: {borderWidth: '2px'}},
73
+ };`;
74
+ const output = await apply(TRANSFORM, input);
75
+ expect(output).toContain("'dropdown-menu-radio'");
76
+ expect(output).not.toContain('radio-indicator');
77
+ expect(output).not.toContain('TODO(astryx upgrade)');
78
+ });
79
+
80
+ it('is a no-op on files that never mention the target', async () => {
81
+ const input = `const components = {button: {base: {fontWeight: '600'}}};`;
82
+ expect(await apply(TRANSFORM, input)).toBe(input);
83
+ });
84
+
85
+ it('is idempotent', async () => {
86
+ const input = `const components = {
87
+ 'dropdown-menu-radio-dot': {base: {width: '10px'}},
88
+ };`;
89
+ const once = await apply(TRANSFORM, input);
90
+ expect(await apply(TRANSFORM, once)).toBe(once);
91
+ });
92
+ });
@@ -7,4 +7,14 @@
7
7
  * this file into the resolved version folder.
8
8
  */
9
9
 
10
- export default [];
10
+ import renameDropdownMenuRadioDotTarget, {
11
+ meta as renameDropdownMenuRadioDotTargetMeta,
12
+ } from './rename-dropdown-menu-radio-dot-target.mjs';
13
+
14
+ export default [
15
+ {
16
+ name: 'rename-dropdown-menu-radio-dot-target',
17
+ transform: renameDropdownMenuRadioDotTarget,
18
+ meta: renameDropdownMenuRadioDotTargetMeta,
19
+ },
20
+ ];
@@ -0,0 +1,152 @@
1
+ // Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ /**
4
+ * @file Codemod: rename the removed `dropdown-menu-radio-dot` theme target
5
+ *
6
+ * The menu radio's dot is no longer drawn by DropdownMenuRadioItem. That row
7
+ * now renders the shared radio indicator, so its dot is the indicator's dot and
8
+ * carries `radio-indicator-dot` (plus the legacy `radio-dot`) instead of the
9
+ * menu-specific `dropdown-menu-radio-dot`, which is gone.
10
+ *
11
+ * Runtime themes are not validated: a theme keyed on the old target keeps
12
+ * compiling and simply stops matching, with no error anywhere. That silence is
13
+ * why this rename needs a codemod rather than a changelog line.
14
+ *
15
+ * The rename is NOT scope-preserving, and that cannot be fixed here — there is
16
+ * no menu-only dot element left to address. `radio-indicator-dot` reaches every
17
+ * radio dot in the app, including RadioList's. So every rewritten site also
18
+ * gets a TODO comment (api.report is a stub; comments are the only warning
19
+ * channel) telling the author to check whether the rule was meant to be
20
+ * menu-only, and pointing at the containing-target route if it was.
21
+ */
22
+
23
+ export const meta = {
24
+ title: 'Rename the removed dropdown-menu-radio-dot theme target',
25
+ description:
26
+ 'Renames the `dropdown-menu-radio-dot` theme target (and the ' +
27
+ '`astryx-dropdown-menu-radio-dot` class it rendered) to ' +
28
+ '`radio-indicator-dot` / `astryx-radio-indicator-dot`. Menu radios draw ' +
29
+ 'the shared radio indicator now, so the menu-specific dot target no ' +
30
+ 'longer exists. The new target is app-wide rather than menu-only, so each ' +
31
+ 'rewritten site gets a TODO comment to confirm that widening is intended.',
32
+ pr: '#4712',
33
+ };
34
+
35
+ const OLD_TARGET = 'dropdown-menu-radio-dot';
36
+ const NEW_TARGET = 'radio-indicator-dot';
37
+ const OLD_CLASS = `astryx-${OLD_TARGET}`;
38
+ const NEW_CLASS = `astryx-${NEW_TARGET}`;
39
+
40
+ const TODO_COMMENT =
41
+ ' TODO(astryx upgrade): `dropdown-menu-radio-dot` became `radio-indicator-dot`,' +
42
+ ' which styles EVERY radio dot, not just the ones in a menu. If this rule was' +
43
+ ' meant to be menu-only, scope it under the containing `dropdown-menu-radio`' +
44
+ ' target instead of this one. ';
45
+
46
+ /**
47
+ * Rewrite one string value, or return null when it holds nothing to rename.
48
+ *
49
+ * Handles the target name on its own (a theme's `components` key) and the
50
+ * rendered class inside a larger string (a selector such as
51
+ * `.astryx-dropdown-menu-radio-dot`, or a className list).
52
+ *
53
+ * @param {string} value
54
+ * @returns {string | null}
55
+ */
56
+ function renameIn(value) {
57
+ if (value === OLD_TARGET) {
58
+ return NEW_TARGET;
59
+ }
60
+ if (value.includes(OLD_CLASS)) {
61
+ return value.split(OLD_CLASS).join(NEW_CLASS);
62
+ }
63
+ return null;
64
+ }
65
+
66
+ /**
67
+ * @param {import('../../../../authoring/codemod/type').AstryxCodemodFile} file
68
+ * @param {import('../../../../authoring/codemod/type').CodemodTransformApi} api
69
+ * @returns {string | null | undefined}
70
+ */
71
+ export default function transformer(file, api) {
72
+ // Cheap bail-out: most files in a consumer repo mention neither name.
73
+ if (!file.source.includes(OLD_TARGET)) {
74
+ return undefined;
75
+ }
76
+
77
+ const j = api.jscodeshift;
78
+ const root = j(file.source);
79
+ let hasChanges = false;
80
+
81
+ /** Attach the widening warning once to the nearest statement-ish node. */
82
+ function attachTodo(/** @type {any} */ path) {
83
+ // The property (or its statement) reads better than the bare literal, and
84
+ // matches where a human would look for the note.
85
+ const host =
86
+ path.parent?.node?.type === 'ObjectProperty' ||
87
+ path.parent?.node?.type === 'Property'
88
+ ? path.parent.node
89
+ : path.node;
90
+ if (!host.comments) {
91
+ host.comments = [];
92
+ }
93
+ if (
94
+ host.comments.some((/** @type {any} */ c) => c.value === TODO_COMMENT)
95
+ ) {
96
+ return;
97
+ }
98
+ host.comments.push(j.commentBlock(TODO_COMMENT, true, false));
99
+ }
100
+
101
+ root
102
+ .find(j.StringLiteral)
103
+ .forEach((/** @type {any} */ path) => {
104
+ const renamed = renameIn(path.node.value);
105
+ if (renamed == null) {
106
+ return;
107
+ }
108
+ path.node.value = renamed;
109
+ attachTodo(path);
110
+ hasChanges = true;
111
+ });
112
+
113
+ // Older parsers surface string literals as `Literal`.
114
+ root.find(j.Literal).forEach((/** @type {any} */ path) => {
115
+ if (typeof path.node.value !== 'string') {
116
+ return;
117
+ }
118
+ const renamed = renameIn(path.node.value);
119
+ if (renamed == null) {
120
+ return;
121
+ }
122
+ path.node.value = renamed;
123
+ if (typeof path.node.raw === 'string') {
124
+ path.node.raw = path.node.raw
125
+ .split(OLD_TARGET)
126
+ .join(NEW_TARGET);
127
+ }
128
+ attachTodo(path);
129
+ hasChanges = true;
130
+ });
131
+
132
+ // Template literals carry the class in CSS strings: `.${OLD_CLASS} > span`.
133
+ root.find(j.TemplateElement).forEach((/** @type {any} */ path) => {
134
+ const cooked = path.node.value?.cooked;
135
+ if (typeof cooked !== 'string') {
136
+ return;
137
+ }
138
+ const renamed = renameIn(cooked);
139
+ if (renamed == null) {
140
+ return;
141
+ }
142
+ path.node.value.cooked = renamed;
143
+ path.node.value.raw = path.node.value.raw
144
+ .split(OLD_CLASS)
145
+ .join(NEW_CLASS)
146
+ .split(OLD_TARGET)
147
+ .join(NEW_TARGET);
148
+ hasChanges = true;
149
+ });
150
+
151
+ return hasChanges ? root.toSource({quote: 'single'}) : undefined;
152
+ }
@@ -0,0 +1,201 @@
1
+ // Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ import {describe, it, expect} from 'vitest';
4
+
5
+ async function applyTransform(source) {
6
+ const {default: transform} = await import(
7
+ '../migrate-table-rowexpansion-to-tree.mjs'
8
+ );
9
+ const jscodeshift = (await import('jscodeshift')).default;
10
+ const j = jscodeshift.withParser('tsx');
11
+ const api = {jscodeshift: j, stats: () => {}, report: () => {}};
12
+ const file = {source, path: 'test.tsx'};
13
+ const result = transform(file, api);
14
+ return result ?? source;
15
+ }
16
+
17
+ function normalize(str) {
18
+ return str
19
+ .replace(/\s+/g, ' ')
20
+ .replace(/\{\s+/g, '{')
21
+ .replace(/\s+\}/g, '}')
22
+ .trim();
23
+ }
24
+
25
+ describe('migrate-table-rowexpansion-to-tree', () => {
26
+ it('rewrites the useTableRowExpansionState import to useTableTreeState', async () => {
27
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
28
+ function C() {
29
+ const {data, expansionConfig} = useTableRowExpansionState({
30
+ baseData: tree,
31
+ getChildren: item => item.children ?? [],
32
+ getRowKey: item => item.id,
33
+ expandedKeys,
34
+ setExpandedKeys,
35
+ });
36
+ const expansion = useTableRowExpansion(expansionConfig);
37
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
38
+ }`;
39
+ const output = await applyTransform(input);
40
+ expect(output).not.toContain('useTableRowExpansionState');
41
+ expect(output).toContain('useTableTreeState');
42
+ expect(output).toContain('useTableTreeData');
43
+ });
44
+
45
+ it('maps baseData to data and getChildren to childrenKey', async () => {
46
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
47
+ function C() {
48
+ const {data, expansionConfig} = useTableRowExpansionState({
49
+ baseData: tree,
50
+ getChildren: item => item.children ?? [],
51
+ getRowKey: item => item.id,
52
+ expandedKeys,
53
+ setExpandedKeys,
54
+ });
55
+ const expansion = useTableRowExpansion(expansionConfig);
56
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
57
+ }`;
58
+ const output = await applyTransform(input);
59
+ const n = normalize(output);
60
+ expect(n).toContain('data: tree');
61
+ expect(n).toContain("childrenKey: 'children'");
62
+ expect(output).not.toContain('baseData');
63
+ expect(output).not.toContain('getChildren');
64
+ });
65
+
66
+ it('maps getRowKey to idKey preserving the accessor function', async () => {
67
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
68
+ function C() {
69
+ const {data, expansionConfig} = useTableRowExpansionState({
70
+ baseData: tree,
71
+ getChildren: item => item.children ?? [],
72
+ getRowKey: item => item.id,
73
+ expandedKeys,
74
+ setExpandedKeys,
75
+ });
76
+ const expansion = useTableRowExpansion(expansionConfig);
77
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
78
+ }`;
79
+ const output = await applyTransform(input);
80
+ const n = normalize(output);
81
+ expect(n).toContain('idKey: item => item.id');
82
+ expect(output).not.toContain('getRowKey');
83
+ });
84
+
85
+ it('swaps the useTableRowExpansion plugin call for useTableTreeData', async () => {
86
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
87
+ function C() {
88
+ const {data, expansionConfig} = useTableRowExpansionState({
89
+ baseData: tree,
90
+ getChildren: item => item.children ?? [],
91
+ getRowKey: item => item.id,
92
+ expandedKeys,
93
+ setExpandedKeys,
94
+ });
95
+ const expansion = useTableRowExpansion(expansionConfig);
96
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
97
+ }`;
98
+ const output = await applyTransform(input);
99
+ // The state hook now returns treeConfig; the plugin consumes it.
100
+ expect(output).toContain('treeConfig');
101
+ expect(output).toContain('useTableTreeData(treeConfig)');
102
+ expect(output).not.toMatch(/useTableRowExpansion\(/);
103
+ });
104
+
105
+ it('maps getIsItemExpandable to isItemExpandable', async () => {
106
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
107
+ function C() {
108
+ const {data, expansionConfig} = useTableRowExpansionState({
109
+ baseData: tree,
110
+ getChildren: item => item.children ?? [],
111
+ getRowKey: item => item.id,
112
+ getIsItemExpandable: item => item.type === 'folder',
113
+ expandedKeys,
114
+ setExpandedKeys,
115
+ });
116
+ const expansion = useTableRowExpansion(expansionConfig);
117
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
118
+ }`;
119
+ const output = await applyTransform(input);
120
+ expect(output).toContain('isItemExpandable');
121
+ expect(output).not.toContain('getIsItemExpandable');
122
+ });
123
+
124
+ it('leaves the new detail-panel usage (renderExpanded) untouched', async () => {
125
+ const input = `import {Table, useTableRowExpansion} from '@astryxdesign/core';
126
+ function C() {
127
+ const expansion = useTableRowExpansion({
128
+ expandedKeys,
129
+ onToggle,
130
+ getRowKey: item => item.id,
131
+ renderExpanded: item => <Details item={item} />,
132
+ });
133
+ return <Table data={rows} columns={cols} idKey="id" plugins={{expansion}} />;
134
+ }`;
135
+ const output = await applyTransform(input);
136
+ // No useTableRowExpansionState import here, and renderExpanded present:
137
+ // this is the new detail-panel API. The codemod must not touch it.
138
+ expect(output).toBe(input);
139
+ });
140
+
141
+ it('does not touch files that never imported the row-expansion hooks', async () => {
142
+ const input = `import {Table, useTableSelection} from '@astryxdesign/core';
143
+ const t = <Table data={rows} columns={cols} idKey="id" />;`;
144
+ const output = await applyTransform(input);
145
+ expect(output).toBe(input);
146
+ });
147
+
148
+ it('supports the @xds/core import source alias', async () => {
149
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@xds/core';
150
+ function C() {
151
+ const {data, expansionConfig} = useTableRowExpansionState({
152
+ baseData: tree,
153
+ getChildren: item => item.children ?? [],
154
+ getRowKey: item => item.id,
155
+ expandedKeys,
156
+ setExpandedKeys,
157
+ });
158
+ const expansion = useTableRowExpansion(expansionConfig);
159
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
160
+ }`;
161
+ const output = await applyTransform(input);
162
+ expect(output).toContain('useTableTreeState');
163
+ expect(output).not.toContain('useTableRowExpansionState');
164
+ });
165
+
166
+ it('emits treeConfig as a shorthand (not treeConfig: treeConfig)', async () => {
167
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
168
+ function C() {
169
+ const {data, expansionConfig} = useTableRowExpansionState({
170
+ baseData: tree,
171
+ getChildren: item => item.children ?? [],
172
+ getRowKey: item => item.id,
173
+ expandedKeys,
174
+ setExpandedKeys,
175
+ });
176
+ const expansion = useTableRowExpansion(expansionConfig);
177
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
178
+ }`;
179
+ const output = await applyTransform(input);
180
+ expect(output).not.toContain('treeConfig: treeConfig');
181
+ expect(normalize(output)).toContain('visibleData: data');
182
+ });
183
+
184
+ it('leaves a migration guidance comment about expansion state', async () => {
185
+ const input = `import {Table, useTableRowExpansion, useTableRowExpansionState} from '@astryxdesign/core';
186
+ function C() {
187
+ const {data, expansionConfig} = useTableRowExpansionState({
188
+ baseData: tree,
189
+ getChildren: item => item.children ?? [],
190
+ getRowKey: item => item.id,
191
+ expandedKeys,
192
+ setExpandedKeys,
193
+ });
194
+ const expansion = useTableRowExpansion(expansionConfig);
195
+ return <Table data={data} columns={cols} idKey="id" plugins={{expansion}} />;
196
+ }`;
197
+ const output = await applyTransform(input);
198
+ expect(output).toContain('astryx-migration');
199
+ expect(output).toContain('defaultExpandedIds');
200
+ });
201
+ });
@@ -40,6 +40,9 @@ import migrateLabCodeBlockImports, {
40
40
  import removeThemeTransitionTokenImports, {
41
41
  meta as removeThemeTransitionTokenImportsMeta,
42
42
  } from './remove-theme-transition-token-imports.mjs';
43
+ import migrateTableRowExpansionToTree, {
44
+ meta as migrateTableRowExpansionToTreeMeta,
45
+ } from './migrate-table-rowexpansion-to-tree.mjs';
43
46
 
44
47
  export default [
45
48
  {
@@ -87,4 +90,9 @@ export default [
87
90
  transform: removeThemeTransitionTokenImports,
88
91
  meta: removeThemeTransitionTokenImportsMeta,
89
92
  },
93
+ {
94
+ name: 'migrate-table-rowexpansion-to-tree',
95
+ transform: migrateTableRowExpansionToTree,
96
+ meta: migrateTableRowExpansionToTreeMeta,
97
+ },
90
98
  ];