@hortiview/shared-components 2.27.0 → 2.27.1

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.27.1](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v2.27.0...v2.27.1) (2026-05-29)
2
+
3
+ ### Code Refactoring
4
+
5
+ * remove closeLabel prop and related button from FormDatePicker ([6917f1b](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/6917f1b1549080a34fb7a70d1eeaf985ff1a5894))
6
+ * remove deprecated closeLabel prop from DatePickerProps and clean up CSS class quotes ([8d5aa25](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/8d5aa25ccd0100ae59dfd8989522b7dd97608b15))
7
+
1
8
  ## [2.27.0](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v2.26.3...v2.27.0) (2026-05-26)
2
9
 
3
10
  ### Features
@@ -1 +1 @@
1
- ._datePickerContainer_1m1xz_1{width:100%}._datePickerContainer_1m1xz_1 div[class*=mdc-notched-outline__leading]{border-radius:.25rem 0 0 .25rem!important}._datePickerContainer_1m1xz_1 div[class*=mdc-notched-outline__trailing]{border-radius:0 .25rem .25rem 0!important}._invalid_1m1xz_13+*[class*=mdc-text-field-helper-line] *[class*=mdc-text-field-helper-text]{color:var(--lmnt-theme-danger)!important}._fromPickerText_1m1xz_17+*[class*=mdc-text-field-helper-line] *[class*=mdc-text-field-helper-text]{margin-bottom:-19.33px!important}._datePickerCalendar_1m1xz_21{z-index:101}._trailingContent_1m1xz_25{text-align:right}
1
+ ._datePickerContainer_1n7za_1{width:100%}._datePickerContainer_1n7za_1 div[class*=mdc-notched-outline__leading]{border-radius:.25rem 0 0 .25rem!important}._datePickerContainer_1n7za_1 div[class*=mdc-notched-outline__trailing]{border-radius:0 .25rem .25rem 0!important}._invalid_1n7za_13+*[class*=mdc-text-field-helper-line] *[class*=mdc-text-field-helper-text]{color:var(--lmnt-theme-danger)!important}._fromPickerText_1n7za_17+*[class*=mdc-text-field-helper-line] *[class*=mdc-text-field-helper-text]{margin-bottom:-19.33px!important}._datePickerCalendar_1n7za_21{z-index:101}
@@ -6,8 +6,6 @@ type DatePickerProps<T extends FieldValues> = {
6
6
  propertyName: Path<T>;
7
7
  /** Label to be displayed at the date picker input field. */
8
8
  label: string;
9
- /** Label to be displayed as close button text. */
10
- closeLabel: string;
11
9
  /**
12
10
  * the rules for the picker
13
11
  * @default undefined
@@ -44,7 +42,6 @@ type DatePickerProps<T extends FieldValues> = {
44
42
  *
45
43
  * @param propertyName - the name of the property this date picker maps to in the form.
46
44
  * @param label - label displayed along with the date picker.
47
- * @param closeLabel - label displayed as close button text.
48
45
  * @param className - class name to be passed if provided.
49
46
  * @param minRangeYear - number of years to subtract from the current date as bottom of range
50
47
  * @param maxRangeYear - number of years to add to the current date as top of range
@@ -55,5 +52,5 @@ type DatePickerProps<T extends FieldValues> = {
55
52
  *
56
53
  * @returns A JSX element that renders a date picker form input.
57
54
  */
58
- export declare const FormDatePicker: <T extends FieldValues>({ propertyName, label, closeLabel, className, minRangeYear, maxRangeYear, locale, rules, helperText, ...props }: Omit<ElementDatePickerProps, "locale" | "useUtc"> & DatePickerProps<T>) => import("react/jsx-runtime").JSX.Element;
55
+ export declare const FormDatePicker: <T extends FieldValues>({ propertyName, label, className, minRangeYear, maxRangeYear, locale, rules, helperText, ...props }: Omit<ElementDatePickerProps, "locale" | "useUtc"> & DatePickerProps<T>) => import("react/jsx-runtime").JSX.Element;
59
56
  export {};