@flowerforce/flower-core 3.0.1-beta.2 → 3.0.1-beta.3

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,4 +1,4 @@
1
- import { RulesByNodeId, RulesModes } from './CoreInterface';
1
+ import { RulesByNodeId } from './CoreInterface';
2
2
  export declare enum RulesOperators {
3
3
  $exist = "$exist",
4
4
  $eq = "$eq",
@@ -16,17 +16,6 @@ export declare enum RulesOperators {
16
16
  $all = "$all",
17
17
  $regex = "$regex"
18
18
  }
19
- type RulesValuesType<T> = {
20
- '$form.isValid': boolean;
21
- } & T;
22
- type RulesOperatorsInArray<T> = Partial<{
23
- [KEY in keyof T]: Partial<{
24
- [K in keyof typeof RulesOperators]: T[KEY];
25
- }>;
26
- }>;
27
- export type RulesObject<T> = {
28
- [K in keyof typeof RulesModes]: Array<RulesOperatorsInArray<RulesValuesType<T>>> | Array<RulesObject<RulesValuesType<T>>>;
29
- } | Array<RulesOperatorsInArray<RulesValuesType<T>>>;
30
19
  export interface StoreRoot<T extends Record<string, any>> {
31
20
  flower: {
32
21
  [x: string]: Flower<T>;
@@ -61,4 +50,3 @@ export type Form<T> = {
61
50
  [K in keyof T]: Array<string>;
62
51
  };
63
52
  };
64
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowerforce/flower-core",
3
- "version": "3.0.1-beta.2",
3
+ "version": "3.0.1-beta.3",
4
4
  "description": "Core functions for flowerJS",
5
5
  "repository": {
6
6
  "type": "git",