@g-gts/ui 1.5.12

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 (74) hide show
  1. package/README.md +0 -0
  2. package/dist/components/airlines/EasyAirlineAutocomplete.vue.d.ts +22 -0
  3. package/dist/components/airports/EasyAirportAutocomplete.vue.d.ts +19 -0
  4. package/dist/components/avatar/EasyAvatar.vue.d.ts +22 -0
  5. package/dist/components/background/EasyBackground.vue.d.ts +6 -0
  6. package/dist/components/breadcrumb/EasyBreadcrumb.vue.d.ts +11 -0
  7. package/dist/components/button/EasyButton.vue.d.ts +42 -0
  8. package/dist/components/checkbox/EasyCheckbox.vue.d.ts +32 -0
  9. package/dist/components/city/CityAutocomplete.vue.d.ts +22 -0
  10. package/dist/components/country/CountryAutocomplete.vue.d.ts +19 -0
  11. package/dist/components/currency/CurrencyAutocomplete.vue.d.ts +18 -0
  12. package/dist/components/datapicker/EasyDatePicker.vue.d.ts +22 -0
  13. package/dist/components/document/DocumentAutocomplete.vue.d.ts +19 -0
  14. package/dist/components/dropdown/EasyDropdown.vue.d.ts +36 -0
  15. package/dist/components/dropdown-select/EasyDropdownSelect.vue.d.ts +32 -0
  16. package/dist/components/header/language-currency-dropdown/EasyLanguageCurrencyDropdown.vue.d.ts +28 -0
  17. package/dist/components/header/notification/EasyNoNotification.vue.d.ts +8 -0
  18. package/dist/components/header/notification/EasyNotificationDropdown.vue.d.ts +10 -0
  19. package/dist/components/header/notification/EasyNotificationItem.vue.d.ts +2 -0
  20. package/dist/components/header/profile/ProfileDropdown.vue.d.ts +10 -0
  21. package/dist/components/icon/EasyIcon.vue.d.ts +37 -0
  22. package/dist/components/input/EasyInput.vue.d.ts +40 -0
  23. package/dist/components/input-number/EasyInputNumber.vue.d.ts +34 -0
  24. package/dist/components/layout/EasyLayout.vue.d.ts +32 -0
  25. package/dist/components/loader/EasyLoader.vue.d.ts +17 -0
  26. package/dist/components/login/EasyLoginModal.vue.d.ts +2 -0
  27. package/dist/components/modal/EasyConfirmModal.vue.d.ts +21 -0
  28. package/dist/components/modal/EasyModal.vue.d.ts +35 -0
  29. package/dist/components/multiselect/EasyMultiSelect.vue.d.ts +35 -0
  30. package/dist/components/pagination/EasyPagination.vue.d.ts +20 -0
  31. package/dist/components/payment/PaymentModal.vue.d.ts +22 -0
  32. package/dist/components/phone/EasyPhoneNumber.vue.d.ts +21 -0
  33. package/dist/components/popover/EasyPopover.vue.d.ts +17 -0
  34. package/dist/components/radio/EasyRadioButton.vue.d.ts +32 -0
  35. package/dist/components/section-message/EasySectionMessage.vue.d.ts +23 -0
  36. package/dist/components/select/EasySelect.vue.d.ts +52 -0
  37. package/dist/components/services-tab/ServicesTab.vue.d.ts +15 -0
  38. package/dist/components/sidebar/NavigationSidebar.vue.d.ts +16 -0
  39. package/dist/components/sidebar/NavigationSidebarDropdown.vue.d.ts +11 -0
  40. package/dist/components/sidebar/NavigationSidebarItem.vue.d.ts +17 -0
  41. package/dist/components/switchtoggle/EasySwitchToggle.vue.d.ts +19 -0
  42. package/dist/components/tabs/EasyTabs.vue.d.ts +17 -0
  43. package/dist/components/textarea/EasyTextarea.vue.d.ts +30 -0
  44. package/dist/composables/useClickOutside.d.ts +6 -0
  45. package/dist/composables/useFetch.d.ts +14 -0
  46. package/dist/composables/usePermission.d.ts +7 -0
  47. package/dist/composables/useUser.d.ts +9 -0
  48. package/dist/composables/useWindowSize.d.ts +4 -0
  49. package/dist/constants/countries.d.ts +3 -0
  50. package/dist/constants/index.d.ts +4 -0
  51. package/dist/constants/lang.d.ts +2 -0
  52. package/dist/constants/languages.d.ts +2 -0
  53. package/dist/constants/sidebar.d.ts +2 -0
  54. package/dist/constants/temp.d.ts +2 -0
  55. package/dist/directives/permissions.d.ts +4 -0
  56. package/dist/gts-ui.css +1 -0
  57. package/dist/gts-ui.es.js +24155 -0
  58. package/dist/gts-ui.umd.js +207 -0
  59. package/dist/index.d.ts +60 -0
  60. package/dist/main.d.ts +0 -0
  61. package/dist/types/autocomplete.d.ts +67 -0
  62. package/dist/types/index.d.ts +46 -0
  63. package/dist/types/ui.d.ts +27 -0
  64. package/dist/types/user.d.ts +110 -0
  65. package/dist/utils/catcher.d.ts +1 -0
  66. package/dist/utils/debounce.d.ts +3 -0
  67. package/dist/utils/formatter.d.ts +2 -0
  68. package/dist/utils/string.d.ts +1 -0
  69. package/package.json +84 -0
  70. package/src/assets/icomoon/fonts/icomoon.eot +0 -0
  71. package/src/assets/icomoon/fonts/icomoon.svg +345 -0
  72. package/src/assets/icomoon/fonts/icomoon.ttf +0 -0
  73. package/src/assets/icomoon/fonts/icomoon.woff +0 -0
  74. package/src/assets/icomoon/style.css +1362 -0
