@poni/adjutant-ui 0.0.115 → 0.0.117
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 +3 -12
- package/dist/adjutant-ui.css +1 -1
- package/dist/components/AdjCheckbox/AdjCheckbox.vue.d.ts +1 -1
- package/dist/components/AdjFilterSelect/AdjFilterSelect.vue.d.ts +1 -1
- package/dist/components/AdjFilters/AdjFilters.vue.d.ts +2 -2
- package/dist/components/AdjFiltersMobile/AdjFiltersMobile.vue.d.ts +2 -2
- package/dist/components/AdjRadio/AdjRadio.vue.d.ts +1 -1
- package/dist/components/AdjSelect/AdjSelect.vue.d.ts +1 -1
- package/dist/components/AdjSelectImage/AdjSelectImage.vue.d.ts +1 -1
- package/dist/components/AdjSelectModern/AdjSelectModern.vue.d.ts +1 -1
- package/dist/components/AdjTabs/AdjTabs.vue.d.ts +1 -1
- package/dist/components/AdjUploadFile/AdjUploadFile.vue.d.ts +3 -1
- package/dist/components.cjs +1 -1
- package/dist/components.js +325 -324
- package/dist/favicon-adj.svg +0 -0
- package/dist/logo.svg +0 -0
- package/dist/plugin/types.d.ts +11 -11
- package/dist/{components/AdjFilters → types}/IAdjFiltersItem.d.ts +2 -2
- package/dist/{components/AdjFiltersMobile → types}/IAdjFiltersMobileItem.d.ts +2 -2
- package/dist/vars.scss +0 -0
- package/package.json +16 -13
- /package/dist/{components/AdjCheckbox → types}/IAdjCheckboxItem.d.ts +0 -0
- /package/dist/{components/AdjFilterSelect → types}/IAdjFilterSelectItem.d.ts +0 -0
- /package/dist/{components/AdjRadio → types}/IAdjRadioItem.d.ts +0 -0
- /package/dist/{components/AdjSelectImage → types}/IAdjSelectImageItem.d.ts +0 -0
- /package/dist/{components/AdjSelect → types}/IAdjSelectItem.d.ts +0 -0
- /package/dist/{components/AdjSelectModern → types}/IAdjSelectModernItem.d.ts +0 -0
- /package/dist/{components/AdjTabs → types}/IAdjTabsItem.d.ts +0 -0
- /package/dist/{components/AdjUploadFile → types}/IAdjUploadFileItem.d.ts +0 -0
package/dist/favicon-adj.svg
CHANGED
|
File without changes
|
package/dist/logo.svg
CHANGED
|
File without changes
|
package/dist/plugin/types.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { IAdjCheckboxItem } from '../
|
|
2
|
-
import { IAdjFilterSelectItem } from '../
|
|
3
|
-
import { IAdjFiltersItem } from '../
|
|
4
|
-
import { IAdjFiltersMobileItem } from '../
|
|
5
|
-
import { IAdjRadioItem } from '../
|
|
6
|
-
import { IAdjSelectImageItem } from '../
|
|
7
|
-
import { IAdjSelectItem } from '../
|
|
8
|
-
import { IAdjSelectModernItem } from '../
|
|
9
|
-
import { IAdjTabsItem } from '../
|
|
10
|
-
import { IAdjUploadFileItem } from '../
|
|
11
|
-
export { IAdjCheckboxItem, IAdjFilterSelectItem, IAdjFiltersItem, IAdjFiltersMobileItem, IAdjRadioItem, IAdjSelectImageItem, IAdjSelectItem, IAdjSelectModernItem, IAdjTabsItem, IAdjUploadFileItem, };
|
|
1
|
+
import { IAdjCheckboxItem } from '../types/IAdjCheckboxItem';
|
|
2
|
+
import { IAdjFilterSelectItem } from '../types/IAdjFilterSelectItem';
|
|
3
|
+
import { IAdjFiltersItem } from '../types/IAdjFiltersItem';
|
|
4
|
+
import { IAdjFiltersMobileItem } from '../types/IAdjFiltersMobileItem';
|
|
5
|
+
import { IAdjRadioItem } from '../types/IAdjRadioItem';
|
|
6
|
+
import { IAdjSelectImageItem } from '../types/IAdjSelectImageItem';
|
|
7
|
+
import { IAdjSelectItem } from '../types/IAdjSelectItem';
|
|
8
|
+
import { IAdjSelectModernItem } from '../types/IAdjSelectModernItem';
|
|
9
|
+
import { IAdjTabsItem } from '../types/IAdjTabsItem';
|
|
10
|
+
import { IAdjUploadFileItem } from '../types/IAdjUploadFileItem';
|
|
11
|
+
export type { IAdjCheckboxItem, IAdjFilterSelectItem, IAdjFiltersItem, IAdjFiltersMobileItem, IAdjRadioItem, IAdjSelectImageItem, IAdjSelectItem, IAdjSelectModernItem, IAdjTabsItem, IAdjUploadFileItem, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IAdjFilterSelectItem } from '
|
|
2
|
-
import { THorizontalPosition } from '
|
|
1
|
+
import { IAdjFilterSelectItem } from './IAdjFilterSelectItem';
|
|
2
|
+
import { THorizontalPosition } from '../misc/types';
|
|
3
3
|
export interface IAdjFiltersItem {
|
|
4
4
|
/** Название/заголовок */
|
|
5
5
|
title: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IAdjFilterSelectItem } from '
|
|
2
|
-
import { THorizontalPosition } from '
|
|
1
|
+
import { IAdjFilterSelectItem } from './IAdjFilterSelectItem';
|
|
2
|
+
import { THorizontalPosition } from '../misc/types';
|
|
3
3
|
export interface IAdjFiltersMobileItem {
|
|
4
4
|
/** Название/заголовок */
|
|
5
5
|
title: string;
|
package/dist/vars.scss
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poni/adjutant-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.117",
|
|
4
|
+
"private": false,
|
|
4
5
|
"type": "module",
|
|
5
6
|
"main": "./dist/index.cjs",
|
|
6
7
|
"module": "./dist/index.js",
|
|
@@ -33,24 +34,24 @@
|
|
|
33
34
|
"scripts": {
|
|
34
35
|
"dev": "storybook dev -p 5555 --no-open",
|
|
35
36
|
"build": "vite build",
|
|
36
|
-
"pub": "vite build && npm publish --access public",
|
|
37
|
-
"up": "ncu --target minor -u -x typescript && ncu --target patch -u && npm i",
|
|
38
|
-
"up-major": "ncu -u && npm i",
|
|
39
|
-
"up-minor": "ncu --target minor -u && npm i",
|
|
40
|
-
"up-patch": "ncu --target patch -u && npm i",
|
|
41
37
|
"build-sb": "storybook build",
|
|
38
|
+
"pub": "vite build && npm publish --access public",
|
|
39
|
+
"preview": "vite preview",
|
|
42
40
|
"check": "run-s format lint type-check",
|
|
41
|
+
"type-check": "vue-tsc --build",
|
|
42
|
+
"lint": "eslint . --fix",
|
|
43
43
|
"format": "prettier --write src/",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
44
|
+
"up": "ncu --target minor -u && npm i",
|
|
45
|
+
"up-major": "ncu -u && npm i",
|
|
46
|
+
"up-minor": "ncu --target minor -u && npm i",
|
|
47
|
+
"up-patch": "ncu --target patch -u && npm i"
|
|
46
48
|
},
|
|
47
49
|
"peerDependencies": {
|
|
48
|
-
"@vueuse/core": ">=
|
|
50
|
+
"@vueuse/core": ">=12",
|
|
49
51
|
"vue": ">=3"
|
|
50
52
|
},
|
|
51
53
|
"devDependencies": {
|
|
52
54
|
"@chromatic-com/storybook": "^3.2.3",
|
|
53
|
-
"@rushstack/eslint-patch": "^1.10.4",
|
|
54
55
|
"@storybook/addon-essentials": "^8.4.7",
|
|
55
56
|
"@storybook/addon-interactions": "^8.4.7",
|
|
56
57
|
"@storybook/addon-links": "^8.4.7",
|
|
@@ -58,13 +59,14 @@
|
|
|
58
59
|
"@storybook/test": "^8.4.7",
|
|
59
60
|
"@storybook/vue3": "^8.4.7",
|
|
60
61
|
"@storybook/vue3-vite": "^8.4.7",
|
|
62
|
+
"@tsconfig/node22": "^22.0.0",
|
|
61
63
|
"@types/node": "^22.10.5",
|
|
62
64
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
63
|
-
"@vue/eslint-config-prettier": "^
|
|
64
|
-
"@vue/eslint-config-typescript": "^
|
|
65
|
+
"@vue/eslint-config-prettier": "^10.1.0",
|
|
66
|
+
"@vue/eslint-config-typescript": "^14.2.0",
|
|
65
67
|
"@vue/tsconfig": "^0.7.0",
|
|
66
68
|
"@vueuse/core": "^12.3.0",
|
|
67
|
-
"eslint": "^
|
|
69
|
+
"eslint": "^9.17.0",
|
|
68
70
|
"eslint-plugin-storybook": "^0.11.2",
|
|
69
71
|
"eslint-plugin-vue": "^9.32.0",
|
|
70
72
|
"npm-run-all2": "^7.0.2",
|
|
@@ -74,6 +76,7 @@
|
|
|
74
76
|
"typescript": "^5.7.2",
|
|
75
77
|
"vite": "^6.0.7",
|
|
76
78
|
"vite-plugin-dts": "^4.4.0",
|
|
79
|
+
"vite-plugin-vue-devtools": "^7.6.8",
|
|
77
80
|
"vue": "^3.5.13",
|
|
78
81
|
"vue-tsc": "^2.2.0"
|
|
79
82
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|