@volverjs/ui-vue 0.0.9-beta.12 → 0.0.9-beta.13

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.
@@ -42,33 +42,94 @@ export declare const VvDropdownProps: {
42
42
  default: number;
43
43
  };
44
44
  shift: {
45
- type: PropType<boolean | Partial<import("@floating-ui/core").ShiftOptions & {
46
- rootBoundary: import("@floating-ui/core").RootBoundary;
47
- elementContext: import("@floating-ui/core").ElementContext;
48
- altBoundary: boolean;
49
- padding: import("@floating-ui/core").Padding;
50
- boundary: import("@floating-ui/dom").Boundary;
45
+ type: PropType<boolean | {
46
+ mainAxis?: boolean | undefined;
47
+ crossAxis?: boolean | undefined;
48
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
49
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
50
+ altBoundary?: boolean | undefined;
51
+ padding?: import("@floating-ui/core").Padding | undefined;
52
+ limiter?: {
53
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
54
+ options?: any;
55
+ } | undefined;
56
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
57
+ } | import("@floating-ui/dom").Derivable<{
58
+ mainAxis?: boolean | undefined;
59
+ crossAxis?: boolean | undefined;
60
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
61
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
62
+ altBoundary?: boolean | undefined;
63
+ padding?: import("@floating-ui/core").Padding | undefined;
64
+ limiter?: {
65
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
66
+ options?: any;
67
+ } | undefined;
68
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
51
69
  }> | undefined>;
52
70
  default: boolean;
53
71
  };
54
72
  flip: {
55
- type: PropType<boolean | Partial<import("@floating-ui/core").FlipOptions & {
56
- rootBoundary: import("@floating-ui/core").RootBoundary;
57
- elementContext: import("@floating-ui/core").ElementContext;
58
- altBoundary: boolean;
59
- padding: import("@floating-ui/core").Padding;
60
- boundary: import("@floating-ui/dom").Boundary;
73
+ type: PropType<boolean | {
74
+ mainAxis?: boolean | undefined;
75
+ crossAxis?: boolean | undefined;
76
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
77
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
78
+ altBoundary?: boolean | undefined;
79
+ padding?: import("@floating-ui/core").Padding | undefined;
80
+ fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
81
+ fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
82
+ fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
83
+ flipAlignment?: boolean | undefined;
84
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
85
+ } | import("@floating-ui/dom").Derivable<{
86
+ mainAxis?: boolean | undefined;
87
+ crossAxis?: boolean | undefined;
88
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
89
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
90
+ altBoundary?: boolean | undefined;
91
+ padding?: import("@floating-ui/core").Padding | undefined;
92
+ fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
93
+ fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
94
+ fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
95
+ flipAlignment?: boolean | undefined;
96
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
61
97
  }> | undefined>;
62
98
  default: boolean;
63
99
  };
64
100
  size: {
65
- type: PropType<boolean | Partial<{
66
- apply: (args: {
101
+ type: PropType<boolean | {
102
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
103
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
104
+ altBoundary?: boolean | undefined;
105
+ padding?: import("@floating-ui/core").Padding | undefined;
106
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
107
+ apply?: ((args: {
67
108
  x: number;
68
109
  y: number;
110
+ initialPlacement: import("@floating-ui/core").Placement;
69
111
  placement: import("@floating-ui/core").Placement;
70
112
  strategy: import("@floating-ui/core").Strategy;
113
+ middlewareData: import("@floating-ui/core").MiddlewareData;
114
+ rects: import("@floating-ui/core").ElementRects;
115
+ platform: import("@floating-ui/core").Platform;
116
+ elements: import("@floating-ui/dom").Elements;
117
+ } & {
118
+ availableWidth: number;
119
+ availableHeight: number;
120
+ }) => void | Promise<void>) | undefined;
121
+ } | import("@floating-ui/dom").Derivable<{
122
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
123
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
124
+ altBoundary?: boolean | undefined;
125
+ padding?: import("@floating-ui/core").Padding | undefined;
126
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
127
+ apply?: ((args: {
128
+ x: number;
129
+ y: number;
71
130
  initialPlacement: import("@floating-ui/core").Placement;
131
+ placement: import("@floating-ui/core").Placement;
132
+ strategy: import("@floating-ui/core").Strategy;
72
133
  middlewareData: import("@floating-ui/core").MiddlewareData;
73
134
  rects: import("@floating-ui/core").ElementRects;
74
135
  platform: import("@floating-ui/core").Platform;
@@ -76,25 +137,33 @@ export declare const VvDropdownProps: {
76
137
  } & {
77
138
  availableWidth: number;
78
139
  availableHeight: number;
79
- }) => void | Promise<void>;
80
- } & {
81
- rootBoundary: import("@floating-ui/core").RootBoundary;
82
- elementContext: import("@floating-ui/core").ElementContext;
83
- altBoundary: boolean;
84
- padding: import("@floating-ui/core").Padding;
85
- boundary: import("@floating-ui/dom").Boundary;
140
+ }) => void | Promise<void>) | undefined;
86
141
  }> | undefined>;
87
142
  default: () => {
88
143
  padding: number;
89
144
  };
90
145
  };
91
146
  autoPlacement: {
92
- type: PropType<boolean | Partial<import("@floating-ui/core").AutoPlacementOptions & {
93
- rootBoundary: import("@floating-ui/core").RootBoundary;
94
- elementContext: import("@floating-ui/core").ElementContext;
95
- altBoundary: boolean;
96
- padding: import("@floating-ui/core").Padding;
97
- boundary: import("@floating-ui/dom").Boundary;
147
+ type: PropType<boolean | {
148
+ crossAxis?: boolean | undefined;
149
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
150
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
151
+ altBoundary?: boolean | undefined;
152
+ padding?: import("@floating-ui/core").Padding | undefined;
153
+ alignment?: import("@floating-ui/core").Alignment | null | undefined;
154
+ autoAlignment?: boolean | undefined;
155
+ allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
156
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
157
+ } | import("@floating-ui/dom").Derivable<{
158
+ crossAxis?: boolean | undefined;
159
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
160
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
161
+ altBoundary?: boolean | undefined;
162
+ padding?: import("@floating-ui/core").Padding | undefined;
163
+ alignment?: import("@floating-ui/core").Alignment | null | undefined;
164
+ autoAlignment?: boolean | undefined;
165
+ allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
166
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
98
167
  }> | undefined>;
99
168
  default: boolean;
100
169
  };
@@ -141,8 +141,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
141
141
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
142
142
  }, {
143
143
  disabled: boolean;
144
- options: (string | Option)[];
145
144
  floating: boolean;
145
+ options: (string | Option)[];
146
146
  modelValue: string | number | boolean | unknown[] | Record<string, any>;
147
147
  tabindex: string | number;
148
148
  unselectable: boolean;
package/dist/icons.es.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const prefix$2 = "normal";
2
- const lastModified$2 = 1689165769;
2
+ const lastModified$2 = 1689926205;
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 = 1689165769;
617
+ const lastModified$1 = 1689926205;
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 = 1689165769;
1230
+ const lastModified = 1689926205;
1231
1231
  const icons$1 = {
1232
1232
  add: {
1233
1233
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M.5 8h15M8 .5v15"/>'