@itcase/types 1.0.7 → 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,7 @@
1
+ ## [1.0.9](https://github.com/ITCase/itcase-types/compare/v1.0.8...v1.0.9) (2025-08-13)
2
+
3
+ ## [1.0.8](https://github.com/ITCase/itcase-types/compare/v1.0.7...v1.0.8) (2025-08-13)
4
+
1
5
  ## [1.0.7](https://github.com/ITCase/itcase-types/compare/v1.0.6...v1.0.7) (2025-08-13)
2
6
 
3
7
  ## [1.0.6](https://github.com/ITCase/itcase-types/compare/v1.0.5...v1.0.6) (2025-07-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -33,7 +33,7 @@
33
33
  "@commitlint/cli": "^19.8.1",
34
34
  "@commitlint/config-conventional": "^19.8.1",
35
35
  "@itcase/config": "^1.0.55",
36
- "@itcase/lint": "^1.1.30",
36
+ "@itcase/lint": "^1.1.31",
37
37
  "@semantic-release/changelog": "^6.0.3",
38
38
  "@semantic-release/git": "^10.0.1",
39
39
  "@semantic-release/release-notes-generator": "14.0.3",
@@ -0,0 +1 @@
1
+ export * from './common'
@@ -0,0 +1 @@
1
+ export * from './direction'
@@ -0,0 +1 @@
1
+ export * from './elavation'
@@ -0,0 +1,5 @@
1
+ const heightProps = ['fixed', 'hug', 'fill'] as const
2
+
3
+ export type HeightProps = (typeof heightProps)[number]
4
+
5
+ export { heightProps }
@@ -1,5 +1 @@
1
- const heightProps = ['fixed', 'hug', 'fill'] as const
2
-
3
- export type HeightProps = (typeof heightProps)[number]
4
-
5
- export { heightProps }
1
+ export * from './height'
package/types/index.ts CHANGED
@@ -1,28 +1,24 @@
1
- /**
2
- * directories
3
- */
4
1
  export * from './align'
2
+ export * from './appearance'
5
3
  export * from './border'
4
+ export * from './colors'
5
+ export * from './common'
6
+ export * from './direction'
7
+ export * from './elevation'
6
8
  export * from './fill'
7
- export * from './size'
8
- export * from './state'
9
- export * from './text'
10
-
11
- /**
12
- * files
13
- */
14
- export * from './common/common'
15
- export * from './direction/direction'
16
- export * from './elevation/elevation'
9
+ export * from './svgFill'
17
10
  export * from './height'
18
- export * from './justifyContent/justifyContent'
11
+ export * from './item'
12
+ export * from './justifyContent'
19
13
  export * from './option'
20
- export * from './position/position'
21
- export * from './resizeMode/resizeMode'
14
+ export * from './position'
15
+ export * from './resizeMode'
22
16
  export * from './shape'
23
- export * from './stacking/stacking'
24
- export * from './colors/colorsSvg'
25
- export * from './size/titleSize'
26
- export * from './underline/underline'
17
+ export * from './size'
18
+ export * from './stacking'
19
+ export * from './state'
20
+ export * from './style'
21
+ export * from './text'
22
+ export * from './underline'
27
23
  export * from './width'
28
- export * from './wrap/wrap'
24
+ export * from './wrap'
@@ -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 @@
1
+ export * from './justifyContent'
@@ -0,0 +1 @@
1
+ export * from './option'
@@ -0,0 +1 @@
1
+ export * from './position'
@@ -0,0 +1 @@
1
+ export * from './resizeMode'
@@ -0,0 +1 @@
1
+ export * from './stacking'
@@ -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 }
@@ -0,0 +1 @@
1
+ export * from './underline'
@@ -1,5 +1 @@
1
- const widthProps = ['auto', 'fixed', 'hug', 'fill'] as const
2
-
3
- export type WidthProps = (typeof widthProps)[number]
4
-
5
- export { widthProps }
1
+ export * from './width'
@@ -0,0 +1,5 @@
1
+ const widthProps = ['auto', 'fixed', 'hug', 'fill'] as const
2
+
3
+ export type WidthProps = (typeof widthProps)[number]
4
+
5
+ export { widthProps }
@@ -0,0 +1 @@
1
+ export * from './wrap'
File without changes