@htmlbricks/hb-input-radio 0.8.14 → 0.8.21

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-radio",
3
3
  "displayName": "Svelte-Bootstrap Radio Input WebComponent",
4
4
  "description": "Svelte-Bootstrap Radio Input WebComponent",
5
- "version": "0.8.14",
5
+ "version": "0.8.21",
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.14",
30
+ "@htmlbricks/hb-jsutils": "^0.8.21",
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": "0ee7da8517b26400d3fb42dde0fa3cd1b1c463c9"
74
+ "gitHead": "09763152fba422a38d792d4a614e70f1272faacb"
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"
@@ -114,10 +111,6 @@
114
111
  "description": "This doesn't matter if the dependencies requirements aren't met.",
115
112
  "type": "boolean"
116
113
  },
117
- "type": {
118
- "description": "Identifies the component type that will be used, available default ones are: - text - number - email - select \t- radio - checkbox - textarea",
119
- "type": "string"
120
- },
121
114
  "validationRegex": {
122
115
  "type": "string"
123
116
  },
@@ -135,8 +128,7 @@
135
128
  }
136
129
  },
137
130
  "required": [
138
- "id",
139
- "type"
131
+ "id"
140
132
  ],
141
133
  "type": "object"
142
134
  }
@@ -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
  */
@@ -60,9 +47,9 @@ export type FormSchemaEntry = {
60
47
  export type Component = {
61
48
  id?: string;
62
49
  style?: string;
63
- setvalue: boolean;
64
- setvalid: boolean;
65
- showvalidation: "yes" | "no";
50
+ setvalue?: boolean;
51
+ setvalid?: boolean;
52
+ showvalidation?: "yes" | "no";
66
53
  schemaentry: FormSchemaEntry;
67
54
  };
68
55