@schukai/monster 4.56.0 → 4.58.0
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/CHANGELOG.md +23 -0
- package/package.json +1 -1
- package/source/components/data/stylesheet/metric-graph.mjs +1 -1
- package/source/components/data/stylesheet/metric.mjs +1 -1
- package/source/components/datatable/dataset.mjs +10 -0
- package/source/components/datatable/datasource/rest.mjs +141 -14
- package/source/components/datatable/datasource.mjs +8 -1
- package/source/components/datatable/datatable.mjs +3 -7
- package/source/components/datatable/save-button.mjs +348 -334
- package/source/components/datatable/status.mjs +7 -0
- package/source/components/datatable/util.mjs +7 -0
- package/source/components/form/button-bar.mjs +193 -95
- package/source/components/form/field-set.mjs +283 -283
- package/source/components/form/form.mjs +407 -162
- package/source/components/form/login.mjs +1571 -1571
- package/source/components/form/quantity.mjs +233 -233
- package/source/components/form/select.mjs +3106 -3101
- package/source/components/form/style/field-set.pcss +6 -2
- package/source/components/form/style/form.pcss +8 -0
- package/source/components/form/stylesheet/field-set.mjs +1 -1
- package/source/components/form/stylesheet/form.mjs +1 -1
- package/source/components/form/stylesheet/select.mjs +13 -6
- package/source/components/style/typography.css +2 -2
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +1 -1
- package/source/constraints/abstract.mjs +17 -17
- package/source/dom/customelement.mjs +962 -963
- package/source/dom/updater.mjs +874 -863
- package/source/dom/util/init-options-from-attributes.mjs +56 -56
- package/source/monster.mjs +0 -1
- package/source/net/webconnect.mjs +325 -325
- package/source/types/is.mjs +66 -66
|
@@ -915,12 +915,10 @@ function initEventHandler() {
|
|
|
915
915
|
) {
|
|
916
916
|
continue;
|
|
917
917
|
}
|
|
918
|
-
|
|
918
|
+
|
|
919
919
|
const cellValue = getCellValueForCopy(col);
|
|
920
920
|
if (cellValue) {
|
|
921
|
-
colTexts.push(
|
|
922
|
-
quoteOpenChar + cellValue + quoteCloseChar,
|
|
923
|
-
);
|
|
921
|
+
colTexts.push(quoteOpenChar + cellValue + quoteCloseChar);
|
|
924
922
|
}
|
|
925
923
|
}
|
|
926
924
|
|
|
@@ -985,9 +983,7 @@ function initEventHandler() {
|
|
|
985
983
|
|
|
986
984
|
const cellValue = getCellValueForCopy(col);
|
|
987
985
|
if (cellValue) {
|
|
988
|
-
currentRow.push(
|
|
989
|
-
quoteOpenChar + cellValue + quoteCloseChar,
|
|
990
|
-
);
|
|
986
|
+
currentRow.push(quoteOpenChar + cellValue + quoteCloseChar);
|
|
991
987
|
}
|
|
992
988
|
}
|
|
993
989
|
|