@htmlbricks/hb-input-email 0.50.0-alpha.9 → 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": "string"
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",
@@ -162,21 +145,8 @@
162
145
  "type": "boolean"
163
146
  }
164
147
  },
165
- "set_valid": {
166
- "control": {
167
- "type": "boolean"
168
- }
169
- },
170
- "set_value": {
171
- "control": {
172
- "type": "boolean"
173
- }
174
- },
175
- "setValid": {
176
- "action": "setValid"
177
- },
178
- "setValue": {
179
- "action": "setValue"
148
+ "setVal": {
149
+ "action": "setVal"
180
150
  },
181
151
  "clickEnter": {
182
152
  "action": "clickEnter"
@@ -263,5 +233,5 @@
263
233
  "size": {},
264
234
  "iifePath": "main.iife.js",
265
235
  "repoName": "@htmlbricks/hb-input-email",
266
- "version": "0.50.0-alpha.009"
236
+ "version": "0.60.0"
267
237
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-email",
3
- "version": "0.50.0-alpha.009",
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",
@@ -81,3 +75,4 @@
81
75
  }
82
76
  }
83
77
  }
78
+
@@ -39,14 +39,12 @@ export type FormSchemaEntry = {
39
39
  export type Component = {
40
40
  id?: string;
41
41
  style?: string;
42
- set_value?: boolean;
43
- set_valid?: boolean;
42
+
44
43
  show_validation?: "yes" | "no";
45
44
  schemaentry: FormSchemaEntry;
46
45
  };
47
46
 
48
47
  export type Events = {
49
- setValue: { value: string; id?: string };
50
- setValid: { valid: boolean; id?: string };
48
+ setVal: { value: string; valid: boolean; id: string };
51
49
  clickEnter: { value: string; valid: boolean; id?: string };
52
50
  };
@@ -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": "string"
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
+