From 1229eba355658f237c0701bfef405833d42ee57d Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:42:39 -0400 Subject: [PATCH 1/2] docs(datetime): add border property to highlightedDates examples --- static/code/stackblitz/v8/angular/package.json | 4 ++-- static/code/stackblitz/v8/html/package.json | 2 +- static/code/stackblitz/v8/react/package.json | 2 +- static/code/stackblitz/v8/vue/package.json | 4 ++-- .../array/angular/example_component_ts.md | 8 ++++++-- .../datetime/highlightedDates/array/demo.html | 18 ++++++++++++++---- .../highlightedDates/array/javascript.md | 8 ++++++-- .../datetime/highlightedDates/array/react.md | 8 ++++++-- .../v8/datetime/highlightedDates/array/vue.md | 8 ++++++-- .../callback/angular/example_component_ts.md | 6 ++++-- .../highlightedDates/callback/demo.html | 16 ++++++++++++---- .../highlightedDates/callback/javascript.md | 6 ++++-- .../highlightedDates/callback/react.md | 6 ++++-- .../datetime/highlightedDates/callback/vue.md | 6 ++++-- 14 files changed, 72 insertions(+), 30 deletions(-) diff --git a/static/code/stackblitz/v8/angular/package.json b/static/code/stackblitz/v8/angular/package.json index 8e1322e643b..7ec6dee97a1 100644 --- a/static/code/stackblitz/v8/angular/package.json +++ b/static/code/stackblitz/v8/angular/package.json @@ -15,8 +15,8 @@ "@angular/platform-browser": "^19.0.0", "@angular/platform-browser-dynamic": "^19.0.0", "@angular/router": "^19.0.0", - "@ionic/angular": "8.6.1", - "@ionic/core": "8.6.1", + "@ionic/angular": "8.6.3-dev.11753813535.1498583f", + "@ionic/core": "8.6.3-dev.11753813535.1498583f", "ionicons": "8.0.9", "rxjs": "^7.8.1", "tslib": "^2.5.0", diff --git a/static/code/stackblitz/v8/html/package.json b/static/code/stackblitz/v8/html/package.json index c7b1cef6220..bc790b640df 100644 --- a/static/code/stackblitz/v8/html/package.json +++ b/static/code/stackblitz/v8/html/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "@ionic/core": "8.6.1", + "@ionic/core": "8.6.3-dev.11753813535.1498583f", "ionicons": "8.0.9" } } diff --git a/static/code/stackblitz/v8/react/package.json b/static/code/stackblitz/v8/react/package.json index b1b63666ae6..176cdd1f891 100644 --- a/static/code/stackblitz/v8/react/package.json +++ b/static/code/stackblitz/v8/react/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@ionic/react": "8.6.1", + "@ionic/react": "8.6.3-dev.11753813535.1498583f", "@ionic/react-router": "8.6.1", "@types/node": "^22.0.0", "@types/react": "^19.0.0", diff --git a/static/code/stackblitz/v8/vue/package.json b/static/code/stackblitz/v8/vue/package.json index 81dde41ce6f..95c05457036 100644 --- a/static/code/stackblitz/v8/vue/package.json +++ b/static/code/stackblitz/v8/vue/package.json @@ -8,8 +8,8 @@ "preview": "vite preview" }, "dependencies": { - "@ionic/vue": "8.6.1", - "@ionic/vue-router": "8.6.1", + "@ionic/vue": "8.6.3-dev.11753813535.1498583f", + "@ionic/vue-router": "8.6.3-dev.11753813535.1498583f", "vue": "^3.2.25", "vue-router": "4.5.1" }, diff --git a/static/usage/v8/datetime/highlightedDates/array/angular/example_component_ts.md b/static/usage/v8/datetime/highlightedDates/array/angular/example_component_ts.md index 1382b5db0e9..ca7f322c840 100644 --- a/static/usage/v8/datetime/highlightedDates/array/angular/example_component_ts.md +++ b/static/usage/v8/datetime/highlightedDates/array/angular/example_component_ts.md @@ -14,21 +14,25 @@ export class ExampleComponent { date: '2023-01-05', textColor: '#800080', backgroundColor: '#ffc0cb', + border: '1px solid #e91e63', }, { date: '2023-01-10', textColor: '#09721b', backgroundColor: '#c8e5d0', + border: '1px solid #4caf50', }, { date: '2023-01-20', - textColor: 'var(--ion-color-secondary-contrast)', - backgroundColor: 'var(--ion-color-secondary)', + textColor: 'var(--ion-color-secondary)', + backgroundColor: 'rgb(var(--ion-color-secondary-rgb), 0.18)', + border: '1px solid var(--ion-color-secondary-shade)', }, { date: '2023-01-23', textColor: 'rgb(68, 10, 184)', backgroundColor: 'rgb(211, 200, 229)', + border: '1px solid rgb(103, 58, 183)', }, ]; } diff --git a/static/usage/v8/datetime/highlightedDates/array/demo.html b/static/usage/v8/datetime/highlightedDates/array/demo.html index 1e8545bf042..1b97cbbe947 100644 --- a/static/usage/v8/datetime/highlightedDates/array/demo.html +++ b/static/usage/v8/datetime/highlightedDates/array/demo.html @@ -6,8 +6,14 @@ Datetime - - + +