sep-yui 0.0.50 → 0.0.51

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,30 @@
1
+ import { IScrollbarProps } from './interface/scroll';
2
+
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
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>, {}>>>, {}, {}>;
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_WithDefaults<P, D> = {
19
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
20
+ default: D[K];
21
+ }> : P[K];
22
+ };
23
+ type __VLS_Prettify<T> = {
24
+ [K in keyof T]: T[K];
25
+ } & {};
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,24 @@
1
+ export interface IScrollbarProps {
2
+ options?: Record<string, unknown>;
3
+ tag?: string | undefined;
4
+ class?: unknown;
5
+ style?: unknown;
6
+ thrumbStyle?: {
7
+ y?: {
8
+ background: string;
9
+ width?: string;
10
+ };
11
+ x?: {
12
+ background: string;
13
+ width?: string;
14
+ };
15
+ };
16
+ railStyle?: {
17
+ y?: {
18
+ background: string;
19
+ };
20
+ x?: {
21
+ background: string;
22
+ };
23
+ };
24
+ }
@@ -12,10 +12,11 @@ import { default as Icon } from './Icon/Icon.vue';
12
12
  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
+ import { default as Scroll } from './Scrollbar/Scrollbar.vue';
15
16
  import { default as UserMenu } from './UserMenu/UserMenu.vue';
16
17
 
17
18
  declare const _default: {
18
19
  install: (app: App) => void;
19
20
  };
20
21
  export default _default;
21
- export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Filter, Icon, Search, Slider, Toggle, UserMenu };
22
+ export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Filter, Icon, Search, Scroll, Slider, Toggle, UserMenu };