sep-yui 0.0.65 → 0.0.68

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.
Files changed (80) hide show
  1. package/README.md +46 -46
  2. package/dist/common/extentions.d.ts +6 -2
  3. package/dist/components/Accordion/Accordion.vue.d.ts +12 -0
  4. package/dist/components/Badges/Badges.vue.d.ts +2 -2
  5. package/dist/components/Badges/enum/enum.d.ts +3 -1
  6. package/dist/components/Button/Button.vue.d.ts +1 -1
  7. package/dist/components/Button/enum/enum.d.ts +2 -1
  8. package/dist/components/Button/interface/interface.d.ts +3 -3
  9. package/dist/components/Calendar/Calendar.vue.d.ts +19 -0
  10. package/dist/components/Calendar/DataPickerChoose.vue.d.ts +19 -0
  11. package/dist/components/Calendar/DatePicker.vue.d.ts +73 -0
  12. package/dist/components/Calendar/DatePickerRange.vue.d.ts +62 -0
  13. package/dist/components/Calendar/date-utils.d.ts +6 -0
  14. package/dist/components/Calendar/enums/enums.d.ts +4 -0
  15. package/dist/components/Calendar/interfaces/interfaces.d.ts +22 -0
  16. package/dist/components/Card/Card.vue.d.ts +1 -0
  17. package/dist/components/Checkbox/Checkbox.vue.d.ts +8 -0
  18. package/dist/components/Checkbox/interface/interface.d.ts +2 -0
  19. package/dist/components/CircularProgress/CircularProgress.vue.d.ts +21 -0
  20. package/dist/components/CircularProgress/interface/interface.d.ts +3 -0
  21. package/dist/components/Dialog/Dialog.vue.d.ts +5 -1
  22. package/dist/components/Dialog/interface/interface.d.ts +1 -0
  23. package/dist/components/DragAndDrop/DragAndDrop.vue.d.ts +3 -0
  24. package/dist/components/DragAndDrop/interface/interface.d.ts +1 -0
  25. package/dist/components/FilterTag/FilterTag.vue.d.ts +44 -0
  26. package/dist/components/FilterTag/interface/interface.d.ts +16 -0
  27. package/dist/components/Icon/enum/enum.d.ts +10 -1
  28. package/dist/components/Icon/icons.d.ts +10 -0
  29. package/dist/components/Input/Input.vue.d.ts +44 -0
  30. package/dist/components/Input/enum/enum.d.ts +2 -1
  31. package/dist/components/Input/interface/interface.d.ts +4 -1
  32. package/dist/components/InputNumber/InputNumber.vue.d.ts +41 -0
  33. package/dist/components/InputNumber/enum/enum.d.ts +2 -1
  34. package/dist/components/InputNumber/interface/interface.d.ts +8 -0
  35. package/dist/components/Loader/Loader.vue.d.ts +27 -0
  36. package/dist/components/Loader/interfaces/interfaces.d.ts +1 -4
  37. package/dist/components/Modal/Modal.vue.d.ts +5 -1
  38. package/dist/components/Modal/ModalAnimated.vue.d.ts +26 -0
  39. package/dist/components/Notification/Notification.vue.d.ts +1 -1
  40. package/dist/components/Picture/Picture.vue.d.ts +21 -0
  41. package/dist/components/Picture/enums/enums.d.ts +5 -0
  42. package/dist/components/Picture/interface/interface.d.ts +8 -0
  43. package/dist/components/Popover/Popover.vue.d.ts +31 -0
  44. package/dist/components/Popover/PopoverHover.vue.d.ts +37 -0
  45. package/dist/components/Popover/enums/enums.d.ts +4 -0
  46. package/dist/components/Popover/interface/interface.d.ts +14 -0
  47. package/dist/components/Radio/Radio.vue.d.ts +19 -0
  48. package/dist/components/Radio/interface/interface.d.ts +5 -0
  49. package/dist/components/ScrollWrapper/ScrollWrapper.vue.d.ts +47 -0
  50. package/dist/components/ScrollWrapper/interface/interface.d.ts +4 -0
  51. package/dist/components/Search/History.vue.d.ts +2 -2
  52. package/dist/components/Search/Search.vue.d.ts +5 -0
  53. package/dist/components/Search/SearchResult.vue.d.ts +2 -2
  54. package/dist/components/Search/interface/interface.d.ts +1 -0
  55. package/dist/components/Select/Combobox.vue.d.ts +25 -0
  56. package/dist/components/{Dropdown → Select}/Dropdown.vue.d.ts +10 -4
  57. package/dist/components/Select/Filter.vue.d.ts +33 -0
  58. package/dist/components/Select/Options.vue.d.ts +34 -0
  59. package/dist/components/Select/SelectList.vue.d.ts +41 -0
  60. package/dist/components/Select/interface/interface.d.ts +32 -0
  61. package/dist/components/Table/HeadTableRow.vue.d.ts +11 -0
  62. package/dist/components/Table/SectionTableRow.vue.d.ts +22 -0
  63. package/dist/components/Table/Table.vue.d.ts +49 -0
  64. package/dist/components/Table/TableRow.vue.d.ts +38 -0
  65. package/dist/components/Table/TableTd.vue.d.ts +39 -0
  66. package/dist/components/Table/TableTh.vue.d.ts +39 -0
  67. package/dist/components/Table/interface/interface.d.ts +18 -0
  68. package/dist/components/Textarea/Textarea.vue.d.ts +3 -0
  69. package/dist/components/Textarea/interface/interface.d.ts +1 -0
  70. package/dist/components/Toggle/Toggle.vue.d.ts +20 -28
  71. package/dist/components/Toggle/interface/interface.d.ts +0 -1
  72. package/dist/components/Tooltip/Tooltip.vue.d.ts +37 -0
  73. package/dist/components/Tooltip/interface/interface.d.ts +3 -0
  74. package/dist/components/index.d.ts +27 -3
  75. package/dist/helpers/change-style-properties.d.ts +19 -0
  76. package/dist/sep-yui.es.ts +13471 -5036
  77. package/dist/sep-yui.umd.ts +94 -30
  78. package/dist/style.css +1 -1
  79. package/package.json +27 -24
  80. package/dist/components/Dropdown/interface/interface.d.ts +0 -5
