@mobileaction/action-kit 1.40.2-beta.1 → 1.40.3-beta.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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.40.3](https://github.com/mobileaction/action-kit/compare/v1.40.2...v1.40.3) (2025-01-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **DUV-4813:** Review comments applied ([f89c610](https://github.com/mobileaction/action-kit/commit/f89c6106786c874a750bc915a31ae2a9f58c6b17))
11
+ * **DUV-4813:** Sonar warning handled ([ee4a05d](https://github.com/mobileaction/action-kit/commit/ee4a05df6c4872b55121a3216364d2a2719202ca))
12
+
5
13
  ## [1.40.2](https://github.com/mobileaction/action-kit/compare/v1.40.1...v1.40.2) (2025-01-08)
6
14
 
7
15
 
@@ -17089,7 +17089,8 @@ const IB = { class: "py-1" }, Ap = /* @__PURE__ */ xe({
17089
17089
  clearable: { type: Boolean, default: !1 },
17090
17090
  applyButtonText: { default: "Apply" },
17091
17091
  multiCalendars: { type: Boolean, default: !1 },
17092
- hideCalendarIcon: { type: Boolean, default: !1 }
17092
+ hideCalendarIcon: { type: Boolean, default: !1 },
17093
+ overlayClassName: { default: void 0 }
17093
17094
  },
17094
17095
  emits: [
17095
17096
  "update:value",
@@ -17127,7 +17128,8 @@ const IB = { class: "py-1" }, Ap = /* @__PURE__ */ xe({
17127
17128
  "ma-calendar-menu",
17128
17129
  `ma-preset-${c.presetLocation}`,
17129
17130
  c.presetDates.length ? "has-preset-dates" : "",
17130
- c.multiCalendars ? "ma-multi-calendar" : ""
17131
+ c.multiCalendars ? "ma-multi-calendar" : "",
17132
+ c.overlayClassName || ""
17131
17133
  ].join(" ")
17132
17134
  })), pe = x(() => c.presetDates.map((Ie) => ({
17133
17135
  ...Ie,
@@ -120,6 +120,7 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
120
120
  size: typeof import("./types").MaDatePickerSizes[number];
121
121
  disabled: boolean;
122
122
  value: import("@vuepic/vue-datepicker").ModelValue;
123
+ overlayClassName: string;
123
124
  position: typeof import("./types").MaDatePickerPositions[number];
124
125
  format: string | ((date: Date) => string) | ((dates: Date[]) => string);
125
126
  valueFormat: string;
@@ -177,6 +177,12 @@ export interface MaDatePickerProps {
177
177
  * @default false
178
178
  */
179
179
  hideCalendarIcon?: boolean;
180
+ /**
181
+ * Custom class name for the menu overlay of the datepicker.
182
+ * This can be used to apply specific styles to the menu overlay.
183
+ * @default undefined
184
+ */
185
+ overlayClassName?: string;
180
186
  }
181
187
  export declare const MaDefaultVisibleDateFormat = "MMM D, YYYY";
182
188
  export declare const MaDefaultDateFormat = "YYYY-MM-DD";