@heliofi/common-fe 0.2.285 → 0.2.286
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/dist/index.d.ts +11 -1
- package/dist/index.js +13 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -68,4 +68,14 @@ declare enum GeneralNetwork {
|
|
|
68
68
|
DEVNET = "devnet",
|
|
69
69
|
}
|
|
70
70
|
//#endregion
|
|
71
|
-
|
|
71
|
+
//#region ../common/src/domain/constants/theme.d.ts
|
|
72
|
+
declare enum TextColor {
|
|
73
|
+
WHITE = "WHITE",
|
|
74
|
+
BLACK = "BLACK",
|
|
75
|
+
}
|
|
76
|
+
declare enum ThemeMode {
|
|
77
|
+
LIGHT = "LIGHT",
|
|
78
|
+
DARK = "DARK",
|
|
79
|
+
}
|
|
80
|
+
//#endregion
|
|
81
|
+
export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, WithdrawalFeature, WithdrawalState };
|
package/dist/index.js
CHANGED
|
@@ -87,4 +87,16 @@ let GeneralNetwork = /* @__PURE__ */ function(GeneralNetwork) {
|
|
|
87
87
|
return GeneralNetwork;
|
|
88
88
|
}({});
|
|
89
89
|
//#endregion
|
|
90
|
-
|
|
90
|
+
//#region ../common/src/domain/constants/theme.ts
|
|
91
|
+
let TextColor = /* @__PURE__ */ function(TextColor) {
|
|
92
|
+
TextColor["WHITE"] = "WHITE";
|
|
93
|
+
TextColor["BLACK"] = "BLACK";
|
|
94
|
+
return TextColor;
|
|
95
|
+
}({});
|
|
96
|
+
let ThemeMode = /* @__PURE__ */ function(ThemeMode) {
|
|
97
|
+
ThemeMode["LIGHT"] = "LIGHT";
|
|
98
|
+
ThemeMode["DARK"] = "DARK";
|
|
99
|
+
return ThemeMode;
|
|
100
|
+
}({});
|
|
101
|
+
//#endregion
|
|
102
|
+
export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, WithdrawalFeature, WithdrawalState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common-fe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.286",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Zero-dependency, frontend-safe shared enums (and, later, DTO type shapes) for Helio consumers. No class-validator / reflect-metadata / heavy blockchain deps.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"typescript": "5.*"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "98da19cb767f6a3c3f7da98a4e397b9c59dea618"
|
|
33
33
|
}
|