@@ -0,0 +1,44 @@
1
+ import { IInputProps } from './interface/interface.ts';
2
+ import { TextFieldEnum } from '../Input/enum/enum';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputProps>, {
5
+ type: TextFieldEnum;
6
+ required: boolean;
7
+ inputMessage: string;
8
+ modelValue: string;
9
+ hideClearButton: boolean;
10
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ "update:modelValue": (value: string) => void;
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputProps>, {
13
+ type: TextFieldEnum;
14
+ required: boolean;
15
+ inputMessage: string;
16
+ modelValue: string;
17
+ hideClearButton: boolean;
18
+ }>>> & {
19
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
+ }, {
21
+ type: TextFieldEnum;
22
+ required: boolean;
23
+ modelValue: string;
24
+ inputMessage: string;
25
+ hideClearButton: boolean;
26
+ }, {}>;
27
+ export default _default;
28
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
+ type __VLS_TypePropsToRuntimeProps<T> = {
30
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
31
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
32
+ } : {
33
+ type: import('vue').PropType<T[K]>;
34
+ required: true;
35
+ };
36
+ };
37
+ type __VLS_WithDefaults<P, D> = {
38
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
39
+ default: D[K];
40
+ }> : P[K];
41
+ };
42
+ type __VLS_Prettify<T> = {
43
+ [K in keyof T]: T[K];
44
+ } & {};
@@ -4,7 +4,8 @@ export declare enum InputTypeEnum {
4
4
  warning = "warning",
5
5
  success = "success",
6
6
  disabled = "disabled",
7
- ordinary = "ordinary"
7
+ ordinary = "ordinary",
8
+ minor = "minor"
8
9
  }
