@itcase/types 1.0.34 → 1.0.36
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 +1 -1
- package/types/appearance/index.ts +25 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [1.0.36](https://github.com/ITCase/itcase-types/compare/v1.0.35...v1.0.36) (2025-08-22)
|
|
2
|
+
|
|
3
|
+
## [1.0.35](https://github.com/ITCase/itcase-types/compare/v1.0.34...v1.0.35) (2025-08-22)
|
|
4
|
+
|
|
1
5
|
## [1.0.34](https://github.com/ITCase/itcase-types/compare/v1.0.33...v1.0.34) (2025-08-22)
|
|
2
6
|
|
|
3
7
|
## [1.0.33](https://github.com/ITCase/itcase-types/compare/v1.0.32...v1.0.33) (2025-08-21)
|
package/package.json
CHANGED
|
@@ -11,6 +11,25 @@ type AppearanceSizeKey = `size${Uppercase<SizeProps>}`
|
|
|
11
11
|
type AppearanceSizePxKey = `size${Uppercase<SizePXProps>}`
|
|
12
12
|
type AppearanceStyleKey = StyleProps
|
|
13
13
|
|
|
14
|
+
// key: surfacePrimary
|
|
15
|
+
type CompositeAppearanceDefaultKey = AppearanceKeysDefault
|
|
16
|
+
|
|
17
|
+
// key: surfacePrimary sizeXL
|
|
18
|
+
type CompositeAppearanceDefaultSizeKey =
|
|
19
|
+
`${AppearanceKeysDefault} ${AppearanceSizeKey}`
|
|
20
|
+
|
|
21
|
+
// key: surfacePrimary sizeXL solid
|
|
22
|
+
type CompositeAppearanceDefaultSizeStyleKey =
|
|
23
|
+
`${AppearanceKeysDefault} ${AppearanceSizeKey} ${AppearanceStyleKey}`
|
|
24
|
+
|
|
25
|
+
// key: surfacePrimary sizeXL rounded
|
|
26
|
+
type CompositeAppearanceDefaultSizeShapeKey =
|
|
27
|
+
`${AppearanceKeysDefault} ${AppearanceSizeKey} ${AppearanceShapeKey}`
|
|
28
|
+
|
|
29
|
+
// key: surfacePrimary solid rounded
|
|
30
|
+
type CompositeAppearanceDefaultStyleShapeKey =
|
|
31
|
+
`${AppearanceKeysDefault} ${AppearanceStyleKey} ${AppearanceShapeKey}`
|
|
32
|
+
|
|
14
33
|
type CompositeAppearanceKey =
|
|
15
34
|
| `${AppearanceKeysDefault} ${AppearanceSizeKey} ${AppearanceStyleKey} ${AppearanceShapeKey}`
|
|
16
35
|
| `${AppearanceKeysDefault} ${AppearanceSizeKey} ${AppearanceStyleKey}`
|
|
@@ -46,8 +65,14 @@ export type {
|
|
|
46
65
|
AppearanceOverlayKey,
|
|
47
66
|
AppearanceShapeKey,
|
|
48
67
|
AppearanceSizeKey,
|
|
68
|
+
AppearanceSizePxKey,
|
|
49
69
|
AppearanceStateKeysDefault,
|
|
50
70
|
AppearanceStyleKey,
|
|
71
|
+
CompositeAppearanceDefaultKey,
|
|
72
|
+
CompositeAppearanceDefaultSizeKey,
|
|
73
|
+
CompositeAppearanceDefaultSizeStyleKey,
|
|
74
|
+
CompositeAppearanceDefaultSizeShapeKey,
|
|
75
|
+
CompositeAppearanceDefaultStyleShapeKey,
|
|
51
76
|
CompositeAppearanceIconKeys,
|
|
52
77
|
CompositeAppearanceKey,
|
|
53
78
|
CompositeAppearanceResponseKeys,
|