bonkers-ui 1.0.2 → 1.0.3
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
CHANGED
|
@@ -26,7 +26,7 @@ This template should help get you started developing with Vue 3 and TypeScript i
|
|
|
26
26
|
- After you ready to push just `merge`(not `rebase`) develop to current branch
|
|
27
27
|
- Fix merge conflicts if you have
|
|
28
28
|
- Next create pull request to develop (you can do squash when merging)
|
|
29
|
-
- After pull request is merged to develop you can see it in staging [
|
|
29
|
+
- After pull request is merged to develop you can see it in staging [https://bonkers-ie.github.io/bonkers-ui](https://bonkers-ie.github.io/bonkers-ui/?path=/story/example-introduction--page)
|
|
30
30
|
- Only after test staging you can create merge request from `develop` to `master`
|
|
31
31
|
- After merge to master patch version will up x.x.^x and you can use this version in package
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bonkers-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"storybook": "start-storybook -p 6006",
|
|
6
6
|
"build-storybook": "build-storybook",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"@storybook/builder-vite": "^0.1.36",
|
|
29
29
|
"@storybook/vue3": "^6.5.9",
|
|
30
30
|
"@types/jest": "^28.1.3",
|
|
31
|
-
"@types/uuid": "^8.3.4",
|
|
32
31
|
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
33
32
|
"@typescript-eslint/parser": "^5.29.0",
|
|
34
33
|
"@vitejs/plugin-vue": "^2.3.3",
|
|
@@ -77,7 +76,8 @@
|
|
|
77
76
|
},
|
|
78
77
|
"lint-staged": {
|
|
79
78
|
"*.{ts,tsx,vue}": [
|
|
80
|
-
"eslint --fix"
|
|
79
|
+
"eslint --fix",
|
|
80
|
+
"bash -c 'yarn typecheck'"
|
|
81
81
|
],
|
|
82
82
|
"*.{css,vue,tsx}": "stylelint --fix"
|
|
83
83
|
},
|
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
<button
|
|
3
3
|
class="ui-card-cta outline-0 border border-secondary-alt-500 rounded-2xl p-sm shadow-m hover:border-secondary-700 focus:shadow-border-primary active:bg-secondary-alt-200 disabled:bg-secondary-alt-200"
|
|
4
4
|
:disabled="disabled"
|
|
5
|
-
:class="[!fullWidth && 'ui-card-cta_cropped']"
|
|
5
|
+
:class="[!fullWidth && 'ui-card-cta_cropped', className]"
|
|
6
6
|
>
|
|
7
7
|
<span
|
|
8
8
|
class="ui-card-cta__wrapper grid gap-sm items-center"
|
|
9
9
|
:class="[
|
|
10
10
|
invertOrder && 'ui-card-cta_inverted',
|
|
11
|
-
className
|
|
12
11
|
]"
|
|
13
12
|
>
|
|
14
13
|
<slot name="icon" />
|