@volverjs/ui-vue 0.0.10-beta.1 → 0.0.10-beta.2
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 +64 -1
- package/auto-imports.d.ts +1 -1
- package/bin/icons.cjs +1 -1
- package/bin/icons.js +13 -5
- package/dist/components/VvAccordion/index.d.ts +1 -1
- package/dist/components/VvCheckbox/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +66 -66
- package/dist/components/VvCombobox/index.d.ts +22 -22
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +156 -156
- package/dist/components/VvDropdown/index.d.ts +22 -22
- package/dist/components/VvRadio/index.d.ts +1 -1
- package/dist/composables/group/useInjectedGroupState.d.ts +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +22 -22
- package/package.json +7 -6
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/stories/Button/ButtonModifiers.stories.ts +4 -14
|
@@ -48,7 +48,7 @@ export declare const VvDropdownProps: {
|
|
|
48
48
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
49
49
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
50
50
|
altBoundary?: boolean | undefined;
|
|
51
|
-
padding?: import("@floating-ui/
|
|
51
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
52
52
|
limiter?: {
|
|
53
53
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
54
54
|
options?: any;
|
|
@@ -60,7 +60,7 @@ export declare const VvDropdownProps: {
|
|
|
60
60
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
61
61
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
62
62
|
altBoundary?: boolean | undefined;
|
|
63
|
-
padding?: import("@floating-ui/
|
|
63
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
64
64
|
limiter?: {
|
|
65
65
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
66
66
|
options?: any;
|
|
@@ -76,8 +76,8 @@ export declare const VvDropdownProps: {
|
|
|
76
76
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
77
77
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
78
78
|
altBoundary?: boolean | undefined;
|
|
79
|
-
padding?: import("@floating-ui/
|
|
80
|
-
fallbackPlacements?: import("@floating-ui/
|
|
79
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
80
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
81
81
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
82
82
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
83
83
|
flipAlignment?: boolean | undefined;
|
|
@@ -88,8 +88,8 @@ export declare const VvDropdownProps: {
|
|
|
88
88
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
89
89
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
90
90
|
altBoundary?: boolean | undefined;
|
|
91
|
-
padding?: import("@floating-ui/
|
|
92
|
-
fallbackPlacements?: import("@floating-ui/
|
|
91
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
92
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
93
93
|
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
94
94
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
95
95
|
flipAlignment?: boolean | undefined;
|
|
@@ -102,16 +102,16 @@ export declare const VvDropdownProps: {
|
|
|
102
102
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
103
103
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
104
104
|
altBoundary?: boolean | undefined;
|
|
105
|
-
padding?: import("@floating-ui/
|
|
105
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
106
106
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
107
107
|
apply?: ((args: {
|
|
108
108
|
x: number;
|
|
109
109
|
y: number;
|
|
110
|
-
initialPlacement: import("@floating-ui/
|
|
111
|
-
placement: import("@floating-ui/
|
|
112
|
-
strategy: import("@floating-ui/
|
|
110
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
111
|
+
placement: import("@floating-ui/utils").Placement;
|
|
112
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
113
113
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
114
|
-
rects: import("@floating-ui/
|
|
114
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
115
115
|
platform: import("@floating-ui/core").Platform;
|
|
116
116
|
elements: import("@floating-ui/dom").Elements;
|
|
117
117
|
} & {
|
|
@@ -122,16 +122,16 @@ export declare const VvDropdownProps: {
|
|
|
122
122
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
123
123
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
124
124
|
altBoundary?: boolean | undefined;
|
|
125
|
-
padding?: import("@floating-ui/
|
|
125
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
126
126
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
127
127
|
apply?: ((args: {
|
|
128
128
|
x: number;
|
|
129
129
|
y: number;
|
|
130
|
-
initialPlacement: import("@floating-ui/
|
|
131
|
-
placement: import("@floating-ui/
|
|
132
|
-
strategy: import("@floating-ui/
|
|
130
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
131
|
+
placement: import("@floating-ui/utils").Placement;
|
|
132
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
133
133
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
134
|
-
rects: import("@floating-ui/
|
|
134
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
135
135
|
platform: import("@floating-ui/core").Platform;
|
|
136
136
|
elements: import("@floating-ui/dom").Elements;
|
|
137
137
|
} & {
|
|
@@ -149,20 +149,20 @@ export declare const VvDropdownProps: {
|
|
|
149
149
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
150
150
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
151
151
|
altBoundary?: boolean | undefined;
|
|
152
|
-
padding?: import("@floating-ui/
|
|
153
|
-
alignment?: import("@floating-ui/
|
|
152
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
153
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
154
154
|
autoAlignment?: boolean | undefined;
|
|
155
|
-
allowedPlacements?: import("@floating-ui/
|
|
155
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
156
156
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
157
157
|
} | import("@floating-ui/dom").Derivable<{
|
|
158
158
|
crossAxis?: boolean | undefined;
|
|
159
159
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
160
160
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
161
161
|
altBoundary?: boolean | undefined;
|
|
162
|
-
padding?: import("@floating-ui/
|
|
163
|
-
alignment?: import("@floating-ui/
|
|
162
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
163
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
164
164
|
autoAlignment?: boolean | undefined;
|
|
165
|
-
allowedPlacements?: import("@floating-ui/
|
|
165
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
166
166
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
167
167
|
}> | undefined>;
|
|
168
168
|
default: boolean;
|
|
@@ -39,7 +39,7 @@ export declare function useGroupProps(props: VvRadioPropsType, emit: (event: (ty
|
|
|
39
39
|
id: Ref<string | number | undefined> | undefined;
|
|
40
40
|
group: Ref<InputGroupState> | undefined;
|
|
41
41
|
isInGroup: globalThis.ComputedRef<boolean>;
|
|
42
|
-
modelValue:
|
|
42
|
+
modelValue: globalThis.WritableComputedRef<any>;
|
|
43
43
|
valid: Ref<boolean>;
|
|
44
44
|
invalid: Ref<boolean>;
|
|
45
45
|
readonly: globalThis.ComputedRef<boolean>;
|
|
@@ -6,5 +6,5 @@ import type GroupState from '../../types/group';
|
|
|
6
6
|
export declare function useInjectedGroupState<GroupStateType extends GroupState>(groupKey: string | symbol): {
|
|
7
7
|
group: Ref<GroupStateType> | undefined;
|
|
8
8
|
isInGroup: globalThis.ComputedRef<boolean>;
|
|
9
|
-
getGroupOrLocalRef: <PropsType extends object>(propName: keyof GroupStateType, props: PropsType, emit?: ((event: string, ...args: unknown[]) => void) | undefined) =>
|
|
9
|
+
getGroupOrLocalRef: <PropsType extends object>(propName: keyof GroupStateType, props: PropsType, emit?: ((event: string, ...args: unknown[]) => void) | undefined) => globalThis.WritableComputedRef<any>;
|
|
10
10
|
};
|
package/dist/icons.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const prefix$2 = "normal";
|
|
2
|
-
const lastModified$2 =
|
|
2
|
+
const lastModified$2 = 1693916210;
|
|
3
3
|
const icons$3 = {
|
|
4
4
|
add: {
|
|
5
5
|
body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 12h16m-8-8v16"/>'
|
|
@@ -614,7 +614,7 @@ const normal = {
|
|
|
614
614
|
height: height$1
|
|
615
615
|
};
|
|
616
616
|
const prefix$1 = "detailed";
|
|
617
|
-
const lastModified$1 =
|
|
617
|
+
const lastModified$1 = 1693916210;
|
|
618
618
|
const icons$2 = {
|
|
619
619
|
add: {
|
|
620
620
|
body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 15.999h24m-12-12v24"/>'
|
|
@@ -1227,7 +1227,7 @@ const detailed = {
|
|
|
1227
1227
|
height
|
|
1228
1228
|
};
|
|
1229
1229
|
const prefix = "simple";
|
|
1230
|
-
const lastModified =
|
|
1230
|
+
const lastModified = 1693916210;
|
|
1231
1231
|
const icons$1 = {
|
|
1232
1232
|
add: {
|
|
1233
1233
|
body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M.5 8h15M8 .5v15"/>'
|