Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/form-builder.css

Large diffs are not rendered by default.

15,721 changes: 8,145 additions & 7,576 deletions dist/form-builder.es.js

Large diffs are not rendered by default.

41 changes: 22 additions & 19 deletions dist/form-builder.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"name": "@dcodegroup-au/form-builder",
"author": "DCODE GROUP",
"keywords": [],
"version": "3.2.4",
"version": "3.2.5",
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.10",
Expand Down
4,668 changes: 2,313 additions & 2,355 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@tailwind utilities;

.input-base {
@apply text-base block w-full rounded-lg border border-gray-300 !border-double placeholder:text-gray-400 focus:border-sky-300 focus:ring focus:ring-sky-200 focus:ring-opacity-50 py-2 px-3;
@apply text-base block w-full rounded-lg border border-gray-300 !border-double placeholder:text-gray-400 focus:border-sky-300 focus:ring focus:ring-sky-200/50 py-2 px-3;
}
.form-builder-container {
@apply relative;
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ module.exports = {
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};
};
6 changes: 3 additions & 3 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export default defineConfig({
css: {
postcss: {
plugins: [
require('tailwindcss')('./tailwind.config.js'),
require('autoprefixer'),
require('postcss-nested')
require('tailwindcss'),
require('postcss-nested'),
require('autoprefixer')
],
},
},
Expand Down
Loading