@itcase/types 1.0.16 → 1.0.17

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.17](https://github.com/ITCase/itcase-types/compare/v1.0.16...v1.0.17) (2025-08-14)
2
+
1
3
  ## [1.0.16](https://github.com/ITCase/itcase-types/compare/v1.0.15...v1.0.16) (2025-08-14)
2
4
 
3
5
  ## [1.0.15](https://github.com/ITCase/itcase-types/compare/v1.0.14...v1.0.15) (2025-08-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/types",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "unified type storage",
5
5
  "keywords": [
6
6
  "types"
@@ -1,15 +1,47 @@
1
- const alignProps = [
2
- 'topLeft',
3
- 'topCenter',
4
- 'topRight',
5
- 'left',
1
+ const alignmentProps = [
6
2
  'center',
7
- 'right',
8
- 'bottomLeft',
9
- 'bottomCenter',
10
- 'bottomRight',
3
+ // Horizontal
4
+ 'horizontalTopLeft',
5
+ 'horizontalTopCenter',
6
+ 'horizontalTopRight',
7
+ 'horizontalLeft',
8
+ 'horizontalRight',
9
+ 'horizontalCenter',
10
+ 'horizontalBottomRight',
11
+ 'horizontalBottomCenter',
12
+ 'horizontalBottomLeft',
13
+ // Reverse
14
+ 'horizontalReverseTopLeft',
15
+ 'horizontalReverseTopCenter',
16
+ 'horizontalReverseTopRight',
17
+ 'horizontalReverseLeft',
18
+ 'horizontalReverseRight',
19
+ 'horizontalReverseCenter',
20
+ 'horizontalReverseBottomRight',
21
+ 'horizontalReverseBottomCenter',
22
+ 'horizontalReverseBottomLeft',
23
+ // Vertical
24
+ 'verticalTopLeft',
25
+ 'verticalTopCenter',
26
+ 'verticalTopRight',
27
+ 'verticalLeft',
28
+ 'verticalRight',
29
+ 'verticalCenter',
30
+ 'verticalBottomRight',
31
+ 'verticalBottomCenter',
32
+ 'verticalBottomLeft',
33
+ // Reverse
34
+ 'verticalReverseTopLeft',
35
+ 'verticalReverseTopCenter',
36
+ 'verticalReverseTopRight',
37
+ 'verticalReverseLeft',
38
+ 'verticalReverseRight',
39
+ 'verticalReverseCenter',
40
+ 'verticalReverseBottomRight',
41
+ 'verticalReverseBottomCenter',
42
+ 'verticalReverseBottomLeft',
11
43
  ] as const
12
44
 
13
- export type AlignProps = (typeof alignProps)[number]
45
+ export type AlignmentProps = (typeof alignmentProps)[number]
14
46
 
15
- export { alignProps }
47
+ export { alignmentProps }
@@ -1,3 +1 @@
1
1
  export * from './align'
2
- export * from './alignDirection'
3
- export * from './alignment'
@@ -1,14 +0,0 @@
1
- const alignDirectionProps = [
2
- 'column',
3
- 'column-reverse',
4
- 'horizontal',
5
- 'horizontal-reverse',
6
- 'row',
7
- 'row-reverse',
8
- 'vertical',
9
- 'vertical-reverse',
10
- ] as const
11
-
12
- export type AlignDirectionProps = (typeof alignDirectionProps)[number]
13
-
14
- export { alignDirectionProps }
@@ -1,14 +0,0 @@
1
- const alignmentProps = [
2
- 'topLeft',
3
- 'topCenter',
4
- 'topRight',
5
- 'leftCenter',
6
- 'rightCenter',
7
- 'bottomRight',
8
- 'bottomCenter',
9
- 'bottomLeft',
10
- ] as const
11
-
12
- export type AlignmentProps = (typeof alignmentProps)[number]
13
-
14
- export { alignmentProps }