From bf5908439872985392c7449e4579654ebe5c550a Mon Sep 17 00:00:00 2001 From: Ruslan Farkhutdinov Date: Tue, 24 Mar 2026 16:15:29 +0200 Subject: [PATCH 1/3] Demos: Update old dates & remove +1 from mask in Editors --- .../Angular/app/app.component.html | 2 +- .../EditorAppearanceVariants/React/App.tsx | 2 +- .../EditorAppearanceVariants/ReactJs/App.js | 2 +- .../EditorAppearanceVariants/Vue/App.vue | 2 +- .../EditorAppearanceVariants/jQuery/index.js | 2 +- .../Formatting/Angular/app/app.component.html | 8 ++++---- .../Formatting/Angular/app/app.component.ts | 2 +- .../Demos/DateBox/Formatting/React/App.tsx | 10 +++++----- .../Demos/DateBox/Formatting/ReactJs/App.js | 10 +++++----- .../Demos/DateBox/Formatting/Vue/App.vue | 10 +++++----- .../Demos/DateBox/Formatting/jQuery/index.js | 10 +++++----- .../Angular/app/app.component.ts | 20 +++++++++---------- .../RangeSelector/EmbeddedChart/React/App.tsx | 2 +- .../RangeSelector/EmbeddedChart/React/data.ts | 16 +++++++-------- .../EmbeddedChart/ReactJs/App.js | 2 +- .../EmbeddedChart/ReactJs/data.js | 16 +++++++-------- .../RangeSelector/EmbeddedChart/Vue/App.vue | 2 +- .../RangeSelector/EmbeddedChart/Vue/data.ts | 16 +++++++-------- .../EmbeddedChart/jQuery/index.js | 18 ++++++++--------- .../Overview/Angular/app/app.component.html | 2 +- .../Demos/TextBox/Overview/React/App.tsx | 2 +- .../Demos/TextBox/Overview/ReactJs/App.js | 2 +- apps/demos/Demos/TextBox/Overview/Vue/App.vue | 2 +- .../Demos/TextBox/Overview/jQuery/index.js | 2 +- .../Overview/Angular/app/app.component.html | 2 +- .../Demos/Validation/Overview/React/App.tsx | 2 +- .../Demos/Validation/Overview/ReactJs/App.js | 2 +- .../Demos/Validation/Overview/Vue/App.vue | 2 +- .../Demos/Validation/Overview/jQuery/index.js | 2 +- 29 files changed, 86 insertions(+), 86 deletions(-) diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.html index 7332c6b1ef8a..fd6c5b52f996 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.html @@ -98,7 +98,7 @@ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/jQuery/index.js b/apps/demos/Demos/Common/EditorAppearanceVariants/jQuery/index.js index 1ce3dd9aed70..187fc1ceb1b0 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/jQuery/index.js +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/jQuery/index.js @@ -74,7 +74,7 @@ $(() => { const phone = $('#phone').dxTextBox({ label: 'Phone', - mask: '+1 (000) 000-0000', + mask: '(000) 000-0000', inputAttr: { 'aria-label': 'Phone' }, maskRules: { X: /[02-9]/, diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.html b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.html index f3dcddcb825c..236256354996 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.html +++ b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.html @@ -3,7 +3,7 @@
Locale-dependent format
Built-in predefined format
Locale Data Markup Language (LDML) pattern
Format with literal characters
@@ -21,7 +21,7 @@ :use-mask-behavior="true" :value="date" :input-attr="{ 'aria-label': 'Date' }" - placeholder="10/16/2018" + placeholder="10/16/2025" display-format="shortdate" type="date" /> @@ -36,7 +36,7 @@ :input-attr="{ 'aria-label': 'Date' }" :value="date" type="datetime" - placeholder="Tuesday, 16 of Oct, 2018 14:52" + placeholder="Thursday, 16 of Oct, 2025 14:52" display-format="EEEE, d of MMM, yyyy HH:mm" /> @@ -49,7 +49,7 @@ :use-mask-behavior="true" :input-attr="{ 'aria-label': 'Date' }" :value="date" - placeholder="Year: 2018" + placeholder="Year: 2025" display-format="'Year': yyyy" type="date" /> @@ -61,7 +61,7 @@