9
10
  export declare enum TextFieldEnum {
10
11
  text = "text",
@@ -3,6 +3,9 @@ import { TextFieldEnum } from '../enum/enum';
3
3
  export interface IInputProps {
4
4
  placeholder?: string;
5
5
  inputMessage: string;
6
- type: TextFieldEnum;
6
+ type?: TextFieldEnum;
7
7
  required?: boolean;
8
+ modelValue?: string;
9
+ hideClearButton?: boolean;
10
+ autocomplete?: string;
8
11
  }
@@ -0,0 +1,41 @@
1
+ import { IInputNumberProps } from './interface/interface.ts';
2
+ import { SizesEnum } from '../../common/sizes.ts';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputNumberProps>, {
5
+ modelValue: number;
6
+ min: number;
7
+ max: number;
8
+ size: SizesEnum;
9
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ "update:modelValue": (value: number) => void;
11
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputNumberProps>, {
12
+ modelValue: number;
13
+ min: number;
14
+ max: number;
15
+ size: SizesEnum;
16
+ }>>> & {
17
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
18
+ }, {
19
+ size: SizesEnum.small | SizesEnum.medium;
20
+ modelValue: number;
21
+ min: number;
22
+ max: number;
23
+ }, {}>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ type __VLS_WithDefaults<P, D> = {
35
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
36
+ default: D[K];
37
+ }> : P[K];
38
+ };
39
+ type __VLS_Prettify<T> = {
40
+ [K in keyof T]: T[K];
41
+ } & {};
@@ -4,5 +4,6 @@ export declare enum InputTypeEnum {
4
4
  warning = "warning",
5
5
  success = "success",
6
6
  ordinary = "ordinary",
7
- disabled = "disabled"
7
+ disabled = "disabled",
8
+ minor = "minor"
8
9
  }
@@ -1,6 +1,14 @@
1
+ import { SizesEnum } from '../../../common/sizes.ts';
2
+
1
3
  export interface IInputNumberProps {
2
4
  inputMessage: string;
5
+ modelValue?: number;
3
6
  required?: boolean;
4
7
  min?: number;
5
8
  max?: number;
9
+ size?: SizesEnum.small | SizesEnum.medium;
10
+ }
11
+ export interface IState {
12
+ isPressed: boolean;
13
+ inputElement: number | string;
6
14
  }
@@ -0,0 +1,27 @@
1
+ import { ILoaderProps } from './interfaces/interfaces';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ILoaderProps>, {
4
+ title: string;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ILoaderProps>, {
6
+ title: string;
7
+ }>>>, {
8
+ title: string;
9
+ }, {}>;
10
+ export default _default;
11
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
12
+ type __VLS_TypePropsToRuntimeProps<T> = {
13
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
14
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
15
+ } : {
16
+ type: import('vue').PropType<T[K]>;
17
+ required: true;
18
+ };
19
+ };
20
+ type __VLS_WithDefaults<P, D> = {
21
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
22
+ default: D[K];
23
+ }> : P[K];
24
+ };
25
+ type __VLS_Prettify<T> = {
26
+ [K in keyof T]: T[K];
27
+ } & {};
@@ -1,6 +1,3 @@
1
1
  export interface ILoaderProps {
2
- description?: string;
3
- width: string;
4
- color: string;
5
- height: string;
2
+ title?: string;
6
3
  }
@@ -3,7 +3,11 @@ import { IDialogProps } from './interface/interface';
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
5
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>>>, {}, {}>;
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDialogProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ close: (...args: any[]) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps>>> & {
9
+ onClose?: ((...args: any[]) => any) | undefined;
10
+ }, {}, {}>;
7
11
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
8
12
  export default _default;
9
13
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -0,0 +1,26 @@
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, {
7
+ close: () => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps>>> & {
9
+ onClose?: (() => any) | undefined;
10
+ }, {}, {}>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
12
+ export default _default;
13
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
+ type __VLS_TypePropsToRuntimeProps<T> = {
15
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
16
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
+ } : {
18
+ type: import('vue').PropType<T[K]>;
19
+ required: true;
20
+ };
21
+ };
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -19,9 +19,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
19
19
  onClose?: (() => any) | undefined;
20
20
  }, {
21
21
  type: MessageTypeEnum;
22
+ showPopover: boolean;
22
23
  description: string;
23
24
  timeout: number;
24
- showPopover: boolean;
25
25
  }, {}>;
26
26
  export default _default;