package/README.md ADDED
Binary file
@@ -0,0 +1,22 @@
1
+ import { IAirline } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ optionLabel?: string;
7
+ emptyText?: string;
8
+ size?: 'small' | 'large';
9
+ };
10
+ type __VLS_PublicProps = {
11
+ modelValue?: IAirline;
12
+ } & typeof __VLS_typeProps;
13
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "update:modelValue": (modelValue: IAirline) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((modelValue: IAirline) => any) | undefined;
17
+ }>, {
18
+ size: "small" | "large";
19
+ optionLabel: string;
20
+ emptyText: string;
21
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { IAirport } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ size?: 'small' | 'large';
7
+ disabled?: boolean;
8
+ };
9
+ type __VLS_PublicProps = {
10
+ modelValue?: IAirport;
11
+ } & typeof __VLS_typeProps;
12
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "update:modelValue": (modelValue: IAirport) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
+ "onUpdate:modelValue"?: ((modelValue: IAirport) => any) | undefined;
16
+ }>, {
17
+ size: "small" | "large";
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,22 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ size?: string;
3
+ url?: string;
4
+ username?: string;
5
+ online?: boolean;
6
+ companyLogo?: string;
7
+ bgColor?: string;
8
+ borderColor?: string;
9
+ textColor?: string;
10
+ bordered?: boolean;
11
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
12
+ size?: string;
13
+ url?: string;
14
+ username?: string;
15
+ online?: boolean;
16
+ companyLogo?: string;
17
+ bgColor?: string;
18
+ borderColor?: string;
19
+ textColor?: string;
20
+ bordered?: boolean;
21
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ routePath?: string;
3
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
4
+ routePath?: string;
5
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { BreadcrumbItem, BreadcrumbHomeItem } from '../../types/ui';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ items: BreadcrumbItem[];
4
+ home?: BreadcrumbHomeItem;
5
+ withoutBg?: boolean;
6
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
+ items: BreadcrumbItem[];
8
+ home?: BreadcrumbHomeItem;
9
+ withoutBg?: boolean;
10
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ export default _default;
@@ -0,0 +1,42 @@
1
+ interface Props {
2
+ label?: string;
3
+ severity?: 'secondary' | 'info' | 'help' | 'danger';
4
+ size?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
5
+ outlined?: boolean;
6
+ raised?: boolean;
7
+ rounded?: boolean;
8
+ icon?: string;
9
+ iconPos?: 'left' | 'right' | 'top' | 'bottom';
10
+ loading?: boolean;
11
+ loadingIcon?: string;
12
+ link?: boolean;
13
+ plain?: boolean;
14
+ disabled?: boolean;
15
+ square?: boolean;
16
+ }
17
+ declare function __VLS_template(): {
18
+ slots: {
19
+ default?(_: {}): any;
20
+ };
21
+ refs: {};
22
+ attrs: Partial<{}>;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
26
+ size: "sm" | "md" | "lg" | "xl" | "xxl";
27
+ link: boolean;
28
+ loading: boolean;
29
+ outlined: boolean;
30
+ raised: boolean;
31
+ rounded: boolean;
32
+ iconPos: "left" | "right" | "top" | "bottom";
33
+ plain: boolean;
34
+ square: boolean;
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
36
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
37
+ export default _default;
38
+ type __VLS_WithTemplateSlots<T, S> = T & {
39
+ new (): {
40
+ $slots: S;
41
+ };
42
+ };
@@ -0,0 +1,32 @@
1
+ declare let __VLS_typeProps: {
2
+ name?: string;
3
+ label?: string;
4
+ text?: string;
5
+ value?: string | boolean | object;
6
+ binary?: boolean;
7
+ disabled?: boolean;
8
+ small?: boolean;
9
+ };
10
+ type __VLS_PublicProps = {
11
+ modelValue?: any;
12
+ } & typeof __VLS_typeProps;
13
+ declare function __VLS_template(): {
14
+ slots: {
15
+ default?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ attrs: Partial<{}>;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
+ "update:modelValue": (modelValue: any) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
+ "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,22 @@
1
+ import { ICity } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ optionLabel?: 'name' | 'state_name';
7
+ optionValue?: 'name' | 'state_name';
8
+ emptyText?: string;
9
+ countryCode?: string;
10
+ size?: 'small' | 'large';
11
+ invalid?: boolean;
12
+ disabled?: boolean;
13
+ };
14
+ type __VLS_PublicProps = {
15
+ modelValue?: ICity | string;
16
+ } & typeof __VLS_typeProps;
17
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ "update:modelValue": (modelValue: string | ICity) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
+ "onUpdate:modelValue"?: ((modelValue: string | ICity) => any) | undefined;
21
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { ICountry } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ optionValue?: 'code' | 'country_rus' | 'country_eng' | 'country_uzb';
7
+ emptyText?: string;
8
+ size?: 'small' | 'large';
9
+ invalid?: boolean;
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: ICountry | string;
13
+ } & typeof __VLS_typeProps;
14
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ "update:modelValue": (modelValue: string | ICountry) => any;
16
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:modelValue"?: ((modelValue: string | ICountry) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { ICurrency } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ optionLabel?: 'base' | 'ru';
7
+ emptyText?: string;
8
+ size?: 'small' | 'large';
9
+ };
10
+ type __VLS_PublicProps = {
11
+ modelValue?: ICurrency;
12
+ } & typeof __VLS_typeProps;
13
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "update:modelValue": (modelValue: ICurrency) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((modelValue: ICurrency) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { DatepickerModelType } from 'src/types/ui';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ size?: 'small' | 'large';
5
+ placeholder?: string;
6
+ selectionMode?: 'multiple' | 'range' | 'single';
7
+ minDate?: Date;
8
+ maxDate?: Date;
9
+ showIcon?: boolean;
10
+ timeOnly?: boolean;
11
+ invalid?: boolean;
12
+ disabled?: boolean;
13
+ };
14
+ type __VLS_PublicProps = {
15
+ modelValue?: DatepickerModelType;
16
+ } & typeof __VLS_typeProps;
17
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ "update:modelValue": (modelValue: DatepickerModelType) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
+ "onUpdate:modelValue"?: ((modelValue: DatepickerModelType) => any) | undefined;
21
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { IDocument } from '../../types/autocomplete';
2
+ declare let __VLS_typeProps: {
3
+ label?: string;
4
+ placeholder?: string;
5
+ prefixIcon?: string;
6
+ optionLabel?: 'title' | 'type';
7
+ emptyText?: string;
8
+ country?: string;
9
+ size?: 'small' | 'large';
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: IDocument;
13
+ } & typeof __VLS_typeProps;
14
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ "update:modelValue": (modelValue: IDocument) => any;
16
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:modelValue"?: ((modelValue: IDocument) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,36 @@
1
+ import { default as OverlayPanel } from 'primevue/overlaypanel';
2
+ declare function __VLS_template(): {
3
+ slots: {
4
+ trigger?(_: {}): any;
5
+ default?(_: {
6
+ op: OverlayPanel | undefined;
7
+ }): any;
8
+ };
9
+ refs: {
10
+ op: OverlayPanel | null;
11
+ };
12
+ attrs: Partial<{}>;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<{
16
+ dropdownClass?: string;
17
+ value?: unknown;
18
+ disabled?: boolean;
19
+ readonly?: boolean;
20
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
21
+ toggle: (val: boolean) => any;
22
+ }, string, import('vue').PublicProps, Readonly<{
23
+ dropdownClass?: string;
24
+ value?: unknown;
25
+ disabled?: boolean;
26
+ readonly?: boolean;
27
+ }> & Readonly<{
28
+ onToggle?: ((val: boolean) => any) | undefined;
29
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1,32 @@
1
+ import { IItem } from '../../types/ui';
2
+ declare let __VLS_typeProps: {
3
+ options: IItem[];
4
+ dropdownClass?: string;
5
+ disabled?: boolean;
6
+ readonly?: boolean;
7
+ filter?: boolean;
8
+ width?: string;
9
+ };
10
+ type __VLS_PublicProps = {
11
+ modelValue?: string | number;
12
+ } & typeof __VLS_typeProps;
13
+ declare function __VLS_template(): {
14
+ slots: {
15
+ trigger?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ attrs: Partial<{}>;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
+ "update:modelValue": (modelValue: string | number) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
+ "onUpdate:modelValue"?: ((modelValue: string | number) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,28 @@
1
+ import { ICurrency } from '../../../types/autocomplete';
2
+ import { LocaleTypes } from '../../../types';
3
+ declare let __VLS_typeProps: {
4
+ currencies?: ICurrency[];
5
+ };
6
+ declare const __VLS_defaults: {
7
+ currency: string;
8
+ locale: string;
9
+ };
10
+ type __VLS_PublicProps = {
11
+ 'currency'?: typeof __VLS_defaults['currency'];
12
+ 'locale'?: LocaleTypes;
13
+ } & typeof __VLS_typeProps;
14
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ "update:currency": (currency: string) => any;
16
+ "update:locale": (locale: LocaleTypes) => any;
17
+ } & {
18
+ selectLanguage: (val: string) => any;
19
+ selectCurrency: (val: string) => any;
20
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
21
+ onSelectLanguage?: ((val: string) => any) | undefined;
22
+ onSelectCurrency?: ((val: string) => any) | undefined;
23
+ "onUpdate:currency"?: ((currency: string) => any) | undefined;
24
+ "onUpdate:locale"?: ((locale: LocaleTypes) => any) | undefined;
25
+ }>, {
26
+ currencies: ICurrency[];
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ title: string;
3
+ subtitle: string;
4
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
5
+ title: string;
6
+ subtitle: string;
7
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
8
+ export default _default;
@@ -0,0 +1,10 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ title?: string;
3
+ emptyTitle?: string;
4
+ emptySubtitle?: string;
5
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
6
+ title?: string;
7
+ emptyTitle?: string;
8
+ emptySubtitle?: string;
9
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { IUser } from '../../../types/user';
2
+ import { IItem } from '../../../types/ui';
3
+ declare const _default: import('vue').DefineComponent<{
4
+ user: IUser;
5
+ links: IItem[];
6
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
+ user: IUser;
8
+ links: IItem[];
9
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,37 @@
1
+ interface Props {
2
+ /**
3
+ * Name of the icon to display
4
+ * Can be used with or without 'icon-' prefix
5
+ * @example 'Search' or 'icon-Search'
6
+ */
7
+ name: string;
8
+ /**
9
+ * Size of the icon in pixels
10
+ * @default 16
11
+ */
12
+ size?: number;
13
+ /**
14
+ * Color of the icon
15
+ * @default 'currentColor'
16
+ */
17
+ color?: string;
18
+ }
19
+ declare function __VLS_template(): {
20
+ slots: {
21
+ default?(_: {}): any;
22
+ };
23
+ refs: {};
24
+ attrs: Partial<{}>;
25
+ };
26
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
27
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
28
+ size: number;
29
+ color: string;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
32
+ export default _default;
33
+ type __VLS_WithTemplateSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -0,0 +1,40 @@
1
+ declare let __VLS_typeProps: {
2
+ label?: string;
3
+ placeholder?: string;
4
+ tabindex?: number;
5
+ readonly?: boolean;
6
+ invalid?: boolean;
7
+ size?: 'small' | 'large';
8
+ type?: 'text' | 'password' | 'mask';
9
+ mask?: string;
10
+ uppercase?: boolean;
11
+ copyButton?: boolean;
12
+ disabled?: boolean;
13
+ loading?: boolean;
14
+ prefixIcon?: string;
15
+ };
16
+ type __VLS_PublicProps = {
17
+ modelValue?: string;
18
+ } & typeof __VLS_typeProps;
19
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
+ "update:modelValue": (modelValue: string) => any;
21
+ } & {
22
+ focus: (val?: string | undefined) => any;
23
+ focusout: (val?: string | undefined) => any;
24
+ "keydown.down": (val?: string | undefined) => any;
25
+ "keydown.up": (val?: string | undefined) => any;
26
+ "keydown.enter": (val?: string | undefined) => any;
27
+ "keydown.tab": (val?: string | undefined) => any;
28
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
29
+ onFocus?: ((val?: string | undefined) => any) | undefined;
30
+ onFocusout?: ((val?: string | undefined) => any) | undefined;
31
+ "onKeydown.down"?: ((val?: string | undefined) => any) | undefined;
32
+ "onKeydown.up"?: ((val?: string | undefined) => any) | undefined;
33
+ "onKeydown.enter"?: ((val?: string | undefined) => any) | undefined;
34
+ "onKeydown.tab"?: ((val?: string | undefined) => any) | undefined;
35
+ "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
36
+ }>, {
37
+ size: "small" | "large";
38
+ type: "text" | "password" | "mask";
39
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
40
+ export default _default;
@@ -0,0 +1,34 @@
1
+ declare let __VLS_typeProps: {
2
+ label?: string;
3
+ placeholder?: string;
4
+ tabindex?: number;
5
+ readonly?: boolean;
6
+ invalid?: boolean;
7
+ size?: 'small' | 'large';
8
+ disabled?: boolean;
9
+ prefixIcon?: string;
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: number;
13
+ } & typeof __VLS_typeProps;
14
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ "update:modelValue": (modelValue: number) => any;
16
+ } & {
17
+ focus: (val?: string | undefined) => any;
18
+ focusout: (val?: string | undefined) => any;
19
+ "keydown.down": (val?: string | undefined) => any;
20
+ "keydown.up": (val?: string | undefined) => any;
21
+ "keydown.enter": (val?: string | undefined) => any;
22
+ "keydown.tab": (val?: string | undefined) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
+ onFocus?: ((val?: string | undefined) => any) | undefined;
25
+ onFocusout?: ((val?: string | undefined) => any) | undefined;
26
+ "onKeydown.down"?: ((val?: string | undefined) => any) | undefined;
27
+ "onKeydown.up"?: ((val?: string | undefined) => any) | undefined;
28
+ "onKeydown.enter"?: ((val?: string | undefined) => any) | undefined;
29
+ "onKeydown.tab"?: ((val?: string | undefined) => any) | undefined;
30
+ "onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
31
+ }>, {
32
+ size: "small" | "large";
33
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
34
+ export default _default;
@@ -0,0 +1,32 @@
1
+ import { LocaleTypes, EnvTypes } from '../../types';
2
+ declare function __VLS_template(): {
3
+ slots: {
4
+ header?(_: {}): any;
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ attrs: Partial<{}>;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{
12
+ routeName: string;
13
+ isDark?: boolean;
14
+ locale: LocaleTypes;
15
+ baseUrl?: string;
16
+ env?: EnvTypes;
17
+ isContract?: boolean;
18
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
19
+ routeName: string;
20
+ isDark?: boolean;
21
+ locale: LocaleTypes;
22
+ baseUrl?: string;
23
+ env?: EnvTypes;
24
+ isContract?: boolean;
25
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,17 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ size?: number;
3
+ borderWidth?: number;
4
+ borderColor?: string;
5
+ borderTopColor?: string;
6
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
+ size?: number;
8
+ borderWidth?: number;
9
+ borderColor?: string;
10
+ borderTopColor?: string;
11
+ }> & Readonly<{}>, {
12
+ size: number;
13
+ borderWidth: number;
14
+ borderColor: string;
15
+ borderTopColor: string;
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,21 @@
1
+ declare let __VLS_typeProps: {
2
+ type: 'warning' | 'success' | 'danger';
3
+ title?: string;
4
+ text?: string;
5
+ loading?: boolean;
6
+ backgroundColor?: string;
7
+ confirmButtonText?: string;
8
+ cancelButtonText?: string;
9
+ };
10
+ type __VLS_PublicProps = {
11
+ modelValue?: boolean;
12
+ } & typeof __VLS_typeProps;
13
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "update:modelValue": (modelValue: boolean) => any;
15
+ } & {
16
+ ok: () => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
18
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
19
+ onOk?: (() => any) | undefined;
20
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ export default _default;
@@ -0,0 +1,35 @@
1
+ declare let __VLS_typeProps: {
2
+ maxWidth?: string;
3
+ title?: string;
4
+ backgroundColor?: string;
5
+ hideClose?: boolean;
6
+ noScroll?: boolean;
7
+ showHeader?: boolean;
8
+ maximizable?: boolean;
9
+ dismissableMask?: boolean;
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: boolean;
13
+ } & typeof __VLS_typeProps;
14
+ declare function __VLS_template(): {
15
+ slots: {
16
+ header?(_: {}): any;
17
+ default?(_: {}): any;
18
+ footer?(_: {}): any;
19
+ };
20
+ refs: {};
21
+ attrs: Partial<{}>;
22
+ };
23
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
+ close: (...args: any[]) => void;
26
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
27
+ onClose?: ((...args: any[]) => any) | undefined;
28
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
+ export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };