@schukai/monster 3.101.2 → 3.102.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 +21 -0
- package/package.json +1 -1
- package/source/components/content/copy.mjs +1 -5
- package/source/components/datatable/datatable.mjs +8 -8
- package/source/components/datatable/filter/date-range.mjs +1 -3
- package/source/components/datatable/style/column-bar.pcss +1 -1
- package/source/components/datatable/style/datatable.pcss +5 -1
- package/source/components/datatable/stylesheet/datatable.mjs +7 -14
- package/source/components/form/button-bar.mjs +1 -6
- package/source/components/form/field-set.mjs +6 -6
- package/source/components/form/popper-button.mjs +1 -5
- package/source/components/form/select.mjs +44 -12
- package/source/components/form/tree-select.mjs +1 -2
- package/source/components/host/call-button.mjs +124 -126
- package/source/components/host/viewer.mjs +1 -1
- package/source/components/layout/popper.mjs +1 -5
- package/source/data/datasource/server/restapi.mjs +191 -191
- package/source/data/transformer.mjs +827 -829
- package/source/dom/customelement.mjs +1 -1
- package/source/dom/updater.mjs +792 -768
- package/source/types/internal.mjs +1 -0
@@ -964,7 +964,7 @@ function initOptionObserver() {
|
|
964
964
|
/**
|
965
965
|
* @private
|
966
966
|
* @return {object}
|
967
|
-
* @throws {TypeError} value is not
|
967
|
+
* @throws {TypeError} value is not an object
|
968
968
|
*/
|
969
969
|
function getOptionsFromScriptTag() {
|
970
970
|
if (!this.hasAttribute(ATTRIBUTE_OPTIONS_SELECTOR)) {
|