Skip to content

Commit

Permalink
chore(release): v.0.8.11 (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek authored Jun 5, 2024
1 parent 404c5f6 commit cda731d
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [0.8.11](https://github.com/oruga-ui/oruga/compare/v0.8.10...v0.8.11) (2024-06-05)


### Bug Fixes

* **datepicker:** always validate programmatic date updates ([#927](https://github.com/oruga-ui/oruga/issues/927)) ([20ceedd](https://github.com/oruga-ui/oruga/commit/20ceedda2566211b5c790a12a687a01ce26380b5))
* **datepicker:** update focused date on editing directly ([#941](https://github.com/oruga-ui/oruga/issues/941)) ([1af13cf](https://github.com/oruga-ui/oruga/commit/1af13cf1cc97703aa58820d99b403791b554f9ba))
* **taginput:** solve defineModel macro array constrains ([#942](https://github.com/oruga-ui/oruga/issues/942)) ([404c5f6](https://github.com/oruga-ui/oruga/commit/404c5f6d1aa61cbbbe7dfce089bf203ffde4259e))


### Features

* **inputs:** detect constraint validation attribute changes ([#930](https://github.com/oruga-ui/oruga/issues/930)) ([4de3bd7](https://github.com/oruga-ui/oruga/commit/4de3bd74f512a3a1b07363b0cb062d6f2b5cc95d))



## [0.8.10](https://github.com/oruga-ui/oruga/compare/v0.8.9...v0.8.10) (2024-06-03)


Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "0.8.10",
"version": "0.8.11",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <tommsi20@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oruga-ui/docs-next",
"version": "0.8.10",
"version": "0.8.11",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <tommsi20@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/oruga/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oruga-ui/oruga-next",
"version": "0.8.10",
"version": "0.8.11",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <tommsi20@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/oruga/src/components/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ In addition, any CSS selector string or an actual DOM node can be used. */
/** Custom function to format a date into a string */
dateFormatter: (date: Date | Date[]) => string;
/** Custom function to parse a string into a date */
dateParser: (date: string) => Date;
dateParser: (date: string) => Date | Date[];
/** Date creator function, default is `new Date()` */
dateCreator: () => Date;
/** Define a list of weeks which can not be selected */
Expand Down

0 comments on commit cda731d

Please sign in to comment.