@ornikar/kitt-universal 26.1.1 → 26.1.2-canary.b64f7f87b8840a9361f5a873047e62972ede4a21.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 +15 -0
- package/dist/definitions/BottomSheet/BottomSheet.d.ts +4 -0
- package/dist/definitions/BottomSheet/BottomSheet.d.ts.map +1 -1
- package/dist/definitions/BottomSheet/BottomSheet.web.d.ts +4 -0
- package/dist/definitions/BottomSheet/BottomSheet.web.d.ts.map +1 -1
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.d.ts +11 -1
- package/dist/definitions/NavigationBottomSheet/NavigationBottomSheet.d.ts.map +1 -1
- package/dist/definitions/typography/Typography.d.ts +77 -66
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/typography/TypographyLink.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +16 -0
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +16 -0
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +14 -0
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.js +6 -0
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +14 -0
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.mjs +6 -0
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +16 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +6 -0
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +26 -26
|
@@ -3846,6 +3846,11 @@ function BottomSheetComponent() {
|
|
|
3846
3846
|
// noop
|
|
3847
3847
|
return null;
|
|
3848
3848
|
}
|
|
3849
|
+
|
|
3850
|
+
/**
|
|
3851
|
+
* @@internal This component is for kitt-universal internal use only.
|
|
3852
|
+
* Please use `NavigationBottomSheet` instead.
|
|
3853
|
+
*/
|
|
3849
3854
|
const BottomSheet = /*#__PURE__*/forwardRef(BottomSheetComponent);
|
|
3850
3855
|
function NoopComponent() {
|
|
3851
3856
|
return null;
|
|
@@ -12804,6 +12809,7 @@ function TypographyLink({
|
|
|
12804
12809
|
'kitt-universal': 'true'
|
|
12805
12810
|
},
|
|
12806
12811
|
_web: {
|
|
12812
|
+
// @ts-expect-error: This is only used on web where 'not-allowed' and 'pointer' are valid cursor values
|
|
12807
12813
|
cursor: disabled ? 'not-allowed' : 'pointer',
|
|
12808
12814
|
transitionProperty: 'color',
|
|
12809
12815
|
transitionDuration: '0.2s',
|