@itcase/types 1.0.10 → 1.0.11
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 +2 -0
- package/package.json +1 -1
- package/types/colors/index.ts +4 -4
- package/types/state/index.ts +0 -1
- package/types/state/state.ts +1 -1
- package/types/text/index.ts +0 -2
- package/types/colors/colorsSvg.ts +0 -7
- package/types/state/stateKeys.ts +0 -11
- package/types/text/textColorActive.ts +0 -40
- package/types/text/textColorHover.ts +0 -40
- /package/types/colors/{active.ts → colorsActive.ts} +0 -0
- /package/types/colors/{disabled.ts → colorsDisabled.ts} +0 -0
- /package/types/colors/{focus.ts → colorsFocus.ts} +0 -0
- /package/types/colors/{hover.ts → colorsHover.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [1.0.11](https://github.com/ITCase/itcase-types/compare/v1.0.10...v1.0.11) (2025-08-13)
|
|
2
|
+
|
|
1
3
|
## [1.0.10](https://github.com/ITCase/itcase-types/compare/v1.0.9...v1.0.10) (2025-08-13)
|
|
2
4
|
|
|
3
5
|
## [1.0.9](https://github.com/ITCase/itcase-types/compare/v1.0.8...v1.0.9) (2025-08-13)
|
package/package.json
CHANGED
package/types/colors/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
1
|
+
export * from './colorsActive'
|
|
2
|
+
export * from './colorsDisabled'
|
|
3
|
+
export * from './colorsFocus'
|
|
4
|
+
export * from './colorsHover'
|
package/types/state/index.ts
CHANGED
package/types/state/state.ts
CHANGED
package/types/text/index.ts
CHANGED
package/types/state/stateKeys.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const textColorActiveProps = [
|
|
2
|
-
'accentTextPrimary',
|
|
3
|
-
'accentTextSecondary',
|
|
4
|
-
'accentTextTertiary',
|
|
5
|
-
|
|
6
|
-
'primaryTextPrimary',
|
|
7
|
-
'primaryTextSecondary',
|
|
8
|
-
'primaryTextTertiary',
|
|
9
|
-
|
|
10
|
-
'secondaryTextPrimary',
|
|
11
|
-
'secondaryTextSecondary',
|
|
12
|
-
'secondaryTextTertiary',
|
|
13
|
-
|
|
14
|
-
'tertiaryTextPrimary',
|
|
15
|
-
'tertiaryTextSecondary',
|
|
16
|
-
|
|
17
|
-
'surfaceTextAccent',
|
|
18
|
-
'surfaceTextActive',
|
|
19
|
-
'surfaceTextDisabled',
|
|
20
|
-
'surfaceTextFocus',
|
|
21
|
-
'surfaceTextHover',
|
|
22
|
-
'surfaceTextInverse',
|
|
23
|
-
'surfaceTextPrimary',
|
|
24
|
-
'surfaceTextQuaternary',
|
|
25
|
-
'surfaceTextSecondary',
|
|
26
|
-
'surfaceTextTertiary',
|
|
27
|
-
|
|
28
|
-
'errorTextPrimary',
|
|
29
|
-
'errorTextSecondary',
|
|
30
|
-
|
|
31
|
-
'successTextPrimary',
|
|
32
|
-
'successTextSecondary',
|
|
33
|
-
|
|
34
|
-
'dangerTextPrimary',
|
|
35
|
-
'dangerTextSecondary',
|
|
36
|
-
] as const
|
|
37
|
-
|
|
38
|
-
export type TextColorActiveProps = (typeof textColorActiveProps)[number]
|
|
39
|
-
|
|
40
|
-
export { textColorActiveProps }
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const textColorHoverProps = [
|
|
2
|
-
'accentTextPrimary',
|
|
3
|
-
'accentTextSecondary',
|
|
4
|
-
'accentTextTertiary',
|
|
5
|
-
|
|
6
|
-
'primaryTextPrimary',
|
|
7
|
-
'primaryTextSecondary',
|
|
8
|
-
'primaryTextTertiary',
|
|
9
|
-
|
|
10
|
-
'secondaryTextPrimary',
|
|
11
|
-
'secondaryTextSecondary',
|
|
12
|
-
'secondaryTextTertiary',
|
|
13
|
-
|
|
14
|
-
'tertiaryTextPrimary',
|
|
15
|
-
'tertiaryTextSecondary',
|
|
16
|
-
|
|
17
|
-
'surfaceTextAccent',
|
|
18
|
-
'surfaceTextActive',
|
|
19
|
-
'surfaceTextDisabled',
|
|
20
|
-
'surfaceTextFocus',
|
|
21
|
-
'surfaceTextHover',
|
|
22
|
-
'surfaceTextInverse',
|
|
23
|
-
'surfaceTextPrimary',
|
|
24
|
-
'surfaceTextQuaternary',
|
|
25
|
-
'surfaceTextSecondary',
|
|
26
|
-
'surfaceTextTertiary',
|
|
27
|
-
|
|
28
|
-
'errorTextPrimary',
|
|
29
|
-
'errorTextSecondary',
|
|
30
|
-
|
|
31
|
-
'successTextPrimary',
|
|
32
|
-
'successTextSecondary',
|
|
33
|
-
|
|
34
|
-
'dangerTextPrimary',
|
|
35
|
-
'dangerTextSecondary',
|
|
36
|
-
] as const
|
|
37
|
-
|
|
38
|
-
export type TextColorHoverProps = (typeof textColorHoverProps)[number]
|
|
39
|
-
|
|
40
|
-
export { textColorHoverProps }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|