@purpurds/toggle 5.27.3 → 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/toggle",
3
- "version": "5.27.3",
3
+ "version": "5.27.4",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/toggle.cjs.js",
6
6
  "types": "./dist/toggle.d.ts",
@@ -16,10 +16,10 @@
16
16
  "dependencies": {
17
17
  "@radix-ui/react-switch": "~1.0.3",
18
18
  "classnames": "~2.5.0",
19
- "@purpurds/label": "5.27.3",
20
- "@purpurds/paragraph": "5.27.3",
21
- "@purpurds/tokens": "5.27.3",
22
- "@purpurds/icon": "5.27.3"
19
+ "@purpurds/paragraph": "5.27.4",
20
+ "@purpurds/icon": "5.27.4",
21
+ "@purpurds/tokens": "5.27.4",
22
+ "@purpurds/label": "5.27.4"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@rushstack/eslint-patch": "~1.10.0",
@@ -63,6 +63,7 @@ export const Controlled: Story = {
63
63
 
64
64
  return <Toggle {...args} onChange={setChecked} checked={checked} />;
65
65
  },
66
+ tags: ["visual:check"],
66
67
  };
67
68
 
68
69
  export const Uncontrolled: Story = {
@@ -125,4 +126,5 @@ _NOTE: do not use toggles instead of checkboxes or radio buttons!_`,
125
126
  ],
126
127
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
127
128
  render: ({ onChange: _onChange, checked: _checked, ...args }) => <Toggle {...args} />,
129
+ tags: ["visual:check"],
128
130
  };