@aminnausin/cedar-ui 0.0.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/cedar-ui.css +1 -0
- package/dist/cedar-ui.mjs +3339 -0
- package/dist/cedar-ui.umd.js +13 -0
- package/dist/index.d.ts +864 -0
- package/package.json +61 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,864 @@
|
|
|
1
|
+
import { AllowedComponentProps } from 'vue';
|
|
2
|
+
import { Component } from 'vue';
|
|
3
|
+
import { ComponentCustomProps } from 'vue';
|
|
4
|
+
import { ComponentOptions } from 'vue';
|
|
5
|
+
import { ComponentOptionsMixin } from 'vue';
|
|
6
|
+
import { ComponentProvideOptions } from 'vue';
|
|
7
|
+
import { ComputedOptions } from 'vue';
|
|
8
|
+
import { ComputedRef } from 'vue';
|
|
9
|
+
import { DefineComponent } from 'vue';
|
|
10
|
+
import { FunctionalComponent } from 'vue';
|
|
11
|
+
import { MethodOptions } from 'vue';
|
|
12
|
+
import { ModelRef } from 'vue';
|
|
13
|
+
import { PublicProps } from 'vue';
|
|
14
|
+
import { Ref } from 'vue';
|
|
15
|
+
import { ShallowRef } from 'vue';
|
|
16
|
+
import { ShallowUnwrapRef } from 'vue';
|
|
17
|
+
import { UnwrapRef } from 'vue';
|
|
18
|
+
import { VNode } from 'vue';
|
|
19
|
+
import { VNodeProps } from 'vue';
|
|
20
|
+
|
|
21
|
+
declare const __VLS_component: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
|
|
23
|
+
declare const __VLS_component_2: DefineComponent<{
|
|
24
|
+
label?: any;
|
|
25
|
+
colour?: any;
|
|
26
|
+
textClass?: any;
|
|
27
|
+
URL?: any;
|
|
28
|
+
removeable?: any;
|
|
29
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
30
|
+
label?: any;
|
|
31
|
+
colour?: any;
|
|
32
|
+
textClass?: any;
|
|
33
|
+
URL?: any;
|
|
34
|
+
removeable?: any;
|
|
35
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
|
|
37
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {
|
|
38
|
+
hoverCardDelay: number;
|
|
39
|
+
hoverCardLeaveDelay: number;
|
|
40
|
+
icon: Component;
|
|
41
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
42
|
+
|
|
43
|
+
declare const __VLS_component_4: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLElement>;
|
|
44
|
+
|
|
45
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
|
|
46
|
+
disabled: boolean;
|
|
47
|
+
hoverCardDelay: number;
|
|
48
|
+
hoverCardLeaveDelay: number;
|
|
49
|
+
icon: Component;
|
|
50
|
+
margin: number;
|
|
51
|
+
paddingLeft: number;
|
|
52
|
+
scrollContainer: "body" | "window";
|
|
53
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
54
|
+
|
|
55
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
56
|
+
type: "button" | "submit" | "reset";
|
|
57
|
+
disabled: boolean;
|
|
58
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
59
|
+
|
|
60
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
61
|
+
modalTitle: HTMLHeadingElement;
|
|
62
|
+
}, any>;
|
|
63
|
+
|
|
64
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
65
|
+
disabled: boolean;
|
|
66
|
+
underline: boolean;
|
|
67
|
+
sticky: boolean;
|
|
68
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
69
|
+
|
|
70
|
+
declare type __VLS_PrettifyLocal<T> = {
|
|
71
|
+
[K in keyof T]: T[K];
|
|
72
|
+
} & {};
|
|
73
|
+
|
|
74
|
+
declare type __VLS_Props = {
|
|
75
|
+
field: FormField;
|
|
76
|
+
textSize?: string;
|
|
77
|
+
class?: string;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
declare type __VLS_Props_10 = {
|
|
81
|
+
currentPage?: number;
|
|
82
|
+
pageNumber?: number;
|
|
83
|
+
text?: string;
|
|
84
|
+
underline?: boolean;
|
|
85
|
+
sticky?: boolean;
|
|
86
|
+
disabled?: boolean;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
declare type __VLS_Props_11 = {
|
|
90
|
+
listLength: number;
|
|
91
|
+
currentPage: number;
|
|
92
|
+
itemsPerPage: number;
|
|
93
|
+
useIcons: boolean;
|
|
94
|
+
maxVisiblePages?: number;
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
declare type __VLS_Props_2 = {
|
|
98
|
+
errors: Record<string, any>;
|
|
99
|
+
fieldName?: string;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
declare type __VLS_Props_3 = {
|
|
103
|
+
name?: string;
|
|
104
|
+
text?: string;
|
|
105
|
+
subtext?: string;
|
|
106
|
+
class?: string;
|
|
107
|
+
subtextClass?: string;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
declare type __VLS_Props_4 = {
|
|
111
|
+
content?: string;
|
|
112
|
+
positionClasses?: string;
|
|
113
|
+
hoverCardDelay?: number;
|
|
114
|
+
hoverCardLeaveDelay?: number;
|
|
115
|
+
iconHidden?: boolean;
|
|
116
|
+
icon?: Component;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
declare type __VLS_Props_5 = {
|
|
120
|
+
content?: string;
|
|
121
|
+
contentTitle?: string;
|
|
122
|
+
positionClasses?: string;
|
|
123
|
+
hoverCardDelay?: number;
|
|
124
|
+
hoverCardLeaveDelay?: number;
|
|
125
|
+
margin?: number;
|
|
126
|
+
iconHidden?: boolean;
|
|
127
|
+
paddingLeft?: number;
|
|
128
|
+
scrollContainer?: 'body' | 'window';
|
|
129
|
+
disabled?: boolean;
|
|
130
|
+
icon?: Component;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
declare type __VLS_Props_6 = {
|
|
134
|
+
disabled?: boolean;
|
|
135
|
+
type?: 'button' | 'submit' | 'reset';
|
|
136
|
+
variant?: 'default' | 'submit' | 'reset' | 'auth';
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
declare type __VLS_Props_7 = {
|
|
140
|
+
field: FormField;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
declare type __VLS_Props_8 = {
|
|
144
|
+
onSuccess?: () => void;
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
declare type __VLS_Props_9 = {
|
|
148
|
+
modal: ReturnType<typeof createModalCore>;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
declare type __VLS_PublicProps = {
|
|
152
|
+
modelValue?: any;
|
|
153
|
+
} & __VLS_Props_7;
|
|
154
|
+
|
|
155
|
+
declare function __VLS_template(): {
|
|
156
|
+
attrs: Partial<{}>;
|
|
157
|
+
slots: {
|
|
158
|
+
default?(_: {}): any;
|
|
159
|
+
};
|
|
160
|
+
refs: {};
|
|
161
|
+
rootEl: any;
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
declare function __VLS_template_2(): {
|
|
165
|
+
attrs: Partial<{}>;
|
|
166
|
+
slots: {
|
|
167
|
+
content?(_: {}): any;
|
|
168
|
+
content?(_: {}): any;
|
|
169
|
+
};
|
|
170
|
+
refs: {};
|
|
171
|
+
rootEl: any;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
declare function __VLS_template_3(): {
|
|
175
|
+
attrs: Partial<{}>;
|
|
176
|
+
slots: {
|
|
177
|
+
trigger?(_: {}): any;
|
|
178
|
+
icon?(_: {}): any;
|
|
179
|
+
content?(_: {}): any;
|
|
180
|
+
};
|
|
181
|
+
refs: {};
|
|
182
|
+
rootEl: HTMLDivElement;
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
declare function __VLS_template_4(): {
|
|
186
|
+
attrs: Partial<{}>;
|
|
187
|
+
slots: {
|
|
188
|
+
heading?(_: {}): any;
|
|
189
|
+
content?(_: {}): any;
|
|
190
|
+
};
|
|
191
|
+
refs: {};
|
|
192
|
+
rootEl: HTMLElement;
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
declare function __VLS_template_5(): {
|
|
196
|
+
attrs: Partial<{}>;
|
|
197
|
+
slots: {
|
|
198
|
+
trigger?(_: {}): any;
|
|
199
|
+
icon?(_: {}): any;
|
|
200
|
+
content?(_: {}): any;
|
|
201
|
+
};
|
|
202
|
+
refs: {};
|
|
203
|
+
rootEl: HTMLDivElement;
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
declare function __VLS_template_6(): {
|
|
207
|
+
attrs: Partial<{}>;
|
|
208
|
+
slots: {
|
|
209
|
+
text?(_: {}): any;
|
|
210
|
+
default?(_: {}): any;
|
|
211
|
+
};
|
|
212
|
+
refs: {};
|
|
213
|
+
rootEl: HTMLButtonElement;
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
declare function __VLS_template_7(): {
|
|
217
|
+
attrs: Partial<{}>;
|
|
218
|
+
slots: {
|
|
219
|
+
title?(_: {}): any;
|
|
220
|
+
description?(_: {}): any;
|
|
221
|
+
default?(_: {}): any;
|
|
222
|
+
};
|
|
223
|
+
refs: {
|
|
224
|
+
modalTitle: HTMLHeadingElement;
|
|
225
|
+
};
|
|
226
|
+
rootEl: any;
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
declare function __VLS_template_8(): {
|
|
230
|
+
attrs: Partial<{}>;
|
|
231
|
+
slots: {
|
|
232
|
+
content?(_: {}): any;
|
|
233
|
+
};
|
|
234
|
+
refs: {};
|
|
235
|
+
rootEl: HTMLLIElement;
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
239
|
+
|
|
240
|
+
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
241
|
+
|
|
242
|
+
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
243
|
+
|
|
244
|
+
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
245
|
+
|
|
246
|
+
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
247
|
+
|
|
248
|
+
declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
249
|
+
|
|
250
|
+
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
251
|
+
|
|
252
|
+
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
253
|
+
|
|
254
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
255
|
+
new (): {
|
|
256
|
+
$slots: S;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
261
|
+
new (): {
|
|
262
|
+
$slots: S;
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
|
|
266
|
+
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
267
|
+
new (): {
|
|
268
|
+
$slots: S;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
273
|
+
new (): {
|
|
274
|
+
$slots: S;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
279
|
+
new (): {
|
|
280
|
+
$slots: S;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
285
|
+
new (): {
|
|
286
|
+
$slots: S;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
291
|
+
new (): {
|
|
292
|
+
$slots: S;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
297
|
+
new (): {
|
|
298
|
+
$slots: S;
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
export declare interface AccordionItem {
|
|
303
|
+
id: string;
|
|
304
|
+
title: string;
|
|
305
|
+
content: string;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export declare const BaseModal: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
309
|
+
|
|
310
|
+
export declare interface BreadCrumbItem {
|
|
311
|
+
name: string;
|
|
312
|
+
url: string;
|
|
313
|
+
icon?: Component;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export declare const ButtonForm: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
317
|
+
|
|
318
|
+
export declare const ChipTag: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
319
|
+
|
|
320
|
+
export declare const CompareStrategies: {
|
|
321
|
+
stringInsensitive: (a: any, b: any) => number;
|
|
322
|
+
date: (a: any, b: any) => number;
|
|
323
|
+
number: (a: any, b: any) => number;
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
export declare interface ContextMenu {
|
|
327
|
+
disabled?: boolean;
|
|
328
|
+
style?: string;
|
|
329
|
+
itemStyle?: string;
|
|
330
|
+
items?: ContextMenuItem[];
|
|
331
|
+
scrollContainer?: 'window' | 'body';
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export declare interface ContextMenuItem {
|
|
335
|
+
text?: string;
|
|
336
|
+
shortcut?: string;
|
|
337
|
+
url?: string;
|
|
338
|
+
external?: boolean;
|
|
339
|
+
action?: () => void;
|
|
340
|
+
style?: string;
|
|
341
|
+
selectedStyle?: string;
|
|
342
|
+
selected?: boolean;
|
|
343
|
+
disabled?: boolean;
|
|
344
|
+
hidden?: boolean;
|
|
345
|
+
icon?: Component;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export declare function createModalCore(): {
|
|
349
|
+
isOpen: Ref<boolean, boolean>;
|
|
350
|
+
isAnimating: Ref<boolean, boolean>;
|
|
351
|
+
animationTime: Ref<number, number>;
|
|
352
|
+
props: Record<string, any>;
|
|
353
|
+
component: ShallowRef<null, null> | ShallowRef<ComponentOptions<any, any, any, ComputedOptions, MethodOptions, any, any, any, string, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, ComponentOptions<any, any, any, ComputedOptions, MethodOptions, any, any, any, string, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>> | ShallowRef<FunctionalComponent<any, {}, any, {}>, FunctionalComponent<any, {}, any, {}>> | ShallowRef<{
|
|
354
|
+
new (...args: any[]): any;
|
|
355
|
+
__isFragment?: never;
|
|
356
|
+
__isTeleport?: never;
|
|
357
|
+
__isSuspense?: never;
|
|
358
|
+
}, {
|
|
359
|
+
new (...args: any[]): any;
|
|
360
|
+
__isFragment?: never;
|
|
361
|
+
__isTeleport?: never;
|
|
362
|
+
__isSuspense?: never;
|
|
363
|
+
}>;
|
|
364
|
+
open: (comp: Component, newProps?: Record<string, any>) => void;
|
|
365
|
+
close: () => void;
|
|
366
|
+
};
|
|
367
|
+
|
|
368
|
+
declare interface DatePickerProps {
|
|
369
|
+
model?: ModelRef<string | undefined>;
|
|
370
|
+
defaultDate?: string;
|
|
371
|
+
useDefaultDate?: boolean;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
export declare const DEFAULT_GAP = 16;
|
|
375
|
+
|
|
376
|
+
export declare const DeleteAccountModal: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
377
|
+
|
|
378
|
+
export declare interface DropdownMenuItem {
|
|
379
|
+
name: string;
|
|
380
|
+
url?: string;
|
|
381
|
+
text: string;
|
|
382
|
+
title?: string;
|
|
383
|
+
icon?: Component;
|
|
384
|
+
disabled?: boolean;
|
|
385
|
+
hidden?: boolean;
|
|
386
|
+
external?: boolean;
|
|
387
|
+
action?: () => void;
|
|
388
|
+
shortcut?: string | Component;
|
|
389
|
+
shortcutTitle?: string;
|
|
390
|
+
iconStrokeWidth?: number;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export declare interface ExternalToast {
|
|
394
|
+
title: string;
|
|
395
|
+
options: ToastOptions;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export declare type FieldType = 'text' | 'textArea' | 'number' | 'date' | 'url' | 'multi' | 'select' | 'password';
|
|
399
|
+
|
|
400
|
+
export declare const FormErrorList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
401
|
+
|
|
402
|
+
export declare interface FormField {
|
|
403
|
+
name: string;
|
|
404
|
+
text?: string;
|
|
405
|
+
subtext?: string;
|
|
406
|
+
type: FieldType;
|
|
407
|
+
required?: boolean;
|
|
408
|
+
value?: any;
|
|
409
|
+
placeholder?: string;
|
|
410
|
+
default?: any;
|
|
411
|
+
min?: number;
|
|
412
|
+
max?: number;
|
|
413
|
+
class?: string;
|
|
414
|
+
disabled?: boolean;
|
|
415
|
+
autocomplete?: string;
|
|
416
|
+
ariaAutocomplete?: 'list' | 'none' | 'inline' | 'both';
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export declare type FormFields<T> = T & {
|
|
420
|
+
[key: string]: FormFieldValue;
|
|
421
|
+
};
|
|
422
|
+
|
|
423
|
+
export declare type FormFieldValue = string | number | boolean | Array<any> | null;
|
|
424
|
+
|
|
425
|
+
export declare interface FormHooks {
|
|
426
|
+
onBefore?: () => any;
|
|
427
|
+
onSuccess?: (response: any) => any;
|
|
428
|
+
onError?: (error: any) => any;
|
|
429
|
+
onFinish?: () => any;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export declare const FormInput: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
433
|
+
"update:modelValue": (value: any) => any;
|
|
434
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
435
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
436
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
437
|
+
|
|
438
|
+
export declare const FormInputLabel: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
439
|
+
|
|
440
|
+
export declare interface FormState<T> {
|
|
441
|
+
fields: FormFields<T>;
|
|
442
|
+
errors: {
|
|
443
|
+
[key: string]: string;
|
|
444
|
+
};
|
|
445
|
+
dirty: boolean;
|
|
446
|
+
hasErrors: boolean;
|
|
447
|
+
processing: boolean;
|
|
448
|
+
wasSuccessful: boolean;
|
|
449
|
+
recentlySuccessful: boolean;
|
|
450
|
+
submit: (submitFn: (fields: FormFields<T>) => Promise<any>, hooks?: FormHooks) => Promise<void>;
|
|
451
|
+
reset: (...fields: (keyof FormFields<T>)[]) => void;
|
|
452
|
+
clearErrors: (...fields: string[]) => void;
|
|
453
|
+
setErrors: (errors: {
|
|
454
|
+
[key: string]: string;
|
|
455
|
+
}) => void;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export declare const GlobalModal: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
459
|
+
|
|
460
|
+
export declare const HoverCard: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
461
|
+
|
|
462
|
+
export declare const InputLabel: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
463
|
+
|
|
464
|
+
export declare function isInputLikeElement(element: EventTarget | null, key: string): boolean;
|
|
465
|
+
|
|
466
|
+
export declare const LogoutSessionsModal: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
467
|
+
|
|
468
|
+
export declare interface Message<T extends Component = Component> {
|
|
469
|
+
id: string;
|
|
470
|
+
title: string;
|
|
471
|
+
description?: string;
|
|
472
|
+
type?: ToastType;
|
|
473
|
+
position?: ToastPostion;
|
|
474
|
+
life?: number;
|
|
475
|
+
html?: string;
|
|
476
|
+
component?: T;
|
|
477
|
+
scale: number;
|
|
478
|
+
zIndex: number;
|
|
479
|
+
offsetY: number;
|
|
480
|
+
positionY?: string;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
export declare const MOBILE_VIEWPORT_OFFSET = "16px";
|
|
484
|
+
|
|
485
|
+
declare interface ModalProps {
|
|
486
|
+
title?: string;
|
|
487
|
+
submitText?: string;
|
|
488
|
+
animationTime?: number;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
declare class Observer {
|
|
492
|
+
subscribers: Array<(toast: Message | ToastToDismiss) => void>;
|
|
493
|
+
toasts: Array<Message>;
|
|
494
|
+
constructor();
|
|
495
|
+
subscribe: (subscriber: (toast: Message | ToastToDismiss) => void) => () => void;
|
|
496
|
+
publish: (data: Message | ToastToDismiss) => void;
|
|
497
|
+
addToast: (data: Message) => void;
|
|
498
|
+
create: (title: string, options: ToastOptions) => string;
|
|
499
|
+
dismiss: (id?: string) => void;
|
|
500
|
+
add: (message: string, options?: ToastOptions) => string;
|
|
501
|
+
success: (message: string, options?: ToastOptions) => string;
|
|
502
|
+
error: (message: string, options?: ToastOptions) => string;
|
|
503
|
+
info: (message: string, options?: ToastOptions) => string;
|
|
504
|
+
warning: (message: string, options?: ToastOptions) => string;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
export declare interface PopoverItem {
|
|
508
|
+
text?: string;
|
|
509
|
+
title?: string;
|
|
510
|
+
shortcut?: string;
|
|
511
|
+
action?: () => void;
|
|
512
|
+
style?: string;
|
|
513
|
+
iconStyle?: string;
|
|
514
|
+
selectedStyle?: string;
|
|
515
|
+
selectedIconStyle?: string;
|
|
516
|
+
selected?: boolean;
|
|
517
|
+
disabled?: boolean;
|
|
518
|
+
icon?: Component;
|
|
519
|
+
selectedIcon?: Component;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
export declare const RelativeHoverCard: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
523
|
+
|
|
524
|
+
export declare const SCALE_STEP = 0.06;
|
|
525
|
+
|
|
526
|
+
export declare interface SelectItem {
|
|
527
|
+
id: number;
|
|
528
|
+
name: string;
|
|
529
|
+
relationships?: any;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export declare const SettingsCard: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
533
|
+
|
|
534
|
+
export declare type SortDir = 1 | -1;
|
|
535
|
+
|
|
536
|
+
export declare interface SortKey<T> {
|
|
537
|
+
key?: keyof T;
|
|
538
|
+
compareFn?: (a: T, b: T) => number;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export declare function sortObject<T>(column: keyof T, direction?: SortDir, dateColumns?: string[]): (a: T, b: T) => number;
|
|
542
|
+
|
|
543
|
+
export declare function sortObjectNew<T>(keys: SortKey<T>[], direction?: SortDir): (a: T, b: T) => number;
|
|
544
|
+
|
|
545
|
+
export declare const SWIPE_THRESHOLD = 45;
|
|
546
|
+
|
|
547
|
+
export declare type SwipeDirection = 'top' | 'right' | 'bottom' | 'left';
|
|
548
|
+
|
|
549
|
+
export declare const TableBase: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
550
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
551
|
+
readonly onSearch?: ((value: string) => any) | undefined;
|
|
552
|
+
readonly "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
553
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:modelValue" | "onSearch"> & ({
|
|
554
|
+
modelValue?: string | undefined;
|
|
555
|
+
} & TableProps<T>) & Partial<{}>> & PublicProps;
|
|
556
|
+
expose(exposed: ShallowUnwrapRef<{}>): void;
|
|
557
|
+
attrs: any;
|
|
558
|
+
slots: Readonly<{
|
|
559
|
+
row(props: {
|
|
560
|
+
row: T;
|
|
561
|
+
index: number;
|
|
562
|
+
selectedID: any;
|
|
563
|
+
}): any;
|
|
564
|
+
}> & {
|
|
565
|
+
row(props: {
|
|
566
|
+
row: T;
|
|
567
|
+
index: number;
|
|
568
|
+
selectedID: any;
|
|
569
|
+
}): any;
|
|
570
|
+
};
|
|
571
|
+
emit: ((e: "search", value: string) => void) & ((evt: "update:modelValue", value: string | undefined) => void);
|
|
572
|
+
}>) => VNode & {
|
|
573
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
574
|
+
};
|
|
575
|
+
|
|
576
|
+
export declare const TablePagination: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
577
|
+
setPage: (...args: any[]) => void;
|
|
578
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
579
|
+
onSetPage?: ((...args: any[]) => any) | undefined;
|
|
580
|
+
}>, {
|
|
581
|
+
maxVisiblePages: number;
|
|
582
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
583
|
+
$element: HTMLDivElement;
|
|
584
|
+
}, HTMLDivElement>;
|
|
585
|
+
|
|
586
|
+
export declare const TablePaginationButton: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
587
|
+
|
|
588
|
+
export declare interface TableProps<T> {
|
|
589
|
+
useToolbar?: boolean;
|
|
590
|
+
usePagination?: boolean;
|
|
591
|
+
usePaginationIcons?: boolean;
|
|
592
|
+
useGrid?: string;
|
|
593
|
+
data: T[];
|
|
594
|
+
row: DefineComponent<any, any, any> | Component;
|
|
595
|
+
rowAttributes?: Record<string, any>;
|
|
596
|
+
loading?: boolean;
|
|
597
|
+
clickAction?: (id: number, ...args: any[]) => void;
|
|
598
|
+
otherAction?: (...args: any[]) => void;
|
|
599
|
+
sortAction?: (sortKey: keyof T, direction: 1 | -1) => void;
|
|
600
|
+
sortingOptions?: TableSortOption[];
|
|
601
|
+
itemsPerPage?: number;
|
|
602
|
+
itemName?: string;
|
|
603
|
+
searchQuery?: string;
|
|
604
|
+
selectedID?: number | string | null;
|
|
605
|
+
tableStyles?: string;
|
|
606
|
+
startAscending?: boolean;
|
|
607
|
+
paginationClass?: string;
|
|
608
|
+
maxVisiblePages?: number;
|
|
609
|
+
noResultsMessage?: string;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
export declare type TableSortOption = {
|
|
613
|
+
title: string;
|
|
614
|
+
value: string;
|
|
615
|
+
disabled?: boolean;
|
|
616
|
+
};
|
|
617
|
+
|
|
618
|
+
export declare const toast: typeof toastFunction & {
|
|
619
|
+
add: (message: string, options?: ToastOptions) => string;
|
|
620
|
+
success: (message: string, options?: ToastOptions) => string;
|
|
621
|
+
error: (message: string, options?: ToastOptions) => string;
|
|
622
|
+
info: (message: string, options?: ToastOptions) => string;
|
|
623
|
+
warning: (message: string, options?: ToastOptions) => string;
|
|
624
|
+
dismiss: (id?: string) => void;
|
|
625
|
+
};
|
|
626
|
+
|
|
627
|
+
export declare const TOAST_LIFE = 3000;
|
|
628
|
+
|
|
629
|
+
export declare const TOAST_WIDTH = 0;
|
|
630
|
+
|
|
631
|
+
export declare const ToastController: DefineComponent<ToastControllerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToastControllerProps> & Readonly<{}>, {
|
|
632
|
+
position: ToastPostion;
|
|
633
|
+
maxVisibleToasts: number;
|
|
634
|
+
layout: "default" | "expanded";
|
|
635
|
+
defaultLife: number;
|
|
636
|
+
viewportOffset: string | number;
|
|
637
|
+
mobileViewportOffset: string | number;
|
|
638
|
+
paddingBetweenToasts: number;
|
|
639
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
640
|
+
container: HTMLOListElement;
|
|
641
|
+
}, any>;
|
|
642
|
+
|
|
643
|
+
export declare interface ToastControllerProps {
|
|
644
|
+
layout?: 'default' | 'expanded';
|
|
645
|
+
position?: ToastPostion;
|
|
646
|
+
defaultLife?: number;
|
|
647
|
+
viewportOffset?: string | number;
|
|
648
|
+
mobileViewportOffset?: string | number;
|
|
649
|
+
paddingBetweenToasts?: number;
|
|
650
|
+
maxVisibleToasts?: number;
|
|
651
|
+
closeButton?: boolean;
|
|
652
|
+
icons?: ToastIcons;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
declare function toastFunction(message: string, options?: ToastOptions): string;
|
|
656
|
+
|
|
657
|
+
export declare interface ToastIcons {
|
|
658
|
+
success?: Component;
|
|
659
|
+
info?: Component;
|
|
660
|
+
warning?: Component;
|
|
661
|
+
error?: Component;
|
|
662
|
+
loading?: Component;
|
|
663
|
+
close?: Component;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
export declare type ToastLayout = 'default' | 'expanded';
|
|
667
|
+
|
|
668
|
+
export declare interface ToastOptions {
|
|
669
|
+
id?: string;
|
|
670
|
+
description?: string;
|
|
671
|
+
type?: ToastType;
|
|
672
|
+
position?: ToastPostion;
|
|
673
|
+
life?: number;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
export declare type ToastPostion = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
|
|
677
|
+
|
|
678
|
+
export declare interface ToastProps extends Message {
|
|
679
|
+
id: string;
|
|
680
|
+
index: number;
|
|
681
|
+
stack: (...args: unknown[]) => unknown;
|
|
682
|
+
position: ToastPostion;
|
|
683
|
+
toastCount: number;
|
|
684
|
+
expanded: boolean;
|
|
685
|
+
maxVisibleToasts?: number;
|
|
686
|
+
swipeDirections?: SwipeDirection[];
|
|
687
|
+
style?: string;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
export declare const ToastState: Observer;
|
|
691
|
+
|
|
692
|
+
export declare interface ToastT {
|
|
693
|
+
id: string;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
export declare interface ToastToDismiss {
|
|
697
|
+
id: string;
|
|
698
|
+
dismiss: boolean;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
export declare type ToastType = 'success' | 'info' | 'warning' | 'danger' | 'default' | 'loading';
|
|
702
|
+
|
|
703
|
+
export declare function useClipboard(copyText: Ref<string>): {
|
|
704
|
+
copyNotification: Ref<boolean, boolean>;
|
|
705
|
+
copyToClipboard: () => Promise<void>;
|
|
706
|
+
};
|
|
707
|
+
|
|
708
|
+
export declare function useDatePicker(props: DatePickerProps, datePickerInput: Ref<HTMLElement | null>, datePickerCalendar: Ref<HTMLElement | null>): {
|
|
709
|
+
datePickerInput: Ref<HTMLElement | null, HTMLElement | null>;
|
|
710
|
+
datePickerCalendar: Ref<HTMLElement | null, HTMLElement | null>;
|
|
711
|
+
datePickerOpen: Ref<boolean, boolean>;
|
|
712
|
+
datePickerValue: Ref<string, string>;
|
|
713
|
+
datePickerPanel: Ref<"D" | "M" | "Y", "D" | "M" | "Y">;
|
|
714
|
+
datePickerFormat: Ref<"F d, Y" | "d M, Y" | "Y M d" | "MM-DD-YYYY" | "DD-MM-YYYY" | "YYYY-MM-DD" | "D d M, Y", "F d, Y" | "d M, Y" | "Y M d" | "MM-DD-YYYY" | "DD-MM-YYYY" | "YYYY-MM-DD" | "D d M, Y">;
|
|
715
|
+
datePickerMonth: Ref<number, number>;
|
|
716
|
+
datePickerMonthVerbose: ComputedRef<string>;
|
|
717
|
+
datePickerYear: Ref<number, number>;
|
|
718
|
+
datePickerDecade: ComputedRef<number[]>;
|
|
719
|
+
datePickerDay: Ref<number, number>;
|
|
720
|
+
datePickerDaysInMonth: Ref<number[], number[]>;
|
|
721
|
+
datePickerBlankDaysInMonth: Ref<number[], number[]>;
|
|
722
|
+
datePickerMonthNames: string[];
|
|
723
|
+
datePickerDays: string[];
|
|
724
|
+
datePickerPosition: Ref<"top" | "bottom", "top" | "bottom">;
|
|
725
|
+
toggleDatePicker: (state?: boolean) => void;
|
|
726
|
+
datePickerValueClicked: (value: number) => void;
|
|
727
|
+
datePickerPrevious: () => void;
|
|
728
|
+
datePickerNext: () => void;
|
|
729
|
+
datePickerIsSelectedDate: (day: number) => boolean;
|
|
730
|
+
datePickerIsToday: (day: number) => boolean;
|
|
731
|
+
showDatePickerPanel: (panel?: "Y" | "M" | "D") => void;
|
|
732
|
+
};
|
|
733
|
+
|
|
734
|
+
export declare function useForm<T extends Record<string, any>>(fields: FormFields<T>): {
|
|
735
|
+
fields: UnwrapRef<FormFields<T>>;
|
|
736
|
+
errors: {
|
|
737
|
+
[key: string]: string;
|
|
738
|
+
};
|
|
739
|
+
dirty: boolean;
|
|
740
|
+
hasErrors: boolean;
|
|
741
|
+
processing: boolean;
|
|
742
|
+
wasSuccessful: boolean;
|
|
743
|
+
recentlySuccessful: boolean;
|
|
744
|
+
submit: (submitFn: (fields: FormFields<T>) => Promise<any>, hooks?: FormHooks) => Promise<void>;
|
|
745
|
+
reset: (...fields: (string | number | keyof T)[]) => void;
|
|
746
|
+
clearErrors: (...fields: string[]) => void;
|
|
747
|
+
setErrors: (errors: {
|
|
748
|
+
[key: string]: string;
|
|
749
|
+
}) => void;
|
|
750
|
+
};
|
|
751
|
+
|
|
752
|
+
export declare function useModal(props: ModalProps): {
|
|
753
|
+
modalOpen: boolean;
|
|
754
|
+
isAnimating: boolean;
|
|
755
|
+
animationTime: number;
|
|
756
|
+
toggleModal: (state?: boolean | null) => void;
|
|
757
|
+
setTitle: (title: string) => void;
|
|
758
|
+
title: string;
|
|
759
|
+
submitText?: string | undefined;
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
export declare function useMultiSelect({ options, defaultItems }: {
|
|
763
|
+
options: any;
|
|
764
|
+
defaultItems: any;
|
|
765
|
+
}, refs: any): {
|
|
766
|
+
selectOpen: boolean;
|
|
767
|
+
selectedItems: any;
|
|
768
|
+
selectableItems: any;
|
|
769
|
+
selectableItemActive: null;
|
|
770
|
+
selectId: string;
|
|
771
|
+
selectKeydownValue: string;
|
|
772
|
+
selectKeydownTimeout: number;
|
|
773
|
+
selectKeydownClearTimeout: null;
|
|
774
|
+
selectDropdownPosition: string;
|
|
775
|
+
selectableItemsList: any;
|
|
776
|
+
selectButton: any;
|
|
777
|
+
toggleSelect: (state: any) => void;
|
|
778
|
+
updateRefs: (values: any) => void;
|
|
779
|
+
selectableItemIsActive: () => false;
|
|
780
|
+
selectScrollToActiveItem: (id: any, focus?: boolean) => Promise<void>;
|
|
781
|
+
selectKeydown: (event: any) => void;
|
|
782
|
+
selectItemsFindBestMatch: () => any;
|
|
783
|
+
selectPositionUpdate: () => void;
|
|
784
|
+
setOptions: (options: any) => void;
|
|
785
|
+
};
|
|
786
|
+
|
|
787
|
+
export declare function useSelect(options: any, refs: any): {
|
|
788
|
+
selectOpen: boolean;
|
|
789
|
+
selectedItem: string;
|
|
790
|
+
selectableItems: any;
|
|
791
|
+
selectableItemActive: null;
|
|
792
|
+
selectId: string;
|
|
793
|
+
selectKeydownValue: string;
|
|
794
|
+
selectKeydownTimeout: number;
|
|
795
|
+
selectKeydownClearTimeout: null;
|
|
796
|
+
selectDropdownPosition: string;
|
|
797
|
+
selectableItemsList: any;
|
|
798
|
+
selectButton: any;
|
|
799
|
+
toggleSelect: (state: any) => void;
|
|
800
|
+
updateRefs: (values: any) => void;
|
|
801
|
+
selectableItemIsActive: (item: any) => null;
|
|
802
|
+
selectableItemActiveNext: () => void;
|
|
803
|
+
selectableItemActivePrevious: () => void;
|
|
804
|
+
selectScrollToActiveItem: () => void;
|
|
805
|
+
selectKeydown: (event: any) => void;
|
|
806
|
+
selectItemsFindBestMatch: () => any;
|
|
807
|
+
selectPositionUpdate: () => void;
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
export declare function useSwipeHandler({ directions, threshold, onSwipeOut }: UseSwipeHandlerOptions): {
|
|
811
|
+
offset: Ref<{
|
|
812
|
+
x: number;
|
|
813
|
+
y: number;
|
|
814
|
+
}, {
|
|
815
|
+
x: number;
|
|
816
|
+
y: number;
|
|
817
|
+
} | {
|
|
818
|
+
x: number;
|
|
819
|
+
y: number;
|
|
820
|
+
}>;
|
|
821
|
+
isSwiping: Ref<boolean, boolean>;
|
|
822
|
+
onPointerDown: (e: PointerEvent) => void;
|
|
823
|
+
onPointerMove: (e: PointerEvent) => void;
|
|
824
|
+
onPointerUp: () => void;
|
|
825
|
+
};
|
|
826
|
+
|
|
827
|
+
declare interface UseSwipeHandlerOptions {
|
|
828
|
+
directions: Ref<SwipeDirection[]>;
|
|
829
|
+
threshold: number;
|
|
830
|
+
onSwipeOut: () => void;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
export declare function useTable(props: any): {
|
|
834
|
+
filteredPage: any;
|
|
835
|
+
props: any;
|
|
836
|
+
fields: {
|
|
837
|
+
currentPage: number;
|
|
838
|
+
itemsPerPage: any;
|
|
839
|
+
searchQuery: any;
|
|
840
|
+
};
|
|
841
|
+
handlePageChange: (page: number) => void;
|
|
842
|
+
handlePageReset: () => void;
|
|
843
|
+
};
|
|
844
|
+
|
|
845
|
+
export declare function useToastTimer({ duration, isPaused, onTimeout, immediate }: UseToastTimerOptions): {
|
|
846
|
+
cancel: () => void;
|
|
847
|
+
};
|
|
848
|
+
|
|
849
|
+
declare interface UseToastTimerOptions {
|
|
850
|
+
duration: number;
|
|
851
|
+
isPaused: () => boolean;
|
|
852
|
+
onTimeout: () => void;
|
|
853
|
+
immediate?: boolean;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
export declare const VIEWPORT_OFFSET = "24px";
|
|
857
|
+
|
|
858
|
+
export declare const VISIBLE_TOASTS_AMOUNT = 3;
|
|
859
|
+
|
|
860
|
+
export declare const Y_OFFSET_STEP = 16;
|
|
861
|
+
|
|
862
|
+
export declare const Z_STEP = 10;
|
|
863
|
+
|
|
864
|
+
export { }
|