@public-ui/svelte 4.0.0-alpha.5 → 4.0.0-alpha.6
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.cjs +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -436,6 +436,7 @@ function KolCombobox($$anchor, $$props) {
|
|
|
436
436
|
let _msg = $__namespace.prop($$props, "_msg", 8, void 0);
|
|
437
437
|
let _name = $__namespace.prop($$props, "_name", 8, void 0);
|
|
438
438
|
let _on = $__namespace.prop($$props, "_on", 8, void 0);
|
|
439
|
+
let _hideClearButton = $__namespace.prop($$props, "_hideClearButton", 8, void 0);
|
|
439
440
|
let _suggestions = $__namespace.prop($$props, "_suggestions", 8);
|
|
440
441
|
let _required = $__namespace.prop($$props, "_required", 8, void 0);
|
|
441
442
|
let _shortKey = $__namespace.prop($$props, "_shortKey", 8, void 0);
|
|
@@ -470,6 +471,7 @@ function KolCombobox($$anchor, $$props) {
|
|
|
470
471
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_label", _label()));
|
|
471
472
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_msg", _msg()));
|
|
472
473
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_name", _name()));
|
|
474
|
+
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_hide-clear-button", _hideClearButton()));
|
|
473
475
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_suggestions", _suggestions()));
|
|
474
476
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_required", _required()));
|
|
475
477
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_combobox, "_short-key", _shortKey()));
|
package/dist/index.mjs
CHANGED
|
@@ -420,6 +420,7 @@ function KolCombobox($$anchor, $$props) {
|
|
|
420
420
|
let _msg = $.prop($$props, "_msg", 8, void 0);
|
|
421
421
|
let _name = $.prop($$props, "_name", 8, void 0);
|
|
422
422
|
let _on = $.prop($$props, "_on", 8, void 0);
|
|
423
|
+
let _hideClearButton = $.prop($$props, "_hideClearButton", 8, void 0);
|
|
423
424
|
let _suggestions = $.prop($$props, "_suggestions", 8);
|
|
424
425
|
let _required = $.prop($$props, "_required", 8, void 0);
|
|
425
426
|
let _shortKey = $.prop($$props, "_shortKey", 8, void 0);
|
|
@@ -454,6 +455,7 @@ function KolCombobox($$anchor, $$props) {
|
|
|
454
455
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_label", _label()));
|
|
455
456
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_msg", _msg()));
|
|
456
457
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_name", _name()));
|
|
458
|
+
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_hide-clear-button", _hideClearButton()));
|
|
457
459
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_suggestions", _suggestions()));
|
|
458
460
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_required", _required()));
|
|
459
461
|
$.template_effect(() => $.set_custom_element_data(kol_combobox, "_short-key", _shortKey()));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/svelte",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.6",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"svelte": "5.40.2",
|
|
53
53
|
"typescript": "5.9.3",
|
|
54
54
|
"unbuild": "3.6.1",
|
|
55
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
55
|
+
"@public-ui/components": "4.0.0-alpha.6"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"svelte": "^5.40.2",
|
|
59
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
59
|
+
"@public-ui/components": "4.0.0-alpha.6"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|