@flux-ui/types 3.0.0-next.26 → 3.0.0-next.28

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.26",
4
+ "version": "3.0.0-next.28",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
package/src/common.ts CHANGED
@@ -1,9 +1,6 @@
1
1
  import type { IconName as FontAwesome } from '@fortawesome/fontawesome-common-types';
2
- import type { MaterialSymbol } from './material-symbols';
3
2
 
4
- export type FluxIconName = FontAwesome | MaterialSymbol;
5
- export type FluxFontAwesomeIconName = FontAwesome;
6
- export type FluxMaterialIconName = MaterialSymbol;
3
+ export type FluxIconName = FontAwesome;
7
4
 
8
5
  export type FluxAlignment =
9
6
  | 'start'
package/src/index.ts CHANGED
@@ -3,11 +3,9 @@ export type {
3
3
  FluxAutoCompleteType,
4
4
  FluxColor,
5
5
  FluxDirection,
6
- FluxFontAwesomeIconName,
7
6
  FluxIconName,
8
7
  FluxInputMask,
9
8
  FluxInputType,
10
- FluxMaterialIconName,
11
9
  FluxMaybePromise,
12
10
  FluxPressableType,
13
11
  FluxSize,
@@ -57,3 +55,7 @@ export type {
57
55
  FluxSnackbarObject,
58
56
  FluxTooltipObject
59
57
  } from './notify';
58
+
59
+ export type {
60
+ FluxStatisticsChange
61
+ } from './statistics';
@@ -0,0 +1,7 @@
1
+ import type { FluxColor, FluxIconName } from './common';
2
+
3
+ export type FluxStatisticsChange = {
4
+ readonly color?: FluxColor;
5
+ readonly icon?: FluxIconName;
6
+ readonly value: string | number;
7
+ };