@purpurds/radio-card-group 5.27.2 → 5.27.4
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": "@purpurds/radio-card-group",
|
|
3
|
-
"version": "5.27.
|
|
3
|
+
"version": "5.27.4",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/radio-card-group.cjs.js",
|
|
6
6
|
"types": "./dist/radio-card-group.d.ts",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@radix-ui/react-radio-group": "~1.1.3",
|
|
18
18
|
"classnames": "~2.5.0",
|
|
19
|
-
"@purpurds/heading": "5.27.
|
|
20
|
-
"@purpurds/
|
|
21
|
-
"@purpurds/paragraph": "5.27.
|
|
22
|
-
"@purpurds/
|
|
19
|
+
"@purpurds/heading": "5.27.4",
|
|
20
|
+
"@purpurds/tokens": "5.27.4",
|
|
21
|
+
"@purpurds/paragraph": "5.27.4",
|
|
22
|
+
"@purpurds/skeleton": "5.27.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@rushstack/eslint-patch": "~1.10.0",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"typescript": "^5.6.3",
|
|
45
45
|
"vite": "5.4.8",
|
|
46
46
|
"vitest": "^2.1.2",
|
|
47
|
-
"@purpurds/
|
|
48
|
-
"@purpurds/
|
|
47
|
+
"@purpurds/button": "5.27.4",
|
|
48
|
+
"@purpurds/badge": "5.27.4",
|
|
49
49
|
"@purpurds/component-rig": "1.0.0",
|
|
50
|
-
"@purpurds/text-field": "5.27.
|
|
51
|
-
"@purpurds/grid": "5.27.
|
|
50
|
+
"@purpurds/text-field": "5.27.4",
|
|
51
|
+
"@purpurds/grid": "5.27.4"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build:dev": "vite",
|
|
@@ -90,6 +90,7 @@ export const Controlled: Story = {
|
|
|
90
90
|
|
|
91
91
|
return <RadioCardGroup {...args} value={value} onValueChange={onValueChange} />;
|
|
92
92
|
},
|
|
93
|
+
tags: ["visual:check"],
|
|
93
94
|
};
|
|
94
95
|
|
|
95
96
|
export const Uncontrolled: Story = {
|
|
@@ -99,6 +100,7 @@ export const Uncontrolled: Story = {
|
|
|
99
100
|
id: "radio-card-story",
|
|
100
101
|
defaultValue: items[0].value,
|
|
101
102
|
},
|
|
103
|
+
tags: ["visual:check"],
|
|
102
104
|
};
|
|
103
105
|
|
|
104
106
|
const itemsAsChildren: RadioCardGroupItem[] = [
|
|
@@ -171,4 +173,5 @@ export const ItemsAsChildren: Story = {
|
|
|
171
173
|
</RadioCardGroup>
|
|
172
174
|
);
|
|
173
175
|
},
|
|
176
|
+
tags: ["visual:check"],
|
|
174
177
|
};
|