sep-yui 0.1.127 → 0.1.128

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.
@@ -106,8 +106,5 @@ export declare enum IconNameEnum {
106
106
  logout = "logout",
107
107
  minus = "minus",
108
108
  keyboard = "keyboard",
109
- planeRightFill = "plane-right-fill",
110
- message = "message",
111
- darkThemeSwitcher = "dark-theme-switcher",
112
- qrCode = "qr-code"
109
+ planeRightFill = "plane-right-fill"
113
110
  }
@@ -114,6 +114,4 @@ export declare const addUser: IVectorIcon;
114
114
  export declare const noDistrub: IVectorIcon;
115
115
  export declare const logout: IVectorIcon;
116
116
  export declare const keyboard: IVectorIcon;
117
- export declare const message: IVectorIcon;
118
- export declare const darkThemeSwitcher: IVectorIcon;
119
- export declare const qrCode: IVectorIcon;
117
+ export declare const planeRightFill: IVectorIcon;
@@ -1,11 +1,7 @@
1
1
  import { IPopoverOption, IPopoverProps } from './interface/interface';
2
2
  import { IconNameEnum } from '../Icon/enum/enum';
3
3
 
4
- declare function __VLS_template(): {
5
- trigger?(_: {}): any;
6
- default?(_: {}): any;
7
- };
8
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
4
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
9
5
  iconName: IconNameEnum;
10
6
  options: () => never[];
11
7
  tooltip: string;
@@ -28,7 +24,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
28
24
  tooltip: string;
29
25
  tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
30
26
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
31
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
32
27
  export default _default;
