Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 4228bf8

Browse files
committed
update dev deps
1 parent e2c7fbc commit 4228bf8

18 files changed

+2699
-2048
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to `laravel-form-components` will be documented in this file
44

5+
## 5.0.0 - 2021-06-23
6+
### Added
7+
- Add Alpine.js v3 support
8+
9+
### Removed
10+
- Remove Alpine.js v2 support
11+
12+
### Updated
13+
- Update tailwind version to `2.2.2` in `laravel-form-components-styles` sub-package
14+
- Remove `postcss` in favor of tailwind cli in `laravel-form-components-styles` sub-package
15+
- Update dev dependencies
16+
517
## 4.0.8 - 2021-06-01
618
### Fixed
719
- Fix issue with date picker not always showing the currently selected date when opened

dist/form-components.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/form-components.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/advanced-usage/customizing-css.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Instead of importing/linking the pre-built `dist/styles.css` from the package, y
2323
> {note} If you choose this option, make sure you have the [required variants](#required-variants) included in your `tailwind.config.js` configuration.
2424
2525
## Option 2: Override Only Portions In Your CSS
26-
If you only want to tinker with certain apsects of the components but like to keep the CSS in sync with future package updates, nothing stops you from overriding only certain CSS rules with your own tweaks. Most DOM elements have their own custom class names.
26+
If you only want to tinker with certain aspects of the components but like to keep the CSS in sync with future package updates, nothing stops you from overriding only certain CSS rules with your own tweaks. Most DOM elements have their own custom class names.
2727

2828
Let's say your inputs aren't rounded, and you want to remove the border radius from them. To do that, you can write your own CSS for this class:
2929

@@ -32,6 +32,8 @@ Let's say your inputs aren't rounded, and you want to remove the border radius f
3232
...
3333

3434
@import '../../vendor/rawilk/laravel-form-components/resources/js/laravel-form-components-styles/dist/styles.css';
35+
/* or */
36+
@import '../../vendor/rawilk/laravel-form-components/resources/js/laravel-form-components-styles/dist/styles.min.css';
3537

3638
.form-text {
3739
@apply rounded-none;
@@ -153,5 +155,7 @@ in a `/* purgecss start ignore */`:
153155
```css
154156
/* purgecss start ignore */
155157
@import '../../vendor/rawilk/laravel-form-components/resources/js/laravel-form-components-styles/dist/styles.css';
158+
/* or */
159+
@import '../../vendor/rawilk/laravel-form-components/resources/js/laravel-form-components-styles/dist/styles.min.css';
156160
/* purgecss end ignore */
157161
```

docs/files/filepond.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Before using this component, we recommend familiarizing yourself with the FilePo
1010

1111
## Installation
1212

13-
While the `file-pond` component works out-of-the-box when you've [set the directive](/docs/laravel-form-components/v4/installation#directives),
13+
While the `file-pond` component works out-of-the-box when you've [set the directive](/docs/laravel-form-components/v5/installation#directives),
1414
we recommend that you install and compile the JavaScript libraries before you deploy to production:
1515

1616
- [Alpine.js](https://github.com/alpinejs/alpine) `^2.8`

docs/inputs/date-picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@ For more information on the callbacks available, please consult [the events api]
133133
Like the other inputs, the date picker can also have leading and trailing addons, however by default you cannot add them.
134134
To add leading addons, you must disable the toggle icon, and for trailing addons, you must set `clearable` to `false`.
135135

136-
See the [input documentation](/docs/laravel-form-components/v4/inputs/input#addons) for more information.
136+
See the [input documentation](/docs/laravel-form-components/v5/inputs/input#addons) for more information.

docs/inputs/email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ The most basic usage of the component is like this:
2020
By default an `email` type will be set for the input field as well as an `id` that allows it to be
2121
easily referenced by a `label` element.
2222

23-
Besides this, the email element behaves exactly the same as the [input component](/docs/laravel-form-components/v4/inputs/input).
23+
Besides this, the email element behaves exactly the same as the [input component](/docs/laravel-form-components/v5/inputs/input).

docs/inputs/input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ When there are errors for a field, the `aria-invalid` and `aria-describedby` att
5959
```
6060

6161
The actual error message won't be rendered from the input component itself, but it can be automatically rendered for you
62-
by wrapping the `<x-input />` component inside of a `<x-form-group />` component. Please refer to the [form-group documentation](/docs/laravel-form-components/v4/form/form-group#error-handling) for more information.
62+
by wrapping the `<x-input />` component inside of a `<x-form-group />` component. Please refer to the [form-group documentation](/docs/laravel-form-components/v5/form/form-group#error-handling) for more information.
6363

6464
The `aria-describedby` attribute takes the `name` attribute and appends `-error` to it, which will be the id given to the error message rendered by the `<x-form-group />` component. If you already have `aria-describedby` set on the input, the attribute
6565
value will be merged with the error attribute value.

docs/inputs/password.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ Like the other inputs, the password input can also have leading addons, but sinc
7171
includes a password toggle as a trailing icon addon, you are not able to add a trailing addon
7272
to the password input. If you need a trailing addon, you should use the input component instead.
7373

74-
See the [input documentation](/docs/laravel-form-components/v4/inputs/input#addons) for more information.
74+
See the [input documentation](/docs/laravel-form-components/v5/inputs/input#addons) for more information.

docs/inputs/switch-toggle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ for more info.
1212

1313
## Installation
1414

15-
While the `switch-toggle` component works out-of-the-box when you've [set the directive](/docs/laravel-form-components/v4/installation#directives),
15+
While the `switch-toggle` component works out-of-the-box when you've [set the directive](/docs/laravel-form-components/v5/installation#directives),
1616
we recommend that you install and compile the JavaScript libraries before you deploy to production:
1717

1818
- [Alpine.js](https://github.com/alpinejs/alpine) `^2.8`

0 commit comments

Comments
 (0)