├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── ascii-art.js ├── jsconfig.json ├── package.json ├── public ├── favicon.png ├── index.html ├── manifest.json └── pix │ ├── bug.png │ ├── cd.png │ ├── comics.png │ ├── comics │ ├── alim1.jpg │ ├── androidssheep.jpg │ ├── carmenmc1.jpg │ ├── codemc1.jpg │ ├── flags │ │ ├── fr.png │ │ └── us.png │ ├── fleaudieux1.jpg │ ├── garulfo1.jpg │ ├── ghost-in-the-shell.jpg │ ├── imperfect-future.jpg │ ├── incal1.jpg │ ├── lama1.jpg │ ├── lanfeust1.jpg │ ├── metabaron1.jpg │ ├── neffous1.jpg │ ├── quete1.jpg │ ├── ronin.jpg │ ├── saga1.jpg │ ├── salammbo1.jpg │ ├── skydoll1.jpg │ └── surfer.jpg │ ├── contact.gif │ ├── contact.png │ ├── doc │ ├── cog.png │ ├── metadata.png │ ├── model.png │ ├── object.png │ ├── tag_pink.png │ └── wrench.png │ ├── logos │ ├── graphql.png │ ├── hasura.png │ └── react.png │ ├── music.png │ ├── music │ ├── ashana-beloved.jpg │ ├── ashana.jpg │ ├── moby-18.jpg │ ├── moby-play.jpg │ ├── moby.jpg │ ├── naid-varanasi.jpg │ ├── sade-loversrock.jpg │ ├── sade.jpg │ ├── snatam_kaur.jpg │ ├── snatamkaur-beloved.jpg │ └── snatamkaur-sacredchants.jpg │ ├── resto.gif │ ├── resto.png │ ├── screenshots │ ├── analytics-charts.png │ ├── analytics-stats.png │ ├── comfort-activity.png │ ├── comfort-overview.png │ ├── many-cards.png │ ├── many-list.png │ ├── one-browse.png │ └── one-edit.png │ ├── star.png │ ├── todo.gif │ ├── todo.png │ ├── user.png │ ├── wine-bottle.png │ ├── wine-glass.png │ ├── wine.gif │ └── wine │ ├── flags │ ├── ar.png │ ├── at.png │ ├── bg.png │ ├── ca.png │ ├── ch.png │ ├── cl.png │ ├── cy.png │ ├── de.png │ ├── es.png │ ├── fr.png │ ├── gr.png │ ├── hu.png │ ├── it.png │ ├── lu.png │ ├── nz.png │ ├── pt.png │ ├── us.png │ └── za.png │ ├── macrostie.png │ ├── montelena.png │ ├── stjean.png │ ├── vinecliff.png │ ├── wineno.png │ ├── winered.png │ ├── winerose.png │ ├── winespark.png │ ├── winesweet.png │ ├── winewhite.png │ └── yquem.png ├── sql ├── README.md ├── evol-db-data.sql └── evol-db-schema.sql └── src ├── App-custom.scss ├── App.jsx ├── App.scss ├── components ├── ErrorBoundary.jsx ├── Field │ ├── Field.jsx │ ├── Field.scss │ ├── Field.test.js │ ├── FieldLabel.jsx │ ├── FieldLabel.scss │ ├── FieldLabel.test.js │ ├── browse │ │ ├── FieldElemBrowse.jsx │ │ └── FieldValue.jsx │ └── edit │ │ ├── FieldDate.jsx │ │ ├── FieldDate.scss │ │ ├── FieldElemEdit.jsx │ │ ├── FieldObject.jsx │ │ ├── FieldObject.scss │ │ ├── FieldUpload.jsx │ │ └── FieldUpload.scss ├── shell │ ├── Footer │ │ ├── Footer.jsx │ │ ├── Footer.scss │ │ └── Footer.test.js │ ├── SideBar │ │ ├── SideBar.jsx │ │ ├── SideBar.scss │ │ ├── SideBar.test.js │ │ ├── appMenus.js │ │ ├── spirals.png │ │ └── svg │ │ │ ├── book.svg │ │ │ ├── cogs.svg │ │ │ └── eye.svg │ └── TopBar │ │ ├── GitHubLink.jsx │ │ ├── TopBar.jsx │ │ ├── TopBar.scss │ │ ├── ViewActions.jsx │ │ └── evologo.png ├── views │ ├── ViewHeader │ │ ├── FilterTags.jsx │ │ ├── ViewHeader.jsx │ │ ├── ViewHeader.scss │ │ ├── ViewHeader.test.js │ │ └── ViewsNavIcons.jsx │ ├── analytics │ │ ├── Charts │ │ │ ├── Bars.jsx │ │ │ ├── Chart.jsx │ │ │ ├── ChartTable.jsx │ │ │ ├── ChartTable.scss │ │ │ ├── Charts.jsx │ │ │ ├── Charts.scss │ │ │ ├── Pie.jsx │ │ │ ├── chartOptions.js │ │ │ └── chartProps.js │ │ └── Stats │ │ │ ├── PercentBar.jsx │ │ │ ├── PercentBar.scss │ │ │ ├── Stats.jsx │ │ │ └── Stats.scss │ ├── comfort │ │ ├── Activity │ │ │ ├── Activity.jsx │ │ │ └── Activity.scss │ │ ├── ModelLinks.jsx │ │ ├── ModelLinks.scss │ │ └── Overview │ │ │ ├── Activity.jsx │ │ │ ├── Activity.scss │ │ │ ├── InvalidRoute.jsx │ │ │ ├── Overview.jsx │ │ │ ├── Overview.scss │ │ │ ├── SearchBox.jsx │ │ │ └── SearchBox.scss │ ├── many │ │ ├── Cards │ │ │ ├── Cards.jsx │ │ │ └── Cards.scss │ │ ├── List │ │ │ ├── List.jsx │ │ │ └── List.scss │ │ ├── Many.jsx │ │ ├── Many.scss │ │ └── shared │ │ │ ├── EmptyState │ │ │ ├── EmptyState.jsx │ │ │ ├── EmptyState.scss │ │ │ └── EmptyState.test.js │ │ │ ├── Pagination │ │ │ ├── Pagination.jsx │ │ │ ├── Pagination.scss │ │ │ └── Pagination.test.js │ │ │ └── TableBody │ │ │ ├── TableBody.jsx │ │ │ └── TableBody.test.js │ ├── modelPropTypes.js │ └── one │ │ ├── Browse │ │ └── Browse.jsx │ │ ├── Card.jsx │ │ ├── Edit │ │ └── Edit.jsx │ │ ├── One.jsx │ │ ├── One.scss │ │ └── shared │ │ ├── Collection │ │ ├── Collection.jsx │ │ └── Collection.scss │ │ ├── Form.scss │ │ └── Timestamps │ │ ├── Timestamps.jsx │ │ ├── Timestamps.scss │ │ └── Timestamps.test.js └── widgets │ ├── Alert │ ├── Alert.jsx │ ├── Alert.scss │ └── Alert.test.js │ ├── Badge │ ├── Badge.jsx │ ├── Badge.scss │ └── Badge.test.js │ ├── Button │ ├── Button.jsx │ ├── Button.scss │ └── Button.test.js │ ├── Modal.scss │ ├── Panel │ ├── Panel.jsx │ ├── Panel.scss │ └── Panel.test.js │ ├── Spinner │ ├── Spinner.jsx │ ├── Spinner.scss │ └── Spinner.test.js │ └── global.scss ├── config.js ├── dao ├── cache.js ├── dao.js └── gqlQueries.js ├── i18n ├── en.js └── i18n.js ├── index.js ├── index.scss ├── models ├── all_models.js ├── music │ ├── album.js │ ├── artist.js │ └── track.js ├── organizer │ ├── comics.js │ ├── contact.js │ ├── restaurant.js │ ├── todo.js │ ├── winecellar.js │ └── winetasting.js └── tests │ └── test.js ├── pages ├── Demos │ ├── Demos.jsx │ └── Demos.scss ├── Docs │ ├── Configuration.jsx │ ├── Doc.jsx │ ├── Doc.scss │ ├── Installation.jsx │ ├── Metamodel.jsx │ ├── SampleModels.jsx │ ├── Views.jsx │ ├── Views.scss │ ├── components │ │ ├── PrettyJSON.jsx │ │ ├── PrettyJSON.scss │ │ ├── ProjectBadges.jsx │ │ └── SampleModel.jsx │ ├── docConfig.js │ └── docMetadata.js ├── Home │ ├── Gallery.jsx │ ├── Gallery.scss │ ├── Home.jsx │ └── Home.scss └── PageNotFound │ ├── PageNotFound.jsx │ └── PageNotFound.scss ├── routes ├── DemoRoutes.jsx ├── DocRoutes.jsx └── EvolRoutes.jsx ├── serviceWorker.js ├── setupTests.js ├── utils ├── activity.js ├── dico.js ├── dicoViews.js ├── format.js ├── format.test.js ├── localStorage.js ├── moMa.js ├── moMaPrep.js ├── url.js ├── validation.js └── validation.test.js └── variables.scss /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/TODO.md -------------------------------------------------------------------------------- /ascii-art.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/ascii-art.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pix/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/bug.png -------------------------------------------------------------------------------- /public/pix/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/cd.png -------------------------------------------------------------------------------- /public/pix/comics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics.png -------------------------------------------------------------------------------- /public/pix/comics/alim1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/alim1.jpg -------------------------------------------------------------------------------- /public/pix/comics/androidssheep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/androidssheep.jpg -------------------------------------------------------------------------------- /public/pix/comics/carmenmc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/carmenmc1.jpg -------------------------------------------------------------------------------- /public/pix/comics/codemc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/codemc1.jpg -------------------------------------------------------------------------------- /public/pix/comics/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/flags/fr.png -------------------------------------------------------------------------------- /public/pix/comics/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/flags/us.png -------------------------------------------------------------------------------- /public/pix/comics/fleaudieux1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/fleaudieux1.jpg -------------------------------------------------------------------------------- /public/pix/comics/garulfo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/garulfo1.jpg -------------------------------------------------------------------------------- /public/pix/comics/ghost-in-the-shell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/ghost-in-the-shell.jpg -------------------------------------------------------------------------------- /public/pix/comics/imperfect-future.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/imperfect-future.jpg -------------------------------------------------------------------------------- /public/pix/comics/incal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/incal1.jpg -------------------------------------------------------------------------------- /public/pix/comics/lama1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/lama1.jpg -------------------------------------------------------------------------------- /public/pix/comics/lanfeust1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/lanfeust1.jpg -------------------------------------------------------------------------------- /public/pix/comics/metabaron1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/metabaron1.jpg -------------------------------------------------------------------------------- /public/pix/comics/neffous1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/neffous1.jpg -------------------------------------------------------------------------------- /public/pix/comics/quete1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/quete1.jpg -------------------------------------------------------------------------------- /public/pix/comics/ronin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/ronin.jpg -------------------------------------------------------------------------------- /public/pix/comics/saga1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/saga1.jpg -------------------------------------------------------------------------------- /public/pix/comics/salammbo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/salammbo1.jpg -------------------------------------------------------------------------------- /public/pix/comics/skydoll1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/skydoll1.jpg -------------------------------------------------------------------------------- /public/pix/comics/surfer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/comics/surfer.jpg -------------------------------------------------------------------------------- /public/pix/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/contact.gif -------------------------------------------------------------------------------- /public/pix/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/contact.png -------------------------------------------------------------------------------- /public/pix/doc/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/cog.png -------------------------------------------------------------------------------- /public/pix/doc/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/metadata.png -------------------------------------------------------------------------------- /public/pix/doc/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/model.png -------------------------------------------------------------------------------- /public/pix/doc/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/object.png -------------------------------------------------------------------------------- /public/pix/doc/tag_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/tag_pink.png -------------------------------------------------------------------------------- /public/pix/doc/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/doc/wrench.png -------------------------------------------------------------------------------- /public/pix/logos/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/logos/graphql.png -------------------------------------------------------------------------------- /public/pix/logos/hasura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/logos/hasura.png -------------------------------------------------------------------------------- /public/pix/logos/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/logos/react.png -------------------------------------------------------------------------------- /public/pix/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music.png -------------------------------------------------------------------------------- /public/pix/music/ashana-beloved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/ashana-beloved.jpg -------------------------------------------------------------------------------- /public/pix/music/ashana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/ashana.jpg -------------------------------------------------------------------------------- /public/pix/music/moby-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/moby-18.jpg -------------------------------------------------------------------------------- /public/pix/music/moby-play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/moby-play.jpg -------------------------------------------------------------------------------- /public/pix/music/moby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/moby.jpg -------------------------------------------------------------------------------- /public/pix/music/naid-varanasi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/naid-varanasi.jpg -------------------------------------------------------------------------------- /public/pix/music/sade-loversrock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/sade-loversrock.jpg -------------------------------------------------------------------------------- /public/pix/music/sade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/sade.jpg -------------------------------------------------------------------------------- /public/pix/music/snatam_kaur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/snatam_kaur.jpg -------------------------------------------------------------------------------- /public/pix/music/snatamkaur-beloved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/snatamkaur-beloved.jpg -------------------------------------------------------------------------------- /public/pix/music/snatamkaur-sacredchants.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/music/snatamkaur-sacredchants.jpg -------------------------------------------------------------------------------- /public/pix/resto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/resto.gif -------------------------------------------------------------------------------- /public/pix/resto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/resto.png -------------------------------------------------------------------------------- /public/pix/screenshots/analytics-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/analytics-charts.png -------------------------------------------------------------------------------- /public/pix/screenshots/analytics-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/analytics-stats.png -------------------------------------------------------------------------------- /public/pix/screenshots/comfort-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/comfort-activity.png -------------------------------------------------------------------------------- /public/pix/screenshots/comfort-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/comfort-overview.png -------------------------------------------------------------------------------- /public/pix/screenshots/many-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/many-cards.png -------------------------------------------------------------------------------- /public/pix/screenshots/many-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/many-list.png -------------------------------------------------------------------------------- /public/pix/screenshots/one-browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/one-browse.png -------------------------------------------------------------------------------- /public/pix/screenshots/one-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/screenshots/one-edit.png -------------------------------------------------------------------------------- /public/pix/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/star.png -------------------------------------------------------------------------------- /public/pix/todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/todo.gif -------------------------------------------------------------------------------- /public/pix/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/todo.png -------------------------------------------------------------------------------- /public/pix/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/user.png -------------------------------------------------------------------------------- /public/pix/wine-bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine-bottle.png -------------------------------------------------------------------------------- /public/pix/wine-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine-glass.png -------------------------------------------------------------------------------- /public/pix/wine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine.gif -------------------------------------------------------------------------------- /public/pix/wine/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/ar.png -------------------------------------------------------------------------------- /public/pix/wine/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/at.png -------------------------------------------------------------------------------- /public/pix/wine/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/bg.png -------------------------------------------------------------------------------- /public/pix/wine/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/ca.png -------------------------------------------------------------------------------- /public/pix/wine/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/ch.png -------------------------------------------------------------------------------- /public/pix/wine/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/cl.png -------------------------------------------------------------------------------- /public/pix/wine/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/cy.png -------------------------------------------------------------------------------- /public/pix/wine/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/de.png -------------------------------------------------------------------------------- /public/pix/wine/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/es.png -------------------------------------------------------------------------------- /public/pix/wine/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/fr.png -------------------------------------------------------------------------------- /public/pix/wine/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/gr.png -------------------------------------------------------------------------------- /public/pix/wine/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/hu.png -------------------------------------------------------------------------------- /public/pix/wine/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/it.png -------------------------------------------------------------------------------- /public/pix/wine/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/lu.png -------------------------------------------------------------------------------- /public/pix/wine/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/nz.png -------------------------------------------------------------------------------- /public/pix/wine/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/pt.png -------------------------------------------------------------------------------- /public/pix/wine/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/us.png -------------------------------------------------------------------------------- /public/pix/wine/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/flags/za.png -------------------------------------------------------------------------------- /public/pix/wine/macrostie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/macrostie.png -------------------------------------------------------------------------------- /public/pix/wine/montelena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/montelena.png -------------------------------------------------------------------------------- /public/pix/wine/stjean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/stjean.png -------------------------------------------------------------------------------- /public/pix/wine/vinecliff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/vinecliff.png -------------------------------------------------------------------------------- /public/pix/wine/wineno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/wineno.png -------------------------------------------------------------------------------- /public/pix/wine/winered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/winered.png -------------------------------------------------------------------------------- /public/pix/wine/winerose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/winerose.png -------------------------------------------------------------------------------- /public/pix/wine/winespark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/winespark.png -------------------------------------------------------------------------------- /public/pix/wine/winesweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/winesweet.png -------------------------------------------------------------------------------- /public/pix/wine/winewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/winewhite.png -------------------------------------------------------------------------------- /public/pix/wine/yquem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/public/pix/wine/yquem.png -------------------------------------------------------------------------------- /sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/sql/README.md -------------------------------------------------------------------------------- /sql/evol-db-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/sql/evol-db-data.sql -------------------------------------------------------------------------------- /sql/evol-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/sql/evol-db-schema.sql -------------------------------------------------------------------------------- /src/App-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/App-custom.scss -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/components/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/ErrorBoundary.jsx -------------------------------------------------------------------------------- /src/components/Field/Field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/Field.jsx -------------------------------------------------------------------------------- /src/components/Field/Field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/Field.scss -------------------------------------------------------------------------------- /src/components/Field/Field.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/Field.test.js -------------------------------------------------------------------------------- /src/components/Field/FieldLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/FieldLabel.jsx -------------------------------------------------------------------------------- /src/components/Field/FieldLabel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/FieldLabel.scss -------------------------------------------------------------------------------- /src/components/Field/FieldLabel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/FieldLabel.test.js -------------------------------------------------------------------------------- /src/components/Field/browse/FieldElemBrowse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/browse/FieldElemBrowse.jsx -------------------------------------------------------------------------------- /src/components/Field/browse/FieldValue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/browse/FieldValue.jsx -------------------------------------------------------------------------------- /src/components/Field/edit/FieldDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldDate.jsx -------------------------------------------------------------------------------- /src/components/Field/edit/FieldDate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldDate.scss -------------------------------------------------------------------------------- /src/components/Field/edit/FieldElemEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldElemEdit.jsx -------------------------------------------------------------------------------- /src/components/Field/edit/FieldObject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldObject.jsx -------------------------------------------------------------------------------- /src/components/Field/edit/FieldObject.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldObject.scss -------------------------------------------------------------------------------- /src/components/Field/edit/FieldUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldUpload.jsx -------------------------------------------------------------------------------- /src/components/Field/edit/FieldUpload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/Field/edit/FieldUpload.scss -------------------------------------------------------------------------------- /src/components/shell/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/shell/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/Footer/Footer.scss -------------------------------------------------------------------------------- /src/components/shell/Footer/Footer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/Footer/Footer.test.js -------------------------------------------------------------------------------- /src/components/shell/SideBar/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/SideBar.jsx -------------------------------------------------------------------------------- /src/components/shell/SideBar/SideBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/SideBar.scss -------------------------------------------------------------------------------- /src/components/shell/SideBar/SideBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/SideBar.test.js -------------------------------------------------------------------------------- /src/components/shell/SideBar/appMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/appMenus.js -------------------------------------------------------------------------------- /src/components/shell/SideBar/spirals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/spirals.png -------------------------------------------------------------------------------- /src/components/shell/SideBar/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/svg/book.svg -------------------------------------------------------------------------------- /src/components/shell/SideBar/svg/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/svg/cogs.svg -------------------------------------------------------------------------------- /src/components/shell/SideBar/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/SideBar/svg/eye.svg -------------------------------------------------------------------------------- /src/components/shell/TopBar/GitHubLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/TopBar/GitHubLink.jsx -------------------------------------------------------------------------------- /src/components/shell/TopBar/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/TopBar/TopBar.jsx -------------------------------------------------------------------------------- /src/components/shell/TopBar/TopBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/TopBar/TopBar.scss -------------------------------------------------------------------------------- /src/components/shell/TopBar/ViewActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/TopBar/ViewActions.jsx -------------------------------------------------------------------------------- /src/components/shell/TopBar/evologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/shell/TopBar/evologo.png -------------------------------------------------------------------------------- /src/components/views/ViewHeader/FilterTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/ViewHeader/FilterTags.jsx -------------------------------------------------------------------------------- /src/components/views/ViewHeader/ViewHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/ViewHeader/ViewHeader.jsx -------------------------------------------------------------------------------- /src/components/views/ViewHeader/ViewHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/ViewHeader/ViewHeader.scss -------------------------------------------------------------------------------- /src/components/views/ViewHeader/ViewHeader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/ViewHeader/ViewHeader.test.js -------------------------------------------------------------------------------- /src/components/views/ViewHeader/ViewsNavIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/ViewHeader/ViewsNavIcons.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/Bars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/Bars.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/Chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/Chart.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/ChartTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/ChartTable.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/ChartTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/ChartTable.scss -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/Charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/Charts.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/Charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/Charts.scss -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/Pie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/Pie.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/chartOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/chartOptions.js -------------------------------------------------------------------------------- /src/components/views/analytics/Charts/chartProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Charts/chartProps.js -------------------------------------------------------------------------------- /src/components/views/analytics/Stats/PercentBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Stats/PercentBar.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Stats/PercentBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Stats/PercentBar.scss -------------------------------------------------------------------------------- /src/components/views/analytics/Stats/Stats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Stats/Stats.jsx -------------------------------------------------------------------------------- /src/components/views/analytics/Stats/Stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/analytics/Stats/Stats.scss -------------------------------------------------------------------------------- /src/components/views/comfort/Activity/Activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Activity/Activity.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/Activity/Activity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Activity/Activity.scss -------------------------------------------------------------------------------- /src/components/views/comfort/ModelLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/ModelLinks.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/ModelLinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/ModelLinks.scss -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/Activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/Activity.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/Activity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/Activity.scss -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/InvalidRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/InvalidRoute.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/Overview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/Overview.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/Overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/Overview.scss -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/SearchBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/SearchBox.jsx -------------------------------------------------------------------------------- /src/components/views/comfort/Overview/SearchBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/comfort/Overview/SearchBox.scss -------------------------------------------------------------------------------- /src/components/views/many/Cards/Cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/Cards/Cards.jsx -------------------------------------------------------------------------------- /src/components/views/many/Cards/Cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/Cards/Cards.scss -------------------------------------------------------------------------------- /src/components/views/many/List/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/List/List.jsx -------------------------------------------------------------------------------- /src/components/views/many/List/List.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/List/List.scss -------------------------------------------------------------------------------- /src/components/views/many/Many.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/Many.jsx -------------------------------------------------------------------------------- /src/components/views/many/Many.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/Many.scss -------------------------------------------------------------------------------- /src/components/views/many/shared/EmptyState/EmptyState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/EmptyState/EmptyState.jsx -------------------------------------------------------------------------------- /src/components/views/many/shared/EmptyState/EmptyState.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/EmptyState/EmptyState.scss -------------------------------------------------------------------------------- /src/components/views/many/shared/EmptyState/EmptyState.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/EmptyState/EmptyState.test.js -------------------------------------------------------------------------------- /src/components/views/many/shared/Pagination/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/Pagination/Pagination.jsx -------------------------------------------------------------------------------- /src/components/views/many/shared/Pagination/Pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/Pagination/Pagination.scss -------------------------------------------------------------------------------- /src/components/views/many/shared/Pagination/Pagination.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/Pagination/Pagination.test.js -------------------------------------------------------------------------------- /src/components/views/many/shared/TableBody/TableBody.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/TableBody/TableBody.jsx -------------------------------------------------------------------------------- /src/components/views/many/shared/TableBody/TableBody.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/many/shared/TableBody/TableBody.test.js -------------------------------------------------------------------------------- /src/components/views/modelPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/modelPropTypes.js -------------------------------------------------------------------------------- /src/components/views/one/Browse/Browse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/Browse/Browse.jsx -------------------------------------------------------------------------------- /src/components/views/one/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/Card.jsx -------------------------------------------------------------------------------- /src/components/views/one/Edit/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/Edit/Edit.jsx -------------------------------------------------------------------------------- /src/components/views/one/One.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/One.jsx -------------------------------------------------------------------------------- /src/components/views/one/One.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/One.scss -------------------------------------------------------------------------------- /src/components/views/one/shared/Collection/Collection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Collection/Collection.jsx -------------------------------------------------------------------------------- /src/components/views/one/shared/Collection/Collection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Collection/Collection.scss -------------------------------------------------------------------------------- /src/components/views/one/shared/Form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Form.scss -------------------------------------------------------------------------------- /src/components/views/one/shared/Timestamps/Timestamps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Timestamps/Timestamps.jsx -------------------------------------------------------------------------------- /src/components/views/one/shared/Timestamps/Timestamps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Timestamps/Timestamps.scss -------------------------------------------------------------------------------- /src/components/views/one/shared/Timestamps/Timestamps.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/views/one/shared/Timestamps/Timestamps.test.js -------------------------------------------------------------------------------- /src/components/widgets/Alert/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Alert/Alert.jsx -------------------------------------------------------------------------------- /src/components/widgets/Alert/Alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Alert/Alert.scss -------------------------------------------------------------------------------- /src/components/widgets/Alert/Alert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Alert/Alert.test.js -------------------------------------------------------------------------------- /src/components/widgets/Badge/Badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Badge/Badge.jsx -------------------------------------------------------------------------------- /src/components/widgets/Badge/Badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Badge/Badge.scss -------------------------------------------------------------------------------- /src/components/widgets/Badge/Badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Badge/Badge.test.js -------------------------------------------------------------------------------- /src/components/widgets/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Button/Button.jsx -------------------------------------------------------------------------------- /src/components/widgets/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Button/Button.scss -------------------------------------------------------------------------------- /src/components/widgets/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Button/Button.test.js -------------------------------------------------------------------------------- /src/components/widgets/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Modal.scss -------------------------------------------------------------------------------- /src/components/widgets/Panel/Panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Panel/Panel.jsx -------------------------------------------------------------------------------- /src/components/widgets/Panel/Panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Panel/Panel.scss -------------------------------------------------------------------------------- /src/components/widgets/Panel/Panel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Panel/Panel.test.js -------------------------------------------------------------------------------- /src/components/widgets/Spinner/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Spinner/Spinner.jsx -------------------------------------------------------------------------------- /src/components/widgets/Spinner/Spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Spinner/Spinner.scss -------------------------------------------------------------------------------- /src/components/widgets/Spinner/Spinner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/Spinner/Spinner.test.js -------------------------------------------------------------------------------- /src/components/widgets/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/components/widgets/global.scss -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/config.js -------------------------------------------------------------------------------- /src/dao/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/dao/cache.js -------------------------------------------------------------------------------- /src/dao/dao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/dao/dao.js -------------------------------------------------------------------------------- /src/dao/gqlQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/dao/gqlQueries.js -------------------------------------------------------------------------------- /src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/i18n/en.js -------------------------------------------------------------------------------- /src/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/i18n/i18n.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/models/all_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/all_models.js -------------------------------------------------------------------------------- /src/models/music/album.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/music/album.js -------------------------------------------------------------------------------- /src/models/music/artist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/music/artist.js -------------------------------------------------------------------------------- /src/models/music/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/music/track.js -------------------------------------------------------------------------------- /src/models/organizer/comics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/comics.js -------------------------------------------------------------------------------- /src/models/organizer/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/contact.js -------------------------------------------------------------------------------- /src/models/organizer/restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/restaurant.js -------------------------------------------------------------------------------- /src/models/organizer/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/todo.js -------------------------------------------------------------------------------- /src/models/organizer/winecellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/winecellar.js -------------------------------------------------------------------------------- /src/models/organizer/winetasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/organizer/winetasting.js -------------------------------------------------------------------------------- /src/models/tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/models/tests/test.js -------------------------------------------------------------------------------- /src/pages/Demos/Demos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Demos/Demos.jsx -------------------------------------------------------------------------------- /src/pages/Demos/Demos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Demos/Demos.scss -------------------------------------------------------------------------------- /src/pages/Docs/Configuration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Configuration.jsx -------------------------------------------------------------------------------- /src/pages/Docs/Doc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Doc.jsx -------------------------------------------------------------------------------- /src/pages/Docs/Doc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Doc.scss -------------------------------------------------------------------------------- /src/pages/Docs/Installation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Installation.jsx -------------------------------------------------------------------------------- /src/pages/Docs/Metamodel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Metamodel.jsx -------------------------------------------------------------------------------- /src/pages/Docs/SampleModels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/SampleModels.jsx -------------------------------------------------------------------------------- /src/pages/Docs/Views.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Views.jsx -------------------------------------------------------------------------------- /src/pages/Docs/Views.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/Views.scss -------------------------------------------------------------------------------- /src/pages/Docs/components/PrettyJSON.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/components/PrettyJSON.jsx -------------------------------------------------------------------------------- /src/pages/Docs/components/PrettyJSON.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/components/PrettyJSON.scss -------------------------------------------------------------------------------- /src/pages/Docs/components/ProjectBadges.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/components/ProjectBadges.jsx -------------------------------------------------------------------------------- /src/pages/Docs/components/SampleModel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/components/SampleModel.jsx -------------------------------------------------------------------------------- /src/pages/Docs/docConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/docConfig.js -------------------------------------------------------------------------------- /src/pages/Docs/docMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Docs/docMetadata.js -------------------------------------------------------------------------------- /src/pages/Home/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Home/Gallery.jsx -------------------------------------------------------------------------------- /src/pages/Home/Gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Home/Gallery.scss -------------------------------------------------------------------------------- /src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /src/pages/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/Home/Home.scss -------------------------------------------------------------------------------- /src/pages/PageNotFound/PageNotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/PageNotFound/PageNotFound.jsx -------------------------------------------------------------------------------- /src/pages/PageNotFound/PageNotFound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/pages/PageNotFound/PageNotFound.scss -------------------------------------------------------------------------------- /src/routes/DemoRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/routes/DemoRoutes.jsx -------------------------------------------------------------------------------- /src/routes/DocRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/routes/DocRoutes.jsx -------------------------------------------------------------------------------- /src/routes/EvolRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/routes/EvolRoutes.jsx -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/activity.js -------------------------------------------------------------------------------- /src/utils/dico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/dico.js -------------------------------------------------------------------------------- /src/utils/dicoViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/dicoViews.js -------------------------------------------------------------------------------- /src/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/format.js -------------------------------------------------------------------------------- /src/utils/format.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/format.test.js -------------------------------------------------------------------------------- /src/utils/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/localStorage.js -------------------------------------------------------------------------------- /src/utils/moMa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/moMa.js -------------------------------------------------------------------------------- /src/utils/moMaPrep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/moMaPrep.js -------------------------------------------------------------------------------- /src/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/url.js -------------------------------------------------------------------------------- /src/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/validation.js -------------------------------------------------------------------------------- /src/utils/validation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/utils/validation.test.js -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-react/HEAD/src/variables.scss --------------------------------------------------------------------------------