@schukai/monster 3.95.2 → 3.96.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 +14 -0
- package/package.json +1 -1
- package/source/components/datatable/dataset.mjs +23 -19
- package/source/components/datatable/datasource/dom.mjs +4 -6
- package/source/components/datatable/datasource/rest.mjs +469 -471
- package/source/components/datatable/datasource.mjs +0 -8
- package/source/components/datatable/pagination.mjs +433 -439
- package/source/components/datatable/status.mjs +1 -3
- package/source/components/datatable/stylesheet/pagination.mjs +13 -6
- package/source/components/datatable/util.mjs +1 -1
- package/source/components/form/select.mjs +1 -1
- package/source/components/form/toggle-switch.mjs +2 -6
- package/source/components/layout/tabs.mjs +897 -895
- package/source/components/notify/message.mjs +10 -14
- package/source/components/notify/notify.mjs +9 -13
- package/source/components/notify/stylesheet/notify.mjs +13 -6
- package/source/components/state/log.mjs +184 -184
- package/source/components/state/stylesheet/log.mjs +13 -6
- package/source/data/datasource/server/restapi.mjs +2 -3
- package/source/data/transformer.mjs +803 -806
- package/source/dom/customelement.mjs +0 -34
- package/source/dom/updater.mjs +767 -767
- package/source/i18n/time-ago.mjs +1352 -636
- package/source/monster.mjs +2 -0
- package/source/types/has.mjs +3 -6
- package/source/types/version.mjs +1 -1
- package/test/cases/components/form/form.mjs +166 -125
- package/test/cases/monster.mjs +1 -1
- package/test/web/import.js +1 -0
- package/test/web/test.html +2 -2
- package/test/web/tests.js +2080 -1433
@@ -115,12 +115,4 @@ class Datasource extends CustomElement {
|
|
115
115
|
read() {
|
116
116
|
this[dataSourceSymbol].read();
|
117
117
|
}
|
118
|
-
|
119
|
-
/**
|
120
|
-
* @return {int}
|
121
|
-
* @throws {Error} this method must be implemented by derived classes.
|
122
|
-
*/
|
123
|
-
currentPage() {
|
124
|
-
throw new Error("this method must be implemented by derived classes");
|
125
|
-
}
|
126
118
|
}
|