@itcase/types 1.0.12 → 1.0.13

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,5 @@
1
+ ## [1.0.13](https://github.com/ITCase/itcase-types/compare/v1.0.12...v1.0.13) (2025-08-14)
2
+
1
3
  ## [1.0.12](https://github.com/ITCase/itcase-types/compare/v1.0.11...v1.0.12) (2025-08-14)
2
4
 
3
5
  ## [1.0.11](https://github.com/ITCase/itcase-types/compare/v1.0.10...v1.0.11) (2025-08-13)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -1,3 +1,3 @@
1
1
  export * from './size'
2
2
  export * from './sizePX'
3
- export * from './titleSize'
3
+ export * from './sizeHeading'
@@ -0,0 +1,6 @@
1
+ const sizeHeadingProps = ['h6', 'h5', 'h4', 'h3', 'h2', 'h1'] as const
2
+
3
+ type SizeHeadingProps = (typeof sizeHeadingProps)[number]
4
+
5
+ export { sizeHeadingProps }
6
+ export type { SizeHeadingProps }
@@ -1,7 +0,0 @@
1
- const titleSizeHeadingProps = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const
2
- const titleSizeProps = ['xxl', 'xl', 'l', 'm', 's', 'xs', 'xxs'] as const
3
-
4
- export type TitleSizeProps = (typeof titleSizeProps)[number]
5
- export type TitleSizeHeadingProps = (typeof titleSizeHeadingProps)[number]
6
-
7
- export { titleSizeProps, titleSizeHeadingProps }