@itcase/types 1.0.29 → 1.0.31

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.31](https://github.com/ITCase/itcase-types/compare/v1.0.30...v1.0.31) (2025-08-21)
2
+
3
+ ## [1.0.30](https://github.com/ITCase/itcase-types/compare/v1.0.29...v1.0.30) (2025-08-21)
4
+
1
5
  ## [1.0.29](https://github.com/ITCase/itcase-types/compare/v1.0.28...v1.0.29) (2025-08-21)
2
6
 
3
7
  ## [1.0.28](https://github.com/ITCase/itcase-types/compare/v1.0.27...v1.0.28) (2025-08-21)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -27,5 +27,13 @@ type AppearanceIconSizeKey =
27
27
  | 'size40_24'
28
28
  | 'size40_32'
29
29
  | 'size40_40'
30
+ | 'size48_12'
31
+ | 'size48_14'
32
+ | 'size48_16'
33
+ | 'size48_20'
34
+ | 'size48_24'
35
+ | 'size48_32'
36
+ | 'size48_40'
37
+ | 'size48_48'
30
38
 
31
39
  export type { AppearanceIconSizeKey }
@@ -0,0 +1,26 @@
1
+ const blurProps = [
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 BlurProps = (typeof blurProps)[number]
25
+
26
+ export { blurProps }
@@ -0,0 +1 @@
1
+ export * from './opacity'
package/types/index.ts CHANGED
@@ -2,6 +2,7 @@ export * from './align'
2
2
  export * from './alignment'
3
3
  export * from './appearance'
4
4
  export * from './border'
5
+ export * from './blur'
5
6
  export * from './centering'
6
7
  export * from './colors'
7
8
  export * from './common'