sep-yui 0.0.55 → 0.0.57-dev

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.
@@ -1,3 +1,5 @@
1
1
  export interface IDropdownProps {
2
2
  options: string[];
3
+ width: string;
4
+ defaultOption?: string;
3
5
  }
@@ -67,7 +67,8 @@ export declare enum IconNameEnum {
67
67
  gitPullRequest = "git-pull-request",
68
68
  folder = "folder",
69
69
  crossLarge = "cross-large",
70
- profileIcon = "profileIcon",
70
+ profileIcon = "profile-icon",
71
71
  profile = "profile",
72
- rightBig = "rightBig"
72
+ rightBig = "right-big",
73
+ alertTriangle = "alert-triangle"
73
74
  }
@@ -1,5 +1,6 @@
1
1
  import { IVectorIcon } from './interface/interface';
2
2
 
3
+ export declare const alertTriangle: IVectorIcon;
3
4
  export declare const help: IVectorIcon;
4
5
  export declare const notification: IVectorIcon;
5
6
  export declare const moonFill: IVectorIcon;
@@ -3,7 +3,33 @@ import { IScrollbarProps } from './interface/scroll';
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
5
5
  };
6
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {}>>>, {}, {}>;
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {}>, {
7
+ scrollToTop: () => void;
8
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ scroll: (value: Event) => void;
10
+ "ps-scroll-y": (value: Event) => void;
11
+ "ps-scroll-x": (value: Event) => void;
12
+ "ps-scroll-up": (value: Event) => void;
13
+ "ps-scroll-down": (value: Event) => void;
14
+ "ps-scroll-left": (value: Event) => void;
15
+ "ps-scroll-right": (value: Event) => void;
16
+ "ps-y-reach-start": (value: Event) => void;
17
+ "ps-y-reach-end": (value: Event) => void;
18
+ "ps-x-reach-start": (value: Event) => void;
19
+ "ps-x-reach-end": (value: Event) => void;
20
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {}>>> & {
21
+ onScroll?: ((value: Event) => any) | undefined;
22
+ "onPs-scroll-y"?: ((value: Event) => any) | undefined;
23
+ "onPs-scroll-x"?: ((value: Event) => any) | undefined;
24
+ "onPs-scroll-up"?: ((value: Event) => any) | undefined;
25
+ "onPs-scroll-down"?: ((value: Event) => any) | undefined;
26
+ "onPs-scroll-left"?: ((value: Event) => any) | undefined;
27
+ "onPs-scroll-right"?: ((value: Event) => any) | undefined;
28
+ "onPs-y-reach-start"?: ((value: Event) => any) | undefined;
29
+ "onPs-y-reach-end"?: ((value: Event) => any) | undefined;
30
+ "onPs-x-reach-start"?: ((value: Event) => any) | undefined;
31
+ "onPs-x-reach-end"?: ((value: Event) => any) | undefined;
32
+ }, {}, {}>;
7
33
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
8
34
  export default _default;
9
35
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -0,0 +1,5 @@
1
+ type ScrollbarEmitsKeys = 'scroll' | 'ps-scroll-y' | 'ps-scroll-x' | 'ps-scroll-up' | 'ps-scroll-down' | 'ps-scroll-left' | 'ps-scroll-right' | 'ps-y-reach-start' | 'ps-y-reach-end' | 'ps-x-reach-start' | 'ps-x-reach-end';
2
+ export type ScrollbarEmits = {
3
+ [EventName in ScrollbarEmitsKeys]: [value: Event];
4
+ };
5
+ export {};
@@ -5,21 +5,21 @@ export interface IScrollbarProps {
5
5
  style?: unknown;
6
6
  thrumbStyle?: {
7
7
  y?: {
8
- background: string;
8
+ background?: string;
9
9
  width?: string;
10
10
  };
11
11
  x?: {
12
- background: string;
12
+ background?: string;
13
13
  width?: string;
14
14
  };
15
15
  };
16
16
  railStyle?: {
17
17
  y?: {
18
- background: string;
18
+ background?: string;
19
19
  right?: string;
20
20
  };
21
21
  x?: {
22
- background: string;
22
+ background?: string;
23
23
  right?: string;
24
24
  };
25
25
  };