@flux-ui/types 3.0.0-next.19 → 3.0.0-next.20

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flux-ui/types",
3
3
  "description": "Contains all public types of Flux UI packages.",
4
- "version": "3.0.0-next.19",
4
+ "version": "3.0.0-next.20",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
package/src/common.ts CHANGED
@@ -5,6 +5,11 @@ export type FluxIconName = FontAwesome | MaterialSymbol;
5
5
  export type FluxFontAwesomeIconName = FontAwesome;
6
6
  export type FluxMaterialIconName = MaterialSymbol;
7
7
 
8
+ export type FluxAlignment =
9
+ | 'start'
10
+ | 'center'
11
+ | 'end';
12
+
8
13
  export type FluxColor =
9
14
  | 'gray'
10
15
  | 'primary'
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export type {
2
+ FluxAlignment,
2
3
  FluxAutoCompleteType,
3
4
  FluxColor,
4
5
  FluxDirection,