gitextract_3dqmdq3z/ ├── .github/ │ └── workflows/ │ ├── ci-dashboard-e2e.yml │ ├── ci-dashboard-unit.yml │ ├── ci-widget-e2e.yml │ └── ci-widget-unit.yml ├── .gitignore ├── backend/ │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── database/ │ │ ├── index.js │ │ └── mock.js │ ├── handlers/ │ │ ├── apikey.js │ │ ├── auth.js │ │ ├── feedbacks.js │ │ └── users.js │ ├── index.js │ ├── package.json │ ├── vercel.json │ └── vuejs_brasil_feedbacker.json ├── conceitos/ │ ├── data-binding/ │ │ └── App.vue │ ├── diretivas/ │ │ └── App.vue │ ├── eventos-e-metodos/ │ │ └── App.vue │ ├── lifecycle-hooks/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── index.html │ │ └── src/ │ │ ├── App.vue │ │ └── main.js │ ├── nova-syntax-e-antiga/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── public/ │ │ │ └── index.html │ │ └── src/ │ │ ├── App.vue │ │ └── main.js │ └── single-file-components/ │ └── App.vue ├── dashboard/ │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── babel.config.js │ ├── cypress.json │ ├── jest.config.js │ ├── package.json │ ├── palette.js │ ├── postcss.config.js │ ├── public/ │ │ ├── _redirects │ │ └── index.html │ ├── src/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ └── css/ │ │ │ ├── fonts.css │ │ │ └── tailwind.css │ │ ├── components/ │ │ │ ├── ContentLoader/ │ │ │ │ └── index.vue │ │ │ ├── FeedbackCard/ │ │ │ │ ├── Badge.vue │ │ │ │ ├── Loading.vue │ │ │ │ └── index.vue │ │ │ ├── HeaderLogged/ │ │ │ │ ├── HeaderLogged.spec.js │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── HeaderLogged.spec.js.snap │ │ │ │ └── index.vue │ │ │ ├── Icon/ │ │ │ │ ├── ChevronDown.vue │ │ │ │ ├── Copy.vue │ │ │ │ ├── Loading.vue │ │ │ │ └── index.vue │ │ │ ├── ModalCreateAccount/ │ │ │ │ └── index.vue │ │ │ ├── ModalFactory/ │ │ │ │ └── index.vue │ │ │ └── ModalLogin/ │ │ │ └── index.vue │ │ ├── hooks/ │ │ │ ├── useModal.js │ │ │ └── useStore.js │ │ ├── main.js │ │ ├── router/ │ │ │ └── index.js │ │ ├── services/ │ │ │ ├── __snapshots__/ │ │ │ │ └── auth.spec.js.snap │ │ │ ├── auth.js │ │ │ ├── auth.spec.js │ │ │ ├── feedbacks.js │ │ │ ├── index.js │ │ │ └── users.js │ │ ├── store/ │ │ │ ├── global.js │ │ │ ├── index.js │ │ │ ├── user.js │ │ │ └── user.spec.js │ │ ├── utils/ │ │ │ ├── bus.js │ │ │ ├── date.js │ │ │ ├── timeout.js │ │ │ ├── validators.js │ │ │ └── validators.spec.js │ │ └── views/ │ │ ├── Credencials/ │ │ │ └── index.vue │ │ ├── Feedbacks/ │ │ │ ├── Filters.vue │ │ │ ├── FiltersLoading.vue │ │ │ └── index.vue │ │ └── Home/ │ │ ├── Contact.vue │ │ ├── CustomHeader.vue │ │ ├── Home.spec.js │ │ ├── __snapshots__/ │ │ │ └── Home.spec.js.snap │ │ └── index.vue │ ├── tailwind.config.js │ └── tests/ │ └── e2e/ │ ├── .eslintrc.js │ ├── plugins/ │ │ └── index.js │ ├── specs/ │ │ ├── credencials.js │ │ └── home.js │ └── support/ │ ├── commands.js │ └── index.js ├── try-widget/ │ └── index.html └── widget/ ├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── README.md ├── babel.config.js ├── cypress.json ├── jest.config.js ├── package.json ├── palette.js ├── postcss.config.js ├── public/ │ ├── index.html │ └── init.js ├── src/ │ ├── App.vue │ ├── assets/ │ │ └── css/ │ │ ├── fonts.css │ │ └── tailwind.css │ ├── components/ │ │ ├── Icon/ │ │ │ ├── ArrowRight.vue │ │ │ ├── Atention.vue │ │ │ ├── Chat.vue │ │ │ ├── Check.vue │ │ │ ├── ChevronDown.vue │ │ │ ├── Close.vue │ │ │ ├── Copy.vue │ │ │ ├── Loading.vue │ │ │ └── index.vue │ │ └── Wizard/ │ │ ├── Error.vue │ │ ├── SelectFeedbackType.vue │ │ ├── Success.vue │ │ ├── WriteAFeedback.vue │ │ └── index.vue │ ├── hooks/ │ │ ├── iframe.ts │ │ ├── navigation.ts │ │ └── store.ts │ ├── main.ts │ ├── services/ │ │ ├── feedbacks.ts │ │ └── index.ts │ ├── shims-vue.d.ts │ ├── store/ │ │ └── index.ts │ ├── types/ │ │ ├── error.ts │ │ └── feedback.ts │ ├── utils/ │ │ └── bootstrap.ts │ └── views/ │ ├── Playground/ │ │ ├── Playground.spec.js │ │ ├── __snapshots__/ │ │ │ └── Playground.spec.js.snap │ │ └── index.vue │ └── Widget/ │ ├── Box.vue │ ├── Standby.vue │ └── index.vue ├── tailwind.config.js ├── tests/ │ └── e2e/ │ ├── .eslintrc.js │ ├── plugins/ │ │ └── index.js │ ├── specs/ │ │ └── widget.js │ └── support/ │ ├── commands.js │ └── index.js └── tsconfig.json