@itcase/types 1.0.0 → 1.0.2
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 +12 -0
- package/package.json +1 -1
- package/types/align/align.ts +1 -1
- package/types/align/alignDirection.ts +1 -1
- package/types/align/alignment.ts +1 -1
- package/types/appearanceKeys.ts +1 -1
- package/types/border/borderColor.ts +1 -1
- package/types/border/borderColorHover.ts +1 -1
- package/types/border/borderType.ts +1 -1
- package/types/border/borderWidth.ts +1 -1
- package/types/direction.ts +1 -1
- package/types/elevation.ts +1 -1
- package/types/fill/fill.ts +1 -1
- package/types/fill/fillGradient.ts +1 -1
- package/types/fill/fillHover.ts +1 -1
- package/types/fill/fillType.ts +1 -1
- package/types/flex/flexAlign.ts +1 -1
- package/types/flex/flexGrow.ts +1 -1
- package/types/flex/flexJustifyContent.ts +1 -1
- package/types/flex/flexWrap.ts +1 -1
- package/types/grid/gridAlign.ts +1 -1
- package/types/grid/gridAlignSelf.ts +1 -1
- package/types/grid/gridJustifyItems.ts +1 -1
- package/types/grid/gridJustifySelf.ts +1 -1
- package/types/height.ts +1 -1
- package/types/horizontal/horizontalContentAlign.ts +1 -1
- package/types/horizontal/horizontalResizeMode.ts +1 -1
- package/types/icon/iconFillSize.ts +1 -1
- package/types/icon/iconSize.ts +1 -1
- package/types/index.ts +3 -1
- package/types/itemColor.ts +1 -1
- package/types/justifyContent.ts +1 -1
- package/types/overflow.ts +1 -1
- package/types/position.ts +1 -1
- package/types/resizeMode.ts +1 -1
- package/types/shape.ts +1 -1
- package/types/size/size.ts +1 -1
- package/types/size/sizeOption.ts +1 -1
- package/types/size/sizePX.ts +1 -1
- package/types/stacking.ts +1 -1
- package/types/state/state.ts +1 -1
- package/types/state/stateKeys.ts +1 -1
- package/types/svgFill.ts +1 -1
- package/types/text/textAlign.ts +1 -1
- package/types/text/textColor.ts +1 -1
- package/types/text/textColorActive.ts +1 -1
- package/types/text/textColorHover.ts +1 -1
- package/types/text/textGradient.ts +1 -1
- package/types/text/textSize.ts +1 -1
- package/types/text/textStyle.ts +1 -1
- package/types/text/textTag.ts +1 -1
- package/types/text/textWeight.ts +1 -1
- package/types/text/textWrap.ts +1 -1
- package/types/titleSize.ts +2 -2
- package/types/type.ts +1 -1
- package/types/underline.ts +1 -1
- package/types/vertical/verticalContentAlign.ts +1 -1
- package/types/vertical/verticalResizeMode.ts +1 -1
- package/types/width.ts +1 -1
- package/types/wrap.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.0.2](https://github.com/ITCase/itcase-types/compare/v1.0.1...v1.0.2) (2025-04-21)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* rename types ([452e4bc](https://github.com/ITCase/itcase-types/commit/452e4bcf07b6098a596e3edfdd0ec5b2ca8d63e9))
|
|
6
|
+
|
|
7
|
+
## [1.0.1](https://github.com/ITCase/itcase-types/compare/v1.0.0...v1.0.1) (2025-04-21)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* export types ([606c1f6](https://github.com/ITCase/itcase-types/commit/606c1f652dfedad413534aae444760afb68a1381))
|
|
12
|
+
|
|
1
13
|
## 1.0.0 (2025-04-16)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
package/types/align/align.ts
CHANGED
package/types/align/alignment.ts
CHANGED
package/types/appearanceKeys.ts
CHANGED
|
@@ -13,6 +13,6 @@ const borderColorHoverProps = [
|
|
|
13
13
|
'surfaceBorderQuaternary',
|
|
14
14
|
] as const
|
|
15
15
|
|
|
16
|
-
export type
|
|
16
|
+
export type BorderColorHoverProps = (typeof borderColorHoverProps)[number]
|
|
17
17
|
|
|
18
18
|
export { borderColorHoverProps }
|
package/types/direction.ts
CHANGED
package/types/elevation.ts
CHANGED
package/types/fill/fill.ts
CHANGED
package/types/fill/fillHover.ts
CHANGED
package/types/fill/fillType.ts
CHANGED
package/types/flex/flexAlign.ts
CHANGED
package/types/flex/flexGrow.ts
CHANGED
|
@@ -7,6 +7,6 @@ const flexJustifyContentProps = [
|
|
|
7
7
|
'space-evenly',
|
|
8
8
|
] as const
|
|
9
9
|
|
|
10
|
-
export type
|
|
10
|
+
export type FlexJustifyContentProps = (typeof flexJustifyContentProps)[number]
|
|
11
11
|
|
|
12
12
|
export { flexJustifyContentProps }
|
package/types/flex/flexWrap.ts
CHANGED
package/types/grid/gridAlign.ts
CHANGED
|
@@ -19,6 +19,6 @@ const gridJustifyItemsProps = [
|
|
|
19
19
|
'last baseline',
|
|
20
20
|
] as const
|
|
21
21
|
|
|
22
|
-
export type
|
|
22
|
+
export type GridJustifyItemsProps = (typeof gridJustifyItemsProps)[number]
|
|
23
23
|
|
|
24
24
|
export { gridJustifyItemsProps }
|
package/types/height.ts
CHANGED
package/types/icon/iconSize.ts
CHANGED
package/types/index.ts
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
export * from './align'
|
|
5
5
|
export * from './border'
|
|
6
6
|
export * from './fill'
|
|
7
|
+
export * from './flex'
|
|
7
8
|
export * from './grid'
|
|
8
|
-
export * from './text'
|
|
9
9
|
export * from './horizontal'
|
|
10
10
|
export * from './icon'
|
|
11
11
|
export * from './size'
|
|
12
12
|
export * from './state'
|
|
13
|
+
export * from './text'
|
|
14
|
+
export * from './vertical'
|
|
13
15
|
|
|
14
16
|
/**
|
|
15
17
|
* files
|
package/types/itemColor.ts
CHANGED
package/types/justifyContent.ts
CHANGED
package/types/overflow.ts
CHANGED
package/types/position.ts
CHANGED
package/types/resizeMode.ts
CHANGED
package/types/shape.ts
CHANGED
package/types/size/size.ts
CHANGED
package/types/size/sizeOption.ts
CHANGED
package/types/size/sizePX.ts
CHANGED
package/types/stacking.ts
CHANGED
package/types/state/state.ts
CHANGED
package/types/state/stateKeys.ts
CHANGED
package/types/svgFill.ts
CHANGED
package/types/text/textAlign.ts
CHANGED
package/types/text/textColor.ts
CHANGED
|
@@ -35,6 +35,6 @@ const textColorActiveProps = [
|
|
|
35
35
|
'dangerTextSecondary',
|
|
36
36
|
] as const
|
|
37
37
|
|
|
38
|
-
export type
|
|
38
|
+
export type TextColorActiveProps = (typeof textColorActiveProps)[number]
|
|
39
39
|
|
|
40
40
|
export { textColorActiveProps }
|
package/types/text/textSize.ts
CHANGED
package/types/text/textStyle.ts
CHANGED
package/types/text/textTag.ts
CHANGED
package/types/text/textWeight.ts
CHANGED
package/types/text/textWrap.ts
CHANGED
package/types/titleSize.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const titleSizeHeadingProps = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const
|
|
2
2
|
const titleSizeProps = ['xxl', 'xl', 'l', 'm', 's', 'xs', 'xxs'] as const
|
|
3
3
|
|
|
4
|
-
export type
|
|
5
|
-
export type
|
|
4
|
+
export type TitleSizeProps = (typeof titleSizeProps)[number]
|
|
5
|
+
export type TitleSizeHeadingProps = (typeof titleSizeHeadingProps)[number]
|
|
6
6
|
|
|
7
7
|
export { titleSizeProps, titleSizeHeadingProps }
|
package/types/type.ts
CHANGED
package/types/underline.ts
CHANGED
package/types/width.ts
CHANGED
package/types/wrap.ts
CHANGED