@policystudio/policy-studio-ui-vue 1.0.0

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.
@@ -0,0 +1,10 @@
1
+ module.exports = {
2
+ "stories": [
3
+ "../src/**/*.stories.mdx",
4
+ "../src/**/*.stories.@(js|jsx|ts|tsx)"
5
+ ],
6
+ "addons": [
7
+ "@storybook/addon-links",
8
+ "@storybook/addon-essentials"
9
+ ]
10
+ }
@@ -0,0 +1,11 @@
1
+ import '../src/assets/scss/tailwind.css'
2
+
3
+ export const parameters = {
4
+ actions: { argTypesRegex: "^on[A-Z].*" },
5
+ controls: {
6
+ matchers: {
7
+ color: /(background|color)$/i,
8
+ date: /Date$/,
9
+ },
10
+ },
11
+ }
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # UI library of Vue components with StoryBook
2
+
3
+ ### Run documentation
4
+ ```$ npm run storybook```
5
+
6
+ ### Instalation for use
7
+ ```$ npm i -S @explorer/explorer-ui```
8
+
9
+ ### Dependencias for use
10
+ - TaiwindCSS
11
+ - Material design icons
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@policystudio/policy-studio-ui-vue",
3
+ "version": "1.0.0",
4
+ "description": "Policy Studio UI",
5
+ "main": "src/index.js",
6
+ "author": "Policy Studio Team",
7
+ "url": "https://bitbucket.org/policy-studio/policy-studio-ui-vue",
8
+ "scripts": {
9
+ "storybook": "start-storybook -p 6006",
10
+ "build-storybook": "build-storybook",
11
+ "build:tailwind": "postcss src/assets/scss/base.scss -o src/assets/scss/tailwind.css"
12
+ },
13
+ "keywords": [
14
+ "vue",
15
+ "ui"
16
+ ],
17
+ "license": "MIT",
18
+ "devDependencies": {
19
+ "@babel/core": "^7.16.0",
20
+ "@storybook/addon-actions": "^6.3.12",
21
+ "@storybook/addon-essentials": "^6.3.12",
22
+ "@storybook/addon-links": "^6.3.12",
23
+ "@storybook/vue": "^6.3.12",
24
+ "autoprefixer": "^10.4.0",
25
+ "babel-loader": "^8.2.3",
26
+ "postcss": "^8.3.11",
27
+ "postcss-cli": "^9.0.2",
28
+ "tailwindcss": "^1.9.6",
29
+ "vue": "^2.6.14",
30
+ "vue-loader": "^15.9.8",
31
+ "vue-router": "^3.5.3",
32
+ "vue-template-compiler": "^2.6.14"
33
+ },
34
+ "dependencies": {}
35
+ }
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ autoprefixer: {},
5
+ },
6
+ }
@@ -0,0 +1,29 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+ @import url('https://fonts.googleapis.com/icon?family=Material+Icons');
5
+
6
+ .text-h1 {
7
+ font-size: 28;
8
+ line-height: 120%;
9
+ }
10
+ .text-h2 {
11
+ font-size: 24px;
12
+ line-height: 120%;
13
+ }
14
+ .text-h3 {
15
+ font-size: 22px;
16
+ line-height: 120%;
17
+ }
18
+ .text-h4 {
19
+ font-size: 20px;
20
+ line-height: 120%;
21
+ }
22
+ .text-h5 {
23
+ font-size: 18px;
24
+ line-height: 120%;
25
+ }
26
+ .text-h6 {
27
+ font-size: 17px;
28
+ line-height: 120%;
29
+ }