27
27
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -0,0 +1,21 @@
1
+ import { IPictureProps } from './interface/interface';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPictureProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPictureProps>, {}>>>, {}, {}>;
4
+ export default _default;
5
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
6
+ type __VLS_TypePropsToRuntimeProps<T> = {
7
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
8
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
9
+ } : {
10
+ type: import('vue').PropType<T[K]>;
11
+ required: true;
12
+ };
13
+ };
14
+ type __VLS_WithDefaults<P, D> = {
15
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
16
+ default: D[K];
17
+ }> : P[K];
18
+ };
19
+ type __VLS_Prettify<T> = {
20
+ [K in keyof T]: T[K];
21
+ } & {};
@@ -0,0 +1,5 @@
1
+ export declare enum PictureEnum {
2
+ img = "img",
3
+ pdf = "pdf",
4
+ docx = "docx"
5
+ }
@@ -0,0 +1,8 @@
1
+ import { PictureEnum } from '../enums/enums';
2
+
3
+ export interface IPictureProps {
4
+ type: PictureEnum;
5
+ alt?: string;
6
+ url?: string;
7
+ caption?: string;
8
+ }
@@ -0,0 +1,31 @@
1
+ import { IPopoverOption, IPopoverProps } from './interface/interface';
2
+ import { IconNameEnum } from '../Icon/enum/enum';
3
+
4
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
5
+ iconName: IconNameEnum;
6
+ options: () => never[];
7
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
8
+ iconName: IconNameEnum;
9
+ options: () => never[];
10
+ }>>>, {
11
+ options: IPopoverOption[];
12
+ iconName: IconNameEnum;
13
+ }, {}>;
14
+ export default _default;
15
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
+ type __VLS_TypePropsToRuntimeProps<T> = {
17
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
18
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
+ } : {
20
+ type: import('vue').PropType<T[K]>;
21
+ required: true;
22
+ };
23
+ };
24
+ type __VLS_WithDefaults<P, D> = {
25
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
26
+ default: D[K];
27
+ }> : P[K];
28
+ };
29
+ type __VLS_Prettify<T> = {
30
+ [K in keyof T]: T[K];
31
+ } & {};
@@ -0,0 +1,37 @@
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<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
8
+ position: PopoverHoverEnum;
9
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
10
+ position: PopoverHoverEnum;
11
+ }>>>, {
12
+ position: PopoverHoverEnum;
13
+ }, {}>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
15
+ export default _default;
16
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
17
+ type __VLS_TypePropsToRuntimeProps<T> = {
18
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
19
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
20
+ } : {
21
+ type: import('vue').PropType<T[K]>;
22
+ required: true;
23
+ };
24
+ };
25
+ type __VLS_WithDefaults<P, D> = {
26
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
27
+ default: D[K];
28
+ }> : P[K];
29
+ };
30
+ type __VLS_Prettify<T> = {
31
+ [K in keyof T]: T[K];
32
+ } & {};
33
+ type __VLS_WithTemplateSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -0,0 +1,4 @@
1
+ export declare enum PopoverHoverEnum {
2
+ top = "top",
3
+ bottom = "bottom"
4
+ }
@@ -0,0 +1,14 @@
1
+ import { IconNameEnum } from '../../Icon/enum/enum';
2
+ import { PopoverHoverEnum } from '../enums/enums';
3
+
4
+ export interface IPopoverOption {
5
+ value: string;
6
+ function: () => void;
7
+ }
8
+ export interface IPopoverProps {
9
+ iconName?: IconNameEnum;
10
+ options: IPopoverOption[];
11
+ }
12
+ export interface IPopoverHoverProps {
13
+ position: PopoverHoverEnum;
14
+ }
@@ -0,0 +1,19 @@
1
+ import { IRadioProps } from './interface/interface';
2
+
3
+ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{}>>, never>) & (IRadioProps<T> & {
5
+ modelValue?: any;
6
+ }), keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
7
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
8
+ attrs: any;
9
+ slots: ReturnType<() => {}>;
10
+ emit: typeof __VLS_emit;
11
+ }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
12
+ [key: string]: any;
13
+ }> & {
14
+ __ctx?: Awaited<typeof __VLS_setup>;
15
+ };
16
+ export default _default;
17
+ type __VLS_Prettify<T> = {
18
+ [K in keyof T]: T[K];
19
+ } & {};
@@ -0,0 +1,5 @@
1
+ export interface IRadioProps<T> {
2
+ name: string;
3
+ value: T;
4
+ disabled?: boolean;
5
+ }
@@ -0,0 +1,47 @@
1
+ import { IScrollWrapperProps } from './interface/interface';
2
+
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollWrapperProps>, {
7
+ isShowVerticalScroll: boolean;
8
+ }>, {
9
+ isVerticalScroll: import('vue').ComputedRef<boolean>;
10
+ handleScroll: (e: Event) => void;
11
+ setResizeElement: (value: HTMLElement) => void;
12
+ setScrollStyle: () => void;
13
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ unmountScroll: (event: Event) => void;
15
+ onMounted: () => void;
16
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollWrapperProps>, {
17
+ isShowVerticalScroll: boolean;
18
+ }>>> & {
19
+ onUnmountScroll?: ((event: Event) => any) | undefined;
20
+ onOnMounted?: (() => any) | undefined;
21
+ }, {
22
+ isShowVerticalScroll: boolean;
23
+ }, {}>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
+ export default _default;
26
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
+ type __VLS_TypePropsToRuntimeProps<T> = {
28
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
29
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
+ } : {
31
+ type: import('vue').PropType<T[K]>;
32
+ required: true;
33
+ };
34
+ };
35
+ type __VLS_WithDefaults<P, D> = {
36
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
37
+ default: D[K];
38
+ }> : P[K];
39
+ };
40
+ type __VLS_Prettify<T> = {
41
+ [K in keyof T]: T[K];
42
+ } & {};
43
+ type __VLS_WithTemplateSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
@@ -0,0 +1,4 @@
1
+ export type TScrollWrapperStyle = '--scroll-border-radius' | '--scroll-bar-height' | '--scroll-bar-top-postion';
2
+ export interface IScrollWrapperProps {
3
+ isShowVerticalScroll?: boolean;
4
+ }
@@ -1,8 +1,8 @@
1
1
  import { ISearchProps } from './interface/interface';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ISearchProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
