sep-yui 0.1.101 → 0.1.102

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.
@@ -100,5 +100,6 @@ export declare enum IconNameEnum {
100
100
  read = "read",
101
101
  atSign = "at-sign",
102
102
  smile = "smile",
103
- planeRight = "plane-right"
103
+ planeRight = "plane-right",
104
+ addUser = "add-user"
104
105
  }
@@ -110,3 +110,4 @@ export declare const planeRight: IVectorIcon;
110
110
  export declare const sidebar: IVectorIcon;
111
111
  export declare const pin: IVectorIcon;
112
112
  export declare const read: IVectorIcon;
113
+ export declare const addUser: IVectorIcon;
@@ -0,0 +1,38 @@
1
+ import { ITabsProps } from './interface/interface';
2
+
3
+ declare function __VLS_template(): Partial<Record<`header${number}`, (_: {}) => any>> & Partial<Record<`tab${number}`, (_: {}) => any>>;
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITabsProps>, {
5
+ dataTestid: string;
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "unmount-tab": (id: number) => void;
8
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITabsProps>, {
9
+ dataTestid: string;
10
+ }>>> & {
11
+ "onUnmount-tab"?: ((id: number) => any) | undefined;
12
+ }, {
13
+ dataTestid: string;
14
+ }, {}>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
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
+ } & {};
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,8 @@
1
+ import { IDataTestIdProp } from '../../../common/dataTestidProps';
2
+
3
+ export interface ITabsEmit {
4
+ (e: 'unmount-tab', id: number): void;
5
+ }
6
+ export interface ITabsProps extends IDataTestIdProp {
7
+ tabCount: number;
8
+ }
@@ -47,14 +47,22 @@ import { default as TableRowNew } from './Table/TableRowNew.vue';
47
47
  import { default as HeadTableRowNew } from './Table/HeadTableRowNew.vue';
48
48
  import { default as TableSimple } from './Table/TableSimple.vue';
49
49
  import { default as Avatar } from './Avatar/Avatar.vue';
50
+ import { default as Tabs } from './Tabs/Tabs.vue';
51
+ import { default as vuePluginRemoveTestid } from '../helpers/vue-plugin-remove-testid';
50
52
  import { getFirstTime, getLastTime } from './Calendar/date-utils';
51
53
  import { IRangeForDatePicker } from './Calendar/interfaces/interfaces';
52
54
  import { OptionsObject } from './Select/interface/interface';
53
55
  import { IDialogProps } from './Modal/interface/interface';
54
56
  import { IDataTestIdProp } from '../common/dataTestidProps';
57
+ import { IconNameEnum } from './Icon/enum/enum';
58
+ import { SizesEnum } from '../common/sizes';
59
+ import { ButtonTypeEnum } from './Button/enum/enum';
60
+ import { ColorsEnum } from '../common/colors';
61
+ import { BadgesTypeEnum } from './Badges/enum/enum';
62
+ import { ImageExtensionsEnum, VideoExtensionsEnum } from '../common/extentions';
55
63
 
56
64
  declare const _default: {
57
65
  install: (app: App) => void;
58
66
  };
59
67
  export default _default;
60
- 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, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, getLastTime, getFirstTime };
68
+ 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, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, getLastTime, getFirstTime, vuePluginRemoveTestid };