@contactstudio/agent-lib
Advanced tools
Comparing version
{ | ||
"name": "@contactstudio/agent-lib", | ||
"version": "1.0.64", | ||
"version": "1.0.65", | ||
"main": "src/index.js", | ||
@@ -9,4 +9,5 @@ "author": "Christopher Gonçalves <christopher.goncalves@mindbe.com.br>", | ||
"serve": "vue-cli-service serve", | ||
"lint": "vue-cli-service lint", | ||
"test": "vitest" | ||
"build": "vue-cli-service build", | ||
"test": "vue-cli-service test:unit", | ||
"lint": "vue-cli-service lint" | ||
}, | ||
@@ -21,4 +22,2 @@ "dependencies": { | ||
"@babel/eslint-parser": "^7.12.16", | ||
"@vitejs/plugin-vue": "^3.1.0", | ||
"@vitest/coverage-c8": "^0.23.1", | ||
"@vue/cli-plugin-babel": "~5.0.0", | ||
@@ -29,4 +28,5 @@ "@vue/cli-plugin-eslint": "~5.0.0", | ||
"@vue/cli-service": "~5.0.0", | ||
"@vue/test-utils": "^2.0.2", | ||
"@vue/test-utils": "^2.0.0-0", | ||
"@vue/vue3-jest": "^27.0.0-alpha.1", | ||
"autoprefixer": "^10.4.10", | ||
"babel-jest": "^27.0.6", | ||
@@ -36,42 +36,7 @@ "eslint": "^7.32.0", | ||
"jest": "^27.0.5", | ||
"jsdom": "^20.0.0", | ||
"postcss": "^8.4.16", | ||
"sass": "^1.32.7", | ||
"sass-loader": "^12.0.0", | ||
"vitest": "^0.23.1" | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
"env": { | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/vue3-essential", | ||
"eslint:recommended" | ||
], | ||
"parserOptions": { | ||
"parser": "@babel/eslint-parser" | ||
}, | ||
"rules": {}, | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/__tests__/*.{j,t}s?(x)", | ||
"**/tests/unit/**/*.spec.{j,t}s?(x)" | ||
], | ||
"env": { | ||
"jest": true | ||
} | ||
} | ||
] | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not dead", | ||
"not ie 11" | ||
], | ||
"jest": { | ||
"preset": "@vue/cli-plugin-unit-jest" | ||
}, | ||
"description": "## Project setup ``` npm install ```" | ||
"tailwindcss": "^3.1.8" | ||
} | ||
} |
@@ -1,1 +0,29 @@ | ||
`npx tailwindcss -o ./src/css/tailwind.css --minify` | ||
# agent-tools | ||
## Project setup | ||
``` | ||
npm install | ||
``` | ||
### Compiles and hot-reloads for development | ||
``` | ||
npm run serve | ||
``` | ||
### Compiles and minifies for production | ||
``` | ||
npm run build | ||
``` | ||
### Run your unit tests | ||
``` | ||
npm run test:unit | ||
``` | ||
### Lints and fixes files | ||
``` | ||
npm run lint | ||
``` | ||
### Customize configuration | ||
See [Configuration Reference](https://cli.vuejs.org/config/). |
import "./css/index.css"; | ||
import Store from "./store"; | ||
import CsNav from "./components/CsNav.vue"; | ||
import CsAccordion from "./components/CsAccordion.vue"; | ||
import CsAccordionItem from "./components/CsAccordionItem.vue"; | ||
import CsBanner from "./components/CsBanner.vue"; | ||
export { Store, CsNav, CsAccordion, CsAccordionItem, CsBanner }; | ||
import AtomNav from "./components/Atom.Nav.vue"; | ||
export { Store, AtomNav }; |
/** @type {import('tailwindcss').Config} */ | ||
module.exports = { | ||
content: ["./src/**/*.{vue,js,ts,jsx,tsx}"], | ||
darkMode: "class", | ||
content: ["./src/components/*.vue"], | ||
theme: { | ||
colors: { | ||
primary: "#0cbcc6", | ||
light: "#e7fdfe", | ||
dark: "#293c3d", | ||
disabled: "#eeeeee", | ||
disabledLight: "#f8f8f8", | ||
disabledDark: "#aaaaaa", | ||
error: "#ff0000", | ||
errorLight: "#fff0f0", | ||
success: "#45d721", | ||
pause: "#ebcd41", | ||
active: "#ad59d2", | ||
attendance: "#3ea8ff", | ||
extend: { | ||
colors: { | ||
primary: { | ||
100: "#E4F3F4", | ||
200: "#C5E6E9", | ||
300: "#A1D9DD", | ||
400: "#72CBD1", | ||
500: "#0BBCC4", | ||
600: "#09A8AF", | ||
700: "#089197", | ||
800: "#06767B", | ||
900: "#045457", | ||
}, | ||
error: { | ||
100: "#F9E4E4", | ||
200: "#F3C7C7", | ||
300: "#ECA4A4", | ||
400: "#E67878", | ||
500: "#E02B2B", | ||
600: "#C82626", | ||
700: "#AD2121", | ||
800: "#8D1B1B", | ||
900: "#641313", | ||
}, | ||
warning: { | ||
100: "#FFF0E4", | ||
200: "#FFE0C5", | ||
300: "#FFCFA1", | ||
400: "#FFBC72", | ||
500: "#FFA800", | ||
600: "#E49600", | ||
700: "#C58200", | ||
800: "#A16A00", | ||
900: "#724B00", | ||
}, | ||
success: { | ||
100: "#E6F7E4", | ||
200: "#CAEFC6", | ||
300: "#A9E7A3", | ||
400: "#81DF75", | ||
500: "#45D621", | ||
600: "#3DC01D", | ||
700: "#35A619", | ||
800: "#2B8714", | ||
900: "#1E600E", | ||
}, | ||
}, | ||
}, | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
important: true, | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
18
-5.26%16
6.67%150
72.41%30
2900%11218
-20.29%1
Infinity%