@htmlbricks/hb-input-radio 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
@@ -7,34 +7,29 @@
7
7
  "Events": {
8
8
  "additionalProperties": false,
9
9
  "properties": {
10
- "setValid": {
10
+ "setVal": {
11
11
  "additionalProperties": false,
12
12
  "properties": {
13
+ "id": {
14
+ "type": "string"
15
+ },
13
16
  "valid": {
14
17
  "type": "boolean"
15
- }
16
- },
17
- "required": [
18
- "valid"
19
- ],
20
- "type": "object"
21
- },
22
- "setValue": {
23
- "additionalProperties": false,
24
- "properties": {
18
+ },
25
19
  "value": {
26
20
  "type": "string"
27
21
  }
28
22
  },
29
23
  "required": [
30
- "value"
24
+ "value",
25
+ "valid",
26
+ "id"
31
27
  ],
32
28
  "type": "object"
33
29
  }
34
30
  },
35
31
  "required": [
36
- "setValue",
37
- "setValid"
32
+ "setVal"
38
33
  ],
39
34
  "type": "object"
40
35
  }
@@ -53,12 +48,6 @@
53
48
  "schemaentry": {
54
49
  "$ref": "#/definitions/FormSchemaEntry"
55
50
  },
56
- "set_valid": {
57
- "type": "boolean"
58
- },
59
- "set_value": {
60
- "type": "boolean"
61
- },
62
51
  "show_validation": {
63
52
  "enum": [
64
53
  "yes",
@@ -133,21 +122,8 @@
133
122
  "type": "boolean"
134
123
  }
135
124
  },
136
- "set_valid": {
137
- "control": {
138
- "type": "boolean"
139
- }
140
- },
141
- "set_value": {
142
- "control": {
143
- "type": "boolean"
144
- }
145
- },
146
- "setValid": {
147
- "action": "setValid"
148
- },
149
- "setValue": {
150
- "action": "setValue"
125
+ "setVal": {
126
+ "action": "setVal"
151
127
  }
152
128
  },
153
129
  "styleSetup": {
@@ -243,5 +219,5 @@
243
219
  "size": {},
244
220
  "iifePath": "main.iife.js",
245
221
  "repoName": "@htmlbricks/hb-input-radio",
246
- "version": "0.50.0-alpha.008"
222
+ "version": "0.60.0"
247
223
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-radio",
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",
@@ -78,3 +72,4 @@
78
72
  }
79
73
  }
80
74
  }
75
+
@@ -39,13 +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;
42
+
44
43
  show_validation?: "yes" | "no";
45
44
  schemaentry: FormSchemaEntry | undefined;
46
45
  };
47
46
 
48
47
  export type Events = {
49
- setValue: { value: string };
50
- setValid: { valid: boolean };
48
+ setVal: { value: string; valid: boolean; id: string };
51
49
  };
@@ -5,36 +5,32 @@
5
5
  "Events": {
6
6
  "additionalProperties": false,
7
7
  "properties": {
8
- "setValid": {
8
+ "setVal": {
9
9
  "additionalProperties": false,
10
10
  "properties": {
11
+ "id": {
12
+ "type": "string"
13
+ },
11
14
  "valid": {
12
15
  "type": "boolean"
13
- }
14
- },
15
- "required": [
16
- "valid"
17
- ],
18
- "type": "object"
19
- },
20
- "setValue": {
21
- "additionalProperties": false,
22
- "properties": {
16
+ },
23
17
  "value": {
24
18
  "type": "string"
25
19
  }
26
20
  },
27
21
  "required": [
28
- "value"
22
+ "value",
23
+ "valid",
24
+ "id"
29
25
  ],
30
26
  "type": "object"
31
27
  }
32
28
  },
33
29
  "required": [
34
- "setValue",
35
- "setValid"
30
+ "setVal"
36
31
  ],
37
32
  "type": "object"
38
33
  }
39
34
  }
40
35
  }
36
+