@rebilly/revel 8.11.1 → 8.12.0

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 +1,6 @@
1
- ## [8.11.1](https://github.com/Rebilly/rebilly/compare/revel-v8.11.0...revel-v8.11.1) (2025-06-12)
1
+ ## [8.12.0](https://github.com/Rebilly/rebilly/compare/revel-v8.11.2...revel-v8.12.0) (2025-06-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * **storefront-payment-form:** Replace packages with lightweight alternatives ([#12624](https://github.com/Rebilly/rebilly/issues/12624)) ([8325b33](https://github.com/Rebilly/rebilly/commit/8325b33c5de026befddcf6d04ca8e5d08065c640))
@@ -1,4 +1,4 @@
1
- import { type Moment } from 'moment-timezone';
1
+ import { type Moment } from 'moment';
2
2
  export declare const calendarPresets: {
3
3
  readonly today: "today";
4
4
  readonly yesterday: "yesterday";
@@ -34,4 +34,3 @@ export type CalendarPresetPeriod = {
34
34
  end: Moment;
35
35
  };
36
36
  export declare const getCalendarPresetPeriods: (tz?: string) => Record<CalendarPreset, CalendarPresetPeriod>;
37
- export declare const findCalenderPresetPeriod: (relativeFilterValue: string, tz?: string) => CalendarPresetPeriod | undefined;