rapida-partner 1.1.2 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapida-partner",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "main": "dist/index.js",
5
5
  "module": "index.ts",
6
6
  "files": [
@@ -12,6 +12,7 @@ export interface IFormAutocomplete {
12
12
  isAutofocus?: boolean;
13
13
  isDisabled?: boolean;
14
14
  isDisabledOnUpdate?: boolean;
15
+ isHidden?: boolean;
15
16
  isRequired?: boolean;
16
17
  isUnique?: boolean;
17
18
  conditions?: IFormCondition[];
@@ -13,6 +13,7 @@ export interface IFormButton {
13
13
  tooltip?: string;
14
14
  isDisabled?: boolean;
15
15
  isDisabledOnUpdate?: boolean;
16
+ isHidden?: boolean;
16
17
  conditions?: IFormCondition[];
17
18
  apiRequest?: IApiRequest;
18
19
  modal?: {
@@ -11,6 +11,7 @@ export interface IFormDatePicker {
11
11
  maxDate?: string;
12
12
  isDisabled?: boolean;
13
13
  isDisabledOnUpdate?: boolean;
14
+ isHidden?: boolean;
14
15
  isRequired?: boolean;
15
16
  conditions?: IFormCondition[];
16
17
  todo?: string;
@@ -20,6 +20,7 @@ export interface IFormFile {
20
20
  maxSize?: number;
21
21
  isDisabled?: boolean;
22
22
  isDisabledOnUpdate?: boolean;
23
+ isHidden?: boolean;
23
24
  isRequired?: boolean;
24
25
  conditions?: IFormCondition[];
25
26
  todo?: string;
@@ -16,6 +16,7 @@ export interface IFormInput {
16
16
  isAutofocus?: boolean;
17
17
  isDisabled?: boolean;
18
18
  isDisabledOnUpdate?: boolean;
19
+ isHidden?: boolean;
19
20
  isRequired?: boolean;
20
21
  isUnique?: boolean;
21
22
  conditions?: IFormCondition[];
@@ -14,6 +14,7 @@ export interface IFormNumericInput {
14
14
  thousandSeparator?: boolean;
15
15
  isDisabled?: boolean;
16
16
  isDisabledOnUpdate?: boolean;
17
+ isHidden?: boolean;
17
18
  isRequired?: boolean;
18
19
  isUnique?: boolean;
19
20
  conditions?: IFormCondition[];
@@ -14,6 +14,7 @@ export interface IFormRadioGroup {
14
14
  tooltip?: string;
15
15
  isDisabled?: boolean;
16
16
  isDisabledOnUpdate?: boolean;
17
+ isHidden?: boolean;
17
18
  isRequired?: boolean;
18
19
  conditions?: IFormCondition[];
19
20
  todo?: string;
@@ -13,6 +13,7 @@ export interface IFormSelect {
13
13
  isAutofocus?: boolean;
14
14
  isDisabled?: boolean;
15
15
  isDisabledOnUpdate?: boolean;
16
+ isHidden?: boolean;
16
17
  isRequired?: boolean;
17
18
  isUnique?: boolean;
18
19
  conditions?: IFormCondition[];
@@ -8,6 +8,7 @@ export interface IFormSwitch {
8
8
  tooltip?: string;
9
9
  isDisabled?: boolean;
10
10
  isDisabledOnUpdate?: boolean;
11
+ isHidden?: boolean;
11
12
  isRequired?: boolean;
12
13
  conditions?: IFormCondition[];
13
14
  todo?: string;
@@ -30,6 +30,9 @@
30
30
  "isDisabledOnUpdate": {
31
31
  "type": "boolean"
32
32
  },
33
+ "isHidden": {
34
+ "type": "boolean"
35
+ },
33
36
  "isRequired": {
34
37
  "type": "boolean"
35
38
  },
@@ -35,6 +35,9 @@
35
35
  "isDisabledOnUpdate": {
36
36
  "type": "boolean"
37
37
  },
38
+ "isHidden": {
39
+ "type": "boolean"
40
+ },
38
41
  "conditions": {
39
42
  "$ref": "form-condition.ref.json"
40
43
  },
@@ -33,6 +33,9 @@
33
33
  "isDisabledOnUpdate": {
34
34
  "type": "boolean"
35
35
  },
36
+ "isHidden": {
37
+ "type": "boolean"
38
+ },
36
39
  "isRequired": {
37
40
  "type": "boolean"
38
41
  },
@@ -43,6 +43,9 @@
43
43
  "isDisabledOnUpdate": {
44
44
  "type": "boolean"
45
45
  },
46
+ "isHidden": {
47
+ "type": "boolean"
48
+ },
46
49
  "isRequired": {
47
50
  "type": "boolean"
48
51
  },
@@ -30,6 +30,9 @@
30
30
  "isDisabledOnUpdate": {
31
31
  "type": "boolean"
32
32
  },
33
+ "isHidden": {
34
+ "type": "boolean"
35
+ },
33
36
  "isRequired": {
34
37
  "type": "boolean"
35
38
  },
@@ -40,6 +40,9 @@
40
40
  "isDisabledOnUpdate": {
41
41
  "type": "boolean"
42
42
  },
43
+ "isHidden": {
44
+ "type": "boolean"
45
+ },
43
46
  "isRequired": {
44
47
  "type": "boolean"
45
48
  },
@@ -47,6 +47,9 @@
47
47
  "isDisabledOnUpdate": {
48
48
  "type": "boolean"
49
49
  },
50
+ "isHidden": {
51
+ "type": "boolean"
52
+ },
50
53
  "isRequired": {
51
54
  "type": "boolean"
52
55
  },
@@ -30,6 +30,9 @@
30
30
  "isDisabledOnUpdate": {
31
31
  "type": "boolean"
32
32
  },
33
+ "isHidden": {
34
+ "type": "boolean"
35
+ },
33
36
  "isRequired": {
34
37
  "type": "boolean"
35
38
  },
@@ -22,6 +22,9 @@
22
22
  "isDisabledOnUpdate": {
23
23
  "type": "boolean"
24
24
  },
25
+ "isHidden": {
26
+ "type": "boolean"
27
+ },
25
28
  "isRequired": {
26
29
  "type": "boolean"
27
30
  },