sep-yui 0.0.57 → 0.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.
@@ -0,0 +1,35 @@
1
+ import { ICheckboxProps } from './interface/interface';
2
+ import { CheckboxSizeEnum, CheckboxCircularEnum } from './enum/enum';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICheckboxProps>, {
5
+ size: CheckboxSizeEnum;
6
+ circular: CheckboxCircularEnum;
7
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ change: (isChecked: boolean) => void;
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICheckboxProps>, {
10
+ size: CheckboxSizeEnum;
11
+ circular: CheckboxCircularEnum;
12
+ }>>> & {
13
+ onChange?: ((isChecked: boolean) => any) | undefined;
14
+ }, {
15
+ size: CheckboxSizeEnum;
16
+ circular: CheckboxCircularEnum;
17
+ }, {}>;
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
+ } & {};
@@ -0,0 +1,9 @@
1
+ export declare enum CheckboxSizeEnum {
2
+ small = "small",
3
+ medium = "medium",
4
+ big = "big"
5
+ }
6
+ export declare enum CheckboxCircularEnum {
7
+ circled = "circled",
8
+ rounded = "rounded"
9
+ }
@@ -0,0 +1,6 @@
1
+ import { CheckboxSizeEnum, CheckboxCircularEnum } from '../enum/enum';
2
+
3
+ export interface ICheckboxProps {
4
+ size?: CheckboxSizeEnum;
5
+ circular?: CheckboxCircularEnum;
6
+ }
@@ -1,9 +1,9 @@
1
1
  import { IDropdownProps } from './interface/interface';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
