@fastkit/vui 1.5.2 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "1.5.2",
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.2.2",
49
- "@fastkit/dom": "^0.4.1",
50
- "@fastkit/helpers": "^0.16.2",
48
+ "@fastkit/color-scheme-gen": "^1.3.0",
49
+ "@fastkit/helpers": "^0.17.0",
51
50
  "@fastkit/icon-font": "^2.2.3",
51
+ "@fastkit/dom": "^0.4.2",
52
52
  "@fastkit/media-match": "^2.2.3",
53
- "@fastkit/media-match-gen": "^1.2.2",
54
- "@fastkit/rules": "^0.16.2",
53
+ "@fastkit/media-match-gen": "^1.3.0",
55
54
  "@fastkit/stylebase": "^0.14.0",
56
- "@fastkit/tiny-logger": "^0.16.2",
57
- "@fastkit/vue-action": "^0.6.3",
58
- "@fastkit/vue-app-layout": "^0.19.3",
59
- "@fastkit/vue-body-scroll-lock": "^0.5.2",
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",
60
60
  "@fastkit/vue-click-outside": "^0.5.2",
61
- "@fastkit/vue-color-scheme": "^0.18.3",
62
- "@fastkit/vue-disabled-reason": "^0.3.2",
63
- "@fastkit/vue-form-control": "^0.25.2",
61
+ "@fastkit/vue-disabled-reason": "^0.3.3",
62
+ "@fastkit/vue-color-scheme": "^0.19.0",
64
63
  "@fastkit/vue-keyboard": "^0.5.2",
65
- "@fastkit/vue-loading": "^0.18.5",
66
- "@fastkit/vue-location": "^0.7.3",
67
- "@fastkit/vue-media-match": "^0.17.2",
68
- "@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",
69
67
  "@fastkit/vue-scroller": "^0.18.3",
70
- "@fastkit/vue-stack": "^0.20.4",
71
- "@fastkit/vue-transitions": "^0.5.2",
72
- "@fastkit/vue-utils": "^0.18.3"
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 '../../schemes/control';
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 '../../schemes';
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 './schemes';
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 './schemes';
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;
@@ -12,7 +12,7 @@ import {
12
12
  CONTROL_SIZES,
13
13
  ControlFieldVariant,
14
14
  CONTROL_FIELD_VARIANTS,
15
- } from '../schemes';
15
+ } from '../schema';
16
16
  import {
17
17
  VuiControlInjectionKey,
18
18
  VuiControlFieldInjectionKey,
@@ -1,6 +1,6 @@
1
1
  import { PropType, ExtractPropTypes, computed } from 'vue';
2
2
  import { createPropsOptions } from '@fastkit/vue-utils';
3
- import { VuiElevationValue } from '../schemes';
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 '../schemes';
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 './schemes';
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 './schemes';
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