├── contributions.md ├── themes ├── new-age │ ├── README.md │ ├── assets │ │ └── img │ │ │ ├── bg-cta.jpg │ │ │ ├── bg-pattern.png │ │ │ └── demo-screen-1.jpg │ └── components │ │ ├── app.component.html │ │ ├── about │ │ ├── about.component.css │ │ └── about.component.tns.css │ │ ├── pages │ │ └── gv-home │ │ │ ├── gv-home.component.css │ │ │ └── gv-home.component.tns.css │ │ └── home │ │ └── home.component.tns.css ├── ng2-admin │ ├── modules │ │ └── m-ng2-admin │ │ │ ├── ng2app.component.scss │ │ │ └── components │ │ │ ├── baFileUploader │ │ │ └── baFileUploader.component.scss │ │ │ ├── baMenu │ │ │ ├── baMenu.component.scss │ │ │ └── components │ │ │ │ └── baMenuItem │ │ │ │ └── baMenuItem.component.scss │ │ │ ├── baAmChart │ │ │ ├── baAmChart.component.scss │ │ │ └── baAmChart.component.html │ │ │ ├── baChartistChart │ │ │ ├── baChartistChart.component.scss │ │ │ └── baChartistChart.component.html │ │ │ ├── baFullCalendar │ │ │ ├── baFullCalendar.component.scss │ │ │ └── baFullCalendar.component.html │ │ │ ├── baMultiCheckbox │ │ │ └── baMultiCheckbox.component.scss │ │ │ └── baSidebar │ │ │ └── baSidebar.component.html │ ├── assets │ │ ├── service-worker.js │ │ ├── img │ │ │ ├── blue-bg.jpg │ │ │ ├── blur-bg.jpg │ │ │ ├── sky-bg.jpg │ │ │ ├── chernika.png │ │ │ ├── green-bg.jpg │ │ │ ├── peachy-bg.jpg │ │ │ ├── transblue-bg.jpg │ │ │ ├── app │ │ │ │ ├── feed │ │ │ │ │ ├── genom.png │ │ │ │ │ ├── my-little-kitten.png │ │ │ │ │ ├── new-york-location.png │ │ │ │ │ └── vader-and-me-preview.png │ │ │ │ ├── my-app-logo.png │ │ │ │ ├── profile │ │ │ │ │ ├── Nasta.png │ │ │ │ │ ├── Nick.png │ │ │ │ │ ├── Vlad.png │ │ │ │ │ ├── Andrey.png │ │ │ │ │ ├── Kostya.png │ │ │ │ │ └── Alexander.png │ │ │ │ ├── todo │ │ │ │ │ └── check-icon.png │ │ │ │ ├── typography │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── typo01.png │ │ │ │ │ ├── typo03.png │ │ │ │ │ ├── typo04.png │ │ │ │ │ ├── typo05.png │ │ │ │ │ ├── typo06.png │ │ │ │ │ └── typo07.png │ │ │ │ └── skin-thumbnails │ │ │ │ │ ├── 03_blue.jpg │ │ │ │ │ ├── 01_default.jpg │ │ │ │ │ ├── 04_peachy.jpg │ │ │ │ │ ├── 05_material.jpg │ │ │ │ │ ├── 06_transblue.jpg │ │ │ │ │ └── 02_transparent.jpg │ │ │ ├── blur-bg-blurred.jpg │ │ │ ├── blur-bg-mobile.jpg │ │ │ ├── theme │ │ │ │ ├── no-photo.png │ │ │ │ ├── palette.png │ │ │ │ └── vendor │ │ │ │ │ ├── ammap │ │ │ │ │ ├── export.png │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── panUp.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── xIcon.gif │ │ │ │ │ ├── xIconH.gif │ │ │ │ │ ├── arrowUp.gif │ │ │ │ │ ├── homeIcon.gif │ │ │ │ │ ├── panDown.gif │ │ │ │ │ ├── panLeft.gif │ │ │ │ │ ├── panRight.gif │ │ │ │ │ ├── arrowDown.gif │ │ │ │ │ └── homeIconWhite.gif │ │ │ │ │ └── leaflet │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ └── marker-shadow.png │ │ │ └── person.svg │ │ ├── fonts │ │ │ ├── socicon.eot │ │ │ ├── socicon.ttf │ │ │ ├── socicon.woff │ │ │ └── socicon.woff2 │ │ └── icon │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── ms-icon-144x144.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ └── android-icon-192x192.png │ ├── scss │ │ ├── bootstrap-overrides │ │ │ ├── overrides.scss │ │ │ └── _dropdown.scss │ │ ├── conf │ │ │ └── conf.scss │ │ ├── initial.scss │ │ ├── _ionicons.scss │ │ └── _modal.scss │ └── css │ │ └── main.scss ├── mprj-clean │ ├── modules │ │ ├── m-mprj │ │ │ └── components │ │ │ │ ├── mp-link.component.scss │ │ │ │ └── mp-link.component.html │ │ ├── m-ng2-admin │ │ │ └── components │ │ │ │ ├── baFileUploader │ │ │ │ └── baFileUploader.component.scss │ │ │ │ ├── baMenu │ │ │ │ ├── baMenu.component.scss │ │ │ │ └── components │ │ │ │ │ └── baMenuItem │ │ │ │ │ └── baMenuItem.component.scss │ │ │ │ ├── baAmChart │ │ │ │ ├── baAmChart.component.html │ │ │ │ └── baAmChart.component.scss │ │ │ │ ├── baChartistChart │ │ │ │ ├── baChartistChart.component.scss │ │ │ │ └── baChartistChart.component.html │ │ │ │ ├── baFullCalendar │ │ │ │ ├── baFullCalendar.component.scss │ │ │ │ └── baFullCalendar.component.html │ │ │ │ ├── baMultiCheckbox │ │ │ │ └── baMultiCheckbox.component.scss │ │ │ │ └── baSidebar │ │ │ │ └── baSidebar.component.html │ │ ├── i18n │ │ │ └── components │ │ │ │ ├── lang-switcher.component.html │ │ │ │ ├── lang-switcher.component.scss │ │ │ │ ├── lang-switcher.component.tns.html │ │ │ │ ├── lang-switcher.component.tns.android.scss │ │ │ │ └── lang-switcher.component.tns.ios.scss │ │ └── shared │ │ │ └── components │ │ │ ├── navbar │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.scss │ │ │ ├── navbar.component.tns.html │ │ │ └── navbar.component.tns.scss │ │ │ └── toolbar │ │ │ ├── toolbar.component.html │ │ │ ├── toolbar.component.scss │ │ │ ├── toolbar.component.tns.html │ │ │ └── toolbar.component.tns.scss │ ├── assets │ │ ├── service-worker.js │ │ ├── img │ │ │ ├── Mais.png │ │ │ ├── sky-bg.jpg │ │ │ ├── blue-bg.jpg │ │ │ ├── blur-bg.jpg │ │ │ ├── chernika.png │ │ │ ├── green-bg.jpg │ │ │ ├── logo_mprj.png │ │ │ ├── peachy-bg.jpg │ │ │ ├── logo_mprj2.png │ │ │ ├── app │ │ │ │ ├── feed │ │ │ │ │ ├── genom.png │ │ │ │ │ ├── my-little-kitten.png │ │ │ │ │ ├── new-york-location.png │ │ │ │ │ └── vader-and-me-preview.png │ │ │ │ ├── my-app-logo.png │ │ │ │ ├── profile │ │ │ │ │ ├── Nick.png │ │ │ │ │ ├── Vlad.png │ │ │ │ │ ├── Andrey.png │ │ │ │ │ ├── Kostya.png │ │ │ │ │ ├── Nasta.png │ │ │ │ │ └── Alexander.png │ │ │ │ ├── todo │ │ │ │ │ └── check-icon.png │ │ │ │ ├── typography │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── typo01.png │ │ │ │ │ ├── typo03.png │ │ │ │ │ ├── typo04.png │ │ │ │ │ ├── typo05.png │ │ │ │ │ ├── typo06.png │ │ │ │ │ └── typo07.png │ │ │ │ └── skin-thumbnails │ │ │ │ │ ├── 03_blue.jpg │ │ │ │ │ ├── 04_peachy.jpg │ │ │ │ │ ├── 01_default.jpg │ │ │ │ │ ├── 05_material.jpg │ │ │ │ │ ├── 02_transparent.jpg │ │ │ │ │ └── 06_transblue.jpg │ │ │ ├── blur-bg-mobile.jpg │ │ │ ├── logo_mini_mprj.png │ │ │ ├── theme │ │ │ │ ├── no-photo.png │ │ │ │ ├── palette.png │ │ │ │ └── vendor │ │ │ │ │ ├── ammap │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── panUp.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── xIcon.gif │ │ │ │ │ ├── arrowUp.gif │ │ │ │ │ ├── export.png │ │ │ │ │ ├── panDown.gif │ │ │ │ │ ├── panLeft.gif │ │ │ │ │ ├── xIconH.gif │ │ │ │ │ ├── arrowDown.gif │ │ │ │ │ ├── homeIcon.gif │ │ │ │ │ ├── panRight.gif │ │ │ │ │ └── homeIconWhite.gif │ │ │ │ │ └── leaflet │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ ├── marker-shadow.png │ │ │ │ │ └── marker-icon-2x.png │ │ │ ├── transblue-bg.jpg │ │ │ ├── blur-bg-blurred.jpg │ │ │ ├── municipios │ │ │ │ ├── Areal.png │ │ │ │ ├── Carmo.png │ │ │ │ ├── Macaé.png │ │ │ │ ├── Magé.png │ │ │ │ ├── Piraí.png │ │ │ │ ├── Aperibé.png │ │ │ │ ├── Araruama.png │ │ │ │ ├── Cambuci.png │ │ │ │ ├── Cordeiro.png │ │ │ │ ├── Itaboraí.png │ │ │ │ ├── Itaguaí.png │ │ │ │ ├── Italva.png │ │ │ │ ├── Itaocara.png │ │ │ │ ├── Itatiaia.png │ │ │ │ ├── Japeri.png │ │ │ │ ├── Macuco.png │ │ │ │ ├── Maricá.png │ │ │ │ ├── Mendes.png │ │ │ │ ├── Mesquita.png │ │ │ │ ├── Miracema.png │ │ │ │ ├── Niterói.png │ │ │ │ ├── Paraty.png │ │ │ │ ├── Quatis.png │ │ │ │ ├── Quissamã.png │ │ │ │ ├── Resende.png │ │ │ │ ├── Sapucaia.png │ │ │ │ ├── Tanguá.png │ │ │ │ ├── Valença.png │ │ │ │ ├── Bom Jardim.png │ │ │ │ ├── Cabo Frio.png │ │ │ │ ├── Cantagalo.png │ │ │ │ ├── Carapebus.png │ │ │ │ ├── Guapimirim.png │ │ │ │ ├── Itaperuna.png │ │ │ │ ├── Natividade.png │ │ │ │ ├── Nilópolis.png │ │ │ │ ├── Paracambi.png │ │ │ │ ├── Petrópolis.png │ │ │ │ ├── Pinheiral.png │ │ │ │ ├── Porto Real.png │ │ │ │ ├── Queimados.png │ │ │ │ ├── Rio Bonito.png │ │ │ │ ├── Rio Claro.png │ │ │ │ ├── Saquarema.png │ │ │ │ ├── Seropédica.png │ │ │ │ ├── Sumidouro.png │ │ │ │ ├── Três Rios.png │ │ │ │ ├── Varre-Sai.png │ │ │ │ ├── Vassouras.png │ │ │ │ ├── Barra Mansa.png │ │ │ │ ├── Belford Roxo.png │ │ │ │ ├── Duas Barras.png │ │ │ │ ├── Iguaba Grande.png │ │ │ │ ├── Mangaratiba.png │ │ │ │ ├── Nova Friburgo.png │ │ │ │ ├── Nova Iguaçu.png │ │ │ │ ├── Porciúncula.png │ │ │ │ ├── Silva Jardim.png │ │ │ │ ├── São Fidélis.png │ │ │ │ ├── São Gonçalo.png │ │ │ │ ├── Teresópolis.png │ │ │ │ ├── Volta Redonda.png │ │ │ │ ├── Angra dos Reis.png │ │ │ │ ├── Arraial do Cabo.png │ │ │ │ ├── Barra do Piraí.png │ │ │ │ ├── Cardoso Moreira.png │ │ │ │ ├── Duque de Caxias.png │ │ │ │ ├── Laje do Muriaé.png │ │ │ │ ├── Miguel Pereira.png │ │ │ │ ├── Paraíba do Sul.png │ │ │ │ ├── Paty do Alferes.png │ │ │ │ ├── Rio das Flores.png │ │ │ │ ├── Rio das Ostras.png │ │ │ │ ├── Rio de Janeiro.png │ │ │ │ ├── São José de Ubá.png │ │ │ │ ├── Armação dos Búzios.png │ │ │ │ ├── Casimiro de Abreu.png │ │ │ │ ├── São João da Barra.png │ │ │ │ ├── São João de Meriti.png │ │ │ │ ├── Trajano de Moraes.png │ │ │ │ ├── Cachoeiras de Macacu.png │ │ │ │ ├── Conceição de Macabu.png │ │ │ │ ├── Santa Maria Madalena.png │ │ │ │ ├── São Pedro da Aldeia.png │ │ │ │ ├── Bom Jesus do Itabapoana.png │ │ │ │ ├── Campos dos Goytacazes.png │ │ │ │ ├── Santo Antônio de Pádua.png │ │ │ │ ├── São Sebastião do Alto.png │ │ │ │ ├── Comendador Levy Gasparian.png │ │ │ │ ├── Engenheiro Paulo de Frontin.png │ │ │ │ ├── São Francisco de Itabapoana.png │ │ │ │ └── São José do Vale do Rio Preto.png │ │ │ └── person.svg │ │ ├── fonts │ │ │ ├── socicon.eot │ │ │ ├── socicon.ttf │ │ │ ├── socicon.woff │ │ │ ├── socicon.woff2 │ │ │ ├── Raleway-Bold.ttf │ │ │ ├── Raleway-Thin.ttf │ │ │ ├── tertre-xbol.otf │ │ │ ├── Raleway-Black.ttf │ │ │ ├── Raleway-Italic.ttf │ │ │ ├── Raleway-Light.ttf │ │ │ ├── Raleway-Medium.ttf │ │ │ ├── Raleway-ExtraBold.ttf │ │ │ ├── Raleway-Regular.ttf │ │ │ ├── Raleway-SemiBold.ttf │ │ │ ├── Raleway-BlackItalic.ttf │ │ │ ├── Raleway-BoldItalic.ttf │ │ │ ├── Raleway-ExtraLight.ttf │ │ │ ├── Raleway-LightItalic.ttf │ │ │ ├── Raleway-ThinItalic.ttf │ │ │ ├── Raleway-MediumItalic.ttf │ │ │ ├── Raleway-SemiBoldItalic.ttf │ │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ │ └── Raleway-ExtraLightItalic.ttf │ │ └── icon │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── ms-icon-144x144.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ └── android-icon-192x192.png │ ├── scss │ │ ├── conf │ │ │ └── conf.scss │ │ ├── bootstrap-overrides │ │ │ ├── overrides.scss │ │ │ └── _dropdown.scss │ │ ├── initial.scss │ │ ├── _ionicons.scss │ │ └── _modal.scss │ ├── README.md │ └── components │ │ ├── app.component.html │ │ └── pages │ │ └── mp-home │ │ └── mp-home.component.tns.scss ├── freelancer │ ├── modules │ │ ├── m-hello-world │ │ │ └── components │ │ │ │ ├── m-about.component.scss │ │ │ │ ├── m-form.component.scss │ │ │ │ ├── m-about.component.tns.html │ │ │ │ ├── m-about.component.tns.scss │ │ │ │ ├── m-form.component.tns.html │ │ │ │ ├── m-form.component.tns.scss │ │ │ │ ├── m-markup.component.scss │ │ │ │ ├── m-markup.component.tns.html │ │ │ │ ├── m-markup.component.tns.scss │ │ │ │ ├── m-portfolio.component.scss │ │ │ │ ├── m-welcome.component.scss │ │ │ │ ├── m-portfolio.component.tns.html │ │ │ │ ├── m-portfolio.component.tns.scss │ │ │ │ ├── m-welcome.component.tns.html │ │ │ │ ├── m-welcome.component.tns.scss │ │ │ │ ├── m-hello-world.component.tns.scss │ │ │ │ ├── m-hello-world.component.tns.ios.scss │ │ │ │ ├── m-hello-world.component.html │ │ │ │ ├── m-hello-world.component.scss │ │ │ │ ├── m-hello-world.component.tns.html │ │ │ │ └── m-about.component.html │ │ ├── shared │ │ │ └── components │ │ │ │ └── toolbar │ │ │ │ ├── toolbar.component.html │ │ │ │ └── toolbar.component.scss │ │ └── i18n │ │ │ └── components │ │ │ └── lang-switcher.component.scss │ └── assets │ │ ├── img │ │ ├── profile.png │ │ └── portfolio │ │ │ ├── cake.png │ │ │ ├── game.png │ │ │ ├── safe.png │ │ │ ├── cabin.png │ │ │ ├── circus.png │ │ │ └── submarine.png │ │ └── flags │ │ ├── 4x3 │ │ ├── bd.svg │ │ ├── de.svg │ │ ├── am.svg │ │ ├── bq.svg │ │ ├── gb-sct.svg │ │ ├── lu.svg │ │ ├── pl.svg │ │ ├── gb-eng.svg │ │ ├── mc.svg │ │ ├── ua.svg │ │ ├── dk.svg │ │ ├── at.svg │ │ ├── fi.svg │ │ ├── id.svg │ │ ├── lv.svg │ │ ├── ae.svg │ │ ├── pe.svg │ │ ├── ma.svg │ │ ├── gf.svg │ │ ├── bw.svg │ │ ├── ne.svg │ │ ├── ng.svg │ │ ├── ga.svg │ │ ├── ml.svg │ │ ├── mv.svg │ │ ├── sl.svg │ │ ├── td.svg │ │ ├── ye.svg │ │ ├── ci.svg │ │ ├── co.svg │ │ ├── dz.svg │ │ ├── gh.svg │ │ ├── mq.svg │ │ └── ru.svg │ │ └── 1x1 │ │ ├── bd.svg │ │ ├── bq.svg │ │ ├── pl.svg │ │ ├── am.svg │ │ ├── gb-sct.svg │ │ ├── lu.svg │ │ ├── de.svg │ │ ├── dk.svg │ │ ├── at.svg │ │ ├── gb-eng.svg │ │ ├── fi.svg │ │ ├── id.svg │ │ ├── ua.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── lv.svg │ │ ├── ae.svg │ │ ├── pe.svg │ │ ├── gf.svg │ │ ├── ng.svg │ │ ├── bw.svg │ │ ├── ne.svg │ │ ├── td.svg │ │ ├── ml.svg │ │ ├── th.svg │ │ ├── wf.svg │ │ └── ye.svg ├── seed-theme │ ├── modules │ │ ├── i18n │ │ │ └── components │ │ │ │ ├── lang-switcher.component.scss │ │ │ │ ├── lang-switcher.component.tns.html │ │ │ │ ├── lang-switcher.component.html │ │ │ │ ├── lang-switcher.component.tns.android.scss │ │ │ │ └── lang-switcher.component.tns.ios.scss │ │ ├── m-hello-world │ │ │ └── components │ │ │ │ ├── m-about.component.scss │ │ │ │ ├── m-form.component.scss │ │ │ │ ├── m-about.component.tns.html │ │ │ │ ├── m-about.component.tns.scss │ │ │ │ ├── m-form.component.tns.html │ │ │ │ ├── m-form.component.tns.scss │ │ │ │ ├── m-markup.component.scss │ │ │ │ ├── m-markup.component.tns.html │ │ │ │ ├── m-markup.component.tns.scss │ │ │ │ ├── m-portfolio.component.scss │ │ │ │ ├── m-welcome.component.scss │ │ │ │ ├── m-portfolio.component.tns.html │ │ │ │ ├── m-portfolio.component.tns.scss │ │ │ │ ├── m-welcome.component.tns.html │ │ │ │ ├── m-welcome.component.tns.scss │ │ │ │ ├── m-hello-world.component.tns.scss │ │ │ │ ├── m-hello-world.component.tns.ios.scss │ │ │ │ ├── m-hello-world.component.html │ │ │ │ ├── m-hello-world.component.scss │ │ │ │ ├── m-hello-world.component.tns.html │ │ │ │ └── m-about.component.html │ │ └── shared │ │ │ └── components │ │ │ ├── toolbar │ │ │ ├── toolbar.component.html │ │ │ └── toolbar.component.tns.scss │ │ │ └── navbar │ │ │ └── navbar.component.tns.scss │ ├── scss │ │ ├── _variables.scss │ │ ├── app.ios.scss │ │ └── app.android.scss │ ├── components │ │ ├── home │ │ │ └── home.component.tns.scss │ │ ├── app.component.html │ │ ├── pages │ │ │ └── gv-home │ │ │ │ ├── gv-home.component.scss │ │ │ │ └── gv-home.component.tns.scss │ │ └── about │ │ │ ├── about.component.tns.scss │ │ │ └── about.component.scss │ ├── README.md │ └── assets │ │ └── dummy-theme-asset-file └── bad-seed-theme │ ├── modules │ ├── m-hello-world │ │ └── components │ │ │ ├── m-about.component.scss │ │ │ ├── m-form.component.scss │ │ │ ├── m-markup.component.scss │ │ │ ├── m-about.component.tns.html │ │ │ ├── m-about.component.tns.scss │ │ │ ├── m-form.component.tns.html │ │ │ ├── m-form.component.tns.scss │ │ │ ├── m-markup.component.tns.html │ │ │ ├── m-markup.component.tns.scss │ │ │ ├── m-portfolio.component.scss │ │ │ ├── m-welcome.component.scss │ │ │ ├── m-welcome.component.tns.html │ │ │ ├── m-welcome.component.tns.scss │ │ │ ├── m-portfolio.component.tns.html │ │ │ ├── m-portfolio.component.tns.scss │ │ │ ├── m-hello-world.component.tns.scss │ │ │ ├── m-hello-world.component.tns.ios.scss │ │ │ ├── m-hello-world.component.html │ │ │ ├── m-hello-world.component.scss │ │ │ ├── m-hello-world.component.tns.html │ │ │ └── m-about.component.html │ ├── shared │ │ └── components │ │ │ ├── toolbar │ │ │ ├── toolbar.component.html │ │ │ └── toolbar.component.tns.scss │ │ │ └── navbar │ │ │ ├── navbar.component.html │ │ │ └── navbar.component.tns.scss │ └── i18n │ │ └── components │ │ ├── lang-switcher.component.tns.html │ │ ├── lang-switcher.component.tns.scss │ │ ├── lang-switcher.component.html │ │ ├── lang-switcher.component.tns.android.scss │ │ ├── lang-switcher.component.tns.ios.scss │ │ └── lang-switcher.component.scss │ ├── scss │ ├── _variables.scss │ ├── app.ios.scss │ └── app.android.scss │ ├── README.md │ └── components │ ├── home │ └── home.component.tns.scss │ ├── about │ ├── about.component.tns.scss │ └── about.component.scss │ └── pages │ └── gv-home │ └── gv-home.component.tns.scss ├── nativescript └── src │ ├── vendor-platform.ios.ts │ ├── App_Resources │ ├── iOS │ │ └── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ ├── icon-29.png │ │ │ ├── icon-40.png │ │ │ ├── icon-50.png │ │ │ ├── icon-57.png │ │ │ ├── icon-72.png │ │ │ ├── icon-76.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ │ ├── LaunchImage.launchimage │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ └── Default-Portrait@2x.png │ │ │ ├── LaunchScreen.Center.imageset │ │ │ ├── LaunchScreen-Center.png │ │ │ └── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen.AspectFill.imageset │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ └── LaunchScreen-AspectFill@2x.png │ └── Android │ │ ├── values-v21 │ │ └── colors.xml │ │ ├── drawable-hdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-ldpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-mdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xxhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ ├── drawable-xxxhdpi │ │ ├── icon.png │ │ ├── logo.png │ │ └── background.png │ │ └── values │ │ └── colors.xml │ ├── app.ts │ └── mobile │ └── core │ ├── index.ts │ └── services │ └── storage-native.service.ts ├── tools ├── tasks │ ├── seed │ │ ├── noop.ts │ │ ├── serve.coverage.ts │ │ ├── serve.docs.ts │ │ ├── watch.test.ts │ │ ├── server.prod.ts │ │ ├── server.start.ts │ │ ├── watch.dev.ts │ │ ├── webdriver.ts │ │ ├── clean.dev.ts │ │ ├── clean.e2e.ts │ │ ├── clean.tns.ts │ │ ├── watch.e2e.ts │ │ ├── clean.coverage.ts │ │ ├── clean.prod.ts │ │ ├── clean.all.ts │ │ └── karma.run.ts │ ├── typescript_task.ts │ ├── css_task.ts │ └── assets_task.ts ├── manual_typings │ ├── seed │ │ ├── operators.d.ts │ │ ├── slash.d.ts │ │ ├── tildify.d.ts │ │ ├── open.d.ts │ │ ├── autoprefixer.d.ts │ │ ├── istream.d.ts │ │ ├── merge-stream.d.ts │ │ └── karma.d.ts │ └── project │ │ └── sample.package.d.ts ├── .gitignore ├── utils │ ├── project │ │ └── sample_util.ts │ ├── project.utils.ts │ └── seed │ │ └── karma.start.ts ├── env │ ├── env-config.interface.ts │ ├── dev.ts │ ├── prod.ts │ └── base.ts ├── config │ └── project.tasks.json ├── config.ts └── utils.ts ├── src ├── client │ ├── app │ │ ├── modules │ │ │ ├── i18n │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── category.common.ts │ │ │ │ ├── actions │ │ │ │ │ └── index.ts │ │ │ │ ├── effects │ │ │ │ │ └── index.ts │ │ │ │ ├── states │ │ │ │ │ └── index.ts │ │ │ │ ├── reducers │ │ │ │ │ └── index.ts │ │ │ │ ├── testing │ │ │ │ │ └── mocks │ │ │ │ │ │ └── ng2-translate-loader.mock.ts │ │ │ │ ├── components │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── sample │ │ │ │ ├── effects │ │ │ │ │ └── index.ts │ │ │ │ ├── states │ │ │ │ │ └── index.ts │ │ │ │ ├── actions │ │ │ │ │ └── index.ts │ │ │ │ ├── reducers │ │ │ │ │ └── index.ts │ │ │ │ ├── services │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── electron │ │ │ │ ├── services │ │ │ │ │ └── index.ts │ │ │ │ ├── utils │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── core │ │ │ │ ├── utils │ │ │ │ │ └── index.ts │ │ │ │ ├── services │ │ │ │ │ └── logging │ │ │ │ │ │ └── index.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── ilang.ts │ │ │ │ │ ├── iwindow.ts │ │ │ │ │ └── iconsole.ts │ │ │ │ ├── index.ts │ │ │ │ ├── directives │ │ │ │ │ └── index.ts │ │ │ │ └── testing │ │ │ │ │ └── index.ts │ │ │ ├── shared │ │ │ │ └── index.ts │ │ │ ├── analytics │ │ │ │ ├── index.ts │ │ │ │ └── services │ │ │ │ │ └── index.ts │ │ │ └── test │ │ │ │ └── index.ts │ │ ├── shared │ │ │ └── modules │ │ │ │ ├── m-mprj │ │ │ │ ├── states │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── components │ │ │ │ │ └── index.ts │ │ │ │ └── m-ng2-admin │ │ │ │ ├── components │ │ │ │ ├── baCard │ │ │ │ │ ├── index.ts │ │ │ │ │ └── bgMetrics.ts │ │ │ │ ├── baMenu │ │ │ │ │ ├── index.ts │ │ │ │ │ └── components │ │ │ │ │ │ └── baMenuItem │ │ │ │ │ │ └── index.ts │ │ │ │ ├── baAmChart │ │ │ │ │ └── index.ts │ │ │ │ ├── baBackTop │ │ │ │ │ └── index.ts │ │ │ │ ├── baCheckbox │ │ │ │ │ └── index.ts │ │ │ │ ├── baMsgCenter │ │ │ │ │ └── index.ts │ │ │ │ ├── baPageTop │ │ │ │ │ └── index.ts │ │ │ │ ├── baSidebar │ │ │ │ │ └── index.ts │ │ │ │ ├── baContentTop │ │ │ │ │ └── index.ts │ │ │ │ ├── baChartistChart │ │ │ │ │ └── index.ts │ │ │ │ ├── baFileUploader │ │ │ │ │ └── index.ts │ │ │ │ ├── baFullCalendar │ │ │ │ │ └── index.ts │ │ │ │ ├── baMultiCheckbox │ │ │ │ │ └── index.ts │ │ │ │ └── baPictureUploader │ │ │ │ │ └── index.ts │ │ │ │ ├── services │ │ │ │ ├── baMenu │ │ │ │ │ └── index.ts │ │ │ │ ├── baImageLoader │ │ │ │ │ └── index.ts │ │ │ │ ├── baThemeSpinner │ │ │ │ │ └── index.ts │ │ │ │ ├── baThemePreloader │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── pipes │ │ │ │ ├── baAppPicture │ │ │ │ │ └── index.ts │ │ │ │ ├── baProfilePicture │ │ │ │ │ └── index.ts │ │ │ │ ├── baKameleonPicture │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── directives │ │ │ │ ├── baThemeRun │ │ │ │ │ └── index.ts │ │ │ │ ├── baSlimScroll │ │ │ │ │ └── index.ts │ │ │ │ ├── baScrollPosition │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── validators │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ └── components │ │ │ └── pages │ │ │ └── mp-home │ │ │ └── mp-home.routes.ts │ ├── assets │ │ ├── data.json │ │ ├── logo.icns │ │ ├── logo.ico │ │ └── favicon │ │ │ ├── favicon-DEV.ico │ │ │ └── favicon-PROD.ico │ ├── system-config.ts │ ├── package.json │ └── ngsw-manifest.json └── e2e │ └── index.ts ├── tslint.json ├── test-config.js └── .editorconfig /contributions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/new-age/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nativescript/src/vendor-platform.ios.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/ng2app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-mprj/components/mp-link.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-about.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/i18n/components/lang-switcher.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-about.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-about.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-markup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-about.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-about.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-form.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-form.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-markup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-markup.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-markup.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-portfolio.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-welcome.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/shared/components/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/shared/components/toolbar/toolbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-about.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-about.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-form.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-form.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-markup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-markup.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-markup.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-portfolio.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-welcome.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tasks/seed/noop.ts: -------------------------------------------------------------------------------- 1 | export = (done: any) => { 2 | done(); 3 | }; 4 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './category.common'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/effects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sample.effect'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/states/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sample.state'; 2 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-about.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-about.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-form.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-form.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-markup.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-markup.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-portfolio.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-welcome.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-welcome.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-welcome.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-portfolio.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-portfolio.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-welcome.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-welcome.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-portfolio.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-portfolio.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-welcome.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-welcome.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/app/modules/electron/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './event.service'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/electron/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './desktop-config'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multilingual.action'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/effects/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multilingual.effect'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/states/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multilingual.state'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './name-list.action'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/reducers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sample.reducer'; 2 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-portfolio.component.tns.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-portfolio.component.tns.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/seed-theme/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $primary: #106cc8; 2 | $secondary: #28739e; 3 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/operators.d.ts: -------------------------------------------------------------------------------- 1 | import '../../../src/client/app/operators'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/reducers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multilingual.reducer'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-mprj/states/index.ts: -------------------------------------------------------------------------------- 1 | export * from './rankings.state'; 2 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $primary: #101c48; 2 | $secondary: #28235e; 3 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/service-worker.js: -------------------------------------------------------------------------------- 1 | // This file is intentionally without code. 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baFileUploader/baFileUploader.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/service-worker.js: -------------------------------------------------------------------------------- 1 | // This file is intentionally without code. 2 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baFileUploader/baFileUploader.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.js.map 3 | !install.js 4 | env/env-config.interface.metadata.json 5 | -------------------------------------------------------------------------------- /tools/utils/project/sample_util.ts: -------------------------------------------------------------------------------- 1 | export function myUtil() { 2 | // Code goes here 3 | } 4 | -------------------------------------------------------------------------------- /src/client/app/modules/core/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | export * from './type'; 3 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-mprj/index.ts: -------------------------------------------------------------------------------- 1 | // components 2 | export * from './components/index'; 3 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tools/config/seed.tslint.json", 3 | "rules": { 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/common/category.common.ts: -------------------------------------------------------------------------------- 1 | export const CATEGORY: string = 'Multilingual'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baCard.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baMenu.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/services/baMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baMenu.service'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/electron/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services/index'; 2 | export * from './utils/index'; 3 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/pipes/baAppPicture/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baAppPicture.pipe'; 2 | -------------------------------------------------------------------------------- /test-config.js: -------------------------------------------------------------------------------- 1 | // Load our SystemJS configuration. 2 | System.config({ 3 | baseURL: '/base/' 4 | }); 5 | 6 | -------------------------------------------------------------------------------- /tools/env/env-config.interface.ts: -------------------------------------------------------------------------------- 1 | export { EnvConfig } from '../../src/client/app/modules/core/utils/config'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components/index'; 2 | export * from './shared.module'; 3 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baAmChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baAmChart.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baBackTop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baBackTop.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baCheckbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baCheckbox.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baMsgCenter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baMsgCenter.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baPageTop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baPageTop.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baSidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baSidebar.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/directives/baThemeRun/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baThemeRun.directive'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/pipes/baProfilePicture/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baProfilePicture.pipe'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/services/baImageLoader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baImageLoader.service'; 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/i18n/components/lang-switcher.component.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/i18n/components/lang-switcher.component.scss: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/scss/conf/conf.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; 2 | @import 'colorSchemes/ng2'; 3 | @import 'variables'; 4 | -------------------------------------------------------------------------------- /themes/ng2-admin/scss/bootstrap-overrides/overrides.scss: -------------------------------------------------------------------------------- 1 | @import "card"; 2 | @import "dropdown"; 3 | @import "tabs"; -------------------------------------------------------------------------------- /themes/ng2-admin/scss/conf/conf.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; 2 | @import 'colorSchemes/ng2'; 3 | @import 'variables'; 4 | -------------------------------------------------------------------------------- /src/client/app/modules/analytics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services/index'; 2 | export * from './analytics.module'; 3 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/testing/mocks/ng2-translate-loader.mock.ts: -------------------------------------------------------------------------------- 1 | export class TranslateLoaderMock { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baContentTop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baContentTop.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/directives/baSlimScroll/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baSlimScroll.directive'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/pipes/baKameleonPicture/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baKameleonPicture.pipe'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/services/baThemeSpinner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baThemeSpinner.service'; 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/i18n/components/lang-switcher.component.tns.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/navbar/navbar.component.tns.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/navbar/navbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/toolbar/toolbar.component.scss: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/scss/bootstrap-overrides/overrides.scss: -------------------------------------------------------------------------------- 1 | @import "card"; 2 | @import "dropdown"; 3 | @import "tabs"; 4 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baChartistChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baChartistChart.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baFileUploader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baFileUploader.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baFullCalendar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baFullCalendar.component'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baMultiCheckbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baMultiCheckbox.component' 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/directives/baScrollPosition/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baScrollPosition.directive'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/services/baThemePreloader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baThemePreloader.service'; 2 | -------------------------------------------------------------------------------- /src/client/assets/data.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Edsger Dijkstra", 3 | "Donald Knuth", 4 | "Alan Turing", 5 | "Grace Hopper" 6 | ] 7 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baMenu/baMenu.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../scss/conf/conf'; 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/toolbar/toolbar.component.tns.html: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/shared/components/toolbar/toolbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | // this file is not used, but must be kept 2 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baMenu/baMenu.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../scss/conf/conf'; 2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baPictureUploader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baPictureUploader.component'; 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/README.md: -------------------------------------------------------------------------------- 1 | # Descrição 2 | 3 | Theme para o projeto **Edificando o Controle Interno**, baseada na **ng2-admin**. -------------------------------------------------------------------------------- /themes/mprj-clean/scss/initial.scss: -------------------------------------------------------------------------------- 1 | @import 'conf/conf'; 2 | @import 'preloader'; 3 | @import 'ionicons'; 4 | @import 'fonts'; 5 | -------------------------------------------------------------------------------- /themes/ng2-admin/scss/initial.scss: -------------------------------------------------------------------------------- 1 | @import 'conf/conf'; 2 | @import 'preloader'; 3 | @import 'ionicons'; 4 | @import 'fonts'; 5 | -------------------------------------------------------------------------------- /tools/config/project.tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "test": [ 3 | "tslint", 4 | "build.test", 5 | "karma.run" 6 | ] 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baMenu/components/baMenuItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baMenuItem.component'; 2 | -------------------------------------------------------------------------------- /src/client/assets/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/src/client/assets/logo.icns -------------------------------------------------------------------------------- /src/client/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/src/client/assets/logo.ico -------------------------------------------------------------------------------- /src/client/system-config.ts: -------------------------------------------------------------------------------- 1 | declare var System: SystemJSLoader.System; 2 | 3 | System.config(JSON.parse('<%= SYSTEM_CONFIG_DEV %>')); 4 | -------------------------------------------------------------------------------- /src/client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "edificando-o-controle-interno", 3 | "version": "0.1.0", 4 | "main": "main.desktop.js" 5 | } 6 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-hello-world.component.tns.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/validators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './email.validator'; 2 | export * from './equalPasswords.validator'; 3 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-hello-world.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .m-hello-world { 2 | background-color: #4f92d5; 3 | } 4 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-hello-world.component.html: -------------------------------------------------------------------------------- 1 |

