@purpurds/modal 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 +7 -7
- package/dist/modal.cjs.js +11 -11
- package/dist/modal.cjs.js.map +1 -1
- package/dist/modal.es.js +527 -533
- package/dist/modal.es.js.map +1 -1
- package/package.json +9 -9
- package/src/modal.stories.tsx +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/modal",
|
|
3
|
-
"version": "5.27.
|
|
3
|
+
"version": "5.27.4",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/modal.cjs.js",
|
|
6
6
|
"types": "./dist/modal.d.ts",
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@radix-ui/react-dialog": "~1.0.5",
|
|
18
18
|
"classnames": "~2.5.0",
|
|
19
|
-
"@purpurds/button": "5.27.
|
|
20
|
-
"@purpurds/
|
|
21
|
-
"@purpurds/
|
|
22
|
-
"@purpurds/
|
|
23
|
-
"@purpurds/
|
|
24
|
-
"@purpurds/
|
|
25
|
-
"@purpurds/
|
|
26
|
-
"@purpurds/
|
|
19
|
+
"@purpurds/button": "5.27.4",
|
|
20
|
+
"@purpurds/paragraph": "5.27.4",
|
|
21
|
+
"@purpurds/icon": "5.27.4",
|
|
22
|
+
"@purpurds/heading": "5.27.4",
|
|
23
|
+
"@purpurds/tokens": "5.27.4",
|
|
24
|
+
"@purpurds/visually-hidden": "5.27.4",
|
|
25
|
+
"@purpurds/notification": "5.27.4",
|
|
26
|
+
"@purpurds/text-spacing": "5.27.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@rushstack/eslint-patch": "~1.10.0",
|
package/src/modal.stories.tsx
CHANGED
|
@@ -156,6 +156,7 @@ export const Showcase: Story = {
|
|
|
156
156
|
</div>
|
|
157
157
|
);
|
|
158
158
|
},
|
|
159
|
+
tags: ["visual:check"],
|
|
159
160
|
};
|
|
160
161
|
|
|
161
162
|
export const ModalContentWithImage: Story = {
|
|
@@ -239,6 +240,7 @@ export const ModalContentWithImage: Story = {
|
|
|
239
240
|
</div>
|
|
240
241
|
);
|
|
241
242
|
},
|
|
243
|
+
tags: ["visual:check"],
|
|
242
244
|
};
|
|
243
245
|
|
|
244
246
|
export const ModalContentWithNotification: Story = {
|
|
@@ -279,6 +281,7 @@ export const ModalContentWithNotification: Story = {
|
|
|
279
281
|
</div>
|
|
280
282
|
);
|
|
281
283
|
},
|
|
284
|
+
tags: ["visual:check"],
|
|
282
285
|
};
|
|
283
286
|
|
|
284
287
|
export const ModalContentWithCustomIcon: Story = {
|
|
@@ -313,4 +316,5 @@ export const ModalContentWithCustomIcon: Story = {
|
|
|
313
316
|
</Modal>
|
|
314
317
|
</div>
|
|
315
318
|
),
|
|
319
|
+
tags: ["visual:check"],
|
|
316
320
|
};
|