@heliofi/common-fe 0.2.294 → 0.2.295

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
@@ -71,6 +71,11 @@ declare enum GeneralNetwork {
71
71
  }
72
72
  //#endregion
73
73
  //#region ../common/src/domain/constants/theme.d.ts
74
+ declare enum ThemeType {
75
+ MOONPAY = "MOONPAY",
76
+ USER = "USER",
77
+ PRIVATE = "PRIVATE",
78
+ }
74
79
  declare enum TextColor {
75
80
  WHITE = "WHITE",
76
81
  BLACK = "BLACK",
@@ -80,4 +85,4 @@ declare enum ThemeMode {
80
85
  DARK = "DARK",
81
86
  }
82
87
  //#endregion
83
- export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, WithdrawalFeature, WithdrawalState };
88
+ export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, ThemeType, WithdrawalFeature, WithdrawalState };
package/dist/index.js CHANGED
@@ -90,6 +90,12 @@ let GeneralNetwork = /* @__PURE__ */ function(GeneralNetwork) {
90
90
  }({});
91
91
  //#endregion
92
92
  //#region ../common/src/domain/constants/theme.ts
93
+ let ThemeType = /* @__PURE__ */ function(ThemeType) {
94
+ ThemeType["MOONPAY"] = "MOONPAY";
95
+ ThemeType["USER"] = "USER";
96
+ ThemeType["PRIVATE"] = "PRIVATE";
97
+ return ThemeType;
98
+ }({});
93
99
  let TextColor = /* @__PURE__ */ function(TextColor) {
94
100
  TextColor["WHITE"] = "WHITE";
95
101
  TextColor["BLACK"] = "BLACK";
@@ -101,4 +107,4 @@ let ThemeMode = /* @__PURE__ */ function(ThemeMode) {
101
107
  return ThemeMode;
102
108
  }({});
103
109
  //#endregion
104
- export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, WithdrawalFeature, WithdrawalState };
110
+ export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, ThemeType, WithdrawalFeature, WithdrawalState };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heliofi/common-fe",
3
- "version": "0.2.294",
3
+ "version": "0.2.295",
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": "b1b9305972b61e391a14fc6045d0bea4d0c0c9f3"
32
+ "gitHead": "773ef14b626fded2f03b33ceb0fb6a18f20bdd1d"
33
33
  }