@g-gts/ui 1.5.41 → 1.5.42
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/dist/components/airlines/EasyAirlineAutocomplete.vue.d.ts +7 -5
- package/dist/components/airports/EasyAirportAutocomplete.vue.d.ts +7 -5
- package/dist/components/avatar/EasyAvatar.vue.d.ts +3 -12
- package/dist/components/background/EasyBackground.vue.d.ts +3 -4
- package/dist/components/breadcrumb/EasyBreadcrumb.vue.d.ts +3 -6
- package/dist/components/button/EasyButton.vue.d.ts +2 -1
- package/dist/components/checkbox/EasyCheckbox.vue.d.ts +7 -6
- package/dist/components/city/CityAutocomplete.vue.d.ts +7 -5
- package/dist/components/country/CountryAutocomplete.vue.d.ts +7 -5
- package/dist/components/currency/CurrencyAutocomplete.vue.d.ts +7 -5
- package/dist/components/datapicker/EasyDatePicker.vue.d.ts +4 -4
- package/dist/components/document/DocumentAutocomplete.vue.d.ts +7 -5
- package/dist/components/dropdown/EasyDropdown.vue.d.ts +13 -14
- package/dist/components/dropdown-select/EasyDropdownSelect.vue.d.ts +7 -6
- package/dist/components/header/language-currency-dropdown/EasyLanguageCurrencyDropdown.vue.d.ts +7 -7
- package/dist/components/header/notification/EasyNoNotification.vue.d.ts +3 -5
- package/dist/components/header/notification/EasyNotificationDropdown.vue.d.ts +3 -6
- package/dist/components/header/notification/EasyNotificationItem.vue.d.ts +1 -1
- package/dist/components/header/profile/ProfileDropdown.vue.d.ts +3 -5
- package/dist/components/icon/EasyIcon.vue.d.ts +3 -2
- package/dist/components/input/EasyInput.vue.d.ts +4 -4
- package/dist/components/input-number/EasyInputNumber.vue.d.ts +4 -4
- package/dist/components/layout/EasyLayout.vue.d.ts +11 -16
- package/dist/components/loader/EasyLoader.vue.d.ts +4 -8
- package/dist/components/modal/EasyConfirmModal.vue.d.ts +4 -4
- package/dist/components/modal/EasyModal.vue.d.ts +6 -3
- package/dist/components/multiselect/EasyMultiSelect.vue.d.ts +5 -5
- package/dist/components/pagination/EasyPagination.vue.d.ts +7 -7
- package/dist/components/payment/PaymentModal.vue.d.ts +4 -4
- package/dist/components/phone/EasyPhoneNumber.vue.d.ts +5 -5
- package/dist/components/popover/EasyPopover.vue.d.ts +3 -2
- package/dist/components/radio/EasyRadioButton.vue.d.ts +7 -6
- package/dist/components/section-message/EasySectionMessage.vue.d.ts +3 -2
- package/dist/components/select/EasySelect.vue.d.ts +7 -6
- package/dist/components/services-tab/ServicesTab.vue.d.ts +5 -5
- package/dist/components/sidebar/NavigationSidebar.vue.d.ts +5 -5
- package/dist/components/sidebar/NavigationSidebarDropdown.vue.d.ts +3 -6
- package/dist/components/sidebar/NavigationSidebarItem.vue.d.ts +8 -9
- package/dist/components/switchtoggle/EasySwitchToggle.vue.d.ts +4 -2
- package/dist/components/tabs/EasyTabs.vue.d.ts +7 -5
- package/dist/components/textarea/EasyTextarea.vue.d.ts +4 -4
- package/dist/composables/usePathBranding.d.ts +23 -1
- package/dist/gts-ui.es.js +3711 -3623
- package/dist/gts-ui.umd.js +62 -46
- package/package.json +84 -84
package/package.json
CHANGED
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@g-gts/ui",
|
|
3
|
-
"version": "1.5.
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@g-gts/ui",
|
|
3
|
+
"version": "1.5.42",
|
|
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
|
+
}
|