@ornikar/kitt-universal 31.1.2-canary.b586e0e9612495f8597e9c4be7d2c5a28baa9437.0 → 31.2.1-canary.338c0e3dad9e12a43d9c58a1a2e846e1df8c075b.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 +16 -3
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts +4 -0
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts.map +1 -0
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts +1 -0
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +3 -5
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +3 -5
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +3 -5
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +8 -0
- package/dist/index-node-22.17.cjs.web.js +73 -149
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +3 -5
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +8 -0
- package/dist/index-node-22.17.es.web.mjs +73 -149
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +3 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +88 -163
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +8 -0
- package/dist/tsbuildinfo +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,17 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [31.1
|
|
6
|
+
## [31.2.1-canary.338c0e3dad9e12a43d9c58a1a2e846e1df8c075b.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@31.2.0...@ornikar/kitt-universal@31.2.1-canary.338c0e3dad9e12a43d9c58a1a2e846e1df8c075b.0) (2025-12-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* remove linaria usage OSE-18326 ([#2777](https://github.com/ornikar/kitt/issues/2777)) ([41567b1](https://github.com/ornikar/kitt/commit/41567b14441252efcf60de7c89cd0908ed9bc141))
|
|
12
|
+
* update deps ([589210b](https://github.com/ornikar/kitt/commit/589210bedfc790971e57790bb808f7402ca8292b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [31.2.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@31.1.1...@ornikar/kitt-universal@31.2.0) (2025-11-26)
|
|
7
17
|
|
|
8
18
|
|
|
9
19
|
### Features
|
|
10
20
|
|
|
11
|
-
* fix kitt-hover classname targetting ([b586e0e](https://github.com/ornikar/kitt/commit/b586e0e9612495f8597e9c4be7d2c5a28baa9437))
|
|
12
21
|
* **kitt-universal/Button:** add timer gauge option OSE-21414 ([#2771](https://github.com/ornikar/kitt/issues/2771)) ([c1f1e27](https://github.com/ornikar/kitt/commit/c1f1e27fe5dd78718338bab01178bca075c4ae07))
|
|
13
|
-
* remove linaria usage OSE-18326 ([31eec21](https://github.com/ornikar/kitt/commit/31eec21cbe0c2b92255fb1fa14d83757a05ea8b0))
|
|
14
22
|
* upgrade RTL [OSE-18110] ([#2769](https://github.com/ornikar/kitt/issues/2769)) ([56bcbe4](https://github.com/ornikar/kitt/commit/56bcbe4d1933bb4ae099f85b546790ba537d18f7))
|
|
15
23
|
|
|
16
24
|
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **card-modal:** revert remove linaria from card modal OSE-21655 ([#2774](https://github.com/ornikar/kitt/issues/2774)) ([de7c058](https://github.com/ornikar/kitt/commit/de7c058a9b5e228f39de923d7d28e48deb0bb466))
|
|
28
|
+
|
|
29
|
+
|
|
17
30
|
|
|
18
31
|
## [31.1.1](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@31.1.0...@ornikar/kitt-universal@31.1.1) (2025-11-24)
|
|
19
32
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
2
|
+
import type { CardModalAnimationProps } from './CardModalAnimation';
|
|
3
|
+
export declare function CardModalAnimation({ children, appear, visible, unmountOnExit, isAnimationEnabled, onEnter, onEntered, onExit, onExited, onClose, ...props }: CardModalAnimationProps): ReactNode;
|
|
4
|
+
//# sourceMappingURL=CardModalAnimation.web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardModalAnimation.web.d.ts","sourceRoot":"","sources":["../../../../src/CardModal/CardModalAnimation/CardModalAnimation.web.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAU,MAAM,OAAO,CAAC;AAW/C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAiEpE,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,MAAa,EACb,OAAO,EACP,aAAoB,EACpB,kBAAyB,EACzB,OAAO,EACP,SAAS,EACT,MAAM,EACN,QAAQ,EACR,OAAO,EACP,GAAG,KAAK,EACT,EAAE,uBAAuB,GAAG,SAAS,CA0CrC"}
|
|
@@ -2,6 +2,7 @@ import type { ReactNode } from 'react';
|
|
|
2
2
|
import type { CardModalAnimationProps } from './CardModalAnimation';
|
|
3
3
|
export interface NativeRotationAnimationProps {
|
|
4
4
|
children: ReactNode;
|
|
5
|
+
topInset?: number;
|
|
5
6
|
visible?: CardModalAnimationProps['visible'];
|
|
6
7
|
onEntered?: CardModalAnimationProps['onEntered'];
|
|
7
8
|
onExited: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NativeRotationAnimation.d.ts","sourceRoot":"","sources":["../../../../src/CardModal/CardModalAnimation/NativeRotationAnimation.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAEpE,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,CAAC,EAAE,uBAAuB,CAAC,SAAS,CAAC,CAAC;IAC7C,SAAS,CAAC,EAAE,uBAAuB,CAAC,WAAW,CAAC,CAAC;IACjD,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,wBAAgB,uBAAuB,CAAC,EACtC,OAAO,EACP,QAAQ,EACR,SAAS,EACT,QAAQ,GACT,EAAE,4BAA4B,GAAG,SAAS,CAsC1C"}
|
|
1
|
+
{"version":3,"file":"NativeRotationAnimation.d.ts","sourceRoot":"","sources":["../../../../src/CardModal/CardModalAnimation/NativeRotationAnimation.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAEpE,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,uBAAuB,CAAC,SAAS,CAAC,CAAC;IAC7C,SAAS,CAAC,EAAE,uBAAuB,CAAC,WAAW,CAAC,CAAC;IACjD,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,wBAAgB,uBAAuB,CAAC,EACtC,OAAO,EACP,QAAQ,EACR,SAAS,EACT,QAAQ,GACT,EAAE,4BAA4B,GAAG,SAAS,CAsC1C"}
|
|
@@ -4391,7 +4391,7 @@ function NativeOpacityAnimation$2({
|
|
|
4391
4391
|
runOnJS(handleAnimationFinished)();
|
|
4392
4392
|
})
|
|
4393
4393
|
};
|
|
4394
|
-
}
|
|
4394
|
+
});
|
|
4395
4395
|
return /*#__PURE__*/jsx(Animated.View, {
|
|
4396
4396
|
style: [StyleSheet.absoluteFillObject, opacityStyle],
|
|
4397
4397
|
children: children
|
|
@@ -4446,11 +4446,9 @@ function NativeRotationAnimation$1({
|
|
|
4446
4446
|
rotateZ: `${rotation.value}deg`
|
|
4447
4447
|
}]
|
|
4448
4448
|
};
|
|
4449
|
-
}
|
|
4449
|
+
});
|
|
4450
4450
|
return /*#__PURE__*/jsx(Animated.View, {
|
|
4451
|
-
style: [
|
|
4452
|
-
flexShrink: 1
|
|
4453
|
-
}, animatedStyle],
|
|
4451
|
+
style: [animatedStyle],
|
|
4454
4452
|
children: children
|
|
4455
4453
|
});
|
|
4456
4454
|
}
|