@fastkit/vui 1.5.3 → 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 +46 -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 +30 -30
- package/dist/vui.mjs +2 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +24 -22
- package/src/components/VButton/VButton.tsx +1 -1
- package/src/components/VControlField/VControlField.tsx +1 -1
- package/src/components/VGrid/VGridContainer.tsx +1 -1
- package/src/components/VGrid/VGridItem.tsx +1 -1
- package/src/composables/control.ts +1 -1
- package/src/composables/elevation.ts +1 -1
- package/src/composables/form-selector.tsx +1 -1
- package/src/index.ts +1 -1
- package/src/service.tsx +1 -1
- package/LICENSE +0 -21
- /package/src/components/VGrid/{schemes.ts → schema.ts} +0 -0
- /package/src/{schemes → schema}/control.ts +0 -0
- /package/src/{schemes → schema}/elevation.ts +0 -0
- /package/src/{schemes → schema}/index.ts +0 -0
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",
|
|
@@ -45,35 +45,37 @@
|
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastkit/color-scheme": "^2.2.3",
|
|
48
|
-
"@fastkit/color-scheme-gen": "^1.
|
|
49
|
-
"@fastkit/
|
|
48
|
+
"@fastkit/color-scheme-gen": "^1.3.0",
|
|
49
|
+
"@fastkit/dom": "^0.4.2",
|
|
50
|
+
"@fastkit/helpers": "^0.17.0",
|
|
50
51
|
"@fastkit/icon-font": "^2.2.3",
|
|
51
52
|
"@fastkit/media-match": "^2.2.3",
|
|
52
|
-
"@fastkit/media-match-gen": "^1.
|
|
53
|
-
"@fastkit/rules": "^0.16.
|
|
53
|
+
"@fastkit/media-match-gen": "^1.3.0",
|
|
54
|
+
"@fastkit/rules": "^0.16.3",
|
|
54
55
|
"@fastkit/stylebase": "^0.14.0",
|
|
55
|
-
"@fastkit/tiny-logger": "^0.16.
|
|
56
|
-
"@fastkit/vue-action": "^0.6.
|
|
57
|
-
"@fastkit/vue-app-layout": "^0.19.
|
|
58
|
-
"@fastkit/vue-body-scroll-lock": "^0.5.
|
|
56
|
+
"@fastkit/tiny-logger": "^0.16.3",
|
|
57
|
+
"@fastkit/vue-action": "^0.6.4",
|
|
58
|
+
"@fastkit/vue-app-layout": "^0.19.6",
|
|
59
|
+
"@fastkit/vue-body-scroll-lock": "^0.5.3",
|
|
59
60
|
"@fastkit/vue-click-outside": "^0.5.2",
|
|
60
|
-
"@fastkit/vue-color-scheme": "^0.
|
|
61
|
+
"@fastkit/vue-color-scheme": "^0.19.0",
|
|
61
62
|
"@fastkit/vue-disabled-reason": "^0.3.3",
|
|
62
|
-
"@fastkit/vue-form-control": "^0.25.
|
|
63
|
+
"@fastkit/vue-form-control": "^0.25.3",
|
|
63
64
|
"@fastkit/vue-keyboard": "^0.5.2",
|
|
64
|
-
"@fastkit/vue-loading": "^0.18.
|
|
65
|
-
"@fastkit/vue-location": "^0.7.
|
|
66
|
-
"@fastkit/vue-media-match": "^0.
|
|
67
|
-
"@fastkit/vue-resize": "^0.5.
|
|
65
|
+
"@fastkit/vue-loading": "^0.18.6",
|
|
66
|
+
"@fastkit/vue-location": "^0.7.4",
|
|
67
|
+
"@fastkit/vue-media-match": "^0.18.0",
|
|
68
|
+
"@fastkit/vue-resize": "^0.5.3",
|
|
68
69
|
"@fastkit/vue-scroller": "^0.18.3",
|
|
69
|
-
"@fastkit/vue-stack": "^0.20.
|
|
70
|
-
"@fastkit/vue-transitions": "^0.5.
|
|
71
|
-
"@fastkit/vue-utils": "^0.18.
|
|
72
|
-
"@fastkit/dom": "^0.4.1"
|
|
70
|
+
"@fastkit/vue-stack": "^0.20.5",
|
|
71
|
+
"@fastkit/vue-transitions": "^0.5.3",
|
|
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",
|
|
@@ -16,7 +16,7 @@ import { VAction, actionableInheritProps } from '@fastkit/vue-action';
|
|
|
16
16
|
import { useVui } from '../../injections';
|
|
17
17
|
import { createControlProps, useControl } from '../../composables';
|
|
18
18
|
import { VProgressCircular } from '../loading';
|
|
19
|
-
import { ControlSize } from '../../
|
|
19
|
+
import { ControlSize } from '../../schema/control';
|
|
20
20
|
import { VIcon } from '../VIcon';
|
|
21
21
|
import type { IconName } from '../VIcon';
|
|
22
22
|
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
} from '../../composables';
|
|
19
19
|
import { useVuiColorProvider } from '../../injections';
|
|
20
20
|
import { VProgressCircular } from '../loading';
|
|
21
|
-
import { CONTROL_LOADING_SPINNER_SIZES } from '../../
|
|
21
|
+
import { CONTROL_LOADING_SPINNER_SIZES } from '../../schema';
|
|
22
22
|
|
|
23
23
|
const ADORNMENT_POSITIONS = ['start', 'end'] as const;
|
|
24
24
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './VGridContainer.scss';
|
|
2
2
|
|
|
3
3
|
import { defineComponent, computed } from 'vue';
|
|
4
|
-
import { RawGridValueProp, extractRawGridValueClasses } from './
|
|
4
|
+
import { RawGridValueProp, extractRawGridValueClasses } from './schema';
|
|
5
5
|
|
|
6
6
|
export type GridContainerSpacingValue =
|
|
7
7
|
| 0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './VGridItem.scss';
|
|
2
2
|
|
|
3
3
|
import { defineComponent, computed } from 'vue';
|
|
4
|
-
import { RawGridValueProp, extractRawGridValueClasses } from './
|
|
4
|
+
import { RawGridValueProp, extractRawGridValueClasses } from './schema';
|
|
5
5
|
|
|
6
6
|
export type GridItemNumberSizeValue =
|
|
7
7
|
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType, ExtractPropTypes, computed } from 'vue';
|
|
2
2
|
import { createPropsOptions } from '@fastkit/vue-utils';
|
|
3
|
-
import { VuiElevationValue } from '../
|
|
3
|
+
import { VuiElevationValue } from '../schema';
|
|
4
4
|
|
|
5
5
|
export function createElevationProps() {
|
|
6
6
|
return createPropsOptions({
|
|
@@ -20,7 +20,7 @@ import { createControlProps, useControl } from './control';
|
|
|
20
20
|
import { VFormControl } from '../components/VFormControl';
|
|
21
21
|
import { useVui } from '../injections';
|
|
22
22
|
import { VProgressCircular } from '../components/loading';
|
|
23
|
-
import { CONTROL_LOADING_SPINNER_SIZES } from '../
|
|
23
|
+
import { CONTROL_LOADING_SPINNER_SIZES } from '../schema';
|
|
24
24
|
|
|
25
25
|
export interface DefineFormSelectorComponentOptions {
|
|
26
26
|
name: string;
|
package/src/index.ts
CHANGED
|
@@ -22,7 +22,7 @@ export * from '@fastkit/vue-loading';
|
|
|
22
22
|
// @MEMO Alias export
|
|
23
23
|
export { VAction as VLink } from '@fastkit/vue-action';
|
|
24
24
|
|
|
25
|
-
export * from './
|
|
25
|
+
export * from './schema';
|
|
26
26
|
export * from './composables';
|
|
27
27
|
export * from './components';
|
|
28
28
|
export * from './service';
|
package/src/service.tsx
CHANGED
|
@@ -28,7 +28,7 @@ import { getDocumentScroller, UseScroller } from '@fastkit/vue-scroller';
|
|
|
28
28
|
import { VForm } from './components/VForm';
|
|
29
29
|
import { VTextField, TextFieldInput } from './components/VTextField';
|
|
30
30
|
import type { IconName, RawIconProp } from './components/VIcon';
|
|
31
|
-
import { ControlSize } from './
|
|
31
|
+
import { ControlSize } from './schema';
|
|
32
32
|
import { VButton } from './components/VButton';
|
|
33
33
|
import { VDialog } from './components/VDialog';
|
|
34
34
|
import { VSnackbar } from './components/VSnackbar';
|
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.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|