@revolist/svelte-datagrid 4.15.6 → 4.15.8
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/svelte-datagrid.js
CHANGED
|
@@ -69,6 +69,7 @@ function RevoGrid($$anchor, $$props) {
|
|
|
69
69
|
const getContentSize = (...args) => $.get(__ref).getContentSize(...args);
|
|
70
70
|
const getSelectedRange = (...args) => $.get(__ref).getSelectedRange(...args);
|
|
71
71
|
const refreshExtraElements = (...args) => $.get(__ref).refreshExtraElements(...args);
|
|
72
|
+
const getProviders = (...args) => $.get(__ref).getProviders(...args);
|
|
72
73
|
const getWebComponent = () => $.get(__ref);
|
|
73
74
|
onMount(() => {
|
|
74
75
|
});
|
|
@@ -183,6 +184,7 @@ function RevoGrid($$anchor, $$props) {
|
|
|
183
184
|
$.bind_prop($$props, "getContentSize", getContentSize);
|
|
184
185
|
$.bind_prop($$props, "getSelectedRange", getSelectedRange);
|
|
185
186
|
$.bind_prop($$props, "refreshExtraElements", refreshExtraElements);
|
|
187
|
+
$.bind_prop($$props, "getProviders", getProviders);
|
|
186
188
|
$.bind_prop($$props, "getWebComponent", getWebComponent);
|
|
187
189
|
return $.pop({
|
|
188
190
|
refresh,
|
|
@@ -208,6 +210,7 @@ function RevoGrid($$anchor, $$props) {
|
|
|
208
210
|
getContentSize,
|
|
209
211
|
getSelectedRange,
|
|
210
212
|
refreshExtraElements,
|
|
213
|
+
getProviders,
|
|
211
214
|
getWebComponent
|
|
212
215
|
});
|
|
213
216
|
}
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
const getContentSize = (...args) => $__namespace.get(__ref).getContentSize(...args);
|
|
85
85
|
const getSelectedRange = (...args) => $__namespace.get(__ref).getSelectedRange(...args);
|
|
86
86
|
const refreshExtraElements = (...args) => $__namespace.get(__ref).refreshExtraElements(...args);
|
|
87
|
+
const getProviders = (...args) => $__namespace.get(__ref).getProviders(...args);
|
|
87
88
|
const getWebComponent = () => $__namespace.get(__ref);
|
|
88
89
|
svelte.onMount(() => {
|
|
89
90
|
});
|
|
@@ -198,6 +199,7 @@
|
|
|
198
199
|
$__namespace.bind_prop($$props, "getContentSize", getContentSize);
|
|
199
200
|
$__namespace.bind_prop($$props, "getSelectedRange", getSelectedRange);
|
|
200
201
|
$__namespace.bind_prop($$props, "refreshExtraElements", refreshExtraElements);
|
|
202
|
+
$__namespace.bind_prop($$props, "getProviders", getProviders);
|
|
201
203
|
$__namespace.bind_prop($$props, "getWebComponent", getWebComponent);
|
|
202
204
|
return $__namespace.pop({
|
|
203
205
|
refresh,
|
|
@@ -223,6 +225,7 @@
|
|
|
223
225
|
getContentSize,
|
|
224
226
|
getSelectedRange,
|
|
225
227
|
refreshExtraElements,
|
|
228
|
+
getProviders,
|
|
226
229
|
getWebComponent
|
|
227
230
|
});
|
|
228
231
|
}
|
|
@@ -404,6 +404,7 @@ export default function RevoGrid($$anchor, $$props) {
|
|
|
404
404
|
const getContentSize = (...args) => $.get(__ref).getContentSize(...args);
|
|
405
405
|
const getSelectedRange = (...args) => $.get(__ref).getSelectedRange(...args);
|
|
406
406
|
const refreshExtraElements = (...args) => $.get(__ref).refreshExtraElements(...args);
|
|
407
|
+
const getProviders = (...args) => $.get(__ref).getProviders(...args);
|
|
407
408
|
const getWebComponent = () => $.get(__ref);
|
|
408
409
|
|
|
409
410
|
onMount(() => {
|
|
@@ -530,6 +531,7 @@ export default function RevoGrid($$anchor, $$props) {
|
|
|
530
531
|
$.bind_prop($$props, 'getContentSize', getContentSize);
|
|
531
532
|
$.bind_prop($$props, 'getSelectedRange', getSelectedRange);
|
|
532
533
|
$.bind_prop($$props, 'refreshExtraElements', refreshExtraElements);
|
|
534
|
+
$.bind_prop($$props, 'getProviders', getProviders);
|
|
533
535
|
$.bind_prop($$props, 'getWebComponent', getWebComponent);
|
|
534
536
|
|
|
535
537
|
return $.pop({
|
|
@@ -556,6 +558,7 @@ export default function RevoGrid($$anchor, $$props) {
|
|
|
556
558
|
getContentSize,
|
|
557
559
|
getSelectedRange,
|
|
558
560
|
refreshExtraElements,
|
|
561
|
+
getProviders,
|
|
559
562
|
getWebComponent
|
|
560
563
|
});
|
|
561
564
|
}
|
|
@@ -68,6 +68,7 @@ export const getFocused = (...args) => __ref.getFocused(...args);
|
|
|
68
68
|
export const getContentSize = (...args) => __ref.getContentSize(...args);
|
|
69
69
|
export const getSelectedRange = (...args) => __ref.getSelectedRange(...args);
|
|
70
70
|
export const refreshExtraElements = (...args) => __ref.refreshExtraElements(...args);
|
|
71
|
+
export const getProviders = (...args) => __ref.getProviders(...args);
|
|
71
72
|
|
|
72
73
|
export const getWebComponent = () => __ref;
|
|
73
74
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revolist/svelte-datagrid",
|
|
3
|
-
"version": "4.15.
|
|
3
|
+
"version": "4.15.8",
|
|
4
4
|
"description": "Svelte DataGrid Spreadsheet component with native cell render support",
|
|
5
5
|
"main": "./dist/svelte-datagrid.umd.cjs",
|
|
6
6
|
"module": "./dist/svelte-datagrid.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"vite-plugin-dts": "^4.3.0"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@revolist/revogrid": "4.15.
|
|
76
|
+
"@revolist/revogrid": "4.15.8"
|
|
77
77
|
},
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|