@huntflow/ui 0.0.2 → 0.0.4

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
@@ -19,8 +19,14 @@ npm install @huntkit
19
19
 
20
20
  ## Пример использования
21
21
  ```javascript
22
+
23
+ import '@huntkit/ui/styles.css'
24
+
22
25
  import { Button } from '@huntkit/ui'
23
- import { UserIcon } from '@huntkit/icons'
26
+
27
+ import { UserIcon } from '@huntkit/icons/12'
28
+ import { ArrowLeft } from '@huntkit/icons/16'
29
+
24
30
  import { formatDate } from '@huntkit/utils'
25
31
  ```
26
32
 
package/package.json CHANGED
@@ -2,24 +2,25 @@
2
2
  "name": "@huntflow/ui",
3
3
  "description": "HuntFlow UiKit, icons, utils library",
4
4
  "private": false,
5
- "version": "0.0.2",
5
+ "version": "0.0.4",
6
6
  "author": {
7
7
  "name": "HuntFlow Developer",
8
- "nickname": "huntflow",
8
+ "nickname": "developer",
9
9
  "email": "developer@huntflow.ru",
10
- "github": "https://github.com/huntflow/hunt-ui"
10
+ "github": "https://github.com/huntflow/uikit"
11
11
  },
12
12
  "scripts": {
13
13
  "dev": "vite",
14
14
  "build": "vue-tsc -b && vite build",
15
- "preview": "vite preview"
15
+ "preview": "vite preview",
16
+ "publish": "npm version patch && npm publish"
16
17
  },
17
18
  "publishConfig": {
18
19
  "access": "public"
19
20
  },
20
21
  "type": "module",
21
- "main": "./dist/hunt-ui.umd.js",
22
- "module": "./dist/hunt-ui.es.js",
22
+ "main": "./dist/ui.umd.js",
23
+ "module": "./dist/ui.es.js",
23
24
  "typings": "./dist/index.d.ts",
24
25
  "styles": "./dist/style.css",
25
26
  "files": [
@@ -27,8 +28,8 @@
27
28
  ],
28
29
  "exports": {
29
30
  ".": {
30
- "import": "./dist/hunt-ui.es.js",
31
- "require": "./dist/hunt-ui.umd.js",
31
+ "import": "./dist/ui.es.js",
32
+ "require": "./dist/ui.umd.js",
32
33
  "types": "./dist/index.d.ts"
33
34
  },
34
35
  "./global.css": "./dist/style.css"
@@ -44,10 +45,10 @@
44
45
  "license": "MIT",
45
46
  "repository": {
46
47
  "type": "git",
47
- "url": "https://github.com/huntflow/hunt-ui.git"
48
+ "url": "https://github.com/huntflow/uikit"
48
49
  },
49
50
  "bugs": {
50
- "url": "https://github.com/huntflow/hunt-ui/issues"
51
+ "url": "https://github.com/huntflow/uikit/issues"
51
52
  },
52
53
  "homepage": "https://huntflow.ru/",
53
54
  "dependencies": {
@@ -62,4 +63,4 @@
62
63
  "vite-plugin-dts": "^4.3.0",
63
64
  "vue-tsc": "^2.1.8"
64
65
  }
65
- }
66
+ }
File without changes
File without changes