@ptlm-azulejo/datepicker 0.1.3-alpha.211 → 0.1.3-alpha.239
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- bc8a17b: Fixed the README link to the `AzField` component docs after the field package
|
|
8
|
+
directory was renamed from `FormField` to `Field`. No behavior change.
|
|
7
9
|
- 06a62d2: Keep publishing the stylesheet as `./style.css`. Vite 6 stopped hardcoding that name in library mode and started deriving it from the entry name, which would have moved the file to `index.css` and broken the documented import path. The entry points and type definitions are unchanged.
|
|
8
10
|
- 19ed560: Rebuild on Vite 8, which bundles with Rolldown and minifies CSS with Lightning CSS. The ESM, CJS and type entry points are unchanged, and `vue` stays external in both the ESM build and the UMD global. The published CSS is equivalent but slightly larger, because Lightning CSS expands shorthands to match the configured build target.
|
|
9
11
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A date picker is an input component that allows users to select a date from a calendar interface or manually enter a date value. It enhances usability by providing structured date selection, reducing input errors, and ensuring format consistency. Date Pickers are commonly used in forms, booking systems, scheduling tools, and data filtering interfaces to facilitate accurate date entry.
|
|
4
4
|
|
|
5
|
-
To put a label, requirement text, help text or to apply a valid or invalid message, pair this component with the [Field component](../
|
|
5
|
+
To put a label, requirement text, help text or to apply a valid or invalid message, pair this component with the [Field component](../Field/README.md).
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|