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..d7aa8f2800c2 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..494def967072 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: '(X00) 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 @@