@itcase/types 1.0.8 → 1.0.9

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 CHANGED
@@ -1,3 +1,5 @@
1
+ ## [1.0.9](https://github.com/ITCase/itcase-types/compare/v1.0.8...v1.0.9) (2025-08-13)
2
+
1
3
  ## [1.0.8](https://github.com/ITCase/itcase-types/compare/v1.0.7...v1.0.8) (2025-08-13)
2
4
 
3
5
  ## [1.0.7](https://github.com/ITCase/itcase-types/compare/v1.0.6...v1.0.7) (2025-08-13)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
package/types/index.ts CHANGED
@@ -6,6 +6,7 @@ export * from './common'
6
6
  export * from './direction'
7
7
  export * from './elevation'
8
8
  export * from './fill'
9
+ export * from './svgFill'
9
10
  export * from './height'
10
11
  export * from './item'
11
12
  export * from './justifyContent'
@@ -1 +1 @@
1
- export * from './item'
1
+ export * from './itemFill'
@@ -1,4 +1,4 @@
1
- const itemProps = [
1
+ const itemFillProps = [
2
2
  'accentItemPrimary',
3
3
  'accentItemSecondary',
4
4
  'accentItemTertiary',
@@ -52,6 +52,6 @@ const itemProps = [
52
52
  'none',
53
53
  ] as const
54
54
 
55
- export type ItemProps = (typeof itemProps)[number]
55
+ export type ItemFillProps = (typeof itemFillProps)[number]
56
56
 
57
- export { itemProps }
57
+ export { itemFillProps }
@@ -0,0 +1,2 @@
1
+ export * from './svgFill'
2
+ export * from './svgFillItem'
@@ -0,0 +1,7 @@
1
+ import { fillProps } from '../fill'
2
+
3
+ const svgFillProps = [...fillProps] as const
4
+
5
+ export type SvgFillProps = (typeof svgFillProps)[number]
6
+
7
+ export { svgFillProps }
@@ -0,0 +1,7 @@
1
+ import { itemFillProps } from '../item'
2
+
3
+ const svgFillItemProps = [...itemFillProps] as const
4
+
5
+ export type SvgFillItemProps = (typeof svgFillItemProps)[number]
6
+
7
+ export { svgFillItemProps }