@astryxdesign/cli 0.1.2-canary.bbf77ea → 0.1.2-canary.bfcbf64

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/cli",
3
- "version": "0.1.2-canary.bbf77ea",
3
+ "version": "0.1.2-canary.bfcbf64",
4
4
  "displayName": "CLI",
5
5
  "description": "Scaffold projects, browse templates, generate themes, and get agent-ready docs from the command line.",
6
6
  "author": "Meta Open Source",
@@ -75,9 +75,9 @@
75
75
  "zod": "^4.4.3"
76
76
  },
77
77
  "peerDependencies": {
78
- "@astryxdesign/core": "0.1.2-canary.bbf77ea",
79
- "@astryxdesign/lab": "0.1.2-canary.bbf77ea",
80
- "@astryxdesign/theme-neutral": "0.1.2-canary.bbf77ea",
78
+ "@astryxdesign/core": "0.1.2-canary.bfcbf64",
79
+ "@astryxdesign/lab": "0.1.2-canary.bfcbf64",
80
+ "@astryxdesign/theme-neutral": "0.1.2-canary.bfcbf64",
81
81
  "gpt-tokenizer": "^2.0.0"
82
82
  },
83
83
  "peerDependenciesMeta": {
@@ -92,9 +92,9 @@
92
92
  }
93
93
  },
94
94
  "devDependencies": {
95
- "@astryxdesign/core": "0.1.2-canary.bbf77ea",
96
- "@astryxdesign/lab": "0.1.2-canary.bbf77ea",
97
- "@astryxdesign/theme-neutral": "0.1.2-canary.bbf77ea",
95
+ "@astryxdesign/core": "0.1.2-canary.bfcbf64",
96
+ "@astryxdesign/lab": "0.1.2-canary.bfcbf64",
97
+ "@astryxdesign/theme-neutral": "0.1.2-canary.bfcbf64",
98
98
  "gpt-tokenizer": "^2.0.0"
99
99
  },
100
100
  "scripts": {
@@ -12,6 +12,7 @@ export default function DropdownMenuShowcase() {
12
12
  <DropdownMenu
13
13
  isMenuOpen={isMenuOpen}
14
14
  onOpenChange={setIsMenuOpen}
15
+ hasAutoFocus={false}
15
16
  button={{label: 'Actions'}}
16
17
  items={[
17
18
  {label: 'Edit', onClick: () => {}},
@@ -68,6 +68,7 @@ export default function DropdownMenuItemShowcase() {
68
68
  <DropdownMenu
69
69
  button={{label: 'Actions'}}
70
70
  isMenuOpen
71
+ hasAutoFocus={false}
71
72
  onOpenChange={() => {}}>
72
73
  <DropdownMenuItem
73
74
  icon={PencilIcon}
@@ -12,6 +12,7 @@ export default function MoreMenuShowcase() {
12
12
  <MoreMenu
13
13
  isMenuOpen={isMenuOpen}
14
14
  onOpenChange={setIsMenuOpen}
15
+ hasAutoFocus={false}
15
16
  items={[
16
17
  {label: 'Edit', onClick: () => {}},
17
18
  {label: 'Duplicate', onClick: () => {}},
@@ -142,6 +142,7 @@ function ConversationItem({
142
142
  <MoreMenu
143
143
  size="sm"
144
144
  label="Conversation options"
145
+ hasAutoFocus={false}
145
146
  onOpenChange={setIsMenuOpen}
146
147
  items={[
147
148
  {label: 'Pin', onClick: () => {}},