glib-web 4.35.1 → 4.35.2

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/app.vue CHANGED
@@ -151,7 +151,7 @@ export default {
151
151
  },
152
152
  created() {
153
153
  console.debug(
154
- `Version12: ${Utils.settings.appVersion} (${Utils.settings.env})`
154
+ `Version: ${Utils.settings.appVersion} (${Utils.settings.env})`
155
155
  );
156
156
  Utils.history.saveInitialContent(this.page);
157
157
  Utils.history.restoreOnBackOrForward({
@@ -58,7 +58,7 @@ import inputVariant from '../mixins/inputVariant';
58
58
  import { determineDensity } from "../../utils/constant";
59
59
  import { triggerOnChange, triggerOnInput, useGlibInput } from "../composable/form";
60
60
  import Hash from '../../utils/hash';
61
- import { ifBoolean } from '../../utils/type';
61
+ import { isBoolean } from '../../utils/type';
62
62
 
63
63
  import { useGlibSelectable, watchNoneOfAbove } from '../composable/selectable';
64
64
  import { ref } from 'vue';
@@ -97,9 +97,9 @@ export default {
97
97
  },
98
98
  computed: {
99
99
  useChips() {
100
- ifBoolean(this.spec.useChips, (val) => {
101
- return val;
102
- });
100
+ if (isBoolean(this.spec.useChips)) {
101
+ return this.spec.useChips;
102
+ }
103
103
  return this.spec.multiple;
104
104
  },
105
105
  compName() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glib-web",
3
- "version": "4.35.1",
3
+ "version": "4.35.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {