@fastkit/vui 1.5.3 → 1.6.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 +17 -0
- package/dist/vui.d.mts +28 -28
- package/dist/vui.mjs +2 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +19 -19
- 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/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.6.0",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -45,31 +45,31 @@
|
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastkit/color-scheme": "^2.2.3",
|
|
48
|
-
"@fastkit/color-scheme-gen": "^1.
|
|
49
|
-
"@fastkit/helpers": "^0.
|
|
48
|
+
"@fastkit/color-scheme-gen": "^1.3.0",
|
|
49
|
+
"@fastkit/helpers": "^0.17.0",
|
|
50
50
|
"@fastkit/icon-font": "^2.2.3",
|
|
51
|
+
"@fastkit/dom": "^0.4.2",
|
|
51
52
|
"@fastkit/media-match": "^2.2.3",
|
|
52
|
-
"@fastkit/media-match-gen": "^1.
|
|
53
|
-
"@fastkit/rules": "^0.16.2",
|
|
53
|
+
"@fastkit/media-match-gen": "^1.3.0",
|
|
54
54
|
"@fastkit/stylebase": "^0.14.0",
|
|
55
|
-
"@fastkit/
|
|
56
|
-
"@fastkit/vue-
|
|
57
|
-
"@fastkit/
|
|
58
|
-
"@fastkit/vue-body-scroll-lock": "^0.5.
|
|
55
|
+
"@fastkit/vue-action": "^0.6.4",
|
|
56
|
+
"@fastkit/vue-app-layout": "^0.19.6",
|
|
57
|
+
"@fastkit/rules": "^0.16.3",
|
|
58
|
+
"@fastkit/vue-body-scroll-lock": "^0.5.3",
|
|
59
|
+
"@fastkit/tiny-logger": "^0.16.3",
|
|
59
60
|
"@fastkit/vue-click-outside": "^0.5.2",
|
|
60
|
-
"@fastkit/vue-color-scheme": "^0.18.3",
|
|
61
61
|
"@fastkit/vue-disabled-reason": "^0.3.3",
|
|
62
|
-
"@fastkit/vue-
|
|
62
|
+
"@fastkit/vue-color-scheme": "^0.19.0",
|
|
63
63
|
"@fastkit/vue-keyboard": "^0.5.2",
|
|
64
|
-
"@fastkit/vue-loading": "^0.18.
|
|
65
|
-
"@fastkit/vue-
|
|
66
|
-
"@fastkit/vue-
|
|
67
|
-
"@fastkit/vue-resize": "^0.5.2",
|
|
64
|
+
"@fastkit/vue-loading": "^0.18.6",
|
|
65
|
+
"@fastkit/vue-form-control": "^0.25.3",
|
|
66
|
+
"@fastkit/vue-location": "^0.7.4",
|
|
68
67
|
"@fastkit/vue-scroller": "^0.18.3",
|
|
69
|
-
"@fastkit/vue-
|
|
70
|
-
"@fastkit/vue-
|
|
71
|
-
"@fastkit/vue-
|
|
72
|
-
"@fastkit/
|
|
68
|
+
"@fastkit/vue-media-match": "^0.18.0",
|
|
69
|
+
"@fastkit/vue-stack": "^0.20.5",
|
|
70
|
+
"@fastkit/vue-resize": "^0.5.3",
|
|
71
|
+
"@fastkit/vue-transitions": "^0.5.3",
|
|
72
|
+
"@fastkit/vue-utils": "^0.18.4"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"vue": "^3.5.40",
|
|
@@ -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';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|