@itcase/types 1.0.27 → 1.0.29

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.29](https://github.com/ITCase/itcase-types/compare/v1.0.28...v1.0.29) (2025-08-21)
2
+
3
+ ## [1.0.28](https://github.com/ITCase/itcase-types/compare/v1.0.27...v1.0.28) (2025-08-21)
4
+
1
5
  ## [1.0.27](https://github.com/ITCase/itcase-types/compare/v1.0.26...v1.0.27) (2025-08-15)
2
6
 
3
7
  ## [1.0.26](https://github.com/ITCase/itcase-types/compare/v1.0.25...v1.0.26) (2025-08-15)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
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.34",
36
+ "@itcase/lint": "^1.1.37",
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",
@@ -1 +1 @@
1
- export * from './elavation'
1
+ export * from './elevation'
@@ -0,0 +1,15 @@
1
+ const iconFillSizeProps = [
2
+ '12',
3
+ '14',
4
+ '16',
5
+ '20',
6
+ '24',
7
+ '32',
8
+ '40',
9
+ '48',
10
+ ] as const
11
+
12
+ type IconFillSizeProps = (typeof iconFillSizeProps)[number]
13
+
14
+ export { iconFillSizeProps }
15
+ export type { IconFillSizeProps }
@@ -1 +1,2 @@
1
1
  export * from './iconSize'
2
+ export * from './iconFillSize'
package/types/index.ts CHANGED
@@ -2,17 +2,19 @@ export * from './align'
2
2
  export * from './alignment'
3
3
  export * from './appearance'
4
4
  export * from './border'
5
+ export * from './centering'
5
6
  export * from './colors'
6
- export * from './icon'
7
7
  export * from './common'
8
- export * from './centering'
9
8
  export * from './direction'
10
9
  export * from './elevation'
11
10
  export * from './fill'
12
11
  export * from './height'
12
+ export * from './icon'
13
13
  export * from './item'
14
14
  export * from './justifyContent'
15
+ export * from './opacity'
15
16
  export * from './option'
17
+ export * from './overlay'
16
18
  export * from './position'
17
19
  export * from './resizeMode'
18
20
  export * from './shape'
@@ -0,0 +1 @@
1
+ export * from './opacity'
@@ -0,0 +1,26 @@
1
+ const opacityProps = [
2
+ '0',
3
+ '5',
4
+ '10',
5
+ '15',
6
+ '20',
7
+ '25',
8
+ '30',
9
+ '35',
10
+ '40',
11
+ '45',
12
+ '50',
13
+ '55',
14
+ '60',
15
+ '65',
16
+ '75',
17
+ '80',
18
+ '85',
19
+ '90',
20
+ '95',
21
+ '100',
22
+ ] as const
23
+
24
+ export type OpacityProps = (typeof opacityProps)[number]
25
+
26
+ export { opacityProps }
@@ -0,0 +1 @@
1
+ export * from './overlayFill'
@@ -0,0 +1,5 @@
1
+ const overlayFillProps = ['blackout', 'blur'] as const
2
+
3
+ export type OverlayFillProps = (typeof overlayFillProps)[number]
4
+
5
+ export { overlayFillProps }