@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.
- package/README.md +0 -0
- package/dist/components/airlines/EasyAirlineAutocomplete.vue.d.ts +22 -0
- package/dist/components/airports/EasyAirportAutocomplete.vue.d.ts +19 -0
- package/dist/components/avatar/EasyAvatar.vue.d.ts +22 -0
- package/dist/components/background/EasyBackground.vue.d.ts +6 -0
- package/dist/components/breadcrumb/EasyBreadcrumb.vue.d.ts +11 -0
- package/dist/components/button/EasyButton.vue.d.ts +42 -0
- package/dist/components/checkbox/EasyCheckbox.vue.d.ts +32 -0
- package/dist/components/city/CityAutocomplete.vue.d.ts +22 -0
- package/dist/components/country/CountryAutocomplete.vue.d.ts +19 -0
- package/dist/components/currency/CurrencyAutocomplete.vue.d.ts +18 -0
- package/dist/components/datapicker/EasyDatePicker.vue.d.ts +22 -0
- package/dist/components/document/DocumentAutocomplete.vue.d.ts +19 -0
- package/dist/components/dropdown/EasyDropdown.vue.d.ts +36 -0
- package/dist/components/dropdown-select/EasyDropdownSelect.vue.d.ts +32 -0
- package/dist/components/header/language-currency-dropdown/EasyLanguageCurrencyDropdown.vue.d.ts +28 -0
- package/dist/components/header/notification/EasyNoNotification.vue.d.ts +8 -0
- package/dist/components/header/notification/EasyNotificationDropdown.vue.d.ts +10 -0
- package/dist/components/header/notification/EasyNotificationItem.vue.d.ts +2 -0
- package/dist/components/header/profile/ProfileDropdown.vue.d.ts +10 -0
- package/dist/components/icon/EasyIcon.vue.d.ts +37 -0
- package/dist/components/input/EasyInput.vue.d.ts +40 -0
- package/dist/components/input-number/EasyInputNumber.vue.d.ts +34 -0
- package/dist/components/layout/EasyLayout.vue.d.ts +32 -0
- package/dist/components/loader/EasyLoader.vue.d.ts +17 -0
- package/dist/components/login/EasyLoginModal.vue.d.ts +2 -0
- package/dist/components/modal/EasyConfirmModal.vue.d.ts +21 -0
- package/dist/components/modal/EasyModal.vue.d.ts +35 -0
- package/dist/components/multiselect/EasyMultiSelect.vue.d.ts +35 -0
- package/dist/components/pagination/EasyPagination.vue.d.ts +20 -0
- package/dist/components/payment/PaymentModal.vue.d.ts +22 -0
- package/dist/components/phone/EasyPhoneNumber.vue.d.ts +21 -0
- package/dist/components/popover/EasyPopover.vue.d.ts +17 -0
- package/dist/components/radio/EasyRadioButton.vue.d.ts +32 -0
- package/dist/components/section-message/EasySectionMessage.vue.d.ts +23 -0
- package/dist/components/select/EasySelect.vue.d.ts +52 -0
- package/dist/components/services-tab/ServicesTab.vue.d.ts +15 -0
- package/dist/components/sidebar/NavigationSidebar.vue.d.ts +16 -0
- package/dist/components/sidebar/NavigationSidebarDropdown.vue.d.ts +11 -0
- package/dist/components/sidebar/NavigationSidebarItem.vue.d.ts +17 -0
- package/dist/components/switchtoggle/EasySwitchToggle.vue.d.ts +19 -0
- package/dist/components/tabs/EasyTabs.vue.d.ts +17 -0
- package/dist/components/textarea/EasyTextarea.vue.d.ts +30 -0
- package/dist/composables/useClickOutside.d.ts +6 -0
- package/dist/composables/useFetch.d.ts +14 -0
- package/dist/composables/usePermission.d.ts +7 -0
- package/dist/composables/useUser.d.ts +9 -0
- package/dist/composables/useWindowSize.d.ts +4 -0
- package/dist/constants/countries.d.ts +3 -0
- package/dist/constants/index.d.ts +4 -0
- package/dist/constants/lang.d.ts +2 -0
- package/dist/constants/languages.d.ts +2 -0
- package/dist/constants/sidebar.d.ts +2 -0
- package/dist/constants/temp.d.ts +2 -0
- package/dist/directives/permissions.d.ts +4 -0
- package/dist/gts-ui.css +1 -0
- package/dist/gts-ui.es.js +24155 -0
- package/dist/gts-ui.umd.js +207 -0
- package/dist/index.d.ts +60 -0
- package/dist/main.d.ts +0 -0
- package/dist/types/autocomplete.d.ts +67 -0
- package/dist/types/index.d.ts +46 -0
- package/dist/types/ui.d.ts +27 -0
- package/dist/types/user.d.ts +110 -0
- package/dist/utils/catcher.d.ts +1 -0
- package/dist/utils/debounce.d.ts +3 -0
- package/dist/utils/formatter.d.ts +2 -0
- package/dist/utils/string.d.ts +1 -0
- package/package.json +84 -0
- package/src/assets/icomoon/fonts/icomoon.eot +0 -0
- package/src/assets/icomoon/fonts/icomoon.svg +345 -0
- package/src/assets/icomoon/fonts/icomoon.ttf +0 -0
- package/src/assets/icomoon/fonts/icomoon.woff +0 -0
- package/src/assets/icomoon/style.css +1362 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as countries } from './constants/countries';
|
|
3
|
+
import { default as EasyInput } from './components/input/EasyInput.vue';
|
|
4
|
+
import { default as EasyIcon } from './components/icon/EasyIcon.vue';
|
|
5
|
+
import { default as EasyCheckbox } from './components/checkbox/EasyCheckbox.vue';
|
|
6
|
+
import { default as EasyRadioButton } from './components/radio/EasyRadioButton.vue';
|
|
7
|
+
import { default as EasyButton } from './components/button/EasyButton.vue';
|
|
8
|
+
import { default as EasyDropdown } from './components/dropdown/EasyDropdown.vue';
|
|
9
|
+
import { default as EasyLoader } from './components/loader/EasyLoader.vue';
|
|
10
|
+
import { default as EasyAirline } from './components/airlines/EasyAirlineAutocomplete.vue';
|
|
11
|
+
import { default as EasyAvatar } from './components/avatar/EasyAvatar.vue';
|
|
12
|
+
import { default as EasySelect } from './components/select/EasySelect.vue';
|
|
13
|
+
import { default as EasyCity } from './components/city/CityAutocomplete.vue';
|
|
14
|
+
import { default as EasyCountry } from './components/country/CountryAutocomplete.vue';
|
|
15
|
+
import { default as EasyCurrency } from './components/currency/CurrencyAutocomplete.vue';
|
|
16
|
+
import { default as EasyDocument } from './components/document/DocumentAutocomplete.vue';
|
|
17
|
+
import { default as EasyTabs } from './components/tabs/EasyTabs.vue';
|
|
18
|
+
import { default as EasyBackground } from './components/background/EasyBackground.vue';
|
|
19
|
+
import { default as EasyLayout } from './components/layout/EasyLayout.vue';
|
|
20
|
+
import { default as EasyModal } from './components/modal/EasyModal.vue';
|
|
21
|
+
import { default as EasyConfirmModal } from './components/modal/EasyConfirmModal.vue';
|
|
22
|
+
import { default as EasySidebar } from './components/sidebar/NavigationSidebar.vue';
|
|
23
|
+
import { default as EasyBreadcrumb } from './components/breadcrumb/EasyBreadcrumb.vue';
|
|
24
|
+
import { default as EasyLanguageCurrencyDropdown } from './components/header/language-currency-dropdown/EasyLanguageCurrencyDropdown.vue';
|
|
25
|
+
import { default as EasyDatePicker } from './components/datapicker/EasyDatePicker.vue';
|
|
26
|
+
import { default as EasyMultiSelect } from './components/multiselect/EasyMultiSelect.vue';
|
|
27
|
+
import { default as EasyPagination } from './components/pagination/EasyPagination.vue';
|
|
28
|
+
import { default as EasySwitchToggle } from './components/switchtoggle/EasySwitchToggle.vue';
|
|
29
|
+
import { default as EasyNotificationDropdown } from './components/header/notification/EasyNotificationDropdown.vue';
|
|
30
|
+
import { default as EasyTextarea } from './components/textarea/EasyTextarea.vue';
|
|
31
|
+
import { default as EasyProfileDropdown } from './components/header/profile/ProfileDropdown.vue';
|
|
32
|
+
import { default as EasySectionMessage } from './components/section-message/EasySectionMessage.vue';
|
|
33
|
+
import { default as EasyPopover } from './components/popover/EasyPopover.vue';
|
|
34
|
+
import { default as EasyPhoneNumber } from './components/phone/EasyPhoneNumber.vue';
|
|
35
|
+
import { default as EasyServicesTab } from './components/services-tab/ServicesTab.vue';
|
|
36
|
+
import { default as EasyDropdownSelect } from './components/dropdown-select/EasyDropdownSelect.vue';
|
|
37
|
+
import { default as EasyAirport } from './components/airports/EasyAirportAutocomplete.vue';
|
|
38
|
+
import { default as EasyPaymentModal } from './components/payment/PaymentModal.vue';
|
|
39
|
+
import { default as EasyInputNumber } from './components/input-number/EasyInputNumber.vue';
|
|
40
|
+
import { default as EasyLoginModal } from './components/login/EasyLoginModal.vue';
|
|
41
|
+
declare const _default: {
|
|
42
|
+
install(app: App): void;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
export { EasyInput, EasyIcon, EasyRadioButton, EasyCheckbox, EasyButton, EasyDropdown, EasyLoader, EasyAirline, EasyAvatar, EasySelect, EasyCity, EasyCountry, EasyCurrency, EasyDocument, EasyTabs, EasyBackground, EasyLayout, EasyModal, EasyConfirmModal, EasySidebar, EasyBreadcrumb, EasyLanguageCurrencyDropdown, EasyDatePicker, EasyMultiSelect, EasyPagination, EasySwitchToggle, EasyTextarea, EasyNotificationDropdown, EasyProfileDropdown, EasySectionMessage, EasyPopover, EasyPhoneNumber, EasyServicesTab, EasyDropdownSelect, EasyAirport, EasyPaymentModal, EasyInputNumber, EasyLoginModal };
|
|
46
|
+
export type { IAirline, ICountry, ICurrency, IDocument, ICity, IPhoneNumber, IAirport } from './types/autocomplete';
|
|
47
|
+
export type { IItem, DatepickerModelType, ISidebarItem } from './types/ui';
|
|
48
|
+
export type { IUser, IUserCurrency, IUserLanguage, IContactItem, ICompanyInfo, IBankDetails } from './types/user';
|
|
49
|
+
export type { LocaleTypes, ServicesTypes, IService, EnvTypes } from './types';
|
|
50
|
+
export type { IContractBalance, IProvider } from './types';
|
|
51
|
+
export { catcher } from './utils/catcher';
|
|
52
|
+
export { debounce } from './utils/debounce';
|
|
53
|
+
export { padStart } from './utils/string';
|
|
54
|
+
export { formatNumber, formatCurrency } from './utils/formatter';
|
|
55
|
+
export { countries };
|
|
56
|
+
export { languages } from './constants/languages';
|
|
57
|
+
export { usePermission } from './composables/usePermission';
|
|
58
|
+
export { useWindowSize } from './composables/useWindowSize';
|
|
59
|
+
export { useClickOutside } from './composables/useClickOutside';
|
|
60
|
+
export { useUser } from './composables/useUser';
|
package/dist/main.d.ts
ADDED
|
File without changes
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export interface IAirline {
|
|
2
|
+
name: string;
|
|
3
|
+
code: string;
|
|
4
|
+
iata_code: string;
|
|
5
|
+
ikao_code: string;
|
|
6
|
+
is_lowcost: boolean;
|
|
7
|
+
logo: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IAirport {
|
|
10
|
+
name: string;
|
|
11
|
+
iata_code: string;
|
|
12
|
+
name_rus: string;
|
|
13
|
+
name_eng: string;
|
|
14
|
+
city_rus: string;
|
|
15
|
+
city_eng: string;
|
|
16
|
+
gmt_offset: string;
|
|
17
|
+
country_rus: string;
|
|
18
|
+
country_eng: string;
|
|
19
|
+
iso_code: string;
|
|
20
|
+
latitude: string;
|
|
21
|
+
longitude: string;
|
|
22
|
+
hide: number;
|
|
23
|
+
is_city: number;
|
|
24
|
+
content: string;
|
|
25
|
+
is_airport: boolean;
|
|
26
|
+
}
|
|
27
|
+
export interface ICountry {
|
|
28
|
+
country_rus: string;
|
|
29
|
+
country_eng: string;
|
|
30
|
+
country_uzb: string;
|
|
31
|
+
code: string;
|
|
32
|
+
phone_code: number;
|
|
33
|
+
phone_mask: string;
|
|
34
|
+
emoji: string;
|
|
35
|
+
unicode: string;
|
|
36
|
+
image: string;
|
|
37
|
+
latitude?: number;
|
|
38
|
+
longitude?: number;
|
|
39
|
+
}
|
|
40
|
+
export interface ILanguage {
|
|
41
|
+
ru: string;
|
|
42
|
+
en: string;
|
|
43
|
+
uz: string;
|
|
44
|
+
value: string;
|
|
45
|
+
}
|
|
46
|
+
export interface ICurrency {
|
|
47
|
+
base: string;
|
|
48
|
+
ru: string;
|
|
49
|
+
bool: boolean;
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
}
|
|
52
|
+
export interface IDocument {
|
|
53
|
+
rule: string;
|
|
54
|
+
iso_code: string;
|
|
55
|
+
type: string;
|
|
56
|
+
country: string[];
|
|
57
|
+
title: string;
|
|
58
|
+
}
|
|
59
|
+
export interface ICity {
|
|
60
|
+
name: string;
|
|
61
|
+
state_name: string;
|
|
62
|
+
country_name: string;
|
|
63
|
+
}
|
|
64
|
+
export interface IPhoneNumber {
|
|
65
|
+
phone_code: string;
|
|
66
|
+
phone_number: string;
|
|
67
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export type LocaleTypes = 'en' | 'ru' | 'uz';
|
|
2
|
+
export type ServicesTypes = 'flights' | 'hotels' | 'railway' | 'transfers' | 'tours' | 'insurance' | 'excursions' | 'esim' | 'cruises' | 'rentcar';
|
|
3
|
+
export interface IService {
|
|
4
|
+
id: number;
|
|
5
|
+
label: Record<LocaleTypes, string>;
|
|
6
|
+
icon: string;
|
|
7
|
+
value: ServicesTypes;
|
|
8
|
+
env?: EnvTypes[];
|
|
9
|
+
}
|
|
10
|
+
export interface IProvider {
|
|
11
|
+
name: string;
|
|
12
|
+
secret_name: string;
|
|
13
|
+
minimum_amount: string;
|
|
14
|
+
time_gmt: string;
|
|
15
|
+
currency: string;
|
|
16
|
+
iata_number: string;
|
|
17
|
+
is_test: boolean;
|
|
18
|
+
status: string;
|
|
19
|
+
balance: number;
|
|
20
|
+
}
|
|
21
|
+
export interface IContractBalance {
|
|
22
|
+
balance: number;
|
|
23
|
+
currency: string;
|
|
24
|
+
}
|
|
25
|
+
export type ResponseStatus = 'success' | 'error' | 'In process';
|
|
26
|
+
export interface IResponse<T> {
|
|
27
|
+
data: T;
|
|
28
|
+
status: ResponseStatus;
|
|
29
|
+
message: string;
|
|
30
|
+
code: number;
|
|
31
|
+
errors: any[];
|
|
32
|
+
}
|
|
33
|
+
export interface IPagination {
|
|
34
|
+
page: number;
|
|
35
|
+
pages: number;
|
|
36
|
+
per_page: number;
|
|
37
|
+
total: number;
|
|
38
|
+
}
|
|
39
|
+
export type EnvTypes = 'production' | 'development' | 'local';
|
|
40
|
+
export interface ISignInResponse {
|
|
41
|
+
user: {
|
|
42
|
+
uid: string;
|
|
43
|
+
user_type: string;
|
|
44
|
+
apis: string[];
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface IItem {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string | number;
|
|
4
|
+
icon?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
items?: string[];
|
|
7
|
+
}
|
|
8
|
+
export type DatepickerModelType = ((Date | Date[] | (Date | null)[]) & (string | Date | Date[] | string[])) | null | undefined;
|
|
9
|
+
export interface ISidebarItem {
|
|
10
|
+
path: string;
|
|
11
|
+
icon?: string;
|
|
12
|
+
activeIcon?: string;
|
|
13
|
+
label: string;
|
|
14
|
+
code: string;
|
|
15
|
+
children?: ISidebarItem[];
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
internal?: boolean;
|
|
18
|
+
pages: string[];
|
|
19
|
+
}
|
|
20
|
+
export interface BreadcrumbItem {
|
|
21
|
+
label: string;
|
|
22
|
+
route?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface BreadcrumbHomeItem {
|
|
25
|
+
icon: string;
|
|
26
|
+
route?: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { ICity, ICountry, IPhoneNumber } from './autocomplete';
|
|
2
|
+
export interface IUser {
|
|
3
|
+
uid: string;
|
|
4
|
+
is_full_signed: boolean;
|
|
5
|
+
is_demo: boolean;
|
|
6
|
+
type_cabinet_code: string;
|
|
7
|
+
type_cabinet: string;
|
|
8
|
+
user_type_code: string;
|
|
9
|
+
user_type: string;
|
|
10
|
+
status_code: string;
|
|
11
|
+
status: string;
|
|
12
|
+
username: string;
|
|
13
|
+
email: string;
|
|
14
|
+
currency: IUserCurrency;
|
|
15
|
+
language: IUserLanguage;
|
|
16
|
+
is_employee: boolean;
|
|
17
|
+
two_factory: boolean;
|
|
18
|
+
type_factory: null;
|
|
19
|
+
white_list: unknown[];
|
|
20
|
+
is_single: boolean;
|
|
21
|
+
is_learn: boolean;
|
|
22
|
+
created_at: string;
|
|
23
|
+
company_info: ICompanyInfo;
|
|
24
|
+
bank_details: IBankDetails;
|
|
25
|
+
physical_data: Record<string, unknown>;
|
|
26
|
+
contacts: IContactItem[];
|
|
27
|
+
profile_image: string;
|
|
28
|
+
id?: number;
|
|
29
|
+
is_active?: boolean;
|
|
30
|
+
allow_signin?: boolean;
|
|
31
|
+
staff: IStaffInfo;
|
|
32
|
+
parent?: {
|
|
33
|
+
uid: string;
|
|
34
|
+
email: string;
|
|
35
|
+
type_cabinet: string;
|
|
36
|
+
user_type: string;
|
|
37
|
+
currency: IUserCurrency;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
export interface IStaffInfo {
|
|
41
|
+
firstname: string;
|
|
42
|
+
lastname: string;
|
|
43
|
+
patronymic: string;
|
|
44
|
+
birthday: null;
|
|
45
|
+
passport_type: 'NP';
|
|
46
|
+
passport_number: string;
|
|
47
|
+
passport_pinfl: string;
|
|
48
|
+
passport_expired: null;
|
|
49
|
+
passport_issue: null;
|
|
50
|
+
country: ICountry;
|
|
51
|
+
city: ICity;
|
|
52
|
+
address: string;
|
|
53
|
+
postcode: null;
|
|
54
|
+
phone: IPhoneNumber;
|
|
55
|
+
additional_phone: IPhoneNumber;
|
|
56
|
+
additional_email: string;
|
|
57
|
+
gender: null;
|
|
58
|
+
role: {
|
|
59
|
+
uuid: string;
|
|
60
|
+
name: string;
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
export interface IUserCurrency {
|
|
64
|
+
code: string;
|
|
65
|
+
name: string;
|
|
66
|
+
}
|
|
67
|
+
export interface IUserLanguage {
|
|
68
|
+
name: string;
|
|
69
|
+
iso_code: string;
|
|
70
|
+
iso_code_2: string;
|
|
71
|
+
}
|
|
72
|
+
export interface IContactItem {
|
|
73
|
+
role: string;
|
|
74
|
+
email: string;
|
|
75
|
+
phone: IPhoneNumber;
|
|
76
|
+
full_name: string;
|
|
77
|
+
social_contact: null | string;
|
|
78
|
+
additional_emails: null | string;
|
|
79
|
+
}
|
|
80
|
+
export interface IBankDetails {
|
|
81
|
+
name: string;
|
|
82
|
+
bic_id: null | string;
|
|
83
|
+
receiver_invoice: null | string;
|
|
84
|
+
correspondent_account: null | string;
|
|
85
|
+
mfo_number: string;
|
|
86
|
+
okpo_number: null | number;
|
|
87
|
+
accountable: null | string;
|
|
88
|
+
}
|
|
89
|
+
export interface ICompanyInfo {
|
|
90
|
+
entity_type: string;
|
|
91
|
+
name: string;
|
|
92
|
+
name_int: null | string;
|
|
93
|
+
email: string;
|
|
94
|
+
phone: IPhoneNumber;
|
|
95
|
+
country: ICountry;
|
|
96
|
+
city: ICity;
|
|
97
|
+
address: string;
|
|
98
|
+
postcode: null | string;
|
|
99
|
+
stir_number: string;
|
|
100
|
+
kpp_number: null | number;
|
|
101
|
+
orgn_number: null | number;
|
|
102
|
+
director_name: null | string;
|
|
103
|
+
phys_country: null | ICountry;
|
|
104
|
+
phys_city: null | ICity;
|
|
105
|
+
phys_address: null | string;
|
|
106
|
+
phys_postcode: null | string;
|
|
107
|
+
website: null | string;
|
|
108
|
+
additional_email: null | string;
|
|
109
|
+
additional_phone: null | IPhoneNumber;
|
|
110
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function catcher<T, A extends unknown[] = unknown[]>(cb: (...args: A) => Promise<T>, error?: (err: Error) => void): (...args: A) => Promise<T | undefined>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function padStart(num: number, length?: number): string;
|
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@g-gts/ui",
|
|
3
|
+
"version": "1.5.12",
|
|
4
|
+
"description": "GTS UI component library",
|
|
5
|
+
"main": "dist/gts-ui.es.js",
|
|
6
|
+
"module": "dist/gts-ui.es.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"author": "Mamatov Umar",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/MamatovUmar/gts-ui.git"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/gts-ui.es.js",
|
|
19
|
+
"require": "./dist/gts-ui.umd.js"
|
|
20
|
+
},
|
|
21
|
+
"./styles": "./dist/gts-ui.css"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"moment": "^2.30.1",
|
|
25
|
+
"primevue": "^3.51.0",
|
|
26
|
+
"vue": "^3.5.0",
|
|
27
|
+
"vue-router": "^4.4.5"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"src/assets/icomoon"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "vite build",
|
|
36
|
+
"build-storybook": "storybook build",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"build-only": "vite build",
|
|
39
|
+
"type-check": "vue-tsc --build --force",
|
|
40
|
+
"lint": "eslint . --fix",
|
|
41
|
+
"lib": "storybook dev -p 6006",
|
|
42
|
+
"prepublishOnly": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
46
|
+
"@storybook/addon-essentials": "^8.4.5",
|
|
47
|
+
"@storybook/addon-interactions": "^8.4.5",
|
|
48
|
+
"@storybook/addon-onboarding": "^8.4.5",
|
|
49
|
+
"@storybook/addon-themes": "^8.4.7",
|
|
50
|
+
"@storybook/blocks": "^8.4.5",
|
|
51
|
+
"@storybook/test": "^8.4.5",
|
|
52
|
+
"@storybook/vue3": "^8.4.5",
|
|
53
|
+
"@storybook/vue3-vite": "^8.4.5",
|
|
54
|
+
"@tsconfig/node22": "^22.0.0",
|
|
55
|
+
"@types/node": "^22.9.0",
|
|
56
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
57
|
+
"@vue/eslint-config-typescript": "^14.1.3",
|
|
58
|
+
"@vue/tsconfig": "^0.5.1",
|
|
59
|
+
"eslint": "^9.14.0",
|
|
60
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
61
|
+
"eslint-plugin-vue": "^9.30.0",
|
|
62
|
+
"moment": "^2.30.1",
|
|
63
|
+
"npm-run-all2": "^7.0.1",
|
|
64
|
+
"prettier": "^3.4.2",
|
|
65
|
+
"primevue": "^3.51.0",
|
|
66
|
+
"sass": "^1.81.0",
|
|
67
|
+
"storybook": "^8.4.5",
|
|
68
|
+
"typescript": "~5.6.3",
|
|
69
|
+
"vite": "^5.4.10",
|
|
70
|
+
"vite-plugin-dts": "^4.3.0",
|
|
71
|
+
"vite-plugin-vue-devtools": "^7.5.4",
|
|
72
|
+
"vue": "^3.5.13",
|
|
73
|
+
"vue-router": "^4.4.5",
|
|
74
|
+
"vue-tsc": "^2.1.10"
|
|
75
|
+
},
|
|
76
|
+
"eslintConfig": {
|
|
77
|
+
"extends": [
|
|
78
|
+
"plugin:storybook/recommended"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"publishConfig": {
|
|
82
|
+
"access": "public"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
Binary file
|