@fastkit/vui 1.4.0 → 1.4.1
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/after-effects/spacing.scss +5 -15
- package/dist/vui.css +972 -972
- package/dist/vui.d.mts +12 -13
- package/dist/vui.mjs.map +1 -1
- package/package.json +26 -26
- package/src/components/VDataTable/VDataTable.tsx +1 -2
- package/src/components/VGrid/VGridContainer.tsx +1 -4
- package/src/components/VGrid/VGridItem.tsx +1 -12
- package/src/components/VGrid/schemes.ts +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fastkit",
|
|
@@ -44,32 +44,32 @@
|
|
|
44
44
|
"src"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@fastkit/
|
|
48
|
-
"@fastkit/
|
|
49
|
-
"@fastkit/
|
|
50
|
-
"@fastkit/
|
|
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",
|
|
47
|
+
"@fastkit/helpers": "^0.16.1",
|
|
48
|
+
"@fastkit/color-scheme": "^2.2.1",
|
|
49
|
+
"@fastkit/icon-font": "^2.2.1",
|
|
50
|
+
"@fastkit/media-match-gen": "^1.2.1",
|
|
56
51
|
"@fastkit/stylebase": "^0.14.0",
|
|
57
|
-
"@fastkit/
|
|
58
|
-
"@fastkit/
|
|
59
|
-
"@fastkit/
|
|
60
|
-
"@fastkit/
|
|
61
|
-
"@fastkit/
|
|
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/vue-
|
|
72
|
-
"@fastkit/vue-
|
|
52
|
+
"@fastkit/dom": "^0.4.1",
|
|
53
|
+
"@fastkit/tiny-logger": "^0.16.1",
|
|
54
|
+
"@fastkit/media-match": "^2.2.1",
|
|
55
|
+
"@fastkit/color-scheme-gen": "^1.2.1",
|
|
56
|
+
"@fastkit/rules": "^0.16.1",
|
|
57
|
+
"@fastkit/vue-action": "^0.6.1",
|
|
58
|
+
"@fastkit/vue-click-outside": "^0.5.1",
|
|
59
|
+
"@fastkit/vue-disabled-reason": "^0.3.1",
|
|
60
|
+
"@fastkit/vue-color-scheme": "^0.18.1",
|
|
61
|
+
"@fastkit/vue-app-layout": "^0.19.1",
|
|
62
|
+
"@fastkit/vue-keyboard": "^0.5.1",
|
|
63
|
+
"@fastkit/vue-body-scroll-lock": "^0.5.1",
|
|
64
|
+
"@fastkit/vue-loading": "^0.18.1",
|
|
65
|
+
"@fastkit/vue-scroller": "^0.18.1",
|
|
66
|
+
"@fastkit/vue-media-match": "^0.17.1",
|
|
67
|
+
"@fastkit/vue-resize": "^0.5.1",
|
|
68
|
+
"@fastkit/vue-form-control": "^0.25.1",
|
|
69
|
+
"@fastkit/vue-location": "^0.7.1",
|
|
70
|
+
"@fastkit/vue-stack": "^0.20.1",
|
|
71
|
+
"@fastkit/vue-transitions": "^0.5.1",
|
|
72
|
+
"@fastkit/vue-utils": "^0.18.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"vue": "^3.5.38",
|
|
@@ -101,8 +101,7 @@ export type DataTableRowSettingsFn<T extends DataTableItem = DataTableItem> = (
|
|
|
101
101
|
) => DataTableRowSettings<T>;
|
|
102
102
|
|
|
103
103
|
export type RawDataTableRowSettings<T extends DataTableItem = DataTableItem> =
|
|
104
|
-
|
|
|
105
|
-
| DataTableRowSettings<T>;
|
|
104
|
+
DataTableRowSettingsFn<T> | DataTableRowSettings<T>;
|
|
106
105
|
|
|
107
106
|
const SELECTABLE_HEADER_SYMBOL = '__selectable_header__';
|
|
108
107
|
|
|
@@ -31,10 +31,7 @@ function spacingValueToString(value: GridContainerSpacingValue): string {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
export type GridContainerDirectionValue =
|
|
34
|
-
| 'row'
|
|
35
|
-
| 'row-reverse'
|
|
36
|
-
| 'column'
|
|
37
|
-
| 'column-reverse';
|
|
34
|
+
'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
38
35
|
|
|
39
36
|
export type GridContainerWrapValue = 'wrap' | 'nowrap' | 'wrap-reverse';
|
|
40
37
|
|
|
@@ -4,18 +4,7 @@ import { defineComponent, computed } from 'vue';
|
|
|
4
4
|
import { RawGridValueProp, extractRawGridValueClasses } from './schemes';
|
|
5
5
|
|
|
6
6
|
export type GridItemNumberSizeValue =
|
|
7
|
-
|
|
|
8
|
-
| 2
|
|
9
|
-
| 3
|
|
10
|
-
| 4
|
|
11
|
-
| 5
|
|
12
|
-
| 6
|
|
13
|
-
| 7
|
|
14
|
-
| 8
|
|
15
|
-
| 9
|
|
16
|
-
| 10
|
|
17
|
-
| 11
|
|
18
|
-
| 12;
|
|
7
|
+
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
19
8
|
|
|
20
9
|
export type GridItemSizeValue = GridItemNumberSizeValue | 'auto';
|
|
21
10
|
|
|
@@ -2,9 +2,7 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import { MediaMatchKey } from '@fastkit/media-match';
|
|
3
3
|
|
|
4
4
|
export type RawGridValue<T extends number | string = number | string> =
|
|
5
|
-
| T
|
|
6
|
-
| Partial<Record<MediaMatchKey, T>>
|
|
7
|
-
| undefined;
|
|
5
|
+
T | Partial<Record<MediaMatchKey, T>> | undefined;
|
|
8
6
|
|
|
9
7
|
export type RawGridValueProp<T extends number | string = number | string> =
|
|
10
8
|
PropType<RawGridValue<T>>;
|