├── .editorconfig ├── .envrc ├── .eslintignore ├── .eslintrc.cjs ├── .git-blame-ignore-revs ├── .github ├── FUNDING.yml ├── actions │ ├── install │ │ └── action.yaml │ └── reopen-issue-with-comment │ │ ├── action.yaml │ │ └── main.js └── workflows │ ├── check-links-validity.yaml │ ├── deploy.yaml │ ├── pr-cleanup.yaml │ ├── publish.yaml │ ├── test-external-integrations.yaml │ ├── test.yaml │ └── update-stats.yaml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-version.cjs │ │ └── plugin-workspace-tools.cjs ├── releases │ └── yarn-3.5.0.cjs └── versions │ └── 3f500af6.yml ├── .yarnclean ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── adr ├── ADR-2025-05-29-architecture-number-input.md ├── ADR-2025-05-29-module-boundaries.md └── ADR-2025-10-02-compound-components.md ├── api ├── .gitignore ├── README.md ├── artilleryio-config.yaml ├── package.json ├── public │ └── doc │ │ └── swagger-initializer.js ├── source │ ├── analytics.ts │ ├── errors.ts │ ├── index.ts │ ├── openapi.yaml │ ├── rate-limiter.ts │ ├── redis-cache.ts │ ├── route │ │ ├── doc.ts │ │ └── openapi.ts │ ├── sentry.ts │ ├── server.ts │ ├── test-e2e │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── coherence-npm-api.test.ts │ │ ├── index.test.ts │ │ └── test-server.ts │ ├── utils.ts │ └── v1unitéAdapterMiddleware.ts ├── tsconfig.json └── vitest.config.ts ├── architecture.archimate ├── exoneration-covid ├── .yarnrc.yaml ├── CHANGELOG.md ├── README.md ├── index.d.ts ├── package.json ├── règles │ └── exonération-covid.publicodes └── tsconfig.json ├── flake.lock ├── flake.nix ├── modele-social ├── .yarnrc.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── index.d.ts ├── package.json ├── règles │ ├── artiste-auteur.publicodes │ ├── base.publicodes │ ├── bénéficiaire.publicodes │ ├── declaration-pam │ │ ├── déclaration-revenus-pamc-formulaire.publicodes │ │ └── déclaration-revenus-pamc-résultats.publicodes │ ├── declarations-indépendant │ │ ├── charges-sociales-formulaire.publicodes │ │ └── charges-sociales-résultats.publicodes │ ├── dirigeant │ │ ├── auto-entrepreneur │ │ │ ├── auto-entrepreneur.publicodes │ │ │ ├── cotisations-et-contributions.publicodes │ │ │ ├── exonérations.publicodes │ │ │ └── impôt.publicodes │ │ ├── conjoint-collaborateur.publicodes │ │ ├── dirigeant.publicodes │ │ ├── exonération-covid.publicodes │ │ ├── exonérations.publicodes │ │ ├── exonérations │ │ │ └── ACRE.publicodes │ │ ├── indépendant │ │ │ ├── cotisations-et-contributions.publicodes │ │ │ ├── cotisations-facultatives.publicodes │ │ │ └── indépendant.publicodes │ │ └── professions-libérales │ │ │ ├── CARCDSF.publicodes │ │ │ ├── CARMF.publicodes │ │ │ ├── CARPIMKO.publicodes │ │ │ ├── CAVEC.publicodes │ │ │ ├── CAVP.publicodes │ │ │ ├── CIPAV.publicodes │ │ │ ├── CNAVPL.publicodes │ │ │ ├── CNBF.publicodes │ │ │ ├── PAMC.publicodes │ │ │ └── profession-libérale.publicodes │ ├── entreprise │ │ ├── activité.publicodes │ │ ├── catégorie-juridique.publicodes │ │ ├── cessation-activité.publicodes │ │ ├── coût-création.publicodes │ │ ├── duree-activité.publicodes │ │ ├── entreprise.publicodes │ │ ├── imposition.publicodes │ │ └── établissement.publicodes │ ├── impôt.publicodes │ ├── protection-sociale.publicodes │ ├── période.publicodes │ ├── salarié │ │ ├── activité-partielle.publicodes │ │ ├── aides-employeur.publicodes │ │ ├── contrat.publicodes │ │ ├── conventions-collectives │ │ │ ├── autre.publicodes │ │ │ ├── bâtiment.publicodes │ │ │ ├── droit-commun.publicodes │ │ │ ├── experts-comptables.publicodes │ │ │ ├── hôtels-cafés-restaurants.publicodes │ │ │ ├── optique.publicodes │ │ │ ├── spectacle-vivant.publicodes │ │ │ └── sport.publicodes │ │ ├── cotisations.publicodes │ │ ├── exonérations │ │ │ ├── JEI.publicodes │ │ │ ├── acre.publicodes │ │ │ ├── exonérations.publicodes │ │ │ ├── lodeom.publicodes │ │ │ └── réduction-générale.publicodes │ │ ├── mois-incomplet.publicodes │ │ ├── rémunération.publicodes │ │ ├── salarié.publicodes │ │ └── temps-de-travail.publicodes │ └── situation-personnelle.publicodes └── tsconfig.json ├── package.json ├── scripts ├── build-rules.js ├── check-changelog.js ├── check-links-validity.js └── tsconfig.json ├── server ├── .env.template ├── README.md ├── docker-compose.yml ├── package.json ├── source │ ├── config.ts │ ├── functions │ │ └── send-crisp-message.ts │ ├── index.ts │ ├── jobs.ts │ ├── jobs │ │ ├── daily-stand-up.ts │ │ ├── refresh-token.ts │ │ └── weekly-randomizer.ts │ ├── mattermost.ts │ ├── mongodb.ts │ ├── oauth.ts │ ├── server.ts │ └── utils.ts ├── tsconfig.json └── types │ └── index.d.ts ├── site ├── .env.template ├── .gitignore ├── .storybook │ ├── main.ts │ └── preview.tsx ├── ACCESSIBILITY.md ├── README.md ├── build │ ├── .eslintrc.yaml │ ├── build-sitemap.ts │ ├── multiple-SPA.ts │ ├── prerender-worker.js │ ├── prerender-worker.ts │ ├── prerender.ts │ ├── vite-build-simulation-data.config.ts │ ├── vite-iframe-script.config.ts │ └── vite-pwa-options.ts ├── cypress.config.ts ├── cypress │ ├── README.md │ ├── fixtures │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvNzUxMDE │ │ │ └── ZmllbGRzPWRlcGFydGVtZW50LHJlZ2lvbg==.json │ │ ├── aHR0cHM6Ly9zZWFyY2gtcmVjaGVyY2hlLWVudHJlcHJpc2VzLW1hc3Rlci5kZXYuZmFicmlxdWUuc29jaWFsLmdvdXYuZnIvYXBpL3YxL3NlYXJjaD9xdWVyeT1ub2ltYSZvcGVuPXRydWUmY29udmVudGlvbj1mYWxzZSZlbXBsb3llcj1mYWxzZSZyYW5rZWQ9ZmFsc2UmbGltaXQ9MTA=.json │ │ ├── demande-mobilité │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXM │ │ │ │ ├── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXgmY29kZVBvc3RhbD02MTQ1NDAxNDQ1MDAmYm9vc3Q9cG9wdWxhdGlvbg==.json │ │ │ │ ├── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXgmbm9tPSUyMHJ1ZSUyMGRlJTIwbGElMjBSaHVtZXJpZSZib29zdD1wb3B1bGF0aW9u.json │ │ │ │ ├── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXgmbm9tPUJyZSZib29zdD1wb3B1bGF0aW9u.json │ │ │ │ ├── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXgmbm9tPUJyZXN0JmJvb3N0PXBvcHVsYXRpb24=.json │ │ │ │ └── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXgmbm9tPVBvdXRzJmJvb3N0PXBvcHVsYXRpb24=.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvMjkwMTk │ │ │ │ └── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXg=.json │ │ │ └── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvNjUxNjQ │ │ │ │ └── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXg=.json │ │ ├── example.json │ │ ├── gérer │ │ │ ├── aHR0cHM6Ly9hcGkucmVjaGVyY2hlLWVudHJlcHJpc2VzLmZhYnJpcXVlLnNvY2lhbC5nb3V2LmZyL2FwaS92MS9zZWFyY2g │ │ │ │ ├── cXVlcnk9amVyZW15JTIwcmlhbGxhbmQmb3Blbj10cnVlJmNvbnZlbnRpb249ZmFsc2UmZW1wbG95ZXI9ZmFsc2UmcmFua2VkPWZhbHNlJmxpbWl0PTEw.json │ │ │ │ └── cXVlcnk9bWVub3omb3Blbj10cnVlJmNvbnZlbnRpb249ZmFsc2UmZW1wbG95ZXI9ZmFsc2UmcmFua2VkPWZhbHNlJmxpbWl0PTEw.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YxL2Z1bGxfdGV4dC9qb2hhbiUyMGdpcm9kP3Blcl9wYWdlPTE1.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YxL2Z1bGxfdGV4dC9qb2hhbiUyMGdpcm9kP3Blcl9wYWdlPTU=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YxL2Z1bGxfdGV4dC9tZW5vej9wZXJfcGFnZT01.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YxL2Z1bGxfdGV4dC9tZW5vej9wZXJfcGFnZT0xNQ==.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzQ4MDEzNDc4Mj9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzQ5MzA5NjU4MD9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzQwMzA0OTQ0OD9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzUxMTEyNTEyMj9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzUzNDg4NjY1MD9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzgwMDU1OTA2ND9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9lbnRyZXByaXNlLmRhdGEuZ291di5mci9hcGkvc2lyZW5lL3YzL3VuaXRlc19sZWdhbGVzLzgzNDM2NDI5MT9zdGF0dXRfZGlmZnVzaW9uPU8=.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvMjkwMTk │ │ │ │ └── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXg=.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvMzQxNjA │ │ │ │ └── ZmllbGRzPWRlcGFydGVtZW50LHJlZ2lvbg==.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvNzUxMjA │ │ │ │ └── ZmllbGRzPWRlcGFydGVtZW50LHJlZ2lvbg==.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvODExNzA │ │ │ │ └── ZmllbGRzPWRlcGFydGVtZW50LHJlZ2lvbg==.json │ │ │ ├── aHR0cHM6Ly9zZWFyY2gtcmVjaGVyY2hlLWVudHJlcHJpc2VzLW1hc3Rlci5kZXYuZmFicmlxdWUuc29jaWFsLmdvdXYuZnIvYXBpL3YxL3NlYXJjaD9xdWVyeT1qb2hhbiUyMGdpcm9kJm9wZW49dHJ1ZSZjb252ZW50aW9uPWZhbHNlJmVtcGxveWVyPWZhbHNlJnJhbmtlZD1mYWxzZSZsaW1pdD0xMA==.json │ │ │ └── aHR0cHM6Ly9zZWFyY2gtcmVjaGVyY2hlLWVudHJlcHJpc2VzLW1hc3Rlci5kZXYuZmFicmlxdWUuc29jaWFsLmdvdXYuZnIvYXBpL3YxL3NlYXJjaD9xdWVyeT1tZW5veiZvcGVuPXRydWUmY29udmVudGlvbj1mYWxzZSZlbXBsb3llcj1mYWxzZSZyYW5rZWQ9ZmFsc2UmbGltaXQ9MTA=.json │ │ └── landing │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvNzUxMDE │ │ │ └── ZmllbGRzPWRlcGFydGVtZW50LHJlZ2lvbg==.json │ │ │ ├── aHR0cHM6Ly9nZW8uYXBpLmdvdXYuZnIvY29tbXVuZXMvOTExNzQ │ │ │ └── ZmllbGRzPW5vbSxjb2RlLGRlcGFydGVtZW50LHJlZ2lvbixjb2Rlc1Bvc3RhdXg=.json │ │ │ └── aHR0cHM6Ly9zZWFyY2gtcmVjaGVyY2hlLWVudHJlcHJpc2VzLmZhYnJpcXVlLnNvY2lhbC5nb3V2LmZyL2FwaS92MS9zZWFyY2g │ │ │ └── cXVlcnk9bm9pbWEmb3Blbj10cnVlJmNvbnZlbnRpb249ZmFsc2UmZW1wbG95ZXI9ZmFsc2UmcmFua2VkPWZhbHNlJmxpbWl0PTEw.json │ ├── integration │ │ ├── README.md │ │ ├── external │ │ │ └── external-integrations.js │ │ └── mon-entreprise │ │ │ ├── assistants │ │ │ ├── choix-du-statut.ts │ │ │ ├── declaration-revenus-pamc.ts │ │ │ └── détermination-charges-sociales.ts │ │ │ ├── covid19.ts │ │ │ ├── detection-entreprise-cookie.js │ │ │ ├── english │ │ │ ├── navigation.ts │ │ │ ├── prerender.ts │ │ │ ├── simulateurs │ │ │ │ ├── auto-entrepreneur.js │ │ │ │ └── salarié.js │ │ │ └── sitemap.ts │ │ │ ├── footer.ts │ │ │ ├── iframe-pamc.ts │ │ │ ├── iframe.js │ │ │ ├── landing.ts │ │ │ ├── localisation-field.ts │ │ │ ├── partage-simulation.js │ │ │ ├── persistence-simulation.js │ │ │ ├── recherche.ts │ │ │ ├── secondary-pages.ts │ │ │ ├── simulateurs-generic │ │ │ ├── dirigeant-sasu.js │ │ │ ├── eirl-ir.js │ │ │ ├── eirl-is.js │ │ │ ├── entreprise-individuelle.js │ │ │ ├── eurl-ir.js │ │ │ ├── eurl-is.js │ │ │ ├── indépendant.js │ │ │ ├── profession-liberale.js │ │ │ └── profession-liberale │ │ │ │ ├── auxiliaire-medical.js │ │ │ │ ├── avocat.js │ │ │ │ ├── chirurgien-dentiste.js │ │ │ │ ├── expert-comptable.js │ │ │ │ ├── medecin.js │ │ │ │ ├── pharmacien.js │ │ │ │ └── sage-femme.js │ │ │ └── simulateurs │ │ │ ├── auto-entrepreneur.ts │ │ │ ├── dividendes.ts │ │ │ ├── independant.ts │ │ │ ├── location-meuble.ts │ │ │ ├── lodeom.ts │ │ │ ├── reduction-generale.ts │ │ │ └── salarie.ts │ ├── support │ │ ├── commands.ts │ │ ├── e2e.ts │ │ ├── simulateur.ts │ │ └── utils.ts │ └── tsconfig.json ├── mon-entreprise.fr │ └── netlify.toml ├── netlify.base.toml ├── package.json ├── scripts │ ├── .eslintrc.yaml │ ├── NAFAndGuichetData │ │ ├── NAF-search │ │ │ ├── README.md │ │ │ ├── custom-tags.ts │ │ │ ├── custom.ts │ │ │ ├── merge-data.ts │ │ │ └── output.json │ │ ├── NomenclatureGuichet │ │ │ ├── NomenclatureGuichet_v1_34.csv │ │ │ ├── README.md │ │ │ ├── ape_tags.json │ │ │ ├── ape_to_guichet.json │ │ │ ├── compute-guichet.ts │ │ │ ├── extract.ts │ │ │ ├── guichet.json │ │ │ ├── output.json │ │ │ └── raw_output.json │ │ ├── copy-to-data-dir.js │ │ ├── extract-NAF-data │ │ │ ├── Nomenclatures_NAF_et_CPF_Reedition_2020.pdf │ │ │ ├── README.md │ │ │ ├── convert-pdf.ts │ │ │ ├── guide_naf_cpf_rev_2.pdf │ │ │ ├── output.json │ │ │ └── output.txt │ │ ├── nombre-etablissements-par-code-ape │ │ │ ├── fetch-json.ts │ │ │ └── output.json │ │ └── package.json │ ├── fetch-job-offers.js │ ├── fetch-releases.js │ ├── fetch-versement-mobilité.js │ ├── i18n │ │ ├── check-missing-UI-translation.js │ │ ├── check-missing-rule-translation.js │ │ ├── parser.config.js │ │ ├── translate-rules.js │ │ ├── translate-ui.js │ │ └── utils.js │ ├── prepare.js │ ├── search │ │ ├── clean.js │ │ ├── export-simulation-data.ts │ │ └── update-data.ts │ ├── stats │ │ ├── fetch-stats.js │ │ └── matomoVisitHistory.json │ └── utils.js ├── source │ ├── SearchParamsAdapter.test.ts │ ├── SearchParamsAdapter.ts │ ├── api │ │ ├── RechercheEntreprise │ │ │ ├── RechercheEntreprisesGouvFr.ts │ │ │ └── fabrique-social.ts │ │ ├── activité-vers-bénéfice │ │ │ ├── data.json │ │ │ └── index.tsx │ │ ├── commune.ts │ │ └── sentry.ts │ ├── assets │ │ └── images │ │ │ ├── Urssaf.svg │ │ │ ├── assurance-maladie.svg │ │ │ ├── banner-share.png │ │ │ ├── banner-share.svg │ │ │ ├── company.svg │ │ │ ├── destinataires │ │ │ ├── Urssaf.png │ │ │ ├── Urssaf.svg │ │ │ ├── agirc.png │ │ │ ├── cnav.png │ │ │ ├── destinataires.yaml │ │ │ └── salarié.png │ │ │ ├── donner-votre-avis-services-publics.svg │ │ │ ├── estimate.svg │ │ │ ├── hiring.svg │ │ │ ├── logo-backup.svg │ │ │ ├── logo-dgfip.svg │ │ │ ├── logo-monentreprise.svg │ │ │ ├── logo-monentreprise_white.svg │ │ │ ├── logo-mycompany.svg │ │ │ ├── logo-mycompany_white.svg │ │ │ ├── logo.svg │ │ │ ├── logos-caisses-retraite │ │ │ ├── carcdsf.png │ │ │ ├── carmf.png │ │ │ ├── carpimko.png │ │ │ ├── cavec.jpg │ │ │ ├── cavp.svg │ │ │ ├── cipav.png │ │ │ ├── cnbf.png │ │ │ └── ircec.jpg │ │ │ ├── marianne.svg │ │ │ ├── missed_chance.svg │ │ │ ├── mycompany-logo-partage.png │ │ │ ├── publicodes.png │ │ │ ├── revenus.svg │ │ │ ├── road-sign.svg │ │ │ └── références-images │ │ │ ├── agirc-arrco.jpg │ │ │ ├── ameli.svg │ │ │ ├── bofip.impots.gouv.jpg │ │ │ ├── boss.svg │ │ │ ├── bpifrance-creation.svg │ │ │ ├── code-du-travail-numerique.svg │ │ │ ├── cpsti.svg │ │ │ ├── economie.gouv.png │ │ │ ├── entreprendre.service-public.jpg │ │ │ ├── france-travail.svg │ │ │ ├── impots.gouv.svg │ │ │ ├── lassuranceretraite.svg │ │ │ ├── legifrance.svg │ │ │ ├── service-public.svg │ │ │ └── urssaf.svg │ ├── components │ │ ├── ATInternetTracking │ │ │ ├── .eslintrc.yaml │ │ │ ├── Tracker.ts │ │ │ └── index.tsx │ │ ├── App.tsx │ │ ├── Assistant │ │ │ └── AssistantGoal.tsx │ │ ├── AvertissementDansObjectifDeSimulateur.tsx │ │ ├── BarChart.tsx │ │ ├── BetaBanner │ │ │ └── index.tsx │ │ ├── ChiffreAffairesActivitéMixte.tsx │ │ ├── ConseillersEntreprisesButton.tsx │ │ ├── ConseillersEntreprisesIframe.tsx │ │ ├── Contact.tsx │ │ ├── CurrentSimulatorCard.tsx │ │ ├── DateChip.tsx │ │ ├── Distribution.css │ │ ├── EngineDocumentationRoutes.tsx │ │ ├── EngineValue │ │ │ ├── Condition.tsx │ │ │ ├── RuleTitleWithRésumé.tsx │ │ │ ├── Value.tsx │ │ │ ├── WhenAlreadyDefined.tsx │ │ │ ├── WhenAlreadyDefinedMulti.tsx │ │ │ ├── WhenApplicable.test.tsx │ │ │ ├── WhenApplicable.tsx │ │ │ ├── WhenNotAlreadyDefined.tsx │ │ │ ├── WhenNotApplicable.test.tsx │ │ │ ├── WhenNotApplicable.tsx │ │ │ ├── WhenValueEquals.tsx │ │ │ └── types.ts │ │ ├── ErrorPage.tsx │ │ ├── Feedback │ │ │ ├── Feedback.tsx │ │ │ ├── FeedbackForm.tsx │ │ │ ├── FeedbackRating.tsx │ │ │ ├── index.tsx │ │ │ └── useFeedback.ts │ │ ├── FicheDePaie │ │ │ ├── CotisationLine.tsx │ │ │ ├── Cotisations.tsx │ │ │ ├── FicheDePaie.css │ │ │ ├── FicheDePaie.tsx │ │ │ ├── Line.tsx │ │ │ ├── SalaireBrut.tsx │ │ │ └── SalaireNet.tsx │ │ ├── GuichetInfo.tsx │ │ ├── IframeResizer.ts │ │ ├── JeDonneMonAvis.tsx │ │ ├── LectureGuide.tsx │ │ ├── Logo.tsx │ │ ├── MoreInfosOnUs.tsx │ │ ├── Notifications.tsx │ │ ├── PageHeader.tsx │ │ ├── PeriodSwitch.tsx │ │ ├── Provider.tsx │ │ ├── Redirections.tsx │ │ ├── References.tsx │ │ ├── RuleLink.tsx │ │ ├── RéductionDeCotisations │ │ │ ├── EffectifSwitch.tsx │ │ │ ├── Montant.tsx │ │ │ ├── MonthOptions.tsx │ │ │ ├── RécapitulatifTrimestre.tsx │ │ │ ├── RéductionMois.tsx │ │ │ ├── RéductionMoisParMois.tsx │ │ │ ├── RégularisationSwitch.tsx │ │ │ ├── RémunérationInput.tsx │ │ │ ├── Répartition.tsx │ │ │ ├── RépartitionValue.tsx │ │ │ └── réductionDeCotisations.ts │ │ ├── SearchButton.tsx │ │ ├── ServiceWorker.tsx │ │ ├── ShareSimulationBanner │ │ │ ├── ShareSimulationPopup.tsx │ │ │ └── index.tsx │ │ ├── SimulateurCard.tsx │ │ ├── SimulateurOrAssistantPage.tsx │ │ ├── SimulateurWarning.tsx │ │ ├── Simulation │ │ │ ├── Banner.tsx │ │ │ ├── ComposantQuestion.ts │ │ │ ├── EntrepriseSelection.tsx │ │ │ ├── Objectif.ts │ │ │ ├── ObjectifDeSimulation.tsx │ │ │ ├── ObjectifSaisissableDeSimulation.tsx │ │ │ ├── PreviousSimulationBanner.tsx │ │ │ ├── Questions.tsx │ │ │ ├── Raccourcis.tsx │ │ │ ├── SimulationGoal.tsx │ │ │ ├── SimulationGoals.tsx │ │ │ ├── SimulationPréremplieBanner.tsx │ │ │ ├── SimulationValue.tsx │ │ │ ├── YearSelectionBanner.tsx │ │ │ └── index.tsx │ │ ├── StackedBarChart.test.desactivated.js │ │ ├── StackedBarChart.tsx │ │ ├── StatutTag.tsx │ │ ├── TrackingProvider.tsx │ │ ├── WrongSimulateurWarning.tsx │ │ ├── conversation │ │ │ ├── AnswerList.tsx │ │ │ ├── Choice.ts │ │ │ ├── ChoicesInput.tsx │ │ │ ├── DateInput.tsx │ │ │ ├── DefaultValue.tsx │ │ │ ├── EntrepriseInput.tsx │ │ │ ├── Explicable.tsx │ │ │ ├── MulipleChoicesInput.tsx │ │ │ ├── MultipleAnswerInput.tsx │ │ │ ├── OuiNonInput.tsx │ │ │ ├── OuiNonSwitch.tsx │ │ │ ├── PlusieursPossibilités.tsx │ │ │ ├── RadioChoices.tsx │ │ │ ├── RuleInput.tsx │ │ │ ├── SeeAnswersButton.tsx │ │ │ ├── TextInput.tsx │ │ │ ├── UnePossibilité.tsx │ │ │ ├── VousAvezComplétéCetteSimulation.tsx │ │ │ ├── getMultiplePossibilitiesOptions.tsx │ │ │ ├── getOnePossibilityOptions.tsx │ │ │ └── select │ │ │ │ ├── SelectCommune.tsx │ │ │ │ ├── SelectTauxRisque.tsx │ │ │ │ └── SelectTauxRisque.worker.ts │ │ ├── documentation │ │ │ ├── DocumentationRouter.tsx │ │ │ ├── MDXDocumentationIndex.tsx │ │ │ ├── createMDXDocumentation.ts │ │ │ └── index.ts │ │ ├── entreprise │ │ │ ├── EntrepriseDetails.tsx │ │ │ ├── EntrepriseSearchDetails.tsx │ │ │ ├── EntrepriseSearchField.tsx │ │ │ ├── EntrepriseSearchResults.tsx │ │ │ └── SelectedEntrepriseDetails.tsx │ │ ├── layout │ │ │ ├── Footer │ │ │ │ ├── Contact.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── InscriptionBetaTesteur │ │ │ │ │ ├── feedback.svg │ │ │ │ │ └── index.tsx │ │ │ │ ├── LegalNotice.tsx │ │ │ │ ├── PrivacyPolicy.tsx │ │ │ │ └── TermsOfUse.tsx │ │ │ ├── Header.tsx │ │ │ ├── Menu.tsx │ │ │ └── NewsBanner.tsx │ │ ├── search │ │ │ ├── Algolia.ts │ │ │ ├── Hightlight.tsx │ │ │ ├── RulesInfiniteHits │ │ │ │ └── index.tsx │ │ │ ├── SearchBox.tsx │ │ │ ├── SearchRoot.tsx │ │ │ ├── SearchRules.tsx │ │ │ ├── SearchRulesAndSimulators.tsx │ │ │ └── SimulatorHits.tsx │ │ ├── simulationExplanation │ │ │ ├── DistributionDesCotisations.tsx │ │ │ ├── DroitsRetraite.tsx │ │ │ ├── IndépendantCotisationsForfaitaires.tsx │ │ │ ├── IndépendantCotisationsRégularisation.tsx │ │ │ ├── IndépendantExplanation.tsx │ │ │ ├── InstitutionsPartenaires.tsx │ │ │ ├── PrintExportRecover.tsx │ │ │ ├── SalaryExplanation.tsx │ │ │ └── ÀQuoiServentMesCotisationsSection.tsx │ │ ├── ui │ │ │ ├── AnimatedTargetValue.tsx │ │ │ ├── Checklist │ │ │ │ └── index.tsx │ │ │ ├── FoldingMessage.tsx │ │ │ ├── Progress.tsx │ │ │ ├── Skeleton.tsx │ │ │ ├── WarningBlock.tsx │ │ │ └── animate.tsx │ │ └── utils │ │ │ ├── BrowserOnly.tsx │ │ │ ├── DarkModeContext.tsx │ │ │ ├── DisableAnimationContext.tsx │ │ │ ├── DisableScroll.ts │ │ │ ├── EngineContext.tsx │ │ │ ├── Meta.tsx │ │ │ ├── Scroll │ │ │ ├── ScrollToElement.tsx │ │ │ ├── ScrollToTop.tsx │ │ │ ├── useScrollToHash.tsx │ │ │ └── useScrollToTop.tsx │ │ │ ├── colors.tsx │ │ │ ├── normalizeRuleName.tsx │ │ │ └── persistState.ts │ ├── contextes │ │ ├── cmg │ │ │ ├── domaine │ │ │ │ ├── Mois.ts │ │ │ │ ├── calcul.test.ts │ │ │ │ ├── calcul.ts │ │ │ │ ├── constantes.ts │ │ │ │ ├── déclaration-de-garde.ts │ │ │ │ ├── déclarationDeGardeFactory.ts │ │ │ │ ├── enfant.ts │ │ │ │ ├── enfantFactory.ts │ │ │ │ ├── mode-de-garde.ts │ │ │ │ ├── résultat.ts │ │ │ │ ├── salariée.ts │ │ │ │ ├── salariéeFactory.ts │ │ │ │ ├── situation.ts │ │ │ │ ├── typologie-de-garde.ts │ │ │ │ ├── éligibilité.test.ts │ │ │ │ └── éligibilité.ts │ │ │ ├── hooks │ │ │ │ ├── CMGContext.tsx │ │ │ │ └── useCMG.ts │ │ │ └── index.ts │ │ └── économie-collaborative │ │ │ ├── domaine │ │ │ └── location-de-meublé │ │ │ │ ├── activite.test.ts │ │ │ │ ├── activite.ts │ │ │ │ ├── comparateur-régimes.test.ts │ │ │ │ ├── comparateur-régimes.ts │ │ │ │ ├── constantes.ts │ │ │ │ ├── cotisations.test.ts │ │ │ │ ├── cotisations.ts │ │ │ │ ├── erreurs.ts │ │ │ │ ├── index.ts │ │ │ │ ├── revenu-net.test.ts │ │ │ │ ├── revenu-net.ts │ │ │ │ ├── régime-général.ts │ │ │ │ ├── régime-micro-entreprise.ts │ │ │ │ ├── régime-travailleur-indépendant.ts │ │ │ │ ├── situation.test.ts │ │ │ │ └── situation.ts │ │ │ ├── hooks │ │ │ ├── useEconomieCollaborative.ts │ │ │ └── ÉconomieCollaborativeContext.tsx │ │ │ └── index.ts │ ├── design-system │ │ ├── InfoBulle │ │ │ └── index.tsx │ │ ├── InfoButton.stories.tsx │ │ ├── InfoButton.tsx │ │ ├── accordion │ │ │ ├── chevron.svg │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── answer-group │ │ │ └── index.tsx │ │ ├── atoms │ │ │ └── NumericInput.tsx │ │ ├── banner │ │ │ └── index.ts │ │ ├── buttons │ │ │ ├── Button.stories.tsx │ │ │ ├── Button.tsx │ │ │ ├── CloseButton.stories.tsx │ │ │ ├── CloseButton.tsx │ │ │ └── index.ts │ │ ├── card │ │ │ ├── Article.tsx │ │ │ ├── Card.tsx │ │ │ ├── ContenuInteractif.tsx │ │ │ ├── SmallCard.tsx │ │ │ ├── StatusCard.stories.tsx │ │ │ ├── StatusCard.test.tsx │ │ │ ├── StatusCard.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.ts │ │ ├── checklist │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── chip │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── conversation │ │ │ └── index.tsx │ │ ├── documentation │ │ │ ├── AccordeonDocumentation │ │ │ │ ├── AccordeonDocumentation.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Alert.tsx │ │ │ ├── BoutonMinimaliste │ │ │ │ ├── BoutonMinimaliste.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Callout.stories.tsx │ │ │ ├── Callout.tsx │ │ │ ├── DocumentationMDXContainer.tsx │ │ │ ├── DocumentationPage.stories.tsx │ │ │ ├── DocumentationPage.tsx │ │ │ ├── ExemplePratique │ │ │ │ ├── ExemplePratique.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Liseré │ │ │ │ ├── Liseré.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Tableau │ │ │ │ ├── TableauSeuils.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Valeur │ │ │ │ ├── Valeur.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── ValeurImportante │ │ │ │ ├── ValeurImportante.stories.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── drawer │ │ │ ├── Drawer.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── emoji │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── footer │ │ │ ├── column.tsx │ │ │ ├── container.tsx │ │ │ └── index.ts │ │ ├── global-style.ts │ │ ├── global.css │ │ ├── hooks.tsx │ │ ├── icons │ │ │ ├── Loader.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── layout │ │ │ ├── Container.tsx │ │ │ ├── Grid.tsx │ │ │ └── index.tsx │ │ ├── markdown │ │ │ ├── HeadingWithAnchorLink.tsx │ │ │ ├── ImgRenderer.tsx │ │ │ ├── LinkRenderer.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── MarkdownWithAnchorLinks.tsx │ │ │ ├── TextRenderer.tsx │ │ │ └── index.ts │ │ ├── message │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── molecules │ │ │ ├── HelpButtonWithPopover.stories.tsx │ │ │ ├── HelpButtonWithPopover.tsx │ │ │ ├── field │ │ │ │ ├── Checkbox.stories.tsx │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── ChoiceGroup │ │ │ │ │ ├── CardChoiceGroup.stories.tsx │ │ │ │ │ ├── CardChoiceGroup.tsx │ │ │ │ │ ├── ChoiceOption.ts │ │ │ │ │ ├── RadioChoiceGroup.stories.tsx │ │ │ │ │ ├── RadioChoiceGroup.tsx │ │ │ │ │ ├── SelectChoiceGroup.stories.tsx │ │ │ │ │ ├── SelectChoiceGroup.tsx │ │ │ │ │ ├── ToggleChoiceGroup.stories.tsx │ │ │ │ │ ├── ToggleChoiceGroup.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DateField.stories.tsx │ │ │ │ ├── DateField.tsx │ │ │ │ ├── MontantField.stories.tsx │ │ │ │ ├── MontantField.tsx │ │ │ │ ├── NumberField.stories.tsx │ │ │ │ ├── NumberField.tsx │ │ │ │ ├── QuantitéField.stories.tsx │ │ │ │ ├── QuantitéField.tsx │ │ │ │ ├── Radio │ │ │ │ │ ├── Radio.tsx │ │ │ │ │ ├── RadioCard.stories.tsx │ │ │ │ │ ├── RadioCard.tsx │ │ │ │ │ ├── RadioCardGroup.stories.tsx │ │ │ │ │ ├── RadioCardGroup.tsx │ │ │ │ │ ├── ToggleGroup.stories.tsx │ │ │ │ │ ├── ToggleGroup.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SearchField.tsx │ │ │ │ ├── SearchableSelectField │ │ │ │ │ ├── SearchableSelectField.stories.tsx │ │ │ │ │ └── SearchableSelectField.tsx │ │ │ │ ├── Select │ │ │ │ │ ├── ListBox.tsx │ │ │ │ │ ├── PopOver.tsx │ │ │ │ │ ├── Select.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TextAreaField.tsx │ │ │ │ ├── TextField.stories.tsx │ │ │ │ ├── TextField.tsx │ │ │ │ ├── choix │ │ │ │ │ ├── ChoixMultiple.stories.tsx │ │ │ │ │ ├── ChoixMultiple.tsx │ │ │ │ │ ├── ChoixUnique.stories.tsx │ │ │ │ │ ├── ChoixUnique.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── fields │ │ │ │ ├── DateFieldWithPicker │ │ │ │ ├── DateFieldWithPicker.stories.tsx │ │ │ │ ├── DateFieldWithPicker.tsx │ │ │ │ └── index.ts │ │ │ │ ├── Radiogroup │ │ │ │ ├── RadioGroup.stories.tsx │ │ │ │ ├── RadioGroup.tsx │ │ │ │ └── index.ts │ │ │ │ ├── TextField │ │ │ │ ├── TextField.stories.tsx │ │ │ │ ├── TextField.tsx │ │ │ │ └── index.ts │ │ │ │ └── fieldsStyles.tsx │ │ ├── popover │ │ │ ├── Popover.tsx │ │ │ ├── PopoverConfirm.tsx │ │ │ └── PopoverWithTrigger.tsx │ │ ├── root.tsx │ │ ├── splitAriaProps.tsx │ │ ├── stepper │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── suggestions │ │ │ ├── InputSuggestions.stories.tsx │ │ │ ├── InputSuggestions.tsx │ │ │ └── index.ts │ │ ├── switch │ │ │ ├── Switch.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.ts │ │ ├── tag │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── theme.ts │ │ ├── tooltip │ │ │ ├── Tooltip.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.ts │ │ ├── types.ts │ │ └── typography │ │ │ ├── Ol.stories.tsx │ │ │ ├── TitreObjectif.tsx │ │ │ ├── TitreObjectifSaisissable.tsx │ │ │ ├── Ul.stories.tsx │ │ │ ├── heading.tsx │ │ │ ├── index.ts │ │ │ ├── link.tsx │ │ │ ├── list.tsx │ │ │ └── paragraphs.tsx │ ├── domaine │ │ ├── Adresse.ts │ │ ├── AssimiléSalariéContexte.ts │ │ ├── Brand.ts │ │ ├── CodeActivite.ts │ │ ├── CodeCatégorieJuridique.ts │ │ ├── CodesImpôt.ts │ │ ├── ComparateurConfig.ts │ │ ├── Contexte.ts │ │ ├── Date.spec.ts │ │ ├── Date.ts │ │ ├── Entreprise.ts │ │ ├── EntreprisesRepository.ts │ │ ├── IndépendantContexte.ts │ │ ├── Montant.test.ts │ │ ├── Montant.ts │ │ ├── OuiNon.ts │ │ ├── Quantité.ts │ │ ├── RaccourciPublicodes.ts │ │ ├── SimulationConfig.ts │ │ ├── Siren.ts │ │ ├── Situation.ts │ │ ├── SituationPublicodes.ts │ │ ├── Unités.ts │ │ ├── engine │ │ │ ├── MontantAdapter.ts │ │ │ ├── NombrePublicodes.ts │ │ │ ├── OuiNonAdapter.ts │ │ │ ├── PublicodesAdapter.test.ts │ │ │ ├── PublicodesAdapter.ts │ │ │ ├── QuantitéAdapter.ts │ │ │ ├── SimpleRuleEvaluation.ts │ │ │ ├── détermineLesProchainesQuestions.ts │ │ │ ├── engineSingleton.ts │ │ │ └── listeLesVariablesManquantes.ts │ │ ├── estObjectifExclusifDeLaSimulation.ts │ │ ├── estQuestionEnListeNoire.ts │ │ ├── publicodes │ │ │ ├── AutoEntrepreneurContexteDansPublicodes.ts │ │ │ └── TravailleurIndependantContexteDansPublicodes.ts │ │ ├── relativeDottedName.ts │ │ ├── searchParams.test.ts │ │ ├── searchParams.ts │ │ ├── updateSituation.ts │ │ ├── updateSituationMulti.ts │ │ ├── updateSituationMultiple.ts │ │ ├── useQuestions │ │ │ ├── estCeQueLaQuestionPublicodesEstRépondue.test.ts │ │ │ └── estCeQueLaQuestionPublicodesEstRépondue.ts │ │ └── Établissement.ts │ ├── entreprise │ │ └── RepositoriesContext.ts │ ├── entries │ │ ├── entry-en.tsx │ │ ├── entry-fr.tsx │ │ ├── entry-iframe.ts │ │ ├── entry-server.tsx │ │ ├── entry-sw.ts │ │ └── template.html │ ├── external-links │ │ ├── embaucherGérerSalariés.ts │ │ ├── nouvelEmployeur.ts │ │ ├── premiersMoisUrssaf.ts │ │ ├── serviceAutoEntrepreneur.ts │ │ ├── serviceEmployeur.ts │ │ ├── serviceExpertComptable.ts │ │ ├── serviceIndépendant.ts │ │ ├── servicePAM.ts │ │ └── servicePLR.ts │ ├── hooks │ │ ├── UseSelection.ts │ │ ├── useAxeCoreAnalysis.ts │ │ ├── useBarèmeLodeom.ts │ │ ├── useBrowserOnly.ts │ │ ├── useCurrentSimulatorData.ts │ │ ├── useDarkMode.ts │ │ ├── useDate.tsx │ │ ├── useDebounce.ts │ │ ├── useDisplayOnIntersecting.ts │ │ ├── useFetchData.ts │ │ ├── useGetFullURL.ts │ │ ├── useGetPath.ts │ │ ├── useInitialRender.tsx │ │ ├── useIsEmbedded.tsx │ │ ├── useIsIddle.ts │ │ ├── useMediaQuery.ts │ │ ├── useNextQuestion.tsx │ │ ├── useOnClickOutside.ts │ │ ├── useOnKeyDown.ts │ │ ├── useOrdinal.ts │ │ ├── usePlausibleTracking.ts │ │ ├── usePromise.ts │ │ ├── usePublicodes.ts │ │ ├── useQuestionList.ts │ │ ├── useQuestions.ts │ │ ├── useRepositories.ts │ │ ├── useSaveAndRestoreScrollPosition.ts │ │ ├── useSearchCompany.ts │ │ ├── useSearchParamsForSituation.test.ts │ │ ├── useSearchParamsForSituation.tsx │ │ ├── useSetEntreprise.ts │ │ ├── useSetSimulationFromSearchParams.test.ts │ │ ├── useSetSimulationFromSearchParams.ts │ │ ├── useSimulationConfig.ts │ │ ├── useSimulationProgress.tsx │ │ ├── useSimulatorsData.ts │ │ ├── useSiteUrl.tsx │ │ ├── useStatefulRulesEdit.ts │ │ ├── useUrl.test.ts │ │ ├── useUrl.tsx │ │ ├── useYear.ts │ │ └── useZoneLodeom.ts │ ├── locales │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── i18n.ts │ │ ├── rules-en.yaml │ │ ├── translateRules.ts │ │ ├── ui-en.yaml │ │ ├── ui-fr.yaml │ │ └── units.yaml │ ├── pages │ │ ├── 404.tsx │ │ ├── Accessibilité.tsx │ │ ├── Documentation.tsx │ │ ├── Offline.tsx │ │ ├── Plan.tsx │ │ ├── _landing │ │ │ ├── Landing.tsx │ │ │ ├── SearchOrCreate.tsx │ │ │ ├── illustration.backup.svg │ │ │ ├── illustration.svg │ │ │ └── illustration2.svg │ │ ├── assistants │ │ │ ├── choix-du-statut │ │ │ │ ├── _components │ │ │ │ │ ├── ActivitéNonDisponible.tsx │ │ │ │ │ ├── Layout.tsx │ │ │ │ │ ├── Navigation.tsx │ │ │ │ │ ├── StatutsPossibles.tsx │ │ │ │ │ ├── useIsEmbededBPI.tsx │ │ │ │ │ └── useSteps.ts │ │ │ │ ├── _illustrations │ │ │ │ │ └── créer.svg │ │ │ │ ├── association.tsx │ │ │ │ ├── associé.tsx │ │ │ │ ├── commune.tsx │ │ │ │ ├── comparateur.tsx │ │ │ │ ├── config.tsx │ │ │ │ ├── détails-activité.tsx │ │ │ │ ├── home.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── recherche-activité.tsx │ │ │ │ ├── rémunération.tsx │ │ │ │ ├── résultat.tsx │ │ │ │ ├── siret.jpg │ │ │ │ └── siret.png │ │ │ ├── cmg │ │ │ │ ├── components │ │ │ │ │ ├── AMA │ │ │ │ │ │ ├── AMA.tsx │ │ │ │ │ │ ├── AMAInput.tsx │ │ │ │ │ │ ├── AideSaisieAMA.tsx │ │ │ │ │ │ ├── AideSaisieEnfants.tsx │ │ │ │ │ │ ├── DéclarationAMAInput.tsx │ │ │ │ │ │ └── EnfantsGardésInput.tsx │ │ │ │ │ ├── DeleteButton.tsx │ │ │ │ │ ├── GED │ │ │ │ │ │ ├── AideSaisieGED.tsx │ │ │ │ │ │ ├── DéclarationGEDInput.tsx │ │ │ │ │ │ ├── GED.tsx │ │ │ │ │ │ └── GEDInput.tsx │ │ │ │ │ ├── Navigation.tsx │ │ │ │ │ ├── déclaration │ │ │ │ │ │ ├── AideSaisieCMG.tsx │ │ │ │ │ │ ├── AideSaisieHeuresDeGarde.tsx │ │ │ │ │ │ ├── AideSaisieRémunération.tsx │ │ │ │ │ │ ├── CMGPerçuInput.tsx │ │ │ │ │ │ ├── HeuresDeGardeInput.tsx │ │ │ │ │ │ ├── QuestionModesDeGarde.tsx │ │ │ │ │ │ └── RémunérationInput.tsx │ │ │ │ │ ├── enfants │ │ │ │ │ │ ├── DateDeNaissanceInput.tsx │ │ │ │ │ │ ├── EnfantInput.tsx │ │ │ │ │ │ ├── PrénomInput.tsx │ │ │ │ │ │ └── QuestionsAeeH.tsx │ │ │ │ │ ├── informations-générales │ │ │ │ │ │ ├── QuestionCMGPerçu.tsx │ │ │ │ │ │ ├── QuestionNombreMoisDéclarationsSuffisant.tsx │ │ │ │ │ │ ├── QuestionRessources.tsx │ │ │ │ │ │ └── QuestionSituationFamiliale.tsx │ │ │ │ │ └── styled-components.ts │ │ │ │ ├── config.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── pages │ │ │ │ │ ├── Accueil.tsx │ │ │ │ │ ├── Déclarations.tsx │ │ │ │ │ ├── Enfants.tsx │ │ │ │ │ ├── InformationsGénérales.tsx │ │ │ │ │ ├── NonÉligible.tsx │ │ │ │ │ └── Résultat.tsx │ │ │ │ └── simulationConfig.ts │ │ │ ├── components │ │ │ │ ├── ActivitePartielle.tsx │ │ │ │ ├── DeclarationIndependantsCard.tsx │ │ │ │ ├── Fields.tsx │ │ │ │ ├── ImpotSociete.tsx │ │ │ │ └── Video.tsx │ │ │ ├── declaration-charges-sociales-independant │ │ │ │ ├── components │ │ │ │ │ ├── ExplicationResultatFiscal.tsx │ │ │ │ │ ├── Formulaire.tsx │ │ │ │ │ ├── ImpositionSection.tsx │ │ │ │ │ └── Résultats.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── simulationConfig.ts │ │ │ │ └── undraw_fill_in_mie5.svg │ │ │ ├── declaration-revenu-independants │ │ │ │ ├── illustration.svg │ │ │ │ └── index.tsx │ │ │ ├── declaration-revenus-pamc │ │ │ │ ├── components │ │ │ │ │ ├── CheckboxImpôts.tsx │ │ │ │ │ ├── DéclarantSelection.tsx │ │ │ │ │ ├── Formulaire.tsx │ │ │ │ │ ├── LigneImpôts.tsx │ │ │ │ │ ├── MontantImpôts.tsx │ │ │ │ │ └── Résultats.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── index.tsx │ │ │ │ └── simulationConfig.ts │ │ │ ├── demande-mobilité │ │ │ │ ├── config.ts │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── pour-mon-entreprise │ │ │ │ ├── AnnuaireEntreprises.tsx │ │ │ │ ├── config.tsx │ │ │ │ ├── forms.svg │ │ │ │ ├── growth.svg │ │ │ │ └── index.tsx │ │ │ ├── recherche-code-ape │ │ │ │ ├── SearchCodeAPE.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ActivityNotFound.tsx │ │ │ │ │ ├── HelpGuichetUnique.tsx │ │ │ │ │ └── Result.tsx │ │ │ │ ├── config.tsx │ │ │ │ └── index.tsx │ │ │ └── économie-collaborative │ │ │ │ ├── illustration.svg │ │ │ │ └── index.tsx │ │ ├── budget │ │ │ ├── ResourcesAllocation.tsx │ │ │ ├── budget.yaml │ │ │ └── index.tsx │ │ ├── dev │ │ │ └── IntegrationTest.tsx │ │ ├── iframes │ │ │ ├── IframeFooter.tsx │ │ │ └── index.tsx │ │ ├── integration │ │ │ ├── API.tsx │ │ │ ├── Home.tsx │ │ │ ├── Iframe.tsx │ │ │ ├── Library.tsx │ │ │ ├── Spreadsheet.tsx │ │ │ ├── components │ │ │ │ ├── CasParticuliers.tsx │ │ │ │ └── StepByStep.tsx │ │ │ ├── iframe.css │ │ │ ├── images │ │ │ │ ├── API_illustration.svg │ │ │ │ ├── cci.png │ │ │ │ ├── illustration_code.svg │ │ │ │ ├── illustration_library.svg │ │ │ │ ├── logo-betagouv.svg │ │ │ │ ├── min-tra.jpg │ │ │ │ └── pole-emploi.png │ │ │ └── index.tsx │ │ ├── nouveautés │ │ │ └── index.tsx │ │ ├── simulateurs-et-assistants │ │ │ ├── illustration-simulateur.svg │ │ │ ├── index.tsx │ │ │ └── metadata-src.ts │ │ ├── simulateurs │ │ │ ├── NextSteps.tsx │ │ │ ├── _configs │ │ │ │ ├── config.ts │ │ │ │ └── types.ts │ │ │ ├── _images │ │ │ │ ├── AutoEntrepreneurPreview.png │ │ │ │ └── RémunérationSASUPreview.png │ │ │ ├── activité-partielle │ │ │ │ ├── ActivitéPartielle.tsx │ │ │ │ ├── ActivitéPartiellePreview.png │ │ │ │ ├── ComparaisonTable.tsx │ │ │ │ ├── SeoExplanations.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── artiste-auteur │ │ │ │ ├── ArtisteAuteur.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── auto-entrepreneur │ │ │ │ ├── AutoEntrepreneur.tsx │ │ │ │ ├── AutoEntrepreneurDétails.tsx │ │ │ │ ├── SeoExplanations.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── auxiliaire-médical │ │ │ │ └── config.ts │ │ │ ├── avocat │ │ │ │ └── config.ts │ │ │ ├── cards │ │ │ │ ├── ExternalLinkCard.tsx │ │ │ │ ├── IframeIntegrationCard.tsx │ │ │ │ └── SimulatorRessourceCard.tsx │ │ │ ├── cessation-activité │ │ │ │ ├── CessationActivité.tsx │ │ │ │ ├── Goals.tsx │ │ │ │ ├── Toggles.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── chirurgien-dentiste │ │ │ │ └── config.ts │ │ │ ├── cipav │ │ │ │ ├── config.tsx │ │ │ │ └── simulationConfig.ts │ │ │ ├── comparaison-statuts │ │ │ │ ├── EngineComparison.tsx │ │ │ │ ├── NamedEngine.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Comparateur.tsx │ │ │ │ │ ├── DetailsRowCards.tsx │ │ │ │ │ ├── Détails.tsx │ │ │ │ │ ├── ItemTitle.tsx │ │ │ │ │ ├── ModifierOptions.tsx │ │ │ │ │ ├── RevenuEstimé.tsx │ │ │ │ │ ├── RevenuTable.tsx │ │ │ │ │ ├── StatutChoice.tsx │ │ │ │ │ ├── TableRow.tsx │ │ │ │ │ └── WarningTooltip.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── simulationConfig.ts │ │ │ │ └── utils.ts │ │ │ ├── cout-creation-entreprise │ │ │ │ ├── config.ts │ │ │ │ └── index.tsx │ │ │ ├── dividendes │ │ │ │ ├── Dividendes.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── eirl │ │ │ │ ├── Avertissement.tsx │ │ │ │ └── config.ts │ │ │ ├── entreprise-individuelle │ │ │ │ └── config.ts │ │ │ ├── eurl │ │ │ │ └── config.tsx │ │ │ ├── expert-comptable │ │ │ │ └── config.ts │ │ │ ├── impot-societe │ │ │ │ ├── config.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── simulationConfig.ts │ │ │ ├── index.tsx │ │ │ ├── indépendant │ │ │ │ ├── EntrepriseIndividuelle.tsx │ │ │ │ ├── Goals.tsx │ │ │ │ ├── Indépendant.tsx │ │ │ │ ├── IndépendantPLSimulation.tsx │ │ │ │ ├── SeoExplanationsEI.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── location-de-meublé │ │ │ │ ├── LocationDeMeublé.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── documentation │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── micro-bic.mdx │ │ │ │ ├── objectifs │ │ │ │ │ ├── ObjectifCotisations.tsx │ │ │ │ │ ├── ObjectifRecettes.tsx │ │ │ │ │ └── ObjectifRevenuNet.tsx │ │ │ │ ├── questions │ │ │ │ │ ├── AlsaceMoselleQuestion.tsx │ │ │ │ │ ├── RegimeCotisationQuestion.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── questionPremiereAnnee.tsx │ │ │ │ └── simulationConfig.ts │ │ │ ├── lodeom │ │ │ │ ├── Goals.tsx │ │ │ │ ├── Lodeom.tsx │ │ │ │ ├── components │ │ │ │ │ ├── BarèmeSwitch.tsx │ │ │ │ │ ├── WarningSalaireTrans.tsx │ │ │ │ │ ├── Warnings.tsx │ │ │ │ │ └── ZoneSwitch.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── médecin │ │ │ │ └── config.ts │ │ │ ├── pamc │ │ │ │ ├── PAMCHome.tsx │ │ │ │ └── config.ts │ │ │ ├── pharmacien │ │ │ │ └── config.ts │ │ │ ├── profession-libérale │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── reduction-generale │ │ │ │ ├── Goals.tsx │ │ │ │ ├── RéductionGénérale.tsx │ │ │ │ ├── components │ │ │ │ │ ├── CongésPayésSwitch.tsx │ │ │ │ │ ├── WarningSalaireTrans.tsx │ │ │ │ │ └── Warnings.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ │ ├── sage-femme │ │ │ │ └── config.ts │ │ │ ├── salarié │ │ │ │ ├── SalaireBrutNetPreviewEN.png │ │ │ │ ├── SalaireBrutNetPreviewFR.png │ │ │ │ ├── Salarié.tsx │ │ │ │ ├── config.ts │ │ │ │ ├── illustration-net-brut-en.png │ │ │ │ ├── illustration-net-brut.png │ │ │ │ └── simulationConfig.ts │ │ │ └── sasu │ │ │ │ ├── SASU.tsx │ │ │ │ ├── config.ts │ │ │ │ └── simulationConfig.ts │ │ └── statistiques │ │ │ ├── DemandesUtilisateurs.tsx │ │ │ ├── Stats.tsx │ │ │ ├── StatsPage.tsx │ │ │ ├── _components │ │ │ ├── AccessibleTable.tsx │ │ │ ├── Chart.tsx │ │ │ ├── LastMonthIndicators.tsx │ │ │ ├── LastYearIndicator.tsx │ │ │ ├── PagesCharts.tsx │ │ │ ├── SatisfactionChart.tsx │ │ │ ├── SimulateursChoice.tsx │ │ │ ├── VisitChart.tsx │ │ │ └── utils.tsx │ │ │ ├── index.tsx │ │ │ ├── types.ts │ │ │ └── useStatistiques.tsx │ ├── public │ │ ├── data │ │ │ ├── base-stats.json │ │ │ └── versement-mobilité.json │ │ ├── favicon │ │ │ ├── android-chrome-192x192-shadow.png │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512-shadow.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ │ ├── fonts │ │ │ ├── montserrat-v18-latin-700.woff │ │ │ ├── montserrat-v18-latin-700.woff2 │ │ │ ├── roboto-v29-latin-500.woff │ │ │ ├── roboto-v29-latin-500.woff2 │ │ │ ├── roboto-v29-latin-500italic.woff │ │ │ ├── roboto-v29-latin-500italic.woff2 │ │ │ ├── roboto-v29-latin-700.woff │ │ │ ├── roboto-v29-latin-700.woff2 │ │ │ ├── roboto-v29-latin-700italic.woff │ │ │ ├── roboto-v29-latin-700italic.woff2 │ │ │ ├── roboto-v29-latin-italic.woff │ │ │ ├── roboto-v29-latin-italic.woff2 │ │ │ ├── roboto-v29-latin-regular.woff │ │ │ └── roboto-v29-latin-regular.woff2 │ │ ├── google12806d2f3452e656.html │ │ ├── googlece6dd8bcbdcbe236.html │ │ ├── logo-mycompany-share.png │ │ ├── logo-share.png │ │ ├── robots.en.txt │ │ └── robots.fr.txt │ ├── services │ │ └── plausibleService.ts │ ├── sitePaths.ts │ ├── storage │ │ ├── persistChoixStatutJuridique.ts │ │ ├── persistCompanySituation.ts │ │ ├── persistSimulation.ts │ │ ├── readCookie.ts │ │ ├── safeLocalStorage.ts │ │ └── serializeSimulation.ts │ ├── store │ │ ├── actions │ │ │ ├── actions.ts │ │ │ ├── companyActions.ts │ │ │ └── hiringChecklistAction.ts │ │ ├── middlewares │ │ │ └── prendLaProchaineQuestion.middleware.ts │ │ ├── reducers │ │ │ ├── SituationReducer.ts │ │ │ ├── choixStatutJuridiqueReducer.ts │ │ │ ├── companySituationReducer.ts │ │ │ ├── previousSimulationRootReducer.ts │ │ │ ├── rootReducer.ts │ │ │ ├── simulation.reducer.spec.ts │ │ │ └── simulation.reducer.ts │ │ ├── selectors │ │ │ ├── acreActivé.selector.ts │ │ │ ├── config.selector.ts │ │ │ ├── currentQuestion.selector.ts │ │ │ ├── estSurLaPremièreQuestionRépondue.selector.ts │ │ │ ├── ilYADesQuestions.selector.test.ts │ │ │ ├── ilYADesQuestions.selector.ts │ │ │ ├── listeNoire.selector.ts │ │ │ ├── numéroDeLaQuestionEnCours.selector.ts │ │ │ ├── previousSimulationSelectors.ts │ │ │ ├── questionEnCoursRépondue.selector.ts │ │ │ ├── questionsRépondues.selector.ts │ │ │ ├── questionsRéponduesEncoreApplicables.selector.ts │ │ │ ├── questionsRéponduesEncoreApplicablesNoms.selector.ts │ │ │ ├── questionsRéponduesNom.selector.ts │ │ │ ├── questionsSuivantes.selector.ts │ │ │ ├── raccourcis.selector.ts │ │ │ ├── simulation.selector.ts │ │ │ └── simulationSelectors.ts │ │ ├── slices │ │ │ └── simulateursSlice.ts │ │ └── store.ts │ ├── types │ │ ├── app-env.d.ts │ │ ├── iframe-resizer.d.ts │ │ ├── import-yaml.d.ts │ │ ├── mdx.d.ts │ │ ├── react-i18next.d.ts │ │ ├── styled.d.ts │ │ └── utils.d.ts │ └── utils │ │ ├── ChangeHandler.ts │ │ ├── NoOp.ts │ │ ├── URLs.ts │ │ ├── complement.ts │ │ ├── dates.ts │ │ ├── guichetToPLMétier.ts │ │ ├── hexToHSL.ts │ │ ├── index.ts │ │ ├── logos.ts │ │ ├── number.ts │ │ ├── publicodes.ts │ │ ├── react-compound-components.ts │ │ └── réductionDeCotisations.ts ├── test │ ├── fabrique-social.fixtures.ts │ ├── fabrique-social.test.ts │ ├── modele-social.test.ts │ ├── modele-social │ │ ├── ae-cotisations-cipav.test.ts │ │ ├── entreprise │ │ │ └── imposition.test.ts │ │ ├── helpers │ │ │ ├── PublicodesTypes.ts │ │ │ └── logValue.ts │ │ ├── lodeom.test.ts │ │ ├── matchers │ │ │ └── toEvaluate.ts │ │ └── réduction-générale.test.ts │ ├── persistence.test.ts │ ├── regressions │ │ ├── SASU.test.ts │ │ ├── SASU.yaml │ │ ├── __snapshots__ │ │ │ ├── SASU.test.ts.snap │ │ │ ├── artiste-auteur.test.ts.snap │ │ │ ├── auto-entrepreneur.test.ts.snap │ │ │ ├── comparateur-statuts.test.ts.snap │ │ │ ├── convention-collective.test.ts.snap │ │ │ ├── dividendes.test.ts.snap │ │ │ ├── impôt-société.test.ts.snap │ │ │ ├── indépendant.test.ts.snap │ │ │ ├── professions-libérales.test.ts.snap │ │ │ ├── réduction-générale.test.ts.snap │ │ │ └── salarié.test.ts.snap │ │ ├── artiste-auteur.test.ts │ │ ├── artiste-auteur.yaml │ │ ├── assistant-charges-sociales.yaml │ │ ├── auto-entrepreneur.test.ts │ │ ├── auto-entrepreneur.yaml │ │ ├── comparateur-statuts.test.ts │ │ ├── comparateur-statuts.yaml │ │ ├── convention-collective.test.ts │ │ ├── convention-collective.yaml │ │ ├── dividendes.test.ts │ │ ├── dividendes.yaml │ │ ├── impôt-société.test.ts │ │ ├── impôt-société.yaml │ │ ├── indépendant.test.ts │ │ ├── indépendant.yaml │ │ ├── professions-libérales.test.ts │ │ ├── professions-libérales.yaml │ │ ├── réduction-générale.test.ts │ │ ├── réduction-générale.yaml │ │ ├── salarié.test.ts │ │ ├── salarié.yaml │ │ └── utils.ts │ ├── unit-translations.test.js │ └── vitest.d.ts ├── tsconfig.json ├── vite.config.ts └── vitest-setup.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://mon-entreprise.urssaf.fr/budget'] 2 | -------------------------------------------------------------------------------- /.github/actions/install/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/actions/install/action.yaml -------------------------------------------------------------------------------- /.github/actions/reopen-issue-with-comment/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/actions/reopen-issue-with-comment/action.yaml -------------------------------------------------------------------------------- /.github/actions/reopen-issue-with-comment/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/actions/reopen-issue-with-comment/main.js -------------------------------------------------------------------------------- /.github/workflows/check-links-validity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/check-links-validity.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/pr-cleanup.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test-external-integrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/test-external-integrations.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/update-stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.github/workflows/update-stats.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.18 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.yarn/plugins/@yarnpkg/plugin-version.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.5.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.yarn/releases/yarn-3.5.0.cjs -------------------------------------------------------------------------------- /.yarn/versions/3f500af6.yml: -------------------------------------------------------------------------------- 1 | undecided: 2 | - site 3 | -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/README.md -------------------------------------------------------------------------------- /adr/ADR-2025-05-29-architecture-number-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/adr/ADR-2025-05-29-architecture-number-input.md -------------------------------------------------------------------------------- /adr/ADR-2025-05-29-module-boundaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/adr/ADR-2025-05-29-module-boundaries.md -------------------------------------------------------------------------------- /adr/ADR-2025-10-02-compound-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/adr/ADR-2025-10-02-compound-components.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | source/openapi.json 2 | -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/README.md -------------------------------------------------------------------------------- /api/artilleryio-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/artilleryio-config.yaml -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/package.json -------------------------------------------------------------------------------- /api/public/doc/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/public/doc/swagger-initializer.js -------------------------------------------------------------------------------- /api/source/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/analytics.ts -------------------------------------------------------------------------------- /api/source/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/errors.ts -------------------------------------------------------------------------------- /api/source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/index.ts -------------------------------------------------------------------------------- /api/source/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/openapi.yaml -------------------------------------------------------------------------------- /api/source/rate-limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/rate-limiter.ts -------------------------------------------------------------------------------- /api/source/redis-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/redis-cache.ts -------------------------------------------------------------------------------- /api/source/route/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/route/doc.ts -------------------------------------------------------------------------------- /api/source/route/openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/route/openapi.ts -------------------------------------------------------------------------------- /api/source/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/sentry.ts -------------------------------------------------------------------------------- /api/source/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/server.ts -------------------------------------------------------------------------------- /api/source/test-e2e/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/test-e2e/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /api/source/test-e2e/coherence-npm-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/test-e2e/coherence-npm-api.test.ts -------------------------------------------------------------------------------- /api/source/test-e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/test-e2e/index.test.ts -------------------------------------------------------------------------------- /api/source/test-e2e/test-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/test-e2e/test-server.ts -------------------------------------------------------------------------------- /api/source/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/utils.ts -------------------------------------------------------------------------------- /api/source/v1unitéAdapterMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/source/v1unitéAdapterMiddleware.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /api/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/api/vitest.config.ts -------------------------------------------------------------------------------- /architecture.archimate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/architecture.archimate -------------------------------------------------------------------------------- /exoneration-covid/.yarnrc.yaml: -------------------------------------------------------------------------------- 1 | nodeLinker: 'pnp' 2 | -------------------------------------------------------------------------------- /exoneration-covid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/CHANGELOG.md -------------------------------------------------------------------------------- /exoneration-covid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/README.md -------------------------------------------------------------------------------- /exoneration-covid/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/index.d.ts -------------------------------------------------------------------------------- /exoneration-covid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/package.json -------------------------------------------------------------------------------- /exoneration-covid/règles/exonération-covid.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/règles/exonération-covid.publicodes -------------------------------------------------------------------------------- /exoneration-covid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/exoneration-covid/tsconfig.json -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/flake.nix -------------------------------------------------------------------------------- /modele-social/.yarnrc.yaml: -------------------------------------------------------------------------------- 1 | nodeLinker: pnp 2 | -------------------------------------------------------------------------------- /modele-social/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/CHANGELOG.md -------------------------------------------------------------------------------- /modele-social/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/CONTRIBUTING.md -------------------------------------------------------------------------------- /modele-social/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/README.md -------------------------------------------------------------------------------- /modele-social/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/index.d.ts -------------------------------------------------------------------------------- /modele-social/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/package.json -------------------------------------------------------------------------------- /modele-social/règles/artiste-auteur.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/artiste-auteur.publicodes -------------------------------------------------------------------------------- /modele-social/règles/base.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/base.publicodes -------------------------------------------------------------------------------- /modele-social/règles/bénéficiaire.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/bénéficiaire.publicodes -------------------------------------------------------------------------------- /modele-social/règles/dirigeant/dirigeant.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/dirigeant/dirigeant.publicodes -------------------------------------------------------------------------------- /modele-social/règles/dirigeant/exonération-covid.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/dirigeant/exonération-covid.publicodes -------------------------------------------------------------------------------- /modele-social/règles/dirigeant/exonérations.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/dirigeant/exonérations.publicodes -------------------------------------------------------------------------------- /modele-social/règles/dirigeant/exonérations/ACRE.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/dirigeant/exonérations/ACRE.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/activité.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/activité.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/coût-création.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/coût-création.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/duree-activité.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/duree-activité.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/entreprise.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/entreprise.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/imposition.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/imposition.publicodes -------------------------------------------------------------------------------- /modele-social/règles/entreprise/établissement.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/entreprise/établissement.publicodes -------------------------------------------------------------------------------- /modele-social/règles/impôt.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/impôt.publicodes -------------------------------------------------------------------------------- /modele-social/règles/protection-sociale.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/protection-sociale.publicodes -------------------------------------------------------------------------------- /modele-social/règles/période.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/période.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/activité-partielle.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/activité-partielle.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/aides-employeur.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/aides-employeur.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/contrat.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/contrat.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/cotisations.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/cotisations.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/exonérations/JEI.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/exonérations/JEI.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/exonérations/acre.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/exonérations/acre.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/exonérations/lodeom.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/exonérations/lodeom.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/mois-incomplet.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/mois-incomplet.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/rémunération.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/rémunération.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/salarié.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/salarié.publicodes -------------------------------------------------------------------------------- /modele-social/règles/salarié/temps-de-travail.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/salarié/temps-de-travail.publicodes -------------------------------------------------------------------------------- /modele-social/règles/situation-personnelle.publicodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/règles/situation-personnelle.publicodes -------------------------------------------------------------------------------- /modele-social/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/modele-social/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/scripts/build-rules.js -------------------------------------------------------------------------------- /scripts/check-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/scripts/check-changelog.js -------------------------------------------------------------------------------- /scripts/check-links-validity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/scripts/check-links-validity.js -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /server/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/.env.template -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/README.md -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/package.json -------------------------------------------------------------------------------- /server/source/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/config.ts -------------------------------------------------------------------------------- /server/source/functions/send-crisp-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/functions/send-crisp-message.ts -------------------------------------------------------------------------------- /server/source/index.ts: -------------------------------------------------------------------------------- 1 | import './server.js' 2 | -------------------------------------------------------------------------------- /server/source/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/jobs.ts -------------------------------------------------------------------------------- /server/source/jobs/daily-stand-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/jobs/daily-stand-up.ts -------------------------------------------------------------------------------- /server/source/jobs/refresh-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/jobs/refresh-token.ts -------------------------------------------------------------------------------- /server/source/jobs/weekly-randomizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/jobs/weekly-randomizer.ts -------------------------------------------------------------------------------- /server/source/mattermost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/mattermost.ts -------------------------------------------------------------------------------- /server/source/mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/mongodb.ts -------------------------------------------------------------------------------- /server/source/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/oauth.ts -------------------------------------------------------------------------------- /server/source/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/server.ts -------------------------------------------------------------------------------- /server/source/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/source/utils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@breejs/later' 2 | -------------------------------------------------------------------------------- /site/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/.env.template -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/.storybook/main.ts -------------------------------------------------------------------------------- /site/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/.storybook/preview.tsx -------------------------------------------------------------------------------- /site/ACCESSIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/ACCESSIBILITY.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/README.md -------------------------------------------------------------------------------- /site/build/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/.eslintrc.yaml -------------------------------------------------------------------------------- /site/build/build-sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/build-sitemap.ts -------------------------------------------------------------------------------- /site/build/multiple-SPA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/multiple-SPA.ts -------------------------------------------------------------------------------- /site/build/prerender-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/prerender-worker.js -------------------------------------------------------------------------------- /site/build/prerender-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/prerender-worker.ts -------------------------------------------------------------------------------- /site/build/prerender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/prerender.ts -------------------------------------------------------------------------------- /site/build/vite-build-simulation-data.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/vite-build-simulation-data.config.ts -------------------------------------------------------------------------------- /site/build/vite-iframe-script.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/vite-iframe-script.config.ts -------------------------------------------------------------------------------- /site/build/vite-pwa-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/build/vite-pwa-options.ts -------------------------------------------------------------------------------- /site/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress.config.ts -------------------------------------------------------------------------------- /site/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/README.md -------------------------------------------------------------------------------- /site/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/fixtures/example.json -------------------------------------------------------------------------------- /site/cypress/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/README.md -------------------------------------------------------------------------------- /site/cypress/integration/external/external-integrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/external/external-integrations.js -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/covid19.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/covid19.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/english/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/english/sitemap.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/footer.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/iframe-pamc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/iframe-pamc.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/iframe.js -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/landing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/landing.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/recherche.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/recherche.ts -------------------------------------------------------------------------------- /site/cypress/integration/mon-entreprise/secondary-pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/integration/mon-entreprise/secondary-pages.ts -------------------------------------------------------------------------------- /site/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/support/commands.ts -------------------------------------------------------------------------------- /site/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/support/e2e.ts -------------------------------------------------------------------------------- /site/cypress/support/simulateur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/support/simulateur.ts -------------------------------------------------------------------------------- /site/cypress/support/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/support/utils.ts -------------------------------------------------------------------------------- /site/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/cypress/tsconfig.json -------------------------------------------------------------------------------- /site/mon-entreprise.fr/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/mon-entreprise.fr/netlify.toml -------------------------------------------------------------------------------- /site/netlify.base.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/netlify.base.toml -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/package.json -------------------------------------------------------------------------------- /site/scripts/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/.eslintrc.yaml -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/NAF-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/NAF-search/README.md -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/NAF-search/custom-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/NAF-search/custom-tags.ts -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/NAF-search/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/NAF-search/custom.ts -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/NAF-search/merge-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/NAF-search/merge-data.ts -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/NAF-search/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/NAF-search/output.json -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/copy-to-data-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/copy-to-data-dir.js -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/extract-NAF-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/extract-NAF-data/README.md -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/extract-NAF-data/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/extract-NAF-data/output.json -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/extract-NAF-data/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/extract-NAF-data/output.txt -------------------------------------------------------------------------------- /site/scripts/NAFAndGuichetData/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/NAFAndGuichetData/package.json -------------------------------------------------------------------------------- /site/scripts/fetch-job-offers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/fetch-job-offers.js -------------------------------------------------------------------------------- /site/scripts/fetch-releases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/fetch-releases.js -------------------------------------------------------------------------------- /site/scripts/fetch-versement-mobilité.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/fetch-versement-mobilité.js -------------------------------------------------------------------------------- /site/scripts/i18n/check-missing-UI-translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/check-missing-UI-translation.js -------------------------------------------------------------------------------- /site/scripts/i18n/check-missing-rule-translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/check-missing-rule-translation.js -------------------------------------------------------------------------------- /site/scripts/i18n/parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/parser.config.js -------------------------------------------------------------------------------- /site/scripts/i18n/translate-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/translate-rules.js -------------------------------------------------------------------------------- /site/scripts/i18n/translate-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/translate-ui.js -------------------------------------------------------------------------------- /site/scripts/i18n/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/i18n/utils.js -------------------------------------------------------------------------------- /site/scripts/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/prepare.js -------------------------------------------------------------------------------- /site/scripts/search/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/search/clean.js -------------------------------------------------------------------------------- /site/scripts/search/export-simulation-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/search/export-simulation-data.ts -------------------------------------------------------------------------------- /site/scripts/search/update-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/search/update-data.ts -------------------------------------------------------------------------------- /site/scripts/stats/fetch-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/stats/fetch-stats.js -------------------------------------------------------------------------------- /site/scripts/stats/matomoVisitHistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/stats/matomoVisitHistory.json -------------------------------------------------------------------------------- /site/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/scripts/utils.js -------------------------------------------------------------------------------- /site/source/SearchParamsAdapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/SearchParamsAdapter.test.ts -------------------------------------------------------------------------------- /site/source/SearchParamsAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/SearchParamsAdapter.ts -------------------------------------------------------------------------------- /site/source/api/RechercheEntreprise/fabrique-social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/api/RechercheEntreprise/fabrique-social.ts -------------------------------------------------------------------------------- /site/source/api/activité-vers-bénéfice/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/api/activité-vers-bénéfice/data.json -------------------------------------------------------------------------------- /site/source/api/activité-vers-bénéfice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/api/activité-vers-bénéfice/index.tsx -------------------------------------------------------------------------------- /site/source/api/commune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/api/commune.ts -------------------------------------------------------------------------------- /site/source/api/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/api/sentry.ts -------------------------------------------------------------------------------- /site/source/assets/images/Urssaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/Urssaf.svg -------------------------------------------------------------------------------- /site/source/assets/images/assurance-maladie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/assurance-maladie.svg -------------------------------------------------------------------------------- /site/source/assets/images/banner-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/banner-share.png -------------------------------------------------------------------------------- /site/source/assets/images/banner-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/banner-share.svg -------------------------------------------------------------------------------- /site/source/assets/images/company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/company.svg -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/Urssaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/Urssaf.png -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/Urssaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/Urssaf.svg -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/agirc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/agirc.png -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/cnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/cnav.png -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/destinataires.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/destinataires.yaml -------------------------------------------------------------------------------- /site/source/assets/images/destinataires/salarié.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/destinataires/salarié.png -------------------------------------------------------------------------------- /site/source/assets/images/estimate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/estimate.svg -------------------------------------------------------------------------------- /site/source/assets/images/hiring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/hiring.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-backup.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-dgfip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-dgfip.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-monentreprise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-monentreprise.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-monentreprise_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-monentreprise_white.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-mycompany.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-mycompany.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo-mycompany_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo-mycompany_white.svg -------------------------------------------------------------------------------- /site/source/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logo.svg -------------------------------------------------------------------------------- /site/source/assets/images/logos-caisses-retraite/carmf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logos-caisses-retraite/carmf.png -------------------------------------------------------------------------------- /site/source/assets/images/logos-caisses-retraite/cavp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logos-caisses-retraite/cavp.svg -------------------------------------------------------------------------------- /site/source/assets/images/logos-caisses-retraite/cnbf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/logos-caisses-retraite/cnbf.png -------------------------------------------------------------------------------- /site/source/assets/images/marianne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/marianne.svg -------------------------------------------------------------------------------- /site/source/assets/images/missed_chance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/missed_chance.svg -------------------------------------------------------------------------------- /site/source/assets/images/mycompany-logo-partage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/mycompany-logo-partage.png -------------------------------------------------------------------------------- /site/source/assets/images/publicodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/publicodes.png -------------------------------------------------------------------------------- /site/source/assets/images/revenus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/revenus.svg -------------------------------------------------------------------------------- /site/source/assets/images/road-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/road-sign.svg -------------------------------------------------------------------------------- /site/source/assets/images/références-images/ameli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/références-images/ameli.svg -------------------------------------------------------------------------------- /site/source/assets/images/références-images/boss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/références-images/boss.svg -------------------------------------------------------------------------------- /site/source/assets/images/références-images/cpsti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/références-images/cpsti.svg -------------------------------------------------------------------------------- /site/source/assets/images/références-images/urssaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/assets/images/références-images/urssaf.svg -------------------------------------------------------------------------------- /site/source/components/ATInternetTracking/.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | ignorePatterns: 2 | - piano-analytics.js 3 | -------------------------------------------------------------------------------- /site/source/components/ATInternetTracking/Tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ATInternetTracking/Tracker.ts -------------------------------------------------------------------------------- /site/source/components/ATInternetTracking/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ATInternetTracking/index.tsx -------------------------------------------------------------------------------- /site/source/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/App.tsx -------------------------------------------------------------------------------- /site/source/components/Assistant/AssistantGoal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Assistant/AssistantGoal.tsx -------------------------------------------------------------------------------- /site/source/components/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/BarChart.tsx -------------------------------------------------------------------------------- /site/source/components/BetaBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/BetaBanner/index.tsx -------------------------------------------------------------------------------- /site/source/components/ChiffreAffairesActivitéMixte.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ChiffreAffairesActivitéMixte.tsx -------------------------------------------------------------------------------- /site/source/components/ConseillersEntreprisesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ConseillersEntreprisesButton.tsx -------------------------------------------------------------------------------- /site/source/components/ConseillersEntreprisesIframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ConseillersEntreprisesIframe.tsx -------------------------------------------------------------------------------- /site/source/components/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Contact.tsx -------------------------------------------------------------------------------- /site/source/components/CurrentSimulatorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/CurrentSimulatorCard.tsx -------------------------------------------------------------------------------- /site/source/components/DateChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/DateChip.tsx -------------------------------------------------------------------------------- /site/source/components/Distribution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Distribution.css -------------------------------------------------------------------------------- /site/source/components/EngineDocumentationRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineDocumentationRoutes.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/Condition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/Condition.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/Value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/Value.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/WhenAlreadyDefined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/WhenAlreadyDefined.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/WhenApplicable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/WhenApplicable.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/WhenNotApplicable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/WhenNotApplicable.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/WhenValueEquals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/WhenValueEquals.tsx -------------------------------------------------------------------------------- /site/source/components/EngineValue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/EngineValue/types.ts -------------------------------------------------------------------------------- /site/source/components/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ErrorPage.tsx -------------------------------------------------------------------------------- /site/source/components/Feedback/Feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Feedback/Feedback.tsx -------------------------------------------------------------------------------- /site/source/components/Feedback/FeedbackForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Feedback/FeedbackForm.tsx -------------------------------------------------------------------------------- /site/source/components/Feedback/FeedbackRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Feedback/FeedbackRating.tsx -------------------------------------------------------------------------------- /site/source/components/Feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Feedback/index.tsx -------------------------------------------------------------------------------- /site/source/components/Feedback/useFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Feedback/useFeedback.ts -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/CotisationLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/CotisationLine.tsx -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/Cotisations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/Cotisations.tsx -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/FicheDePaie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/FicheDePaie.css -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/FicheDePaie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/FicheDePaie.tsx -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/Line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/Line.tsx -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/SalaireBrut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/SalaireBrut.tsx -------------------------------------------------------------------------------- /site/source/components/FicheDePaie/SalaireNet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/FicheDePaie/SalaireNet.tsx -------------------------------------------------------------------------------- /site/source/components/GuichetInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/GuichetInfo.tsx -------------------------------------------------------------------------------- /site/source/components/IframeResizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/IframeResizer.ts -------------------------------------------------------------------------------- /site/source/components/JeDonneMonAvis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/JeDonneMonAvis.tsx -------------------------------------------------------------------------------- /site/source/components/LectureGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/LectureGuide.tsx -------------------------------------------------------------------------------- /site/source/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Logo.tsx -------------------------------------------------------------------------------- /site/source/components/MoreInfosOnUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/MoreInfosOnUs.tsx -------------------------------------------------------------------------------- /site/source/components/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Notifications.tsx -------------------------------------------------------------------------------- /site/source/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/PageHeader.tsx -------------------------------------------------------------------------------- /site/source/components/PeriodSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/PeriodSwitch.tsx -------------------------------------------------------------------------------- /site/source/components/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Provider.tsx -------------------------------------------------------------------------------- /site/source/components/Redirections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Redirections.tsx -------------------------------------------------------------------------------- /site/source/components/References.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/References.tsx -------------------------------------------------------------------------------- /site/source/components/RuleLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/RuleLink.tsx -------------------------------------------------------------------------------- /site/source/components/RéductionDeCotisations/Montant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/RéductionDeCotisations/Montant.tsx -------------------------------------------------------------------------------- /site/source/components/SearchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/SearchButton.tsx -------------------------------------------------------------------------------- /site/source/components/ServiceWorker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ServiceWorker.tsx -------------------------------------------------------------------------------- /site/source/components/ShareSimulationBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ShareSimulationBanner/index.tsx -------------------------------------------------------------------------------- /site/source/components/SimulateurCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/SimulateurCard.tsx -------------------------------------------------------------------------------- /site/source/components/SimulateurOrAssistantPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/SimulateurOrAssistantPage.tsx -------------------------------------------------------------------------------- /site/source/components/SimulateurWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/SimulateurWarning.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/Banner.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/ComposantQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/ComposantQuestion.ts -------------------------------------------------------------------------------- /site/source/components/Simulation/EntrepriseSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/EntrepriseSelection.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/Objectif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/Objectif.ts -------------------------------------------------------------------------------- /site/source/components/Simulation/Questions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/Questions.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/Raccourcis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/Raccourcis.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/SimulationGoal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/SimulationGoal.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/SimulationGoals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/SimulationGoals.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/SimulationValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/SimulationValue.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/YearSelectionBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/YearSelectionBanner.tsx -------------------------------------------------------------------------------- /site/source/components/Simulation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/Simulation/index.tsx -------------------------------------------------------------------------------- /site/source/components/StackedBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/StackedBarChart.tsx -------------------------------------------------------------------------------- /site/source/components/StatutTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/StatutTag.tsx -------------------------------------------------------------------------------- /site/source/components/TrackingProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/TrackingProvider.tsx -------------------------------------------------------------------------------- /site/source/components/WrongSimulateurWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/WrongSimulateurWarning.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/AnswerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/AnswerList.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/Choice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/Choice.ts -------------------------------------------------------------------------------- /site/source/components/conversation/ChoicesInput.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/source/components/conversation/DateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/DateInput.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/DefaultValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/DefaultValue.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/EntrepriseInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/EntrepriseInput.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/Explicable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/Explicable.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/MulipleChoicesInput.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/source/components/conversation/MultipleAnswerInput.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/source/components/conversation/OuiNonInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/OuiNonInput.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/OuiNonSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/OuiNonSwitch.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/RadioChoices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/RadioChoices.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/RuleInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/RuleInput.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/SeeAnswersButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/SeeAnswersButton.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/TextInput.tsx -------------------------------------------------------------------------------- /site/source/components/conversation/UnePossibilité.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/conversation/UnePossibilité.tsx -------------------------------------------------------------------------------- /site/source/components/documentation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/documentation/index.ts -------------------------------------------------------------------------------- /site/source/components/entreprise/EntrepriseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/entreprise/EntrepriseDetails.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Footer/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Footer/Contact.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Footer/Footer.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Footer/LegalNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Footer/LegalNotice.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Footer/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Footer/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Footer/TermsOfUse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Footer/TermsOfUse.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Header.tsx -------------------------------------------------------------------------------- /site/source/components/layout/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/Menu.tsx -------------------------------------------------------------------------------- /site/source/components/layout/NewsBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/layout/NewsBanner.tsx -------------------------------------------------------------------------------- /site/source/components/search/Algolia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/Algolia.ts -------------------------------------------------------------------------------- /site/source/components/search/Hightlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/Hightlight.tsx -------------------------------------------------------------------------------- /site/source/components/search/RulesInfiniteHits/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/RulesInfiniteHits/index.tsx -------------------------------------------------------------------------------- /site/source/components/search/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/SearchBox.tsx -------------------------------------------------------------------------------- /site/source/components/search/SearchRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/SearchRoot.tsx -------------------------------------------------------------------------------- /site/source/components/search/SearchRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/SearchRules.tsx -------------------------------------------------------------------------------- /site/source/components/search/SimulatorHits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/search/SimulatorHits.tsx -------------------------------------------------------------------------------- /site/source/components/ui/AnimatedTargetValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/AnimatedTargetValue.tsx -------------------------------------------------------------------------------- /site/source/components/ui/Checklist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/Checklist/index.tsx -------------------------------------------------------------------------------- /site/source/components/ui/FoldingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/FoldingMessage.tsx -------------------------------------------------------------------------------- /site/source/components/ui/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/Progress.tsx -------------------------------------------------------------------------------- /site/source/components/ui/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/Skeleton.tsx -------------------------------------------------------------------------------- /site/source/components/ui/WarningBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/WarningBlock.tsx -------------------------------------------------------------------------------- /site/source/components/ui/animate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/ui/animate.tsx -------------------------------------------------------------------------------- /site/source/components/utils/BrowserOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/BrowserOnly.tsx -------------------------------------------------------------------------------- /site/source/components/utils/DarkModeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/DarkModeContext.tsx -------------------------------------------------------------------------------- /site/source/components/utils/DisableAnimationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/DisableAnimationContext.tsx -------------------------------------------------------------------------------- /site/source/components/utils/DisableScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/DisableScroll.ts -------------------------------------------------------------------------------- /site/source/components/utils/EngineContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/EngineContext.tsx -------------------------------------------------------------------------------- /site/source/components/utils/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/Meta.tsx -------------------------------------------------------------------------------- /site/source/components/utils/Scroll/ScrollToElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/Scroll/ScrollToElement.tsx -------------------------------------------------------------------------------- /site/source/components/utils/Scroll/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/Scroll/ScrollToTop.tsx -------------------------------------------------------------------------------- /site/source/components/utils/Scroll/useScrollToHash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/Scroll/useScrollToHash.tsx -------------------------------------------------------------------------------- /site/source/components/utils/Scroll/useScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/Scroll/useScrollToTop.tsx -------------------------------------------------------------------------------- /site/source/components/utils/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/colors.tsx -------------------------------------------------------------------------------- /site/source/components/utils/normalizeRuleName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/normalizeRuleName.tsx -------------------------------------------------------------------------------- /site/source/components/utils/persistState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/components/utils/persistState.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/Mois.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/Mois.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/calcul.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/calcul.test.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/calcul.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/calcul.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/constantes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/constantes.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/déclaration-de-garde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/déclaration-de-garde.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/enfant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/enfant.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/enfantFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/enfantFactory.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/mode-de-garde.ts: -------------------------------------------------------------------------------- 1 | export type ModeDeGarde = 'AMA' | 'GED' 2 | -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/résultat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/résultat.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/salariée.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/salariée.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/salariéeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/salariéeFactory.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/situation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/situation.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/typologie-de-garde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/typologie-de-garde.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/éligibilité.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/éligibilité.test.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/domaine/éligibilité.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/domaine/éligibilité.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/hooks/CMGContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/hooks/CMGContext.tsx -------------------------------------------------------------------------------- /site/source/contextes/cmg/hooks/useCMG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/hooks/useCMG.ts -------------------------------------------------------------------------------- /site/source/contextes/cmg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/cmg/index.ts -------------------------------------------------------------------------------- /site/source/contextes/économie-collaborative/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/contextes/économie-collaborative/index.ts -------------------------------------------------------------------------------- /site/source/design-system/InfoBulle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/InfoBulle/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/InfoButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/InfoButton.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/InfoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/InfoButton.tsx -------------------------------------------------------------------------------- /site/source/design-system/accordion/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/accordion/chevron.svg -------------------------------------------------------------------------------- /site/source/design-system/accordion/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/accordion/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/accordion/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/answer-group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/answer-group/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/atoms/NumericInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/atoms/NumericInput.tsx -------------------------------------------------------------------------------- /site/source/design-system/banner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/banner/index.ts -------------------------------------------------------------------------------- /site/source/design-system/buttons/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/buttons/Button.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/buttons/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/buttons/Button.tsx -------------------------------------------------------------------------------- /site/source/design-system/buttons/CloseButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/buttons/CloseButton.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/buttons/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/buttons/CloseButton.tsx -------------------------------------------------------------------------------- /site/source/design-system/buttons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/buttons/index.ts -------------------------------------------------------------------------------- /site/source/design-system/card/Article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/Article.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/Card.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/ContenuInteractif.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/ContenuInteractif.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/SmallCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/SmallCard.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/StatusCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/StatusCard.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/StatusCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/StatusCard.test.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/StatusCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/StatusCard.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/card/index.ts -------------------------------------------------------------------------------- /site/source/design-system/checklist/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/checklist/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/checklist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/checklist/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/chip/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/chip/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/chip/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/conversation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/conversation/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/Alert.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/Callout.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/Liseré/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/Liseré/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/Tableau/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/Tableau/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/Valeur/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/Valeur/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/documentation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/documentation/index.ts -------------------------------------------------------------------------------- /site/source/design-system/drawer/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/drawer/Drawer.tsx -------------------------------------------------------------------------------- /site/source/design-system/drawer/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/drawer/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/drawer/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/emoji/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/emoji/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/emoji/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/emoji/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/footer/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/footer/column.tsx -------------------------------------------------------------------------------- /site/source/design-system/footer/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/footer/container.tsx -------------------------------------------------------------------------------- /site/source/design-system/footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/footer/index.ts -------------------------------------------------------------------------------- /site/source/design-system/global-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/global-style.ts -------------------------------------------------------------------------------- /site/source/design-system/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/global.css -------------------------------------------------------------------------------- /site/source/design-system/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/hooks.tsx -------------------------------------------------------------------------------- /site/source/design-system/icons/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/icons/Loader.tsx -------------------------------------------------------------------------------- /site/source/design-system/icons/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/icons/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/icons/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/index.ts -------------------------------------------------------------------------------- /site/source/design-system/layout/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/layout/Container.tsx -------------------------------------------------------------------------------- /site/source/design-system/layout/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/layout/Grid.tsx -------------------------------------------------------------------------------- /site/source/design-system/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/layout/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/markdown/ImgRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/markdown/ImgRenderer.tsx -------------------------------------------------------------------------------- /site/source/design-system/markdown/LinkRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/markdown/LinkRenderer.tsx -------------------------------------------------------------------------------- /site/source/design-system/markdown/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/markdown/Markdown.tsx -------------------------------------------------------------------------------- /site/source/design-system/markdown/TextRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/markdown/TextRenderer.tsx -------------------------------------------------------------------------------- /site/source/design-system/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/markdown/index.ts -------------------------------------------------------------------------------- /site/source/design-system/message/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/message/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/message/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/Checkbox.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/DateField.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/NumberField.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/Radio/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/Radio/Radio.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/Radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/Radio/index.ts -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/SearchField.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/TextField.tsx -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/choix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/choix/index.ts -------------------------------------------------------------------------------- /site/source/design-system/molecules/field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/molecules/field/index.ts -------------------------------------------------------------------------------- /site/source/design-system/popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/popover/Popover.tsx -------------------------------------------------------------------------------- /site/source/design-system/popover/PopoverConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/popover/PopoverConfirm.tsx -------------------------------------------------------------------------------- /site/source/design-system/popover/PopoverWithTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/popover/PopoverWithTrigger.tsx -------------------------------------------------------------------------------- /site/source/design-system/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/root.tsx -------------------------------------------------------------------------------- /site/source/design-system/splitAriaProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/splitAriaProps.tsx -------------------------------------------------------------------------------- /site/source/design-system/stepper/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/stepper/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/stepper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/stepper/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/suggestions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './InputSuggestions' 2 | -------------------------------------------------------------------------------- /site/source/design-system/switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/switch/Switch.tsx -------------------------------------------------------------------------------- /site/source/design-system/switch/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/switch/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/switch/index.ts -------------------------------------------------------------------------------- /site/source/design-system/tag/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/tag/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/tag/index.tsx -------------------------------------------------------------------------------- /site/source/design-system/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/theme.ts -------------------------------------------------------------------------------- /site/source/design-system/tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /site/source/design-system/tooltip/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/tooltip/index.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/tooltip/index.ts -------------------------------------------------------------------------------- /site/source/design-system/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/types.ts -------------------------------------------------------------------------------- /site/source/design-system/typography/Ol.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/Ol.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/TitreObjectif.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/TitreObjectif.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/Ul.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/Ul.stories.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/heading.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/index.ts -------------------------------------------------------------------------------- /site/source/design-system/typography/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/link.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/list.tsx -------------------------------------------------------------------------------- /site/source/design-system/typography/paragraphs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/design-system/typography/paragraphs.tsx -------------------------------------------------------------------------------- /site/source/domaine/Adresse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Adresse.ts -------------------------------------------------------------------------------- /site/source/domaine/AssimiléSalariéContexte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/AssimiléSalariéContexte.ts -------------------------------------------------------------------------------- /site/source/domaine/Brand.ts: -------------------------------------------------------------------------------- 1 | export type Brand = T & { __tag: U } 2 | -------------------------------------------------------------------------------- /site/source/domaine/CodeActivite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/CodeActivite.ts -------------------------------------------------------------------------------- /site/source/domaine/CodeCatégorieJuridique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/CodeCatégorieJuridique.ts -------------------------------------------------------------------------------- /site/source/domaine/CodesImpôt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/CodesImpôt.ts -------------------------------------------------------------------------------- /site/source/domaine/ComparateurConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/ComparateurConfig.ts -------------------------------------------------------------------------------- /site/source/domaine/Contexte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Contexte.ts -------------------------------------------------------------------------------- /site/source/domaine/Date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Date.spec.ts -------------------------------------------------------------------------------- /site/source/domaine/Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Date.ts -------------------------------------------------------------------------------- /site/source/domaine/Entreprise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Entreprise.ts -------------------------------------------------------------------------------- /site/source/domaine/EntreprisesRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/EntreprisesRepository.ts -------------------------------------------------------------------------------- /site/source/domaine/IndépendantContexte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/IndépendantContexte.ts -------------------------------------------------------------------------------- /site/source/domaine/Montant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Montant.test.ts -------------------------------------------------------------------------------- /site/source/domaine/Montant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Montant.ts -------------------------------------------------------------------------------- /site/source/domaine/OuiNon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/OuiNon.ts -------------------------------------------------------------------------------- /site/source/domaine/Quantité.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Quantité.ts -------------------------------------------------------------------------------- /site/source/domaine/RaccourciPublicodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/RaccourciPublicodes.ts -------------------------------------------------------------------------------- /site/source/domaine/SimulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/SimulationConfig.ts -------------------------------------------------------------------------------- /site/source/domaine/Siren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Siren.ts -------------------------------------------------------------------------------- /site/source/domaine/Situation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Situation.ts -------------------------------------------------------------------------------- /site/source/domaine/SituationPublicodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/SituationPublicodes.ts -------------------------------------------------------------------------------- /site/source/domaine/Unités.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Unités.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/MontantAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/MontantAdapter.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/NombrePublicodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/NombrePublicodes.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/OuiNonAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/OuiNonAdapter.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/PublicodesAdapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/PublicodesAdapter.test.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/PublicodesAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/PublicodesAdapter.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/QuantitéAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/QuantitéAdapter.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/SimpleRuleEvaluation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/SimpleRuleEvaluation.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/engineSingleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/engineSingleton.ts -------------------------------------------------------------------------------- /site/source/domaine/engine/listeLesVariablesManquantes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/engine/listeLesVariablesManquantes.ts -------------------------------------------------------------------------------- /site/source/domaine/estObjectifExclusifDeLaSimulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/estObjectifExclusifDeLaSimulation.ts -------------------------------------------------------------------------------- /site/source/domaine/estQuestionEnListeNoire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/estQuestionEnListeNoire.ts -------------------------------------------------------------------------------- /site/source/domaine/relativeDottedName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/relativeDottedName.ts -------------------------------------------------------------------------------- /site/source/domaine/searchParams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/searchParams.test.ts -------------------------------------------------------------------------------- /site/source/domaine/searchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/searchParams.ts -------------------------------------------------------------------------------- /site/source/domaine/updateSituation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/updateSituation.ts -------------------------------------------------------------------------------- /site/source/domaine/updateSituationMulti.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/updateSituationMulti.ts -------------------------------------------------------------------------------- /site/source/domaine/updateSituationMultiple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/updateSituationMultiple.ts -------------------------------------------------------------------------------- /site/source/domaine/Établissement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/domaine/Établissement.ts -------------------------------------------------------------------------------- /site/source/entreprise/RepositoriesContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entreprise/RepositoriesContext.ts -------------------------------------------------------------------------------- /site/source/entries/entry-en.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/entry-en.tsx -------------------------------------------------------------------------------- /site/source/entries/entry-fr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/entry-fr.tsx -------------------------------------------------------------------------------- /site/source/entries/entry-iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/entry-iframe.ts -------------------------------------------------------------------------------- /site/source/entries/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/entry-server.tsx -------------------------------------------------------------------------------- /site/source/entries/entry-sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/entry-sw.ts -------------------------------------------------------------------------------- /site/source/entries/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/entries/template.html -------------------------------------------------------------------------------- /site/source/external-links/embaucherGérerSalariés.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/embaucherGérerSalariés.ts -------------------------------------------------------------------------------- /site/source/external-links/nouvelEmployeur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/nouvelEmployeur.ts -------------------------------------------------------------------------------- /site/source/external-links/premiersMoisUrssaf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/premiersMoisUrssaf.ts -------------------------------------------------------------------------------- /site/source/external-links/serviceAutoEntrepreneur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/serviceAutoEntrepreneur.ts -------------------------------------------------------------------------------- /site/source/external-links/serviceEmployeur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/serviceEmployeur.ts -------------------------------------------------------------------------------- /site/source/external-links/serviceExpertComptable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/serviceExpertComptable.ts -------------------------------------------------------------------------------- /site/source/external-links/serviceIndépendant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/serviceIndépendant.ts -------------------------------------------------------------------------------- /site/source/external-links/servicePAM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/servicePAM.ts -------------------------------------------------------------------------------- /site/source/external-links/servicePLR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/external-links/servicePLR.ts -------------------------------------------------------------------------------- /site/source/hooks/UseSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/UseSelection.ts -------------------------------------------------------------------------------- /site/source/hooks/useAxeCoreAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useAxeCoreAnalysis.ts -------------------------------------------------------------------------------- /site/source/hooks/useBarèmeLodeom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useBarèmeLodeom.ts -------------------------------------------------------------------------------- /site/source/hooks/useBrowserOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useBrowserOnly.ts -------------------------------------------------------------------------------- /site/source/hooks/useCurrentSimulatorData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useCurrentSimulatorData.ts -------------------------------------------------------------------------------- /site/source/hooks/useDarkMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useDarkMode.ts -------------------------------------------------------------------------------- /site/source/hooks/useDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useDate.tsx -------------------------------------------------------------------------------- /site/source/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useDebounce.ts -------------------------------------------------------------------------------- /site/source/hooks/useDisplayOnIntersecting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useDisplayOnIntersecting.ts -------------------------------------------------------------------------------- /site/source/hooks/useFetchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useFetchData.ts -------------------------------------------------------------------------------- /site/source/hooks/useGetFullURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useGetFullURL.ts -------------------------------------------------------------------------------- /site/source/hooks/useGetPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useGetPath.ts -------------------------------------------------------------------------------- /site/source/hooks/useInitialRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useInitialRender.tsx -------------------------------------------------------------------------------- /site/source/hooks/useIsEmbedded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useIsEmbedded.tsx -------------------------------------------------------------------------------- /site/source/hooks/useIsIddle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useIsIddle.ts -------------------------------------------------------------------------------- /site/source/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /site/source/hooks/useNextQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useNextQuestion.tsx -------------------------------------------------------------------------------- /site/source/hooks/useOnClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useOnClickOutside.ts -------------------------------------------------------------------------------- /site/source/hooks/useOnKeyDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useOnKeyDown.ts -------------------------------------------------------------------------------- /site/source/hooks/useOrdinal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useOrdinal.ts -------------------------------------------------------------------------------- /site/source/hooks/usePlausibleTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/usePlausibleTracking.ts -------------------------------------------------------------------------------- /site/source/hooks/usePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/usePromise.ts -------------------------------------------------------------------------------- /site/source/hooks/usePublicodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/usePublicodes.ts -------------------------------------------------------------------------------- /site/source/hooks/useQuestionList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useQuestionList.ts -------------------------------------------------------------------------------- /site/source/hooks/useQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useQuestions.ts -------------------------------------------------------------------------------- /site/source/hooks/useRepositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useRepositories.ts -------------------------------------------------------------------------------- /site/source/hooks/useSaveAndRestoreScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSaveAndRestoreScrollPosition.ts -------------------------------------------------------------------------------- /site/source/hooks/useSearchCompany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSearchCompany.ts -------------------------------------------------------------------------------- /site/source/hooks/useSearchParamsForSituation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSearchParamsForSituation.test.ts -------------------------------------------------------------------------------- /site/source/hooks/useSearchParamsForSituation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSearchParamsForSituation.tsx -------------------------------------------------------------------------------- /site/source/hooks/useSetEntreprise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSetEntreprise.ts -------------------------------------------------------------------------------- /site/source/hooks/useSetSimulationFromSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSetSimulationFromSearchParams.ts -------------------------------------------------------------------------------- /site/source/hooks/useSimulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSimulationConfig.ts -------------------------------------------------------------------------------- /site/source/hooks/useSimulationProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSimulationProgress.tsx -------------------------------------------------------------------------------- /site/source/hooks/useSimulatorsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSimulatorsData.ts -------------------------------------------------------------------------------- /site/source/hooks/useSiteUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useSiteUrl.tsx -------------------------------------------------------------------------------- /site/source/hooks/useStatefulRulesEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useStatefulRulesEdit.ts -------------------------------------------------------------------------------- /site/source/hooks/useUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useUrl.test.ts -------------------------------------------------------------------------------- /site/source/hooks/useUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useUrl.tsx -------------------------------------------------------------------------------- /site/source/hooks/useYear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useYear.ts -------------------------------------------------------------------------------- /site/source/hooks/useZoneLodeom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/hooks/useZoneLodeom.ts -------------------------------------------------------------------------------- /site/source/locales/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/.editorconfig -------------------------------------------------------------------------------- /site/source/locales/.gitignore: -------------------------------------------------------------------------------- 1 | static-analysis-fr.json -------------------------------------------------------------------------------- /site/source/locales/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/i18n.ts -------------------------------------------------------------------------------- /site/source/locales/rules-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/rules-en.yaml -------------------------------------------------------------------------------- /site/source/locales/translateRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/translateRules.ts -------------------------------------------------------------------------------- /site/source/locales/ui-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/ui-en.yaml -------------------------------------------------------------------------------- /site/source/locales/ui-fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/ui-fr.yaml -------------------------------------------------------------------------------- /site/source/locales/units.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/locales/units.yaml -------------------------------------------------------------------------------- /site/source/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/404.tsx -------------------------------------------------------------------------------- /site/source/pages/Accessibilité.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/Accessibilité.tsx -------------------------------------------------------------------------------- /site/source/pages/Documentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/Documentation.tsx -------------------------------------------------------------------------------- /site/source/pages/Offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/Offline.tsx -------------------------------------------------------------------------------- /site/source/pages/Plan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/Plan.tsx -------------------------------------------------------------------------------- /site/source/pages/_landing/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/_landing/Landing.tsx -------------------------------------------------------------------------------- /site/source/pages/_landing/SearchOrCreate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/_landing/SearchOrCreate.tsx -------------------------------------------------------------------------------- /site/source/pages/_landing/illustration.backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/_landing/illustration.backup.svg -------------------------------------------------------------------------------- /site/source/pages/_landing/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/_landing/illustration.svg -------------------------------------------------------------------------------- /site/source/pages/_landing/illustration2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/_landing/illustration2.svg -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/associé.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/associé.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/commune.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/commune.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/config.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/home.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/index.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/résultat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/résultat.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/siret.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/siret.jpg -------------------------------------------------------------------------------- /site/source/pages/assistants/choix-du-statut/siret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/choix-du-statut/siret.png -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/components/AMA/AMA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/components/AMA/AMA.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/components/GED/GED.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/components/GED/GED.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/config.ts -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/index.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/pages/Accueil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/pages/Accueil.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/pages/Déclarations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/pages/Déclarations.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/pages/Enfants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/pages/Enfants.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/pages/NonÉligible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/pages/NonÉligible.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/pages/Résultat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/pages/Résultat.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/cmg/simulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/cmg/simulationConfig.ts -------------------------------------------------------------------------------- /site/source/pages/assistants/components/Fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/components/Fields.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/components/ImpotSociete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/components/ImpotSociete.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/components/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/components/Video.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/demande-mobilité/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/demande-mobilité/config.ts -------------------------------------------------------------------------------- /site/source/pages/assistants/demande-mobilité/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/demande-mobilité/index.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/index.tsx -------------------------------------------------------------------------------- /site/source/pages/assistants/recherche-code-ape/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/assistants/recherche-code-ape/index.tsx -------------------------------------------------------------------------------- /site/source/pages/budget/ResourcesAllocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/budget/ResourcesAllocation.tsx -------------------------------------------------------------------------------- /site/source/pages/budget/budget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/budget/budget.yaml -------------------------------------------------------------------------------- /site/source/pages/budget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/budget/index.tsx -------------------------------------------------------------------------------- /site/source/pages/dev/IntegrationTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/dev/IntegrationTest.tsx -------------------------------------------------------------------------------- /site/source/pages/iframes/IframeFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/iframes/IframeFooter.tsx -------------------------------------------------------------------------------- /site/source/pages/iframes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/iframes/index.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/API.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/API.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/Home.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/Iframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/Iframe.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/Library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/Library.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/Spreadsheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/Spreadsheet.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/components/StepByStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/components/StepByStep.tsx -------------------------------------------------------------------------------- /site/source/pages/integration/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/iframe.css -------------------------------------------------------------------------------- /site/source/pages/integration/images/API_illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/images/API_illustration.svg -------------------------------------------------------------------------------- /site/source/pages/integration/images/cci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/images/cci.png -------------------------------------------------------------------------------- /site/source/pages/integration/images/logo-betagouv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/images/logo-betagouv.svg -------------------------------------------------------------------------------- /site/source/pages/integration/images/min-tra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/images/min-tra.jpg -------------------------------------------------------------------------------- /site/source/pages/integration/images/pole-emploi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/images/pole-emploi.png -------------------------------------------------------------------------------- /site/source/pages/integration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/integration/index.tsx -------------------------------------------------------------------------------- /site/source/pages/nouveautés/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/nouveautés/index.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs-et-assistants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs-et-assistants/index.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/NextSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/NextSteps.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/_configs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/_configs/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/_configs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/_configs/types.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/artiste-auteur/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/artiste-auteur/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/auto-entrepreneur/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/auto-entrepreneur/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/avocat/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/avocat/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/cards/ExternalLinkCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/cards/ExternalLinkCard.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/cipav/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/cipav/config.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/cipav/simulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/cipav/simulationConfig.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/dividendes/Dividendes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/dividendes/Dividendes.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/dividendes/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/dividendes/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/eirl/Avertissement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/eirl/Avertissement.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/eirl/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/eirl/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/eurl/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/eurl/config.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/expert-comptable/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/expert-comptable/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/impot-societe/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/impot-societe/config.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/impot-societe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/impot-societe/index.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/index.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/indépendant/Goals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/indépendant/Goals.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/indépendant/Indépendant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/indépendant/Indépendant.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/indépendant/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/indépendant/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/lodeom/Goals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/lodeom/Goals.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/lodeom/Lodeom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/lodeom/Lodeom.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/lodeom/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/lodeom/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/lodeom/simulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/lodeom/simulationConfig.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/médecin/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/médecin/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/pamc/PAMCHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/pamc/PAMCHome.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/pamc/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/pamc/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/pharmacien/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/pharmacien/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/sage-femme/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/sage-femme/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/salarié/Salarié.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/salarié/Salarié.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/salarié/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/salarié/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/salarié/simulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/salarié/simulationConfig.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/sasu/SASU.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/sasu/SASU.tsx -------------------------------------------------------------------------------- /site/source/pages/simulateurs/sasu/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/sasu/config.ts -------------------------------------------------------------------------------- /site/source/pages/simulateurs/sasu/simulationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/simulateurs/sasu/simulationConfig.ts -------------------------------------------------------------------------------- /site/source/pages/statistiques/DemandesUtilisateurs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/DemandesUtilisateurs.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/Stats.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/StatsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/StatsPage.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/_components/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/_components/Chart.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/_components/VisitChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/_components/VisitChart.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/_components/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/_components/utils.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/index.tsx -------------------------------------------------------------------------------- /site/source/pages/statistiques/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/types.ts -------------------------------------------------------------------------------- /site/source/pages/statistiques/useStatistiques.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/pages/statistiques/useStatistiques.tsx -------------------------------------------------------------------------------- /site/source/public/data/base-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/data/base-stats.json -------------------------------------------------------------------------------- /site/source/public/data/versement-mobilité.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/data/versement-mobilité.json -------------------------------------------------------------------------------- /site/source/public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /site/source/public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /site/source/public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /site/source/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /site/source/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /site/source/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /site/source/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/favicon.ico -------------------------------------------------------------------------------- /site/source/public/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/favicon.svg -------------------------------------------------------------------------------- /site/source/public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /site/source/public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /site/source/public/fonts/montserrat-v18-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/montserrat-v18-latin-700.woff -------------------------------------------------------------------------------- /site/source/public/fonts/montserrat-v18-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/montserrat-v18-latin-700.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-500.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-500.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-500italic.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-500italic.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-700.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-700.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-700italic.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-700italic.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-italic.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-italic.woff2 -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-regular.woff -------------------------------------------------------------------------------- /site/source/public/fonts/roboto-v29-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/fonts/roboto-v29-latin-regular.woff2 -------------------------------------------------------------------------------- /site/source/public/google12806d2f3452e656.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/google12806d2f3452e656.html -------------------------------------------------------------------------------- /site/source/public/googlece6dd8bcbdcbe236.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/googlece6dd8bcbdcbe236.html -------------------------------------------------------------------------------- /site/source/public/logo-mycompany-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/logo-mycompany-share.png -------------------------------------------------------------------------------- /site/source/public/logo-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/logo-share.png -------------------------------------------------------------------------------- /site/source/public/robots.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/robots.en.txt -------------------------------------------------------------------------------- /site/source/public/robots.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/public/robots.fr.txt -------------------------------------------------------------------------------- /site/source/services/plausibleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/services/plausibleService.ts -------------------------------------------------------------------------------- /site/source/sitePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/sitePaths.ts -------------------------------------------------------------------------------- /site/source/storage/persistChoixStatutJuridique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/persistChoixStatutJuridique.ts -------------------------------------------------------------------------------- /site/source/storage/persistCompanySituation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/persistCompanySituation.ts -------------------------------------------------------------------------------- /site/source/storage/persistSimulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/persistSimulation.ts -------------------------------------------------------------------------------- /site/source/storage/readCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/readCookie.ts -------------------------------------------------------------------------------- /site/source/storage/safeLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/safeLocalStorage.ts -------------------------------------------------------------------------------- /site/source/storage/serializeSimulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/storage/serializeSimulation.ts -------------------------------------------------------------------------------- /site/source/store/actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/actions/actions.ts -------------------------------------------------------------------------------- /site/source/store/actions/companyActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/actions/companyActions.ts -------------------------------------------------------------------------------- /site/source/store/actions/hiringChecklistAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/actions/hiringChecklistAction.ts -------------------------------------------------------------------------------- /site/source/store/reducers/SituationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/SituationReducer.ts -------------------------------------------------------------------------------- /site/source/store/reducers/choixStatutJuridiqueReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/choixStatutJuridiqueReducer.ts -------------------------------------------------------------------------------- /site/source/store/reducers/companySituationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/companySituationReducer.ts -------------------------------------------------------------------------------- /site/source/store/reducers/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/rootReducer.ts -------------------------------------------------------------------------------- /site/source/store/reducers/simulation.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/simulation.reducer.spec.ts -------------------------------------------------------------------------------- /site/source/store/reducers/simulation.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/reducers/simulation.reducer.ts -------------------------------------------------------------------------------- /site/source/store/selectors/acreActivé.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/acreActivé.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/config.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/config.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/currentQuestion.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/currentQuestion.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/ilYADesQuestions.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/ilYADesQuestions.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/listeNoire.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/listeNoire.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/raccourcis.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/raccourcis.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/simulation.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/simulation.selector.ts -------------------------------------------------------------------------------- /site/source/store/selectors/simulationSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/selectors/simulationSelectors.ts -------------------------------------------------------------------------------- /site/source/store/slices/simulateursSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/slices/simulateursSlice.ts -------------------------------------------------------------------------------- /site/source/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/store/store.ts -------------------------------------------------------------------------------- /site/source/types/app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/app-env.d.ts -------------------------------------------------------------------------------- /site/source/types/iframe-resizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/iframe-resizer.d.ts -------------------------------------------------------------------------------- /site/source/types/import-yaml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/import-yaml.d.ts -------------------------------------------------------------------------------- /site/source/types/mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/mdx.d.ts -------------------------------------------------------------------------------- /site/source/types/react-i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/react-i18next.d.ts -------------------------------------------------------------------------------- /site/source/types/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/styled.d.ts -------------------------------------------------------------------------------- /site/source/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/types/utils.d.ts -------------------------------------------------------------------------------- /site/source/utils/ChangeHandler.ts: -------------------------------------------------------------------------------- 1 | export type ChangeHandler = (value: T) => void 2 | -------------------------------------------------------------------------------- /site/source/utils/NoOp.ts: -------------------------------------------------------------------------------- 1 | export const NoOp = () => {} 2 | -------------------------------------------------------------------------------- /site/source/utils/URLs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/URLs.ts -------------------------------------------------------------------------------- /site/source/utils/complement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/complement.ts -------------------------------------------------------------------------------- /site/source/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/dates.ts -------------------------------------------------------------------------------- /site/source/utils/guichetToPLMétier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/guichetToPLMétier.ts -------------------------------------------------------------------------------- /site/source/utils/hexToHSL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/hexToHSL.ts -------------------------------------------------------------------------------- /site/source/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/index.ts -------------------------------------------------------------------------------- /site/source/utils/logos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/logos.ts -------------------------------------------------------------------------------- /site/source/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/number.ts -------------------------------------------------------------------------------- /site/source/utils/publicodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/publicodes.ts -------------------------------------------------------------------------------- /site/source/utils/react-compound-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/react-compound-components.ts -------------------------------------------------------------------------------- /site/source/utils/réductionDeCotisations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/source/utils/réductionDeCotisations.ts -------------------------------------------------------------------------------- /site/test/fabrique-social.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/fabrique-social.fixtures.ts -------------------------------------------------------------------------------- /site/test/fabrique-social.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/fabrique-social.test.ts -------------------------------------------------------------------------------- /site/test/modele-social.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social.test.ts -------------------------------------------------------------------------------- /site/test/modele-social/ae-cotisations-cipav.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/ae-cotisations-cipav.test.ts -------------------------------------------------------------------------------- /site/test/modele-social/entreprise/imposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/entreprise/imposition.test.ts -------------------------------------------------------------------------------- /site/test/modele-social/helpers/PublicodesTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/helpers/PublicodesTypes.ts -------------------------------------------------------------------------------- /site/test/modele-social/helpers/logValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/helpers/logValue.ts -------------------------------------------------------------------------------- /site/test/modele-social/lodeom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/lodeom.test.ts -------------------------------------------------------------------------------- /site/test/modele-social/matchers/toEvaluate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/matchers/toEvaluate.ts -------------------------------------------------------------------------------- /site/test/modele-social/réduction-générale.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/modele-social/réduction-générale.test.ts -------------------------------------------------------------------------------- /site/test/persistence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/persistence.test.ts -------------------------------------------------------------------------------- /site/test/regressions/SASU.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/SASU.test.ts -------------------------------------------------------------------------------- /site/test/regressions/SASU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/SASU.yaml -------------------------------------------------------------------------------- /site/test/regressions/__snapshots__/SASU.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/__snapshots__/SASU.test.ts.snap -------------------------------------------------------------------------------- /site/test/regressions/__snapshots__/salarié.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/__snapshots__/salarié.test.ts.snap -------------------------------------------------------------------------------- /site/test/regressions/artiste-auteur.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/artiste-auteur.test.ts -------------------------------------------------------------------------------- /site/test/regressions/artiste-auteur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/artiste-auteur.yaml -------------------------------------------------------------------------------- /site/test/regressions/assistant-charges-sociales.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/assistant-charges-sociales.yaml -------------------------------------------------------------------------------- /site/test/regressions/auto-entrepreneur.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/auto-entrepreneur.test.ts -------------------------------------------------------------------------------- /site/test/regressions/auto-entrepreneur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/auto-entrepreneur.yaml -------------------------------------------------------------------------------- /site/test/regressions/comparateur-statuts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/comparateur-statuts.test.ts -------------------------------------------------------------------------------- /site/test/regressions/comparateur-statuts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/comparateur-statuts.yaml -------------------------------------------------------------------------------- /site/test/regressions/convention-collective.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/convention-collective.test.ts -------------------------------------------------------------------------------- /site/test/regressions/convention-collective.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/convention-collective.yaml -------------------------------------------------------------------------------- /site/test/regressions/dividendes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/dividendes.test.ts -------------------------------------------------------------------------------- /site/test/regressions/dividendes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/dividendes.yaml -------------------------------------------------------------------------------- /site/test/regressions/impôt-société.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/impôt-société.test.ts -------------------------------------------------------------------------------- /site/test/regressions/impôt-société.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/impôt-société.yaml -------------------------------------------------------------------------------- /site/test/regressions/indépendant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/indépendant.test.ts -------------------------------------------------------------------------------- /site/test/regressions/indépendant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/indépendant.yaml -------------------------------------------------------------------------------- /site/test/regressions/professions-libérales.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/professions-libérales.test.ts -------------------------------------------------------------------------------- /site/test/regressions/professions-libérales.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/professions-libérales.yaml -------------------------------------------------------------------------------- /site/test/regressions/réduction-générale.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/réduction-générale.test.ts -------------------------------------------------------------------------------- /site/test/regressions/réduction-générale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/réduction-générale.yaml -------------------------------------------------------------------------------- /site/test/regressions/salarié.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/salarié.test.ts -------------------------------------------------------------------------------- /site/test/regressions/salarié.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/salarié.yaml -------------------------------------------------------------------------------- /site/test/regressions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/regressions/utils.ts -------------------------------------------------------------------------------- /site/test/unit-translations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/unit-translations.test.js -------------------------------------------------------------------------------- /site/test/vitest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/test/vitest.d.ts -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /site/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/vite.config.ts -------------------------------------------------------------------------------- /site/vitest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/site/vitest-setup.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/mon-entreprise/HEAD/yarn.lock --------------------------------------------------------------------------------