@htmlbricks/hb-input-checkbox 0.8.42 → 0.9.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/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.42",
5
+ "version": "0.9.0",
6
6
  "main": "release/release.js",
7
7
  "publishConfig": {
8
8
  "access": "public"
@@ -30,8 +30,8 @@
30
30
  "prepublish": "npm run build:release"
31
31
  },
32
32
  "devDependencies": {
33
- "@htmlbricks/hb-jsutils": "^0.8.42",
34
- "@htmlbricks/manifester": "^0.0.5",
33
+ "@htmlbricks/hb-jsutils": "^0.9.0",
34
+ "@htmlbricks/manifester": "^0.0.9",
35
35
  "@rollup/plugin-alias": "^3.1.2",
36
36
  "@rollup/plugin-commonjs": "^18.0.0",
37
37
  "@rollup/plugin-json": "^4.1.0",
@@ -75,5 +75,5 @@
75
75
  "webcomponents"
76
76
  ],
77
77
  "contributors": [],
78
- "gitHead": "d6919a86b5627d502a37fe2a28830a32724d0a52"
78
+ "gitHead": "a041e21e8aa96b26b57435df8ef79e04f27be288"
79
79
  }
package/release/docs.mjs DELETED
@@ -1,47 +0,0 @@
1
- export var storybookArgs = {
2
- schemaentry: { control: { type: "object" } },
3
- showvalidation: { control: { type: "boolean" } },
4
- setvalid: { control: { type: "boolean" } },
5
- setvalue: { control: { type: "boolean" } },
6
- setValid: { action: "setValid" },
7
- setValue: { action: "setValue" }
8
- };
9
- var cssVars = [
10
- { name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
11
- { name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
12
- { name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
13
- { name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
14
- { name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
15
- { name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
16
- ];
17
- export var cssParts = [{ name: "invalid-feedback", description: "" }];
18
- export var htmlSlots = [];
19
- export var i18nLanguages = [];
20
- export var styleSetup = {
21
- vars: cssVars,
22
- parts: cssParts
23
- };
24
- var examples = [
25
- {
26
- schemaentry: {
27
- placeholder: "Insert your last name here...",
28
- id: "lastName",
29
- required: true,
30
- label: "Last Name",
31
- validationTip: "This field cannot be empty."
32
- }
33
- },
34
- ];
35
- export var componentSetup = {
36
- definitions: null,
37
- storybookArgs: storybookArgs,
38
- styleSetup: styleSetup,
39
- htmlSlots: htmlSlots,
40
- i18n: i18nLanguages,
41
- examples: examples,
42
- name: "hb-input-checkbox",
43
- category: "input",
44
- tags: ["input"],
45
- size: {}
46
- };
47
- //# sourceMappingURL=docs.js.map
@@ -1,83 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Component",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Component": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "id": {
9
- "type": "string"
10
- },
11
- "schemaentry": {
12
- "$ref": "#/definitions/FormSchemaEntry"
13
- },
14
- "setvalid": {
15
- "type": "boolean"
16
- },
17
- "setvalue": {
18
- "type": "boolean"
19
- },
20
- "showvalidation": {
21
- "enum": [
22
- "yes",
23
- "no"
24
- ],
25
- "type": "string"
26
- },
27
- "style": {
28
- "type": "string"
29
- }
30
- },
31
- "required": [
32
- "schemaentry"
33
- ],
34
- "type": "object"
35
- },
36
- "FormSchemaEntry": {
37
- "additionalProperties": false,
38
- "properties": {
39
- "id": {
40
- "description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
41
- "type": "string"
42
- },
43
- "label": {
44
- "description": "The descriptive label that will show alongside the form control.",
45
- "type": "string"
46
- },
47
- "params": {
48
- "description": "Other parameters that may be specific to a certain kind of form control.",
49
- "type": "object"
50
- },
51
- "placeholder": {
52
- "type": "string"
53
- },
54
- "readonly": {
55
- "type": "boolean"
56
- },
57
- "required": {
58
- "description": "This doesn't matter if the dependencies requirements aren't met.",
59
- "type": "boolean"
60
- },
61
- "validationRegex": {
62
- "type": "string"
63
- },
64
- "validationTip": {
65
- "description": "Shows if value is not valid.",
66
- "type": "string"
67
- },
68
- "value": {
69
- "description": "Optional default value.",
70
- "type": [
71
- "string",
72
- "number",
73
- "boolean"
74
- ]
75
- }
76
- },
77
- "required": [
78
- "id"
79
- ],
80
- "type": "object"
81
- }
82
- }
83
- }
@@ -1,40 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Events",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Events": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "setValid": {
9
- "additionalProperties": false,
10
- "properties": {
11
- "valid": {
12
- "type": "boolean"
13
- }
14
- },
15
- "required": [
16
- "valid"
17
- ],
18
- "type": "object"
19
- },
20
- "setValue": {
21
- "additionalProperties": false,
22
- "properties": {
23
- "value": {
24
- "type": "string"
25
- }
26
- },
27
- "required": [
28
- "value"
29
- ],
30
- "type": "object"
31
- }
32
- },
33
- "required": [
34
- "setValue",
35
- "setValid"
36
- ],
37
- "type": "object"
38
- }
39
- }
40
- }