vlite3 1.4.31 → 1.4.32
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/components/Accordion/Accordion.vue.js +19 -16
- package/components/Accordion/AccordionContent.vue.js +2 -2
- package/components/Accordion/AccordionItem.vue.js +38 -36
- package/components/CategoryManager/CategoryManager.vue2.js +4 -3
- package/components/Chart/GanttChart.vue.d.ts +13 -1
- package/components/Chart/GanttChart.vue.js +2 -2
- package/components/Chart/GanttChart.vue2.js +1185 -607
- package/components/Chart/GanttChartDateUtils.d.ts +38 -0
- package/components/Chart/GanttChartDateUtils.js +79 -0
- package/components/Chart/GanttChartDependencyUtils.d.ts +92 -0
- package/components/Chart/GanttChartDependencyUtils.js +113 -0
- package/components/Chart/GanttChartResizePreviewUtils.d.ts +52 -0
- package/components/Chart/GanttChartResizePreviewUtils.js +53 -0
- package/components/Chart/GanttChartTooltipUtils.d.ts +41 -0
- package/components/Chart/GanttChartTooltipUtils.js +63 -0
- package/components/Chart/index.d.ts +3 -1
- package/components/Chart/types.d.ts +76 -1
- package/components/Chart/types.js +8 -0
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/Form/AccordionView.vue2.js +5 -2
- package/components/Form/AccordionView.vue3.js +250 -0
- package/components/Form/Form.vue.js +2 -2
- package/components/Form/Form.vue2.js +309 -280
- package/components/Form/FormField.vue.js +175 -196
- package/components/Form/FormFields.vue.js +1 -1
- package/components/Form/FormFields.vue2.js +60 -60
- package/components/Form/FormSkeleton.vue.js +50 -35
- package/components/Form/TableView.vue.js +59 -43
- package/components/Form/composables/useForm.js +159 -148
- package/components/Form/index.vue2.js +8 -8
- package/components/Form/utils/form.utils.d.ts +2 -0
- package/components/Form/utils/form.utils.js +17 -13
- package/components/GoogleMap.vue.d.ts +1 -1
- package/components/PanZoomViewport/PanZoomViewport.vue.d.ts +189 -0
- package/components/PanZoomViewport/PanZoomViewport.vue.js +7 -0
- package/components/PanZoomViewport/PanZoomViewport.vue2.js +536 -0
- package/components/PanZoomViewport/index.d.ts +2 -0
- package/components/PanZoomViewport/types.d.ts +121 -0
- package/components/ScaleGenerator/ScaleGenerator.vue.d.ts +3 -0
- package/components/ScaleGenerator/ScaleGenerator.vue.js +5 -108
- package/components/ScaleGenerator/ScaleGenerator.vue2.js +143 -2
- package/components/ScaleGenerator/types.d.ts +2 -0
- package/components/Screen/ScreenFilter.vue.js +19 -18
- package/components/SeoProvider/SeoProvider.vue.d.ts +4 -1
- package/components/SeoProvider/SeoProvider.vue.js +39 -33
- package/components/SeoProvider/domAdapter.d.ts +1 -4
- package/components/SeoProvider/domAdapter.js +71 -58
- package/components/SeoProvider/index.d.ts +5 -2
- package/components/SeoProvider/normalizeSeo.d.ts +10 -49
- package/components/SeoProvider/normalizeSeo.js +246 -182
- package/components/SeoProvider/plainText.d.ts +8 -0
- package/components/SeoProvider/plainText.js +117 -0
- package/components/SeoProvider/seoUrl.d.ts +13 -0
- package/components/SeoProvider/seoUrl.js +25 -0
- package/components/SeoProvider/structuredData.d.ts +100 -0
- package/components/SeoProvider/structuredData.js +33 -0
- package/components/SeoProvider/types.d.ts +47 -109
- package/components/Tabes/Tabes.vue.js +1 -1
- package/components/Tabes/Tabes.vue2.js +215 -193
- package/components/Tabes/TabesMarkerGeometry.d.ts +34 -0
- package/components/Tabes/TabesMarkerGeometry.js +21 -0
- package/components/ThemeProvider/ThemeProvider.vue.d.ts +2 -0
- package/components/ThemeProvider/ThemeProvider.vue.js +29 -23
- package/components/ThemeProvider/index.d.ts +1 -1
- package/components/ThemeProvider/themeVars.d.ts +9 -13
- package/components/ThemeProvider/themeVars.js +173 -125
- package/components/ThemeProvider/types.d.ts +10 -0
- package/components/index.d.ts +2 -1
- package/index.d.ts +1 -0
- package/index.js +415 -387
- package/package.json +3 -2
- package/style.css +1 -1
- package/components/Form/AccordionView.vue.js +0 -222
- /package/components/ColorPicker/{ColorIro.vue.js → ColorIro.vue2.js} +0 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import { PanZoomViewportActionOptions, PanZoomViewportAlignment, PanZoomViewportChangeMeta, PanZoomViewportFitOptions, PanZoomViewportPanOptions, PanZoomViewportProps, PanZoomViewportSize, PanZoomViewportTransform, PanZoomViewportZoomAvailability, PanZoomViewportZoomOptions } from './types';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {
|
|
6
|
+
transform: PanZoomViewportTransform;
|
|
7
|
+
viewportSize: PanZoomViewportSize;
|
|
8
|
+
contentSize: PanZoomViewportSize;
|
|
9
|
+
ready: boolean;
|
|
10
|
+
panning: boolean;
|
|
11
|
+
canZoomIn: boolean;
|
|
12
|
+
canZoomOut: boolean;
|
|
13
|
+
}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {
|
|
16
|
+
viewportRef: HTMLDivElement;
|
|
17
|
+
contentRef: HTMLDivElement;
|
|
18
|
+
};
|
|
19
|
+
rootEl: HTMLDivElement;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<PanZoomViewportProps, {
|
|
23
|
+
zoomIn: (options
|
|
24
|
+
/**
|
|
25
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
26
|
+
*
|
|
27
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
28
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
29
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
30
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
31
|
+
*
|
|
32
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
33
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
34
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
35
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
36
|
+
*/
|
|
37
|
+
?: PanZoomViewportZoomOptions) => void;
|
|
38
|
+
zoomOut: (options
|
|
39
|
+
/**
|
|
40
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
41
|
+
*
|
|
42
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
43
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
44
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
45
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
46
|
+
*
|
|
47
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
48
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
49
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
50
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
51
|
+
*/
|
|
52
|
+
?: PanZoomViewportZoomOptions) => void;
|
|
53
|
+
setScale: (scale: number, options
|
|
54
|
+
/**
|
|
55
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
56
|
+
*
|
|
57
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
58
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
59
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
60
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
61
|
+
*
|
|
62
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
63
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
64
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
65
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
66
|
+
*/
|
|
67
|
+
?: PanZoomViewportZoomOptions) => void;
|
|
68
|
+
setTransform: (transform: PanZoomViewportTransform, options
|
|
69
|
+
/**
|
|
70
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
71
|
+
*
|
|
72
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
73
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
74
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
75
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
76
|
+
*
|
|
77
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
78
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
79
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
80
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
81
|
+
*/
|
|
82
|
+
?: PanZoomViewportActionOptions) => void;
|
|
83
|
+
panBy: (deltaX: number, deltaY: number, options
|
|
84
|
+
/**
|
|
85
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
86
|
+
*
|
|
87
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
88
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
89
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
90
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
91
|
+
*
|
|
92
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
93
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
94
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
95
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
96
|
+
*/
|
|
97
|
+
?: PanZoomViewportPanOptions) => void;
|
|
98
|
+
reset: (options
|
|
99
|
+
/**
|
|
100
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
101
|
+
*
|
|
102
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
103
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
104
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
105
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
106
|
+
*
|
|
107
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
108
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
109
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
110
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
111
|
+
*/
|
|
112
|
+
?: PanZoomViewportActionOptions) => void;
|
|
113
|
+
fitToContent: (options
|
|
114
|
+
/**
|
|
115
|
+
* Generic transform-only viewport for arbitrary slotted content.
|
|
116
|
+
*
|
|
117
|
+
* Gesture deltas arrive in visual/client pixels while the transform is written
|
|
118
|
+
* in this element's local CSS pixels. Every client-space operation therefore
|
|
119
|
+
* normalizes through getBoundingClientRect() / layout size so nested ancestor
|
|
120
|
+
* transforms and non-unity browser pixel ratios do not distort navigation.
|
|
121
|
+
*
|
|
122
|
+
* Performance (docs/6-performance.md): DOM nodes and replace-only geometry use
|
|
123
|
+
* shallowRef; translate/scale is painted directly onto the content layer each
|
|
124
|
+
* rAF; layout style objects keep stable identity when unchanged; both layers
|
|
125
|
+
* use will-change + contain; observers/frames/timers are cleared on unmount.
|
|
126
|
+
*/
|
|
127
|
+
?: PanZoomViewportFitOptions) => boolean;
|
|
128
|
+
canZoomIn: () => boolean;
|
|
129
|
+
canZoomOut: () => boolean;
|
|
130
|
+
focus: () => void;
|
|
131
|
+
getViewportElement: () => HTMLElement | null;
|
|
132
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
133
|
+
change: (value: PanZoomViewportTransform, meta: PanZoomViewportChangeMeta) => any;
|
|
134
|
+
"update:modelValue": (value: PanZoomViewportTransform) => any;
|
|
135
|
+
"update:ready": (value: boolean) => any;
|
|
136
|
+
"update:viewportSize": (value: PanZoomViewportSize) => any;
|
|
137
|
+
"update:contentSize": (value: PanZoomViewportSize) => any;
|
|
138
|
+
"pan-start": () => any;
|
|
139
|
+
"pan-end": () => any;
|
|
140
|
+
"zoom-availability-change": (value: PanZoomViewportZoomAvailability) => any;
|
|
141
|
+
}, string, import('vue').PublicProps, Readonly<PanZoomViewportProps> & Readonly<{
|
|
142
|
+
onChange?: (value: PanZoomViewportTransform, meta: PanZoomViewportChangeMeta) => any;
|
|
143
|
+
"onUpdate:modelValue"?: (value: PanZoomViewportTransform) => any;
|
|
144
|
+
"onUpdate:ready"?: (value: boolean) => any;
|
|
145
|
+
"onUpdate:viewportSize"?: (value: PanZoomViewportSize) => any;
|
|
146
|
+
"onUpdate:contentSize"?: (value: PanZoomViewportSize) => any;
|
|
147
|
+
"onPan-start"?: () => any;
|
|
148
|
+
"onPan-end"?: () => any;
|
|
149
|
+
"onZoom-availability-change"?: (value: PanZoomViewportZoomAvailability) => any;
|
|
150
|
+
}>, {
|
|
151
|
+
disabled: boolean;
|
|
152
|
+
modelValue: PanZoomViewportTransform;
|
|
153
|
+
contentClass: string;
|
|
154
|
+
minScale: number;
|
|
155
|
+
maxScale: number;
|
|
156
|
+
keyboard: boolean;
|
|
157
|
+
zoomStep: number;
|
|
158
|
+
wheelZoomSpeed: number;
|
|
159
|
+
keyboardPanStep: number;
|
|
160
|
+
fitPadding: number;
|
|
161
|
+
fitMode: import('./types').PanZoomViewportFitMode;
|
|
162
|
+
fitAlignX: PanZoomViewportAlignment;
|
|
163
|
+
fitAlignY: PanZoomViewportAlignment;
|
|
164
|
+
initialFit: boolean;
|
|
165
|
+
autoFitOnResize: boolean;
|
|
166
|
+
zoomEnabled: boolean;
|
|
167
|
+
zoomInEnabled: boolean;
|
|
168
|
+
zoomOutEnabled: boolean;
|
|
169
|
+
panEnabled: boolean;
|
|
170
|
+
pointerPanEnabled: boolean;
|
|
171
|
+
wheelPanEnabled: boolean;
|
|
172
|
+
keyboardPanEnabled: boolean;
|
|
173
|
+
horizontalPanEnabled: boolean;
|
|
174
|
+
verticalPanEnabled: boolean;
|
|
175
|
+
panOnWheel: boolean;
|
|
176
|
+
wheelZoomMode: import('./types').PanZoomViewportWheelZoomMode;
|
|
177
|
+
panOnPrimaryDrag: boolean;
|
|
178
|
+
ariaLabel: string;
|
|
179
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
180
|
+
viewportRef: HTMLDivElement;
|
|
181
|
+
contentRef: HTMLDivElement;
|
|
182
|
+
}, HTMLDivElement>;
|
|
183
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
184
|
+
export default _default;
|
|
185
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
186
|
+
new (): {
|
|
187
|
+
$slots: S;
|
|
188
|
+
};
|
|
189
|
+
};
|