@truelab/truelogic-plinko 0.0.6 → 0.0.8

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.
@@ -1,3 +1,2 @@
1
- export { ERisk } from './model/types';
2
1
  export { RiskSelector } from './ui/RiskSelector';
3
2
  export { RiskSelectorSelect } from './ui/RiskSelectorSelect';
@@ -1,6 +1,7 @@
1
- import { ERisk, ERiskLabel } from './types';
1
+ import { EStakeParamsRisk } from "../../../shared/api/stakeParams";
2
+ import { ERiskLabel } from './types';
2
3
  export declare const RISKS_LIST: {
3
- value: ERisk;
4
+ value: EStakeParamsRisk;
4
5
  key: string;
5
6
  label: ERiskLabel;
6
7
  }[];
@@ -1,8 +1,3 @@
1
- export declare enum ERisk {
2
- low = "low",
3
- medium = "medium",
4
- high = "high"
5
- }
6
1
  export declare enum ERiskLabel {
7
2
  Low = "Low",
8
3
  Medium = "Medium",
@@ -1,2 +1 @@
1
1
  export declare const ROWS_LIST: number[];
2
- export declare const DEFAULT_ROW = 8;
@@ -0,0 +1 @@
1
+ export { DEFAULT_STAKE_PARAMS_ROW, EStakeParamsRisk } from './types';
@@ -0,0 +1,6 @@
1
+ export declare enum EStakeParamsRisk {
2
+ low = "low",
3
+ medium = "medium",
4
+ high = "high"
5
+ }
6
+ export declare const DEFAULT_STAKE_PARAMS_ROW = 8;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truelab/truelogic-plinko",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "",
5
5
  "main": "./dist/truelogic.min.js",
6
6
  "types": "./dist/types/src/truelogic.d.ts",