@heliofi/common-fe 0.2.285 → 0.2.287

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 CHANGED
@@ -68,4 +68,14 @@ declare enum GeneralNetwork {
68
68
  DEVNET = "devnet",
69
69
  }
70
70
  //#endregion
71
- export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, WithdrawalFeature, WithdrawalState };
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
- export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, WithdrawalFeature, WithdrawalState };
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.285",
3
+ "version": "0.2.287",
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": "e3d69415a496db0b2d7f65e6ee3b7e0e7c8606e4"
32
+ "gitHead": "36e28c082b60d113266fae4a59e5bdb157688948"
33
33
  }