aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-01-24 17:32:46 -0300
committerSebastian <sebasjm@gmail.com>2022-01-24 17:33:25 -0300
commite653fc6f58c26dbb4a10b5b89a24865dd814fe68 (patch)
treed9e6417d642e68e7305c91dc501ec0c8f80857b8 /packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx
parent1e1e297d1a158f7e61606ac5822c08a70d9a2cb8 (diff)
downloadwallet-core-e653fc6f58c26dbb4a10b5b89a24865dd814fe68.tar.xz
fix #7086
Diffstat (limited to 'packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx')
-rw-r--r--packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx b/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx
index a2ecbd604..85dd836a6 100644
--- a/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx
+++ b/packages/anastasis-webui/src/pages/home/AttributeEntryScreen.stories.tsx
@@ -133,3 +133,20 @@ export const WithAllPosibleWidget = createExample(TestedComponent, {
widget: w,
})),
} as ReducerState);
+
+export const WithAutocompleteFeature = createExample(TestedComponent, {
+ ...reducerStatesExample.backupAttributeEditing,
+ required_attributes: [
+ {
+ name: "ahv_number",
+ label: "AHV Number",
+ type: "string",
+ uuid: "asdasdsa1",
+ widget: "wid",
+ "validation-regex":
+ "^(756)\\.[0-9]{4}\\.[0-9]{4}\\.[0-9]{2}|(756)[0-9]{10}$",
+ "validation-logic": "CH_AHV_check",
+ autocomplete: "???.????.????.??",
+ },
+ ],
+} as ReducerState);