@htmlbricks/hb-input-number 0.50.0-alpha.8 → 0.60.0

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/manifest.json CHANGED
@@ -26,7 +26,7 @@
26
26
  ],
27
27
  "type": "object"
28
28
  },
29
- "setValid": {
29
+ "setVal": {
30
30
  "additionalProperties": false,
31
31
  "properties": {
32
32
  "id": {
@@ -34,32 +34,21 @@
34
34
  },
35
35
  "valid": {
36
36
  "type": "boolean"
37
- }
38
- },
39
- "required": [
40
- "valid"
41
- ],
42
- "type": "object"
43
- },
44
- "setValue": {
45
- "additionalProperties": false,
46
- "properties": {
47
- "id": {
48
- "type": "string"
49
37
  },
50
38
  "value": {
51
39
  "type": "number"
52
40
  }
53
41
  },
54
42
  "required": [
55
- "value"
43
+ "value",
44
+ "valid",
45
+ "id"
56
46
  ],
57
47
  "type": "object"
58
48
  }
59
49
  },
60
50
  "required": [
61
- "setValue",
62
- "setValid",
51
+ "setVal",
63
52
  "clickEnter"
64
53
  ],
65
54
  "type": "object"
@@ -79,12 +68,6 @@
79
68
  "schemaentry": {
80
69
  "$ref": "#/definitions/FormSchemaEntry"
81
70
  },
82
- "set_valid": {
83
- "type": "boolean"
84
- },
85
- "set_value": {
86
- "type": "boolean"
87
- },
88
71
  "show_validation": {
89
72
  "enum": [
90
73
  "yes",
@@ -155,21 +138,8 @@
155
138
  "type": "boolean"
156
139
  }
157
140
  },
158
- "set_valid": {
159
- "control": {
160
- "type": "boolean"
161
- }
162
- },
163
- "set_value": {
164
- "control": {
165
- "type": "boolean"
166
- }
167
- },
168
- "setValid": {
169
- "action": "setValid"
170
- },
171
- "setValue": {
172
- "action": "setValue"
141
+ "setVal": {
142
+ "action": "setVal"
173
143
  },
174
144
  "clickEnter": {
175
145
  "action": "clickEnter"
@@ -331,5 +301,5 @@
331
301
  "size": {},
332
302
  "iifePath": "main.iife.js",
333
303
  "repoName": "@htmlbricks/hb-input-number",
334
- "version": "0.50.0-alpha.008"
304
+ "version": "0.60.0"
335
305
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-number",
3
- "version": "0.50.0-alpha.008",
3
+ "version": "0.60.0",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -12,5 +12,9 @@
12
12
  }
13
13
  ],
14
14
  "main": "main.iife.js",
15
- "dependencies": []
15
+ "dependencies": {},
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "private": false
16
20
  }
@@ -11,12 +11,6 @@
11
11
  "schemaentry": {
12
12
  "$ref": "#/definitions/FormSchemaEntry"
13
13
  },
14
- "set_valid": {
15
- "type": "boolean"
16
- },
17
- "set_value": {
18
- "type": "boolean"
19
- },
20
14
  "show_validation": {
21
15
  "enum": [
22
16
  "yes",
@@ -74,3 +68,4 @@
74
68
  }
75
69
  }
76
70
  }
71
+
@@ -39,14 +39,11 @@ export type FormSchemaEntry = {
39
39
  export type Component = {
40
40
  id?: string;
41
41
  style?: string;
42
- set_value?: boolean;
43
- set_valid?: boolean;
44
42
  show_validation?: "yes" | "no";
45
43
  schemaentry: FormSchemaEntry | undefined;
46
44
  };
47
45
 
48
46
  export type Events = {
49
- setValue: { value: number; id?: string };
50
- setValid: { valid: boolean; id?: string };
47
+ setVal: { value: number; valid: boolean; id: string };
51
48
  clickEnter: { value: string; valid: boolean; id?: string };
52
49
  };
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "type": "object"
26
26
  },
27
- "setValid": {
27
+ "setVal": {
28
28
  "additionalProperties": false,
29
29
  "properties": {
30
30
  "id": {
@@ -32,35 +32,25 @@
32
32
  },
33
33
  "valid": {
34
34
  "type": "boolean"
35
- }
36
- },
37
- "required": [
38
- "valid"
39
- ],
40
- "type": "object"
41
- },
42
- "setValue": {
43
- "additionalProperties": false,
44
- "properties": {
45
- "id": {
46
- "type": "string"
47
35
  },
48
36
  "value": {
49
37
  "type": "number"
50
38
  }
51
39
  },
52
40
  "required": [
53
- "value"
41
+ "value",
42
+ "valid",
43
+ "id"
54
44
  ],
55
45
  "type": "object"
56
46
  }
57
47
  },
58
48
  "required": [
59
- "setValue",
60
- "setValid",
49
+ "setVal",
61
50
  "clickEnter"
62
51
  ],
63
52
  "type": "object"
64
53
  }
65
54
  }
66
55
  }
56
+