- click: (value: string) => void;
4
+ change: (value: string) => void;
5
5
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>>> & {
6
- onClick?: ((value: string) => any) | undefined;
6
+ onChange?: ((value: string) => any) | undefined;
7
7
  }, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -6,10 +6,15 @@ export declare enum IconNameEnum {
6
6
  arrowLeft = "arrow-left",
7
7
  chevronDown = "chevron-down",
8
8
  chevronUp = "chevron-up",
9
+ checkbox = "checkbox",
10
+ chevronRight = "chevron-right",
11
+ chevronLeft = "chevron-left",
9
12
  dark = "dark",
10
13
  exitBig = "exit-big",
11
14
  exitSmall = "exit-small",
12
15
  exit = "exit",
16
+ exitCircle = "exit-circle",
17
+ externalLink = "external-link",
13
18
  leftBigSmall = "left-big-small",
14
19
  light = "light",
15
20
  leftBig = "left-big",
@@ -67,6 +72,7 @@ export declare enum IconNameEnum {
67
72
  gitPullRequest = "git-pull-request",
68
73
  folder = "folder",
69
74
  crossLarge = "cross-large",
75
+ crossSmall = "cross-small",
70
76
  profileIcon = "profile-icon",
71
77
  profile = "profile",
72
78
  rightBig = "right-big",
@@ -6,11 +6,16 @@ export declare const notification: IVectorIcon;
6
6
  export declare const moonFill: IVectorIcon;
7
7
  export declare const arrowLeft: IVectorIcon;
8
8
  export declare const chevronDown: IVectorIcon;
9
+ export declare const chevronRight: IVectorIcon;
10
+ export declare const chevronLeft: IVectorIcon;
9
11
  export declare const chevronUp: IVectorIcon;
12
+ export declare const checkbox: IVectorIcon;
10
13
  export declare const dark: IVectorIcon;
11
14
  export declare const exitBig: IVectorIcon;
12
15
  export declare const exitSmall: IVectorIcon;
16
+ export declare const externalLink: IVectorIcon;
13
17
  export declare const exit: IVectorIcon;
18
+ export declare const exitCircle: IVectorIcon;
14
19
  export declare const leftBigSmall: IVectorIcon;
15
20
  export declare const leftBig: IVectorIcon;
16
21
  export declare const light: IVectorIcon;
@@ -71,4 +76,5 @@ export declare const moreHorizontal: IVectorIcon;
71
76
  export declare const fileText: IVectorIcon;
72
77
  export declare const gitPullRequest: IVectorIcon;
73
78
  export declare const folder: IVectorIcon;
79
+ export declare const crossSmall: IVectorIcon;
74
80
  export declare const crossLarge: IVectorIcon;
@@ -10,6 +10,7 @@ export interface IIconPorps {
10
10
  export interface IVectorIcon {
11
11
  name: string;
12
12
  viewbox?: string;
13
+ fill?: string;
13
14
  style: 'line' | 'solid';
14
15
  path: string;
15
16
  }
@@ -0,0 +1,6 @@
1
+ export interface ILoaderProps {
2
+ description?: string;
3
+ width: string;
4
+ color: string;
5
+ height: string;
6
+ }
@@ -0,0 +1,22 @@
1
+ import { IDialogProps } from './interface/interface';
2
+
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDialogProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps>>>, {}, {}>;
7
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,5 @@
1
+ export interface IDialogProps {
2
+ open: boolean;
3
+ width?: string;
4
+ height?: string;
5
+ }
@@ -0,0 +1,43 @@
1
+ import { MessageTypeEnum } from './enum/enum';
2
+ import { IPushNotificationProps } from './interface/interface';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPushNotificationProps>, {
5
+ type: MessageTypeEnum;
6
+ description: string;
7
+ timeout: number;
8
+ showPopover: boolean;
9
+ }>, {
10
+ showPopover: () => void;
11
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ close: () => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPushNotificationProps>, {
14
+ type: MessageTypeEnum;
15
+ description: string;
16
+ timeout: number;
17
+ showPopover: boolean;
18
+ }>>> & {
19
+ onClose?: (() => any) | undefined;
20
+ }, {
21
+ type: MessageTypeEnum;
22
+ description: string;
23
+ timeout: number;
24
+ showPopover: boolean;
25
+ }, {}>;
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
36
+ type __VLS_WithDefaults<P, D> = {
37
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
+ default: D[K];
39
+ }> : P[K];
40
+ };
41
+ type __VLS_Prettify<T> = {
42
+ [K in keyof T]: T[K];
43
+ } & {};
@@ -0,0 +1,18 @@
1
+ export declare enum MessageTypeEnum {
2
+ success = "success",
3
+ warning = "warning",
4
+ error = "error",
5
+ info = "info"
6
+ }
7
+ export declare enum MessageTitleDefaultEnum {
8
+ success = "\u0423\u0441\u043F\u0435\u0448\u043D\u043E",
9
+ warning = "\u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u0435",
10
+ error = "\u041E\u0448\u0438\u0431\u043A\u0430",
11
+ info = "\u0423\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u0435"
12
+ }
13
+ export declare enum MessageIconEnum {
14
+ success = "checkbox",
15
+ warning = "alert-triangle",
16
+ error = "exit-circle",
17
+ info = "info"
18
+ }
@@ -0,0 +1,10 @@
1
+ import { MessageTypeEnum } from '../enum/enum';
2
+
3
+ export interface IPushNotificationProps {
4
+ type: MessageTypeEnum;
5
+ title?: string;
6
+ pushKey: number;
7
+ description?: string;
8
+ timeout?: number;
9
+ showPopover?: boolean;
10
+ }
@@ -1,9 +1,9 @@
1
1
  import { ISwitchProps, IChangeSwitchEmit } from './interface/interface';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
- languageSwitch: (event: IChangeSwitchEmit) => void;
4
+ change: (event: IChangeSwitchEmit) => void;
5
5
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {}>>> & {
6
- onLanguageSwitch?: ((event: IChangeSwitchEmit) => any) | undefined;
6
+ onChange?: ((event: IChangeSwitchEmit) => any) | undefined;
7
7
  }, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -8,8 +8,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
8
8
  languageSwitch: (value: IChangeSwitchEmit) => void;
9
9
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {}>>> & {
10
10
  onClick?: ((type: MenuTypeEnum) => any) | undefined;
11
- onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
12
11
  onThemeChange?: ((value: boolean) => any) | undefined;
12
+ onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
13
13
  }, {}, {}>;
14
14
  export default _default;
15
15
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -13,10 +13,13 @@ import { default as Search } from './Search/Search.vue';
13
13
  import { default as Slider } from './Slider/Slider.vue';
14
14
  import { default as Toggle } from './Toggle/Toggle.vue';
15
15
  import { default as Scroll } from './Scrollbar/Scrollbar.vue';
16
+ import { default as Modal } from './Modal/Modal.vue';
17
+ import { default as Checkbox } from './Checkbox/Checkbox.vue';
16
18
  import { default as UserMenu } from './UserMenu/UserMenu.vue';
19
+ import { default as PushNotification } from './Notification/Notification.vue';
17
20
 
18
21
  declare const _default: {
19
22
  install: (app: App) => void;
20
23
  };
21
24
  export default _default;
22
- export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Filter, Icon, Search, Scroll, Slider, Toggle, UserMenu };
25
+ export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Filter, Icon, Search, PushNotification, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu };