@bagelink/vue 1.14.7 → 1.14.10
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/components/AddressSearch.vue.d.ts +6 -7
- package/dist/components/Btn.vue.d.ts +1 -1
- package/dist/components/Carousel.vue.d.ts +0 -11
- package/dist/components/Dropdown.vue.d.ts +0 -2
- package/dist/components/Filter.vue.d.ts +30 -0
- package/dist/components/Filter.vue.d.ts.map +1 -0
- package/dist/components/FilterQuery.vue.d.ts +8 -3
- package/dist/components/Modal.vue.d.ts +0 -1
- package/dist/components/QueryFilter.vue.d.ts +30 -0
- package/dist/components/QueryFilter.vue.d.ts.map +1 -0
- package/dist/components/Swiper.vue.d.ts +6 -12
- package/dist/components/Swiper.vue.d.ts.map +1 -1
- package/dist/components/analytics/PieChart.vue.d.ts +2 -2
- package/dist/components/calendar/CalendarPopover.vue.d.ts +8 -4
- package/dist/components/calendar/CalendarTypes.d.ts +0 -10
- package/dist/components/calendar/Index.vue.d.ts +4 -20
- package/dist/components/calendar/views/WeekView.vue.d.ts +1 -9
- package/dist/components/form/inputs/ArrayInput.vue.d.ts +2 -4
- package/dist/components/form/inputs/CheckInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts +0 -54
- package/dist/components/form/inputs/ColorInput.vue.d.ts +1 -3
- package/dist/components/form/inputs/DateInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/DatePicker.vue.d.ts +0 -1
- package/dist/components/form/inputs/EmailInput.vue.d.ts +2 -5
- package/dist/components/form/inputs/JSONInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/MarkdownEditor.vue.d.ts +2 -7
- package/dist/components/form/inputs/NumberInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/OTP.vue.d.ts +1 -2
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +10 -16
- package/dist/components/form/inputs/RadioGroup.vue.d.ts +1 -3
- package/dist/components/form/inputs/RangeInput.vue.d.ts +1 -6
- package/dist/components/form/inputs/RichText/index.vue.d.ts +1 -2
- package/dist/components/form/inputs/SelectBtn.vue.d.ts +2 -2
- package/dist/components/form/inputs/SelectInput.vue.d.ts +13 -20
- package/dist/components/form/inputs/SignaturePad.vue.d.ts +1 -6
- package/dist/components/form/inputs/TableField.vue.d.ts +1 -2
- package/dist/components/form/inputs/TelInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/TextInput.vue.d.ts +2 -3
- package/dist/components/form/inputs/ToggleInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts +6 -27
- package/dist/components/form/inputs/Upload/upload.d.ts +1 -1
- package/dist/components/form/inputs/index.d.ts +0 -1
- package/dist/components/index.d.ts +1 -3
- package/dist/components/layout/AppContent.vue.d.ts +1 -1
- package/dist/components/layout/AppLayout.vue.d.ts +0 -2
- package/dist/components/layout/AppSidebar.vue.d.ts +1 -5
- package/dist/components/layout/TabsNav.vue.d.ts +1 -12
- package/dist/form-flow/MultiStepForm.vue.d.ts +1 -6
- package/dist/form-flow/form-flow.d.ts +1 -24
- package/dist/i18n/index.d.ts +0 -838
- package/dist/index.cjs +187 -163
- package/dist/index.d.ts +0 -2
- package/dist/index.mjs +43492 -49344
- package/dist/style.css +1 -2
- package/dist/types/BagelForm.d.ts +1 -10
- package/dist/types/NavLink.d.ts +1 -2
- package/dist/types/index.d.ts +1 -2
- package/dist/utils/BagelFormUtils.d.ts +0 -1
- package/dist/utils/calendar/dateUtils.d.ts +2 -2
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/useSearch.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,6 @@ type __VLS_Props = {
|
|
|
11
11
|
enableTime?: boolean;
|
|
12
12
|
highlightedDates?: MaybeRefOrGetter<(string | Date)[]>;
|
|
13
13
|
disabledDates?: MaybeRefOrGetter<(string | Date)[]>;
|
|
14
|
-
allowedDates?: MaybeRefOrGetter<(string | Date)[]>;
|
|
15
14
|
autoSize?: boolean;
|
|
16
15
|
};
|
|
17
16
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { IconType, ValidateInputBaseT } from '../../..';
|
|
2
|
-
|
|
3
|
-
export interface EmailInputProps extends ValidateInputBaseT, BagelInputShellProps {
|
|
2
|
+
export interface EmailInputProps extends ValidateInputBaseT {
|
|
4
3
|
id?: string;
|
|
5
4
|
title?: string;
|
|
6
5
|
helptext?: string;
|
|
@@ -20,7 +19,7 @@ export interface EmailInputProps extends ValidateInputBaseT, BagelInputShellProp
|
|
|
20
19
|
};
|
|
21
20
|
icon?: IconType;
|
|
22
21
|
iconStart?: IconType;
|
|
23
|
-
autocomplete?:
|
|
22
|
+
autocomplete?: AutoFillField;
|
|
24
23
|
autofocus?: boolean;
|
|
25
24
|
error?: string;
|
|
26
25
|
onFocusout?: (e: FocusEvent) => void;
|
|
@@ -28,7 +27,6 @@ export interface EmailInputProps extends ValidateInputBaseT, BagelInputShellProp
|
|
|
28
27
|
autocorrect?: boolean;
|
|
29
28
|
serverValidate?: boolean;
|
|
30
29
|
preventFakeEmails?: boolean;
|
|
31
|
-
formatValidation?: boolean;
|
|
32
30
|
}
|
|
33
31
|
declare const _default: import('vue').DefineComponent<EmailInputProps, {
|
|
34
32
|
focus: () => void | undefined;
|
|
@@ -45,7 +43,6 @@ declare const _default: import('vue').DefineComponent<EmailInputProps, {
|
|
|
45
43
|
autocorrect: boolean;
|
|
46
44
|
serverValidate: boolean;
|
|
47
45
|
preventFakeEmails: boolean;
|
|
48
|
-
formatValidation: boolean;
|
|
49
46
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
50
47
|
input: HTMLInputElement;
|
|
51
48
|
}, HTMLDivElement>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
1
|
type __VLS_Props = {
|
|
3
2
|
description?: string;
|
|
4
3
|
label?: string;
|
|
@@ -6,7 +5,7 @@ type __VLS_Props = {
|
|
|
6
5
|
placeholder?: string;
|
|
7
6
|
editMode?: boolean;
|
|
8
7
|
small?: boolean;
|
|
9
|
-
}
|
|
8
|
+
};
|
|
10
9
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
10
|
"update:modelValue": (...args: any[]) => void;
|
|
12
11
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
interface Props extends BagelInputShellProps {
|
|
1
|
+
interface Props {
|
|
3
2
|
maxLength?: number;
|
|
4
3
|
placeholder?: string;
|
|
5
4
|
label?: string;
|
|
@@ -16,11 +15,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
16
15
|
"update:modelValue": (value: string) => any;
|
|
17
16
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
17
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
19
|
-
}>, {
|
|
20
|
-
label: string;
|
|
21
|
-
placeholder: string;
|
|
22
|
-
showFormatting: boolean;
|
|
23
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
24
19
|
textareaRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./TextInput.vue').TextInputProps> & Readonly<{
|
|
25
20
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
26
21
|
onDebounce?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { IconType } from '../../..';
|
|
2
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
3
2
|
type NumberLayout = 'default' | 'vertical' | 'horizontal';
|
|
4
|
-
interface NumberInputProps
|
|
3
|
+
interface NumberInputProps {
|
|
5
4
|
modelValue?: number | string;
|
|
6
5
|
min?: number;
|
|
7
6
|
max?: number;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
1
|
type __VLS_Props = {
|
|
3
2
|
digitCount: number;
|
|
4
3
|
default?: string;
|
|
5
4
|
modelValue?: string;
|
|
6
5
|
error?: string;
|
|
7
|
-
}
|
|
6
|
+
};
|
|
8
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
8
|
"update:modelValue": (...args: any[]) => void;
|
|
10
9
|
complete: (...args: any[]) => void;
|
|
@@ -1,22 +1,19 @@
|
|
|
1
|
-
import { IconType
|
|
2
|
-
|
|
3
|
-
export interface TextInputProps
|
|
1
|
+
import { IconType } from '../../..';
|
|
2
|
+
type __VLS_Props = TextInputProps;
|
|
3
|
+
export interface TextInputProps {
|
|
4
4
|
id?: string;
|
|
5
5
|
title?: string;
|
|
6
6
|
helptext?: string;
|
|
7
|
-
name?: string;
|
|
8
7
|
placeholder?: string;
|
|
9
|
-
modelValue?: string;
|
|
10
8
|
label?: string;
|
|
11
9
|
small?: boolean;
|
|
12
10
|
dense?: boolean;
|
|
13
11
|
required?: boolean;
|
|
14
12
|
pattern?: string;
|
|
15
|
-
defaultValue?: string;
|
|
16
13
|
shrink?: boolean;
|
|
17
14
|
underlined?: boolean;
|
|
18
15
|
disabled?: boolean;
|
|
19
|
-
|
|
16
|
+
name?: string;
|
|
20
17
|
nativeInputAttrs?: {
|
|
21
18
|
[key: string]: any;
|
|
22
19
|
};
|
|
@@ -25,19 +22,16 @@ export interface TextInputProps extends ValidateInputBaseT, BagelInputShellProps
|
|
|
25
22
|
multiline?: boolean;
|
|
26
23
|
autoheight?: boolean;
|
|
27
24
|
code?: boolean;
|
|
28
|
-
|
|
29
|
-
autocomplete?: string;
|
|
25
|
+
lines?: number;
|
|
30
26
|
autofocus?: boolean;
|
|
31
|
-
|
|
27
|
+
debounceDelay?: number;
|
|
28
|
+
autocomplete?: AutoFillField;
|
|
32
29
|
onFocusout?: (e: FocusEvent) => void;
|
|
33
|
-
onFocus?: (e: FocusEvent) => void;
|
|
34
|
-
}
|
|
35
|
-
export interface PasswordInputProps extends TextInputProps {
|
|
36
30
|
strengthMeter?: boolean;
|
|
31
|
+
error?: string;
|
|
37
32
|
}
|
|
38
|
-
type __VLS_Props = PasswordInputProps;
|
|
39
33
|
type __VLS_PublicProps = {
|
|
40
|
-
modelValue?: string;
|
|
34
|
+
'modelValue'?: string;
|
|
41
35
|
'showPwd'?: boolean;
|
|
42
36
|
} & __VLS_Props;
|
|
43
37
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -48,7 +42,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
48
42
|
"onUpdate:showPwd"?: ((value: boolean) => any) | undefined;
|
|
49
43
|
}>, {
|
|
50
44
|
label: string;
|
|
51
|
-
autocomplete:
|
|
45
|
+
autocomplete: AutoFillField;
|
|
52
46
|
strengthMeter: boolean;
|
|
53
47
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
54
48
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Option } from '../../..';
|
|
2
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
3
2
|
export interface RadioOption<T = any> {
|
|
4
3
|
imgAlt?: string;
|
|
5
4
|
imgSrc?: string;
|
|
@@ -37,11 +36,10 @@ declare const _default: <ContextObjType extends {
|
|
|
37
36
|
hideRadio?: boolean;
|
|
38
37
|
bgColor?: string;
|
|
39
38
|
activeBgColor?: string;
|
|
40
|
-
activeTextColor?: string;
|
|
41
39
|
borderColor?: string;
|
|
42
40
|
textColor?: string;
|
|
43
41
|
textAlign?: "left" | "center" | "right";
|
|
44
|
-
}
|
|
42
|
+
}) & Partial<{}>> & import('vue').PublicProps;
|
|
45
43
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
46
44
|
attrs: any;
|
|
47
45
|
slots: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export interface RangeInputProps extends BagelInputShellProps {
|
|
1
|
+
export interface RangeInputProps {
|
|
3
2
|
modelValue: number | [number, number];
|
|
4
3
|
min?: number;
|
|
5
4
|
max?: number;
|
|
@@ -11,10 +10,6 @@ export interface RangeInputProps extends BagelInputShellProps {
|
|
|
11
10
|
rtl?: boolean;
|
|
12
11
|
multiRange?: boolean;
|
|
13
12
|
formatValue?: (value: number) => string;
|
|
14
|
-
/** צבע הרקע של הפס (track) */
|
|
15
|
-
trackColor?: string;
|
|
16
|
-
/** צבע הפס הפעיל והעיגול — ברירת מחדל: labelActiveColor או primary */
|
|
17
|
-
activeColor?: string;
|
|
18
13
|
}
|
|
19
14
|
declare function __VLS_template(): {
|
|
20
15
|
attrs: Partial<{}>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ToolbarConfig } from './richTextTypes';
|
|
2
|
-
import { BagelInputShellProps } from '../bagelInputShell';
|
|
3
2
|
type __VLS_Props = {
|
|
4
3
|
modelValue: string;
|
|
5
4
|
toolbarConfig?: ToolbarConfig;
|
|
@@ -22,7 +21,7 @@ type __VLS_Props = {
|
|
|
22
21
|
autofocus?: boolean;
|
|
23
22
|
textColor?: string;
|
|
24
23
|
fontSize?: number | string;
|
|
25
|
-
}
|
|
24
|
+
};
|
|
26
25
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
27
26
|
editor: {
|
|
28
27
|
state: {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Option } from '../../..';
|
|
2
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
3
2
|
type __VLS_Props = {
|
|
4
3
|
options: Option[];
|
|
5
4
|
label?: string;
|
|
6
5
|
required?: boolean;
|
|
7
6
|
error?: string;
|
|
8
7
|
thin?: boolean;
|
|
8
|
+
outline?: boolean;
|
|
9
9
|
multiselect?: boolean;
|
|
10
|
-
}
|
|
10
|
+
};
|
|
11
11
|
type __VLS_PublicProps = {
|
|
12
12
|
'modelValue'?: string | number | (string | number)[] | null;
|
|
13
13
|
} & __VLS_Props;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { IconType, Option } from '../../..';
|
|
2
2
|
import { AlignedPlacement } from '../../Dropdown.vue';
|
|
3
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
4
3
|
type OptionsSource = Option[] | ((query: string) => Promise<Option[]>);
|
|
5
|
-
interface PropTypes
|
|
4
|
+
interface PropTypes {
|
|
6
5
|
options: OptionsSource;
|
|
7
6
|
placeholder?: string;
|
|
8
7
|
disabled?: boolean;
|
|
@@ -21,10 +20,6 @@ interface PropTypes extends BagelInputShellProps {
|
|
|
21
20
|
searchPlaceholder?: string;
|
|
22
21
|
error?: string;
|
|
23
22
|
underlined?: boolean;
|
|
24
|
-
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
25
|
-
border?: boolean;
|
|
26
|
-
thin?: boolean;
|
|
27
|
-
round?: boolean;
|
|
28
23
|
}
|
|
29
24
|
declare function __VLS_template(): {
|
|
30
25
|
attrs: Partial<{}>;
|
|
@@ -64,12 +59,13 @@ declare function __VLS_template(): {
|
|
|
64
59
|
show: number;
|
|
65
60
|
hide: number;
|
|
66
61
|
} | undefined;
|
|
67
|
-
readonly referenceEl?: (Element | null) | undefined;
|
|
68
62
|
readonly onHide?: (() => any) | undefined;
|
|
69
63
|
readonly "onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
70
64
|
readonly onShow?: (() => any) | undefined;
|
|
71
65
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
72
|
-
$attrs:
|
|
66
|
+
$attrs: {
|
|
67
|
+
[x: string]: unknown;
|
|
68
|
+
};
|
|
73
69
|
$refs: {
|
|
74
70
|
[x: string]: unknown;
|
|
75
71
|
} & {
|
|
@@ -114,7 +110,6 @@ declare function __VLS_template(): {
|
|
|
114
110
|
show: number;
|
|
115
111
|
hide: number;
|
|
116
112
|
};
|
|
117
|
-
referenceEl?: Element | null;
|
|
118
113
|
}> & Readonly<{
|
|
119
114
|
onHide?: (() => any) | undefined;
|
|
120
115
|
"onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
@@ -199,16 +194,15 @@ declare function __VLS_template(): {
|
|
|
199
194
|
show: number;
|
|
200
195
|
hide: number;
|
|
201
196
|
};
|
|
202
|
-
referenceEl?: Element | null;
|
|
203
197
|
}> & Readonly<{
|
|
204
198
|
onHide?: (() => any) | undefined;
|
|
205
199
|
"onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
206
200
|
onShow?: (() => any) | undefined;
|
|
207
|
-
}>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & {
|
|
201
|
+
}>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & import('vue').ShallowUnwrapRef<{
|
|
208
202
|
show: () => Promise<void>;
|
|
209
203
|
hide: () => void;
|
|
210
|
-
shown: boolean
|
|
211
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
204
|
+
shown: import('vue').ModelRef<boolean, string, boolean, boolean>;
|
|
205
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
212
206
|
$slots: {
|
|
213
207
|
trigger?(_: {
|
|
214
208
|
show: () => Promise<void>;
|
|
@@ -298,12 +292,13 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
298
292
|
show: number;
|
|
299
293
|
hide: number;
|
|
300
294
|
} | undefined;
|
|
301
|
-
readonly referenceEl?: (Element | null) | undefined;
|
|
302
295
|
readonly onHide?: (() => any) | undefined;
|
|
303
296
|
readonly "onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
304
297
|
readonly onShow?: (() => any) | undefined;
|
|
305
298
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
306
|
-
$attrs:
|
|
299
|
+
$attrs: {
|
|
300
|
+
[x: string]: unknown;
|
|
301
|
+
};
|
|
307
302
|
$refs: {
|
|
308
303
|
[x: string]: unknown;
|
|
309
304
|
} & {
|
|
@@ -348,7 +343,6 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
348
343
|
show: number;
|
|
349
344
|
hide: number;
|
|
350
345
|
};
|
|
351
|
-
referenceEl?: Element | null;
|
|
352
346
|
}> & Readonly<{
|
|
353
347
|
onHide?: (() => any) | undefined;
|
|
354
348
|
"onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
@@ -433,16 +427,15 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
433
427
|
show: number;
|
|
434
428
|
hide: number;
|
|
435
429
|
};
|
|
436
|
-
referenceEl?: Element | null;
|
|
437
430
|
}> & Readonly<{
|
|
438
431
|
onHide?: (() => any) | undefined;
|
|
439
432
|
"onUpdate:shown"?: ((value: boolean) => any) | undefined;
|
|
440
433
|
onShow?: (() => any) | undefined;
|
|
441
|
-
}>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & {
|
|
434
|
+
}>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & import('vue').ShallowUnwrapRef<{
|
|
442
435
|
show: () => Promise<void>;
|
|
443
436
|
hide: () => void;
|
|
444
|
-
shown: boolean
|
|
445
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
437
|
+
shown: import('vue').ModelRef<boolean, string, boolean, boolean>;
|
|
438
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
446
439
|
$slots: {
|
|
447
440
|
trigger?(_: {
|
|
448
441
|
show: () => Promise<void>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Options as SignaturePadOptions } from 'signature_pad';
|
|
2
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
3
2
|
export interface WaterMark {
|
|
4
3
|
text: string;
|
|
5
4
|
x: number;
|
|
@@ -24,11 +23,7 @@ type __VLS_Props = {
|
|
|
24
23
|
format?: FormatType;
|
|
25
24
|
clearable?: boolean;
|
|
26
25
|
required?: boolean;
|
|
27
|
-
|
|
28
|
-
helptext?: string;
|
|
29
|
-
penColor?: string;
|
|
30
|
-
backgroundColor?: string;
|
|
31
|
-
} & BagelInputShellProps;
|
|
26
|
+
};
|
|
32
27
|
declare function clear(): void;
|
|
33
28
|
declare function save(format?: FormatType): string | undefined;
|
|
34
29
|
declare function fromDataURL(url: string): Promise<void> | undefined;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
1
|
type __VLS_Props = {
|
|
3
2
|
description?: string;
|
|
4
3
|
meta: {
|
|
@@ -7,7 +6,7 @@ type __VLS_Props = {
|
|
|
7
6
|
fieldname: string;
|
|
8
7
|
bagelApp?: any;
|
|
9
8
|
modelValue: any;
|
|
10
|
-
}
|
|
9
|
+
};
|
|
11
10
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
11
|
"update:modelValue": (...args: any[]) => void;
|
|
13
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
1
|
type __VLS_Props = {
|
|
3
2
|
id?: string;
|
|
4
3
|
label?: string;
|
|
@@ -10,7 +9,7 @@ type __VLS_Props = {
|
|
|
10
9
|
disabled?: boolean;
|
|
11
10
|
underlined?: boolean;
|
|
12
11
|
error?: string;
|
|
13
|
-
}
|
|
12
|
+
};
|
|
14
13
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
14
|
input: (...args: any[]) => void;
|
|
16
15
|
paste: (...args: any[]) => void;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { IconType, ValidateInputBaseT } from '../../..';
|
|
2
|
-
|
|
3
|
-
export interface TextInputProps extends ValidateInputBaseT, BagelInputShellProps {
|
|
2
|
+
export interface TextInputProps extends ValidateInputBaseT {
|
|
4
3
|
id?: string;
|
|
5
4
|
title?: string;
|
|
6
5
|
helptext?: string;
|
|
@@ -26,7 +25,7 @@ export interface TextInputProps extends ValidateInputBaseT, BagelInputShellProps
|
|
|
26
25
|
autoheight?: boolean;
|
|
27
26
|
code?: boolean;
|
|
28
27
|
rows?: number | string;
|
|
29
|
-
autocomplete?:
|
|
28
|
+
autocomplete?: AutoFillField;
|
|
30
29
|
autofocus?: boolean;
|
|
31
30
|
error?: string;
|
|
32
31
|
onFocusout?: (e: FocusEvent) => void;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
1
|
type __VLS_Props = {
|
|
3
2
|
label?: string;
|
|
4
3
|
id?: string;
|
|
@@ -6,7 +5,7 @@ type __VLS_Props = {
|
|
|
6
5
|
small?: boolean;
|
|
7
6
|
required?: boolean;
|
|
8
7
|
defaultValue?: boolean;
|
|
9
|
-
}
|
|
8
|
+
};
|
|
10
9
|
type __VLS_PublicProps = {
|
|
11
10
|
'modelValue'?: boolean | undefined;
|
|
12
11
|
} & __VLS_Props;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { UploadInputProps } from '../../../../types/BagelForm';
|
|
2
|
+
type __VLS_Props = UploadInputProps & {
|
|
3
|
+
showIcon?: boolean;
|
|
4
|
+
icon?: string;
|
|
5
|
+
};
|
|
2
6
|
declare function __VLS_template(): {
|
|
3
7
|
attrs: Partial<{}>;
|
|
4
8
|
slots: {
|
|
@@ -25,30 +29,6 @@ declare function __VLS_template(): {
|
|
|
25
29
|
namespace?: string | undefined;
|
|
26
30
|
}[];
|
|
27
31
|
}): any;
|
|
28
|
-
'drop-placeholder'?(_: {
|
|
29
|
-
files: string[];
|
|
30
|
-
fileQueue: {
|
|
31
|
-
file: {
|
|
32
|
-
readonly lastModified: number;
|
|
33
|
-
readonly name: string;
|
|
34
|
-
readonly webkitRelativePath: string;
|
|
35
|
-
readonly size: number;
|
|
36
|
-
readonly type: string;
|
|
37
|
-
arrayBuffer: () => Promise<ArrayBuffer>;
|
|
38
|
-
bytes: () => Promise<Uint8Array<ArrayBuffer>>;
|
|
39
|
-
slice: (start?: number, end?: number, contentType?: string) => Blob;
|
|
40
|
-
stream: () => ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
41
|
-
text: () => Promise<string>;
|
|
42
|
-
};
|
|
43
|
-
url?: string | undefined;
|
|
44
|
-
progress: number;
|
|
45
|
-
uploading?: boolean | undefined;
|
|
46
|
-
name?: string | undefined;
|
|
47
|
-
uploaded?: boolean | undefined;
|
|
48
|
-
namespace?: string | undefined;
|
|
49
|
-
}[];
|
|
50
|
-
browse: (autoFlush?: boolean) => void;
|
|
51
|
-
}): any;
|
|
52
32
|
placeholder?(_: {
|
|
53
33
|
files: string[];
|
|
54
34
|
fileQueue: {
|
|
@@ -78,16 +58,15 @@ declare function __VLS_template(): {
|
|
|
78
58
|
rootEl: HTMLDivElement;
|
|
79
59
|
};
|
|
80
60
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
81
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
61
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
82
62
|
"update:modelValue": (...args: any[]) => void;
|
|
83
63
|
addFileStart: (...args: any[]) => void;
|
|
84
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
64
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
85
65
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
86
66
|
onAddFileStart?: ((...args: any[]) => any) | undefined;
|
|
87
67
|
}>, {
|
|
88
68
|
icon: string;
|
|
89
69
|
height: string | "auto";
|
|
90
|
-
iconSize: number | string;
|
|
91
70
|
theme: "dropzone" | "basic";
|
|
92
71
|
accept: string;
|
|
93
72
|
showIcon: boolean;
|
|
@@ -6,7 +6,7 @@ export declare function createUploadApi(options?: {
|
|
|
6
6
|
export declare const files: {
|
|
7
7
|
get: (pathKey?: string) => Promise<AxiosResponse<BglFile>>;
|
|
8
8
|
put: (bglFilePatch: BglFilePatch, pathKey?: string) => Promise<AxiosResponse<BglFile>>;
|
|
9
|
-
delete: (pathKey?: string) => Promise<AxiosResponse<any, any
|
|
9
|
+
delete: (pathKey?: string) => Promise<AxiosResponse<any, any>>;
|
|
10
10
|
upload: (file: File, options?: UploadOptions & {
|
|
11
11
|
dirPath?: string;
|
|
12
12
|
tags?: string[];
|
|
@@ -19,12 +19,10 @@ export { Draggable, useDraggable, vDraggable } from './draggable';
|
|
|
19
19
|
export { default as DragOver } from './DragOver.vue';
|
|
20
20
|
export { default as Dropdown } from './Dropdown.vue';
|
|
21
21
|
export { default as FieldSetVue } from './FieldSetVue.vue';
|
|
22
|
-
export { default as
|
|
23
|
-
export type { FilterField, QueryOption } from './FilterQuery.types';
|
|
22
|
+
export { default as Filter } from './Filter.vue';
|
|
24
23
|
export { default as Flag } from './Flag.vue';
|
|
25
24
|
export * from './form';
|
|
26
25
|
export { default as Icon } from './Icon/Icon.vue';
|
|
27
|
-
export { FONT_AWESOME_ICONS, FONT_AWESOME_BRANDS_ICONS, MATERIAL_ICONS } from './Icon/constants';
|
|
28
26
|
export { default as IframeVue } from './IframeVue.vue';
|
|
29
27
|
export { default as Image } from './Image.vue';
|
|
30
28
|
export { default as ImportData } from './ImportData.vue';
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
sidebarWidth?: string;
|
|
3
3
|
sidebarCardStyle?: boolean;
|
|
4
|
-
defaultOpen?: boolean;
|
|
5
4
|
}
|
|
6
5
|
declare function __VLS_template(): {
|
|
7
6
|
attrs: Partial<{}>;
|
|
@@ -17,7 +16,6 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
17
16
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
18
17
|
sidebarCardStyle: boolean;
|
|
19
18
|
sidebarWidth: string;
|
|
20
|
-
defaultOpen: boolean;
|
|
21
19
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
20
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
21
|
export default _default;
|
|
@@ -15,8 +15,6 @@ interface Props {
|
|
|
15
15
|
name?: string;
|
|
16
16
|
frame?: boolean;
|
|
17
17
|
activeRoutes?: string[];
|
|
18
|
-
centerlinks?: boolean;
|
|
19
|
-
defaultOpen?: boolean;
|
|
20
18
|
}
|
|
21
19
|
declare function __VLS_template(): {
|
|
22
20
|
attrs: Partial<{}>;
|
|
@@ -31,13 +29,11 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
31
29
|
name: string;
|
|
32
30
|
card: boolean;
|
|
33
31
|
textColor: string;
|
|
34
|
-
activeColor: string;
|
|
35
32
|
bgColor: string;
|
|
36
|
-
defaultOpen: boolean;
|
|
37
33
|
footerLinks: LinkWithAction[];
|
|
38
34
|
logoAlt: string;
|
|
35
|
+
activeColor: string;
|
|
39
36
|
logoHeight: string;
|
|
40
|
-
centerlinks: boolean;
|
|
41
37
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
42
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
39
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Tab
|
|
1
|
+
import { Tab } from '../..';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
title?: string;
|
|
4
4
|
tabs: Tab[];
|
|
@@ -7,17 +7,6 @@ type __VLS_Props = {
|
|
|
7
7
|
group: string;
|
|
8
8
|
flat?: boolean;
|
|
9
9
|
vertical?: boolean;
|
|
10
|
-
icon?: IconType;
|
|
11
|
-
iconEnd?: IconType;
|
|
12
|
-
iconSize?: number | string;
|
|
13
|
-
iconMobileSize?: number | string;
|
|
14
|
-
thin?: boolean;
|
|
15
|
-
size?: 'xs' | 's' | 'm' | 'l' | 'xl' | 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large';
|
|
16
|
-
fullWidth?: boolean;
|
|
17
|
-
fullWidthMobile?: boolean;
|
|
18
|
-
alignTxt?: 'center' | 'start' | 'end';
|
|
19
|
-
alignTxtMobile?: 'center' | 'start' | 'end';
|
|
20
|
-
outline?: boolean;
|
|
21
10
|
};
|
|
22
11
|
declare function selectTab(tab: Tab): void;
|
|
23
12
|
declare function isActive(tab: Tab): boolean;
|
|
@@ -10,12 +10,7 @@ export interface Props {
|
|
|
10
10
|
declare function validateCurrentStep(): boolean;
|
|
11
11
|
declare function __VLS_template(): {
|
|
12
12
|
attrs: Partial<{}>;
|
|
13
|
-
slots:
|
|
14
|
-
schema: SchemaDefinition<Record<string, any>>;
|
|
15
|
-
formData: any;
|
|
16
|
-
stepKey: string;
|
|
17
|
-
errors: Record<string, string>;
|
|
18
|
-
}) => any>> & Partial<Record<string, (_: any) => any>>;
|
|
13
|
+
slots: any;
|
|
19
14
|
refs: {};
|
|
20
15
|
rootEl: HTMLDivElement;
|
|
21
16
|
};
|