├── .gitignore ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── cardapio │ │ ├── cardapio-edit │ │ │ ├── cardapio-edit-routing.module.ts │ │ │ ├── cardapio-edit.module.ts │ │ │ ├── cardapio-edit.page.html │ │ │ ├── cardapio-edit.page.scss │ │ │ ├── cardapio-edit.page.spec.ts │ │ │ └── cardapio-edit.page.ts │ │ └── cardapio-list │ │ │ ├── cardapio-list-routing.module.ts │ │ │ ├── cardapio-list.module.ts │ │ │ ├── cardapio-list.page.html │ │ │ ├── cardapio-list.page.scss │ │ │ ├── cardapio-list.page.spec.ts │ │ │ └── cardapio-list.page.ts │ └── folder │ │ ├── folder-routing.module.ts │ │ ├── folder.module.ts │ │ ├── folder.page.html │ │ ├── folder.page.scss │ │ ├── folder.page.spec.ts │ │ └── folder.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/.gitignore -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/browserslist -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-edit/cardapio-edit-routing.module.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-edit/cardapio-edit.module.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-edit/cardapio-edit.page.html -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-edit/cardapio-edit.page.spec.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-edit/cardapio-edit.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-edit/cardapio-edit.page.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-list/cardapio-list-routing.module.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-list/cardapio-list.module.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-list/cardapio-list.page.html -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-list/cardapio-list.page.spec.ts -------------------------------------------------------------------------------- /src/app/cardapio/cardapio-list/cardapio-list.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/cardapio/cardapio-list/cardapio-list.page.ts -------------------------------------------------------------------------------- /src/app/folder/folder-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder-routing.module.ts -------------------------------------------------------------------------------- /src/app/folder/folder.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder.module.ts -------------------------------------------------------------------------------- /src/app/folder/folder.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder.page.html -------------------------------------------------------------------------------- /src/app/folder/folder.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder.page.scss -------------------------------------------------------------------------------- /src/app/folder/folder.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder.page.spec.ts -------------------------------------------------------------------------------- /src/app/folder/folder.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/app/folder/folder.page.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabricadecodigo/DeliveryAppRestauranteIonic/HEAD/tslint.json --------------------------------------------------------------------------------