@albank/vue-ui-kit 1.2.0 → 2.0.0-mr.126-devops-90
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 +27 -20
- package/dist/aeb-ui-kit.cjs +2 -2
- package/dist/aeb-ui-kit.js +4667 -4694
- package/dist/aeb-ui-kit.umd.cjs +2 -2
- package/dist/components/Accordion/Accordion.vue.d.ts +6 -6
- package/dist/components/ActionBar/ActionBar.vue.d.ts +11 -8
- package/dist/components/Button/Button.vue.d.ts +12 -0
- package/dist/components/Checkbox/Checkbox.vue.d.ts +32 -29
- package/dist/components/CodeInput/CodeInput.vue.d.ts +10 -0
- package/dist/components/CreditItemCard/CreditItemCard.vue.d.ts +9 -6
- package/dist/components/DatePicker/DatePicker.vue.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.vue.d.ts +38 -33
- package/dist/components/FilterTags/FilterTag/FilterTag.vue.d.ts +15 -8
- package/dist/components/FilterTags/FilterTags.vue.d.ts +17 -11
- package/dist/components/Footer/Footer.types.d.ts +2 -2
- package/dist/components/Footer/Footer.vue.d.ts +1 -3
- package/dist/components/Footer/FooterBottom/FooterBottom.vue.d.ts +7 -7
- package/dist/components/Footer/FooterMenu/FooterMenu.vue.d.ts +8 -8
- package/dist/components/Footer/FooterTop/FooterTop.vue.d.ts +7 -6
- package/dist/components/FormField/FormField.vue.d.ts +22 -12
- package/dist/components/FormField/Input.vue.d.ts +9 -7
- package/dist/components/FormField/Textarea.vue.d.ts +9 -7
- package/dist/components/Header/Header.vue.d.ts +10 -4
- package/dist/components/Header/Logo/Logo.vue.d.ts +3 -1
- package/dist/components/Heading/Breadcrumbs/Breadcrumbs.vue.d.ts +14 -7
- package/dist/components/Heading/Heading.vue.d.ts +6 -3
- package/dist/components/Heading/ProductTitle/ProductTitle.vue.d.ts +9 -5
- package/dist/components/Label/Label.vue.d.ts +3 -1
- package/dist/components/Modal/Modal.vue.d.ts +43 -31
- package/dist/components/NewsCard/NewsCard.vue.d.ts +6 -3
- package/dist/components/Notifications/Notifications.vue.d.ts +9 -8
- package/dist/components/Pagination/Pagination.vue.d.ts +1 -1
- package/dist/components/RadioButtons/RadioButtons.vue.d.ts +41 -24
- package/dist/components/Response/Response.vue.d.ts +27 -14
- package/dist/components/Search/Search.vue.d.ts +29 -25
- package/dist/components/Select/Select.vue.d.ts +32 -27
- package/dist/components/Sidebar/Sidebar.vue.d.ts +21 -15
- package/dist/components/Slider/Slider.vue.d.ts +40 -30
- package/dist/components/Spinner/Spinner.vue.d.ts +3 -1
- package/dist/components/Stepper/Stepper.vue.d.ts +12 -11
- package/dist/components/Stepper/StepperStep.vue.d.ts +10 -4
- package/dist/components/Table/Table.vue.d.ts +14 -14
- package/dist/components/TagTab/TagTab.vue.d.ts +14 -5
- package/dist/components/Tooltip/Tooltip.vue.d.ts +23 -21
- package/dist/components/Tooltip/TooltipComponent.vue.d.ts +10 -4
- package/dist/main.d.ts +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -85
package/package.json
CHANGED
|
@@ -1,85 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@albank/vue-ui-kit",
|
|
3
|
-
"version": "1.2.0",
|
|
4
|
-
"type": "module",
|
|
5
|
-
"files": [
|
|
6
|
-
"dist"
|
|
7
|
-
],
|
|
8
|
-
"main": "./dist/aeb-ui-kit.umd.cjs",
|
|
9
|
-
"module": "./dist/aeb-ui-kit.js",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": "./dist/aeb-ui-kit.js",
|
|
13
|
-
"require": "./dist/aeb-ui-kit.umd.cjs",
|
|
14
|
-
"types": "./dist/main.d.ts"
|
|
15
|
-
},
|
|
16
|
-
"./style.css": {
|
|
17
|
-
"import": "./dist/style.css",
|
|
18
|
-
"require": "./dist/style.css"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"types": "./dist/main.d.ts",
|
|
22
|
-
"scripts": {
|
|
23
|
-
"serve": "vite",
|
|
24
|
-
"build": "vite build",
|
|
25
|
-
"test": "vite test",
|
|
26
|
-
"lint": "vite lint",
|
|
27
|
-
"lint:styles": "stylelint ./src/**/*.scss",
|
|
28
|
-
"lint:styles:fix": "stylelint ./src/**/*.scss --fix",
|
|
29
|
-
"build-storybook": "vite build && storybook build",
|
|
30
|
-
"storybook": "storybook dev -p 6006",
|
|
31
|
-
"build-tokens": "node build-tokens.cjs"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@storybook/addon-actions": "^7.2.0",
|
|
35
|
-
"@storybook/addon-essentials": "^7.2.0",
|
|
36
|
-
"@storybook/addon-interactions": "^7.2.0",
|
|
37
|
-
"@storybook/addon-links": "^7.2.0",
|
|
38
|
-
"@storybook/addons": "^7.2.0",
|
|
39
|
-
"@storybook/testing-library": "^0.2.0",
|
|
40
|
-
"@storybook/theming": "^7.2.0",
|
|
41
|
-
"@storybook/vue3": "^7.2.0",
|
|
42
|
-
"@storybook/vue3-vite": "7.2.0",
|
|
43
|
-
"@tokens-studio/sd-transforms": "^0.10.3",
|
|
44
|
-
"@types/jest": "^27.0.1",
|
|
45
|
-
"@types/node": "^18.15.11",
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
47
|
-
"@typescript-eslint/parser": "^5.4.0",
|
|
48
|
-
"@vitejs/plugin-vue": "^4.1.0",
|
|
49
|
-
"@vue/eslint-config-typescript": "^9.1.0",
|
|
50
|
-
"@vue/test-utils": "^2.2.4",
|
|
51
|
-
"@vue/vue3-jest": "^27.0.0-alpha.1",
|
|
52
|
-
"babel-jest": "^27.0.6",
|
|
53
|
-
"babel-loader": "^8.3.0",
|
|
54
|
-
"code-tag": "^1.1.0",
|
|
55
|
-
"date-fns": "^2.29.3",
|
|
56
|
-
"eslint": "^7.32.0",
|
|
57
|
-
"eslint-config-prettier": "^8.5.0",
|
|
58
|
-
"eslint-plugin-prettier": "^4.2.1",
|
|
59
|
-
"eslint-plugin-vue": "^8.0.3",
|
|
60
|
-
"file-loader": "^6.2.0",
|
|
61
|
-
"jest": "^27.0.5",
|
|
62
|
-
"prettier": "^3.0.1",
|
|
63
|
-
"react": "^18.2.0",
|
|
64
|
-
"react-dom": "^18.2.0",
|
|
65
|
-
"sass": "^1.56.1",
|
|
66
|
-
"storybook": "7.2.0",
|
|
67
|
-
"style-dictionary": "^3.8.0",
|
|
68
|
-
"stylelint": "^15.10.2",
|
|
69
|
-
"stylelint-config-idiomatic-order": "^9.0.0",
|
|
70
|
-
"stylelint-config-recess-order": "^3.1.0",
|
|
71
|
-
"stylelint-config-sass-guidelines": "^10.0.0",
|
|
72
|
-
"stylelint-config-standard": "^34.0.0",
|
|
73
|
-
"stylelint-config-standard-scss": "^10.0.0",
|
|
74
|
-
"stylelint-order": "^6.0.3",
|
|
75
|
-
"stylelint-prettier": "^4.0.2",
|
|
76
|
-
"stylelint-scss": "^5.1.0",
|
|
77
|
-
"ts-jest": "^27.0.4",
|
|
78
|
-
"typescript": "~4.5.5",
|
|
79
|
-
"vite": "^4.2.1",
|
|
80
|
-
"vite-plugin-dts": "^2.1.0",
|
|
81
|
-
"vue": "^3.2.47",
|
|
82
|
-
"vue-imask": "^6.5.0-alpha.0",
|
|
83
|
-
"vue-tsc": "^1.2.0"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
1
|
+
{ "name": "@albank/vue-ui-kit", "version": "2.0.0-mr.126-devops-90", "type": "module", "files": [ "dist" ], "main": "./dist/aeb-ui-kit.umd.cjs", "module": "./dist/aeb-ui-kit.js", "exports": { ".": { "import": "./dist/aeb-ui-kit.js", "require": "./dist/aeb-ui-kit.umd.cjs", "types": "./dist/main.d.ts" }, "./style.css": { "import": "./dist/style.css", "require": "./dist/style.css" } }, "types": "./dist/main.d.ts", "scripts": { "serve": "vite", "build": "vite build", "test": "vitest", "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json src/", "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.json src/ --fix", "lint:styles": "stylelint ./src/**/*.scss", "lint:styles:fix": "stylelint ./src/styles/styles.scss ./src/styles/tokens.scss ./src/styles/typography.scss ./src/styles/variables.scss --fix", "prettier": "prettier ./src -c", "prettier:fix": "prettier ./src -w", "build-storybook": "vite build && storybook build", "storybook": "storybook dev -p 6006", "push": "npm publish", "push:beta": "npm publish --tag beta" }, "devDependencies": { "@storybook/addon-actions": "^7.6.8", "@storybook/addon-essentials": "^7.6.8", "@storybook/addon-interactions": "^7.6.8", "@storybook/addon-links": "^7.6.8", "@storybook/addons": "^7.6.8", "@storybook/testing-library": "^0.2.2", "@storybook/theming": "^7.6.8", "@storybook/vue3": "^7.6.8", "@storybook/vue3-vite": "7.6.8", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "@vitejs/plugin-vue": "^4.1.0", "@vue/eslint-config-typescript": "^9.1.0", "@vue/test-utils": "^2.2.4", "babel-loader": "^8.3.0", "code-tag": "^1.1.0", "date-fns": "^2.29.3", "eslint": "^7.32.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-vue": "^8.0.3", "file-loader": "^6.2.0", "happy-dom": "^13.3.8", "prettier": "^3.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", "sass": "^1.56.1", "storybook": "7.6.8", "storybook-dark-mode": "^3.0.3", "stylelint": "^15.10.2", "stylelint-config-recess-order": "^3.1.0", "stylelint-config-standard-scss": "^10.0.0", "stylelint-config-standard-vue": "^1.0.0", "stylelint-prettier": "^4.0.2", "typescript": "^5.2.2", "vite": "^4.2.1", "vite-plugin-dts": "^2.1.0", "vitest": "^1.2.2", "vue": "^3.2.47", "vue-imask": "^6.5.0-alpha.0", "vue-tsc": "^1.2.0" } }
|