@purpurds/drawer 6.7.1 → 6.8.0
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 +3 -3
- package/package.json +6 -6
- package/src/drawer.stories.tsx +3 -0
package/dist/LICENSE.txt
CHANGED
|
@@ -421,21 +421,21 @@ SOFTWARE.
|
|
|
421
421
|
---
|
|
422
422
|
|
|
423
423
|
Name: @purpurds/button
|
|
424
|
-
Version: 6.7.
|
|
424
|
+
Version: 6.7.2
|
|
425
425
|
License: AGPL-3.0-only
|
|
426
426
|
Private: false
|
|
427
427
|
|
|
428
428
|
---
|
|
429
429
|
|
|
430
430
|
Name: @purpurds/heading
|
|
431
|
-
Version: 6.7.
|
|
431
|
+
Version: 6.7.2
|
|
432
432
|
License: AGPL-3.0-only
|
|
433
433
|
Private: false
|
|
434
434
|
|
|
435
435
|
---
|
|
436
436
|
|
|
437
437
|
Name: @purpurds/icon
|
|
438
|
-
Version: 6.7.
|
|
438
|
+
Version: 6.7.2
|
|
439
439
|
License: AGPL-3.0-only
|
|
440
440
|
Private: false
|
|
441
441
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/drawer",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.8.0",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/drawer.cjs.js",
|
|
6
6
|
"types": "./dist/drawer.d.ts",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"@radix-ui/react-dialog": "~1.1.6",
|
|
19
19
|
"@radix-ui/react-scroll-area": "~1.2.3",
|
|
20
20
|
"classnames": "~2.5.0",
|
|
21
|
-
"@purpurds/
|
|
22
|
-
"@purpurds/icon": "6.
|
|
23
|
-
"@purpurds/
|
|
24
|
-
"@purpurds/
|
|
25
|
-
"@purpurds/
|
|
21
|
+
"@purpurds/button": "6.8.0",
|
|
22
|
+
"@purpurds/icon": "6.8.0",
|
|
23
|
+
"@purpurds/heading": "6.8.0",
|
|
24
|
+
"@purpurds/tokens": "6.8.0",
|
|
25
|
+
"@purpurds/paragraph": "6.8.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@rushstack/eslint-patch": "~1.10.0",
|
package/src/drawer.stories.tsx
CHANGED
|
@@ -89,6 +89,7 @@ const StorybookMultiDrawerTestComponent = () => {
|
|
|
89
89
|
footerContent={<StorybookTestFooterContent />}
|
|
90
90
|
title="This is drawer 1"
|
|
91
91
|
stickyFooter
|
|
92
|
+
zIndex={20}
|
|
92
93
|
>
|
|
93
94
|
<StorybookTestBodyContent />
|
|
94
95
|
</Drawer.Content>
|
|
@@ -116,6 +117,7 @@ const StorybookMultiDrawerTestComponent = () => {
|
|
|
116
117
|
footerContent={<StorybookTestFooterContent />}
|
|
117
118
|
title="This is drawer 2"
|
|
118
119
|
stickyFooter
|
|
120
|
+
zIndex={20}
|
|
119
121
|
>
|
|
120
122
|
<StorybookTestBodyContent />
|
|
121
123
|
</Drawer.Content>
|
|
@@ -143,6 +145,7 @@ const StorybookMultiDrawerTestComponent = () => {
|
|
|
143
145
|
footerContent={<StorybookTestFooterContent />}
|
|
144
146
|
title="This is drawer 3"
|
|
145
147
|
stickyFooter
|
|
148
|
+
zIndex={20}
|
|
146
149
|
>
|
|
147
150
|
<StorybookTestBodyContent />
|
|
148
151
|
</Drawer.Content>
|