@htmlbricks/hb-form-composer 0.68.1 → 0.68.3
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/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +33 -2
- package/package.json +1 -1
package/manifest.json
CHANGED
|
@@ -81,16 +81,19 @@
|
|
|
81
81
|
"examples": [
|
|
82
82
|
{
|
|
83
83
|
"name": "default",
|
|
84
|
+
"description": "Empty composer; build fields from the internal UI.",
|
|
84
85
|
"data": {}
|
|
85
86
|
},
|
|
86
87
|
{
|
|
87
88
|
"name": "debug",
|
|
89
|
+
"description": "Verbose logging for sub-component wiring.",
|
|
88
90
|
"data": {
|
|
89
91
|
"debug": true
|
|
90
92
|
}
|
|
91
93
|
},
|
|
92
94
|
{
|
|
93
95
|
"name": "debug-default",
|
|
96
|
+
"description": "Debug on with a one-field seed schema.",
|
|
94
97
|
"data": {
|
|
95
98
|
"debug": true,
|
|
96
99
|
"output_schema": [
|
|
@@ -107,9 +110,37 @@
|
|
|
107
110
|
}
|
|
108
111
|
]
|
|
109
112
|
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "prefillMultiField",
|
|
116
|
+
"description": "Several control types hydrated into the builder.",
|
|
117
|
+
"data": {
|
|
118
|
+
"output_schema": [
|
|
119
|
+
{
|
|
120
|
+
"label": "Email",
|
|
121
|
+
"type": "email",
|
|
122
|
+
"required": true,
|
|
123
|
+
"placeholder": "you@example.com",
|
|
124
|
+
"min": 0,
|
|
125
|
+
"max": 254
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"label": "Age",
|
|
129
|
+
"type": "number",
|
|
130
|
+
"required": false,
|
|
131
|
+
"min": 0,
|
|
132
|
+
"max": 120
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"label": "Subscribe",
|
|
136
|
+
"type": "checkbox",
|
|
137
|
+
"required": false
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
}
|
|
110
141
|
}
|
|
111
142
|
],
|
|
112
|
-
"iifeIntegrity": "sha384-
|
|
143
|
+
"iifeIntegrity": "sha384-Otv+I9xc3BhEFzJlwkpirkpUs9DeCb/wIHOgRCzrp5BRELl4ZAU4N/9XV+/nb2e6",
|
|
113
144
|
"dependencies": [
|
|
114
145
|
{
|
|
115
146
|
"name": "hb-form",
|
|
@@ -512,5 +543,5 @@
|
|
|
512
543
|
"size": {},
|
|
513
544
|
"iifePath": "main.iife.js",
|
|
514
545
|
"repoName": "@htmlbricks/hb-form-composer",
|
|
515
|
-
"version": "0.68.
|
|
546
|
+
"version": "0.68.3"
|
|
516
547
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-form-composer",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.3",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Visual form-schema builder: internal `hb-form` defines field types, validation flags, and options, mirrored into an `hb-table` preview and editable via `hb-dialogform`. Accumulates `output_schema` as the composed `hb-form` schema array and can emit debug-oriented events for each sub-component interaction.",
|
|
6
6
|
"licenses": [
|