diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 10111828..0faef693 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -8,9 +8,8 @@ DASHBOARD / KPI / BIZ METRICS OTHER -todo: when showing a popup warning box error: Could not find one or more icon(s) iconName: "exclamation" prefix: "fas" - I think maybe this is a built in vuetify icon? - Need to show a warning box to see it in action, maybe delete something and get the are you sure? or maybe it's only the warning type? +todo: popup notify not showing translated More instead shows ??More +todo: Confirm gzconfirm has all it's icons and text correct from login form test block TODO: shorten word "control" in my custom controls to ctl, why waste bytes? TODO: gzErrorBox in widget form will not display if form is not ready and form may not be ready if there is an error? (or is that correct?) todo: ops metrics not showing dates on charts that span more than one day (timeline) diff --git a/ayanova/src/api/gzdialog.js b/ayanova/src/api/gzdialog.js index 42069297..396b4e5f 100644 --- a/ayanova/src/api/gzdialog.js +++ b/ayanova/src/api/gzdialog.js @@ -19,7 +19,10 @@ export default { // called once from app.vue only // wireUpEventHandlers(vm) { + //########################################### //Notifications: pops up and slowly disappears + //ACTUAL UI IN gznotify.vue + //########################################### /////////// //ERROR @@ -87,6 +90,10 @@ export default { VM_LOCAL = vm; }, + //########################################### + //CONFIRMATION DIALOGS + //ACTUAL UI IN gzconfirm.vue + //########################################### ///////////////////////////////////// // Are you sure you want to delete? // diff --git a/ayanova/src/plugins/vuetify.js b/ayanova/src/plugins/vuetify.js index 64391c46..f1a73b2d 100644 --- a/ayanova/src/plugins/vuetify.js +++ b/ayanova/src/plugins/vuetify.js @@ -62,6 +62,7 @@ import { faEgg, faEllipsisV, faEnvelopeOpenText, + faExclamation, faExclamationCircle, faExclamationTriangle, faEye, @@ -209,6 +210,7 @@ library.add( faEgg, faEllipsisV, faEnvelopeOpenText, + faExclamation, faExclamationCircle, faExclamationTriangle, faEye, @@ -1136,6 +1138,12 @@ const CUSTOM_ICONS = { icon: ["fas", "caret-down"] } }, + exclamation: { + component: FontAwesomeIcon, + props: { + icon: ["fas", "exclamation"] + } + }, info: { component: FontAwesomeIcon, props: { diff --git a/ayanova/src/views/home-dashboard.vue b/ayanova/src/views/home-dashboard.vue index b5d8454f..0e425cce 100644 --- a/ayanova/src/views/home-dashboard.vue +++ b/ayanova/src/views/home-dashboard.vue @@ -40,7 +40,9 @@ - {{ $ay.t("Add") }} + {{ + $ay.t("Add") + }}