@ornikar/bumper 2.8.1-canary.1769097215.7fc3e9ff2b0953e9a87e03c82c8c53bde5edda3a.0 → 2.9.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 -1
- package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts +8 -0
- package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts.map +1 -0
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/shared/storybook/helpers/argsHelpers.ts +47 -0
- package/src/system/content/icon/Icon.stories.tsx +3 -22
- package/src/system/content/typography/Typography.stories.tsx +2 -22
- package/src/system/content/typography/TypographyIcon.stories.tsx +2 -19
- package/src/system/content/typography/TypographyLink.stories.tsx +2 -22
- package/src/system/core/primitives/Center.stories.tsx +5 -88
- package/src/system/core/primitives/Image/Image.stories.tsx +3 -8
- package/src/system/core/primitives/Pressable.stories.tsx +3 -52
- package/src/system/core/primitives/ScrollView/ScrollView.stories.tsx +2 -5
- package/src/system/core/primitives/Stack.stories.tsx +3 -38
- package/src/system/core/primitives/View.stories.tsx +6 -107
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [2.
|
|
6
|
+
## [2.9.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.8.0...@ornikar/bumper@2.9.0) (2026-01-27)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
@@ -14,6 +14,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
14
14
|
* **bumper:** create Icon component OSE-22651 ([#2850](https://github.com/ornikar/kitt/issues/2850)) ([badab32](https://github.com/ornikar/kitt/commit/badab3252d3ed42a97dafa5084baca4c4c34c24b))
|
|
15
15
|
* **bumper:** create TypographyIcon OSE-22633 ([#2855](https://github.com/ornikar/kitt/issues/2855)) ([297fe14](https://github.com/ornikar/kitt/commit/297fe148e19d80fa39a225fff62279ba901bc876))
|
|
16
16
|
* **bumper:** create TypographyLink OSE-22634 ([#2857](https://github.com/ornikar/kitt/issues/2857)) ([0ada312](https://github.com/ornikar/kitt/commit/0ada312fd3b1c6c5a5b2ae9f117bdd3e9d4fea63))
|
|
17
|
+
* **bumper:** shared argTypes [OSE-22659] ([#2859](https://github.com/ornikar/kitt/issues/2859)) ([e0d7b77](https://github.com/ornikar/kitt/commit/e0d7b77f2563649a1e4c140a1067a734accd71cf))
|
|
17
18
|
|
|
18
19
|
|
|
19
20
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ArgTypes } from '@storybook/react';
|
|
2
|
+
export declare const backgroundColorArgType: ArgTypes[string];
|
|
3
|
+
export declare const spaceArgType: ArgTypes[string];
|
|
4
|
+
export declare const sizeArgType: ArgTypes[string];
|
|
5
|
+
export declare const radiusArgType: ArgTypes[string];
|
|
6
|
+
export declare const contentColorArgType: ArgTypes[string];
|
|
7
|
+
export declare const borderColorArgType: ArgTypes[string];
|
|
8
|
+
//# sourceMappingURL=argsHelpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"argsHelpers.d.ts","sourceRoot":"","sources":["../../../../../src/shared/storybook/helpers/argsHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAYjD,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAInD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,QAAQ,CAAC,MAAM,CAIzC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,QAAQ,CAAC,MAAM,CAIxC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,QAAQ,CAAC,MAAM,CAI1C,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAIhD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,QAAQ,CAAC,MAAM,CAI/C,CAAC"}
|