@astryxdesign/cli 0.5.1 → 0.5.2
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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @xds/cli
|
|
2
2
|
|
|
3
|
+
# 0.5.2
|
|
4
|
+
|
|
5
|
+
#### Fixes
|
|
6
|
+
|
|
7
|
+
- Rename the Data Input component category to Form Controls (#5686)
|
|
8
|
+
|
|
9
|
+
#### Contributors
|
|
10
|
+
|
|
11
|
+
Thanks to everyone who contributed to this release:
|
|
12
|
+
|
|
13
|
+
- @rubyycheung
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
3
17
|
# 0.5.1
|
|
4
18
|
|
|
5
19
|
#### New Features
|
|
@@ -66,9 +66,9 @@ export const doc = {
|
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
name: 'category',
|
|
69
|
-
type: "'Action' | 'Chat' | 'Container' | 'Content' | 'Data Input' | 'Data Visualization' | 'Feedback & Status' | 'Layout' | 'Navigation' | 'Overlay' | 'Table & List' | 'Utility'",
|
|
69
|
+
type: "'Action' | 'Chat' | 'Container' | 'Content' | 'Form Controls' | 'Data Input' | 'Data Visualization' | 'Feedback & Status' | 'Layout' | 'Navigation' | 'Overlay' | 'Table & List' | 'Utility'",
|
|
70
70
|
description:
|
|
71
|
-
"Overview-gallery category representing the component's functional role. Independent of `group` (which is for the sidebar).",
|
|
71
|
+
"Overview-gallery category representing the component's functional role. Independent of `group` (which is for the sidebar). `Data Input` is a deprecated compatibility alias for `Form Controls`.",
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
name: 'isHiddenFromOverview',
|
|
@@ -186,7 +186,7 @@ export const doc = {
|
|
|
186
186
|
export const docs = {
|
|
187
187
|
name: 'Switch',
|
|
188
188
|
displayName: 'Switch',
|
|
189
|
-
category: '
|
|
189
|
+
category: 'Form Controls',
|
|
190
190
|
keywords: ['toggle', 'switch', 'on off'],
|
|
191
191
|
usage: {
|
|
192
192
|
description:
|
|
@@ -72,7 +72,8 @@ export interface ComponentBaseDoc {
|
|
|
72
72
|
* - `'Chat'` — conversational UI: messages, composers, layouts
|
|
73
73
|
* - `'Container'` — wrappers: cards, carousels, collapsibles
|
|
74
74
|
* - `'Content'` — display: text, icons, avatars, code blocks
|
|
75
|
-
* - `'
|
|
75
|
+
* - `'Form Controls'` — data entry: text fields, selectors, date pickers
|
|
76
|
+
* - `'Data Input'` — deprecated compatibility alias for `'Form Controls'`
|
|
76
77
|
* - `'Data Visualization'` — charts, graphs, 3D visualizations
|
|
77
78
|
* - `'Feedback & Status'` — progress indication: spinners, banners, badges
|
|
78
79
|
* - `'Layout'` — structural: grid, stack, dividers, app shell
|
|
@@ -85,6 +86,7 @@ export interface ComponentBaseDoc {
|
|
|
85
86
|
| 'Chat'
|
|
86
87
|
| 'Container'
|
|
87
88
|
| 'Content'
|
|
89
|
+
| 'Form Controls'
|
|
88
90
|
| 'Data Input'
|
|
89
91
|
| 'Data Visualization'
|
|
90
92
|
| 'Feedback & Status'
|
package/package.json
CHANGED