@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 +4 -0
- package/package.json +2 -2
- package/types/common/index.ts +1 -0
- package/types/direction/index.ts +1 -0
- package/types/elevation/index.ts +1 -0
- package/types/height/height.ts +5 -0
- package/types/height/index.ts +1 -5
- package/types/index.ts +17 -21
- package/types/item/index.ts +1 -1
- package/types/item/{item.ts → itemFill.ts} +3 -3
- package/types/justifyContent/index.ts +1 -0
- package/types/option/index.ts +1 -0
- package/types/position/index.ts +1 -0
- package/types/resizeMode/index.ts +1 -0
- package/types/stacking/index.ts +1 -0
- package/types/svgFill/index.ts +2 -0
- package/types/svgFill/svgFill.ts +7 -0
- package/types/svgFill/svgFillItem.ts +7 -0
- package/types/underline/index.ts +1 -0
- package/types/width/index.ts +1 -5
- package/types/width/width.ts +5 -0
- package/types/wrap/index.ts +1 -0
- /package/types/{option.ts → option/option.ts} +0 -0
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.
|
|
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.
|
|
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'
|
package/types/height/index.ts
CHANGED
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 './
|
|
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 './
|
|
11
|
+
export * from './item'
|
|
12
|
+
export * from './justifyContent'
|
|
19
13
|
export * from './option'
|
|
20
|
-
export * from './position
|
|
21
|
-
export * from './resizeMode
|
|
14
|
+
export * from './position'
|
|
15
|
+
export * from './resizeMode'
|
|
22
16
|
export * from './shape'
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './
|
|
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
|
|
24
|
+
export * from './wrap'
|
package/types/item/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './itemFill'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
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
|
|
55
|
+
export type ItemFillProps = (typeof itemFillProps)[number]
|
|
56
56
|
|
|
57
|
-
export {
|
|
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 @@
|
|
|
1
|
+
export * from './underline'
|
package/types/width/index.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './wrap'
|
|
File without changes
|