@ornikar/kitt-universal 25.46.1-canary.9950f4eb84cbfcf1d45de4e6c9ad226210c5404f.0 → 25.47.1-canary.b2da84e20f1b1e29820cff435e8a0ded02e51385.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 +11 -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 +6 -2
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +6 -2
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-20.10.cjs.js +6 -2
- package/dist/index-node-20.10.cjs.js.map +1 -1
- package/dist/index-node-20.10.cjs.web.js +6 -2
- package/dist/index-node-20.10.cjs.web.js.map +1 -1
- package/dist/index-node-20.10.es.mjs +6 -2
- package/dist/index-node-20.10.es.mjs.map +1 -1
- package/dist/index-node-20.10.es.web.mjs +6 -2
- package/dist/index-node-20.10.es.web.mjs.map +1 -1
- package/dist/index.es.js +8 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +8 -2
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -11517,7 +11517,10 @@ function NavigationModal({
|
|
|
11517
11517
|
body,
|
|
11518
11518
|
backgroundColor,
|
|
11519
11519
|
footer,
|
|
11520
|
-
header
|
|
11520
|
+
header,
|
|
11521
|
+
contentContainer = ({
|
|
11522
|
+
children
|
|
11523
|
+
}) => children
|
|
11521
11524
|
}) {
|
|
11522
11525
|
const Component = useBreakpointValue({
|
|
11523
11526
|
base: FullscreenModal,
|
|
@@ -11527,7 +11530,8 @@ function NavigationModal({
|
|
|
11527
11530
|
body: body,
|
|
11528
11531
|
backgroundColor: backgroundColor,
|
|
11529
11532
|
footer: footer,
|
|
11530
|
-
header: header
|
|
11533
|
+
header: header,
|
|
11534
|
+
contentContainer: contentContainer
|
|
11531
11535
|
});
|
|
11532
11536
|
}
|
|
11533
11537
|
function Header(props) {
|