@itcase/types 1.0.17 → 1.0.19

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.19](https://github.com/ITCase/itcase-types/compare/v1.0.18...v1.0.19) (2025-08-14)
2
+
3
+ ## [1.0.18](https://github.com/ITCase/itcase-types/compare/v1.0.17...v1.0.18) (2025-08-14)
4
+
1
5
  ## [1.0.17](https://github.com/ITCase/itcase-types/compare/v1.0.16...v1.0.17) (2025-08-14)
2
6
 
3
7
  ## [1.0.16](https://github.com/ITCase/itcase-types/compare/v1.0.15...v1.0.16) (2025-08-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -1,4 +1,4 @@
1
- const alignmentProps = [
1
+ const alignProps = [
2
2
  'center',
3
3
  // Horizontal
4
4
  'horizontalTopLeft',
@@ -42,6 +42,6 @@ const alignmentProps = [
42
42
  'verticalReverseBottomLeft',
43
43
  ] as const
44
44
 
45
- export type AlignmentProps = (typeof alignmentProps)[number]
45
+ export type AlignProps = (typeof alignProps)[number]
46
46
 
47
- export { alignmentProps }
47
+ export { alignProps }
@@ -0,0 +1 @@
1
+ export * from './titleSize'
@@ -0,0 +1,5 @@
1
+ const titleSizeProps = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const
2
+
3
+ export type TitleSizeProps = (typeof titleSizeProps)[number]
4
+
5
+ export { titleSizeProps }