@itcase/types 1.0.36 → 1.0.38
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/icon/iconFill.ts +57 -0
- package/types/icon/iconFillItem.ts +57 -0
- package/types/icon/index.ts +3 -1
- package/types/text/index.ts +1 -1
- package/types/text/textColorActiveHover.ts +58 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [1.0.38](https://github.com/ITCase/itcase-types/compare/v1.0.37...v1.0.38) (2025-08-22)
|
|
2
|
+
|
|
3
|
+
## [1.0.37](https://github.com/ITCase/itcase-types/compare/v1.0.36...v1.0.37) (2025-08-22)
|
|
4
|
+
|
|
1
5
|
## [1.0.36](https://github.com/ITCase/itcase-types/compare/v1.0.35...v1.0.36) (2025-08-22)
|
|
2
6
|
|
|
3
7
|
## [1.0.35](https://github.com/ITCase/itcase-types/compare/v1.0.34...v1.0.35) (2025-08-22)
|
package/package.json
CHANGED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const iconFillProps = [
|
|
2
|
+
'accentPrimary',
|
|
3
|
+
'accentSecondary',
|
|
4
|
+
'accentTertiary',
|
|
5
|
+
'accentQuaternary',
|
|
6
|
+
|
|
7
|
+
'specialPrimary',
|
|
8
|
+
'specialSecondary',
|
|
9
|
+
'specialTertiary',
|
|
10
|
+
'specialQuaternary',
|
|
11
|
+
|
|
12
|
+
'extraPrimary',
|
|
13
|
+
'extraSecondary',
|
|
14
|
+
'extraTertiary',
|
|
15
|
+
'extraQuaternary',
|
|
16
|
+
|
|
17
|
+
'surfacePrimary',
|
|
18
|
+
'surfaceSecondary',
|
|
19
|
+
'surfaceTertiary',
|
|
20
|
+
'surfaceQuaternary',
|
|
21
|
+
|
|
22
|
+
'errorPrimary',
|
|
23
|
+
'errorSecondary',
|
|
24
|
+
'errorTertiary',
|
|
25
|
+
'errorQuaternary',
|
|
26
|
+
|
|
27
|
+
'warningPrimary',
|
|
28
|
+
'warningSecondary',
|
|
29
|
+
'warningTertiary',
|
|
30
|
+
'warningQuaternary',
|
|
31
|
+
|
|
32
|
+
'successPrimary',
|
|
33
|
+
'successSecondary',
|
|
34
|
+
'successTertiary',
|
|
35
|
+
'successQuaternary',
|
|
36
|
+
|
|
37
|
+
'infoPrimary',
|
|
38
|
+
'infoSecondary',
|
|
39
|
+
'infoTertiary',
|
|
40
|
+
'infoQuaternary',
|
|
41
|
+
|
|
42
|
+
'dangerPrimary',
|
|
43
|
+
'dangerSecondary',
|
|
44
|
+
'dangerTertiary',
|
|
45
|
+
'dangerQuaternary',
|
|
46
|
+
|
|
47
|
+
'disabledPrimary',
|
|
48
|
+
'disabledSecondary',
|
|
49
|
+
'disabledTertiary',
|
|
50
|
+
'disabledQuaternary',
|
|
51
|
+
|
|
52
|
+
'none',
|
|
53
|
+
] as const
|
|
54
|
+
|
|
55
|
+
export type IconFillProps = (typeof iconFillProps)[number]
|
|
56
|
+
|
|
57
|
+
export { iconFillProps }
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const iconFillItemProps = [
|
|
2
|
+
'accentItemPrimary',
|
|
3
|
+
'accentItemSecondary',
|
|
4
|
+
'accentItemTertiary',
|
|
5
|
+
'accentItemQuaternary',
|
|
6
|
+
|
|
7
|
+
'specialItemPrimary',
|
|
8
|
+
'specialItemSecondary',
|
|
9
|
+
'specialItemTertiary',
|
|
10
|
+
'specialItemQuaternary',
|
|
11
|
+
|
|
12
|
+
'extraItemPrimary',
|
|
13
|
+
'extraItemSecondary',
|
|
14
|
+
'extraItemTertiary',
|
|
15
|
+
'extraItemQuaternary',
|
|
16
|
+
|
|
17
|
+
'surfaceItemPrimary',
|
|
18
|
+
'surfaceItemSecondary',
|
|
19
|
+
'surfaceItemTertiary',
|
|
20
|
+
'surfaceItemQuaternary',
|
|
21
|
+
|
|
22
|
+
'errorItemPrimary',
|
|
23
|
+
'errorItemSecondary',
|
|
24
|
+
'errorItemTertiary',
|
|
25
|
+
'errorItemQuaternary',
|
|
26
|
+
|
|
27
|
+
'warningItemPrimary',
|
|
28
|
+
'warningItemSecondary',
|
|
29
|
+
'warningItemTertiary',
|
|
30
|
+
'warningItemQuaternary',
|
|
31
|
+
|
|
32
|
+
'successItemPrimary',
|
|
33
|
+
'successItemSecondary',
|
|
34
|
+
'successItemTertiary',
|
|
35
|
+
'successItemQuaternary',
|
|
36
|
+
|
|
37
|
+
'infoItemPrimary',
|
|
38
|
+
'infoItemSecondary',
|
|
39
|
+
'infoItemTertiary',
|
|
40
|
+
'infoItemQuaternary',
|
|
41
|
+
|
|
42
|
+
'dangerItemPrimary',
|
|
43
|
+
'dangerItemSecondary',
|
|
44
|
+
'dangerItemTertiary',
|
|
45
|
+
'dangerItemQuaternary',
|
|
46
|
+
|
|
47
|
+
'disabledItemPrimary',
|
|
48
|
+
'disabledItemSecondary',
|
|
49
|
+
'disabledItemTertiary',
|
|
50
|
+
'disabledItemQuaternary',
|
|
51
|
+
|
|
52
|
+
'none',
|
|
53
|
+
] as const
|
|
54
|
+
|
|
55
|
+
export type IconFillItemProps = (typeof iconFillItemProps)[number]
|
|
56
|
+
|
|
57
|
+
export { iconFillItemProps }
|
package/types/icon/index.ts
CHANGED
package/types/text/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ export * from './textColor'
|
|
|
3
3
|
export * from './textColorActive'
|
|
4
4
|
export * from './textColorFocus'
|
|
5
5
|
export * from './textColorHover'
|
|
6
|
-
export * from './
|
|
6
|
+
export * from './textColorActiveHover'
|
|
7
7
|
export * from './textSize'
|
|
8
8
|
export * from './textTag'
|
|
9
9
|
export * from './textWeight'
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
const textColorActiveHoverProps = [
|
|
2
|
+
'accentTextActiveHoverPrimary',
|
|
3
|
+
'accentTextActiveHoverSecondary',
|
|
4
|
+
'accentTextActiveHoverTertiary',
|
|
5
|
+
'accentTextActiveHoverQuaternary',
|
|
6
|
+
|
|
7
|
+
'specialTextActiveHoverPrimary',
|
|
8
|
+
'specialTextActiveHoverSecondary',
|
|
9
|
+
'specialTextActiveHoverTertiary',
|
|
10
|
+
'specialTextActiveHoverQuaternary',
|
|
11
|
+
|
|
12
|
+
'extraTextActiveHoverPrimary',
|
|
13
|
+
'extraTextActiveHoverSecondary',
|
|
14
|
+
'extraTextActiveHoverTertiary',
|
|
15
|
+
'extraTextActiveHoverQuaternary',
|
|
16
|
+
|
|
17
|
+
'surfaceTextActiveHoverPrimary',
|
|
18
|
+
'surfaceTextActiveHoverSecondary',
|
|
19
|
+
'surfaceTextActiveHoverTertiary',
|
|
20
|
+
'surfaceTextActiveHoverQuaternary',
|
|
21
|
+
|
|
22
|
+
'errorTextActiveHoverPrimary',
|
|
23
|
+
'errorTextActiveHoverSecondary',
|
|
24
|
+
'errorTextActiveHoverTertiary',
|
|
25
|
+
'errorTextActiveHoverQuaternary',
|
|
26
|
+
|
|
27
|
+
'warningTextActiveHoverPrimary',
|
|
28
|
+
'warningTextActiveHoverSecondary',
|
|
29
|
+
'warningTextActiveHoverTertiary',
|
|
30
|
+
'warningTextActiveHoverQuaternary',
|
|
31
|
+
|
|
32
|
+
'successTextActiveHoverPrimary',
|
|
33
|
+
'successTextActiveHoverSecondary',
|
|
34
|
+
'successTextActiveHoverTertiary',
|
|
35
|
+
'successTextActiveHoverQuaternary',
|
|
36
|
+
|
|
37
|
+
'infoTextActiveHoverPrimary',
|
|
38
|
+
'infoTextActiveHoverSecondary',
|
|
39
|
+
'infoTextActiveHoverTertiary',
|
|
40
|
+
'infoTextActiveHoverQuaternary',
|
|
41
|
+
|
|
42
|
+
'dangerTextActiveHoverPrimary',
|
|
43
|
+
'dangerTextActiveHoverSecondary',
|
|
44
|
+
'dangerTextActiveHoverTertiary',
|
|
45
|
+
'dangerTextActiveHoverQuaternary',
|
|
46
|
+
|
|
47
|
+
'disabledTextActiveHoverPrimary',
|
|
48
|
+
'disabledTextActiveHoverSecondary',
|
|
49
|
+
'disabledTextActiveHoverTertiary',
|
|
50
|
+
'disabledTextActiveHoverQuaternary',
|
|
51
|
+
|
|
52
|
+
'none',
|
|
53
|
+
] as const
|
|
54
|
+
|
|
55
|
+
export type TextColorActiveHoverProps =
|
|
56
|
+
(typeof textColorActiveHoverProps)[number]
|
|
57
|
+
|
|
58
|
+
export { textColorActiveHoverProps }
|