@htmlbricks/hb-input-checkbox 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",
@@ -136,21 +125,8 @@
136
125
  "type": "boolean"
137
126
  }
138
127
  },
139
- "set_valid": {
140
- "control": {
141
- "type": "boolean"
142
- }
143
- },
144
- "set_value": {
145
- "control": {
146
- "type": "boolean"
147
- }
148
- },
149
- "setValid": {
150
- "action": "setValid"
151
- },
152
- "setValue": {
153
- "action": "setValue"
128
+ "setVal": {
129
+ "action": "setVal"
154
130
  }
155
131
  },
156
132
  "styleSetup": {
@@ -247,5 +223,5 @@
247
223
  "size": {},
248
224
  "iifePath": "main.iife.js",
249
225
  "repoName": "@htmlbricks/hb-input-checkbox",
250
- "version": "0.50.0-alpha.008"
226
+ "version": "0.60.0"
251
227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-checkbox",
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",
@@ -81,3 +75,4 @@
81
75
  }
82
76
  }
83
77
  }
78
+
@@ -39,10 +39,8 @@ 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;
46
44
  };
47
45
 
48
- export type Events = { setValue: { value: string }; setValid: { valid: boolean } };
46
+ export type Events = { setVal: { value: string; valid: boolean; id: string } };
@@ -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
+