@nation-a/ui 0.11.3 → 0.11.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.
Files changed (21) hide show
  1. package/dist/index.cjs +10 -7
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +10 -7
  4. package/dist/index.js.map +1 -1
  5. package/dist/styled-system/styles.css +10 -6
  6. package/dist/types/components/BottomSheet/index.d.ts +1 -1
  7. package/package.json +1 -1
  8. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/SheetBackdrop.d.ts +0 -0
  9. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/SheetContainer.d.ts +0 -0
  10. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/SheetContent.d.ts +0 -0
  11. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/SheetHeader.d.ts +0 -0
  12. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/SheetScroller.d.ts +0 -0
  13. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/constants.d.ts +0 -0
  14. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/context.d.ts +0 -0
  15. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/hooks.d.ts +0 -0
  16. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/index.d.ts +0 -0
  17. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/sheet.d.ts +0 -0
  18. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/styles.d.ts +0 -0
  19. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/types.d.ts +0 -0
  20. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/use-prevent-scroll.d.ts +0 -0
  21. /package/dist/types/components/BottomSheet/{src → react-modal-sheet}/utils.d.ts +0 -0
@@ -1031,6 +1031,10 @@ html:not(#\#),body:not(#\#) {
1031
1031
  background: var(--colors-surface-layer_1);
1032
1032
  }
1033
1033
 
1034
+ .z_modal:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1035
+ z-index: var(--z-index-modal);
1036
+ }
1037
+
1034
1038
  .h_100\%:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1035
1039
  height: 100%;
1036
1040
  }
@@ -1059,6 +1063,10 @@ html:not(#\#),body:not(#\#) {
1059
1063
  opacity: 0.5;
1060
1064
  }
1061
1065
 
1066
+ .z_overlay:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1067
+ z-index: var(--z-index-overlay);
1068
+ }
1069
+
1062
1070
  .m_15px_auto:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1063
1071
  margin: 15px auto;
1064
1072
  }
@@ -1318,18 +1326,14 @@ html:not(#\#),body:not(#\#) {
1318
1326
  width: 100vw;
1319
1327
  }
1320
1328
 
1321
- .z_overlay:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1322
- z-index: var(--z-index-overlay);
1329
+ .z_popover:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1330
+ z-index: var(--z-index-popover);
1323
1331
  }
1324
1332
 
1325
1333
  .ov_auto:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1326
1334
  overflow: auto;
1327
1335
  }
1328
1336
 
1329
- .z_modal:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1330
- z-index: var(--z-index-modal);
1331
- }
1332
-
1333
1337
  .min-w_xs:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
1334
1338
  min-width: var(--sizes-xs);
1335
1339
  }
@@ -1,5 +1,5 @@
1
1
  import { ComponentProps, ReactNode } from 'react';
2
- import { Sheet } from './src';
2
+ import { Sheet } from './react-modal-sheet';
3
3
  import { BottomSheetVariantProps } from './bottomsheet.recipe';
4
4
  import { HTMLStyledProps } from '../../../styled-system/jsx';
5
5
  export type BottomSheetProps = Omit<ComponentProps<typeof Sheet>, 'children'> & BottomSheetVariantProps & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/ui",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",