fluency-v8-components 1.0.0 → 1.0.1
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 +30 -0
- package/dist/fluency-v8-components.es.js +11340 -8840
- package/dist/fluency-v8-components.umd.js +71 -50
- package/dist/index.css +1 -1
- package/package.json +5 -1
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# fluency-v8
|
|
2
|
+
Fluency Web Interface v8 Components
|
|
3
|
+
|
|
4
|
+
This are all the shared components used across Fluency Vue 3 UI
|
|
5
|
+
|
|
6
|
+
This package is published on npm.
|
|
7
|
+
https://www.npmjs.com/package/fluency-v8-components
|
|
8
|
+
|
|
9
|
+
## Publish the package to npm
|
|
10
|
+
- build the package
|
|
11
|
+
npm run build
|
|
12
|
+
- publish to npm
|
|
13
|
+
npm login
|
|
14
|
+
npm publish
|
|
15
|
+
|
|
16
|
+
## Testing the package locally
|
|
17
|
+
- build the package
|
|
18
|
+
npm run build
|
|
19
|
+
- pack it into a tar file
|
|
20
|
+
npm pack
|
|
21
|
+
- install the packed file in your project
|
|
22
|
+
npm install ../fluency-v8-components/fluency-v8-components-1.0.0.tgz
|
|
23
|
+
|
|
24
|
+
## Using the package
|
|
25
|
+
- import the css in main.ts
|
|
26
|
+
import "fluency-v8-components/dist/index.css";
|
|
27
|
+
- import the components in the file as followed:
|
|
28
|
+
import { GreyInput } from "fluency-v8-components"
|
|
29
|
+
|
|
30
|
+
|