2 | {{ hello }} {{ world }} 3 |

4 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baAmChart/baAmChart.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/ammap3/ammap/ammap"; 2 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-hello-world.component.html: -------------------------------------------------------------------------------- 1 |

2 | {{ hello }} {{ world }} 3 |

4 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-hello-world.component.html: -------------------------------------------------------------------------------- 1 |

2 | {{ hello }} {{ world }} 3 |

4 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/Mais.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/Mais.png -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baAmChart/baAmChart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baAmChart/baAmChart.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/ammap3/ammap/ammap"; 2 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baMenu/components/baMenuItem/baMenuItem.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../../../scss/conf/conf'; 2 | -------------------------------------------------------------------------------- /themes/new-age/assets/img/bg-cta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/new-age/assets/img/bg-cta.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/css/main.scss: -------------------------------------------------------------------------------- 1 | @import "../../../node_modules/normalize.css/normalize.css"; 2 | @import "../scss/theme"; 3 | @import "../scss/initial"; 4 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baAmChart/baAmChart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baMenu/components/baMenuItem/baMenuItem.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../../../scss/conf/conf'; 2 | -------------------------------------------------------------------------------- /src/client/app/modules/core/services/logging/index.ts: -------------------------------------------------------------------------------- 1 | export * from './console.target'; 2 | export * from './log.target'; 3 | export * from './log.service'; 4 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/sky-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/sky-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/blue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/blue-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/blur-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/blur-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/sky-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/sky-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/scss/bootstrap-overrides/_dropdown.scss: -------------------------------------------------------------------------------- 1 | .dropdown-item { 2 | line-height: 1; 3 | } 4 | 5 | .dropdown-menu { 6 | font-size: inherit; 7 | } 8 | -------------------------------------------------------------------------------- /tools/config.ts: -------------------------------------------------------------------------------- 1 | import { ProjectConfig } from './config/project.config'; 2 | 3 | const config: ProjectConfig = new ProjectConfig(); 4 | export default config; 5 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/slash.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'slash' { 2 | function slash(path: string): string; 3 | module slash {} 4 | export = slash; 5 | } 6 | -------------------------------------------------------------------------------- /src/client/assets/favicon/favicon-DEV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/src/client/assets/favicon/favicon-DEV.ico -------------------------------------------------------------------------------- /src/client/assets/favicon/favicon-PROD.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/src/client/assets/favicon/favicon-PROD.ico -------------------------------------------------------------------------------- /themes/bad-seed-theme/README.md: -------------------------------------------------------------------------------- 1 | TODO documentation. 2 | 3 | This is the black version of the standard 'seed-theme', 4 | which implements "single page hash navigation" -------------------------------------------------------------------------------- /themes/freelancer/assets/img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/profile.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/socicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/socicon.eot -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/socicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/socicon.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/blue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/blue-bg.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/blur-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/blur-bg.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/chernika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/chernika.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/green-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/green-bg.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/logo_mprj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/logo_mprj.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/peachy-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/peachy-bg.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/scss/_ionicons.scss: -------------------------------------------------------------------------------- 1 | $ionicons-font-path: "../../../node_modules/ionicons/fonts"; 2 | 3 | @import "../../../node_modules/ionicons/scss/ionicons"; 4 | -------------------------------------------------------------------------------- /themes/mprj-clean/scss/bootstrap-overrides/_dropdown.scss: -------------------------------------------------------------------------------- 1 | .dropdown-item { 2 | line-height: 1; 3 | } 4 | 5 | .dropdown-menu { 6 | font-size: inherit; 7 | } 8 | -------------------------------------------------------------------------------- /themes/new-age/assets/img/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/new-age/assets/img/bg-pattern.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/fonts/socicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/fonts/socicon.eot -------------------------------------------------------------------------------- /themes/ng2-admin/assets/fonts/socicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/fonts/socicon.ttf -------------------------------------------------------------------------------- /themes/ng2-admin/assets/fonts/socicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/fonts/socicon.woff -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/chernika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/chernika.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/green-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/green-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/peachy-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/peachy-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/scss/_ionicons.scss: -------------------------------------------------------------------------------- 1 | $ionicons-font-path: "../../../node_modules/ionicons/fonts"; 2 | 3 | @import "../../../node_modules/ionicons/scss/ionicons"; 4 | -------------------------------------------------------------------------------- /src/client/app/modules/core/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './iconsole'; 2 | export * from './ilang'; 3 | export * from './istorage'; 4 | export * from './iwindow'; 5 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/socicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/socicon.woff -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/socicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/socicon.woff2 -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/logo_mprj2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/logo_mprj2.png -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baChartistChart/baChartistChart.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/chartist/dist/chartist"; 2 | -------------------------------------------------------------------------------- /themes/new-age/assets/img/demo-screen-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/new-age/assets/img/demo-screen-1.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/fonts/socicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/fonts/socicon.woff2 -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/transblue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/transblue-bg.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baChartistChart/baChartistChart.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/chartist/dist/chartist"; 2 | -------------------------------------------------------------------------------- /themes/seed-theme/components/home/home.component.tns.scss: -------------------------------------------------------------------------------- 1 | .love-tech { 2 | font-size: 28; 3 | font-weight: bold; 4 | color: purple; 5 | margin: 8 0 8 0; 6 | } 7 | -------------------------------------------------------------------------------- /tools/env/dev.ts: -------------------------------------------------------------------------------- 1 | import { EnvConfig } from './env-config.interface'; 2 | 3 | const DevConfig: EnvConfig = { 4 | ENV: 'DEV' 5 | }; 6 | 7 | export = DevConfig; 8 | 9 | -------------------------------------------------------------------------------- /tools/env/prod.ts: -------------------------------------------------------------------------------- 1 | import { EnvConfig } from './env-config.interface'; 2 | 3 | const ProdConfig: EnvConfig = { 4 | ENV: 'PROD' 5 | }; 6 | 7 | export = ProdConfig; 8 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/tildify.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'tildify' { 2 | function tildify(path: string): string; 3 | module tildify {} 4 | export = tildify; 5 | } 6 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /src/client/app/modules/core/interfaces/ilang.ts: -------------------------------------------------------------------------------- 1 | // standard language interface 2 | export interface ILang { 3 | code: string; 4 | flag: string; 5 | title: string; 6 | } 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/cake.png -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/game.png -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/safe.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Bold.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Thin.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/tertre-xbol.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/tertre-xbol.otf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/favicon-96x96.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/feed/genom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/feed/genom.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/blur-bg-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/blur-bg-mobile.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/logo_mini_mprj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/logo_mini_mprj.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/no-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/no-photo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/palette.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/transblue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/transblue-bg.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baFullCalendar/baFullCalendar.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/fullcalendar/dist/fullcalendar"; 2 | -------------------------------------------------------------------------------- /themes/new-age/components/app.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/favicon-96x96.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/feed/genom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/feed/genom.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/my-app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/my-app-logo.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/blur-bg-blurred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/blur-bg-blurred.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/blur-bg-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/blur-bg-mobile.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/no-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/no-photo.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/palette.png -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baFullCalendar/baFullCalendar.component.scss: -------------------------------------------------------------------------------- 1 | @import "../../../../../../../../node_modules/fullcalendar/dist/fullcalendar"; 2 | -------------------------------------------------------------------------------- /themes/seed-theme/README.md: -------------------------------------------------------------------------------- 1 | TODO documentation. 2 | 3 | State this theme is based on the standard angular-seed-* files 4 | 5 | ... and tell which files comes from which places -------------------------------------------------------------------------------- /themes/seed-theme/components/app.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/cabin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/cabin.png -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/circus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/circus.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Black.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Italic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Light.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Medium.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/my-app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/my-app-logo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Nick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Nick.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Vlad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Vlad.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/blur-bg-blurred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/blur-bg-blurred.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Areal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Areal.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Carmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Carmo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Macaé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Macaé.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Magé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Magé.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Piraí.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Piraí.png -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baFullCalendar/baFullCalendar.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-57x57.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-76x76.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Nasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Nasta.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Nick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Nick.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Vlad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Vlad.png -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baFullCalendar/baFullCalendar.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-mprj/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mp-link.component'; 2 | export * from './mp-mapa-interativo.component'; 3 | export * from './mp-subscribe'; 4 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/shared/components/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- 1 |

