@fastkit/vui 1.6.0 → 1.7.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/README.md +29 -1
- package/dist/icon-font/LICENSE +201 -0
- package/dist/icon-font/LICENSE.pictogrammers +20 -0
- package/dist/icon-font/NOTICE.md +29 -0
- package/dist/icon-font/index.css +2 -0
- package/dist/icon-font/index.d.mts +7463 -0
- package/dist/icon-font/index.mjs +7457 -0
- package/dist/icon-font/mdi.css +22362 -0
- package/dist/icon-font/mdi.woff2 +0 -0
- package/dist/vui.d.mts +8 -8
- package/package.json +13 -11
- package/LICENSE +0 -21
|
Binary file
|
package/dist/vui.d.mts
CHANGED
|
@@ -1259,10 +1259,10 @@ declare const VSnackbar: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
1259
1259
|
timeout: string | number;
|
|
1260
1260
|
navigationGuard: boolean | import("@fastkit/vue-stack").VStackNavigationGuard;
|
|
1261
1261
|
guardEffect: string | boolean;
|
|
1262
|
-
top: boolean;
|
|
1263
|
-
bottom: boolean;
|
|
1264
1262
|
left: boolean;
|
|
1265
1263
|
right: boolean;
|
|
1264
|
+
top: boolean;
|
|
1265
|
+
bottom: boolean;
|
|
1266
1266
|
}, import("@fastkit/vue-stack").MergeStackBaseSlots<import("vue").SlotsType<{}>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1267
1267
|
//#endregion
|
|
1268
1268
|
//#region src/components/VMenu/VMenu.d.ts
|
|
@@ -3917,8 +3917,8 @@ declare const VButton: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
3917
3917
|
borderColor: PropType<PaletteName>;
|
|
3918
3918
|
}>> & Readonly<{}>, {
|
|
3919
3919
|
loading: boolean;
|
|
3920
|
-
align: "left" | "right" | "center";
|
|
3921
3920
|
rounded: boolean;
|
|
3921
|
+
align: "left" | "center" | "right";
|
|
3922
3922
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3923
3923
|
//#endregion
|
|
3924
3924
|
//#region src/components/VButton/VButtonGroup.d.ts
|
|
@@ -4069,7 +4069,7 @@ declare const VPagination: import("vue").DefineComponent<import("vue").ExtractPr
|
|
|
4069
4069
|
length: string | number;
|
|
4070
4070
|
modelValue: string | number;
|
|
4071
4071
|
disabled: boolean;
|
|
4072
|
-
align: "left" | "
|
|
4072
|
+
align: "left" | "center" | "right";
|
|
4073
4073
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4074
4074
|
//#endregion
|
|
4075
4075
|
//#region src/components/VListTile/VListTile.d.ts
|
|
@@ -4280,9 +4280,9 @@ declare const VListTile: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
4280
4280
|
}>> & Readonly<{
|
|
4281
4281
|
onChangeActive?: ((isActive: boolean) => any) | undefined;
|
|
4282
4282
|
}>, {
|
|
4283
|
+
linkFallbackTag: string;
|
|
4283
4284
|
startIconEmptySpace: boolean;
|
|
4284
4285
|
exactMatch: boolean;
|
|
4285
|
-
linkFallbackTag: string;
|
|
4286
4286
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4287
4287
|
//#endregion
|
|
4288
4288
|
//#region src/components/VDrawerLayout/VDrawerLayout.d.ts
|
|
@@ -4595,9 +4595,9 @@ declare const VNavigationItem: import("vue").DefineComponent<import("vue").Extra
|
|
|
4595
4595
|
}>> & Readonly<{
|
|
4596
4596
|
onChangeActive?: ((isActive: boolean) => any) | undefined;
|
|
4597
4597
|
}>, {
|
|
4598
|
+
linkFallbackTag: string;
|
|
4598
4599
|
startIconEmptySpace: boolean;
|
|
4599
4600
|
exactMatch: boolean;
|
|
4600
|
-
linkFallbackTag: string;
|
|
4601
4601
|
depth: number;
|
|
4602
4602
|
nested: boolean;
|
|
4603
4603
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -7277,11 +7277,11 @@ declare const VForm: import("vue").DefineComponent<import("vue").ExtractPropType
|
|
|
7277
7277
|
rules: import("@fastkit/vue-form-control").RecursiveVerifiableRuleOrFn;
|
|
7278
7278
|
showOwnErrors: boolean;
|
|
7279
7279
|
detach: boolean;
|
|
7280
|
-
disableAutoScroll: boolean;
|
|
7281
7280
|
novalidate: boolean;
|
|
7282
7281
|
autoValidate: boolean;
|
|
7283
7282
|
sending: boolean;
|
|
7284
7283
|
acceptInvalidSubmission: import("@fastkit/vue-form-control").FormAcceptInvalidSubmissionSpec;
|
|
7284
|
+
disableAutoScroll: boolean;
|
|
7285
7285
|
}, import("@fastkit/vue-utils").DefinedSlots<{
|
|
7286
7286
|
default?: ((form: VueForm) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7287
7287
|
[key: string]: any;
|
|
@@ -7858,8 +7858,8 @@ declare const VToolbarMenu: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
7858
7858
|
borderColor: import("vue").PropType<PaletteName>;
|
|
7859
7859
|
}>> & Readonly<{}>, {
|
|
7860
7860
|
loading: boolean;
|
|
7861
|
-
align: "left" | "right" | "center";
|
|
7862
7861
|
rounded: boolean;
|
|
7862
|
+
align: "left" | "center" | "right";
|
|
7863
7863
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7864
7864
|
//#endregion
|
|
7865
7865
|
//#region src/components/VToolbar/VToolbarEdge.d.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -46,34 +46,36 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastkit/color-scheme": "^2.2.3",
|
|
48
48
|
"@fastkit/color-scheme-gen": "^1.3.0",
|
|
49
|
+
"@fastkit/dom": "^0.4.2",
|
|
49
50
|
"@fastkit/helpers": "^0.17.0",
|
|
50
51
|
"@fastkit/icon-font": "^2.2.3",
|
|
51
|
-
"@fastkit/dom": "^0.4.2",
|
|
52
52
|
"@fastkit/media-match": "^2.2.3",
|
|
53
53
|
"@fastkit/media-match-gen": "^1.3.0",
|
|
54
|
+
"@fastkit/rules": "^0.16.3",
|
|
54
55
|
"@fastkit/stylebase": "^0.14.0",
|
|
56
|
+
"@fastkit/tiny-logger": "^0.16.3",
|
|
55
57
|
"@fastkit/vue-action": "^0.6.4",
|
|
56
58
|
"@fastkit/vue-app-layout": "^0.19.6",
|
|
57
|
-
"@fastkit/rules": "^0.16.3",
|
|
58
59
|
"@fastkit/vue-body-scroll-lock": "^0.5.3",
|
|
59
|
-
"@fastkit/tiny-logger": "^0.16.3",
|
|
60
60
|
"@fastkit/vue-click-outside": "^0.5.2",
|
|
61
|
-
"@fastkit/vue-disabled-reason": "^0.3.3",
|
|
62
61
|
"@fastkit/vue-color-scheme": "^0.19.0",
|
|
62
|
+
"@fastkit/vue-disabled-reason": "^0.3.3",
|
|
63
|
+
"@fastkit/vue-form-control": "^0.25.3",
|
|
63
64
|
"@fastkit/vue-keyboard": "^0.5.2",
|
|
64
65
|
"@fastkit/vue-loading": "^0.18.6",
|
|
65
|
-
"@fastkit/vue-form-control": "^0.25.3",
|
|
66
66
|
"@fastkit/vue-location": "^0.7.4",
|
|
67
|
-
"@fastkit/vue-scroller": "^0.18.3",
|
|
68
67
|
"@fastkit/vue-media-match": "^0.18.0",
|
|
69
|
-
"@fastkit/vue-stack": "^0.20.5",
|
|
70
68
|
"@fastkit/vue-resize": "^0.5.3",
|
|
69
|
+
"@fastkit/vue-scroller": "^0.18.3",
|
|
70
|
+
"@fastkit/vue-stack": "^0.20.5",
|
|
71
71
|
"@fastkit/vue-transitions": "^0.5.3",
|
|
72
72
|
"@fastkit/vue-utils": "^0.18.4"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
+
"@mdi/svg": "^7.4.47",
|
|
75
76
|
"vue": "^3.5.40",
|
|
76
|
-
"vue-router": "^5.2.0"
|
|
77
|
+
"vue-router": "^5.2.0",
|
|
78
|
+
"@fastkit/icon-font-gen": "^1.0.0"
|
|
77
79
|
},
|
|
78
80
|
"peerDependencies": {
|
|
79
81
|
"vue": "^3.5.0",
|
|
@@ -91,13 +93,13 @@
|
|
|
91
93
|
}
|
|
92
94
|
},
|
|
93
95
|
"scripts": {
|
|
94
|
-
"build": "plugboy build",
|
|
96
|
+
"build": "plugboy build && node scripts/generate-icon-font.mjs",
|
|
95
97
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
96
98
|
"eslint": "eslint .",
|
|
97
99
|
"eslint:fix": "eslint . --fix",
|
|
98
100
|
"format": "pnpm run \"/^(eslint:fix|stylelint:fix)$/\"",
|
|
99
101
|
"lint": "pnpm run \"/^(eslint|stylelint)$/\"",
|
|
100
|
-
"stub": "plugboy stub",
|
|
102
|
+
"stub": "plugboy stub && node scripts/generate-icon-font.mjs",
|
|
101
103
|
"stylelint": "stylelint \"**/*.{css,scss,vue,html}\" --allow-empty-input",
|
|
102
104
|
"stylelint:fix": "stylelint \"**/*.{css,scss,vue,html}\" --fix --allow-empty-input",
|
|
103
105
|
"test": "vitest run",
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020-present, Ayumu Fujii (dadajam4) and Fastkit contributors
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|