From 707fde7b9166177844db6155960f114ecab938fb Mon Sep 17 00:00:00 2001 From: bmauger Date: Fri, 28 Jan 2022 16:24:41 -0500 Subject: [PATCH] WIP CSR-257 --- .../funnel-footer/funnel-footer.spec.js | 1 + .../funnel-footer/funnel-footer.vue | 40 +++ src/layouts/component-test/component-test.vue | 246 ++++++++++-------- src/ux-components/button-main/button-main.vue | 4 +- .../list-button-horizontal.vue | 1 + src/ux-components/text-link/text-link.vue | 6 + 6 files changed, 182 insertions(+), 116 deletions(-) create mode 100644 src/common-components/funnel-footer/funnel-footer.spec.js create mode 100644 src/common-components/funnel-footer/funnel-footer.vue diff --git a/src/common-components/funnel-footer/funnel-footer.spec.js b/src/common-components/funnel-footer/funnel-footer.spec.js new file mode 100644 index 000000000..3d0843e10 --- /dev/null +++ b/src/common-components/funnel-footer/funnel-footer.spec.js @@ -0,0 +1 @@ +test.todo("some test to be written in the future"); diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue new file mode 100644 index 000000000..acd362709 --- /dev/null +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -0,0 +1,40 @@ + + + diff --git a/src/layouts/component-test/component-test.vue b/src/layouts/component-test/component-test.vue index 7363ec3d4..a122485e9 100644 --- a/src/layouts/component-test/component-test.vue +++ b/src/layouts/component-test/component-test.vue @@ -46,6 +46,31 @@ /> +
+
+

Links

+
+
+
+
+

+

+

+ +
+

List Card

@@ -626,31 +651,6 @@ />
-
-
-

Links

-
-
-
-
-

-

-

- -
-

Typography

@@ -796,95 +796,109 @@

Button Question

- - - - - - - - - - - +
+
+ + + + + + + + + + + +
+
+
+
+

Funnel Footer

+
+
+
+
+ +
+
@@ -900,6 +914,7 @@ import listButtonHorizontal from "@/ux-components/list-button-horizontal/list-bu import checkbox from "@/ux-components/checkbox/checkbox"; import buttonQuestion from "@/common-components/button-question/button-question"; import textLink from "@/ux-components/text-link/text-link"; +import funnelFooter from "@/common-components/funnel-footer/funnel-footer"; export default { name: "App", components: { @@ -913,7 +928,8 @@ export default { checkbox, funnelHeader, buttonQuestion, - textLink + textLink, + funnelFooter }, data() { return { diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue index 5d89e9afa..2f99ac33a 100644 --- a/src/ux-components/button-main/button-main.vue +++ b/src/ux-components/button-main/button-main.vue @@ -1,5 +1,5 @@