Angular Seed Advanced Mutuatech

2 | 3 |
4 | -------------------------------------------------------------------------------- /themes/freelancer/assets/img/portfolio/submarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/freelancer/assets/img/portfolio/submarine.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-114x114.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-120x120.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-152x152.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-180x180.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-57x57.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/apple-icon-76x76.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Andrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Andrey.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Kostya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Kostya.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Nasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Nasta.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/todo/check-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/todo/check-icon.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Aperibé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Aperibé.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Araruama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Araruama.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cambuci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cambuci.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cordeiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cordeiro.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Itaboraí.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Itaboraí.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Itaguaí.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Itaguaí.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Italva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Italva.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Itaocara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Itaocara.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Itatiaia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Itatiaia.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Japeri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Japeri.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Macuco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Macuco.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Maricá.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Maricá.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Mendes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Mendes.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Mesquita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Mesquita.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Miracema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Miracema.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Niterói.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Niterói.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Paraty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Paraty.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Quatis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Quatis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Quissamã.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Quissamã.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Resende.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Resende.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Sapucaia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Sapucaia.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Tanguá.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Tanguá.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Valença.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Valença.png -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baChartistChart/baChartistChart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-114x114.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-120x120.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-152x152.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/apple-icon-180x180.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Andrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Andrey.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Kostya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Kostya.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/todo/check-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/todo/check-icon.png -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baChartistChart/baChartistChart.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/shared/components/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- 1 |