4
  choosePost: (value: string) => void;
5
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ISearchProps>>> & {
5
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>>> & {
6
6
  onChoosePost?: ((value: string) => any) | undefined;
7
7
  }, {}, {}>;
8
8
  export default _default;
@@ -3,17 +3,22 @@ import { ISearchProps } from './interface/interface';
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
4
4
  placeholder: string;
5
5
  height: string;
6
+ modelValue: string;
6
7
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
8
  enter: (value: string) => void;
8
9
  input: (value: string) => void;
10
+ "update:modelValue": (value: string) => void;
9
11
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
10
12
  placeholder: string;
11
13
  height: string;
14
+ modelValue: string;
12
15
  }>>> & {
13
16
  onInput?: ((value: string) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
14
18
  onEnter?: ((value: string) => any) | undefined;
15
19
  }, {
16
20
  height: string;
21
+ modelValue: string;
17
22
  placeholder: string;
18
23
  }, {}>;
19
24
  export default _default;
@@ -1,8 +1,8 @@
1
1
  import { ISearchProps, ResultSearchType } from './interface/interface';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ISearchProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
4
  choosePost: (post: ResultSearchType) => void;
5
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ISearchProps>>> & {
5
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>>> & {
6
6
  onChoosePost?: ((post: ResultSearchType) => any) | undefined;
7
7
  }, {}, {}>;
8
8
  export default _default;
@@ -18,4 +18,5 @@ export interface ISearchProps {
18
18
  searchValue?: string;
19
19
  width?: string;
20
20
  height?: string;
21
+ modelValue: string;
21
22
  }
@@ -0,0 +1,25 @@
1
+ import { IComboboxProps } from './interface/interface';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IComboboxProps>, {
4
+ disabled: boolean;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
6
+ disabled: boolean;
7
+ }, {}>;
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
+ } & {};
@@ -1,10 +1,16 @@
1
- import { IDropdownProps } from './interface/interface';
1
+ import { IOptionsProps } from './interface/interface';
2
2
 
3
- declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
4
+ disabled: boolean;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
6
  change: (value: string) => void;
5
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>>> & {
7
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
8
+ disabled: boolean;
9
+ }>>> & {
6
10
  onChange?: ((value: string) => any) | undefined;
7
- }, {}, {}>;
11
+ }, {
12
+ disabled: boolean;
13
+ }, {}>;
8
14
  export default _default;
9
15
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
16
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -0,0 +1,33 @@
1
+ import { IFilterProps } from './interface/interface';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
4
+ noOptionText: string;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ change: (value: string) => void;
7
+ search: (value: string) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
9
+ noOptionText: string;
10
+ }>>> & {
11
+ onChange?: ((value: string) => any) | undefined;
12
+ onSearch?: ((value: string) => any) | undefined;
13
+ }, {
14
+ noOptionText: string;
15
+ }, {}>;
16
+ export default _default;
17
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
+ type __VLS_TypePropsToRuntimeProps<T> = {
19
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
20
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
+ } : {
22
+ type: import('vue').PropType<T[K]>;
23
+ required: true;
24
+ };
25
+ };
26
+ type __VLS_WithDefaults<P, D> = {
27
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
+ default: D[K];
29
+ }> : P[K];
30
+ };
31
+ type __VLS_Prettify<T> = {
32
+ [K in keyof T]: T[K];
33
+ } & {};
@@ -0,0 +1,34 @@
1
+ import { IOptionsProps } from './interface/interface';
2
+
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ change: (value: string) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {}>>> & {
9
+ onChange?: ((value: string) => any) | undefined;
10
+ }, {}, {}>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
12
+ export default _default;
13
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
+ type __VLS_TypePropsToRuntimeProps<T> = {
15
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
16
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
+ } : {
18
+ type: import('vue').PropType<T[K]>;
19
+ required: true;
20
+ };
21
+ };
22
+ type __VLS_WithDefaults<P, D> = {
23
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
24
+ default: D[K];
25
+ }> : P[K];
26
+ };
27
+ type __VLS_Prettify<T> = {
28
+ [K in keyof T]: T[K];
29
+ } & {};
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };