@itcase/types 1.0.20 → 1.0.22

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,7 @@
1
+ ## [1.0.22](https://github.com/ITCase/itcase-types/compare/v1.0.21...v1.0.22) (2025-08-14)
2
+
3
+ ## [1.0.21](https://github.com/ITCase/itcase-types/compare/v1.0.20...v1.0.21) (2025-08-14)
4
+
1
5
  ## [1.0.20](https://github.com/ITCase/itcase-types/compare/v1.0.19...v1.0.20) (2025-08-14)
2
6
 
3
7
  ## [1.0.19](https://github.com/ITCase/itcase-types/compare/v1.0.18...v1.0.19) (2025-08-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -12,6 +12,6 @@ const fillSizeProps = [
12
12
  '144',
13
13
  ] as const
14
14
 
15
- export type fillSizeProps = (typeof fillSizeProps)[number]
15
+ export type FillSizeProps = (typeof fillSizeProps)[number]
16
16
 
17
17
  export { fillSizeProps }
package/types/index.ts CHANGED
@@ -6,7 +6,6 @@ export * from './common'
6
6
  export * from './direction'
7
7
  export * from './elevation'
8
8
  export * from './fill'
9
- export * from './svgFill'
10
9
  export * from './height'
11
10
  export * from './item'
12
11
  export * from './justifyContent'
@@ -18,7 +17,9 @@ export * from './size'
18
17
  export * from './stacking'
19
18
  export * from './state'
20
19
  export * from './style'
20
+ export * from './svgFill'
21
21
  export * from './text'
22
+ export * from './title'
22
23
  export * from './underline'
23
24
  export * from './width'
24
25
  export * from './wrap'