@startinblox/core 0.19.9 → 0.19.10-beta.1
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/dist/index.js +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14021,12 +14021,14 @@ const formTemplates = {
|
|
|
14021
14021
|
range=${ifDefined(attributes.range)}
|
|
14022
14022
|
enum=${ifDefined(attributes.enum)}
|
|
14023
14023
|
values=${ifDefined(attributes.values)}
|
|
14024
|
+
option-label=${ifDefined(attributes.optionLabel)}
|
|
14025
|
+
option-value=${ifDefined(attributes.optionValue)}
|
|
14024
14026
|
order-asc=${ifDefined(attributes.orderAsc)}
|
|
14025
14027
|
order-desc=${ifDefined(attributes.orderDesc)}
|
|
14026
14028
|
?required=${attributes.required}
|
|
14027
14029
|
></solid-form-multicheckbox>
|
|
14028
14030
|
`,
|
|
14029
|
-
dependencies: [MultipleselectFormMixin, FormMixin]
|
|
14031
|
+
dependencies: [MultipleselectFormMixin, FormMixin, RangeMixin]
|
|
14030
14032
|
},
|
|
14031
14033
|
multiple: {
|
|
14032
14034
|
template: (_value, attributes) => html$1`
|
|
@@ -14048,13 +14050,15 @@ const formTemplates = {
|
|
|
14048
14050
|
data-id=${ifDefined(attributes.id)}
|
|
14049
14051
|
range=${ifDefined(attributes.range)}
|
|
14050
14052
|
values=${ifDefined(attributes.values)}
|
|
14053
|
+
option-label=${ifDefined(attributes.optionLabel)}
|
|
14054
|
+
option-value=${ifDefined(attributes.optionValue)}
|
|
14051
14055
|
order-asc=${ifDefined(attributes.orderAsc)}
|
|
14052
14056
|
order-desc=${ifDefined(attributes.orderDesc)}
|
|
14053
14057
|
?required=${attributes.required}
|
|
14054
14058
|
multiple
|
|
14055
14059
|
></solid-form-dropdown>
|
|
14056
14060
|
`,
|
|
14057
|
-
dependencies: [MultipleselectFormMixin, FormMixin]
|
|
14061
|
+
dependencies: [MultipleselectFormMixin, FormMixin, RangeMixin]
|
|
14058
14062
|
},
|
|
14059
14063
|
file: {
|
|
14060
14064
|
template: (value, attributes) => html$1`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startinblox/core",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.10-beta.1",
|
|
4
4
|
"description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|