Skip to content

Commit

Permalink
Merge pull request #7353 from ProcessMaker/feature/FOUR-19004
Browse files Browse the repository at this point in the history
FOUR-19004:  Create a NEW VIEW for cases Part Counters
  • Loading branch information
pmPaulis authored Sep 11, 2024
2 parents 0b21f85 + dc1adfe commit f8941cd
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.23.9",
"accounting": "^0.4.1",
"autoprefixer": "^10.4.20",
"babel-plugin-istanbul": "^6.1.1",
"chartjs-plugin-colorschemes": "^0.4.0",
"cross-env": "^7.0.3",
Expand All @@ -38,9 +39,11 @@
"laravel-mix": "^6.0.49",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"postcss": "^8.4.45",
"resolve-url-loader": "^3.1.2",
"sass": "^1.77.4",
"sass-loader": "^12.6.0",
"tailwindcss": "^3.4.10",
"vue-loader": "^15.10.0"
},
"dependencies": {
Expand All @@ -60,7 +63,6 @@
"@processmaker/vue-form-elements": "0.59.0",
"@processmaker/vue-multiselect": "2.3.0",
"@tinymce/tinymce-vue": "2.0.0",
"autoprefixer": "10.4.5",
"axios": "^0.27.2",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.18.1",
Expand Down
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
9 changes: 9 additions & 0 deletions resources/sass/tailwind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
a{
color: #0872C2;
}
}
19 changes: 19 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: "tw-",
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {},
},
plugins: [],
safelist: [
{
pattern: /(bg|outline|border|text)-(gray|purple|blue|amber|green|gray)-(100|200|300|400|500)/,
variants: ["hover"],
},
],
};
3 changes: 3 additions & 0 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ mix
.sass("resources/sass/sidebar/sidebar.scss", "public/css")
.sass("resources/sass/app.scss", "public/css")
.sass("resources/sass/admin/queues.scss", "public/css/admin")
.postCss("resources/sass/tailwind.css", "public/css", [
require("tailwindcss"),
])
.version();

mix.vue({ version: 2 });

0 comments on commit f8941cd

Please sign in to comment.