33
28
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
34
29
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -47,8 +42,3 @@ type __VLS_WithDefaults<P, D> = {
47
42
  type __VLS_Prettify<T> = {
48
43
  [K in keyof T]: T[K];
49
44
  } & {};
50
- type __VLS_WithTemplateSlots<T, S> = T & {
51
- new (): {
52
- $slots: S;
53
- };
54
- };
@@ -0,0 +1,40 @@
1
+ import { IPopoverHoverProps } from './interface/interface';
2
+ import { PopoverHoverEnum } from './enums/enums';
3
+
4
+ declare function __VLS_template(): {
5
+ default?(_: {}): any;
6
+ };
7
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
8
+ position: PopoverHoverEnum;
9
+ dataTestid: string;
10
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
11
+ position: PopoverHoverEnum;
12
+ dataTestid: string;
13
+ }>>> & Readonly<{}>, {
14
+ dataTestid: string;
15
+ position: PopoverHoverEnum;
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
18
+ export default _default;
19
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
+ type __VLS_TypePropsToRuntimeProps<T> = {
21
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
22
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
+ } : {
24
+ type: import('vue').PropType<T[K]>;
25
+ required: true;
26
+ };
27
+ };
28
+ type __VLS_WithDefaults<P, D> = {
29
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
30
+ default: D[K];
31
+ }> : P[K];
32
+ };
33
+ type __VLS_Prettify<T> = {
34
+ [K in keyof T]: T[K];
35
+ } & {};
36
+ type __VLS_WithTemplateSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
@@ -12,7 +12,7 @@ export interface IPopoverOption {
12
12
  export interface IPopoverProps extends IDataTestIdProp {
13
13
  isShow?: boolean;
14
14
  iconName?: IconNameEnum;
15
- options?: IPopoverOption[];
15
+ options: IPopoverOption[];
16
16
  tooltip?: string;
17
17
  tooltipPosition?: TTooltipPosition;
18
18
  isWCUse?: boolean;
@@ -1,13 +1,9 @@
1
1
  import { IDataTestIdProp } from '../../../common/dataTestidProps';
2
+ import { IconNameEnum } from '../../Icon/enum/enum';
2
3
 
3
- export interface SwitchItem {
4
- label: string;
5
- value: string;
6
- }
7
- type ItemsType = Array<string | SwitchItem>;
8
4
  export interface ISwitchProps extends IDataTestIdProp {
9
- items: ItemsType;
10
- defaultValue?: string;
5
+ items: IconNameEnum[];
6
+ defaultValue?: IconNameEnum;
11
7
  isIcons?: boolean;
12
8
  disabled?: boolean;
13
9
  theme?: 'default' | 'contrast';
@@ -16,4 +12,3 @@ export interface IChangeSwitchEmit {
16
12
  index: number;
17
13
  value: string;
18
14
  }
19
- export {};
@@ -6,14 +6,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
6
6
  dataTestid: string;
7
7
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
8
  click: (type: MenuTypeEnum) => void;
9
- "unmount-qr-auth": () => void;
10
9
  themeChange: (value: boolean) => void;
11
10
  languageSwitch: (value: IChangeSwitchEmit) => void;
12
11
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {
13
12
  dataTestid: string;
14
13
  }>>> & Readonly<{
15
14
  onClick?: ((type: MenuTypeEnum) => any) | undefined;
16
- "onUnmount-qr-auth"?: (() => any) | undefined;
17
15
  onThemeChange?: ((value: boolean) => any) | undefined;
18
16
  onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
19
17
  }>, {
@@ -3,6 +3,5 @@ export declare enum MenuTypeEnum {
3
3
  theme = "theme",
4
4
  options = "options",
5
5
  exit = "exit",
6
- qrAuth = "qr-auth",
7
6
  help = "help"
8
7
  }
@@ -1,15 +1,13 @@
1
1
  import { ISwitchProps } from '../../Switch/interface/interface';
2
2
  import { IDataTestIdProp } from '../../../common/dataTestidProps';
3
- import { IconNameEnum } from '../../Icon/enum/enum';
4
- import { MenuTypeEnum } from '../enum/enum';
5
3
 
6
- interface IUserType {
4
+ type userType = {
7
5
  name: string;
8
6
  role: string;
9
7
  avatar: string;
10
- }
8
+ };
11
9
  export interface IAdminPanel {
12
- user: IUserType;
10
+ user: userType;
13
11
  }
14
12
  export interface IMenuLanguagesProps {
15
13
  languages?: ISwitchProps;
@@ -17,18 +15,7 @@ export interface IMenuLanguagesProps {
17
15
  export interface IThemeProps {
18
16
  isBlackTheme?: boolean;
19
17
  }
20
- export interface IMenuProps extends Partial<IAdminPanel>, IMenuLanguagesProps, IThemeProps, IDataTestIdProp {
18
+ export interface IMenuProps extends IAdminPanel, IMenuLanguagesProps, IThemeProps, IDataTestIdProp {
21
19
  closeAfterClick?: boolean;
22
- menuOpen?: boolean;
23
- categories?: MenuTypeEnum[];
24
- texts?: Partial<Record<MenuTypeEnum, string>>;
25
- }
26
- export interface IMenuItemProps extends IDataTestIdProp {
27
- active?: boolean;
28
- disabled?: boolean;
29
- dataTestid: string;
30
- iconName: IconNameEnum;
31
- text: string;
32
- menuType: MenuTypeEnum;
33
20
  }
34
21
  export {};
@@ -36,6 +36,7 @@ import { default as TableTd } from './Table/TableTd.vue';
36
36
  import { default as TableTh } from './Table/TableTh.vue';
37
37
  import { default as SectionTableRow } from './Table/SectionTableRow.vue';
38
38
  import { default as HeadTableRow } from './Table/HeadTableRow.vue';
39
+ import { default as PopoverHover } from './Popover/PopoverHover.vue';
39
40
  import { default as ScrollWrapper } from './ScrollWrapper/ScrollWrapper.vue';
40
41
  import { default as Radio } from './Radio/Radio.vue';
41
42
  import { default as Tooltip } from './Tooltip/Tooltip.vue';
@@ -65,10 +66,9 @@ import { ImageExtensionsEnum, VideoExtensionsEnum } from '../common/extentions';
65
66
  import { InputTypeEnum, TextFieldEnum } from './Input/enum/enum';
66
67
  import { TextareaTypeEnum } from './Textarea/enum';
67
68
  import { CheckboxSizeEnum } from './Checkbox/enum/enum';
68
- import { MenuTypeEnum } from './UserMenu/enum/enum';
69
69
 
70
70
  declare const _default: {
71
71
  install: (app: App) => void;
72
72
  };
73
73
  export default _default;
74
- export { Accordion, Badges, BreadCrumbs, Button, Dialog, Card, Calendar, DragAndDrop, Switch, SelectList, Dropdown, Textarea, Filter, Icon, Input, Combobox, InputNumber, Search, PushNotification, Picture, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu, CopyIcon, Loader, FilterTag, CircularProgress, Popover, Table, TableSimple, TableNew, TableRow, TableRowNew, TableTd, TableTh, SectionTableRow, HeadTableRow, HeadTableRowNew, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, CheckboxSizeEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, MenuTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid };
74
+ export { Accordion, Badges, BreadCrumbs, Button, Dialog, Card, Calendar, DragAndDrop, Switch, SelectList, Dropdown, Textarea, Filter, Icon, Input, Combobox, InputNumber, Search, PushNotification, Picture, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu, CopyIcon, Loader, FilterTag, CircularProgress, Popover, Table, TableSimple, TableNew, TableRow, TableRowNew, TableTd, TableTh, SectionTableRow, HeadTableRow, HeadTableRowNew, PopoverHover, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, CheckboxSizeEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid };