From a6a1085301f137fb6a212eae71b186cab0494524 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Sun, 29 Sep 2024 00:01:59 +0300 Subject: [PATCH] Add new filled otp demo --- apps/showcase/doc/inputotp/FilledDoc.vue | 54 ++++++++++++++++++++++++ apps/showcase/pages/inputotp/index.vue | 6 +++ 2 files changed, 60 insertions(+) create mode 100644 apps/showcase/doc/inputotp/FilledDoc.vue diff --git a/apps/showcase/doc/inputotp/FilledDoc.vue b/apps/showcase/doc/inputotp/FilledDoc.vue new file mode 100644 index 000000000..47a529cf1 --- /dev/null +++ b/apps/showcase/doc/inputotp/FilledDoc.vue @@ -0,0 +1,54 @@ + + + diff --git a/apps/showcase/pages/inputotp/index.vue b/apps/showcase/pages/inputotp/index.vue index 898b11f46..a40835f2a 100644 --- a/apps/showcase/pages/inputotp/index.vue +++ b/apps/showcase/pages/inputotp/index.vue @@ -9,6 +9,7 @@ import ImportDoc from '@/doc/inputotp/ImportDoc.vue'; import IntegerOnlyDoc from '@/doc/inputotp/IntegerOnlyDoc.vue'; import MaskDoc from '@/doc/inputotp/MaskDoc.vue'; import SampleDoc from '@/doc/inputotp/SampleDoc.vue'; +import FilledDoc from '@/doc/inputotp/FilledDoc.vue'; import TemplateDoc from '@/doc/inputotp/TemplateDoc.vue'; import PTComponent from '@/doc/inputotp/pt/index.vue'; import ThemingDoc from '@/doc/inputotp/theming/index.vue'; @@ -37,6 +38,11 @@ export default { label: 'Integer Only', component: IntegerOnlyDoc }, + { + id: 'filled', + label: 'Filled', + component: FilledDoc + }, { id: 'template', label: 'Template',