@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/dist/vui.css +1350 -1334
- package/dist/vui.d.mts +1921 -1924
- package/dist/vui.mjs +92 -139
- package/dist/vui.mjs.map +1 -1
- package/package.json +29 -29
- package/src/components/VBreadcrumbs/VBreadcrumbs.tsx +4 -2
- package/src/components/VDisabledReason/VDisabledReason.tsx +3 -4
- package/src/components/VNavigation/VNavigationItem.tsx +3 -2
- package/src/service.tsx +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "1.4.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": "^
|
|
48
|
-
"@fastkit/
|
|
49
|
-
"@fastkit/
|
|
50
|
-
"@fastkit/helpers": "^0.16.0
|
|
51
|
-
"@fastkit/
|
|
52
|
-
"@fastkit/
|
|
53
|
-
"@fastkit/
|
|
54
|
-
"@fastkit/
|
|
55
|
-
"@fastkit/
|
|
56
|
-
"@fastkit/
|
|
57
|
-
"@fastkit/
|
|
58
|
-
"@fastkit/vue-click-outside": "^0.5.0
|
|
59
|
-
"@fastkit/vue-
|
|
60
|
-
"@fastkit/vue-body-scroll-lock": "^0.5.0
|
|
61
|
-
"@fastkit/vue-
|
|
62
|
-
"@fastkit/vue-
|
|
63
|
-
"@fastkit/vue-
|
|
64
|
-
"@fastkit/vue-
|
|
65
|
-
"@fastkit/vue-
|
|
66
|
-
"@fastkit/vue-
|
|
67
|
-
"@fastkit/vue-
|
|
68
|
-
"@fastkit/vue-
|
|
69
|
-
"@fastkit/vue-
|
|
70
|
-
"@fastkit/vue-
|
|
71
|
-
"@fastkit/
|
|
72
|
-
"@fastkit/vue-utils": "^0.18.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.
|
|
76
|
-
"vue-router": "^
|
|
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
|
-
|
|
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
|
-
|
|
48
|
-
|
|
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
|
-
|
|
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
|
-
|
|
173
|
+
export interface RawVuiServiceOptions extends Omit<
|
|
174
|
+
Partial<VuiServiceOptions>,
|
|
175
|
+
'uiSettings' | 'icons'
|
|
176
|
+
> {
|
|
175
177
|
uiSettings?: RawVuiServiceUISettings;
|
|
176
178
|
icons?: RawVuiServiceIconSettings;
|
|
177
179
|
}
|