@finmars/ui 1.0.33 → 1.0.35
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/finmars-ui.css +1 -1
- package/dist/finmars-ui.es.js +2434 -2386
- package/dist/finmars-ui.umd.js +3 -3
- package/dist/src/components/fm/DateEditor/DateEditor.vue.d.ts +2 -2
- package/dist/src/components/fm/DatePicker/DatePicker.vue.d.ts +8 -8
- package/dist/src/components/fm/ItemPicker/ItemPicker.vue.d.ts +2 -2
- package/dist/src/components/fm/ItemPicker/ItemPickerGroup.vue.d.ts +2 -2
- package/dist/src/components/fm/ItemPicker/ItemPickerSearchResult.vue.d.ts +2 -2
- package/dist/src/components/fm/Logo/Logo.vue.d.ts +2 -2
- package/dist/src/components/fm/Menu/Menu.vue.d.ts +2 -2
- package/dist/src/components/fm/Search/Search.vue.d.ts +6 -6
- package/dist/src/components/fm/Select/Select.vue.d.ts +2 -1
- package/dist/src/components/fm/Select/types.d.ts +1 -0
- package/dist/src/components/fm/TextField/TextField.vue.d.ts +25 -2
- package/dist/src/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -5,8 +5,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
5
5
|
showAdjacentMonths: boolean;
|
|
6
6
|
locals: Record<string, any>;
|
|
7
7
|
modelValue?: string | undefined;
|
|
8
|
-
min?: string | undefined;
|
|
9
8
|
max?: string | undefined;
|
|
9
|
+
min?: string | undefined;
|
|
10
10
|
nonWorkingDays?: unknown[] | undefined;
|
|
11
11
|
$props: {
|
|
12
12
|
readonly disabled?: boolean | undefined;
|
|
@@ -14,8 +14,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
14
14
|
readonly showAdjacentMonths?: boolean | undefined;
|
|
15
15
|
readonly locals?: Record<string, any> | undefined;
|
|
16
16
|
readonly modelValue?: string | undefined;
|
|
17
|
-
readonly min?: string | undefined;
|
|
18
17
|
readonly max?: string | undefined;
|
|
18
|
+
readonly min?: string | undefined;
|
|
19
19
|
readonly nonWorkingDays?: unknown[] | undefined;
|
|
20
20
|
};
|
|
21
21
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -8,14 +8,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
8
8
|
minWidth?: string | number | undefined;
|
|
9
9
|
modelValue?: string | undefined;
|
|
10
10
|
width?: string | number | undefined;
|
|
11
|
+
maxWidth?: string | number | undefined;
|
|
12
|
+
height?: string | number | undefined;
|
|
13
|
+
max?: string | undefined;
|
|
14
|
+
min?: string | undefined;
|
|
11
15
|
title?: string | undefined;
|
|
12
16
|
header?: string | undefined;
|
|
13
|
-
min?: string | undefined;
|
|
14
|
-
max?: string | undefined;
|
|
15
17
|
allowedDates?: Function | unknown[] | undefined;
|
|
16
|
-
maxWidth?: string | number | undefined;
|
|
17
18
|
minHeight?: string | number | undefined;
|
|
18
|
-
height?: string | number | undefined;
|
|
19
19
|
maxHeight?: string | number | undefined;
|
|
20
20
|
$props: {
|
|
21
21
|
readonly disabled?: boolean | undefined;
|
|
@@ -26,14 +26,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
26
26
|
readonly minWidth?: string | number | undefined;
|
|
27
27
|
readonly modelValue?: string | undefined;
|
|
28
28
|
readonly width?: string | number | undefined;
|
|
29
|
+
readonly maxWidth?: string | number | undefined;
|
|
30
|
+
readonly height?: string | number | undefined;
|
|
31
|
+
readonly max?: string | undefined;
|
|
32
|
+
readonly min?: string | undefined;
|
|
29
33
|
readonly title?: string | undefined;
|
|
30
34
|
readonly header?: string | undefined;
|
|
31
|
-
readonly min?: string | undefined;
|
|
32
|
-
readonly max?: string | undefined;
|
|
33
35
|
readonly allowedDates?: Function | unknown[] | undefined;
|
|
34
|
-
readonly maxWidth?: string | number | undefined;
|
|
35
36
|
readonly minHeight?: string | number | undefined;
|
|
36
|
-
readonly height?: string | number | undefined;
|
|
37
37
|
readonly maxHeight?: string | number | undefined;
|
|
38
38
|
};
|
|
39
39
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -3,18 +3,18 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
3
3
|
modelValue: unknown[];
|
|
4
4
|
width: string | number;
|
|
5
5
|
height: string | number;
|
|
6
|
+
multiple: boolean;
|
|
6
7
|
locals: Record<string, any>;
|
|
7
8
|
suggested: unknown[];
|
|
8
|
-
multiple: boolean;
|
|
9
9
|
mode: string;
|
|
10
10
|
categories: unknown[];
|
|
11
11
|
$props: {
|
|
12
12
|
readonly modelValue?: unknown[] | undefined;
|
|
13
13
|
readonly width?: string | number | undefined;
|
|
14
14
|
readonly height?: string | number | undefined;
|
|
15
|
+
readonly multiple?: boolean | undefined;
|
|
15
16
|
readonly locals?: Record<string, any> | undefined;
|
|
16
17
|
readonly suggested?: unknown[] | undefined;
|
|
17
|
-
readonly multiple?: boolean | undefined;
|
|
18
18
|
readonly mode?: string | undefined;
|
|
19
19
|
readonly categories?: unknown[] | undefined;
|
|
20
20
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "select", ...args: any[]) => void;
|
|
3
|
-
group: Record<string, any>;
|
|
4
3
|
multiple: boolean;
|
|
4
|
+
group: Record<string, any>;
|
|
5
5
|
mode: string;
|
|
6
6
|
initialSelectedItemsIds: unknown[];
|
|
7
7
|
selectedItemsIds: unknown[];
|
|
8
8
|
$props: {
|
|
9
|
-
readonly group?: Record<string, any> | undefined;
|
|
10
9
|
readonly multiple?: boolean | undefined;
|
|
10
|
+
readonly group?: Record<string, any> | undefined;
|
|
11
11
|
readonly mode?: string | undefined;
|
|
12
12
|
readonly initialSelectedItemsIds?: unknown[] | undefined;
|
|
13
13
|
readonly selectedItemsIds?: unknown[] | undefined;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "select", ...args: any[]) => void;
|
|
3
|
+
multiple: boolean;
|
|
3
4
|
items: unknown[];
|
|
4
5
|
allItems: Record<string, any>;
|
|
5
|
-
multiple: boolean;
|
|
6
6
|
mode: string;
|
|
7
7
|
initialSelectedItemsIds: unknown[];
|
|
8
8
|
selectedItemsIds: unknown[];
|
|
9
9
|
searchText?: string | undefined;
|
|
10
10
|
$props: {
|
|
11
|
+
readonly multiple?: boolean | undefined;
|
|
11
12
|
readonly items?: unknown[] | undefined;
|
|
12
13
|
readonly allItems?: Record<string, any> | undefined;
|
|
13
|
-
readonly multiple?: boolean | undefined;
|
|
14
14
|
readonly mode?: string | undefined;
|
|
15
15
|
readonly initialSelectedItemsIds?: unknown[] | undefined;
|
|
16
16
|
readonly selectedItemsIds?: unknown[] | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
size?: string | undefined;
|
|
3
|
-
maxHeight?: string | undefined;
|
|
4
3
|
theme?: string | undefined;
|
|
4
|
+
maxHeight?: string | undefined;
|
|
5
5
|
$props: {
|
|
6
6
|
readonly size?: string | undefined;
|
|
7
|
-
readonly maxHeight?: string | undefined;
|
|
8
7
|
readonly theme?: string | undefined;
|
|
8
|
+
readonly maxHeight?: string | undefined;
|
|
9
9
|
};
|
|
10
10
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
11
|
export default _default;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
24
24
|
minWidth?: string | number | undefined;
|
|
25
25
|
width?: string | number | undefined;
|
|
26
26
|
maxWidth?: string | number | undefined;
|
|
27
|
-
minHeight?: string | number | undefined;
|
|
28
27
|
height?: string | number | undefined;
|
|
28
|
+
minHeight?: string | number | undefined;
|
|
29
29
|
maxHeight?: string | number | undefined;
|
|
30
30
|
activator?: string | Record<string, any> | undefined;
|
|
31
31
|
location?: string | undefined;
|
|
@@ -51,8 +51,8 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
51
51
|
readonly minWidth?: string | number | undefined;
|
|
52
52
|
readonly width?: string | number | undefined;
|
|
53
53
|
readonly maxWidth?: string | number | undefined;
|
|
54
|
-
readonly minHeight?: string | number | undefined;
|
|
55
54
|
readonly height?: string | number | undefined;
|
|
55
|
+
readonly minHeight?: string | number | undefined;
|
|
56
56
|
readonly maxHeight?: string | number | undefined;
|
|
57
57
|
readonly activator?: string | Record<string, any> | undefined;
|
|
58
58
|
readonly location?: string | undefined;
|
|
@@ -13,13 +13,13 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
13
13
|
rules: unknown[];
|
|
14
14
|
readonly: boolean;
|
|
15
15
|
style: Record<string, any>;
|
|
16
|
-
|
|
16
|
+
prependInnerIcon: string;
|
|
17
17
|
multiple: boolean;
|
|
18
|
+
items: unknown[];
|
|
18
19
|
autoSelectFirst: string | boolean;
|
|
19
20
|
itemTitle: string;
|
|
20
21
|
itemValue: string;
|
|
21
22
|
clearOnSelect: boolean;
|
|
22
|
-
prependInnerIcon: string;
|
|
23
23
|
prependIconColor: string;
|
|
24
24
|
filterKeys: string | unknown[];
|
|
25
25
|
filterMode: string;
|
|
@@ -32,12 +32,12 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
32
32
|
returnObject: boolean;
|
|
33
33
|
minWidth?: string | number | undefined;
|
|
34
34
|
modelValue?: string | number | Record<string, any> | undefined;
|
|
35
|
+
id?: string | undefined;
|
|
35
36
|
name?: string | undefined;
|
|
36
37
|
width?: string | number | undefined;
|
|
37
38
|
hint?: string | undefined;
|
|
38
39
|
errorMessages?: string | unknown[] | undefined;
|
|
39
40
|
maxWidth?: string | number | undefined;
|
|
40
|
-
id?: string | undefined;
|
|
41
41
|
search?: string | undefined;
|
|
42
42
|
noDataText?: string | undefined;
|
|
43
43
|
$props: {
|
|
@@ -49,13 +49,13 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
49
49
|
readonly rules?: unknown[] | undefined;
|
|
50
50
|
readonly readonly?: boolean | undefined;
|
|
51
51
|
readonly style?: Record<string, any> | undefined;
|
|
52
|
-
readonly
|
|
52
|
+
readonly prependInnerIcon?: string | undefined;
|
|
53
53
|
readonly multiple?: boolean | undefined;
|
|
54
|
+
readonly items?: unknown[] | undefined;
|
|
54
55
|
readonly autoSelectFirst?: string | boolean | undefined;
|
|
55
56
|
readonly itemTitle?: string | undefined;
|
|
56
57
|
readonly itemValue?: string | undefined;
|
|
57
58
|
readonly clearOnSelect?: boolean | undefined;
|
|
58
|
-
readonly prependInnerIcon?: string | undefined;
|
|
59
59
|
readonly prependIconColor?: string | undefined;
|
|
60
60
|
readonly filterKeys?: string | unknown[] | undefined;
|
|
61
61
|
readonly filterMode?: string | undefined;
|
|
@@ -68,12 +68,12 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
68
68
|
readonly returnObject?: boolean | undefined;
|
|
69
69
|
readonly minWidth?: string | number | undefined;
|
|
70
70
|
readonly modelValue?: string | number | Record<string, any> | undefined;
|
|
71
|
+
readonly id?: string | undefined;
|
|
71
72
|
readonly name?: string | undefined;
|
|
72
73
|
readonly width?: string | number | undefined;
|
|
73
74
|
readonly hint?: string | undefined;
|
|
74
75
|
readonly errorMessages?: string | unknown[] | undefined;
|
|
75
76
|
readonly maxWidth?: string | number | undefined;
|
|
76
|
-
readonly id?: string | undefined;
|
|
77
77
|
readonly search?: string | undefined;
|
|
78
78
|
readonly noDataText?: string | undefined;
|
|
79
79
|
};
|
|
@@ -6,7 +6,8 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
|
|
|
6
6
|
readonly "onClick:clear"?: ((value: MouseEvent) => any) | undefined;
|
|
7
7
|
readonly "onClick:prependInner"?: ((value: MouseEvent) => any) | undefined;
|
|
8
8
|
readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
9
|
-
|
|
9
|
+
readonly "onClick:selection"?: ((value: MouseEvent) => any) | undefined;
|
|
10
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:focused" | "onClick:prepend" | "onUpdate:modelValue" | "onClick:clear" | "onClick:prependInner" | "onClick:selection"> & FmSelectProps<T>> & import('vue').PublicProps;
|
|
10
11
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
11
12
|
attrs: any;
|
|
12
13
|
slots: Readonly<FmSelectSlots<T>> & FmSelectSlots<T>;
|
|
@@ -54,6 +54,7 @@ export interface FmSelectEmits<T> {
|
|
|
54
54
|
(event: 'click:clear', value: MouseEvent): void;
|
|
55
55
|
(event: 'click:prepend', value: MouseEvent): void;
|
|
56
56
|
(event: 'click:prependInner', value: MouseEvent): void;
|
|
57
|
+
(event: 'click:selection', value: MouseEvent): void;
|
|
57
58
|
(event: 'update:focused', value: boolean): void;
|
|
58
59
|
(event: 'update:modelValue', value: T | T[keyof T] | unknown): void;
|
|
59
60
|
}
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
+
controlRef: any;
|
|
2
8
|
errorMessages: any;
|
|
3
9
|
isValid: any;
|
|
4
10
|
reset: any;
|
|
@@ -9,4 +15,21 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
9
15
|
readonly [x: string]: any;
|
|
10
16
|
};
|
|
11
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
-
|
|
18
|
+
type __VLS_TemplateResult = {
|
|
19
|
+
slots: {
|
|
20
|
+
label?(_: {
|
|
21
|
+
isActive: any;
|
|
22
|
+
isFocused: any;
|
|
23
|
+
controlRef: any;
|
|
24
|
+
}): any;
|
|
25
|
+
message?(_: {
|
|
26
|
+
message: any;
|
|
27
|
+
}): any;
|
|
28
|
+
default?(_: {}): any;
|
|
29
|
+
};
|
|
30
|
+
refs: {
|
|
31
|
+
vtf: any;
|
|
32
|
+
};
|
|
33
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
34
|
+
};
|
|
35
|
+
declare var __VLS_inheritedAttrs: {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { default as FmItemPicker } from './components/fm/ItemPicker/ItemPicker.v
|
|
|
12
12
|
import { default as FmLogo } from './components/fm/Logo/Logo.vue';
|
|
13
13
|
import { default as FmMenu } from './components/fm/Menu/Menu.vue';
|
|
14
14
|
import { default as FmNavigationPortal } from './components/fm/Navigation/NavigationPortal.vue';
|
|
15
|
+
import { default as FmNavigation } from './components/fm/Navigation/Navigation.vue';
|
|
15
16
|
import { default as FmPagination } from './components/fm/Pagination/Pagination.vue';
|
|
16
17
|
import { FmPaginationProps, FmPaginationEmits } from './components/fm/Pagination/types';
|
|
17
18
|
import { default as FmProgressCircular } from './components/fm/ProgressCircular/ProgressCircular.vue';
|
|
@@ -26,7 +27,7 @@ import { default as FmSlider } from './components/fm/Slider/Slider.vue';
|
|
|
26
27
|
import { default as FmTextField } from './components/fm/TextField/TextField.vue';
|
|
27
28
|
import { default as FmTooltip } from './components/fm/Tooltip/Tooltip.vue';
|
|
28
29
|
import { default as FmHeader } from '../stories/Header.vue';
|
|
29
|
-
export { FmHeader, FmNavigationPortal, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDatePicker, FmIcon, FmIconButton, FmItemPicker, FmLogo, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSlider, FmTextField, FmTooltip, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectProps, FmSelectEmits, FmSelectSlots, };
|
|
30
|
+
export { FmHeader, FmNavigationPortal, FmNavigation, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDatePicker, FmIcon, FmIconButton, FmItemPicker, FmLogo, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSlider, FmTextField, FmTooltip, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectProps, FmSelectEmits, FmSelectSlots, };
|
|
30
31
|
/**
|
|
31
32
|
* VUE plugin that registers all components
|
|
32
33
|
*
|
|
@@ -38,6 +39,7 @@ export declare const uiComponentsPlugin: {
|
|
|
38
39
|
declare module 'vue' {
|
|
39
40
|
interface GlobalComponents {
|
|
40
41
|
FmNavigationPortal: typeof FmNavigationPortal;
|
|
42
|
+
FmNavigation: typeof FmNavigation;
|
|
41
43
|
FmHeader: typeof FmHeader;
|
|
42
44
|
FmAvatar: typeof FmAvatar;
|
|
43
45
|
FmBadge: typeof FmBadge;
|