@fastkit/vui 1.4.0-next.0 → 1.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "1.4.0-next.0",
3
+ "version": "1.4.0",
4
4
  "description": "A simple, extensible UI kit for Vue applications.",
5
5
  "keywords": [
6
6
  "fastkit",
@@ -44,36 +44,36 @@
44
44
  "src"
45
45
  ],
46
46
  "dependencies": {
47
- "@fastkit/color-scheme": "^2.2.0-next.0",
48
- "@fastkit/color-scheme-gen": "^1.2.0-next.0",
49
- "@fastkit/dom": "^0.4.0-next.0",
50
- "@fastkit/helpers": "^0.16.0-next.0",
51
- "@fastkit/icon-font": "^2.2.0-next.0",
52
- "@fastkit/media-match": "^2.2.0-next.0",
53
- "@fastkit/media-match-gen": "^1.2.0-next.0",
54
- "@fastkit/rules": "^0.16.0-next.0",
55
- "@fastkit/tiny-logger": "^0.16.0-next.0",
56
- "@fastkit/vue-action": "^0.6.0-next.0",
57
- "@fastkit/vue-app-layout": "^0.19.0-next.0",
58
- "@fastkit/vue-click-outside": "^0.5.0-next.0",
59
- "@fastkit/vue-disabled-reason": "^0.3.0-next.0",
60
- "@fastkit/vue-body-scroll-lock": "^0.5.0-next.0",
61
- "@fastkit/vue-form-control": "^0.25.0-next.0",
62
- "@fastkit/vue-keyboard": "^0.5.0-next.0",
63
- "@fastkit/vue-loading": "^0.18.0-next.0",
64
- "@fastkit/vue-location": "^0.7.0-next.0",
65
- "@fastkit/vue-color-scheme": "^0.18.0-next.0",
66
- "@fastkit/vue-media-match": "^0.17.0-next.0",
67
- "@fastkit/vue-resize": "^0.5.0-next.0",
68
- "@fastkit/vue-scroller": "^0.18.0-next.0",
69
- "@fastkit/vue-transitions": "^0.5.0-next.0",
70
- "@fastkit/vue-stack": "^0.20.0-next.0",
71
- "@fastkit/stylebase": "^0.13.1",
72
- "@fastkit/vue-utils": "^0.18.0-next.0"
47
+ "@fastkit/color-scheme-gen": "^1.2.0",
48
+ "@fastkit/dom": "^0.4.0",
49
+ "@fastkit/color-scheme": "^2.2.0",
50
+ "@fastkit/helpers": "^0.16.0",
51
+ "@fastkit/media-match-gen": "^1.2.0",
52
+ "@fastkit/icon-font": "^2.2.0",
53
+ "@fastkit/rules": "^0.16.0",
54
+ "@fastkit/media-match": "^2.2.0",
55
+ "@fastkit/vue-app-layout": "^0.19.0",
56
+ "@fastkit/stylebase": "^0.14.0",
57
+ "@fastkit/tiny-logger": "^0.16.0",
58
+ "@fastkit/vue-click-outside": "^0.5.0",
59
+ "@fastkit/vue-color-scheme": "^0.18.0",
60
+ "@fastkit/vue-body-scroll-lock": "^0.5.0",
61
+ "@fastkit/vue-action": "^0.6.0",
62
+ "@fastkit/vue-loading": "^0.18.0",
63
+ "@fastkit/vue-disabled-reason": "^0.3.0",
64
+ "@fastkit/vue-keyboard": "^0.5.0",
65
+ "@fastkit/vue-form-control": "^0.25.0",
66
+ "@fastkit/vue-scroller": "^0.18.0",
67
+ "@fastkit/vue-location": "^0.7.0",
68
+ "@fastkit/vue-media-match": "^0.17.0",
69
+ "@fastkit/vue-stack": "^0.20.0",
70
+ "@fastkit/vue-resize": "^0.5.0",
71
+ "@fastkit/vue-transitions": "^0.5.0",
72
+ "@fastkit/vue-utils": "^0.18.0"
73
73
  },
74
74
  "devDependencies": {
75
- "vue": "^3.5.22",
76
- "vue-router": "^4.5.1"
75
+ "vue": "^3.5.38",
76
+ "vue-router": "^5.1.0"
77
77
  },
78
78
  "peerDependencies": {
79
79
  "vue": "^3.5.0",
@@ -6,8 +6,10 @@ import { useVui } from '../../injections';
6
6
  import type { VuiService } from '../../service';
7
7
  import { RawIconProp, resolveRawIconProp } from '../VIcon';
8
8
 
9
- export interface BreadcrumbsItem
10
- extends Pick<ActionableInheritProps, 'to' | 'disabled'> {
9
+ export interface BreadcrumbsItem extends Pick<
10
+ ActionableInheritProps,
11
+ 'to' | 'disabled'
12
+ > {
11
13
  /**
12
14
  * "正確なマッチモード" を強制する場合true
13
15
  */
@@ -43,10 +43,9 @@ export const DISABLED_REASON_PROPS = {
43
43
  }),
44
44
  };
45
45
 
46
- export interface DisabledReasonInput
47
- extends ExtractPublicPropTypes<
48
- typeof DISABLED_REASON_PROPS & typeof DISABLED_REASON_BASE_PROPS
49
- > {}
46
+ export interface DisabledReasonInput extends ExtractPublicPropTypes<
47
+ typeof DISABLED_REASON_PROPS & typeof DISABLED_REASON_BASE_PROPS
48
+ > {}
50
49
 
51
50
  export const VDisabledReason = defineDisabledReasonComponent({
52
51
  name: 'VDisabledReason',
@@ -33,8 +33,9 @@ export function createNavigationItemProps() {
33
33
  };
34
34
  }
35
35
 
36
- export interface NavigationItemInput
37
- extends ExtractPropInput<ReturnType<typeof createNavigationItemProps>> {
36
+ export interface NavigationItemInput extends ExtractPropInput<
37
+ ReturnType<typeof createNavigationItemProps>
38
+ > {
38
39
  key: string | number;
39
40
  label: VNodeChild | (() => VNodeChild);
40
41
  children?: NavigationItemInput[];
package/src/service.tsx CHANGED
@@ -170,8 +170,10 @@ export interface VuiServiceOptions {
170
170
  requiredChip?: VuiVNodeResolver;
171
171
  }
172
172
 
173
- export interface RawVuiServiceOptions
174
- extends Omit<Partial<VuiServiceOptions>, 'uiSettings' | 'icons'> {
173
+ export interface RawVuiServiceOptions extends Omit<
174
+ Partial<VuiServiceOptions>,
175
+ 'uiSettings' | 'icons'
176
+ > {
175
177
  uiSettings?: RawVuiServiceUISettings;
176
178
  icons?: RawVuiServiceIconSettings;
177
179
  }