@purpurds/radio-card-group 5.27.3 → 5.27.5

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",
3
+ "version": "5.27.5",
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.3",
20
- "@purpurds/paragraph": "5.27.3",
21
- "@purpurds/tokens": "5.27.3",
22
- "@purpurds/skeleton": "5.27.3"
19
+ "@purpurds/skeleton": "5.27.5",
20
+ "@purpurds/heading": "5.27.5",
21
+ "@purpurds/paragraph": "5.27.5",
22
+ "@purpurds/tokens": "5.27.5"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@rushstack/eslint-patch": "~1.10.0",
@@ -44,10 +44,10 @@
44
44
  "typescript": "^5.6.3",
45
45
  "vite": "5.4.8",
46
46
  "vitest": "^2.1.2",
47
- "@purpurds/button": "5.27.3",
48
- "@purpurds/grid": "5.27.3",
49
- "@purpurds/badge": "5.27.3",
50
- "@purpurds/text-field": "5.27.3",
47
+ "@purpurds/badge": "5.27.5",
48
+ "@purpurds/button": "5.27.5",
49
+ "@purpurds/grid": "5.27.5",
50
+ "@purpurds/text-field": "5.27.5",
51
51
  "@purpurds/component-rig": "1.0.0"
52
52
  },
53
53
  "scripts": {
@@ -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
  };