@rebilly/revel 12.47.3 → 12.48.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
- ## [12.47.3](https://github.com/Rebilly/rebilly/compare/revel-v12.47.2...revel-v12.47.3) (2026-07-15)
1
+ ## [12.48.0](https://github.com/Rebilly/rebilly/compare/revel-v12.47.3...revel-v12.48.0) (2026-07-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **recomm, revel:** Restrict payout transition time to on-the-hour and show last executed at ([#23537](https://github.com/Rebilly/rebilly/issues/23537)) ([f648c30](https://github.com/Rebilly/rebilly/commit/f648c3068058a68a5cb90ba49a1de1fa7284cabc))
@@ -91,6 +91,15 @@ interface Props {
91
91
  * Hide select today button
92
92
  */
93
93
  hideSelectToday?: boolean;
94
+ /**
95
+ * v-calendar time component rules
96
+ * @see https://vcalendar.io/datepicker/time-rules.html
97
+ */
98
+ rules?: object;
99
+ /**
100
+ * v-calendar time picker precision (1 = hours, 2 = minutes, etc.)
101
+ */
102
+ timeAccuracy?: number;
94
103
  }
95
104
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
96
105
  "update:modelValue": (value: string | Date | DateRange | null) => any;
@@ -98,6 +107,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
98
107
  "onUpdate:modelValue"?: ((value: string | Date | DateRange | null) => any) | undefined;
99
108
  }>, {
100
109
  columns: number;
110
+ rules: object;
101
111
  id: string;
102
112
  placeholder: string;
103
113
  caption: string;
@@ -112,6 +122,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
112
122
  hideSelectToday: boolean;
113
123
  is24hr: boolean;
114
124
  hideTimeHeader: boolean;
125
+ timeAccuracy: number;
115
126
  locale: string;
116
127
  minDate: Date | string | object;
117
128
  maxDate: Date | string | object;
package/dist/revel.mjs CHANGED
@@ -8292,7 +8292,9 @@ const $8 = ["aria-checked"], C8 = ["for"], H8 = ["id", "disabled", "value", "che
8292
8292
  locale: { default: void 0 },
8293
8293
  masks: { default: () => ({}) },
8294
8294
  allowEmpty: { type: Boolean },
8295
- hideSelectToday: { type: Boolean, default: !1 }
8295
+ hideSelectToday: { type: Boolean, default: !1 },
8296
+ rules: { default: void 0 },
8297
+ timeAccuracy: { default: void 0 }
8296
8298
  },
8297
8299
  emits: ["update:modelValue"],
8298
8300
  setup(M, { emit: b }) {
@@ -8336,8 +8338,10 @@ const $8 = ["aria-checked"], C8 = ["for"], H8 = ["id", "disabled", "value", "che
8336
8338
  masks: M.masks,
8337
8339
  "allow-empty": M.allowEmpty,
8338
8340
  "hide-select-today": M.hideSelectToday,
8341
+ rules: M.rules,
8342
+ "time-accuracy": M.timeAccuracy,
8339
8343
  "onUpdate:modelValue": O
8340
- }), null, 16, ["model-value", "model-config", "type", "masks", "allow-empty", "hide-select-today"])),
8344
+ }), null, 16, ["model-value", "model-config", "type", "masks", "allow-empty", "hide-select-today", "rules", "time-accuracy"])),
8341
8345
  M.caption ? (r(), u("span", b7, Y(M.caption), 1)) : C("", !0),
8342
8346
  P(G2, {
8343
8347
  validate: M.validate,