@htmlbricks/hb-input-checkbox 0.8.17 → 0.8.20
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-input-checkbox",
|
|
3
3
|
"displayName": "Svelte-Bootstrap Checkbox Input WebComponent",
|
|
4
4
|
"description": "Svelte-Bootstrap Checkbox Input WebComponent",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.20",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"prepublish": "npm run build:release"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@htmlbricks/hb-jsutils": "^0.8.
|
|
30
|
+
"@htmlbricks/hb-jsutils": "^0.8.20",
|
|
31
31
|
"@rollup/plugin-alias": "^3.1.2",
|
|
32
32
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"webcomponents"
|
|
72
72
|
],
|
|
73
73
|
"contributors": [],
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "ccab4ad614e49aab6f981146e7f076bac56dd7e7"
|
|
75
75
|
}
|
|
@@ -28,9 +28,6 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"required": [
|
|
31
|
-
"setvalue",
|
|
32
|
-
"setvalid",
|
|
33
|
-
"showvalidation",
|
|
34
31
|
"schemaentry"
|
|
35
32
|
],
|
|
36
33
|
"type": "object"
|
|
@@ -132,10 +129,6 @@
|
|
|
132
129
|
"description": "This doesn't matter if the dependencies requirements aren't met.",
|
|
133
130
|
"type": "boolean"
|
|
134
131
|
},
|
|
135
|
-
"type": {
|
|
136
|
-
"description": "Identifies the component type that will be used, available default ones are: - text - number - email - select \t- radio - checkbox - textarea",
|
|
137
|
-
"type": "string"
|
|
138
|
-
},
|
|
139
132
|
"validationRegex": {
|
|
140
133
|
"type": "string"
|
|
141
134
|
},
|
|
@@ -153,8 +146,7 @@
|
|
|
153
146
|
}
|
|
154
147
|
},
|
|
155
148
|
"required": [
|
|
156
|
-
"id"
|
|
157
|
-
"type"
|
|
149
|
+
"id"
|
|
158
150
|
],
|
|
159
151
|
"type": "object"
|
|
160
152
|
}
|
|
@@ -5,19 +5,6 @@ export type FormSchemaEntry = {
|
|
|
5
5
|
*/
|
|
6
6
|
id: string;
|
|
7
7
|
|
|
8
|
-
/**
|
|
9
|
-
* Identifies the component type that will be used,
|
|
10
|
-
* available default ones are:
|
|
11
|
-
* - text
|
|
12
|
-
* - number
|
|
13
|
-
* - email
|
|
14
|
-
* - select
|
|
15
|
-
* - radio
|
|
16
|
-
* - checkbox
|
|
17
|
-
* - textarea
|
|
18
|
-
*/
|
|
19
|
-
type: string;
|
|
20
|
-
|
|
21
8
|
/**
|
|
22
9
|
* The descriptive label that will show alongside the form control.
|
|
23
10
|
*/
|
|
@@ -65,9 +52,9 @@ export type FormRendererProps = {
|
|
|
65
52
|
export type Component = {
|
|
66
53
|
id?: string;
|
|
67
54
|
style?: string;
|
|
68
|
-
setvalue
|
|
69
|
-
setvalid
|
|
70
|
-
showvalidation
|
|
55
|
+
setvalue?: boolean;
|
|
56
|
+
setvalid?: boolean;
|
|
57
|
+
showvalidation?: "yes" | "no";
|
|
71
58
|
schemaentry: FormSchemaEntry;
|
|
72
59
|
};
|
|
73
60
|
|