@astryxdesign/cli 0.1.4-canary.39ffd21 → 0.1.4-canary.3d64ef2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/docs/getting-started.doc.mjs +4 -0
- package/docs/migration.doc.mjs +134 -0
- package/docs/styling.doc.mjs +53 -0
- package/package.json +14 -9
- package/src/api/component.mjs +2 -1
- package/src/api/doctor.mjs +13 -2
- package/src/api/template.mjs +14 -3
- package/src/codemods/__tests__/runner.test.mjs +38 -0
- package/src/codemods/runner.mjs +2 -0
- package/src/commands/agent-docs.mjs +9 -6
- package/src/commands/agent-docs.test.mjs +33 -0
- package/src/commands/build-theme.mjs +110 -13
- package/src/commands/build-theme.variants.test.mjs +204 -0
- package/src/commands/component-resolution.test.mjs +4 -4
- package/src/commands/doctor.test.mjs +34 -0
- package/src/commands/init.mjs +1 -1
- package/src/commands/swizzle.mjs +34 -0
- package/src/commands/swizzle.routing.test.mjs +67 -0
- package/src/lib/component-discovery.mjs +8 -4
- package/templates/blocks/components/BaseTypeahead/BaseTypeaheadCustomSearch.doc.mjs +14 -0
- package/templates/blocks/components/BaseTypeahead/BaseTypeaheadCustomSearch.tsx +58 -0
- package/templates/blocks/components/CodeBlock/CodeBlockTerminal.doc.mjs +14 -0
- package/templates/blocks/components/CodeBlock/CodeBlockTerminal.tsx +24 -0
- package/templates/blocks/components/Collapsible/CollapsibleDividedAccordion.doc.mjs +13 -0
- package/templates/blocks/components/Collapsible/CollapsibleDividedAccordion.tsx +33 -0
- package/templates/blocks/components/CommandPaletteGroup/CommandPaletteGroupShowcase.tsx +27 -48
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputBasic.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputBasic.tsx +39 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputShowcase.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputShowcase.tsx +39 -0
- package/templates/blocks/components/CommandPaletteItem/CommandPaletteItemShowcase.tsx +31 -54
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListBasic.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListBasic.tsx +27 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListShowcase.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListShowcase.tsx +38 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemBasic.doc.mjs +14 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemBasic.tsx +44 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemShowcase.doc.mjs +15 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemShowcase.tsx +107 -0
- package/templates/blocks/components/NavHeadingMenu/NavHeadingMenuShowcase.doc.mjs +15 -0
- package/templates/blocks/components/NavHeadingMenu/NavHeadingMenuShowcase.tsx +47 -0
- package/templates/pages/table-page-chart/page.tsx +3 -13
- package/templates/pages/table-page-shoe-store-heatmap/page.tsx +4 -18
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {ContextMenu, ContextMenuItem} from '@astryxdesign/core/ContextMenu';
|
|
6
|
+
|
|
7
|
+
const PencilIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
8
|
+
<svg
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="currentColor"
|
|
12
|
+
strokeWidth={1.5}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
{...props}>
|
|
16
|
+
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
|
|
17
|
+
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
const CopyIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
22
|
+
<svg
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
stroke="currentColor"
|
|
26
|
+
strokeWidth={1.5}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
{...props}>
|
|
30
|
+
<rect x="9" y="9" width="13" height="13" rx="2" />
|
|
31
|
+
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
const ShareIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
36
|
+
<svg
|
|
37
|
+
viewBox="0 0 24 24"
|
|
38
|
+
fill="none"
|
|
39
|
+
stroke="currentColor"
|
|
40
|
+
strokeWidth={1.5}
|
|
41
|
+
strokeLinecap="round"
|
|
42
|
+
strokeLinejoin="round"
|
|
43
|
+
{...props}>
|
|
44
|
+
<circle cx="18" cy="5" r="3" />
|
|
45
|
+
<circle cx="6" cy="12" r="3" />
|
|
46
|
+
<circle cx="18" cy="19" r="3" />
|
|
47
|
+
<line x1="8.59" y1="13.51" x2="15.42" y2="17.49" />
|
|
48
|
+
<line x1="15.41" y1="6.51" x2="8.59" y2="10.49" />
|
|
49
|
+
</svg>
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const TrashIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
53
|
+
<svg
|
|
54
|
+
viewBox="0 0 24 24"
|
|
55
|
+
fill="none"
|
|
56
|
+
stroke="currentColor"
|
|
57
|
+
strokeWidth={1.5}
|
|
58
|
+
strokeLinecap="round"
|
|
59
|
+
strokeLinejoin="round"
|
|
60
|
+
{...props}>
|
|
61
|
+
<polyline points="3 6 5 6 21 6" />
|
|
62
|
+
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
|
|
63
|
+
</svg>
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
export default function ContextMenuItemShowcase() {
|
|
67
|
+
return (
|
|
68
|
+
<ContextMenu
|
|
69
|
+
menuContent={
|
|
70
|
+
<>
|
|
71
|
+
<ContextMenuItem
|
|
72
|
+
icon={PencilIcon}
|
|
73
|
+
label="Edit"
|
|
74
|
+
description="Modify this item"
|
|
75
|
+
onClick={() => {}}
|
|
76
|
+
/>
|
|
77
|
+
<ContextMenuItem
|
|
78
|
+
icon={CopyIcon}
|
|
79
|
+
label="Duplicate"
|
|
80
|
+
description="Create a copy"
|
|
81
|
+
onClick={() => {}}
|
|
82
|
+
/>
|
|
83
|
+
<ContextMenuItem icon={ShareIcon} label="Share" onClick={() => {}} />
|
|
84
|
+
<ContextMenuItem
|
|
85
|
+
icon={TrashIcon}
|
|
86
|
+
label="Delete"
|
|
87
|
+
description="This action cannot be undone"
|
|
88
|
+
onClick={() => {}}
|
|
89
|
+
/>
|
|
90
|
+
</>
|
|
91
|
+
}>
|
|
92
|
+
<div
|
|
93
|
+
style={{
|
|
94
|
+
padding: '48px',
|
|
95
|
+
borderWidth: '2px',
|
|
96
|
+
borderStyle: 'dashed',
|
|
97
|
+
borderColor: 'var(--color-border)',
|
|
98
|
+
borderRadius: '8px',
|
|
99
|
+
textAlign: 'center',
|
|
100
|
+
color: 'var(--color-text-secondary)',
|
|
101
|
+
userSelect: 'none',
|
|
102
|
+
}}>
|
|
103
|
+
Right-click this area
|
|
104
|
+
</div>
|
|
105
|
+
</ContextMenu>
|
|
106
|
+
);
|
|
107
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'NavHeadingMenu',
|
|
7
|
+
name: 'NavHeadingMenu',
|
|
8
|
+
displayName: 'Nav Heading Menu',
|
|
9
|
+
description:
|
|
10
|
+
'NavHeadingMenu passed as the menu prop of SideNavHeading, letting the heading act as a product switcher popover trigger.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: true,
|
|
13
|
+
aspectRatio: 4 / 3,
|
|
14
|
+
componentsUsed: ['SideNav', 'SideNavHeading', 'NavHeadingMenu', 'NavHeadingMenuItem'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {SideNav, SideNavHeading} from '@astryxdesign/core/SideNav';
|
|
6
|
+
import {NavHeadingMenu, NavHeadingMenuItem} from '@astryxdesign/core/NavMenu';
|
|
7
|
+
|
|
8
|
+
function AppIcon() {
|
|
9
|
+
return (
|
|
10
|
+
<svg
|
|
11
|
+
width="20"
|
|
12
|
+
height="20"
|
|
13
|
+
viewBox="0 0 24 24"
|
|
14
|
+
fill="none"
|
|
15
|
+
stroke="currentColor"
|
|
16
|
+
strokeWidth="1.5">
|
|
17
|
+
<path
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25a2.25 2.25 0 0 1-2.25-2.25v-2.25Z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default function NavHeadingMenuShowcase() {
|
|
27
|
+
return (
|
|
28
|
+
<div style={{height: 100}}>
|
|
29
|
+
<SideNav
|
|
30
|
+
header={
|
|
31
|
+
<SideNavHeading
|
|
32
|
+
heading="Acme Platform"
|
|
33
|
+
icon={<AppIcon />}
|
|
34
|
+
menu={
|
|
35
|
+
<NavHeadingMenu size="lg">
|
|
36
|
+
<NavHeadingMenuItem label="Dashboard" href="/dashboard" />
|
|
37
|
+
<NavHeadingMenuItem label="Analytics" href="/analytics" />
|
|
38
|
+
<NavHeadingMenuItem label="Settings" href="/settings" />
|
|
39
|
+
</NavHeadingMenu>
|
|
40
|
+
}
|
|
41
|
+
/>
|
|
42
|
+
}>
|
|
43
|
+
{null}
|
|
44
|
+
</SideNav>
|
|
45
|
+
</div>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
@@ -19,13 +19,7 @@ import {Link} from '@astryxdesign/core/Link';
|
|
|
19
19
|
import {Thumbnail} from '@astryxdesign/core/Thumbnail';
|
|
20
20
|
import {Table, proportional, pixel} from '@astryxdesign/core/Table';
|
|
21
21
|
import type {TableColumn} from '@astryxdesign/core/Table';
|
|
22
|
-
import {
|
|
23
|
-
ChartV2 as Chart,
|
|
24
|
-
ChartGrid,
|
|
25
|
-
ChartAxis,
|
|
26
|
-
area,
|
|
27
|
-
line,
|
|
28
|
-
} from '@astryxdesign/lab';
|
|
22
|
+
import {Chart, ChartGrid, ChartAxis, area, line} from '@astryxdesign/charts';
|
|
29
23
|
import {
|
|
30
24
|
FunnelIcon,
|
|
31
25
|
ArrowDownTrayIcon,
|
|
@@ -481,17 +475,13 @@ const columns: TableColumn<OrderRow>[] = [
|
|
|
481
475
|
key: 'amount',
|
|
482
476
|
header: 'Amount',
|
|
483
477
|
width: pixel(90),
|
|
484
|
-
renderCell: (item: OrderRow) =>
|
|
485
|
-
<Text type="body">${item.amount}</Text>
|
|
486
|
-
),
|
|
478
|
+
renderCell: (item: OrderRow) => <Text type="body">${item.amount}</Text>,
|
|
487
479
|
},
|
|
488
480
|
{
|
|
489
481
|
key: 'customer',
|
|
490
482
|
header: 'Customer',
|
|
491
483
|
width: proportional(2),
|
|
492
|
-
renderCell: (item: OrderRow) =>
|
|
493
|
-
<Text type="body">{item.customer}</Text>
|
|
494
|
-
),
|
|
484
|
+
renderCell: (item: OrderRow) => <Text type="body">{item.customer}</Text>,
|
|
495
485
|
},
|
|
496
486
|
{
|
|
497
487
|
key: 'email',
|
|
@@ -19,13 +19,7 @@ import {Link} from '@astryxdesign/core/Link';
|
|
|
19
19
|
import {Thumbnail} from '@astryxdesign/core/Thumbnail';
|
|
20
20
|
import {Table, proportional, pixel} from '@astryxdesign/core/Table';
|
|
21
21
|
import type {TableColumn} from '@astryxdesign/core/Table';
|
|
22
|
-
import {
|
|
23
|
-
ChartV2 as Chart,
|
|
24
|
-
ChartGrid,
|
|
25
|
-
ChartAxis,
|
|
26
|
-
area,
|
|
27
|
-
line,
|
|
28
|
-
} from '@astryxdesign/lab';
|
|
22
|
+
import {Chart, ChartGrid, ChartAxis, area, line} from '@astryxdesign/charts';
|
|
29
23
|
import {
|
|
30
24
|
FunnelIcon,
|
|
31
25
|
ArrowDownTrayIcon,
|
|
@@ -35,11 +29,7 @@ import {
|
|
|
35
29
|
// ============= DATA =============
|
|
36
30
|
|
|
37
31
|
type ProductCategory =
|
|
38
|
-
| '
|
|
39
|
-
| 'Lifestyle'
|
|
40
|
-
| 'Basketball'
|
|
41
|
-
| 'Training'
|
|
42
|
-
| 'Skateboarding';
|
|
32
|
+
'Running' | 'Lifestyle' | 'Basketball' | 'Training' | 'Skateboarding';
|
|
43
33
|
|
|
44
34
|
function shoeSvg(bg: string, accent: string) {
|
|
45
35
|
const svg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" rx="12" fill="${bg}"/><g transform="translate(22.5, 22.5) scale(2.29)" fill="none" stroke="${accent}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m15 10.42 4.8-5.07"/><path d="M19 18h3"/><path d="M9.5 22 21.414 9.415A2 2 0 0 0 21.2 6.4l-5.61-4.208A1 1 0 0 0 14 3v2a2 2 0 0 1-1.394 1.906L8.677 8.053A1 1 0 0 0 8 9c-.155 6.393-2.082 9-4 9a2 2 0 0 0 0 4h14"/></g></svg>`;
|
|
@@ -839,17 +829,13 @@ const columns: TableColumn<OrderRow>[] = [
|
|
|
839
829
|
key: 'amount',
|
|
840
830
|
header: 'Amount',
|
|
841
831
|
width: pixel(90),
|
|
842
|
-
renderCell: (item: OrderRow) =>
|
|
843
|
-
<Text type="body">${item.amount}</Text>
|
|
844
|
-
),
|
|
832
|
+
renderCell: (item: OrderRow) => <Text type="body">${item.amount}</Text>,
|
|
845
833
|
},
|
|
846
834
|
{
|
|
847
835
|
key: 'customer',
|
|
848
836
|
header: 'Customer',
|
|
849
837
|
width: proportional(2),
|
|
850
|
-
renderCell: (item: OrderRow) =>
|
|
851
|
-
<Text type="body">{item.customer}</Text>
|
|
852
|
-
),
|
|
838
|
+
renderCell: (item: OrderRow) => <Text type="body">{item.customer}</Text>,
|
|
853
839
|
},
|
|
854
840
|
{
|
|
855
841
|
key: 'email',
|