@soroka282/migrant.ui-kit 0.0.21 → 0.0.23

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@soroka282/migrant.ui-kit",
3
3
  "private": false,
4
- "version": "0.0.21",
4
+ "version": "0.0.23",
5
5
  "type": "module",
6
6
  "main": "dist/migrant.ui-kit.umd.js",
7
7
  "module": "dist/migrant.ui-kit.es.js",
8
8
  "types": "dist/index.d.ts",
9
9
  "scripts": {
10
- "postinstall": "npx rimraf .husky/pre-commit && npx husky add .husky/commit-msg 'node verify-commit.js $1'",
10
+ "postinstall": "node scripts/postinstall.js",
11
11
  "dev": "vite",
12
12
  "build": "npm run ts && vite build",
13
13
  "preview": "vite preview",
@@ -22,7 +22,7 @@
22
22
  "lint": "npm run lint:eslint && npm run lint:stylelint",
23
23
  "lint:fix": "npm run lint:eslint:fix && npm run sort:css && npm run lint:stylelint:fix",
24
24
  "sort:css": "postcss src/**/*.{css,scss,vue} --config postcss-sorting.config.ts --replace",
25
- "commit-linter": "node verify-commit.js",
25
+ "commit-linter": "node scripts/verify-commit.js",
26
26
  "prepare": "husky install"
27
27
  },
28
28
  "pre-commit": [
@@ -10,6 +10,7 @@ export default {
10
10
  component: UIModalContainer,
11
11
  } as Meta<typeof UIModalContainer>;
12
12
 
13
+
13
14
  export const DefaultModal: StoryFn<typeof UIModalContainer> = (args) => ({
14
15
  components: { UIModal, UIButton, UIModalContainer },
15
16
  setup() {