@htmlbricks/hb-input-checkbox 0.8.27 → 0.8.32

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.27",
5
+ "version": "0.8.32",
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.27",
30
+ "@htmlbricks/hb-jsutils": "^0.8.32",
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": "a941c6246fe54fac8677f1a2e546a44b5a6b9c85"
74
+ "gitHead": "b6035eb45505f2e2541c39ed0b8bb78134bf74fd"
75
75
  }
@@ -66,47 +66,9 @@
66
66
  ],
67
67
  "type": "object"
68
68
  },
69
- "FormRendererProps": {
70
- "additionalProperties": false,
71
- "properties": {
72
- "schema": {
73
- "$ref": "#/definitions/FormSchema"
74
- }
75
- },
76
- "required": [
77
- "schema"
78
- ],
79
- "type": "object"
80
- },
81
- "FormSchema": {
82
- "items": {
83
- "$ref": "#/definitions/FormSchemaEntry"
84
- },
85
- "type": "array"
86
- },
87
69
  "FormSchemaEntry": {
88
70
  "additionalProperties": false,
89
71
  "properties": {
90
- "dependencies": {
91
- "description": "This form control will show only if these dependencies are satisfied.",
92
- "items": {
93
- "additionalProperties": false,
94
- "properties": {
95
- "id": {
96
- "type": "string"
97
- },
98
- "values": {
99
- "items": {},
100
- "type": "array"
101
- }
102
- },
103
- "required": [
104
- "id"
105
- ],
106
- "type": "object"
107
- },
108
- "type": "array"
109
- },
110
72
  "id": {
111
73
  "description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
112
74
  "type": "string"
@@ -15,14 +15,6 @@ export type FormSchemaEntry = {
15
15
  */
16
16
  value?: string | number | boolean;
17
17
 
18
- /**
19
- * This form control will show only if these dependencies are satisfied.
20
- */
21
- dependencies?: {
22
- id: string;
23
- values?: any[];
24
- }[];
25
-
26
18
  readonly?: boolean;
27
19
 
28
20
  /**
@@ -44,11 +36,6 @@ export type FormSchemaEntry = {
44
36
  params?: Record<string, any>;
45
37
  };
46
38
 
47
- export type FormSchema = FormSchemaEntry[];
48
-
49
- export type FormRendererProps = {
50
- schema: FormSchema;
51
- };
52
39
  export type Component = {
53
40
  id?: string;
54
41
  style?: string;