@qnc/qnc_data_tables 1.0.3 → 1.0.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/qnc_data_tables.js
CHANGED
|
@@ -76,7 +76,7 @@ function log_error(xhr) {
|
|
|
76
76
|
an empty alert. These conditions are also met when there is a network failure, however there is no info to
|
|
77
77
|
show in an alert so logging without alerting still makes sense.
|
|
78
78
|
*/
|
|
79
|
-
console.warn("
|
|
79
|
+
console.warn("qnc_data_tables xhr error: ", xhr);
|
|
80
80
|
if (xhr.status != 0 || xhr.statusText != "" || xhr.responseText != "") {
|
|
81
81
|
alert("Data table error: " + xhr.responseText || xhr.statusText);
|
|
82
82
|
}
|
|
@@ -119,7 +119,7 @@ function render_help_text(text) {
|
|
|
119
119
|
e.preventDefault();
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
|
-
className: "
|
|
122
|
+
className: "qnc-data-table-help-text",
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
125
|
function render_header({ text, help_text, sortable, sorted, sorted_reverse, sort, sort_reverse, }) {
|
|
@@ -127,13 +127,13 @@ function render_header({ text, help_text, sortable, sorted, sorted_reverse, sort
|
|
|
127
127
|
if (sortable)
|
|
128
128
|
return m("button", {
|
|
129
129
|
onclick: sorted ? sort_reverse : sort,
|
|
130
|
-
className: "
|
|
130
|
+
className: "qnc-data-table-header-button",
|
|
131
131
|
},
|
|
132
132
|
// The wrapping span is so that you can see (in your browsers dev tools) exactly how wide the button content is, in case you want to fix column width at that width
|
|
133
133
|
// (note - button _might_ also suffice for this, but users might style button as full-width, for increased click target size)
|
|
134
|
-
m("span", m("span", { className: "
|
|
135
|
-
m("span", { className: "
|
|
136
|
-
m("span", { className: "
|
|
134
|
+
m("span", m("span", { className: "qnc-data-table-header-button-text" }, text, " ", help_text), sorted &&
|
|
135
|
+
m("span", { className: "qnc-data-table-sort-indicator" }, " ▲"), sorted_reverse &&
|
|
136
|
+
m("span", { className: "qnc-data-table-sort-indicator" }, " ▼")));
|
|
137
137
|
// The wrapping span is so that you can see (in your browsers dev tools) exactly how wide the text content is, in case you want to fix column width at that width
|
|
138
138
|
return m("span", text, " ", help_text);
|
|
139
139
|
// OR, show text (always) with button (only when sortable) :
|
|
@@ -232,7 +232,7 @@ export function register_renderer(name, renderer) {
|
|
|
232
232
|
}
|
|
233
233
|
register_renderer("default", default_renderer);
|
|
234
234
|
function column_width_property_name(key) {
|
|
235
|
-
return `--
|
|
235
|
+
return `--qdt-column-${key}-width`;
|
|
236
236
|
}
|
|
237
237
|
function column_width_style(key) {
|
|
238
238
|
return `var(${column_width_property_name(key)})`;
|
|
@@ -477,7 +477,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
477
477
|
const data = require_json_map(safe_json_parse(this.responseText));
|
|
478
478
|
const ids = require_array(data.ids);
|
|
479
479
|
filtered_ids = ids;
|
|
480
|
-
container_element.dispatchEvent(new CustomEvent("
|
|
480
|
+
container_element.dispatchEvent(new CustomEvent("qnc-data-table-ids-loaded", {
|
|
481
481
|
detail: filtered_ids,
|
|
482
482
|
bubbles: true,
|
|
483
483
|
}));
|
|
@@ -584,7 +584,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
584
584
|
}, sortable_columns.map((c, index) => m("li", {
|
|
585
585
|
"data-key": c.key,
|
|
586
586
|
key: c.key,
|
|
587
|
-
className: "
|
|
587
|
+
className: "qnc-data-table-column-item",
|
|
588
588
|
}, m("label", m("input", {
|
|
589
589
|
type: "checkbox",
|
|
590
590
|
checked: c.enabled,
|
|
@@ -601,7 +601,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
601
601
|
function checkbox_cell(checked, set_checked) {
|
|
602
602
|
return m("label", {
|
|
603
603
|
role: "cell",
|
|
604
|
-
className: "
|
|
604
|
+
className: "qnc-data-table-row-checkbox-label",
|
|
605
605
|
}, m("input", {
|
|
606
606
|
type: "checkbox",
|
|
607
607
|
checked: checked,
|
|
@@ -611,7 +611,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
611
611
|
function empty_checkbox_cell() {
|
|
612
612
|
return m("div", {
|
|
613
613
|
role: "columnheader",
|
|
614
|
-
className: "
|
|
614
|
+
className: "qnc-data-table-row-checkbox-label",
|
|
615
615
|
},
|
|
616
616
|
// Render an invisible checkbox, so this header cell takes up the same width as the rest of the checkbox cells
|
|
617
617
|
m("input", {
|
|
@@ -697,7 +697,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
697
697
|
style: {
|
|
698
698
|
width: column_width_style(c.key),
|
|
699
699
|
},
|
|
700
|
-
class: "
|
|
700
|
+
class: "qdt-resizable-header",
|
|
701
701
|
}, m("div", // the only reason this div is here is so that it has "overflow: hidden;", while the parent element has "overflow: visible" (to allow resize handle to overflow)
|
|
702
702
|
options.renderer.header({
|
|
703
703
|
text: c.display,
|
|
@@ -717,7 +717,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
717
717
|
},
|
|
718
718
|
})), m("span", {
|
|
719
719
|
onmousedown: begin_header_drag.bind(null, c),
|
|
720
|
-
class: "
|
|
720
|
+
class: "qdt-column-resizer",
|
|
721
721
|
}));
|
|
722
722
|
}
|
|
723
723
|
function render() {
|
|
@@ -728,7 +728,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
728
728
|
const page_ids = table_data.map((r) => r.pk);
|
|
729
729
|
const thead_rows = m("div", {
|
|
730
730
|
role: "row",
|
|
731
|
-
className: `
|
|
731
|
+
className: `qnc-data-table-row qnc-data-table-header-row qnc-data-table-row-${key_prefix}`,
|
|
732
732
|
oncreate: (vnode) => (header_row = vnode.dom),
|
|
733
733
|
},
|
|
734
734
|
// "overflow-left detector"
|
|
@@ -740,10 +740,10 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
740
740
|
oncreate: (vnode) => setup_left_overflow_detector(vnode.dom),
|
|
741
741
|
})), has_selection_actions && empty_checkbox_cell(), fixed_columns.filter((c) => c.enabled).map(header_cell), m("div", {
|
|
742
742
|
role: "columnheader",
|
|
743
|
-
class: `
|
|
743
|
+
class: `qdt-overflow-indicator-cell qdt-overflow-indicator-cell-left`,
|
|
744
744
|
}), sortable_columns.filter((c) => c.enabled).map(header_cell), empty_expanding_cell("columnheader"), m("div", {
|
|
745
745
|
role: "columnheader",
|
|
746
|
-
class: `
|
|
746
|
+
class: `qdt-overflow-indicator-cell qdt-overflow-indicator-cell-right`,
|
|
747
747
|
}),
|
|
748
748
|
// "overflow-right detector"
|
|
749
749
|
m("div", {
|
|
@@ -756,7 +756,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
756
756
|
function table_row(checkbox_cell, fixed_cells, sortable_cells) {
|
|
757
757
|
return m("div", {
|
|
758
758
|
role: "row",
|
|
759
|
-
className: `
|
|
759
|
+
className: `qnc-data-table-row qnc-data-table-body-row qnc-data-table-row-${key_prefix}`,
|
|
760
760
|
},
|
|
761
761
|
// Empty "scroll detector" column
|
|
762
762
|
m("div", {
|
|
@@ -773,10 +773,10 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
773
773
|
// ),
|
|
774
774
|
fixed_cells, m("div", {
|
|
775
775
|
role: "cell",
|
|
776
|
-
class: `
|
|
776
|
+
class: `qdt-overflow-indicator-cell qdt-overflow-indicator-cell-left`,
|
|
777
777
|
}), sortable_cells, empty_expanding_cell(), m("div", {
|
|
778
778
|
role: "cell",
|
|
779
|
-
class: `
|
|
779
|
+
class: `qdt-overflow-indicator-cell qdt-overflow-indicator-cell-right`,
|
|
780
780
|
}),
|
|
781
781
|
// Empty "overflow detector" column
|
|
782
782
|
m("div", {
|
|
@@ -862,7 +862,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
862
862
|
table_data_loading: is_loading(id_list_xhr) || is_loading(page_xhr),
|
|
863
863
|
table: m("div", {
|
|
864
864
|
oncreate: (vnode) => (table_element = vnode.dom),
|
|
865
|
-
class: "
|
|
865
|
+
class: "qnc-data-table",
|
|
866
866
|
role: "table",
|
|
867
867
|
style: all_columns()
|
|
868
868
|
.map((c) => `${column_width_property_name(c.key)}: ${c.width}px`)
|
|
@@ -870,20 +870,20 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
870
870
|
},
|
|
871
871
|
// "overflow-top detector"
|
|
872
872
|
m("div", {
|
|
873
|
-
id: "
|
|
873
|
+
id: "qdt-overflow-top-detector",
|
|
874
874
|
oncreate: (vnode) => setup_top_overflow_detector(vnode.dom),
|
|
875
875
|
}), m("div", {
|
|
876
|
-
class: "
|
|
876
|
+
class: "qnc-data-table-head",
|
|
877
877
|
role: "rowgroup",
|
|
878
|
-
}, thead_rows, m("div", { id: "
|
|
879
|
-
class: "
|
|
878
|
+
}, thead_rows, m("div", { id: "qdt-overflow-top-indicator" })), m("div", {
|
|
879
|
+
class: "qnc-data-table-body",
|
|
880
880
|
role: "rowgroup",
|
|
881
881
|
}, tbody_rows),
|
|
882
882
|
// "overflow-bottom detector"
|
|
883
883
|
m("div", {
|
|
884
|
-
id: "
|
|
884
|
+
id: "qdt-overflow-bottom-detector",
|
|
885
885
|
oncreate: (vnode) => setup_bottom_overflow_detector(vnode.dom),
|
|
886
|
-
}), m("div", { id: "
|
|
886
|
+
}), m("div", { id: "qdt-overflow-bottom-indicator" })),
|
|
887
887
|
current_page: page,
|
|
888
888
|
total_pages: Math.ceil(filtered_ids.length / page_size),
|
|
889
889
|
set_page: set_page,
|
|
@@ -936,7 +936,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
936
936
|
function setup_top_overflow_detector(detector_cell) {
|
|
937
937
|
new IntersectionObserver((entries, observer) => {
|
|
938
938
|
if (table_element && entries[0]) {
|
|
939
|
-
table_element.classList.toggle("
|
|
939
|
+
table_element.classList.toggle("qdt-overflows-top", !entries[0].isIntersecting);
|
|
940
940
|
}
|
|
941
941
|
}, {
|
|
942
942
|
root: table_element,
|
|
@@ -945,7 +945,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
945
945
|
function setup_bottom_overflow_detector(detector_cell) {
|
|
946
946
|
new IntersectionObserver(function (entries, observer) {
|
|
947
947
|
if (table_element && entries[0]) {
|
|
948
|
-
table_element.classList.toggle("
|
|
948
|
+
table_element.classList.toggle("qdt-overflows-bottom", !entries[0].isIntersecting);
|
|
949
949
|
}
|
|
950
950
|
}, {
|
|
951
951
|
root: table_element,
|
|
@@ -954,7 +954,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
954
954
|
function setup_left_overflow_detector(detector_cell) {
|
|
955
955
|
new IntersectionObserver(function (entries, observer) {
|
|
956
956
|
if (table_element && entries[0]) {
|
|
957
|
-
table_element.classList.toggle("
|
|
957
|
+
table_element.classList.toggle("qdt-overflows-left", !entries[0].isIntersecting);
|
|
958
958
|
}
|
|
959
959
|
}, {
|
|
960
960
|
root: table_element,
|
|
@@ -963,7 +963,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
963
963
|
function setup_right_overflow_detector(detector_cell) {
|
|
964
964
|
new IntersectionObserver(function (entries, observer) {
|
|
965
965
|
if (table_element && entries[0]) {
|
|
966
|
-
table_element.classList.toggle("
|
|
966
|
+
table_element.classList.toggle("qdt-overflows-right", !entries[0].isIntersecting);
|
|
967
967
|
}
|
|
968
968
|
}, {
|
|
969
969
|
root: table_element,
|
|
@@ -997,11 +997,11 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
997
997
|
cell = cell.nextElementSibling;
|
|
998
998
|
}
|
|
999
999
|
s.innerHTML = `
|
|
1000
|
-
.
|
|
1001
|
-
#
|
|
1002
|
-
#
|
|
1003
|
-
#
|
|
1004
|
-
#
|
|
1000
|
+
.qnc-data-table-row-${key_prefix}{width: ${row_width}px;}
|
|
1001
|
+
#qdt-overflow-top-indicator{width: ${row_width}px;}
|
|
1002
|
+
#qdt-overflow-top-detector{width: ${row_width}px;}
|
|
1003
|
+
#qdt-overflow-bottom-indicator{width: ${row_width}px;}
|
|
1004
|
+
#qdt-overflow-bottom-detector{width: ${row_width}px;}
|
|
1005
1005
|
`;
|
|
1006
1006
|
}
|
|
1007
1007
|
function update_sticky_column_style() {
|
|
@@ -1019,7 +1019,7 @@ function mount_data_table(container_element, columns, partial_options) {
|
|
|
1019
1019
|
const cell = header_row.children[i];
|
|
1020
1020
|
if (!cell)
|
|
1021
1021
|
break;
|
|
1022
|
-
sticky_column_style_element.innerHTML += `.
|
|
1022
|
+
sticky_column_style_element.innerHTML += `.qnc-data-table-row-${key_prefix} > :nth-child(${i + 1}) {
|
|
1023
1023
|
position: sticky;
|
|
1024
1024
|
left: ${previous_width}px;
|
|
1025
1025
|
z-index: 2;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
//
|
|
2
|
-
var qnc_data_tables_min_default = '.
|
|
1
|
+
// _whjjqwaeu:/Users/alex/projects/qnc_data_tables/front-end/intermediate/qnc_data_tables.min.css
|
|
2
|
+
var qnc_data_tables_min_default = '.qnc-data-table{display:block;max-width:100%;overflow-x:auto;overflow-y:auto}.qnc-data-table-head{display:block;position:sticky;top:0;z-index:3}.qnc-data-table-header-button{border:none;border-radius:0;padding:0;font:inherit;color:inherit;text-decoration:none;background-color:transparent}.qnc-data-table-header-button-text{text-decoration:underline}.qnc-data-table-header-button{line-height:1.2;cursor:pointer}.qnc-data-table-sort-indicator{text-decoration:none;font-size:.8em}.qnc-data-table-body{display:block;z-index:2}.qnc-data-table-row{min-width:100%;display:flex;align-items:stretch;justify-content:flex-start}.qnc-data-table-header-row div[role=columnheader]:nth-last-child(1 of div.qdt-resizable-header){overflow:hidden}.qnc-data-table-row *{overflow:hidden;text-overflow:ellipsis}.qnc-data-table-row>*{flex-grow:0;flex-shrink:0;padding:8px 16px;box-sizing:content-box;background-color:#fff}.qnc-data-table-row-checkbox-label{width:auto}.qnc-data-table-body-row{white-space:nowrap}.qnc-data-tables-wrapping-content{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;overflow-wrap:break-word;text-overflow:ellipsis;hyphens:auto;white-space:normal}.qnc-data-table-row-checkbox-label{flex-grow:0;flex-shrink:0}.qnc-data-table-row-checkbox-label:hover>input{transform:scale(1.2)}.qnc-data-tables-overflow-indicator{font-size:.8em;padding:.1em .5em;border-radius:.5em;color:#fff;background-color:#888}.qnc-data-table-body>.qnc-data-table-row:hover>*{background-color:#ccc}.qnc-data-table-help-text:before{display:inline;content:"?"}.qnc-data-table-help-text{font-size:.7em;font-family:helvetica,arial,sans-serif;font-weight:700;text-decoration:none;cursor:pointer;display:inline-block;vertical-align:text-top;height:1.2em;width:1.2em;line-height:1.3;text-align:center;background-color:#aaa;border-radius:1000px;color:#fff;border:none;padding:0}.qdt-overflow-indicator-cell{width:0;padding:0;border:none;pointer-events:none;overflow:visible;position:sticky;opacity:0;transition:opacity .2s linear;z-index:1}.qdt-overflow-indicator-cell-right{right:0}.qdt-overflows-left>*>*>.qdt-overflow-indicator-cell-left,.qdt-overflows-right>*>*>.qdt-overflow-indicator-cell-right{opacity:1}#qdt-overflow-top-indicator{opacity:0;height:0px;background-color:#aaa;pointer-events:none;box-shadow:0 0 15px 5px #8888}.qdt-overflows-top #qdt-overflow-top-indicator{opacity:1}#qdt-overflow-bottom-indicator{position:sticky;bottom:0;left:0;z-index:3;opacity:0;height:0px;background-color:#aaa;pointer-events:none;box-shadow:0 0 15px 5px #8888}.qdt-overflows-bottom #qdt-overflow-bottom-indicator{opacity:1}#qdt-overflow-top-detector,#qdt-overflow-bottom-detector{width:100%;pointer-events:none;height:0px}.qdt-overflow-indicator-cell-left:after{content:" ";height:100%;position:absolute;top:0;width:15px;box-shadow:15px 0 15px -15px #8888 inset;right:-15px}.qdt-overflow-indicator-cell-right:after{content:" ";height:100%;position:absolute;top:0;width:15px;box-shadow:-15px 0 15px -15px #8888 inset;right:0}.qdt-resizable-header{position:relative;overflow:visible}.qdt-column-resizer{overflow:visible;border-right:1px solid #ccc;cursor:col-resize;position:absolute;z-index:1;top:0;right:0;height:100%;width:0}.qdt-column-resizer:after{content:"";display:block;position:absolute;width:1em;height:100%;top:0;left:0;transform:translate(-50%)}\n';
|
|
3
3
|
|
|
4
4
|
// src/qnc_data_tables_css.js
|
|
5
5
|
var qnc_data_tables_css_default = qnc_data_tables_min_default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es6.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/mithril/index.d.ts","../node_modules/@qnc/drag_sorter/dist/npm/drag_sorter.d.ts","../src/qnc_data_tables_inline_css.d.ts","../src/qnc_data_tables.ts"],"fileIdsList":[[19,20,21]],"fileInfos":[{"version":"df039a67536fe2acc3affdcbfb645892f842db36fe599e8e652e2f0c640a90d1","impliedFormat":1},{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4f7cb8a662bd8b8eec4a712d2bfc40cb2efc3248292dcd2a7fa80d5935c85e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebdfbfedbd3b85bb714d114c948f30e6ff0991a6162d3b01cd18a2d9c8aa0bb7","impliedFormat":99},{"version":"6112bc1341c6e1a3f072a934b0de0e26982a18cac9b97944f4cb86158ee58f00","impliedFormat":99},{"version":"
|
|
1
|
+
{"fileNames":["../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es6.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.nvm/versions/node/v22.16.0/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/mithril/index.d.ts","../node_modules/@qnc/drag_sorter/dist/npm/drag_sorter.d.ts","../src/qnc_data_tables_inline_css.d.ts","../src/qnc_data_tables.ts"],"fileIdsList":[[19,20,21]],"fileInfos":[{"version":"df039a67536fe2acc3affdcbfb645892f842db36fe599e8e652e2f0c640a90d1","impliedFormat":1},{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4f7cb8a662bd8b8eec4a712d2bfc40cb2efc3248292dcd2a7fa80d5935c85e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebdfbfedbd3b85bb714d114c948f30e6ff0991a6162d3b01cd18a2d9c8aa0bb7","impliedFormat":99},{"version":"6112bc1341c6e1a3f072a934b0de0e26982a18cac9b97944f4cb86158ee58f00","impliedFormat":99},{"version":"f50a035fc22774601148adadc2658fb6eadfe75e61a9f47a1de9ad5484297636","signature":"900aedb381fbbe59ae8934a6dddc2da285002ae61980f11b71ec73dd5690f488","impliedFormat":99}],"root":[21,22],"options":{"declaration":true,"esModuleInterop":true,"module":199,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"./","strict":true,"target":2},"referencedMap":[[22,1]],"version":"5.8.3"}
|