@purpurds/drawer 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/dist/LICENSE.txt +5 -5
- package/dist/drawer.cjs.js +10 -10
- package/dist/drawer.cjs.js.map +1 -1
- package/dist/drawer.es.js +622 -632
- package/dist/drawer.es.js.map +1 -1
- package/package.json +6 -6
- package/src/drawer.stories.tsx +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/drawer",
|
|
3
|
-
"version": "5.27.
|
|
3
|
+
"version": "5.27.4",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/drawer.cjs.js",
|
|
6
6
|
"types": "./dist/drawer.d.ts",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"@radix-ui/react-dialog": "~1.0.5",
|
|
18
18
|
"@radix-ui/react-scroll-area": "~1.0.5",
|
|
19
19
|
"classnames": "~2.5.0",
|
|
20
|
-
"@purpurds/button": "5.27.
|
|
21
|
-
"@purpurds/paragraph": "5.27.
|
|
22
|
-
"@purpurds/
|
|
23
|
-
"@purpurds/
|
|
24
|
-
"@purpurds/
|
|
20
|
+
"@purpurds/button": "5.27.4",
|
|
21
|
+
"@purpurds/paragraph": "5.27.4",
|
|
22
|
+
"@purpurds/icon": "5.27.4",
|
|
23
|
+
"@purpurds/heading": "5.27.4",
|
|
24
|
+
"@purpurds/tokens": "5.27.4"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@rushstack/eslint-patch": "~1.10.0",
|
package/src/drawer.stories.tsx
CHANGED
|
@@ -196,6 +196,7 @@ export const ShowcaseForDrawer: DrawerStory = {
|
|
|
196
196
|
render: () => {
|
|
197
197
|
return <StorybookMultiDrawerTestComponent />;
|
|
198
198
|
},
|
|
199
|
+
tags: ["visual:check"],
|
|
199
200
|
};
|
|
200
201
|
|
|
201
202
|
type DrawerContentStory = StoryObj<typeof DrawerContent>;
|
|
@@ -239,4 +240,5 @@ export const ShowcaseForDrawerContent: DrawerContentStory = {
|
|
|
239
240
|
</div>
|
|
240
241
|
);
|
|
241
242
|
},
|
|
243
|
+
tags: ["visual:check"],
|
|
242
244
|
};
|