@finmars/ui 1.0.58 → 1.0.59
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 +7532 -7461
- package/dist/fonts.css +43 -0
- package/dist/src/components/fm/Button/Button.vue.d.ts +4 -1
- package/dist/src/components/fm/Checkbox/Checkbox.vue.d.ts +4 -4
- package/dist/src/components/fm/DateEditor/types.d.ts +1 -1
- package/dist/src/components/fm/FileUpload/FileUpload.vue.d.ts +2 -2
- package/dist/src/components/fm/Filters/FilterToolbar/FilterToolbar.vue.d.ts +5 -1
- package/dist/src/components/fm/Menu/Menu.vue.d.ts +6 -6
- package/dist/src/components/fm/Navigation/NavigationItem.vue.d.ts +2 -2
- package/dist/src/components/fm/Navigation/NavigationPortal.vue.d.ts +2 -0
- package/dist/src/components/fm/Pagination/types.d.ts +1 -1
- package/dist/src/components/fm/RangeSlider/RangeSlider.vue.d.ts +1 -1
- package/dist/src/components/fm/Select/SelectActivator.vue.d.ts +2 -2
- package/dist/src/components/fm/Slider/Slider.vue.d.ts +1 -1
- package/dist/src/components/fm/TextField/TextField.vue.d.ts +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/types/general.d.ts +1 -0
- package/dist/themes.css +23 -24
- package/package.json +89 -88
package/dist/fonts.css
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: SFPro, sans-serif;
|
|
3
|
+
src: url("../fonts/sfPro/SFPro-Regular.woff2") format("woff2");
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: SFPro, sans-serif;
|
|
9
|
+
src: url("../fonts/sfPro/SFPro-Medium.woff2") format("woff2");
|
|
10
|
+
font-weight: 500;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
}
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: SFPro, sans-serif;
|
|
15
|
+
src: url("../fonts/sfPro/SFPro-Semibold.woff2") format("woff2");
|
|
16
|
+
font-weight: 600;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
}
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: SFPro, sans-serif;
|
|
21
|
+
src: url("../fonts/sfPro/SFPro-Bold.woff2") format("woff2");
|
|
22
|
+
font-weight: 700;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: "Segoe UI", sans-serif;
|
|
28
|
+
src: url("../fonts/segoi/SegoeUI.woff2") format("woff2");
|
|
29
|
+
font-weight: 400;
|
|
30
|
+
font-style: normal;
|
|
31
|
+
}
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: "Segoe UI", sans-serif;
|
|
34
|
+
src: url("../fonts/segoi/SegoeUI-SemiBold.woff2") format("woff2");
|
|
35
|
+
font-weight: 500;
|
|
36
|
+
font-style: normal;
|
|
37
|
+
}
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: "Segoe UI", sans-serif;
|
|
40
|
+
src: url("../fonts/segoi/SegoeUI-Bold.woff2") format("woff2");
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
font-style: normal;
|
|
43
|
+
}
|
|
@@ -4,6 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
+
$emit: (event: "init", ...args: any[]) => void;
|
|
7
8
|
$props: {
|
|
8
9
|
readonly [x: string]: any;
|
|
9
10
|
};
|
|
@@ -15,7 +16,9 @@ type __VLS_TemplateResult = {
|
|
|
15
16
|
append?(_: {}): any;
|
|
16
17
|
prepend?(_: {}): any;
|
|
17
18
|
};
|
|
18
|
-
refs: {
|
|
19
|
+
refs: {
|
|
20
|
+
el: any;
|
|
21
|
+
};
|
|
19
22
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
20
23
|
};
|
|
21
24
|
declare var __VLS_inheritedAttrs: {};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
3
3
|
disabled: boolean;
|
|
4
|
-
|
|
4
|
+
value: boolean;
|
|
5
5
|
indeterminate: boolean;
|
|
6
|
+
modelValue: boolean;
|
|
6
7
|
error: boolean;
|
|
7
|
-
value: boolean;
|
|
8
8
|
label?: string | undefined;
|
|
9
9
|
$props: {
|
|
10
10
|
readonly disabled?: boolean | undefined;
|
|
11
|
-
readonly
|
|
11
|
+
readonly value?: boolean | undefined;
|
|
12
12
|
readonly indeterminate?: boolean | undefined;
|
|
13
|
+
readonly modelValue?: boolean | undefined;
|
|
13
14
|
readonly error?: boolean | undefined;
|
|
14
|
-
readonly value?: boolean | undefined;
|
|
15
15
|
readonly label?: string | undefined;
|
|
16
16
|
};
|
|
17
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -5,9 +5,9 @@ declare const _default: import('vue').DefineComponent<FmFileUploadProps, {}, {},
|
|
|
5
5
|
onUpdateFiles?: ((...args: any[]) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
icon: string;
|
|
8
|
-
label: string;
|
|
9
|
-
indeterminate: boolean;
|
|
10
8
|
variant: "normal" | "large";
|
|
9
|
+
indeterminate: boolean;
|
|
10
|
+
label: string;
|
|
11
11
|
multiple: boolean;
|
|
12
12
|
dialogTitle: string;
|
|
13
13
|
dialogContent: string;
|
|
@@ -6,5 +6,9 @@ declare const _default: import('vue').DefineComponent<FmtFilterToolbarProps, {},
|
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<FmtFilterToolbarProps> & Readonly<{
|
|
7
7
|
"onUpdate:modelValue"?: ((value: FmFilter[]) => any) | undefined;
|
|
8
8
|
"onUpdate:suggested"?: ((value: string) => any) | undefined;
|
|
9
|
-
}>, {
|
|
9
|
+
}>, {
|
|
10
|
+
value: FmFilter[];
|
|
11
|
+
attributes: import('./types').FmFilterAttribute[];
|
|
12
|
+
suggestedAttrs: string[];
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
14
|
export default _default;
|
|
@@ -23,14 +23,14 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
23
23
|
itemSize: string;
|
|
24
24
|
items: unknown[];
|
|
25
25
|
minWidth?: string | number | undefined;
|
|
26
|
-
activator?: string | Record<string, any> | undefined;
|
|
27
26
|
location?: string | undefined;
|
|
28
|
-
offset?: string | number | unknown[] | undefined;
|
|
29
27
|
height?: string | number | undefined;
|
|
30
|
-
width?: string | number | undefined;
|
|
31
28
|
maxHeight?: string | number | undefined;
|
|
32
29
|
maxWidth?: string | number | undefined;
|
|
33
30
|
minHeight?: string | number | undefined;
|
|
31
|
+
width?: string | number | undefined;
|
|
32
|
+
activator?: string | Record<string, any> | undefined;
|
|
33
|
+
offset?: string | number | unknown[] | undefined;
|
|
34
34
|
contentClass?: string | undefined;
|
|
35
35
|
id?: string | undefined;
|
|
36
36
|
$props: {
|
|
@@ -52,14 +52,14 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
52
52
|
readonly itemSize?: string | undefined;
|
|
53
53
|
readonly items?: unknown[] | undefined;
|
|
54
54
|
readonly minWidth?: string | number | undefined;
|
|
55
|
-
readonly activator?: string | Record<string, any> | undefined;
|
|
56
55
|
readonly location?: string | undefined;
|
|
57
|
-
readonly offset?: string | number | unknown[] | undefined;
|
|
58
56
|
readonly height?: string | number | undefined;
|
|
59
|
-
readonly width?: string | number | undefined;
|
|
60
57
|
readonly maxHeight?: string | number | undefined;
|
|
61
58
|
readonly maxWidth?: string | number | undefined;
|
|
62
59
|
readonly minHeight?: string | number | undefined;
|
|
60
|
+
readonly width?: string | number | undefined;
|
|
61
|
+
readonly activator?: string | Record<string, any> | undefined;
|
|
62
|
+
readonly offset?: string | number | unknown[] | undefined;
|
|
63
63
|
readonly contentClass?: string | undefined;
|
|
64
64
|
readonly id?: string | undefined;
|
|
65
65
|
};
|
|
@@ -5,8 +5,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
5
5
|
icon?: string | undefined;
|
|
6
6
|
href?: string | undefined;
|
|
7
7
|
to?: string | undefined;
|
|
8
|
-
label?: string | undefined;
|
|
9
8
|
style?: Record<string, any> | undefined;
|
|
9
|
+
label?: string | undefined;
|
|
10
10
|
children?: unknown[] | undefined;
|
|
11
11
|
classes?: string | undefined;
|
|
12
12
|
level?: number | undefined;
|
|
@@ -18,8 +18,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
18
18
|
readonly icon?: string | undefined;
|
|
19
19
|
readonly href?: string | undefined;
|
|
20
20
|
readonly to?: string | undefined;
|
|
21
|
-
readonly label?: string | undefined;
|
|
22
21
|
readonly style?: Record<string, any> | undefined;
|
|
22
|
+
readonly label?: string | undefined;
|
|
23
23
|
readonly children?: unknown[] | undefined;
|
|
24
24
|
readonly classes?: string | undefined;
|
|
25
25
|
readonly level?: number | undefined;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "resizeSideNav", ...args: any[]) => void;
|
|
3
|
+
items: unknown[];
|
|
3
4
|
isFloat: boolean;
|
|
4
5
|
isVue: boolean;
|
|
5
6
|
base?: string | undefined;
|
|
6
7
|
alternativeLink?: string | undefined;
|
|
7
8
|
route?: Record<string, any> | undefined;
|
|
8
9
|
$props: {
|
|
10
|
+
readonly items?: unknown[] | undefined;
|
|
9
11
|
readonly isFloat?: boolean | undefined;
|
|
10
12
|
readonly isVue?: boolean | undefined;
|
|
11
13
|
readonly base?: string | undefined;
|
|
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "start" | "end" | "update:modelValue" | "click:prepend" | "click:append", ...args: any[]) => void;
|
|
8
8
|
$props: {
|
|
9
9
|
readonly [x: string]: any;
|
|
10
10
|
};
|
|
@@ -8,6 +8,7 @@ declare function __VLS_template(): {
|
|
|
8
8
|
};
|
|
9
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
10
|
declare const __VLS_component: import('vue').DefineComponent<FmSelectActivatorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
+
init: (value: HTMLDivElement) => any;
|
|
11
12
|
keydown: (value: {
|
|
12
13
|
event: KeyboardEvent;
|
|
13
14
|
key: "down" | "up" | "esc" | "enter" | "space" | "tab";
|
|
@@ -15,9 +16,9 @@ declare const __VLS_component: import('vue').DefineComponent<FmSelectActivatorPr
|
|
|
15
16
|
"click:clear": (value: MouseEvent) => any;
|
|
16
17
|
focus: (value: FocusEvent) => any;
|
|
17
18
|
blur: (value: FocusEvent) => any;
|
|
18
|
-
init: (value: HTMLDivElement) => any;
|
|
19
19
|
"click:prependIcon": (value: MouseEvent) => any;
|
|
20
20
|
}, string, import('vue').PublicProps, Readonly<FmSelectActivatorProps> & Readonly<{
|
|
21
|
+
onInit?: ((value: HTMLDivElement) => any) | undefined;
|
|
21
22
|
onKeydown?: ((value: {
|
|
22
23
|
event: KeyboardEvent;
|
|
23
24
|
key: "down" | "up" | "esc" | "enter" | "space" | "tab";
|
|
@@ -25,7 +26,6 @@ declare const __VLS_component: import('vue').DefineComponent<FmSelectActivatorPr
|
|
|
25
26
|
"onClick:clear"?: ((value: MouseEvent) => any) | undefined;
|
|
26
27
|
onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
27
28
|
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
28
|
-
onInit?: ((value: HTMLDivElement) => any) | undefined;
|
|
29
29
|
"onClick:prependIcon"?: ((value: MouseEvent) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
31
|
variant: "standard" | "outlined";
|
|
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "start" | "end" | "update:modelValue" | "click:prepend" | "click:append", ...args: any[]) => void;
|
|
8
8
|
$props: {
|
|
9
9
|
readonly [x: string]: any;
|
|
10
10
|
};
|
|
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "update:modelValue" | "click:clear" | "click:control" | "click:prependInner" | "mousedown:control" | "focus" | "blur" | "change"
|
|
7
|
+
$emit: (event: "init" | "update:modelValue" | "click:clear" | "click:control" | "click:prependInner" | "mousedown:control" | "focus" | "blur" | "change", ...args: any[]) => void;
|
|
8
8
|
$props: {
|
|
9
9
|
readonly [x: string]: any;
|
|
10
10
|
};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -61,11 +61,12 @@ import { default as FmHeader } from '../stories/Header.vue';
|
|
|
61
61
|
import { default as FmHtml } from './directives/fm/Html';
|
|
62
62
|
import { FmDialogInstance } from './plugins/dialogs/types';
|
|
63
63
|
import { FmVueEventBus } from './plugins/vue-bus/types';
|
|
64
|
+
import { NavigationRoutes } from './components/fm/Navigation/Navigation.routes';
|
|
64
65
|
export * from './types';
|
|
65
66
|
export * from './utils';
|
|
66
67
|
export * from './plugins';
|
|
67
68
|
export * from './plugins/types';
|
|
68
|
-
export { Ripple, ClickOutside, Mutate, Resize, Intersect, Scroll, Tooltip, FmHeader, FmNavigationPortal, FmNavigation, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDateEditorProps, FmDateEditorEmits, FmDatePicker, FmDatePickerProps, FmDatePickerEmits, FmDialog, FmDialogComponentProps, FmDialogComponentEmits, FmDialogProps, FmDialogEvent, FmIcon, FmIconButton, FmItemPicker, FmItemPickerProps, FmItemPickerEmits, FmLogo, FmMenuItem, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSelectActivator, FmSlider, FmTextField, FmTooltip, FmVSelect, FmUploadFile, FmDialogOptions, FmFileUploadProps, FmFileUpload, FmChipProps, FmChipEmits, FmChipSlots, FmTabs, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectOption, FmSelectActivatorProps, FmSelectActivatorEmits, FmSelectActivatorSlots, FmSelectProps, FmSelectEmits, FmSelectSlots, FmVSelectProps, FmVSelectEmits, FmVSelectSlots, FmTransferList, FmTransferListProps, FmTransferListEmits, FmInputDate, FmInputDateProps, FmInputDateEmits, FmTimePicker, FmTimePickerProps, FmTimePickerEmits, FmInputTime, FmInputTimeProps, FmInputTimeEmits, FmDateTree, FmDateTreeItemProps, FmDateTreeEmits, FmFilterEditor, FmFilterEditorProps, FmFilterEditorEmits, FmFilterToolbar, FmFilterAttribute, FmFilterAttributes, FmtFilterToolbarProps, FmtFilterToolbarEmits, FmSwitch, FmBreadcrumbs, FmBreadcrumbProps, FmBreadcrumbItem, FmHtml };
|
|
69
|
+
export { Ripple, ClickOutside, Mutate, Resize, Intersect, Scroll, Tooltip, FmHeader, FmNavigationPortal, FmNavigation, FmAvatar, FmBadge, FmButton, FmCheckbox, FmChip, FmDateEditor, FmDateEditorProps, FmDateEditorEmits, FmDatePicker, FmDatePickerProps, FmDatePickerEmits, FmDialog, FmDialogComponentProps, FmDialogComponentEmits, FmDialogProps, FmDialogEvent, FmIcon, FmIconButton, FmItemPicker, FmItemPickerProps, FmItemPickerEmits, FmLogo, FmMenuItem, FmMenu, FmPagination, FmProgressCircular, FmProgressLinear, FmRadio, FmRadioGroup, FmRangeSlider, FmSearch, FmSelect, FmSelectActivator, FmSlider, FmTextField, FmTooltip, FmVSelect, FmUploadFile, FmDialogOptions, FmFileUploadProps, FmFileUpload, FmChipProps, FmChipEmits, FmChipSlots, FmTabs, FmIconProps, FmIconSlots, FmPaginationProps, FmPaginationEmits, FmSelectOption, FmSelectActivatorProps, FmSelectActivatorEmits, FmSelectActivatorSlots, FmSelectProps, FmSelectEmits, FmSelectSlots, FmVSelectProps, FmVSelectEmits, FmVSelectSlots, FmTransferList, FmTransferListProps, FmTransferListEmits, FmInputDate, FmInputDateProps, FmInputDateEmits, FmTimePicker, FmTimePickerProps, FmTimePickerEmits, FmInputTime, FmInputTimeProps, FmInputTimeEmits, FmDateTree, FmDateTreeItemProps, FmDateTreeEmits, FmFilterEditor, FmFilterEditorProps, FmFilterEditorEmits, FmFilterToolbar, FmFilterAttribute, FmFilterAttributes, FmtFilterToolbarProps, FmtFilterToolbarEmits, FmSwitch, FmBreadcrumbs, FmBreadcrumbProps, FmBreadcrumbItem, FmHtml, NavigationRoutes };
|
|
69
70
|
/**
|
|
70
71
|
* VUE plugin that registers all components
|
|
71
72
|
*
|
package/dist/themes.css
CHANGED
|
@@ -7,30 +7,29 @@
|
|
|
7
7
|
--spacing-32: 32px;
|
|
8
8
|
--spacing-48: 48px;
|
|
9
9
|
|
|
10
|
-
--display-large-font: 400 57px/64px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
11
|
-
--display-medium-font: 400 45px/52px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
12
|
-
--display-small-font: 400 36px/44px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
13
|
-
--headline-large-font: 400 32px/40px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
14
|
-
--headline-medium-font: 400 28px/36px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
15
|
-
--headline-small-font: 400 24px/32px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
16
|
-
--title-large-font: 400 22px/28px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
17
|
-
--title-medium-font: 500 16px/24px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
18
|
-
--title-small-font: 500 14px/20px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
19
|
-
--label-large-pro-font: 600 14px/20px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
20
|
-
--label-large-font: 500 14px/20px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
21
|
-
--label-medium-pro-font: 600 12px/16px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
22
|
-
--label-
|
|
23
|
-
--
|
|
24
|
-
--body-large-
|
|
25
|
-
--body-
|
|
26
|
-
--body-medium-
|
|
27
|
-
--body-
|
|
28
|
-
--
|
|
29
|
-
--number-large-
|
|
30
|
-
--number-
|
|
31
|
-
--number-medium-
|
|
32
|
-
--number-
|
|
33
|
-
--number-small-font: 400 12px/16px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
10
|
+
--display-large-font: 400 57px/64px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
11
|
+
--display-medium-font: 400 45px/52px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
12
|
+
--display-small-font: 400 36px/44px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
13
|
+
--headline-large-font: 400 32px/40px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
14
|
+
--headline-medium-font: 400 28px/36px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
15
|
+
--headline-small-font: 400 24px/32px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
16
|
+
--title-large-font: 400 22px/28px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
17
|
+
--title-medium-font: 500 16px/24px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
18
|
+
--title-small-font: 500 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
19
|
+
--label-large-pro-font: 600 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
20
|
+
--label-large-font: 500 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
21
|
+
--label-medium-pro-font: 600 12px/16px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
22
|
+
--label-small-font: 500 11px/16px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
23
|
+
--body-large-pro-font: 600 16px/24px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
24
|
+
--body-large-font: 400 16px/24px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
25
|
+
--body-medium-pro-font: 600 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
26
|
+
--body-medium-font: 400 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
27
|
+
--body-small-font: 400 12px/16px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
28
|
+
--number-large-pro-font: 600 16px/24px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
29
|
+
--number-large-font: 400 16px/24px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
30
|
+
--number-medium-pro-font: 600 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
31
|
+
--number-medium-font: 400 14px/20px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
32
|
+
--number-small-font: 400 12px/16px system-ui, -apple-system, SFPro, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
|
34
33
|
|
|
35
34
|
--white: #fff;
|
|
36
35
|
--black: #000;
|
package/package.json
CHANGED
|
@@ -1,90 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
2
|
+
"name": "@finmars/ui",
|
|
3
|
+
"version": "1.0.59",
|
|
4
|
+
"description": "",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite dev --config vite.config.dev.js",
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"storybook": "storybook dev -p 6006 --no-open",
|
|
9
|
+
"build-storybook": "node --max-old-space-size=4096 ./node_modules/.bin/storybook build",
|
|
10
|
+
"clean": "rimraf ./dist",
|
|
11
|
+
"copy:css": "cp ./src/assets/css/themes.css ./dist",
|
|
12
|
+
"copy:fonts": "cp ./src/assets/css/fonts.css ./dist",
|
|
13
|
+
"build": "npm run clean && vite build && npm run copy:fonts && npm run copy:css"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/",
|
|
17
|
+
"LICENSE.md",
|
|
18
|
+
"README.md",
|
|
19
|
+
"package.json"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"module": "dist/finmars-ui.es.js",
|
|
23
|
+
"types": "./dist/finmars-ui.es.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/finmars-ui.es.js",
|
|
27
|
+
"types": "./dist/finmars-ui.es.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./dist/finmars-ui.css": "./dist/finmars-ui.css",
|
|
30
|
+
"./dist/themes.css": "./dist/themes.css"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [],
|
|
33
|
+
"author": "Sergei Zhitenev",
|
|
34
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@chromatic-com/storybook": "^1.9.0",
|
|
37
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
38
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
39
|
+
"@storybook/addon-links": "^8.4.7",
|
|
40
|
+
"@storybook/addon-toolbars": "^8.4.7",
|
|
41
|
+
"@storybook/blocks": "^8.4.7",
|
|
42
|
+
"@storybook/manager-api": "^8.4.7",
|
|
43
|
+
"@storybook/test": "^8.4.7",
|
|
44
|
+
"@storybook/theming": "^8.4.7",
|
|
45
|
+
"@storybook/vue3": "^8.4.7",
|
|
46
|
+
"@storybook/vue3-vite": "^8.4.7",
|
|
47
|
+
"@types/lodash": "^4.17.13",
|
|
48
|
+
"@types/sanitize-html": "^2.13.0",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.15.0",
|
|
51
|
+
"@vuedx/typescript-plugin-vue": "^0.7.6",
|
|
52
|
+
"autoprefixer": "^10.4.19",
|
|
53
|
+
"eslint": "^8.24.0",
|
|
54
|
+
"eslint-config-prettier": "^9.1.0",
|
|
55
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
56
|
+
"eslint-plugin-vue": "^9.28.0",
|
|
57
|
+
"floating-vue": "^5.2.2",
|
|
58
|
+
"path": "^0.12.7",
|
|
59
|
+
"postcss": "^8.4.47",
|
|
60
|
+
"postcss-import": "^16.1.0",
|
|
61
|
+
"postcss-mixins": "^10.0.1",
|
|
62
|
+
"prettier": "^3.3.3",
|
|
63
|
+
"rimraf": "^6.0.1",
|
|
64
|
+
"sass-embedded": "^1.80.4",
|
|
65
|
+
"storybook": "^8.4.7",
|
|
66
|
+
"tailwindcss": "^3.4.11",
|
|
67
|
+
"typescript": "^5.6.3",
|
|
68
|
+
"vite": "^5.4.11",
|
|
69
|
+
"vite-plugin-dts": "^4.3.0",
|
|
70
|
+
"vite-plugin-node-polyfills": "^0.22.0",
|
|
71
|
+
"vite-plugin-vue-devtools": "^7.7.0",
|
|
72
|
+
"vue-tsc": "^2.2.0"
|
|
73
|
+
},
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"@mdi/font": "^7.4.47",
|
|
76
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
77
|
+
"dayjs": "^1.11.13",
|
|
78
|
+
"lodash": "^4.17.21",
|
|
79
|
+
"maska": "^3.0.3",
|
|
80
|
+
"mitt": "3.0.1",
|
|
81
|
+
"sanitize-html": "^2.13.1",
|
|
82
|
+
"vite-plugin-vuetify": "^2.0.4",
|
|
83
|
+
"vite-svg-loader": "^5.1.0",
|
|
84
|
+
"vue": "^3.5.13",
|
|
85
|
+
"vuetify": "^3.7.6"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"pinia": "2.3.0",
|
|
89
|
+
"vue": "3.5.13"
|
|
90
|
+
}
|
|
90
91
|
}
|