@fastkit/vui 0.16.27 → 0.16.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "0.16.27",
3
+ "version": "0.16.28",
4
4
  "description": "A simple, extensible UI kit for Vue applications.",
5
5
  "keywords": [
6
6
  "fastkit",
@@ -44,31 +44,31 @@
44
44
  "src"
45
45
  ],
46
46
  "dependencies": {
47
- "@fastkit/color-scheme": "1.0.8",
48
- "@fastkit/color-scheme-gen": "0.13.8",
49
- "@fastkit/dom": "0.1.1",
50
- "@fastkit/helpers": "0.13.1",
51
- "@fastkit/icon-font": "1.0.7",
52
- "@fastkit/media-match": "1.0.7",
53
- "@fastkit/media-match-gen": "0.13.8",
54
- "@fastkit/rules": "0.13.2",
47
+ "@fastkit/color-scheme": "1.0.9",
48
+ "@fastkit/color-scheme-gen": "0.13.9",
49
+ "@fastkit/dom": "0.1.2",
50
+ "@fastkit/helpers": "0.13.2",
51
+ "@fastkit/icon-font": "1.0.8",
52
+ "@fastkit/media-match": "1.0.8",
53
+ "@fastkit/media-match-gen": "0.13.9",
54
+ "@fastkit/rules": "0.13.3",
55
55
  "@fastkit/stylebase": "0.13.0",
56
- "@fastkit/tiny-logger": "0.13.1",
57
- "@fastkit/vue-action": "0.2.3",
58
- "@fastkit/vue-app-layout": "0.14.2",
59
- "@fastkit/vue-body-scroll-lock": "0.1.3",
60
- "@fastkit/vue-click-outside": "0.1.3",
61
- "@fastkit/vue-color-scheme": "0.14.3",
62
- "@fastkit/vue-form-control": "0.15.16",
63
- "@fastkit/vue-keyboard": "0.1.1",
64
- "@fastkit/vue-loading": "0.14.4",
65
- "@fastkit/vue-location": "0.1.3",
66
- "@fastkit/vue-media-match": "0.13.8",
67
- "@fastkit/vue-resize": "0.1.3",
68
- "@fastkit/vue-scroller": "0.14.2",
69
- "@fastkit/vue-stack": "0.15.14",
70
- "@fastkit/vue-transitions": "0.1.4",
71
- "@fastkit/vue-utils": "0.14.1"
56
+ "@fastkit/tiny-logger": "0.13.2",
57
+ "@fastkit/vue-action": "0.2.4",
58
+ "@fastkit/vue-app-layout": "0.14.3",
59
+ "@fastkit/vue-body-scroll-lock": "0.1.4",
60
+ "@fastkit/vue-click-outside": "0.1.4",
61
+ "@fastkit/vue-color-scheme": "0.14.4",
62
+ "@fastkit/vue-form-control": "0.15.17",
63
+ "@fastkit/vue-keyboard": "0.1.2",
64
+ "@fastkit/vue-loading": "0.14.5",
65
+ "@fastkit/vue-location": "0.1.4",
66
+ "@fastkit/vue-media-match": "0.13.9",
67
+ "@fastkit/vue-resize": "0.1.4",
68
+ "@fastkit/vue-scroller": "0.14.3",
69
+ "@fastkit/vue-stack": "0.15.15",
70
+ "@fastkit/vue-transitions": "0.1.5",
71
+ "@fastkit/vue-utils": "0.14.2"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "vue": "^3.3.0",
@@ -181,7 +181,9 @@ export const VPagination = defineComponent({
181
181
  let result = beforeChange(newPage);
182
182
  if (isPromise(result)) result = await result;
183
183
  if (result === false) return;
184
- } catch (e) {}
184
+ } catch (e) {
185
+ // noop
186
+ }
185
187
  }
186
188
  if (routeQuery) {
187
189
  const to = createRoutableLocationByPage(newPage, routeQuery);
@@ -190,7 +190,6 @@ export const VTabs = defineComponent({
190
190
  if (isPromise(result)) {
191
191
  result = await result;
192
192
  }
193
- console.log(result);
194
193
  if (result === false) {
195
194
  return;
196
195
  }