@flux-ui/types 3.0.0-next.25 → 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 +1 -1
- package/src/common.ts +1 -4
- package/src/index.ts +4 -2
- package/src/statistics.ts +7 -0
- package/src/font-awesome.ts +0 -5221
- package/src/material-symbols.ts +0 -3508
package/package.json
CHANGED
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
|
|
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';
|