Angular Seed Advanced Mutuatech

2 | 3 |
4 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/directives/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baScrollPosition/index'; 2 | export * from './baThemeRun/index'; 3 | export * from './baSlimScroll/index'; 4 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baProfilePicture/index'; 2 | export * from './baAppPicture/index'; 3 | export * from './baKameleonPicture/index'; 4 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/scss/app.ios.scss: -------------------------------------------------------------------------------- 1 | @import 'common'; 2 | @import '~nativescript-theme-core/scss/platforms/index.ios'; 3 | 4 | // Place any CSS rules you want to apply only on iOS here 5 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/profile/Alexander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/profile/Alexander.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/banner.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo01.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo03.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo04.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo05.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo06.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/typography/typo07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/typography/typo07.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Bom Jardim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Bom Jardim.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cabo Frio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cabo Frio.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cantagalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cantagalo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Carapebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Carapebus.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Guapimirim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Guapimirim.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Itaperuna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Itaperuna.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Natividade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Natividade.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Nilópolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Nilópolis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Paracambi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Paracambi.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Petrópolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Petrópolis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Pinheiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Pinheiral.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Porto Real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Porto Real.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Queimados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Queimados.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Rio Bonito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Rio Bonito.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Rio Claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Rio Claro.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Saquarema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Saquarema.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Seropédica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Seropédica.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Sumidouro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Sumidouro.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Três Rios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Três Rios.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Varre-Sai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Varre-Sai.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Vassouras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Vassouras.png -------------------------------------------------------------------------------- /themes/mprj-clean/components/app.component.html: -------------------------------------------------------------------------------- 1 | // this file is not used for web/desktop, but must be kept 2 | // however, it's counterpart, app.component.tns.html is used for mobile builds 3 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/profile/Alexander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/profile/Alexander.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/banner.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo01.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo03.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo04.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo05.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo06.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/typography/typo07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/typography/typo07.png -------------------------------------------------------------------------------- /themes/seed-theme/scss/app.ios.scss: -------------------------------------------------------------------------------- 1 | @import 'common'; 2 | @import '~nativescript-theme-core/scss/platforms/index.ios'; 3 | 4 | // Place any CSS rules you want to apply only on iOS here 5 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Barra Mansa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Barra Mansa.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Belford Roxo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Belford Roxo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Duas Barras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Duas Barras.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Iguaba Grande.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Iguaba Grande.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Mangaratiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Mangaratiba.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Nova Friburgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Nova Friburgo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Nova Iguaçu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Nova Iguaçu.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Porciúncula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Porciúncula.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Silva Jardim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Silva Jardim.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São Fidélis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São Fidélis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São Gonçalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São Gonçalo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Teresópolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Teresópolis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Volta Redonda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Volta Redonda.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/minus.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/panUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/panUp.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/plus.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/xIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/xIcon.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/feed/my-little-kitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/feed/my-little-kitten.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/export.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/minus.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/panUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/panUp.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/plus.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/xIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/xIcon.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/xIconH.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/xIconH.gif -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/components/baCard/bgMetrics.ts: -------------------------------------------------------------------------------- 1 | export interface BgMetrics { 2 | width:number; 3 | height:number; 4 | positionX:number; 5 | positionY:number; 6 | } 7 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/fonts/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/fonts/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/feed/my-little-kitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/feed/my-little-kitten.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/feed/new-york-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/feed/new-york-location.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Angra dos Reis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Angra dos Reis.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Arraial do Cabo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Arraial do Cabo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Barra do Piraí.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Barra do Piraí.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cardoso Moreira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cardoso Moreira.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Duque de Caxias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Duque de Caxias.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Laje do Muriaé.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Laje do Muriaé.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Miguel Pereira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Miguel Pereira.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Paraíba do Sul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Paraíba do Sul.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Paty do Alferes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Paty do Alferes.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Rio das Flores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Rio das Flores.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Rio das Ostras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Rio das Ostras.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Rio de Janeiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Rio de Janeiro.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São José de Ubá.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São José de Ubá.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/arrowUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/arrowUp.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/export.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/panDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/panDown.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/panLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/panLeft.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/xIconH.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/xIconH.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/feed/new-york-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/feed/new-york-location.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/03_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/03_blue.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/arrowUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/arrowUp.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/homeIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/homeIcon.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/panDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/panDown.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/panLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/panLeft.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/panRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/panRight.gif -------------------------------------------------------------------------------- /themes/seed-theme/scss/app.android.scss: -------------------------------------------------------------------------------- 1 | @import 'common'; 2 | @import '~nativescript-theme-core/scss/platforms/index.android'; 3 | 4 | // Place any CSS rules you want to apply only on Android here 5 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /themes/bad-seed-theme/scss/app.android.scss: -------------------------------------------------------------------------------- 1 | @import 'common'; 2 | @import '~nativescript-theme-core/scss/platforms/index.android'; 3 | 4 | // Place any CSS rules you want to apply only on Android here 5 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/feed/vader-and-me-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/feed/vader-and-me-preview.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/03_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/03_blue.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/04_peachy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/04_peachy.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Armação dos Búzios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Armação dos Búzios.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Casimiro de Abreu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Casimiro de Abreu.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São João da Barra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São João da Barra.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São João de Meriti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São João de Meriti.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Trajano de Moraes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Trajano de Moraes.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/arrowDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/arrowDown.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/homeIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/homeIcon.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/panRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/panRight.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/feed/vader-and-me-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/feed/vader-and-me-preview.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/01_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/01_default.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/04_peachy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/04_peachy.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/arrowDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/arrowDown.gif -------------------------------------------------------------------------------- /tools/utils/project.utils.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This barrel file provides the exports for the project specific utilities. 3 | */ 4 | export * from './project/sample_util'; 5 | export * from './project/server'; 6 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/01_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/01_default.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/05_material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/05_material.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Cachoeiras de Macacu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Cachoeiras de Macacu.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Conceição de Macabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Conceição de Macabu.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Santa Maria Madalena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Santa Maria Madalena.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São Pedro da Aldeia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São Pedro da Aldeia.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/05_material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/05_material.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/06_transblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/06_transblue.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/ammap/homeIconWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/ammap/homeIconWhite.gif -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-icon.png -------------------------------------------------------------------------------- /tools/utils.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This barrel file provides the export for the utilities provided by the project and the seed. 3 | */ 4 | export * from './utils/project.utils'; 5 | export * from './utils/seed.utils'; 6 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/02_transparent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/02_transparent.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/app/skin-thumbnails/06_transblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/app/skin-thumbnails/06_transblue.jpg -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Bom Jesus do Itabapoana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Bom Jesus do Itabapoana.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Campos dos Goytacazes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Campos dos Goytacazes.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Santo Antônio de Pádua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Santo Antônio de Pádua.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São Sebastião do Alto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São Sebastião do Alto.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/ammap/homeIconWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/ammap/homeIconWhite.gif -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-icon.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-shadow.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/app/skin-thumbnails/02_transparent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/app/skin-thumbnails/02_transparent.jpg -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-icon-2x.png -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/ng2-admin/assets/img/theme/vendor/leaflet/marker-shadow.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/index.ts: -------------------------------------------------------------------------------- 1 | export { BaMenuService } from './services/index'; 2 | export * from './theme.constants'; 3 | export * from './theme.configProvider'; 4 | export * from './theme.config'; 5 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-hello-world.component.scss: -------------------------------------------------------------------------------- 1 | .p { 2 | font-size: 20px; 3 | font-weight: 500; 4 | letter-spacing: 0.005em; 5 | margin-bottom: 0; 6 | margin-top: 0.83em; 7 | } 8 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Comendador Levy Gasparian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Comendador Levy Gasparian.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/theme/vendor/leaflet/marker-icon-2x.png -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-hello-world.component.scss: -------------------------------------------------------------------------------- 1 | .p { 2 | font-size: 20px; 3 | font-weight: 500; 4 | letter-spacing: 0.005em; 5 | margin-bottom: 0; 6 | margin-top: 0.83em; 7 | } 8 | -------------------------------------------------------------------------------- /tools/env/base.ts: -------------------------------------------------------------------------------- 1 | import { EnvConfig } from './env-config.interface'; 2 | 3 | const BaseConfig: EnvConfig = { 4 | // Sample API url 5 | API: 'https://demo.com' 6 | }; 7 | 8 | export = BaseConfig; 9 | 10 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /src/client/app/modules/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils/index'; 2 | export * from './interfaces/index'; 3 | export * from './services/index'; 4 | export * from './directives/index'; 5 | export * from './core.module'; 6 | -------------------------------------------------------------------------------- /src/client/app/modules/core/interfaces/iwindow.ts: -------------------------------------------------------------------------------- 1 | // standard window interface 2 | export interface IWindow { 3 | navigator: any; 4 | location: any; 5 | alert(msg: string): void; 6 | confirm(msg: string): void; 7 | } 8 | -------------------------------------------------------------------------------- /src/client/app/shared/modules/m-ng2-admin/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './baImageLoader/index'; 2 | export * from './baMenu/index'; 3 | export * from './baThemePreloader/index'; 4 | export * from './baThemeSpinner/index'; 5 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-hello-world.component.scss: -------------------------------------------------------------------------------- 1 | .p { 2 | font-size: 20px; 3 | font-weight: 500; 4 | letter-spacing: 0.005em; 5 | margin-bottom: 0; 6 | margin-top: 0.83em; 7 | } 8 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/Engenheiro Paulo de Frontin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/Engenheiro Paulo de Frontin.png -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São Francisco de Itabapoana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São Francisco de Itabapoana.png -------------------------------------------------------------------------------- /tools/tasks/seed/serve.coverage.ts: -------------------------------------------------------------------------------- 1 | import { serveCoverage } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, serving unit test coverage report using an `express` server. 5 | */ 6 | export = serveCoverage; 7 | -------------------------------------------------------------------------------- /tools/tasks/seed/serve.docs.ts: -------------------------------------------------------------------------------- 1 | import { serveDocs } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, serving the application documentation using an `express` server. 5 | */ 6 | export = serveDocs; 7 | 8 | -------------------------------------------------------------------------------- /tools/tasks/seed/watch.test.ts: -------------------------------------------------------------------------------- 1 | import { watch } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, watching for file changes and rebuilding the test environment. 5 | */ 6 | export = watch('build.test'); 7 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/services/index.ts: -------------------------------------------------------------------------------- 1 | import { NameListService } from './name-list.service'; 2 | 3 | export const SAMPLE_PROVIDERS: any[] = [ 4 | NameListService 5 | ]; 6 | 7 | export * from './name-list.service'; 8 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/municipios/São José do Vale do Rio Preto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/themes/mprj-clean/assets/img/municipios/São José do Vale do Rio Preto.png -------------------------------------------------------------------------------- /tools/tasks/seed/server.prod.ts: -------------------------------------------------------------------------------- 1 | import { serveProd } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, serving the files of the production environment using an `express` server. 5 | */ 6 | export = serveProd; 7 | -------------------------------------------------------------------------------- /tools/tasks/seed/server.start.ts: -------------------------------------------------------------------------------- 1 | import { serveSPA } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, serving the files of the development environment using an `express` server. 5 | */ 6 | export = serveSPA; 7 | -------------------------------------------------------------------------------- /tools/tasks/seed/watch.dev.ts: -------------------------------------------------------------------------------- 1 | import { watch } from '../../utils'; 2 | 3 | /** 4 | * Executes the build process, watching for file changes and rebuilding the development environment. 5 | */ 6 | export = watch('build.dev'); 7 | -------------------------------------------------------------------------------- /src/client/app/components/pages/mp-home/mp-home.routes.ts: -------------------------------------------------------------------------------- 1 | import { MPHomeComponent } from './mp-home.component'; 2 | 3 | export const MPHomeRoutes: Array = [ 4 | { 5 | path: '', 6 | component: MPHomeComponent 7 | } 8 | ]; 9 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-hello-world.component.tns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tools/manual_typings/project/sample.package.d.ts: -------------------------------------------------------------------------------- 1 | // declare module "moment/moment" { 2 | // export = moment; 3 | // } 4 | 5 | // enable if using ng2-admin theme & m-ng2-admin module 6 | export * from './ng2-admin-custom-typings.d.ts'; 7 | -------------------------------------------------------------------------------- /tools/tasks/seed/webdriver.ts: -------------------------------------------------------------------------------- 1 | import { webdriver_update } from 'gulp-protractor'; 2 | 3 | /** 4 | * Executes the build process, installing the selenium webdriver used for the protractor e2e specs. 5 | */ 6 | export = webdriver_update; 7 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /src/client/app/modules/core/directives/index.ts: -------------------------------------------------------------------------------- 1 | // app 2 | import { PlatformDirective } from './platform.directive'; 3 | 4 | export const CORE_DIRECTIVES: any[] = [ 5 | PlatformDirective 6 | ]; 7 | 8 | export * from './platform.directive'; 9 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-hello-world.component.tns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /src/client/app/modules/core/interfaces/iconsole.ts: -------------------------------------------------------------------------------- 1 | // standard console interface 2 | export interface IConsole { 3 | log(m: any): void; 4 | debug(m: any): void; 5 | error(m: any): void; 6 | warn(m: any): void; 7 | info(m: any): void; 8 | } 9 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /src/client/app/modules/core/testing/index.ts: -------------------------------------------------------------------------------- 1 | // mocks 2 | export * from './mocks/window.mock'; 3 | 4 | // providers 5 | export * from './providers/core'; 6 | export * from './providers/http'; 7 | export * from './providers/router'; 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/shared/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/shared/components/navbar/navbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | .nav { 2 | padding: 10; 3 | } 4 | 5 | .nav button { 6 | margin: 0 20 0 0; 7 | color: #777; 8 | } 9 | 10 | .nav button.active { 11 | color: #106cc8; 12 | } 13 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.dev.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist/dev` directory. 6 | */ 7 | export = clean(Config.DEV_DEST); 8 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.e2e.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist/dev` directory. 6 | */ 7 | export = clean(Config.E2E_DEST); 8 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.tns.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist` directory. 6 | */ 7 | export = clean([Config.TNS_APP_DEST]); 8 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /nativescript/src/app.ts: -------------------------------------------------------------------------------- 1 | // nativescript 2 | import { platformNativeScriptDynamic } from 'nativescript-angular/platform'; 3 | 4 | // app 5 | import { NativeModule } from './native.module'; 6 | 7 | platformNativeScriptDynamic().bootstrapModule(NativeModule); 8 | -------------------------------------------------------------------------------- /src/client/app/modules/i18n/components/index.ts: -------------------------------------------------------------------------------- 1 | import { LangSwitcherComponent } from './lang-switcher.component'; 2 | 3 | export const MULTILANG_COMPONENTS: any[] = [ 4 | LangSwitcherComponent 5 | ]; 6 | 7 | export * from './lang-switcher.component'; 8 | -------------------------------------------------------------------------------- /src/client/app/modules/sample/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services/index'; 2 | export * from './actions/index'; 3 | export * from './effects/index'; 4 | export * from './reducers/index'; 5 | export * from './states/index'; 6 | export * from './sample.module'; 7 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/shared/components/navbar/navbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | .nav { 2 | padding: 10; 3 | } 4 | 5 | .nav button { 6 | margin: 0 20 0 0; 7 | color: #777; 8 | } 9 | 10 | .nav button.active { 11 | color: #106cc8; 12 | } 13 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.tns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/i18n/components/lang-switcher.component.tns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /nativescript/src/mobile/core/index.ts: -------------------------------------------------------------------------------- 1 | // services 2 | export * from './services/window-native.service'; 3 | export * from './services/ns-app.service'; 4 | export * from './services/storage-native.service'; 5 | 6 | // utils 7 | export * from './utils/actionbar.util'; 8 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /src/e2e/index.ts: -------------------------------------------------------------------------------- 1 | 2 | // convenient shorthand 3 | import { Ng2Jasmine, TestApi } from './ng2-jasmine'; 4 | export const t: TestApi = Ng2Jasmine; 5 | 6 | // e2e 7 | export * from './framework/dropdowns'; 8 | 9 | // shorthand 10 | export * from './ng2-jasmine'; 11 | -------------------------------------------------------------------------------- /themes/new-age/components/about/about.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | padding: 0 16px; 4 | } 5 | 6 | h2 { 7 | font-size: 20px; 8 | font-weight: 500; 9 | letter-spacing: 0.005em; 10 | margin-bottom: 0; 11 | margin-top: 0.83em; 12 | } 13 | -------------------------------------------------------------------------------- /themes/seed-theme/assets/dummy-theme-asset-file: -------------------------------------------------------------------------------- 1 | ** MutuaTech patches: this file is used only to test if it will be copied into the assets folder when building this project, as part of the Mutua Theming Infrastructure. 2 | ** It may be safely deleted on instance projects 3 | -------------------------------------------------------------------------------- /tools/tasks/seed/watch.e2e.ts: -------------------------------------------------------------------------------- 1 | import { watch } from '../../utils'; 2 | import Config from '../../config'; 3 | 4 | /** 5 | * Executes the build process, watching for file changes and rebuilding the e2e environment. 6 | */ 7 | export = watch('build.e2e', Config.E2E_SRC); 8 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/client/app/modules/analytics/services/index.ts: -------------------------------------------------------------------------------- 1 | // app 2 | import { AnalyticsService } from './analytics.service'; 3 | 4 | export const ANALYTICS_PROVIDERS: Array = [ 5 | AnalyticsService 6 | ]; 7 | 8 | // services 9 | export * from './analytics.service'; 10 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baMultiCheckbox/baMultiCheckbox.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../scss/conf/conf'; 2 | 3 | .container-content { 4 | width: 100%; 5 | display: flex; 6 | 7 | ba-checkbox { 8 | width: 100%; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baMultiCheckbox/baMultiCheckbox.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../scss/conf/conf'; 2 | 3 | .container-content { 4 | width: 100%; 5 | display: flex; 6 | 7 | ba-checkbox { 8 | width: 100%; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-ng2-admin/components/baSidebar/baSidebar.component.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /themes/new-age/components/pages/gv-home/gv-home.component.css: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | padding: 0 16px; 4 | } 5 | 6 | h2 { 7 | font-size: 20px; 8 | font-weight: 500; 9 | letter-spacing: 0.005em; 10 | margin-bottom: 0; 11 | margin-top: 0.83em; 12 | } 13 | -------------------------------------------------------------------------------- /themes/ng2-admin/modules/m-ng2-admin/components/baSidebar/baSidebar.component.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /tools/tasks/typescript_task.ts: -------------------------------------------------------------------------------- 1 | import { Task } from './task'; 2 | 3 | export abstract class TypeScriptTask extends Task { 4 | shallRun(files: String[]) { 5 | return files.reduce((a, f) => { 6 | return a || f.endsWith('.ts'); 7 | }, false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.tns.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #3f523f; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #3f523f; 7 | color: #bbb; 8 | margin: 5; 9 | selected-background-color: #4f824f; 10 | } 11 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/i18n/components/lang-switcher.component.tns.android.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #4f92d5; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #4f92d5; 7 | color: #fff; 8 | margin: 0; 9 | selected-background-color: #fff; 10 | } 11 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/i18n/components/lang-switcher.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #4f92d5; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #4f92d5; 7 | color: #fff; 8 | margin: 5; 9 | selected-background-color: #fff; 10 | } 11 | -------------------------------------------------------------------------------- /themes/new-age/components/about/about.component.tns.css: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /themes/new-age/components/home/home.component.tns.css: -------------------------------------------------------------------------------- 1 | .love-tech { 2 | font-size: 28; 3 | font-weight: bold; 4 | color: purple; 5 | margin: 8 0 8 0; 6 | } 7 | 8 | .list-item { 9 | padding: 5; 10 | } 11 | 12 | .btn-primary { 13 | background-color:#3280CF; 14 | } 15 | -------------------------------------------------------------------------------- /themes/seed-theme/components/pages/gv-home/gv-home.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | padding: 0 16px; 4 | } 5 | 6 | .h2 { 7 | font-size: 20px; 8 | font-weight: 500; 9 | letter-spacing: 0.005em; 10 | margin-bottom: 0; 11 | margin-top: 0.83em; 12 | } 13 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/i18n/components/lang-switcher.component.html: -------------------------------------------------------------------------------- 1 |
2 | Change Language: 5 |
6 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/i18n/components/lang-switcher.component.tns.android.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #4f92d5; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #4f92d5; 7 | color: #fff; 8 | margin: 0; 9 | selected-background-color: #fff; 10 | } 11 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/i18n/components/lang-switcher.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #4f92d5; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #4f92d5; 7 | color: #fff; 8 | margin: 5; 9 | selected-background-color: #fff; 10 | } 11 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.coverage.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist/dev` directory. 6 | */ 7 | export = clean([Config.COVERAGE_DIR, Config.COVERAGE_TS_DIR]); 8 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.prod.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist/dev` and `dist/tmp` directory. 6 | */ 7 | export = clean([Config.PROD_DEST, Config.TMP_DIR]); 8 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /nativescript/src/mobile/core/services/storage-native.service.ts: -------------------------------------------------------------------------------- 1 | // app 2 | import { StorageService } from '../../../app/modules/core/services/storage.service'; 3 | 4 | // nativescript 5 | require('nativescript-localstorage'); 6 | 7 | export class StorageNative extends StorageService { 8 | } 9 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/components/home/home.component.tns.scss: -------------------------------------------------------------------------------- 1 | .love-tech { 2 | font-size: 28; 3 | font-weight: bold; 4 | color: purple; 5 | margin: 8 0 8 0; 6 | } 7 | 8 | .btn-primary { 9 | background-color: #101c48; 10 | } 11 | 12 | .btn { 13 | color: #8a8b8c; 14 | } 15 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.html: -------------------------------------------------------------------------------- 1 |
2 | Change Language: 5 |
6 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.tns.android.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #4f92d5; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #4f92d5; 7 | color: #fff; 8 | margin: 0; 9 | selected-background-color: #fff; 10 | } 11 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.tns.ios.scss: -------------------------------------------------------------------------------- 1 | .lang-switcher { 2 | background-color: #3f523f; 3 | } 4 | 5 | .segmented-bar { 6 | background-color: #3f523f; 7 | color: #bbb; 8 | margin: 5; 9 | selected-background-color: #4f824f; 10 | } 11 | -------------------------------------------------------------------------------- /themes/seed-theme/components/about/about.component.tns.scss: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /tools/tasks/seed/clean.all.ts: -------------------------------------------------------------------------------- 1 | import Config from '../../config'; 2 | import { clean } from '../../utils'; 3 | 4 | /** 5 | * Executes the build process, cleaning all files within the `/dist` directory. 6 | */ 7 | export = clean([Config.DIST_DIR, Config.COVERAGE_DIR, Config.TNS_APP_DEST]); 8 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/components/about/about.component.tns.scss: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/mprj-clean/assets/img/person.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /themes/new-age/components/pages/gv-home/gv-home.component.tns.css: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /themes/ng2-admin/assets/img/person.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /src/client/app/modules/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services/index'; 2 | export * from './components/index'; 3 | export * from './actions/index'; 4 | export * from './effects/index'; 5 | export * from './reducers/index'; 6 | export * from './states/index'; 7 | export * from './multilingual.module'; 8 | -------------------------------------------------------------------------------- /src/client/app/modules/test/index.ts: -------------------------------------------------------------------------------- 1 | // convenient shorthand 2 | import { Ng2Jasmine, TestApi } from './shorthand/ng2-jasmine'; 3 | export const t: TestApi = Ng2Jasmine; 4 | 5 | // e2e 6 | export * from './e2e/dropdowns'; 7 | 8 | // shorthand 9 | export * from './shorthand/ng2-jasmine'; 10 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/mprj-clean/components/pages/mp-home/mp-home.component.tns.scss: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /themes/seed-theme/components/pages/gv-home/gv-home.component.tns.scss: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinisterioPublicoRJ/angular-seed-advanced-mprj/master/nativescript/src/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /themes/bad-seed-theme/components/pages/gv-home/gv-home.component.tns.scss: -------------------------------------------------------------------------------- 1 | .feature-list .body { 2 | font-size: 16; 3 | color: #555; 4 | margin: 0 0 5 0; 5 | } 6 | 7 | .h1 { 8 | color: #106cc8; 9 | font-size: 24; 10 | } 11 | 12 | .h4 { 13 | color: #999; 14 | font-size: 18; 15 | } 16 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/shared/components/toolbar/toolbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Intentionally blank. 3 | * Ignore or build out a view and insert in a {N} view to use. 4 | * A file must at least exist since ToolbarComponent is declared in the SampleModule 5 | **/ 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/shared/components/toolbar/toolbar.component.tns.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Intentionally blank. 3 | * Ignore or build out a view and insert in a {N} view to use. 4 | * A file must at least exist since ToolbarComponent is declared in the SampleModule 5 | **/ 6 | 7 | -------------------------------------------------------------------------------- /nativescript/src/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F5F5F5 4 | #757575 5 | #33B5E5 6 | #272734 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/open.d.ts: -------------------------------------------------------------------------------- 1 | // https://github.com/borisyankov/DefinitelyTyped/tree/master/open 2 | // Does not support ES2015 import (import * as open from 'open'). 3 | 4 | declare module 'open' { 5 | function open(target: string, app?: string): void; 6 | module open {} 7 | export = open; 8 | } 9 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/modules/i18n/components/lang-switcher.component.scss: -------------------------------------------------------------------------------- 1 | .i18n { 2 | background-color: #101c48; 3 | border-style: none; 4 | color: rgba(155, 155, 155, 0.87); 5 | cursor: pointer; 6 | font-size: 14px; 7 | padding: 4px 8px; 8 | text-decoration: none; 9 | margin-right: 10px; 10 | } 11 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | insert_final_newline = false 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tools/tasks/seed/karma.run.ts: -------------------------------------------------------------------------------- 1 | import { startKarma } from '../../utils/seed/karma.start'; 2 | import Config from '../../config'; 3 | 4 | /** 5 | * Executes the build process, running all unit tests using `karma`. 6 | */ 7 | export = (done: any) => { 8 | return startKarma(done, Config.getKarmaReporters()); 9 | }; 10 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/autoprefixer.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'autoprefixer' { 2 | 3 | interface IOptions { 4 | browsers: string[]; 5 | } 6 | 7 | interface IAutoprefixer { 8 | (opts?: IOptions): NodeJS.ReadWriteStream; 9 | } 10 | 11 | const autoprefixer: IAutoprefixer; 12 | export = autoprefixer; 13 | } 14 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/istream.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'isstream' { 2 | function istream(stream: any): boolean; 3 | interface Istream { 4 | isReadable(stream: any): boolean; 5 | isWritable(stream: any): boolean; 6 | isDuplex(stream: any): boolean; 7 | } 8 | module istream {} 9 | export = istream; 10 | } 11 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/mprj-clean/modules/m-mprj/components/mp-link.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 |
6 | 7 |
10 |
-------------------------------------------------------------------------------- /tools/manual_typings/seed/merge-stream.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'merge-stream' { 2 | function mergeStream(...streams: NodeJS.ReadWriteStream[]): MergeStream; 3 | interface MergeStream extends NodeJS.ReadWriteStream { 4 | add(stream: NodeJS.ReadWriteStream): MergeStream; 5 | } 6 | module mergeStream {} 7 | export = mergeStream; 8 | } 9 | -------------------------------------------------------------------------------- /tools/tasks/css_task.ts: -------------------------------------------------------------------------------- 1 | import { Task } from './task'; 2 | import Config from '../config'; 3 | 4 | export abstract class CssTask extends Task { 5 | 6 | shallRun(files: String[]) { 7 | return Config.ENABLE_SCSS || files.some(f => 8 | f.endsWith('.css') || f.endsWith('.sass') || f.endsWith('.scss')); 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/client/ngsw-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "static": { 3 | "urls": { 4 | } 5 | }, 6 | "routing": { 7 | "index": "/index.html", 8 | "routes": { 9 | "/": { 10 | "prefix": false 11 | } 12 | } 13 | }, 14 | "push": { 15 | "showNotifications": true, 16 | "backgroundOnly": false 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/i18n/components/lang-switcher.component.scss: -------------------------------------------------------------------------------- 1 | select { 2 | background-color: #101c48; 3 | border-style: none; 4 | color: rgba(155, 155, 155, 0.87); 5 | cursor: pointer; 6 | display: inline-block; 7 | font-size: 14px; 8 | height: 30px; 9 | padding: 4px 8px; 10 | text-decoration: none; 11 | } 12 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/modules/m-hello-world/components/m-about.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{sectionTitle}}

4 |
5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /themes/seed-theme/modules/m-hello-world/components/m-about.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{sectionTitle}}

4 |
5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/modules/m-hello-world/components/m-about.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{sectionTitle}}

4 |
5 | 6 | 7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tools/manual_typings/seed/karma.d.ts: -------------------------------------------------------------------------------- 1 | // Use this minimalistic definition file as bluebird dependency 2 | // generate a lot of errors. 3 | 4 | declare module 'karma' { 5 | var karma: IKarma; 6 | export = karma; 7 | interface IKarma { 8 | server: { 9 | start(options: any, callback: Function): void 10 | }; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /themes/mprj-clean/scss/_modal.scss: -------------------------------------------------------------------------------- 1 | .modal-header { 2 | border: none; 3 | padding: 10px 15px 0 15px; 4 | } 5 | 6 | .modal-footer { 7 | border: none; 8 | } 9 | 10 | button.close { 11 | padding-bottom: 2px; 12 | color: #000; 13 | text-shadow: 0 1px 0 #fff; 14 | opacity: .2; 15 | 16 | &:hover { 17 | opacity: .5; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/ng2-admin/scss/_modal.scss: -------------------------------------------------------------------------------- 1 | .modal-header { 2 | border: none; 3 | padding: 10px 15px 0 15px; 4 | } 5 | 6 | .modal-footer { 7 | border: none; 8 | } 9 | 10 | button.close { 11 | padding-bottom: 2px; 12 | color: #000; 13 | text-shadow: 0 1px 0 #fff; 14 | opacity: .2; 15 | 16 | &:hover { 17 | opacity: .5; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /tools/tasks/assets_task.ts: -------------------------------------------------------------------------------- 1 | import { Task } from './task'; 2 | 3 | export abstract class AssetsTask extends Task { 4 | shallRun(files: String[]) { 5 | return files.reduce((a, f) => { 6 | return a || (!f.endsWith('.css') && !f.endsWith('.sass') && 7 | !f.endsWith('.scss') && !f.endsWith('.ts')); 8 | }, false); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /tools/utils/seed/karma.start.ts: -------------------------------------------------------------------------------- 1 | import * as karma from 'karma'; 2 | import { join } from 'path'; 3 | 4 | export const startKarma = (done: any, config: any = {}) => { 5 | return new (karma).Server(Object.assign({ 6 | configFile: join(process.cwd(), 'karma.conf.js'), 7 | singleRun: true 8 | }, config)).start(done); 9 | }; 10 | 11 | -------------------------------------------------------------------------------- /themes/bad-seed-theme/components/about/about.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | padding: 0 16px; 4 | } 5 | 6 | .feature-list .body { 7 | font-size: 16; 8 | color: #555; 9 | margin: 0 0 5 0; 10 | } 11 | 12 | .h1 { 13 | color: #106cc8; 14 | font-size: 24; 15 | } 16 | 17 | .h4 { 18 | color: #999; 19 | font-size: 18; 20 | } 21 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/freelancer/assets/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/seed-theme/components/about/about.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | padding: 0 16px; 4 | } 5 | 6 | .feature-list .body { 7 | font-size: 16; 8 | color: #555; 9 | margin: 0 0 5 0; 10 | } 11 | 12 | .h1 { 13 | color: #106cc8; 14 | font-size: 24; 15 | } 16 | 17 | .h4 { 18 | color: #999; 19 | font-size: 18; 20 | } 21 | --------------------------------------------------------------------------------