From bb1db52567e0884a896f9ccd76c27540b52f5e48 Mon Sep 17 00:00:00 2001 From: Sean Perkins <13732623+sean-perkins@users.noreply.github.com> Date: Mon, 6 May 2024 15:20:52 -0400 Subject: [PATCH] fix(angular): add formatOptions property to standalone datetime (#29468) Issue number: resolves #29464 --------- ## What is the current behavior? The standalone component for `ion-datetime` is missing the `formatOptions` property. This component wrapper is manually maintained and was missed when developing the feature. ## What is the new behavior? - Adds the missing `formatOptions` property to the `ion-datetime` for the angular standalone component ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- packages/angular/standalone/src/directives/datetime.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/angular/standalone/src/directives/datetime.ts b/packages/angular/standalone/src/directives/datetime.ts index 94af3a1090..ee35d079e6 100644 --- a/packages/angular/standalone/src/directives/datetime.ts +++ b/packages/angular/standalone/src/directives/datetime.ts @@ -24,6 +24,7 @@ const DATETIME_INPUTS = [ 'disabled', 'doneText', 'firstDayOfWeek', + 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues',