@public-ui/svelte 4.1.4-rc.5 → 4.1.4
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2256,6 +2256,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2256
2256
|
let _on = $__namespace.prop($$props, "_on", 8, void 0);
|
|
2257
2257
|
let _hasSettingsMenu = $__namespace.prop($$props, "_hasSettingsMenu", 8, void 0);
|
|
2258
2258
|
const getSelection = (...args) => $__namespace.get(__ref).getSelection(...args);
|
|
2259
|
+
const resetSort = (...args) => $__namespace.get(__ref).resetSort(...args);
|
|
2259
2260
|
const getWebComponent = () => $__namespace.get(__ref);
|
|
2260
2261
|
svelte.onMount(() => {
|
|
2261
2262
|
$__namespace.set(__mounted, true);
|
|
@@ -2270,7 +2271,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2270
2271
|
if ($__namespace.get(__mounted)) setProp("_on", _on());
|
|
2271
2272
|
});
|
|
2272
2273
|
$__namespace.legacy_pre_effect_reset();
|
|
2273
|
-
var $$exports = { getSelection, getWebComponent };
|
|
2274
|
+
var $$exports = { getSelection, resetSort, getWebComponent };
|
|
2274
2275
|
$__namespace.init();
|
|
2275
2276
|
var kol_table_stateful = root$7();
|
|
2276
2277
|
$__namespace.template_effect(() => $__namespace.set_custom_element_data(kol_table_stateful, "_allow-multi-sort", _allowMultiSort()));
|
|
@@ -2288,6 +2289,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2288
2289
|
$__namespace.bind_this(kol_table_stateful, ($$value) => $__namespace.set(__ref, $$value), () => $__namespace.get(__ref));
|
|
2289
2290
|
$__namespace.append($$anchor, kol_table_stateful);
|
|
2290
2291
|
$__namespace.bind_prop($$props, "getSelection", getSelection);
|
|
2292
|
+
$__namespace.bind_prop($$props, "resetSort", resetSort);
|
|
2291
2293
|
$__namespace.bind_prop($$props, "getWebComponent", getWebComponent);
|
|
2292
2294
|
return $__namespace.pop($$exports);
|
|
2293
2295
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -2240,6 +2240,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2240
2240
|
let _on = $.prop($$props, "_on", 8, void 0);
|
|
2241
2241
|
let _hasSettingsMenu = $.prop($$props, "_hasSettingsMenu", 8, void 0);
|
|
2242
2242
|
const getSelection = (...args) => $.get(__ref).getSelection(...args);
|
|
2243
|
+
const resetSort = (...args) => $.get(__ref).resetSort(...args);
|
|
2243
2244
|
const getWebComponent = () => $.get(__ref);
|
|
2244
2245
|
onMount(() => {
|
|
2245
2246
|
$.set(__mounted, true);
|
|
@@ -2254,7 +2255,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2254
2255
|
if ($.get(__mounted)) setProp("_on", _on());
|
|
2255
2256
|
});
|
|
2256
2257
|
$.legacy_pre_effect_reset();
|
|
2257
|
-
var $$exports = { getSelection, getWebComponent };
|
|
2258
|
+
var $$exports = { getSelection, resetSort, getWebComponent };
|
|
2258
2259
|
$.init();
|
|
2259
2260
|
var kol_table_stateful = root$7();
|
|
2260
2261
|
$.template_effect(() => $.set_custom_element_data(kol_table_stateful, "_allow-multi-sort", _allowMultiSort()));
|
|
@@ -2272,6 +2273,7 @@ function KolTableStateful($$anchor, $$props) {
|
|
|
2272
2273
|
$.bind_this(kol_table_stateful, ($$value) => $.set(__ref, $$value), () => $.get(__ref));
|
|
2273
2274
|
$.append($$anchor, kol_table_stateful);
|
|
2274
2275
|
$.bind_prop($$props, "getSelection", getSelection);
|
|
2276
|
+
$.bind_prop($$props, "resetSort", resetSort);
|
|
2275
2277
|
$.bind_prop($$props, "getWebComponent", getWebComponent);
|
|
2276
2278
|
return $.pop($$exports);
|
|
2277
2279
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/svelte",
|
|
3
|
-
"version": "4.1.4
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"svelte": "5.55.5",
|
|
51
51
|
"typescript": "5.9.3",
|
|
52
52
|
"unbuild": "3.6.1",
|
|
53
|
-
"@public-ui/components": "4.1.4
|
|
53
|
+
"@public-ui/components": "4.1.4"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"svelte": "^5.55.5",
|
|
57
|
-
"@public-ui/components": "4.1.4
|
|
57
|
+
"@public-ui/components": "4.1.4"
|
|
58
58
|
},
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"type": "module",
|