@ornikar/kitt-universal 25.46.1-canary.9950f4eb84cbfcf1d45de4e6c9ad226210c5404f.0 → 25.47.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/CHANGELOG.md +2 -4
- package/dist/definitions/NavigationModal/NavigationModal.d.ts +1 -1
- package/dist/definitions/NavigationModal/NavigationModal.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +4 -2
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +4 -2
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-20.10.cjs.js +4 -2
- package/dist/index-node-20.10.cjs.js.map +1 -1
- package/dist/index-node-20.10.cjs.web.js +4 -2
- package/dist/index-node-20.10.cjs.web.js.map +1 -1
- package/dist/index-node-20.10.es.mjs +4 -2
- package/dist/index-node-20.10.es.mjs.map +1 -1
- package/dist/index-node-20.10.es.web.mjs +4 -2
- package/dist/index-node-20.10.es.web.mjs.map +1 -1
- package/dist/index.es.js +4 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +4 -2
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -11498,7 +11498,8 @@ function NavigationModal({
|
|
|
11498
11498
|
body,
|
|
11499
11499
|
backgroundColor,
|
|
11500
11500
|
footer,
|
|
11501
|
-
header
|
|
11501
|
+
header,
|
|
11502
|
+
contentContainer
|
|
11502
11503
|
}) {
|
|
11503
11504
|
const Component = useBreakpointValue({
|
|
11504
11505
|
base: FullscreenModal,
|
|
@@ -11508,7 +11509,8 @@ function NavigationModal({
|
|
|
11508
11509
|
body: body,
|
|
11509
11510
|
backgroundColor: backgroundColor,
|
|
11510
11511
|
footer: footer,
|
|
11511
|
-
header: header
|
|
11512
|
+
header: header,
|
|
11513
|
+
contentContainer: contentContainer
|
|
11512
11514
|
});
|
|
11513
11515
|
}
|
|
11514
11516
|
function Header(props) {
|