@itcase/types 1.0.7 → 1.0.8

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.8](https://github.com/ITCase/itcase-types/compare/v1.0.7...v1.0.8) (2025-08-13)
2
+
1
3
  ## [1.0.7](https://github.com/ITCase/itcase-types/compare/v1.0.6...v1.0.7) (2025-08-13)
2
4
 
3
5
  ## [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.8",
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,23 @@
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'
17
9
  export * from './height'
18
- export * from './justifyContent/justifyContent'
10
+ export * from './item'
11
+ export * from './justifyContent'
19
12
  export * from './option'
20
- export * from './position/position'
21
- export * from './resizeMode/resizeMode'
13
+ export * from './position'
14
+ export * from './resizeMode'
22
15
  export * from './shape'
23
- export * from './stacking/stacking'
24
- export * from './colors/colorsSvg'
25
- export * from './size/titleSize'
26
- export * from './underline/underline'
16
+ export * from './size'
17
+ export * from './stacking'
18
+ export * from './state'
19
+ export * from './style'
20
+ export * from './text'
21
+ export * from './underline'
27
22
  export * from './width'
28
- export * from './wrap/wrap'
23
+ export * from './wrap'
@@ -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 @@
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