@pksep/yui 0.1.287 → 0.1.288
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.
- package/README.md +79 -79
- package/dist/components/Calendar/DataPickerChoose.vue.d.ts +6 -6
- package/dist/components/ContentEditor/ContentEditorFormattingToolbar.vue.d.ts +1 -3
- package/dist/components/ContentEditor/ContentEditorSlashMenu.vue.d.ts +55 -0
- package/dist/components/ContentEditor/interfaces/content-editor-slash-menu.d.ts +5 -0
- package/dist/components/Cropper/BaseCropper.vue.d.ts +1 -1
- package/dist/components/InputNumber/InputNumber.vue.d.ts +1 -1
- package/dist/components/Notification/Notification.vue.d.ts +1 -1
- package/dist/components/Range/Range.vue.d.ts +5 -5
- package/dist/components/Toggle/Toggle.vue.d.ts +6 -6
- package/dist/components/index.d.ts +4 -1
- package/dist/sep-yui.es.ts +17273 -17220
- package/dist/sep-yui.umd.ts +260 -260
- package/dist/style.css +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
# SEP-YUI
|
|
2
|
-
|
|
3
|
-
**SEP-YUI** — библиотека UI-компонентов для Vue, созданная для решения задачи удобного переиспользования интерфейсных элементов между проектами.
|
|
4
|
-
Она позволяет использовать единый набор UI-решений, снижает связанность компонентов и упрощает поддержку.
|
|
5
|
-
|
|
6
|
-
## Основные преимущества
|
|
7
|
-
|
|
8
|
-
- Лёгкая интеграция в существующие проекты
|
|
9
|
-
- Низкий порог входа
|
|
10
|
-
- Гибкость и кастомизация
|
|
11
|
-
- Регулярные обновления и техническая поддержка
|
|
12
|
-
- Возможность комбинирования компонентов внутри проекта
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
## Установка и подключение
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
npm i @pksep/yui
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
#### 1. Для использования библиотеки в проекте, необходимо импортировать компоненты библиотеки в главный файл проекта main.ts таким образом:
|
|
23
|
-
|
|
24
|
-
```ts
|
|
25
|
-
main.ts;
|
|
26
|
-
import Ylibrary from '@pksep/yui';
|
|
27
|
-
app.use(Ylibrary);
|
|
28
|
-
app.mount('#app');
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
#### 1.1 Для выборочного импорта компонентов, можно использовать подключение такого вида.
|
|
32
|
-
|
|
33
|
-
```ts
|
|
34
|
-
main.ts;
|
|
35
|
-
import { Toggle } from '@pksep/yui';
|
|
36
|
-
app.component('Toggle', Toggle);
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
#### 2. Стили импортируются через путь "@pksep/yui/styles" также в файле main.ts
|
|
40
|
-
|
|
41
|
-
```ts
|
|
42
|
-
main.ts;
|
|
43
|
-
import '@pksep/yui/styles';
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
#### 3. Далее просто пишем название компонента внутри проекта и используем как при обычной разработке на Vue.
|
|
47
|
-
|
|
48
|
-
```vue
|
|
49
|
-
App.vue
|
|
50
|
-
<template>
|
|
51
|
-
<Toggle :disabled="true" :backgroundColor="'red'" />
|
|
52
|
-
</template>
|
|
53
|
-
<script setup lang="ts"></script>
|
|
54
|
-
<styles scoped></styles>
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
---
|
|
59
|
-
|
|
60
|
-
## Примеры и Storybook
|
|
61
|
-
|
|
62
|
-
Документация и примеры компонентов:
|
|
63
|
-
|
|
64
|
-
➡️ https://pksep.github.io/sep_yui
|
|
65
|
-
|
|
66
|
-
---
|
|
67
|
-
|
|
68
|
-
## Разработка
|
|
69
|
-
|
|
70
|
-
### Публикация пакетов
|
|
71
|
-
|
|
72
|
-
Обязательно через команду, так как генерятся changelog. Для этого используем:
|
|
73
|
-
[changeloggen](https://unjs.io/packages/changelogen/)
|
|
74
|
-
|
|
75
|
-
```sh
|
|
76
|
-
pnpm run build:lib
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
Токен можно для публикации можно получить у менеджера.
|
|
1
|
+
# SEP-YUI
|
|
2
|
+
|
|
3
|
+
**SEP-YUI** — библиотека UI-компонентов для Vue, созданная для решения задачи удобного переиспользования интерфейсных элементов между проектами.
|
|
4
|
+
Она позволяет использовать единый набор UI-решений, снижает связанность компонентов и упрощает поддержку.
|
|
5
|
+
|
|
6
|
+
## Основные преимущества
|
|
7
|
+
|
|
8
|
+
- Лёгкая интеграция в существующие проекты
|
|
9
|
+
- Низкий порог входа
|
|
10
|
+
- Гибкость и кастомизация
|
|
11
|
+
- Регулярные обновления и техническая поддержка
|
|
12
|
+
- Возможность комбинирования компонентов внутри проекта
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Установка и подключение
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm i @pksep/yui
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
#### 1. Для использования библиотеки в проекте, необходимо импортировать компоненты библиотеки в главный файл проекта main.ts таким образом:
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
main.ts;
|
|
26
|
+
import Ylibrary from '@pksep/yui';
|
|
27
|
+
app.use(Ylibrary);
|
|
28
|
+
app.mount('#app');
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
#### 1.1 Для выборочного импорта компонентов, можно использовать подключение такого вида.
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
main.ts;
|
|
35
|
+
import { Toggle } from '@pksep/yui';
|
|
36
|
+
app.component('Toggle', Toggle);
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
#### 2. Стили импортируются через путь "@pksep/yui/styles" также в файле main.ts
|
|
40
|
+
|
|
41
|
+
```ts
|
|
42
|
+
main.ts;
|
|
43
|
+
import '@pksep/yui/styles';
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
#### 3. Далее просто пишем название компонента внутри проекта и используем как при обычной разработке на Vue.
|
|
47
|
+
|
|
48
|
+
```vue
|
|
49
|
+
App.vue
|
|
50
|
+
<template>
|
|
51
|
+
<Toggle :disabled="true" :backgroundColor="'red'" />
|
|
52
|
+
</template>
|
|
53
|
+
<script setup lang="ts"></script>
|
|
54
|
+
<styles scoped></styles>
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Примеры и Storybook
|
|
61
|
+
|
|
62
|
+
Документация и примеры компонентов:
|
|
63
|
+
|
|
64
|
+
➡️ https://pksep.github.io/sep_yui
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Разработка
|
|
69
|
+
|
|
70
|
+
### Публикация пакетов
|
|
71
|
+
|
|
72
|
+
Обязательно через команду, так как генерятся changelog. Для этого используем:
|
|
73
|
+
[changeloggen](https://unjs.io/packages/changelogen/)
|
|
74
|
+
|
|
75
|
+
```sh
|
|
76
|
+
pnpm run build:lib
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Токен можно для публикации можно получить у менеджера.
|
|
@@ -4,13 +4,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4
4
|
type: import('vue').PropType<string>;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
|
-
disabled: {
|
|
8
|
-
type: import('vue').PropType<boolean>;
|
|
9
|
-
};
|
|
10
7
|
value: {
|
|
11
8
|
type: import('vue').PropType<string>;
|
|
12
9
|
required: true;
|
|
13
10
|
};
|
|
11
|
+
disabled: {
|
|
12
|
+
type: import('vue').PropType<boolean>;
|
|
13
|
+
};
|
|
14
14
|
isRange: {
|
|
15
15
|
type: import('vue').PropType<boolean>;
|
|
16
16
|
};
|
|
@@ -34,13 +34,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
34
34
|
type: import('vue').PropType<string>;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
|
-
disabled: {
|
|
38
|
-
type: import('vue').PropType<boolean>;
|
|
39
|
-
};
|
|
40
37
|
value: {
|
|
41
38
|
type: import('vue').PropType<string>;
|
|
42
39
|
required: true;
|
|
43
40
|
};
|
|
41
|
+
disabled: {
|
|
42
|
+
type: import('vue').PropType<boolean>;
|
|
43
|
+
};
|
|
44
44
|
isRange: {
|
|
45
45
|
type: import('vue').PropType<boolean>;
|
|
46
46
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { Editor } from '@tiptap/core';
|
|
2
|
-
|
|
3
1
|
interface Props {
|
|
4
|
-
editor?:
|
|
2
|
+
editor?: object | null;
|
|
5
3
|
readClipboardText?: () => Promise<string> | string;
|
|
6
4
|
}
|
|
7
5
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { IContentEditorSlashMenuItem } from './interfaces/content-editor-slash-menu';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
id?: string;
|
|
6
|
+
items: IContentEditorSlashMenuItem[];
|
|
7
|
+
activeIndex?: number;
|
|
8
|
+
positionStyle?: CSSProperties;
|
|
9
|
+
emptyText?: string;
|
|
10
|
+
}>, {
|
|
11
|
+
id: string;
|
|
12
|
+
activeIndex: number;
|
|
13
|
+
positionStyle: () => {};
|
|
14
|
+
emptyText: string;
|
|
15
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
select: (index: number) => void;
|
|
17
|
+
"update:activeIndex": (index: number) => void;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
19
|
+
id?: string;
|
|
20
|
+
items: IContentEditorSlashMenuItem[];
|
|
21
|
+
activeIndex?: number;
|
|
22
|
+
positionStyle?: CSSProperties;
|
|
23
|
+
emptyText?: string;
|
|
24
|
+
}>, {
|
|
25
|
+
id: string;
|
|
26
|
+
activeIndex: number;
|
|
27
|
+
positionStyle: () => {};
|
|
28
|
+
emptyText: string;
|
|
29
|
+
}>>> & Readonly<{
|
|
30
|
+
onSelect?: ((index: number) => any) | undefined;
|
|
31
|
+
"onUpdate:activeIndex"?: ((index: number) => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
positionStyle: CSSProperties;
|
|
34
|
+
id: string;
|
|
35
|
+
activeIndex: number;
|
|
36
|
+
emptyText: string;
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
export default _default;
|
|
39
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
40
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
41
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
42
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
43
|
+
} : {
|
|
44
|
+
type: import('vue').PropType<T[K]>;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
type __VLS_WithDefaults<P, D> = {
|
|
49
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
50
|
+
default: D[K];
|
|
51
|
+
}> : P[K];
|
|
52
|
+
};
|
|
53
|
+
type __VLS_Prettify<T> = {
|
|
54
|
+
[K in keyof T]: T[K];
|
|
55
|
+
} & {};
|
|
@@ -20,8 +20,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
20
20
|
}>>> & Readonly<{
|
|
21
21
|
"onUnmount-scale"?: ((value: number) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
-
max: number;
|
|
24
23
|
min: number;
|
|
24
|
+
max: number;
|
|
25
25
|
step: number;
|
|
26
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
27
|
export default _default;
|
|
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
27
27
|
onFocused?: ((event: FocusEvent) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
29
|
dataTestid: string;
|
|
30
|
-
max: number;
|
|
31
30
|
size: SizesEnum.small | SizesEnum.medium;
|
|
32
31
|
modelValue: number;
|
|
33
32
|
isInteger: boolean;
|
|
34
33
|
min: number;
|
|
34
|
+
max: number;
|
|
35
35
|
zeroPad: boolean;
|
|
36
36
|
modelModifiers: object;
|
|
37
37
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -22,9 +22,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
22
22
|
}>, {
|
|
23
23
|
dataTestid: string;
|
|
24
24
|
type: MessageTypeEnum;
|
|
25
|
-
timeout: number;
|
|
26
25
|
showPopover: boolean;
|
|
27
26
|
description: string;
|
|
27
|
+
timeout: number;
|
|
28
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
29
29
|
export default _default;
|
|
30
30
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -8,11 +8,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
type: import('vue').PropType<boolean>;
|
|
9
9
|
default: boolean;
|
|
10
10
|
};
|
|
11
|
-
|
|
11
|
+
min: {
|
|
12
12
|
type: import('vue').PropType<number>;
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
max: {
|
|
16
16
|
type: import('vue').PropType<number>;
|
|
17
17
|
default: number;
|
|
18
18
|
};
|
|
@@ -33,11 +33,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
33
33
|
type: import('vue').PropType<boolean>;
|
|
34
34
|
default: boolean;
|
|
35
35
|
};
|
|
36
|
-
|
|
36
|
+
min: {
|
|
37
37
|
type: import('vue').PropType<number>;
|
|
38
38
|
default: number;
|
|
39
39
|
};
|
|
40
|
-
|
|
40
|
+
max: {
|
|
41
41
|
type: import('vue').PropType<number>;
|
|
42
42
|
default: number;
|
|
43
43
|
};
|
|
@@ -51,8 +51,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
51
|
}>, {
|
|
52
52
|
dataTestid: string;
|
|
53
53
|
disabled: boolean;
|
|
54
|
-
max: number;
|
|
55
54
|
min: number;
|
|
55
|
+
max: number;
|
|
56
56
|
step: number;
|
|
57
57
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
58
|
export default _default;
|
|
@@ -10,13 +10,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
10
|
type: import('vue').PropType<ToggleEnum>;
|
|
11
11
|
default: ToggleEnum;
|
|
12
12
|
};
|
|
13
|
+
backgroundColor: {
|
|
14
|
+
type: import('vue').PropType<string>;
|
|
15
|
+
};
|
|
13
16
|
disabled: {
|
|
14
17
|
type: import('vue').PropType<boolean>;
|
|
15
18
|
default: boolean;
|
|
16
19
|
};
|
|
17
|
-
backgroundColor: {
|
|
18
|
-
type: import('vue').PropType<string>;
|
|
19
|
-
};
|
|
20
20
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
21
|
change: (isChecked: boolean) => void;
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -29,13 +29,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
type: import('vue').PropType<ToggleEnum>;
|
|
30
30
|
default: ToggleEnum;
|
|
31
31
|
};
|
|
32
|
+
backgroundColor: {
|
|
33
|
+
type: import('vue').PropType<string>;
|
|
34
|
+
};
|
|
32
35
|
disabled: {
|
|
33
36
|
type: import('vue').PropType<boolean>;
|
|
34
37
|
default: boolean;
|
|
35
38
|
};
|
|
36
|
-
backgroundColor: {
|
|
37
|
-
type: import('vue').PropType<string>;
|
|
38
|
-
};
|
|
39
39
|
}>> & Readonly<{
|
|
40
40
|
onChange?: ((isChecked: boolean) => any) | undefined;
|
|
41
41
|
}>, {
|
|
@@ -48,6 +48,8 @@ import { default as TableSimple } from './Table/TableSimple.vue';
|
|
|
48
48
|
import { default as Avatar } from './Avatar/Avatar.vue';
|
|
49
49
|
import { default as Tabs } from './Tabs/Tabs.vue';
|
|
50
50
|
import { default as ContentEditor } from './ContentEditor/ContentEditor.vue';
|
|
51
|
+
import { default as ContentEditorFormattingToolbar } from './ContentEditor/ContentEditorFormattingToolbar.vue';
|
|
52
|
+
import { default as ContentEditorSlashMenu } from './ContentEditor/ContentEditorSlashMenu.vue';
|
|
51
53
|
import { default as ModalCroppedAvatar } from './Cropper/ModalCroppedAvatar.vue';
|
|
52
54
|
import { default as TimePicker } from './TimePicker/TimePicker.vue';
|
|
53
55
|
import { default as vuePluginRemoveTestid } from '../helpers/vue-plugin-remove-testid';
|
|
@@ -56,6 +58,7 @@ import { IRangeForDatePicker } from './Calendar/interfaces/interfaces';
|
|
|
56
58
|
import { OptionsObject } from './Select/interface/interface';
|
|
57
59
|
import { IDialogProps } from './Modal/interface/interface';
|
|
58
60
|
import { IDataTestIdProp } from '../common/dataTestidProps';
|
|
61
|
+
import { IContentEditorSlashMenuItem } from './ContentEditor/interfaces/content-editor-slash-menu';
|
|
59
62
|
import { MessageTypeEnum } from './Notification/enum/enum';
|
|
60
63
|
import { IconNameEnum } from './Icon/enum/enum';
|
|
61
64
|
import { SizesEnum } from '../common/sizes';
|
|
@@ -77,4 +80,4 @@ declare const _default: {
|
|
|
77
80
|
install: (app: App) => void;
|
|
78
81
|
};
|
|
79
82
|
export default _default;
|
|
80
|
-
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, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, CheckboxSizeEnum, CheckboxCircularEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, MenuTypeEnum, MessageTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid, SliderModal, PdfPreview, ImagePreview, VideoPreview, Skeleton };
|
|
83
|
+
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, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ContentEditorFormattingToolbar, ContentEditorSlashMenu, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, type IContentEditorSlashMenuItem, CheckboxSizeEnum, CheckboxCircularEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, MenuTypeEnum, MessageTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid, SliderModal, PdfPreview, ImagePreview, VideoPreview, Skeleton };
|