@itcase/types 1.0.45 → 1.0.46

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.46](https://github.com/ITCase/itcase-types/compare/v1.0.45...v1.0.46) (2025-11-10)
2
+
1
3
  ## [1.0.45](https://github.com/ITCase/itcase-types/compare/v1.0.44...v1.0.45) (2025-08-29)
2
4
 
3
5
  ## [1.0.44](https://github.com/ITCase/itcase-types/compare/v1.0.43...v1.0.44) (2025-08-29)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.45",
4
- "description": "unified type storage",
3
+ "version": "1.0.46",
4
+ "description": "Unified type storage",
5
5
  "keywords": [
6
6
  "types"
7
7
  ],
@@ -30,19 +30,19 @@
30
30
  "registry": "https://registry.npmjs.org/"
31
31
  },
32
32
  "devDependencies": {
33
- "@commitlint/cli": "^19.8.1",
34
- "@commitlint/config-conventional": "^19.8.1",
35
- "@itcase/config": "^1.0.56",
36
- "@itcase/lint": "^1.1.47",
33
+ "@commitlint/cli": "^20.1.0",
34
+ "@commitlint/config-conventional": "^20.0.0",
35
+ "@itcase/config": "^1.0.63",
36
+ "@itcase/lint": "^1.1.68",
37
37
  "@semantic-release/changelog": "^6.0.3",
38
38
  "@semantic-release/git": "^10.0.1",
39
- "@semantic-release/release-notes-generator": "14.0.3",
39
+ "@semantic-release/release-notes-generator": "14.1.0",
40
40
  "conventional-changelog-conventionalcommits": "^9.1.0",
41
- "eslint": "9.34.0",
41
+ "eslint": "9.39.1",
42
42
  "husky": "^9.1.7",
43
- "lint-staged": "^16.1.5",
43
+ "lint-staged": "^16.2.6",
44
44
  "prettier": "^3.6.2",
45
45
  "semantic-release": "^24.2.7",
46
- "typescript": "^5.9.2"
46
+ "typescript": "^5.9.3"
47
47
  }
48
48
  }
@@ -1,9 +1,10 @@
1
1
  export * from './textAlign'
2
2
  export * from './textColor'
3
3
  export * from './textColorActive'
4
+ export * from './textColorActiveHover'
4
5
  export * from './textColorFocus'
5
6
  export * from './textColorHover'
6
- export * from './textColorActiveHover'
7
+ export * from './textFont'
7
8
  export * from './textSize'
8
9
  export * from './textTag'
9
10
  export * from './textWeight'
@@ -0,0 +1,5 @@
1
+ const textFontProps = ['primary', 'secondary', 'tertiary'] as const
2
+
3
+ export type TextFontProps = (typeof textFontProps)[number]
4
+
5
+ export { textFontProps }
@@ -0,0 +1,5 @@
1
+ const textSizeProps = ['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl'] as const
2
+
3
+ export type TextSizeProps = (typeof textSizeProps)[number]
4
+
5
+ export { textSizeProps }