├── .editorconfig ├── .github ├── stale.yml └── workflows │ ├── add-to-project.yml │ ├── e2e.feature.yml │ ├── e2e.groups.yml │ ├── e2e.project-access.yml │ ├── e2e.segments.yml │ ├── node.js.yml │ ├── release.yml │ └── release_changelog.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ ├── feature │ │ └── feature.spec.ts │ ├── groups │ │ └── groups.spec.ts │ ├── projects │ │ └── access │ │ │ └── project-access.spec.ts │ └── segments │ │ └── segments.spec.ts ├── plugins │ └── index.ts └── support │ ├── commands.ts │ └── index.ts ├── index.html ├── index.js ├── package.json ├── public ├── cs_CZ.png ├── da-DK.png ├── datadog.svg ├── de_DE.png ├── en-GB.png ├── en-IN.png ├── en-US.png ├── favicon.ico ├── favicon_old.ico ├── flags-normal │ ├── ad.png │ ├── ae.png │ ├── af.png │ ├── ag.png │ ├── al.png │ ├── am.png │ ├── ao.png │ ├── ar.png │ ├── at.png │ ├── au.png │ ├── az.png │ ├── ba.png │ ├── bb.png │ ├── bd.png │ ├── be.png │ ├── bf.png │ ├── bg.png │ ├── bh.png │ ├── bi.png │ ├── bj.png │ ├── bn.png │ ├── bo.png │ ├── br.png │ ├── bs.png │ ├── bt.png │ ├── bw.png │ ├── by.png │ ├── bz.png │ ├── ca.png │ ├── cd.png │ ├── cf.png │ ├── cg.png │ ├── ch.png │ ├── ci.png │ ├── cl.png │ ├── cm.png │ ├── cn.png │ ├── co.png │ ├── cr.png │ ├── cu.png │ ├── cv.png │ ├── cy.png │ ├── cz.png │ ├── de.png │ ├── dj.png │ ├── dk.png │ ├── dm.png │ ├── do.png │ ├── dz.png │ ├── ec.png │ ├── ee.png │ ├── eg.png │ ├── eh.png │ ├── er.png │ ├── es.png │ ├── et.png │ ├── fi.png │ ├── fj.png │ ├── fm.png │ ├── fr.png │ ├── ga.png │ ├── gb.png │ ├── gd.png │ ├── ge.png │ ├── gh.png │ ├── gm.png │ ├── gn.png │ ├── gq.png │ ├── gr.png │ ├── gt.png │ ├── gw.png │ ├── gy.png │ ├── hn.png │ ├── hr.png │ ├── ht.png │ ├── hu.png │ ├── id.png │ ├── ie.png │ ├── il.png │ ├── in.png │ ├── iq.png │ ├── ir.png │ ├── is.png │ ├── it.png │ ├── jm.png │ ├── jo.png │ ├── jp.png │ ├── ke.png │ ├── kg.png │ ├── kh.png │ ├── ki.png │ ├── km.png │ ├── kn.png │ ├── kp.png │ ├── kr.png │ ├── ks.png │ ├── kw.png │ ├── kz.png │ ├── la.png │ ├── lb.png │ ├── lc.png │ ├── li.png │ ├── lk.png │ ├── lr.png │ ├── ls.png │ ├── lt.png │ ├── lu.png │ ├── lv.png │ ├── ly.png │ ├── ma.png │ ├── mc.png │ ├── md.png │ ├── me.png │ ├── mg.png │ ├── mh.png │ ├── mk.png │ ├── ml.png │ ├── mm.png │ ├── mn.png │ ├── mr.png │ ├── mt.png │ ├── mu.png │ ├── mv.png │ ├── mw.png │ ├── mx.png │ ├── my.png │ ├── mz.png │ ├── na.png │ ├── ne.png │ ├── ng.png │ ├── ni.png │ ├── nl.png │ ├── no.png │ ├── np.png │ ├── nr.png │ ├── nz.png │ ├── om.png │ ├── pa.png │ ├── pe.png │ ├── pg.png │ ├── ph.png │ ├── pk.png │ ├── pl.png │ ├── pt.png │ ├── pw.png │ ├── py.png │ ├── qa.png │ ├── ro.png │ ├── rs.png │ ├── ru.png │ ├── rw.png │ ├── sa.png │ ├── sb.png │ ├── sc.png │ ├── sd.png │ ├── se.png │ ├── sg.png │ ├── si.png │ ├── sk.png │ ├── sl.png │ ├── sm.png │ ├── sn.png │ ├── so.png │ ├── sr.png │ ├── st.png │ ├── sv.png │ ├── sy.png │ ├── sz.png │ ├── td.png │ ├── tg.png │ ├── th.png │ ├── tj.png │ ├── tl.png │ ├── tm.png │ ├── tn.png │ ├── to.png │ ├── tr.png │ ├── tt.png │ ├── tv.png │ ├── tw.png │ ├── tz.png │ ├── ua.png │ ├── ug.png │ ├── us.png │ ├── uy.png │ ├── uz.png │ ├── va.png │ ├── vc.png │ ├── ve.png │ ├── vn.png │ ├── vu.png │ ├── ws.png │ ├── ye.png │ ├── za.png │ ├── zm.png │ └── zw.png ├── fr-FR.png ├── jira.svg ├── logo-filled.png ├── logo-inverted.png ├── logo.png ├── logo_old.png ├── nb-NO.png ├── pt_BR.png ├── slack.svg ├── sv-SE.png ├── switches.svg ├── teams.svg ├── unknown-locale.png └── webhooks.svg ├── renovate.json ├── scripts └── generate-openapi.sh ├── src ├── __mocks__ │ ├── fileMock.js │ └── svgMock.js ├── assets │ ├── fonts │ │ ├── roboto300.ttf │ │ ├── roboto400.ttf │ │ ├── roboto500.ttf │ │ ├── roboto700.ttf │ │ ├── senBold.ttf │ │ ├── senExtraBold.ttf │ │ └── senRegular.ttf │ ├── icons │ │ ├── 24_Negator off.svg │ │ ├── 24_Negator.svg │ │ ├── 24_Text format off.svg │ │ ├── 24_Text format.svg │ │ ├── Icecream.svg │ │ ├── addfiles.svg │ │ ├── datadog.svg │ │ ├── dots.svg │ │ ├── email.svg │ │ ├── google.svg │ │ ├── gradual.svg │ │ ├── isenabled-false.svg │ │ ├── isenabled-true.svg │ │ ├── jira.svg │ │ ├── logoBg.svg │ │ ├── logoInverted.svg │ │ ├── logoPlain.svg │ │ ├── logoWhiteBg.svg │ │ ├── projectIcon.svg │ │ ├── reorder.svg │ │ ├── rollout.svg │ │ ├── slack.svg │ │ ├── star.svg │ │ ├── switches.svg │ │ ├── teams.svg │ │ ├── toggleLeft.svg │ │ ├── toggleRight.svg │ │ ├── unknownUser.png │ │ └── webhooks.svg │ └── img │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logoDark.svg │ │ ├── logoDarkWithText.svg │ │ ├── logoWhiteTransparentHorizontal.svg │ │ ├── logoWithName.svg │ │ ├── logoWithWhiteText.svg │ │ ├── mobileGuidanceBg.svg │ │ ├── texture.png │ │ └── unleashLogoIconDarkAlpha.gif ├── component │ ├── App.styles.ts │ ├── App.tsx │ ├── addons │ │ ├── AddonForm │ │ │ ├── AddonForm.styles.tsx │ │ │ ├── AddonForm.tsx │ │ │ ├── AddonMultiSelector │ │ │ │ ├── AddonMultiSelector.test.tsx │ │ │ │ └── AddonMultiSelector.tsx │ │ │ └── AddonParameters │ │ │ │ ├── AddonParameter │ │ │ │ └── AddonParameter.tsx │ │ │ │ └── AddonParameters.tsx │ │ ├── AddonList │ │ │ ├── AddonIcon │ │ │ │ └── AddonIcon.tsx │ │ │ ├── AddonList.tsx │ │ │ ├── AvailableAddons │ │ │ │ ├── AvailableAddons.tsx │ │ │ │ └── ConfigureAddonButton │ │ │ │ │ └── ConfigureAddonButton.tsx │ │ │ └── ConfiguredAddons │ │ │ │ ├── ConfiguredAddons.tsx │ │ │ │ └── ConfiguredAddonsActionCell │ │ │ │ └── ConfiguredAddonsActionsCell.tsx │ │ ├── CreateAddon │ │ │ └── CreateAddon.tsx │ │ └── EditAddon │ │ │ └── EditAddon.tsx │ ├── admin │ │ ├── api │ │ │ └── index.tsx │ │ ├── apiToken │ │ │ ├── ApiTokenDocs │ │ │ │ └── ApiTokenDocs.tsx │ │ │ ├── ApiTokenForm │ │ │ │ ├── ApiTokenForm.styles.ts │ │ │ │ ├── ApiTokenForm.tsx │ │ │ │ ├── SelectProjectInput │ │ │ │ │ ├── SelectAllButton │ │ │ │ │ │ ├── SelectAllButton.styles.ts │ │ │ │ │ │ └── SelectAllButton.tsx │ │ │ │ │ ├── SelectProjectInput.styles.ts │ │ │ │ │ ├── SelectProjectInput.test.tsx │ │ │ │ │ └── SelectProjectInput.tsx │ │ │ │ └── useApiTokenForm.ts │ │ │ ├── ApiTokenPage │ │ │ │ └── ApiTokenPage.tsx │ │ │ ├── ApiTokenTable │ │ │ │ └── ApiTokenTable.tsx │ │ │ ├── ConfirmToken │ │ │ │ ├── ConfirmToken.tsx │ │ │ │ └── UserToken │ │ │ │ │ └── UserToken.tsx │ │ │ ├── CopyApiTokenButton │ │ │ │ └── CopyApiTokenButton.tsx │ │ │ ├── CreateApiToken │ │ │ │ └── CreateApiToken.tsx │ │ │ ├── CreateApiTokenButton │ │ │ │ └── CreateApiTokenButton.tsx │ │ │ ├── ProjectsList │ │ │ │ ├── ProjectsList.test.tsx │ │ │ │ └── ProjectsList.tsx │ │ │ └── RemoveApiTokenButton │ │ │ │ └── RemoveApiTokenButton.tsx │ │ ├── auth │ │ │ ├── AuthSettings.tsx │ │ │ ├── AutoCreateForm │ │ │ │ └── AutoCreateForm.tsx │ │ │ ├── GoogleAuth │ │ │ │ └── GoogleAuth.tsx │ │ │ ├── OidcAuth │ │ │ │ └── OidcAuth.tsx │ │ │ ├── PasswordAuth │ │ │ │ └── PasswordAuth.tsx │ │ │ └── SamlAuth │ │ │ │ └── SamlAuth.tsx │ │ ├── billing │ │ │ ├── Billing.tsx │ │ │ ├── BillingDashboard │ │ │ │ ├── BillingDashboard.tsx │ │ │ │ ├── BillingInformation │ │ │ │ │ ├── BillingInformation.tsx │ │ │ │ │ └── BillingInformationButton │ │ │ │ │ │ └── BillingInformationButton.tsx │ │ │ │ └── BillingPlan │ │ │ │ │ ├── BillingPlan.tsx │ │ │ │ │ └── GridColLink │ │ │ │ │ └── GridColLink.tsx │ │ │ ├── BillingHistory │ │ │ │ └── BillingHistory.tsx │ │ │ ├── FlaggedBillingRedirect │ │ │ │ └── FlaggedBillingRedirect.tsx │ │ │ └── flags.ts │ │ ├── cors │ │ │ ├── CorsForm.test.tsx │ │ │ ├── CorsForm.tsx │ │ │ ├── CorsHelpAlert.tsx │ │ │ ├── CorsTokenAlert.tsx │ │ │ └── index.tsx │ │ ├── groups │ │ │ ├── CreateGroup │ │ │ │ └── CreateGroup.tsx │ │ │ ├── EditGroup │ │ │ │ └── EditGroup.tsx │ │ │ ├── Group │ │ │ │ ├── EditGroupUsers │ │ │ │ │ └── EditGroupUsers.tsx │ │ │ │ ├── Group.tsx │ │ │ │ └── RemoveGroupUser │ │ │ │ │ └── RemoveGroupUser.tsx │ │ │ ├── GroupForm │ │ │ │ ├── GroupForm.tsx │ │ │ │ ├── GroupFormUsersSelect │ │ │ │ │ └── GroupFormUsersSelect.tsx │ │ │ │ └── GroupFormUsersTable │ │ │ │ │ └── GroupFormUsersTable.tsx │ │ │ ├── GroupsAdmin.tsx │ │ │ ├── GroupsList │ │ │ │ ├── GroupCard │ │ │ │ │ ├── GroupCard.tsx │ │ │ │ │ ├── GroupCardActions │ │ │ │ │ │ └── GroupCardActions.tsx │ │ │ │ │ └── GroupCardAvatars │ │ │ │ │ │ ├── GroupCardAvatars.tsx │ │ │ │ │ │ └── GroupPopover │ │ │ │ │ │ └── GroupPopover.tsx │ │ │ │ ├── GroupEmpty │ │ │ │ │ └── GroupEmpty.tsx │ │ │ │ └── GroupsList.tsx │ │ │ ├── RemoveGroup │ │ │ │ └── RemoveGroup.tsx │ │ │ └── hooks │ │ │ │ └── useGroupForm.ts │ │ ├── index.tsx │ │ ├── invoice │ │ │ ├── InvoiceAdminPage.tsx │ │ │ └── InvoiceList.tsx │ │ ├── menu │ │ │ └── AdminMenu.tsx │ │ ├── projectRoles │ │ │ ├── CreateProjectRole │ │ │ │ └── CreateProjectRole.tsx │ │ │ ├── EditProjectRole │ │ │ │ └── EditProjectRole.tsx │ │ │ ├── ProjectRoleForm │ │ │ │ ├── EnvironmentPermissionAccordion │ │ │ │ │ ├── EnvironmentPermissionAccordion.styles.ts │ │ │ │ │ └── EnvironmentPermissionAccordion.tsx │ │ │ │ ├── ProjectRoleForm.styles.ts │ │ │ │ └── ProjectRoleForm.tsx │ │ │ ├── ProjectRoles │ │ │ │ ├── ProjectRoleDeleteConfirm │ │ │ │ │ ├── ProjectRoleDeleteConfirm.styles.ts │ │ │ │ │ └── ProjectRoleDeleteConfirm.tsx │ │ │ │ ├── ProjectRoleList │ │ │ │ │ └── ProjectRoleList.tsx │ │ │ │ ├── ProjectRoles.styles.ts │ │ │ │ └── ProjectRoles.tsx │ │ │ └── hooks │ │ │ │ └── useProjectRoleForm.ts │ │ └── users │ │ │ ├── ConfirmUserAdded │ │ │ ├── ConfirmUserAdded.tsx │ │ │ ├── ConfirmUserEmail │ │ │ │ ├── ConfirmUserEmail.styles.ts │ │ │ │ └── ConfirmUserEmail.tsx │ │ │ └── ConfirmUserLink │ │ │ │ ├── ConfirmUserLink.tsx │ │ │ │ └── UserInviteLink │ │ │ │ └── UserInviteLink.tsx │ │ │ ├── CreateUser │ │ │ └── CreateUser.tsx │ │ │ ├── EditUser │ │ │ └── EditUser.tsx │ │ │ ├── UserForm │ │ │ ├── UserForm.styles.ts │ │ │ └── UserForm.tsx │ │ │ ├── UsersAdmin.tsx │ │ │ ├── UsersList │ │ │ ├── ChangePassword │ │ │ │ └── ChangePassword.tsx │ │ │ ├── DeleteUser │ │ │ │ └── DeleteUser.tsx │ │ │ ├── UserTypeCell │ │ │ │ └── UserTypeCell.tsx │ │ │ ├── UsersActionsCell │ │ │ │ └── UsersActionsCell.tsx │ │ │ └── UsersList.tsx │ │ │ ├── hooks │ │ │ └── useAddUserForm.ts │ │ │ └── util.ts │ ├── application │ │ ├── ApplicationEdit │ │ │ └── ApplicationEdit.tsx │ │ ├── ApplicationList │ │ │ └── ApplicationList.tsx │ │ ├── ApplicationUpdate │ │ │ └── ApplicationUpdate.tsx │ │ ├── ApplicationView │ │ │ └── ApplicationView.tsx │ │ └── iconNames.ts │ ├── archive │ │ ├── ArchiveTable │ │ │ ├── ArchiveTable.tsx │ │ │ ├── ArchivedFeatureActionCell │ │ │ │ ├── ArchivedFeatureActionCell.tsx │ │ │ │ └── ArchivedFeatureDeleteConfirm │ │ │ │ │ └── ArchivedFeatureDeleteConfirm.tsx │ │ │ └── FeatureArchivedCell │ │ │ │ └── FeatureArchivedCell.tsx │ │ ├── FeaturesArchiveTable.tsx │ │ ├── ProjectFeaturesArchiveTable.tsx │ │ └── RedirectArchive.tsx │ ├── common │ │ ├── AdminAlert │ │ │ └── AdminAlert.tsx │ │ ├── AnimateOnMount │ │ │ └── AnimateOnMount.tsx │ │ ├── Announcer │ │ │ ├── AnnouncerContext │ │ │ │ ├── AnnouncerContext.test.tsx │ │ │ │ └── AnnouncerContext.tsx │ │ │ ├── AnnouncerElement │ │ │ │ ├── AnnouncerElement.styles.ts │ │ │ │ └── AnnouncerElement.tsx │ │ │ └── AnnouncerProvider │ │ │ │ └── AnnouncerProvider.tsx │ │ ├── ApiError │ │ │ └── ApiError.tsx │ │ ├── AutocompleteBox │ │ │ ├── AutocompleteBox.styles.ts │ │ │ └── AutocompleteBox.tsx │ │ ├── Badge │ │ │ └── Badge.tsx │ │ ├── BreadcrumbNav │ │ │ ├── BreadcrumbNav.styles.ts │ │ │ └── BreadcrumbNav.tsx │ │ ├── CheckmarkBadge │ │ │ ├── CheckMarkBadge.styles.ts │ │ │ └── CheckMarkBadge.tsx │ │ ├── Codebox │ │ │ ├── Codebox.styles.ts │ │ │ └── Codebox.tsx │ │ ├── ConditionallyRender │ │ │ └── ConditionallyRender.tsx │ │ ├── ConstraintAccordion │ │ │ ├── ConstraintAccordion.styles.ts │ │ │ ├── ConstraintAccordion.tsx │ │ │ ├── ConstraintAccordionEdit │ │ │ │ ├── ConstraintAccordionEdit.tsx │ │ │ │ ├── ConstraintAccordionEditBody │ │ │ │ │ ├── ConstraintAccordionEditBody.styles.ts │ │ │ │ │ ├── ConstraintAccordionEditBody.tsx │ │ │ │ │ ├── ConstraintFormHeader │ │ │ │ │ │ └── ConstraintFormHeader.tsx │ │ │ │ │ ├── DateSingleValue │ │ │ │ │ │ ├── DateSingleValue.test.tsx │ │ │ │ │ │ ├── DateSingleValue.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── DateSingleValue.test.tsx.snap │ │ │ │ │ ├── FreeTextInput │ │ │ │ │ │ └── FreeTextInput.tsx │ │ │ │ │ ├── LegalValueLabel │ │ │ │ │ │ ├── LegalValueLabel.styles.ts │ │ │ │ │ │ └── LegalValueLabel.tsx │ │ │ │ │ ├── ResolveInput │ │ │ │ │ │ └── ResolveInput.tsx │ │ │ │ │ ├── RestrictiveLegalValues │ │ │ │ │ │ └── RestrictiveLegalValues.tsx │ │ │ │ │ ├── SingleLegalValue │ │ │ │ │ │ └── SingleLegalValue.tsx │ │ │ │ │ ├── SingleValue │ │ │ │ │ │ └── SingleValue.tsx │ │ │ │ │ └── useConstraintInput │ │ │ │ │ │ ├── constraintValidators.test.ts │ │ │ │ │ │ ├── constraintValidators.ts │ │ │ │ │ │ └── useConstraintInput.tsx │ │ │ │ ├── ConstraintAccordionEditHeader │ │ │ │ │ ├── ConstraintAccordionEditHeader.tsx │ │ │ │ │ └── helpers.ts │ │ │ │ └── StyledToggleButton │ │ │ │ │ ├── CaseSensitiveButton │ │ │ │ │ └── CaseSensitiveButton.tsx │ │ │ │ │ ├── InvertedOperatorButton │ │ │ │ │ └── InvertedOperatorButton.tsx │ │ │ │ │ └── StyledToggleButton.tsx │ │ │ ├── ConstraintAccordionHeaderActions │ │ │ │ └── ConstraintAccordionHeaderActions.tsx │ │ │ ├── ConstraintAccordionList │ │ │ │ ├── ConstraintAccordionList.styles.ts │ │ │ │ ├── ConstraintAccordionList.tsx │ │ │ │ └── createEmptyConstraint.ts │ │ │ ├── ConstraintAccordionView │ │ │ │ ├── ConstraintAccordionView.tsx │ │ │ │ ├── ConstraintAccordionViewBody │ │ │ │ │ ├── ConstraintAccordionViewBody.style.ts │ │ │ │ │ ├── ConstraintAccordionViewBody.tsx │ │ │ │ │ ├── MultipleValues │ │ │ │ │ │ └── MultipleValues.tsx │ │ │ │ │ └── SingleValue │ │ │ │ │ │ └── SingleValue.tsx │ │ │ │ └── ConstraintAccordionViewHeader │ │ │ │ │ ├── ConstraintAccordionViewHeader.tsx │ │ │ │ │ ├── ConstraintAccordionViewHeaderInfo │ │ │ │ │ └── ConstraintAccordionViewHeaderInfo.tsx │ │ │ │ │ ├── ConstraintViewHeaderOperator │ │ │ │ │ └── ConstraintViewHeaderOperator.tsx │ │ │ │ │ ├── ContraintAccordionViewHeaderMultipleValues │ │ │ │ │ └── ConstraintAccordionViewHeaderMultipleValues.tsx │ │ │ │ │ ├── ContraintAccordionViewHeaderSingleValue │ │ │ │ │ └── ConstraintAccordionViewHeaderSingleValue.tsx │ │ │ │ │ └── StyledIconWrapper │ │ │ │ │ └── StyledIconWrapper.tsx │ │ │ ├── ConstraintIcon.tsx │ │ │ ├── ConstraintOperator │ │ │ │ ├── ConstraintOperator.styles.ts │ │ │ │ ├── ConstraintOperator.tsx │ │ │ │ └── formatOperatorDescription.ts │ │ │ ├── ConstraintOperatorSelect │ │ │ │ ├── ConstraintOperatorSelect.styles.ts │ │ │ │ └── ConstraintOperatorSelect.tsx │ │ │ └── ConstraintValueSearch │ │ │ │ └── ConstraintValueSearch.tsx │ │ ├── CreateButton │ │ │ └── CreateButton.tsx │ │ ├── Dialogue │ │ │ ├── Dialogue.styles.ts │ │ │ └── Dialogue.tsx │ │ ├── DividerText │ │ │ ├── DividerText.styles.ts │ │ │ └── DividerText.tsx │ │ ├── DropdownMenu │ │ │ ├── DropdownButton │ │ │ │ └── DropdownButton.tsx │ │ │ └── DropdownMenu.tsx │ │ ├── EnvironmentIcon │ │ │ └── EnvironmentIcon.tsx │ │ ├── EnvironmentStrategiesDialog │ │ │ ├── EnvironmentStrategyDialog.styles.ts │ │ │ └── EnvironmentStrategyDialog.tsx │ │ ├── FeatureArchiveDialog │ │ │ └── FeatureArchiveDialog.tsx │ │ ├── FeatureStaleDialog │ │ │ └── FeatureStaleDialog.tsx │ │ ├── FormTemplate │ │ │ ├── FormTemplate.styles.ts │ │ │ └── FormTemplate.tsx │ │ ├── GeneralSelect │ │ │ └── GeneralSelect.tsx │ │ ├── Gradient │ │ │ └── Gradient.tsx │ │ ├── GridCol │ │ │ └── GridCol.tsx │ │ ├── GridRow │ │ │ └── GridRow.tsx │ │ ├── GuidanceIndicator │ │ │ └── GuidanceIndicator.tsx │ │ ├── HelpIcon │ │ │ ├── HelpIcon.styles.ts │ │ │ └── HelpIcon.tsx │ │ ├── Highlighter │ │ │ ├── Highlighter.styles.ts │ │ │ └── Highlighter.tsx │ │ ├── Input │ │ │ ├── Input.styles.ts │ │ │ └── Input.tsx │ │ ├── InputCaption │ │ │ └── InputCaption.tsx │ │ ├── InputListField │ │ │ └── InputListField.tsx │ │ ├── InstanceStatus │ │ │ ├── InstanceStatus.tsx │ │ │ ├── InstanceStatusBar.test.tsx │ │ │ ├── InstanceStatusBar.tsx │ │ │ └── __snapshots__ │ │ │ │ └── InstanceStatusBar.test.tsx.snap │ │ ├── Loader │ │ │ ├── Loader.styles.ts │ │ │ └── Loader.tsx │ │ ├── LoginRedirect │ │ │ └── LoginRedirect.tsx │ │ ├── MainHeader │ │ │ └── MainHeader.tsx │ │ ├── NoItems │ │ │ ├── NoItems.styles.ts │ │ │ └── NoItems.tsx │ │ ├── NotFound │ │ │ ├── NotFound.styles.ts │ │ │ └── NotFound.tsx │ │ ├── OperatorUpgradeAlert │ │ │ └── OperatorUpgradeAlert.tsx │ │ ├── PageContent │ │ │ ├── PageContent.styles.ts │ │ │ └── PageContent.tsx │ │ ├── PageHeader │ │ │ ├── PageHeader.styles.ts │ │ │ └── PageHeader.tsx │ │ ├── PaginateUI │ │ │ ├── PaginateUI.tsx │ │ │ └── PaginationUI.styles.ts │ │ ├── PasswordField │ │ │ └── PasswordField.tsx │ │ ├── PercentageCircle │ │ │ └── PercentageCircle.tsx │ │ ├── PermissionButton │ │ │ └── PermissionButton.tsx │ │ ├── PermissionHOC │ │ │ └── PermissionHOC.tsx │ │ ├── PermissionIconButton │ │ │ └── PermissionIconButton.tsx │ │ ├── PermissionSwitch │ │ │ └── PermissionSwitch.tsx │ │ ├── Proclamation │ │ │ ├── Proclamation.styles.ts │ │ │ └── Proclamation.tsx │ │ ├── ProjectSelect │ │ │ └── ProjectSelect.tsx │ │ ├── ProtectedRoute │ │ │ └── ProtectedRoute.tsx │ │ ├── ResponsiveButton │ │ │ └── ResponsiveButton.tsx │ │ ├── ScrollTop │ │ │ └── ScrollTop.tsx │ │ ├── Search │ │ │ ├── Search.styles.ts │ │ │ ├── Search.tsx │ │ │ └── SearchSuggestions │ │ │ │ ├── SearchDescription │ │ │ │ └── SearchDescription.tsx │ │ │ │ ├── SearchInstructions │ │ │ │ └── SearchInstructions.tsx │ │ │ │ └── SearchSuggestions.tsx │ │ ├── SearchField │ │ │ ├── SearchField.tsx │ │ │ └── styles.ts │ │ ├── SegmentItem │ │ │ ├── SegmentItem.styles.ts │ │ │ └── SegmentItem.tsx │ │ ├── SidebarModal │ │ │ ├── SidebarModal.styles.ts │ │ │ └── SidebarModal.tsx │ │ ├── SkipNav │ │ │ ├── SkipNavLink.styles.ts │ │ │ ├── SkipNavLink.tsx │ │ │ └── SkipNavTarget.tsx │ │ ├── StatusChip │ │ │ ├── StatusChip.styles.ts │ │ │ └── StatusChip.tsx │ │ ├── StrategyItemContainer │ │ │ ├── StrategyItemContainer.styles.ts │ │ │ └── StrategyItemContainer.tsx │ │ ├── StrategySeparator │ │ │ └── StrategySeparator.tsx │ │ ├── StringTruncator │ │ │ └── StringTruncator.tsx │ │ ├── TabNav │ │ │ ├── TabNav │ │ │ │ ├── TabNav.styles.ts │ │ │ │ └── TabNav.tsx │ │ │ └── TabPanel │ │ │ │ └── TabPanel.tsx │ │ ├── Table │ │ │ ├── SearchHighlightContext │ │ │ │ └── SearchHighlightContext.tsx │ │ │ ├── SortableTableHeader │ │ │ │ ├── CellSortable │ │ │ │ │ ├── CellSortable.styles.ts │ │ │ │ │ ├── CellSortable.tsx │ │ │ │ │ └── SortArrow │ │ │ │ │ │ ├── SortArrow.styles.ts │ │ │ │ │ │ └── SortArrow.tsx │ │ │ │ ├── SortableTableHeader.styles.ts │ │ │ │ └── SortableTableHeader.tsx │ │ │ ├── Table │ │ │ │ ├── Table.styles.ts │ │ │ │ └── Table.tsx │ │ │ ├── TableCell │ │ │ │ ├── TableCell.styles.ts │ │ │ │ └── TableCell.tsx │ │ │ ├── TablePlaceholder │ │ │ │ ├── TablePlaceholder.styles.ts │ │ │ │ └── TablePlaceholder.tsx │ │ │ ├── VirtualizedTable │ │ │ │ ├── VirtualizedTable.styles.ts │ │ │ │ └── VirtualizedTable.tsx │ │ │ ├── cells │ │ │ │ ├── ActionCell │ │ │ │ │ ├── ActionCell.styles.ts │ │ │ │ │ └── ActionCell.tsx │ │ │ │ ├── DateCell │ │ │ │ │ └── DateCell.tsx │ │ │ │ ├── FeatureNameCell │ │ │ │ │ └── FeatureNameCell.tsx │ │ │ │ ├── FeatureSeenCell │ │ │ │ │ ├── FeatureSeenCell.styles.ts │ │ │ │ │ └── FeatureSeenCell.tsx │ │ │ │ ├── FeatureTypeCell │ │ │ │ │ ├── FeatureTypeCell.styles.ts │ │ │ │ │ └── FeatureTypeCell.tsx │ │ │ │ ├── HighlightCell │ │ │ │ │ ├── HighlightCell.styles.ts │ │ │ │ │ └── HighlightCell.tsx │ │ │ │ ├── IconCell │ │ │ │ │ └── IconCell.tsx │ │ │ │ ├── LinkCell │ │ │ │ │ ├── LinkCell.styles.ts │ │ │ │ │ └── LinkCell.tsx │ │ │ │ ├── TextCell │ │ │ │ │ ├── TextCell.styles.ts │ │ │ │ │ └── TextCell.tsx │ │ │ │ └── TimeAgoCell │ │ │ │ │ └── TimeAgoCell.tsx │ │ │ └── index.ts │ │ ├── TagSelect │ │ │ └── TagSelect.tsx │ │ ├── ThemeMode │ │ │ └── ThemeMode.tsx │ │ ├── ToastRenderer │ │ │ ├── Toast │ │ │ │ ├── Toast.styles.ts │ │ │ │ └── Toast.tsx │ │ │ ├── ToastRenderer.styles.ts │ │ │ └── ToastRenderer.tsx │ │ ├── TooltipResolver │ │ │ └── TooltipResolver.tsx │ │ ├── UpdateButton │ │ │ └── UpdateButton.tsx │ │ ├── UserAvatar │ │ │ └── UserAvatar.tsx │ │ ├── common.module.scss │ │ ├── flags.ts │ │ ├── index.jsx │ │ ├── select.tsx │ │ └── util.ts │ ├── context │ │ ├── ContectFormChip │ │ │ ├── ContextFormChip.styles.ts │ │ │ ├── ContextFormChip.tsx │ │ │ ├── ContextFormChipList.styles.ts │ │ │ └── ContextFormChipList.tsx │ │ ├── ContextForm │ │ │ ├── ContextForm.styles.ts │ │ │ └── ContextForm.tsx │ │ ├── ContextList │ │ │ ├── AddContextButton │ │ │ │ └── AddContextButton.tsx │ │ │ ├── ContextActionsCell │ │ │ │ └── ContextActionsCell.tsx │ │ │ └── ContextList.tsx │ │ ├── CreateUnleashContext │ │ │ ├── CreateUnleashContext.tsx │ │ │ └── CreateUnleashContextPage.tsx │ │ ├── EditContext │ │ │ └── EditContext.tsx │ │ └── hooks │ │ │ └── useContextForm.ts │ ├── environments │ │ ├── CreateEnvironment │ │ │ └── CreateEnvironment.tsx │ │ ├── CreateEnvironmentButton │ │ │ └── CreateEnvironmentButton.tsx │ │ ├── EditEnvironment │ │ │ └── EditEnvironment.tsx │ │ ├── EnvironmentCard │ │ │ ├── EnvironmentCard.styles.ts │ │ │ └── EnvironmentCard.tsx │ │ ├── EnvironmentDeleteConfirm │ │ │ ├── EnvironmentDeleteConfirm.styles.ts │ │ │ └── EnvironmentDeleteConfirm.tsx │ │ ├── EnvironmentForm │ │ │ ├── EnvironmentForm.styles.ts │ │ │ ├── EnvironmentForm.tsx │ │ │ └── EnvironmentTypeSelector │ │ │ │ ├── EnvironmentTypeSelector.styles.ts │ │ │ │ └── EnvironmentTypeSelector.tsx │ │ ├── EnvironmentTable │ │ │ ├── EnvironmentActionCell │ │ │ │ └── EnvironmentActionCell.tsx │ │ │ ├── EnvironmentIconCell │ │ │ │ └── EnvironmentIconCell.tsx │ │ │ ├── EnvironmentNameCell │ │ │ │ └── EnvironmentNameCell.tsx │ │ │ ├── EnvironmentRow │ │ │ │ └── EnvironmentRow.tsx │ │ │ └── EnvironmentTable.tsx │ │ ├── EnvironmentToggleConfirm │ │ │ └── EnvironmentToggleConfirm.tsx │ │ └── hooks │ │ │ └── useEnvironmentForm.ts │ ├── events │ │ ├── EventCard │ │ │ └── EventCard.tsx │ │ ├── EventDiff │ │ │ └── EventDiff.tsx │ │ ├── EventJson │ │ │ └── EventJson.tsx │ │ ├── EventLog │ │ │ └── EventLog.tsx │ │ └── EventPage │ │ │ └── EventPage.tsx │ ├── feature │ │ ├── CopyFeature │ │ │ ├── CopyFeature.module.scss │ │ │ └── CopyFeature.tsx │ │ ├── CreateFeature │ │ │ └── CreateFeature.tsx │ │ ├── CreateFeatureButton │ │ │ ├── CreateFeatureButton.tsx │ │ │ └── useCreateFeaturePath.ts │ │ ├── EditFeature │ │ │ └── EditFeature.tsx │ │ ├── FeatureForm │ │ │ ├── FeatureForm.styles.ts │ │ │ └── FeatureForm.tsx │ │ ├── FeatureStrategy │ │ │ ├── FeatureStrategyConstraints │ │ │ │ └── FeatureStrategyConstraints.tsx │ │ │ ├── FeatureStrategyCreate │ │ │ │ ├── FeatureStrategyCreate.test.tsx │ │ │ │ └── FeatureStrategyCreate.tsx │ │ │ ├── FeatureStrategyEdit │ │ │ │ ├── FeatureStrategyEdit.test.tsx │ │ │ │ └── FeatureStrategyEdit.tsx │ │ │ ├── FeatureStrategyEmpty │ │ │ │ ├── CopyButton │ │ │ │ │ └── CopyButton.tsx │ │ │ │ ├── FeatureStrategyEmpty.styles.ts │ │ │ │ ├── FeatureStrategyEmpty.tsx │ │ │ │ └── PresetCard │ │ │ │ │ └── PresetCard.tsx │ │ │ ├── FeatureStrategyEnabled │ │ │ │ └── FeatureStrategyEnabled.tsx │ │ │ ├── FeatureStrategyForm │ │ │ │ ├── FeatureStrategyForm.styles.ts │ │ │ │ └── FeatureStrategyForm.tsx │ │ │ ├── FeatureStrategyIcon │ │ │ │ └── FeatureStrategyIcon.tsx │ │ │ ├── FeatureStrategyIcons │ │ │ │ └── FeatureStrategyIcons.tsx │ │ │ ├── FeatureStrategyMenu │ │ │ │ ├── FeatureStrategyMenu.tsx │ │ │ │ ├── FeatureStrategyMenuCard │ │ │ │ │ ├── FeatureStrategyMenuCard.styles.ts │ │ │ │ │ └── FeatureStrategyMenuCard.tsx │ │ │ │ └── FeatureStrategyMenuCards │ │ │ │ │ └── FeatureStrategyMenuCards.tsx │ │ │ ├── FeatureStrategyProdGuard │ │ │ │ └── FeatureStrategyProdGuard.tsx │ │ │ ├── FeatureStrategyRemove │ │ │ │ └── FeatureStrategyRemove.tsx │ │ │ ├── FeatureStrategySegment │ │ │ │ ├── FeatureStrategySegment.styles.ts │ │ │ │ ├── FeatureStrategySegment.tsx │ │ │ │ ├── FeatureStrategySegmentChip.styles.ts │ │ │ │ ├── FeatureStrategySegmentChip.tsx │ │ │ │ ├── FeatureStrategySegmentList.styles.ts │ │ │ │ └── FeatureStrategySegmentList.tsx │ │ │ └── FeatureStrategyType │ │ │ │ └── FeatureStrategyType.tsx │ │ ├── FeatureToggleList │ │ │ ├── FeatureStaleCell │ │ │ │ ├── FeatureStaleCell.styles.ts │ │ │ │ └── FeatureStaleCell.tsx │ │ │ ├── FeatureToggleListItem │ │ │ │ ├── FeatureToggleListItem.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── FeatureToggleListItem.test.jsx.snap │ │ │ │ └── styles.ts │ │ │ ├── FeatureToggleListTable.tsx │ │ │ └── __snapshots__ │ │ │ │ └── FeatureToggleList.test.jsx.snap │ │ ├── FeatureView │ │ │ ├── FeatureLog │ │ │ │ ├── FeatureLog.styles.ts │ │ │ │ └── FeatureLog.tsx │ │ │ ├── FeatureMetrics │ │ │ │ ├── FeatureMetrics.styles.ts │ │ │ │ ├── FeatureMetrics.tsx │ │ │ │ ├── FeatureMetricsChart │ │ │ │ │ ├── FeatureMetricsChart.tsx │ │ │ │ │ ├── createChartData.ts │ │ │ │ │ └── createChartOptions.ts │ │ │ │ ├── FeatureMetricsChips │ │ │ │ │ ├── FeatureMetricsChips.styles.ts │ │ │ │ │ └── FeatureMetricsChips.tsx │ │ │ │ ├── FeatureMetricsContent │ │ │ │ │ └── FeatureMetricsContent.tsx │ │ │ │ ├── FeatureMetricsHours │ │ │ │ │ └── FeatureMetricsHours.tsx │ │ │ │ ├── FeatureMetricsStats │ │ │ │ │ ├── FeatureMetricsStats.styles.ts │ │ │ │ │ ├── FeatureMetricsStats.tsx │ │ │ │ │ └── FeatureMetricsStatsRaw.tsx │ │ │ │ └── FeatureMetricsTable │ │ │ │ │ └── FeatureMetricsTable.tsx │ │ │ ├── FeatureNotFound │ │ │ │ ├── FeatureNotFound.styles.ts │ │ │ │ └── FeatureNotFound.tsx │ │ │ ├── FeatureOverview │ │ │ │ ├── AddTagDialog │ │ │ │ │ ├── AddTagDialog.styles.ts │ │ │ │ │ └── AddTagDialog.tsx │ │ │ │ ├── FeatureOverview.styles.ts │ │ │ │ ├── FeatureOverview.tsx │ │ │ │ ├── FeatureOverviewEnvSwitches │ │ │ │ │ ├── FeatureOverviewEnvSwitch │ │ │ │ │ │ ├── FeatureOverviewEnvSwitch.styles.ts │ │ │ │ │ │ └── FeatureOverviewEnvSwitch.tsx │ │ │ │ │ └── FeatureOverviewEnvSwitches.tsx │ │ │ │ ├── FeatureOverviewEnvironments │ │ │ │ │ ├── FeatureOverviewEnvironment │ │ │ │ │ │ ├── EnvironmentAccordionBody │ │ │ │ │ │ │ ├── EnvironmentAccordionBody.styles.ts │ │ │ │ │ │ │ ├── EnvironmentAccordionBody.tsx │ │ │ │ │ │ │ └── StrategyDraggableItem │ │ │ │ │ │ │ │ ├── StrategyDraggableItem.tsx │ │ │ │ │ │ │ │ └── StrategyItem │ │ │ │ │ │ │ │ ├── CopyStrategyIconMenu │ │ │ │ │ │ │ │ └── CopyStrategyIconMenu.tsx │ │ │ │ │ │ │ │ ├── StrategyExecution │ │ │ │ │ │ │ │ ├── ConstraintItem │ │ │ │ │ │ │ │ │ ├── ConstraintItem.styles.ts │ │ │ │ │ │ │ │ │ └── ConstraintItem.tsx │ │ │ │ │ │ │ │ ├── StrategyExecution.styles.ts │ │ │ │ │ │ │ │ └── StrategyExecution.tsx │ │ │ │ │ │ │ │ └── StrategyItem.tsx │ │ │ │ │ │ ├── EnvironmentFooter │ │ │ │ │ │ │ └── EnvironmentFooter.tsx │ │ │ │ │ │ ├── FeatureOverviewEnvironment.styles.ts │ │ │ │ │ │ ├── FeatureOverviewEnvironment.tsx │ │ │ │ │ │ ├── FeatureOverviewEnvironmentMetrics │ │ │ │ │ │ │ ├── FeatureOverviewEnvironmentMetrics.styles.ts │ │ │ │ │ │ │ └── FeatureOverviewEnvironmentMetrics.tsx │ │ │ │ │ │ └── SectionSeparator │ │ │ │ │ │ │ └── SectionSeparator.tsx │ │ │ │ │ └── FeatureOverviewEnvironments.tsx │ │ │ │ ├── FeatureOverviewMetaData │ │ │ │ │ ├── FeatureOverviewMetaData.tsx │ │ │ │ │ ├── FeatureOverviewMetadata.styles.ts │ │ │ │ │ └── FeatureOverviewTags │ │ │ │ │ │ ├── FeatureOverviewTags.styles.ts │ │ │ │ │ │ └── FeatureOverviewTags.tsx │ │ │ │ └── FeatureOverviewSegment │ │ │ │ │ └── FeatureOverviewSegment.tsx │ │ │ ├── FeatureSettings │ │ │ │ ├── FeatureSettings.styles.ts │ │ │ │ ├── FeatureSettings.tsx │ │ │ │ ├── FeatureSettingsInformation │ │ │ │ │ ├── FeatureSettingsInformation.style.ts │ │ │ │ │ └── FeatureSettingsInformation.tsx │ │ │ │ ├── FeatureSettingsMetadata │ │ │ │ │ └── FeatureTypeSelect │ │ │ │ │ │ └── FeatureTypeSelect.tsx │ │ │ │ └── FeatureSettingsProject │ │ │ │ │ ├── FeatureProjectSelect │ │ │ │ │ └── FeatureProjectSelect.tsx │ │ │ │ │ ├── FeatureSettingsProject.tsx │ │ │ │ │ └── FeatureSettingsProjectConfirm │ │ │ │ │ ├── FeatureSettingsProjectConfirm.styles.ts │ │ │ │ │ └── FeatureSettingsProjectConfirm.tsx │ │ │ ├── FeatureStatus │ │ │ │ ├── FeatureStatus.styles.ts │ │ │ │ └── FeatureStatus.tsx │ │ │ ├── FeatureType │ │ │ │ ├── FeatureType.styles.ts │ │ │ │ └── FeatureType.tsx │ │ │ ├── FeatureVariants │ │ │ │ ├── FeatureVariants.styles.ts │ │ │ │ ├── FeatureVariants.tsx │ │ │ │ └── FeatureVariantsList │ │ │ │ │ ├── AddFeatureVariant │ │ │ │ │ ├── AddFeatureVariant.styles.ts │ │ │ │ │ ├── AddFeatureVariant.tsx │ │ │ │ │ ├── OverrideConfig │ │ │ │ │ │ ├── OverrideConfig.styles.ts │ │ │ │ │ │ └── OverrideConfig.tsx │ │ │ │ │ ├── enums.ts │ │ │ │ │ ├── useOverrides.test.ts │ │ │ │ │ └── useOverrides.ts │ │ │ │ │ ├── FeatureVariantsList.tsx │ │ │ │ │ ├── PayloadOverridesCell │ │ │ │ │ └── PayloadOverridesCell.tsx │ │ │ │ │ ├── VariantsActionsCell │ │ │ │ │ └── VariantsActionsCell.tsx │ │ │ │ │ └── useDeleteVariantMarkup.tsx │ │ │ ├── FeatureView.styles.ts │ │ │ └── FeatureView.tsx │ │ ├── RedirectFeatureView │ │ │ └── RedirectFeatureView.tsx │ │ ├── StrategyTypes │ │ │ ├── DefaultStrategy │ │ │ │ └── DefaultStrategy.tsx │ │ │ ├── FlexibleStrategy │ │ │ │ └── FlexibleStrategy.tsx │ │ │ ├── GeneralStrategy │ │ │ │ └── GeneralStrategy.tsx │ │ │ ├── RolloutSlider │ │ │ │ └── RolloutSlider.tsx │ │ │ ├── StrategyInputList │ │ │ │ └── StrategyInputList.tsx │ │ │ ├── StrategyParameter │ │ │ │ └── StrategyParameter.tsx │ │ │ └── UserWithIdStrategy │ │ │ │ └── UserWithId.tsx │ │ └── hooks │ │ │ └── useFeatureForm.ts │ ├── feedback │ │ ├── FeedbackCES │ │ │ ├── FeedbackCES.styles.ts │ │ │ ├── FeedbackCES.tsx │ │ │ ├── FeedbackCESForm.styles.ts │ │ │ ├── FeedbackCESForm.test.tsx │ │ │ ├── FeedbackCESForm.tsx │ │ │ ├── FeedbackCESScore.styles.ts │ │ │ ├── FeedbackCESScore.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── FeedbackCESForm.test.tsx.snap │ │ │ └── sendFeedbackInput.ts │ │ ├── FeedbackCESContext │ │ │ ├── FeedbackCESContext.ts │ │ │ ├── FeedbackCESProvider.tsx │ │ │ ├── useFeedbackCESEnabled.ts │ │ │ └── useFeedbackCESSeen.ts │ │ └── FeedbackNPS │ │ │ ├── FeedbackNPS.styles.ts │ │ │ ├── FeedbackNPS.tsx │ │ │ └── showNPSFeedback.ts │ ├── layout │ │ ├── LayoutPicker │ │ │ └── LayoutPicker.tsx │ │ └── MainLayout │ │ │ └── MainLayout.tsx │ ├── menu │ │ ├── Footer │ │ │ ├── ApiDetails │ │ │ │ ├── ApiDetails.test.tsx │ │ │ │ ├── ApiDetails.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ApiDetails.test.tsx.snap │ │ │ │ └── apidetails.helpers.tsx │ │ │ ├── Footer.styles.ts │ │ │ ├── Footer.test.tsx │ │ │ ├── Footer.tsx │ │ │ ├── FooterTitle.styles.ts │ │ │ ├── FooterTitle.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Footer.test.tsx.snap │ │ ├── Header │ │ │ ├── DrawerMenu │ │ │ │ ├── DrawerMenu.module.scss │ │ │ │ └── DrawerMenu.tsx │ │ │ ├── Header.styles.ts │ │ │ ├── Header.tsx │ │ │ ├── NavigationLink │ │ │ │ ├── NavigationLink.styles.ts │ │ │ │ └── NavigationLink.tsx │ │ │ └── NavigationMenu │ │ │ │ └── NavigationMenu.tsx │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── routes.test.tsx.snap │ │ │ └── routes.test.tsx │ │ └── routes.ts │ ├── playground │ │ └── Playground │ │ │ ├── LazyPlayground.tsx │ │ │ ├── Playground.tsx │ │ │ ├── PlaygroundForm │ │ │ ├── PlaygroundCodeFieldset │ │ │ │ ├── PlaygroundCodeFieldset.tsx │ │ │ │ └── PlaygroundEditor │ │ │ │ │ └── PlaygroundEditor.tsx │ │ │ ├── PlaygroundConnectionFieldset │ │ │ │ └── PlaygroundConnectionFieldset.tsx │ │ │ └── PlaygroundForm.tsx │ │ │ ├── PlaygroundGuidance │ │ │ ├── PlaygroundGuidance.tsx │ │ │ └── PlaygroundGuidanceSection │ │ │ │ └── PlaygroundGuidanceSection.tsx │ │ │ ├── PlaygroundGuidancePopper │ │ │ └── PlaygroundGuidancePopper.tsx │ │ │ ├── PlaygroundResultsTable │ │ │ ├── ContextBanner │ │ │ │ └── ContextBanner.tsx │ │ │ ├── FeatureResultInfoPopoverCell │ │ │ │ ├── FeatureDetails │ │ │ │ │ ├── FeatureDetails.styles.ts │ │ │ │ │ ├── FeatureDetails.tsx │ │ │ │ │ └── helpers.ts │ │ │ │ ├── FeatureResultInfoPopoverCell.styles.ts │ │ │ │ ├── FeatureResultInfoPopoverCell.tsx │ │ │ │ └── FeatureStrategyList │ │ │ │ │ ├── PlaygroundResultFeatureStrategyList.tsx │ │ │ │ │ └── StrategyList │ │ │ │ │ ├── StrategyItem │ │ │ │ │ ├── FeatureStrategyItem.styles.ts │ │ │ │ │ ├── FeatureStrategyItem.tsx │ │ │ │ │ └── StrategyExecution │ │ │ │ │ │ ├── ConstraintExecution │ │ │ │ │ │ ├── ConstraintError │ │ │ │ │ │ │ └── ConstraintError.tsx │ │ │ │ │ │ ├── ConstraintExecution.tsx │ │ │ │ │ │ └── ConstraintOk │ │ │ │ │ │ │ └── ConstraintOk.tsx │ │ │ │ │ │ ├── CustomStrategyParams │ │ │ │ │ │ ├── CustomParameterItem │ │ │ │ │ │ │ └── CustomParameterItem.tsx │ │ │ │ │ │ └── CustomStrategyParams.tsx │ │ │ │ │ │ ├── PlaygroundParameterItem │ │ │ │ │ │ ├── PlaygroundParameterItem.tsx │ │ │ │ │ │ └── PlaygroundParametertem.styles.ts │ │ │ │ │ │ ├── SegmentExecution │ │ │ │ │ │ ├── SegmentExecution.styles.ts │ │ │ │ │ │ └── SegmentExecution.tsx │ │ │ │ │ │ ├── StrategyExecution.styles.ts │ │ │ │ │ │ ├── StrategyExecution.tsx │ │ │ │ │ │ ├── StrategyExecutionParameters │ │ │ │ │ │ └── StrategyExecutionParameters.tsx │ │ │ │ │ │ └── helpers.ts │ │ │ │ │ └── playgroundResultStrategyLists.tsx │ │ │ ├── FeatureStatusCell │ │ │ │ └── FeatureStatusCell.tsx │ │ │ ├── PlaygroundResultChip │ │ │ │ └── PlaygroundResultChip.tsx │ │ │ ├── PlaygroundResultsTable.tsx │ │ │ └── VariantCell │ │ │ │ ├── VariantCell.tsx │ │ │ │ └── VariantInformation │ │ │ │ └── VariantInformation.tsx │ │ │ ├── interfaces │ │ │ └── playground.model.ts │ │ │ └── playground.utils.ts │ ├── project │ │ ├── Project │ │ │ ├── CreateProject │ │ │ │ └── CreateProject.tsx │ │ │ ├── DeleteProject │ │ │ │ └── DeleteProjectDialogue.tsx │ │ │ ├── EditProject │ │ │ │ └── EditProject.tsx │ │ │ ├── Project.styles.ts │ │ │ ├── Project.tsx │ │ │ ├── ProjectFeatureToggles │ │ │ │ ├── ActionsCell │ │ │ │ │ ├── ActionsCell.styles.ts │ │ │ │ │ └── ActionsCell.tsx │ │ │ │ ├── ColumnsMenu │ │ │ │ │ ├── ColumnsMenu.styles.ts │ │ │ │ │ └── ColumnsMenu.tsx │ │ │ │ ├── FeatureToggleSwitch │ │ │ │ │ ├── FeatureToggleSwitch.styles.ts │ │ │ │ │ ├── FeatureToggleSwitch.tsx │ │ │ │ │ └── hooks │ │ │ │ │ │ ├── useOptimisticUpdate.test.ts │ │ │ │ │ │ └── useOptimisticUpdate.ts │ │ │ │ ├── ProjectFeatureToggles.styles.ts │ │ │ │ ├── ProjectFeatureToggles.tsx │ │ │ │ └── hooks │ │ │ │ │ └── useEnvironmentsRef.ts │ │ │ ├── ProjectFeaturesArchive │ │ │ │ └── ProjectFeaturesArchive.tsx │ │ │ ├── ProjectForm │ │ │ │ ├── ProjectForm.styles.ts │ │ │ │ └── ProjectForm.tsx │ │ │ ├── ProjectHealth │ │ │ │ ├── ProjectHealth.tsx │ │ │ │ └── ReportTable │ │ │ │ │ ├── ReportCard │ │ │ │ │ └── ReportCard.tsx │ │ │ │ │ ├── ReportExpiredCell │ │ │ │ │ ├── ReportExpiredCell.tsx │ │ │ │ │ └── formatExpiredAt.ts │ │ │ │ │ ├── ReportStatusCell │ │ │ │ │ ├── ReportStatusCell.tsx │ │ │ │ │ └── formatStatus.ts │ │ │ │ │ ├── ReportTable.tsx │ │ │ │ │ └── utils.ts │ │ │ ├── ProjectInfo │ │ │ │ ├── ProjectInfo.styles.ts │ │ │ │ └── ProjectInfo.tsx │ │ │ ├── ProjectOverview.tsx │ │ │ └── hooks │ │ │ │ └── useProjectForm.ts │ │ ├── ProjectAccess │ │ │ ├── ProjectAccess.styles.ts │ │ │ ├── ProjectAccess.tsx │ │ │ ├── ProjectAccessAssign │ │ │ │ ├── ProjectAccessAssign.tsx │ │ │ │ └── ProjectRoleDescription │ │ │ │ │ └── ProjectRoleDescription.tsx │ │ │ ├── ProjectAccessCreate │ │ │ │ └── ProjectAccessCreate.tsx │ │ │ ├── ProjectAccessEditGroup │ │ │ │ └── ProjectAccessEditGroup.tsx │ │ │ ├── ProjectAccessEditUser │ │ │ │ └── ProjectAccessEditUser.tsx │ │ │ ├── ProjectAccessTable │ │ │ │ ├── ProjectAccessRoleCell │ │ │ │ │ └── ProjectAccessRoleCell.tsx │ │ │ │ └── ProjectAccessTable.tsx │ │ │ └── ProjectGroupView │ │ │ │ └── ProjectGroupView.tsx │ │ ├── ProjectCard │ │ │ ├── ProjectCard.styles.ts │ │ │ └── ProjectCard.tsx │ │ ├── ProjectEnvironment │ │ │ ├── EnvironmentDisableConfirm │ │ │ │ ├── EnvironmentDisableConfirm.styles.ts │ │ │ │ └── EnvironmentDisableConfirm.tsx │ │ │ ├── ProjectEnvironment.styles.ts │ │ │ ├── ProjectEnvironment.tsx │ │ │ ├── getEnabledEnvs.test.ts │ │ │ └── helpers.ts │ │ └── ProjectList │ │ │ ├── ProjectList.styles.ts │ │ │ ├── ProjectList.tsx │ │ │ └── loadingData.ts │ ├── providers │ │ ├── AccessProvider │ │ │ ├── AccessProvider.tsx │ │ │ ├── AccessProviderMock.tsx │ │ │ └── permissions.ts │ │ ├── SWRProvider │ │ │ └── SWRProvider.tsx │ │ └── UIProvider │ │ │ ├── UIProvider.tsx │ │ │ └── UIProviderContainer.tsx │ ├── segments │ │ ├── CreateSegment │ │ │ └── CreateSegment.tsx │ │ ├── CreateSegmentButton │ │ │ └── CreateSegmentButton.tsx │ │ ├── EditSegment │ │ │ └── EditSegment.tsx │ │ ├── EditSegmentButton │ │ │ └── EditSegmentButton.tsx │ │ ├── RemoveSegmentButton │ │ │ └── RemoveSegmentButton.tsx │ │ ├── SegmentActionCell │ │ │ └── SegmentActionCell.tsx │ │ ├── SegmentDelete │ │ │ ├── SegmentDelete.tsx │ │ │ ├── SegmentDeleteConfirm │ │ │ │ ├── SegmentDeleteConfirm.styles.ts │ │ │ │ └── SegmentDeleteConfirm.tsx │ │ │ └── SegmentDeleteUsedSegment │ │ │ │ └── SegmentDeleteUsedSegment.tsx │ │ ├── SegmentDocs │ │ │ └── SegmentDocs.tsx │ │ ├── SegmentEmpty │ │ │ ├── SegmentEmpty.styles.ts │ │ │ └── SegmentEmpty.tsx │ │ ├── SegmentForm │ │ │ ├── SegmentForm.styles.ts │ │ │ └── SegmentForm.tsx │ │ ├── SegmentFormStepList │ │ │ ├── SegmentFormStepList.styles.ts │ │ │ └── SegmentFormStepList.tsx │ │ ├── SegmentFormStepOne │ │ │ ├── SegmentFormStepOne.styles.ts │ │ │ └── SegmentFormStepOne.tsx │ │ ├── SegmentFormStepTwo │ │ │ ├── SegmentFormStepTwo.styles.ts │ │ │ └── SegmentFormStepTwo.tsx │ │ ├── SegmentTable │ │ │ └── SegmentTable.tsx │ │ └── hooks │ │ │ ├── useSegmentForm.ts │ │ │ └── useSegmentValuesCount.ts │ ├── splash │ │ ├── SplashPage │ │ │ └── SplashPage.tsx │ │ ├── SplashPageOperators │ │ │ ├── SplashPageOperators.styles.tsx │ │ │ └── SplashPageOperators.tsx │ │ ├── SplashPageRedirect │ │ │ └── SplashPageRedirect.tsx │ │ └── splash.tsx │ ├── strategies │ │ ├── CreateStrategy │ │ │ └── CreateStrategy.tsx │ │ ├── EditStrategy │ │ │ └── EditStrategy.tsx │ │ ├── StrategiesList │ │ │ ├── AddStrategyButton │ │ │ │ └── AddStrategyButton.tsx │ │ │ ├── StrategiesList.tsx │ │ │ ├── StrategyDeleteButton │ │ │ │ └── StrategyDeleteButton.tsx │ │ │ ├── StrategyEditButton │ │ │ │ └── StrategyEditButton.tsx │ │ │ └── StrategySwitch │ │ │ │ └── StrategySwitch.tsx │ │ ├── StrategyForm │ │ │ ├── StrategyForm.styles.ts │ │ │ ├── StrategyForm.tsx │ │ │ └── StrategyParameters │ │ │ │ ├── StrategyParameter │ │ │ │ ├── StrategyParameter.styles.ts │ │ │ │ └── StrategyParameter.tsx │ │ │ │ └── StrategyParameters.tsx │ │ ├── StrategyView │ │ │ ├── StrategyDetails │ │ │ │ └── StrategyDetails.tsx │ │ │ └── StrategyView.tsx │ │ ├── TogglesLinkList │ │ │ └── TogglesLinkList.tsx │ │ ├── hooks │ │ │ └── useStrategyForm.ts │ │ └── strategies.module.scss │ ├── tags │ │ ├── CreateTagType │ │ │ └── CreateTagType.tsx │ │ ├── EditTagType │ │ │ └── EditTagType.tsx │ │ ├── TagTypeForm │ │ │ ├── TagTypeForm.styles.ts │ │ │ ├── TagTypeForm.tsx │ │ │ └── useTagTypeForm.ts │ │ └── TagTypeList │ │ │ ├── AddTagTypeButton │ │ │ └── AddTagTypeButton.tsx │ │ │ ├── TagTypeList.tsx │ │ │ └── __tests__ │ │ │ ├── TagTypeList.test.tsx │ │ │ └── __snapshots__ │ │ │ └── TagTypeList.test.tsx.snap │ └── user │ │ ├── Authentication │ │ ├── Authentication.test.tsx │ │ └── Authentication.tsx │ │ ├── AuthenticationCustomComponent.tsx │ │ ├── DemoAuth │ │ ├── DemoAuth.module.scss │ │ └── DemoAuth.tsx │ │ ├── ForgottenPassword │ │ ├── ForgottenPassword.styles.ts │ │ ├── ForgottenPassword.test.tsx │ │ └── ForgottenPassword.tsx │ │ ├── HostedAuth │ │ ├── HostedAuth.styles.ts │ │ └── HostedAuth.tsx │ │ ├── Login │ │ ├── Login.styles.ts │ │ ├── Login.tsx │ │ ├── parseRedirectParam.test.ts │ │ └── parseRedirectParam.ts │ │ ├── NewUser │ │ ├── NewUser.styles.ts │ │ └── NewUser.tsx │ │ ├── PasswordAuth │ │ ├── PasswordAuth.styles.ts │ │ └── PasswordAuth.tsx │ │ ├── ResetPassword │ │ ├── ResetPassword.styles.ts │ │ ├── ResetPassword.test.tsx │ │ └── ResetPassword.tsx │ │ ├── SimpleAuth │ │ ├── SimpleAuth.module.scss │ │ └── SimpleAuth.tsx │ │ ├── StandaloneBanner │ │ ├── StandaloneBanner.styles.ts │ │ └── StandaloneBanner.tsx │ │ ├── UserProfile │ │ ├── EditProfile │ │ │ ├── EditProfile.styles.ts │ │ │ └── EditProfile.tsx │ │ ├── UserProfile.styles.ts │ │ ├── UserProfile.tsx │ │ ├── UserProfileContent │ │ │ ├── UserProfileContent.styles.ts │ │ │ └── UserProfileContent.tsx │ │ └── index.tsx │ │ ├── common │ │ ├── AuthOptions │ │ │ └── AuthOptions.tsx │ │ ├── InvalidToken │ │ │ └── InvalidToken.tsx │ │ ├── ResetPasswordDetails │ │ │ └── ResetPasswordDetails.tsx │ │ ├── ResetPasswordError │ │ │ └── ResetPasswordError.tsx │ │ ├── ResetPasswordForm │ │ │ ├── PasswordChecker │ │ │ │ ├── PasswordChecker.styles.ts │ │ │ │ └── PasswordChecker.tsx │ │ │ ├── PasswordMatcher │ │ │ │ ├── PasswordMatcher.styles.ts │ │ │ │ └── PasswordMatcher.tsx │ │ │ ├── ResetPasswordForm.styles.ts │ │ │ └── ResetPasswordForm.tsx │ │ ├── ResetPasswordSuccess │ │ │ └── ResetPasswordSuccess.tsx │ │ ├── SecondaryLoginActions │ │ │ ├── SecondaryLoginActions.styles.ts │ │ │ └── SecondaryLoginActions.tsx │ │ └── StandaloneLayout │ │ │ ├── StandaloneLayout.styles.ts │ │ │ └── StandaloneLayout.tsx │ │ └── user.module.scss ├── constants │ ├── apiErrors.ts │ ├── authTypes.ts │ ├── environmentTypes.ts │ ├── featureToggleTypes.ts │ ├── misc.ts │ ├── navigate.ts │ ├── operators.ts │ └── statusCodes.ts ├── contexts │ ├── AccessContext.ts │ └── UIContext.ts ├── hooks │ ├── __snapshots__ │ │ └── useFeaturesFilter.test.ts.snap │ ├── api │ │ ├── actions │ │ │ ├── useAddonsApi │ │ │ │ └── useAddonsApi.ts │ │ │ ├── useAdminUsersApi │ │ │ │ ├── errorHandlers.ts │ │ │ │ └── useAdminUsersApi.ts │ │ │ ├── useApi │ │ │ │ └── useApi.ts │ │ │ ├── useApiTokensApi │ │ │ │ └── useApiTokensApi.ts │ │ │ ├── useApplicationsApi │ │ │ │ └── useApplicationsApi.ts │ │ │ ├── useAuthApi │ │ │ │ └── useAuthApi.tsx │ │ │ ├── useAuthFeedbackApi │ │ │ │ └── useAuthFeedbackApi.ts │ │ │ ├── useAuthSettingsApi │ │ │ │ └── useAuthSettingsApi.ts │ │ │ ├── useContextsApi │ │ │ │ └── useContextsApi.ts │ │ │ ├── useEnvironmentApi │ │ │ │ └── useEnvironmentApi.ts │ │ │ ├── useFeatureApi │ │ │ │ └── useFeatureApi.ts │ │ │ ├── useFeatureArchiveApi │ │ │ │ └── useReviveFeatureApi.ts │ │ │ ├── useFeatureStrategyApi │ │ │ │ └── useFeatureStrategyApi.ts │ │ │ ├── useGroupApi │ │ │ │ └── useGroupApi.ts │ │ │ ├── useInstanceStatusApi │ │ │ │ └── useInstanceStatusApi.ts │ │ │ ├── usePlayground │ │ │ │ └── usePlayground.ts │ │ │ ├── useProjectApi │ │ │ │ └── useProjectApi.ts │ │ │ ├── useProjectRolesApi │ │ │ │ └── useProjectRolesApi.ts │ │ │ ├── useSegmentsApi │ │ │ │ └── useSegmentsApi.ts │ │ │ ├── useSplashApi │ │ │ │ └── useSplashApi.ts │ │ │ ├── useStrategiesApi │ │ │ │ └── useStrategiesApi.ts │ │ │ ├── useTagTypesApi │ │ │ │ └── useTagTypesApi.ts │ │ │ └── useUiConfigApi │ │ │ │ └── useUiConfigApi.ts │ │ └── getters │ │ │ ├── httpErrorResponseHandler.ts │ │ │ ├── useAccess │ │ │ └── useAccess.ts │ │ │ ├── useAddons │ │ │ └── useAddons.ts │ │ │ ├── useApiGetter │ │ │ └── useApiGetter.ts │ │ │ ├── useApiTokens │ │ │ └── useApiTokens.ts │ │ │ ├── useApplication │ │ │ └── useApplication.ts │ │ │ ├── useApplications │ │ │ └── useApplications.ts │ │ │ ├── useAuth │ │ │ ├── useAuthDetails.ts │ │ │ ├── useAuthEndpoint.ts │ │ │ ├── useAuthFeedback.ts │ │ │ ├── useAuthPermissions.ts │ │ │ ├── useAuthSplash.ts │ │ │ └── useAuthUser.ts │ │ │ ├── useAuthSettings │ │ │ └── useAuthSettings.ts │ │ │ ├── useConstraintsValidation │ │ │ └── useConstraintsValidation.ts │ │ │ ├── useContext │ │ │ └── useContext.ts │ │ │ ├── useDefaultProject │ │ │ └── useDefaultProjectId.ts │ │ │ ├── useEnvironment │ │ │ ├── defaultEnvironment.ts │ │ │ └── useEnvironment.ts │ │ │ ├── useEnvironments │ │ │ └── useEnvironments.ts │ │ │ ├── useEventSearch │ │ │ └── useEventSearch.ts │ │ │ ├── useFeature │ │ │ ├── emptyFeature.ts │ │ │ ├── useFeature.ts │ │ │ └── useFeatureImmutable.ts │ │ │ ├── useFeatureMetrics │ │ │ └── useFeatureMetrics.ts │ │ │ ├── useFeatureMetricsRaw │ │ │ └── useFeatureMetricsRaw.ts │ │ │ ├── useFeatureTypes │ │ │ └── useFeatureTypes.ts │ │ │ ├── useFeatures │ │ │ └── useFeatures.ts │ │ │ ├── useFeaturesArchive │ │ │ └── useFeaturesArchive.ts │ │ │ ├── useGroup │ │ │ └── useGroup.ts │ │ │ ├── useGroups │ │ │ └── useGroups.ts │ │ │ ├── useHealthReport │ │ │ └── useHealthReport.ts │ │ │ ├── useInstanceStatus │ │ │ └── useInstanceStatus.ts │ │ │ ├── useInvoices │ │ │ └── useInvoices.ts │ │ │ ├── useProject │ │ │ ├── getProjectFetcher.ts │ │ │ └── useProject.ts │ │ │ ├── useProjectAccess │ │ │ └── useProjectAccess.ts │ │ │ ├── useProjectFeaturesArchive │ │ │ └── useProjectFeaturesArchive.ts │ │ │ ├── useProjectRole │ │ │ └── useProjectRole.ts │ │ │ ├── useProjectRolePermissions │ │ │ └── useProjectRolePermissions.ts │ │ │ ├── useProjectRoles │ │ │ └── useProjectRoles.ts │ │ │ ├── useProjects │ │ │ └── useProjects.ts │ │ │ ├── useResetPassword │ │ │ └── useResetPassword.ts │ │ │ ├── useSegment │ │ │ └── useSegment.ts │ │ │ ├── useSegmentLimits │ │ │ └── useSegmentLimits.ts │ │ │ ├── useSegmentValidation │ │ │ └── useSegmentValidation.ts │ │ │ ├── useSegments │ │ │ └── useSegments.ts │ │ │ ├── useStrategies │ │ │ └── useStrategies.ts │ │ │ ├── useStrategiesBySegment │ │ │ └── useStrategiesBySegment.ts │ │ │ ├── useStrategy │ │ │ └── useStrategy.ts │ │ │ ├── useTagType │ │ │ └── useTagType.ts │ │ │ ├── useTagTypes │ │ │ └── useTagTypes.ts │ │ │ ├── useTags │ │ │ └── useTags.ts │ │ │ ├── useUiConfig │ │ │ ├── defaultValue.ts │ │ │ └── useUiConfig.ts │ │ │ ├── useUnleashContext │ │ │ └── useUnleashContext.ts │ │ │ ├── useUserInfo │ │ │ └── useUserInfo.ts │ │ │ └── useUsers │ │ │ └── useUsers.ts │ ├── useDragItem.ts │ ├── useEventSettings.ts │ ├── useFeaturesFilter.test.ts │ ├── useFeaturesFilter.ts │ ├── useFormErrors.ts │ ├── useGlobalState.ts │ ├── useHiddenColumns.ts │ ├── useId.test.ts │ ├── useId.ts │ ├── useIsAppleDevice.ts │ ├── useKeyboardShortcut.ts │ ├── useLoading.ts │ ├── useLocationSettings.ts │ ├── useOnVisible.ts │ ├── useOptionalPathParam.ts │ ├── usePageTitle.ts │ ├── usePagination.ts │ ├── usePersistentGlobalState.ts │ ├── usePlausibleTracker.test.ts │ ├── usePlausibleTracker.ts │ ├── useQueryParams.ts │ ├── useQueryStringNumberState.ts │ ├── useQueryStringState.ts │ ├── useRequiredPathParam.ts │ ├── useRequiredQueryParam.ts │ ├── useSearch.test.ts │ ├── useSearch.ts │ ├── useTabs.ts │ ├── useThemeMode.ts │ ├── useToast.tsx │ ├── useUsersPlan.ts │ ├── useVirtualizedRange.ts │ └── useWeakMap.ts ├── index.tsx ├── interfaces │ ├── addons.ts │ ├── application.ts │ ├── context.ts │ ├── environments.ts │ ├── event.ts │ ├── featureToggle.ts │ ├── featureTypes.ts │ ├── group.ts │ ├── instance.ts │ ├── invoice.ts │ ├── project.ts │ ├── role.ts │ ├── route.ts │ ├── segment.ts │ ├── strategy.ts │ ├── tags.ts │ ├── toast.ts │ ├── token.ts │ ├── uiConfig.ts │ └── user.ts ├── openapi │ ├── apis │ │ ├── AdminApi.ts │ │ └── index.ts │ ├── index.ts │ ├── models │ │ ├── CloneFeatureSchema.ts │ │ ├── ConstraintSchema.ts │ │ ├── CreateFeatureSchema.ts │ │ ├── CreateStrategySchema.ts │ │ ├── FeatureEnvironmentSchema.ts │ │ ├── FeatureSchema.ts │ │ ├── FeatureStrategySchema.ts │ │ ├── FeaturesSchema.ts │ │ ├── OverrideSchema.ts │ │ ├── PatchOperationSchema.ts │ │ ├── StrategySchema.ts │ │ ├── TagSchema.ts │ │ ├── TagsResponseSchema.ts │ │ ├── UpdateFeatureSchema.ts │ │ ├── UpdateStrategySchema.ts │ │ ├── VariantSchema.ts │ │ ├── VariantSchemaPayload.ts │ │ └── index.ts │ └── runtime.ts ├── setupTests.ts ├── themes │ ├── ThemeProvider.tsx │ ├── app.css │ ├── colors.ts │ ├── dark-theme.ts │ ├── theme.ts │ ├── themeStyles.ts │ └── themeTypes.ts ├── types │ ├── global-fetch.d.ts │ └── react-table-config.d.ts ├── utils │ ├── apiUtils.ts │ ├── arraysHaveSameItems.test.ts │ ├── arraysHaveSameItems.ts │ ├── calculatePercentage.ts │ ├── cleanConstraint.test.ts │ ├── cleanConstraint.ts │ ├── createFeatureStrategy.test.ts │ ├── createFeatureStrategy.ts │ ├── createLocalStorage.ts │ ├── env.test.ts │ ├── env.ts │ ├── formatAccessText.test.ts │ ├── formatAccessText.ts │ ├── formatConstraintValue.ts │ ├── formatDate.ts │ ├── formatPath.test.ts │ ├── formatPath.ts │ ├── formatUnknownError.test.ts │ ├── formatUnknownError.ts │ ├── getFeatureMetrics.ts │ ├── getFeatureTypeIcons.ts │ ├── instanceTrial.test.ts │ ├── instanceTrial.ts │ ├── nonEmptyArray.ts │ ├── objectId.test.ts │ ├── objectId.ts │ ├── oneOf.ts │ ├── openapiClient.ts │ ├── operatorsForContext.ts │ ├── paginate.test.ts │ ├── paginate.ts │ ├── parseParameter.test.ts │ ├── parseParameter.ts │ ├── projectFilterGenerator.ts │ ├── removeEmptyStringFields.test.ts │ ├── removeEmptyStringFields.ts │ ├── routePathHelpers.ts │ ├── sortStrategyParameters.test.ts │ ├── sortStrategyParameters.ts │ ├── sortTypes.ts │ ├── storage.ts │ ├── strategyNames.tsx │ ├── testIds.ts │ ├── testRenderer.tsx │ ├── testServer.ts │ ├── validateParameterValue.test.ts │ └── validateParameterValue.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/e2e.feature.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/e2e.groups.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.project-access.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/e2e.project-access.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.segments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/e2e.segments.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.github/workflows/release_changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github/* 2 | /src/openapi 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/feature/feature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/integration/feature/feature.spec.ts -------------------------------------------------------------------------------- /cypress/integration/groups/groups.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/integration/groups/groups.spec.ts -------------------------------------------------------------------------------- /cypress/integration/projects/access/project-access.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/integration/projects/access/project-access.spec.ts -------------------------------------------------------------------------------- /cypress/integration/segments/segments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/integration/segments/segments.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/plugins/index.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/cs_CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/cs_CZ.png -------------------------------------------------------------------------------- /public/da-DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/da-DK.png -------------------------------------------------------------------------------- /public/datadog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/datadog.svg -------------------------------------------------------------------------------- /public/de_DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/de_DE.png -------------------------------------------------------------------------------- /public/en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/en-GB.png -------------------------------------------------------------------------------- /public/en-IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/en-IN.png -------------------------------------------------------------------------------- /public/en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/en-US.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon_old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/favicon_old.ico -------------------------------------------------------------------------------- /public/flags-normal/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ad.png -------------------------------------------------------------------------------- /public/flags-normal/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ae.png -------------------------------------------------------------------------------- /public/flags-normal/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/af.png -------------------------------------------------------------------------------- /public/flags-normal/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ag.png -------------------------------------------------------------------------------- /public/flags-normal/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/al.png -------------------------------------------------------------------------------- /public/flags-normal/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/am.png -------------------------------------------------------------------------------- /public/flags-normal/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ao.png -------------------------------------------------------------------------------- /public/flags-normal/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ar.png -------------------------------------------------------------------------------- /public/flags-normal/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/at.png -------------------------------------------------------------------------------- /public/flags-normal/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/au.png -------------------------------------------------------------------------------- /public/flags-normal/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/az.png -------------------------------------------------------------------------------- /public/flags-normal/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ba.png -------------------------------------------------------------------------------- /public/flags-normal/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bb.png -------------------------------------------------------------------------------- /public/flags-normal/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bd.png -------------------------------------------------------------------------------- /public/flags-normal/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/be.png -------------------------------------------------------------------------------- /public/flags-normal/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bf.png -------------------------------------------------------------------------------- /public/flags-normal/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bg.png -------------------------------------------------------------------------------- /public/flags-normal/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bh.png -------------------------------------------------------------------------------- /public/flags-normal/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bi.png -------------------------------------------------------------------------------- /public/flags-normal/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bj.png -------------------------------------------------------------------------------- /public/flags-normal/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bn.png -------------------------------------------------------------------------------- /public/flags-normal/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bo.png -------------------------------------------------------------------------------- /public/flags-normal/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/br.png -------------------------------------------------------------------------------- /public/flags-normal/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bs.png -------------------------------------------------------------------------------- /public/flags-normal/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bt.png -------------------------------------------------------------------------------- /public/flags-normal/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bw.png -------------------------------------------------------------------------------- /public/flags-normal/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/by.png -------------------------------------------------------------------------------- /public/flags-normal/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/bz.png -------------------------------------------------------------------------------- /public/flags-normal/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ca.png -------------------------------------------------------------------------------- /public/flags-normal/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cd.png -------------------------------------------------------------------------------- /public/flags-normal/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cf.png -------------------------------------------------------------------------------- /public/flags-normal/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cg.png -------------------------------------------------------------------------------- /public/flags-normal/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ch.png -------------------------------------------------------------------------------- /public/flags-normal/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ci.png -------------------------------------------------------------------------------- /public/flags-normal/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cl.png -------------------------------------------------------------------------------- /public/flags-normal/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cm.png -------------------------------------------------------------------------------- /public/flags-normal/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cn.png -------------------------------------------------------------------------------- /public/flags-normal/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/co.png -------------------------------------------------------------------------------- /public/flags-normal/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cr.png -------------------------------------------------------------------------------- /public/flags-normal/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cu.png -------------------------------------------------------------------------------- /public/flags-normal/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cv.png -------------------------------------------------------------------------------- /public/flags-normal/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cy.png -------------------------------------------------------------------------------- /public/flags-normal/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/cz.png -------------------------------------------------------------------------------- /public/flags-normal/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/de.png -------------------------------------------------------------------------------- /public/flags-normal/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/dj.png -------------------------------------------------------------------------------- /public/flags-normal/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/dk.png -------------------------------------------------------------------------------- /public/flags-normal/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/dm.png -------------------------------------------------------------------------------- /public/flags-normal/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/do.png -------------------------------------------------------------------------------- /public/flags-normal/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/dz.png -------------------------------------------------------------------------------- /public/flags-normal/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ec.png -------------------------------------------------------------------------------- /public/flags-normal/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ee.png -------------------------------------------------------------------------------- /public/flags-normal/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/eg.png -------------------------------------------------------------------------------- /public/flags-normal/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/eh.png -------------------------------------------------------------------------------- /public/flags-normal/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/er.png -------------------------------------------------------------------------------- /public/flags-normal/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/es.png -------------------------------------------------------------------------------- /public/flags-normal/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/et.png -------------------------------------------------------------------------------- /public/flags-normal/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/fi.png -------------------------------------------------------------------------------- /public/flags-normal/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/fj.png -------------------------------------------------------------------------------- /public/flags-normal/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/fm.png -------------------------------------------------------------------------------- /public/flags-normal/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/fr.png -------------------------------------------------------------------------------- /public/flags-normal/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ga.png -------------------------------------------------------------------------------- /public/flags-normal/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gb.png -------------------------------------------------------------------------------- /public/flags-normal/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gd.png -------------------------------------------------------------------------------- /public/flags-normal/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ge.png -------------------------------------------------------------------------------- /public/flags-normal/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gh.png -------------------------------------------------------------------------------- /public/flags-normal/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gm.png -------------------------------------------------------------------------------- /public/flags-normal/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gn.png -------------------------------------------------------------------------------- /public/flags-normal/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gq.png -------------------------------------------------------------------------------- /public/flags-normal/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gr.png -------------------------------------------------------------------------------- /public/flags-normal/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gt.png -------------------------------------------------------------------------------- /public/flags-normal/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gw.png -------------------------------------------------------------------------------- /public/flags-normal/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/gy.png -------------------------------------------------------------------------------- /public/flags-normal/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/hn.png -------------------------------------------------------------------------------- /public/flags-normal/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/hr.png -------------------------------------------------------------------------------- /public/flags-normal/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ht.png -------------------------------------------------------------------------------- /public/flags-normal/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/hu.png -------------------------------------------------------------------------------- /public/flags-normal/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/id.png -------------------------------------------------------------------------------- /public/flags-normal/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ie.png -------------------------------------------------------------------------------- /public/flags-normal/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/il.png -------------------------------------------------------------------------------- /public/flags-normal/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/in.png -------------------------------------------------------------------------------- /public/flags-normal/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/iq.png -------------------------------------------------------------------------------- /public/flags-normal/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ir.png -------------------------------------------------------------------------------- /public/flags-normal/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/is.png -------------------------------------------------------------------------------- /public/flags-normal/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/it.png -------------------------------------------------------------------------------- /public/flags-normal/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/jm.png -------------------------------------------------------------------------------- /public/flags-normal/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/jo.png -------------------------------------------------------------------------------- /public/flags-normal/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/jp.png -------------------------------------------------------------------------------- /public/flags-normal/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ke.png -------------------------------------------------------------------------------- /public/flags-normal/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kg.png -------------------------------------------------------------------------------- /public/flags-normal/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kh.png -------------------------------------------------------------------------------- /public/flags-normal/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ki.png -------------------------------------------------------------------------------- /public/flags-normal/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/km.png -------------------------------------------------------------------------------- /public/flags-normal/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kn.png -------------------------------------------------------------------------------- /public/flags-normal/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kp.png -------------------------------------------------------------------------------- /public/flags-normal/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kr.png -------------------------------------------------------------------------------- /public/flags-normal/ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ks.png -------------------------------------------------------------------------------- /public/flags-normal/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kw.png -------------------------------------------------------------------------------- /public/flags-normal/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/kz.png -------------------------------------------------------------------------------- /public/flags-normal/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/la.png -------------------------------------------------------------------------------- /public/flags-normal/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lb.png -------------------------------------------------------------------------------- /public/flags-normal/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lc.png -------------------------------------------------------------------------------- /public/flags-normal/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/li.png -------------------------------------------------------------------------------- /public/flags-normal/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lk.png -------------------------------------------------------------------------------- /public/flags-normal/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lr.png -------------------------------------------------------------------------------- /public/flags-normal/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ls.png -------------------------------------------------------------------------------- /public/flags-normal/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lt.png -------------------------------------------------------------------------------- /public/flags-normal/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lu.png -------------------------------------------------------------------------------- /public/flags-normal/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/lv.png -------------------------------------------------------------------------------- /public/flags-normal/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ly.png -------------------------------------------------------------------------------- /public/flags-normal/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ma.png -------------------------------------------------------------------------------- /public/flags-normal/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mc.png -------------------------------------------------------------------------------- /public/flags-normal/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/md.png -------------------------------------------------------------------------------- /public/flags-normal/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/me.png -------------------------------------------------------------------------------- /public/flags-normal/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mg.png -------------------------------------------------------------------------------- /public/flags-normal/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mh.png -------------------------------------------------------------------------------- /public/flags-normal/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mk.png -------------------------------------------------------------------------------- /public/flags-normal/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ml.png -------------------------------------------------------------------------------- /public/flags-normal/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mm.png -------------------------------------------------------------------------------- /public/flags-normal/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mn.png -------------------------------------------------------------------------------- /public/flags-normal/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mr.png -------------------------------------------------------------------------------- /public/flags-normal/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mt.png -------------------------------------------------------------------------------- /public/flags-normal/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mu.png -------------------------------------------------------------------------------- /public/flags-normal/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mv.png -------------------------------------------------------------------------------- /public/flags-normal/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mw.png -------------------------------------------------------------------------------- /public/flags-normal/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mx.png -------------------------------------------------------------------------------- /public/flags-normal/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/my.png -------------------------------------------------------------------------------- /public/flags-normal/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/mz.png -------------------------------------------------------------------------------- /public/flags-normal/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/na.png -------------------------------------------------------------------------------- /public/flags-normal/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ne.png -------------------------------------------------------------------------------- /public/flags-normal/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ng.png -------------------------------------------------------------------------------- /public/flags-normal/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ni.png -------------------------------------------------------------------------------- /public/flags-normal/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/nl.png -------------------------------------------------------------------------------- /public/flags-normal/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/no.png -------------------------------------------------------------------------------- /public/flags-normal/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/np.png -------------------------------------------------------------------------------- /public/flags-normal/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/nr.png -------------------------------------------------------------------------------- /public/flags-normal/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/nz.png -------------------------------------------------------------------------------- /public/flags-normal/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/om.png -------------------------------------------------------------------------------- /public/flags-normal/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pa.png -------------------------------------------------------------------------------- /public/flags-normal/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pe.png -------------------------------------------------------------------------------- /public/flags-normal/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pg.png -------------------------------------------------------------------------------- /public/flags-normal/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ph.png -------------------------------------------------------------------------------- /public/flags-normal/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pk.png -------------------------------------------------------------------------------- /public/flags-normal/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pl.png -------------------------------------------------------------------------------- /public/flags-normal/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pt.png -------------------------------------------------------------------------------- /public/flags-normal/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/pw.png -------------------------------------------------------------------------------- /public/flags-normal/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/py.png -------------------------------------------------------------------------------- /public/flags-normal/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/qa.png -------------------------------------------------------------------------------- /public/flags-normal/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ro.png -------------------------------------------------------------------------------- /public/flags-normal/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/rs.png -------------------------------------------------------------------------------- /public/flags-normal/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ru.png -------------------------------------------------------------------------------- /public/flags-normal/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/rw.png -------------------------------------------------------------------------------- /public/flags-normal/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sa.png -------------------------------------------------------------------------------- /public/flags-normal/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sb.png -------------------------------------------------------------------------------- /public/flags-normal/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sc.png -------------------------------------------------------------------------------- /public/flags-normal/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sd.png -------------------------------------------------------------------------------- /public/flags-normal/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/se.png -------------------------------------------------------------------------------- /public/flags-normal/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sg.png -------------------------------------------------------------------------------- /public/flags-normal/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/si.png -------------------------------------------------------------------------------- /public/flags-normal/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sk.png -------------------------------------------------------------------------------- /public/flags-normal/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sl.png -------------------------------------------------------------------------------- /public/flags-normal/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sm.png -------------------------------------------------------------------------------- /public/flags-normal/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sn.png -------------------------------------------------------------------------------- /public/flags-normal/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/so.png -------------------------------------------------------------------------------- /public/flags-normal/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sr.png -------------------------------------------------------------------------------- /public/flags-normal/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/st.png -------------------------------------------------------------------------------- /public/flags-normal/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sv.png -------------------------------------------------------------------------------- /public/flags-normal/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sy.png -------------------------------------------------------------------------------- /public/flags-normal/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/sz.png -------------------------------------------------------------------------------- /public/flags-normal/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/td.png -------------------------------------------------------------------------------- /public/flags-normal/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tg.png -------------------------------------------------------------------------------- /public/flags-normal/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/th.png -------------------------------------------------------------------------------- /public/flags-normal/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tj.png -------------------------------------------------------------------------------- /public/flags-normal/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tl.png -------------------------------------------------------------------------------- /public/flags-normal/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tm.png -------------------------------------------------------------------------------- /public/flags-normal/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tn.png -------------------------------------------------------------------------------- /public/flags-normal/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/to.png -------------------------------------------------------------------------------- /public/flags-normal/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tr.png -------------------------------------------------------------------------------- /public/flags-normal/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tt.png -------------------------------------------------------------------------------- /public/flags-normal/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tv.png -------------------------------------------------------------------------------- /public/flags-normal/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tw.png -------------------------------------------------------------------------------- /public/flags-normal/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/tz.png -------------------------------------------------------------------------------- /public/flags-normal/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ua.png -------------------------------------------------------------------------------- /public/flags-normal/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ug.png -------------------------------------------------------------------------------- /public/flags-normal/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/us.png -------------------------------------------------------------------------------- /public/flags-normal/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/uy.png -------------------------------------------------------------------------------- /public/flags-normal/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/uz.png -------------------------------------------------------------------------------- /public/flags-normal/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/va.png -------------------------------------------------------------------------------- /public/flags-normal/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/vc.png -------------------------------------------------------------------------------- /public/flags-normal/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ve.png -------------------------------------------------------------------------------- /public/flags-normal/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/vn.png -------------------------------------------------------------------------------- /public/flags-normal/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/vu.png -------------------------------------------------------------------------------- /public/flags-normal/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ws.png -------------------------------------------------------------------------------- /public/flags-normal/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/ye.png -------------------------------------------------------------------------------- /public/flags-normal/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/za.png -------------------------------------------------------------------------------- /public/flags-normal/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/zm.png -------------------------------------------------------------------------------- /public/flags-normal/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/flags-normal/zw.png -------------------------------------------------------------------------------- /public/fr-FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/fr-FR.png -------------------------------------------------------------------------------- /public/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/jira.svg -------------------------------------------------------------------------------- /public/logo-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/logo-filled.png -------------------------------------------------------------------------------- /public/logo-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/logo-inverted.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/logo_old.png -------------------------------------------------------------------------------- /public/nb-NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/nb-NO.png -------------------------------------------------------------------------------- /public/pt_BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/pt_BR.png -------------------------------------------------------------------------------- /public/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/slack.svg -------------------------------------------------------------------------------- /public/sv-SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/sv-SE.png -------------------------------------------------------------------------------- /public/switches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/switches.svg -------------------------------------------------------------------------------- /public/teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/teams.svg -------------------------------------------------------------------------------- /public/unknown-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/unknown-locale.png -------------------------------------------------------------------------------- /public/webhooks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/public/webhooks.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/generate-openapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/scripts/generate-openapi.sh -------------------------------------------------------------------------------- /src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /src/__mocks__/svgMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/__mocks__/svgMock.js -------------------------------------------------------------------------------- /src/assets/fonts/roboto300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/roboto300.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/roboto400.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/roboto500.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/roboto700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/senBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/senBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/senExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/senExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/senRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/fonts/senRegular.ttf -------------------------------------------------------------------------------- /src/assets/icons/24_Negator off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/24_Negator off.svg -------------------------------------------------------------------------------- /src/assets/icons/24_Negator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/24_Negator.svg -------------------------------------------------------------------------------- /src/assets/icons/24_Text format off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/24_Text format off.svg -------------------------------------------------------------------------------- /src/assets/icons/24_Text format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/24_Text format.svg -------------------------------------------------------------------------------- /src/assets/icons/Icecream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/Icecream.svg -------------------------------------------------------------------------------- /src/assets/icons/addfiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/addfiles.svg -------------------------------------------------------------------------------- /src/assets/icons/datadog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/datadog.svg -------------------------------------------------------------------------------- /src/assets/icons/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/dots.svg -------------------------------------------------------------------------------- /src/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/email.svg -------------------------------------------------------------------------------- /src/assets/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/google.svg -------------------------------------------------------------------------------- /src/assets/icons/gradual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/gradual.svg -------------------------------------------------------------------------------- /src/assets/icons/isenabled-false.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/isenabled-false.svg -------------------------------------------------------------------------------- /src/assets/icons/isenabled-true.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/isenabled-true.svg -------------------------------------------------------------------------------- /src/assets/icons/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/jira.svg -------------------------------------------------------------------------------- /src/assets/icons/logoBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/logoBg.svg -------------------------------------------------------------------------------- /src/assets/icons/logoInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/logoInverted.svg -------------------------------------------------------------------------------- /src/assets/icons/logoPlain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/logoPlain.svg -------------------------------------------------------------------------------- /src/assets/icons/logoWhiteBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/logoWhiteBg.svg -------------------------------------------------------------------------------- /src/assets/icons/projectIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/projectIcon.svg -------------------------------------------------------------------------------- /src/assets/icons/reorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/reorder.svg -------------------------------------------------------------------------------- /src/assets/icons/rollout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/rollout.svg -------------------------------------------------------------------------------- /src/assets/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/slack.svg -------------------------------------------------------------------------------- /src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/assets/icons/switches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/switches.svg -------------------------------------------------------------------------------- /src/assets/icons/teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/teams.svg -------------------------------------------------------------------------------- /src/assets/icons/toggleLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/toggleLeft.svg -------------------------------------------------------------------------------- /src/assets/icons/toggleRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/toggleRight.svg -------------------------------------------------------------------------------- /src/assets/icons/unknownUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/unknownUser.png -------------------------------------------------------------------------------- /src/assets/icons/webhooks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/icons/webhooks.svg -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/assets/img/logoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logoDark.svg -------------------------------------------------------------------------------- /src/assets/img/logoDarkWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logoDarkWithText.svg -------------------------------------------------------------------------------- /src/assets/img/logoWhiteTransparentHorizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logoWhiteTransparentHorizontal.svg -------------------------------------------------------------------------------- /src/assets/img/logoWithName.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logoWithName.svg -------------------------------------------------------------------------------- /src/assets/img/logoWithWhiteText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/logoWithWhiteText.svg -------------------------------------------------------------------------------- /src/assets/img/mobileGuidanceBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/mobileGuidanceBg.svg -------------------------------------------------------------------------------- /src/assets/img/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/texture.png -------------------------------------------------------------------------------- /src/assets/img/unleashLogoIconDarkAlpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/assets/img/unleashLogoIconDarkAlpha.gif -------------------------------------------------------------------------------- /src/component/App.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/App.styles.ts -------------------------------------------------------------------------------- /src/component/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/App.tsx -------------------------------------------------------------------------------- /src/component/addons/AddonForm/AddonForm.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/AddonForm/AddonForm.styles.tsx -------------------------------------------------------------------------------- /src/component/addons/AddonForm/AddonForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/AddonForm/AddonForm.tsx -------------------------------------------------------------------------------- /src/component/addons/AddonList/AddonIcon/AddonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/AddonList/AddonIcon/AddonIcon.tsx -------------------------------------------------------------------------------- /src/component/addons/AddonList/AddonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/AddonList/AddonList.tsx -------------------------------------------------------------------------------- /src/component/addons/CreateAddon/CreateAddon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/CreateAddon/CreateAddon.tsx -------------------------------------------------------------------------------- /src/component/addons/EditAddon/EditAddon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/addons/EditAddon/EditAddon.tsx -------------------------------------------------------------------------------- /src/component/admin/api/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/api/index.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ApiTokenDocs/ApiTokenDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ApiTokenDocs/ApiTokenDocs.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ApiTokenForm/ApiTokenForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ApiTokenForm/ApiTokenForm.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ApiTokenForm/useApiTokenForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ApiTokenForm/useApiTokenForm.ts -------------------------------------------------------------------------------- /src/component/admin/apiToken/ApiTokenPage/ApiTokenPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ApiTokenPage/ApiTokenPage.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ApiTokenTable/ApiTokenTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ApiTokenTable/ApiTokenTable.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ConfirmToken/ConfirmToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ConfirmToken/ConfirmToken.tsx -------------------------------------------------------------------------------- /src/component/admin/apiToken/ProjectsList/ProjectsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/apiToken/ProjectsList/ProjectsList.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/AuthSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/AuthSettings.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/AutoCreateForm/AutoCreateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/AutoCreateForm/AutoCreateForm.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/GoogleAuth/GoogleAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/GoogleAuth/GoogleAuth.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/OidcAuth/OidcAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/OidcAuth/OidcAuth.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/PasswordAuth/PasswordAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/PasswordAuth/PasswordAuth.tsx -------------------------------------------------------------------------------- /src/component/admin/auth/SamlAuth/SamlAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/auth/SamlAuth/SamlAuth.tsx -------------------------------------------------------------------------------- /src/component/admin/billing/Billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/billing/Billing.tsx -------------------------------------------------------------------------------- /src/component/admin/billing/BillingHistory/BillingHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/billing/BillingHistory/BillingHistory.tsx -------------------------------------------------------------------------------- /src/component/admin/billing/flags.ts: -------------------------------------------------------------------------------- 1 | export const STRIPE = false; 2 | -------------------------------------------------------------------------------- /src/component/admin/cors/CorsForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/cors/CorsForm.test.tsx -------------------------------------------------------------------------------- /src/component/admin/cors/CorsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/cors/CorsForm.tsx -------------------------------------------------------------------------------- /src/component/admin/cors/CorsHelpAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/cors/CorsHelpAlert.tsx -------------------------------------------------------------------------------- /src/component/admin/cors/CorsTokenAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/cors/CorsTokenAlert.tsx -------------------------------------------------------------------------------- /src/component/admin/cors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/cors/index.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/CreateGroup/CreateGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/CreateGroup/CreateGroup.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/EditGroup/EditGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/EditGroup/EditGroup.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/Group/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/Group/Group.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/GroupForm/GroupForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/GroupForm/GroupForm.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/GroupsAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/GroupsAdmin.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/GroupsList/GroupCard/GroupCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/GroupsList/GroupCard/GroupCard.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/GroupsList/GroupsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/GroupsList/GroupsList.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/RemoveGroup/RemoveGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/RemoveGroup/RemoveGroup.tsx -------------------------------------------------------------------------------- /src/component/admin/groups/hooks/useGroupForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/groups/hooks/useGroupForm.ts -------------------------------------------------------------------------------- /src/component/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/index.tsx -------------------------------------------------------------------------------- /src/component/admin/invoice/InvoiceAdminPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/invoice/InvoiceAdminPage.tsx -------------------------------------------------------------------------------- /src/component/admin/invoice/InvoiceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/invoice/InvoiceList.tsx -------------------------------------------------------------------------------- /src/component/admin/menu/AdminMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/menu/AdminMenu.tsx -------------------------------------------------------------------------------- /src/component/admin/projectRoles/hooks/useProjectRoleForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/projectRoles/hooks/useProjectRoleForm.ts -------------------------------------------------------------------------------- /src/component/admin/users/CreateUser/CreateUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/CreateUser/CreateUser.tsx -------------------------------------------------------------------------------- /src/component/admin/users/EditUser/EditUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/EditUser/EditUser.tsx -------------------------------------------------------------------------------- /src/component/admin/users/UserForm/UserForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/UserForm/UserForm.styles.ts -------------------------------------------------------------------------------- /src/component/admin/users/UserForm/UserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/UserForm/UserForm.tsx -------------------------------------------------------------------------------- /src/component/admin/users/UsersAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/UsersAdmin.tsx -------------------------------------------------------------------------------- /src/component/admin/users/UsersList/DeleteUser/DeleteUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/UsersList/DeleteUser/DeleteUser.tsx -------------------------------------------------------------------------------- /src/component/admin/users/UsersList/UsersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/UsersList/UsersList.tsx -------------------------------------------------------------------------------- /src/component/admin/users/hooks/useAddUserForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/hooks/useAddUserForm.ts -------------------------------------------------------------------------------- /src/component/admin/users/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/admin/users/util.ts -------------------------------------------------------------------------------- /src/component/application/ApplicationEdit/ApplicationEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/application/ApplicationEdit/ApplicationEdit.tsx -------------------------------------------------------------------------------- /src/component/application/ApplicationList/ApplicationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/application/ApplicationList/ApplicationList.tsx -------------------------------------------------------------------------------- /src/component/application/ApplicationView/ApplicationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/application/ApplicationView/ApplicationView.tsx -------------------------------------------------------------------------------- /src/component/application/iconNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/application/iconNames.ts -------------------------------------------------------------------------------- /src/component/archive/ArchiveTable/ArchiveTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/archive/ArchiveTable/ArchiveTable.tsx -------------------------------------------------------------------------------- /src/component/archive/FeaturesArchiveTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/archive/FeaturesArchiveTable.tsx -------------------------------------------------------------------------------- /src/component/archive/ProjectFeaturesArchiveTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/archive/ProjectFeaturesArchiveTable.tsx -------------------------------------------------------------------------------- /src/component/archive/RedirectArchive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/archive/RedirectArchive.tsx -------------------------------------------------------------------------------- /src/component/common/AdminAlert/AdminAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/AdminAlert/AdminAlert.tsx -------------------------------------------------------------------------------- /src/component/common/AnimateOnMount/AnimateOnMount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/AnimateOnMount/AnimateOnMount.tsx -------------------------------------------------------------------------------- /src/component/common/ApiError/ApiError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ApiError/ApiError.tsx -------------------------------------------------------------------------------- /src/component/common/AutocompleteBox/AutocompleteBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/AutocompleteBox/AutocompleteBox.tsx -------------------------------------------------------------------------------- /src/component/common/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/component/common/BreadcrumbNav/BreadcrumbNav.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/BreadcrumbNav/BreadcrumbNav.styles.ts -------------------------------------------------------------------------------- /src/component/common/BreadcrumbNav/BreadcrumbNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/BreadcrumbNav/BreadcrumbNav.tsx -------------------------------------------------------------------------------- /src/component/common/CheckmarkBadge/CheckMarkBadge.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/CheckmarkBadge/CheckMarkBadge.styles.ts -------------------------------------------------------------------------------- /src/component/common/CheckmarkBadge/CheckMarkBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/CheckmarkBadge/CheckMarkBadge.tsx -------------------------------------------------------------------------------- /src/component/common/Codebox/Codebox.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Codebox/Codebox.styles.ts -------------------------------------------------------------------------------- /src/component/common/Codebox/Codebox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Codebox/Codebox.tsx -------------------------------------------------------------------------------- /src/component/common/ConstraintAccordion/ConstraintIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ConstraintAccordion/ConstraintIcon.tsx -------------------------------------------------------------------------------- /src/component/common/CreateButton/CreateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/CreateButton/CreateButton.tsx -------------------------------------------------------------------------------- /src/component/common/Dialogue/Dialogue.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Dialogue/Dialogue.styles.ts -------------------------------------------------------------------------------- /src/component/common/Dialogue/Dialogue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Dialogue/Dialogue.tsx -------------------------------------------------------------------------------- /src/component/common/DividerText/DividerText.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/DividerText/DividerText.styles.ts -------------------------------------------------------------------------------- /src/component/common/DividerText/DividerText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/DividerText/DividerText.tsx -------------------------------------------------------------------------------- /src/component/common/DropdownMenu/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/DropdownMenu/DropdownMenu.tsx -------------------------------------------------------------------------------- /src/component/common/EnvironmentIcon/EnvironmentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/EnvironmentIcon/EnvironmentIcon.tsx -------------------------------------------------------------------------------- /src/component/common/FormTemplate/FormTemplate.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/FormTemplate/FormTemplate.styles.ts -------------------------------------------------------------------------------- /src/component/common/FormTemplate/FormTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/FormTemplate/FormTemplate.tsx -------------------------------------------------------------------------------- /src/component/common/GeneralSelect/GeneralSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/GeneralSelect/GeneralSelect.tsx -------------------------------------------------------------------------------- /src/component/common/Gradient/Gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Gradient/Gradient.tsx -------------------------------------------------------------------------------- /src/component/common/GridCol/GridCol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/GridCol/GridCol.tsx -------------------------------------------------------------------------------- /src/component/common/GridRow/GridRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/GridRow/GridRow.tsx -------------------------------------------------------------------------------- /src/component/common/GuidanceIndicator/GuidanceIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/GuidanceIndicator/GuidanceIndicator.tsx -------------------------------------------------------------------------------- /src/component/common/HelpIcon/HelpIcon.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/HelpIcon/HelpIcon.styles.ts -------------------------------------------------------------------------------- /src/component/common/HelpIcon/HelpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/HelpIcon/HelpIcon.tsx -------------------------------------------------------------------------------- /src/component/common/Highlighter/Highlighter.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Highlighter/Highlighter.styles.ts -------------------------------------------------------------------------------- /src/component/common/Highlighter/Highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Highlighter/Highlighter.tsx -------------------------------------------------------------------------------- /src/component/common/Input/Input.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Input/Input.styles.ts -------------------------------------------------------------------------------- /src/component/common/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Input/Input.tsx -------------------------------------------------------------------------------- /src/component/common/InputCaption/InputCaption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/InputCaption/InputCaption.tsx -------------------------------------------------------------------------------- /src/component/common/InputListField/InputListField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/InputListField/InputListField.tsx -------------------------------------------------------------------------------- /src/component/common/InstanceStatus/InstanceStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/InstanceStatus/InstanceStatus.tsx -------------------------------------------------------------------------------- /src/component/common/InstanceStatus/InstanceStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/InstanceStatus/InstanceStatusBar.tsx -------------------------------------------------------------------------------- /src/component/common/Loader/Loader.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Loader/Loader.styles.ts -------------------------------------------------------------------------------- /src/component/common/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/component/common/LoginRedirect/LoginRedirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/LoginRedirect/LoginRedirect.tsx -------------------------------------------------------------------------------- /src/component/common/MainHeader/MainHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/MainHeader/MainHeader.tsx -------------------------------------------------------------------------------- /src/component/common/NoItems/NoItems.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/NoItems/NoItems.styles.ts -------------------------------------------------------------------------------- /src/component/common/NoItems/NoItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/NoItems/NoItems.tsx -------------------------------------------------------------------------------- /src/component/common/NotFound/NotFound.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/NotFound/NotFound.styles.ts -------------------------------------------------------------------------------- /src/component/common/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /src/component/common/PageContent/PageContent.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PageContent/PageContent.styles.ts -------------------------------------------------------------------------------- /src/component/common/PageContent/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PageContent/PageContent.tsx -------------------------------------------------------------------------------- /src/component/common/PageHeader/PageHeader.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PageHeader/PageHeader.styles.ts -------------------------------------------------------------------------------- /src/component/common/PageHeader/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PageHeader/PageHeader.tsx -------------------------------------------------------------------------------- /src/component/common/PaginateUI/PaginateUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PaginateUI/PaginateUI.tsx -------------------------------------------------------------------------------- /src/component/common/PaginateUI/PaginationUI.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PaginateUI/PaginationUI.styles.ts -------------------------------------------------------------------------------- /src/component/common/PasswordField/PasswordField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PasswordField/PasswordField.tsx -------------------------------------------------------------------------------- /src/component/common/PercentageCircle/PercentageCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PercentageCircle/PercentageCircle.tsx -------------------------------------------------------------------------------- /src/component/common/PermissionButton/PermissionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PermissionButton/PermissionButton.tsx -------------------------------------------------------------------------------- /src/component/common/PermissionHOC/PermissionHOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PermissionHOC/PermissionHOC.tsx -------------------------------------------------------------------------------- /src/component/common/PermissionSwitch/PermissionSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/PermissionSwitch/PermissionSwitch.tsx -------------------------------------------------------------------------------- /src/component/common/Proclamation/Proclamation.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Proclamation/Proclamation.styles.ts -------------------------------------------------------------------------------- /src/component/common/Proclamation/Proclamation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Proclamation/Proclamation.tsx -------------------------------------------------------------------------------- /src/component/common/ProjectSelect/ProjectSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ProjectSelect/ProjectSelect.tsx -------------------------------------------------------------------------------- /src/component/common/ProtectedRoute/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ProtectedRoute/ProtectedRoute.tsx -------------------------------------------------------------------------------- /src/component/common/ResponsiveButton/ResponsiveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ResponsiveButton/ResponsiveButton.tsx -------------------------------------------------------------------------------- /src/component/common/ScrollTop/ScrollTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ScrollTop/ScrollTop.tsx -------------------------------------------------------------------------------- /src/component/common/Search/Search.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Search/Search.styles.ts -------------------------------------------------------------------------------- /src/component/common/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Search/Search.tsx -------------------------------------------------------------------------------- /src/component/common/SearchField/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SearchField/SearchField.tsx -------------------------------------------------------------------------------- /src/component/common/SearchField/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SearchField/styles.ts -------------------------------------------------------------------------------- /src/component/common/SegmentItem/SegmentItem.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SegmentItem/SegmentItem.styles.ts -------------------------------------------------------------------------------- /src/component/common/SegmentItem/SegmentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SegmentItem/SegmentItem.tsx -------------------------------------------------------------------------------- /src/component/common/SidebarModal/SidebarModal.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SidebarModal/SidebarModal.styles.ts -------------------------------------------------------------------------------- /src/component/common/SidebarModal/SidebarModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SidebarModal/SidebarModal.tsx -------------------------------------------------------------------------------- /src/component/common/SkipNav/SkipNavLink.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SkipNav/SkipNavLink.styles.ts -------------------------------------------------------------------------------- /src/component/common/SkipNav/SkipNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SkipNav/SkipNavLink.tsx -------------------------------------------------------------------------------- /src/component/common/SkipNav/SkipNavTarget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/SkipNav/SkipNavTarget.tsx -------------------------------------------------------------------------------- /src/component/common/StatusChip/StatusChip.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/StatusChip/StatusChip.styles.ts -------------------------------------------------------------------------------- /src/component/common/StatusChip/StatusChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/StatusChip/StatusChip.tsx -------------------------------------------------------------------------------- /src/component/common/StrategySeparator/StrategySeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/StrategySeparator/StrategySeparator.tsx -------------------------------------------------------------------------------- /src/component/common/StringTruncator/StringTruncator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/StringTruncator/StringTruncator.tsx -------------------------------------------------------------------------------- /src/component/common/TabNav/TabNav/TabNav.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/TabNav/TabNav/TabNav.styles.ts -------------------------------------------------------------------------------- /src/component/common/TabNav/TabNav/TabNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/TabNav/TabNav/TabNav.tsx -------------------------------------------------------------------------------- /src/component/common/TabNav/TabPanel/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/TabNav/TabPanel/TabPanel.tsx -------------------------------------------------------------------------------- /src/component/common/Table/Table/Table.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/Table/Table.styles.ts -------------------------------------------------------------------------------- /src/component/common/Table/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/Table/Table.tsx -------------------------------------------------------------------------------- /src/component/common/Table/TableCell/TableCell.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/TableCell/TableCell.styles.ts -------------------------------------------------------------------------------- /src/component/common/Table/TableCell/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/TableCell/TableCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/ActionCell/ActionCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/ActionCell/ActionCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/DateCell/DateCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/DateCell/DateCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/IconCell/IconCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/IconCell/IconCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/LinkCell/LinkCell.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/LinkCell/LinkCell.styles.ts -------------------------------------------------------------------------------- /src/component/common/Table/cells/LinkCell/LinkCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/LinkCell/LinkCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/TextCell/TextCell.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/TextCell/TextCell.styles.ts -------------------------------------------------------------------------------- /src/component/common/Table/cells/TextCell/TextCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/TextCell/TextCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/cells/TimeAgoCell/TimeAgoCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/cells/TimeAgoCell/TimeAgoCell.tsx -------------------------------------------------------------------------------- /src/component/common/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/Table/index.ts -------------------------------------------------------------------------------- /src/component/common/TagSelect/TagSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/TagSelect/TagSelect.tsx -------------------------------------------------------------------------------- /src/component/common/ThemeMode/ThemeMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ThemeMode/ThemeMode.tsx -------------------------------------------------------------------------------- /src/component/common/ToastRenderer/Toast/Toast.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ToastRenderer/Toast/Toast.styles.ts -------------------------------------------------------------------------------- /src/component/common/ToastRenderer/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ToastRenderer/Toast/Toast.tsx -------------------------------------------------------------------------------- /src/component/common/ToastRenderer/ToastRenderer.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ToastRenderer/ToastRenderer.styles.ts -------------------------------------------------------------------------------- /src/component/common/ToastRenderer/ToastRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/ToastRenderer/ToastRenderer.tsx -------------------------------------------------------------------------------- /src/component/common/TooltipResolver/TooltipResolver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/TooltipResolver/TooltipResolver.tsx -------------------------------------------------------------------------------- /src/component/common/UpdateButton/UpdateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/UpdateButton/UpdateButton.tsx -------------------------------------------------------------------------------- /src/component/common/UserAvatar/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/UserAvatar/UserAvatar.tsx -------------------------------------------------------------------------------- /src/component/common/common.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/common.module.scss -------------------------------------------------------------------------------- /src/component/common/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/flags.ts -------------------------------------------------------------------------------- /src/component/common/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/index.jsx -------------------------------------------------------------------------------- /src/component/common/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/select.tsx -------------------------------------------------------------------------------- /src/component/common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/common/util.ts -------------------------------------------------------------------------------- /src/component/context/ContectFormChip/ContextFormChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/ContectFormChip/ContextFormChip.tsx -------------------------------------------------------------------------------- /src/component/context/ContectFormChip/ContextFormChipList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/ContectFormChip/ContextFormChipList.tsx -------------------------------------------------------------------------------- /src/component/context/ContextForm/ContextForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/ContextForm/ContextForm.styles.ts -------------------------------------------------------------------------------- /src/component/context/ContextForm/ContextForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/ContextForm/ContextForm.tsx -------------------------------------------------------------------------------- /src/component/context/ContextList/ContextList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/ContextList/ContextList.tsx -------------------------------------------------------------------------------- /src/component/context/EditContext/EditContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/EditContext/EditContext.tsx -------------------------------------------------------------------------------- /src/component/context/hooks/useContextForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/context/hooks/useContextForm.ts -------------------------------------------------------------------------------- /src/component/environments/hooks/useEnvironmentForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/environments/hooks/useEnvironmentForm.ts -------------------------------------------------------------------------------- /src/component/events/EventCard/EventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/events/EventCard/EventCard.tsx -------------------------------------------------------------------------------- /src/component/events/EventDiff/EventDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/events/EventDiff/EventDiff.tsx -------------------------------------------------------------------------------- /src/component/events/EventJson/EventJson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/events/EventJson/EventJson.tsx -------------------------------------------------------------------------------- /src/component/events/EventLog/EventLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/events/EventLog/EventLog.tsx -------------------------------------------------------------------------------- /src/component/events/EventPage/EventPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/events/EventPage/EventPage.tsx -------------------------------------------------------------------------------- /src/component/feature/CopyFeature/CopyFeature.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/CopyFeature/CopyFeature.module.scss -------------------------------------------------------------------------------- /src/component/feature/CopyFeature/CopyFeature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/CopyFeature/CopyFeature.tsx -------------------------------------------------------------------------------- /src/component/feature/CreateFeature/CreateFeature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/CreateFeature/CreateFeature.tsx -------------------------------------------------------------------------------- /src/component/feature/EditFeature/EditFeature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/EditFeature/EditFeature.tsx -------------------------------------------------------------------------------- /src/component/feature/FeatureForm/FeatureForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureForm/FeatureForm.styles.ts -------------------------------------------------------------------------------- /src/component/feature/FeatureForm/FeatureForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureForm/FeatureForm.tsx -------------------------------------------------------------------------------- /src/component/feature/FeatureView/FeatureLog/FeatureLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureView/FeatureLog/FeatureLog.tsx -------------------------------------------------------------------------------- /src/component/feature/FeatureView/FeatureType/FeatureType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureView/FeatureType/FeatureType.tsx -------------------------------------------------------------------------------- /src/component/feature/FeatureView/FeatureView.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureView/FeatureView.styles.ts -------------------------------------------------------------------------------- /src/component/feature/FeatureView/FeatureView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/FeatureView/FeatureView.tsx -------------------------------------------------------------------------------- /src/component/feature/hooks/useFeatureForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feature/hooks/useFeatureForm.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCES.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCES.styles.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCES.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCES.tsx -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCESForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCESForm.styles.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCESForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCESForm.test.tsx -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCESForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCESForm.tsx -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCESScore.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCESScore.styles.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/FeedbackCESScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/FeedbackCESScore.tsx -------------------------------------------------------------------------------- /src/component/feedback/FeedbackCES/sendFeedbackInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackCES/sendFeedbackInput.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackNPS/FeedbackNPS.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackNPS/FeedbackNPS.styles.ts -------------------------------------------------------------------------------- /src/component/feedback/FeedbackNPS/FeedbackNPS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackNPS/FeedbackNPS.tsx -------------------------------------------------------------------------------- /src/component/feedback/FeedbackNPS/showNPSFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/feedback/FeedbackNPS/showNPSFeedback.ts -------------------------------------------------------------------------------- /src/component/layout/LayoutPicker/LayoutPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/layout/LayoutPicker/LayoutPicker.tsx -------------------------------------------------------------------------------- /src/component/layout/MainLayout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/layout/MainLayout/MainLayout.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/ApiDetails/ApiDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/ApiDetails/ApiDetails.test.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/ApiDetails/ApiDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/ApiDetails/ApiDetails.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/ApiDetails/apidetails.helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/ApiDetails/apidetails.helpers.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/Footer.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/Footer.styles.ts -------------------------------------------------------------------------------- /src/component/menu/Footer/Footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/Footer.test.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/FooterTitle.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/FooterTitle.styles.ts -------------------------------------------------------------------------------- /src/component/menu/Footer/FooterTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/FooterTitle.tsx -------------------------------------------------------------------------------- /src/component/menu/Footer/__snapshots__/Footer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Footer/__snapshots__/Footer.test.tsx.snap -------------------------------------------------------------------------------- /src/component/menu/Header/DrawerMenu/DrawerMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/DrawerMenu/DrawerMenu.module.scss -------------------------------------------------------------------------------- /src/component/menu/Header/DrawerMenu/DrawerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/DrawerMenu/DrawerMenu.tsx -------------------------------------------------------------------------------- /src/component/menu/Header/Header.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/Header.styles.ts -------------------------------------------------------------------------------- /src/component/menu/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/Header.tsx -------------------------------------------------------------------------------- /src/component/menu/Header/NavigationLink/NavigationLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/NavigationLink/NavigationLink.tsx -------------------------------------------------------------------------------- /src/component/menu/Header/NavigationMenu/NavigationMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/Header/NavigationMenu/NavigationMenu.tsx -------------------------------------------------------------------------------- /src/component/menu/__tests__/routes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/__tests__/routes.test.tsx -------------------------------------------------------------------------------- /src/component/menu/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/menu/routes.ts -------------------------------------------------------------------------------- /src/component/playground/Playground/LazyPlayground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/playground/Playground/LazyPlayground.tsx -------------------------------------------------------------------------------- /src/component/playground/Playground/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/playground/Playground/Playground.tsx -------------------------------------------------------------------------------- /src/component/playground/Playground/playground.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/playground/Playground/playground.utils.ts -------------------------------------------------------------------------------- /src/component/project/Project/CreateProject/CreateProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/CreateProject/CreateProject.tsx -------------------------------------------------------------------------------- /src/component/project/Project/EditProject/EditProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/EditProject/EditProject.tsx -------------------------------------------------------------------------------- /src/component/project/Project/Project.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/Project.styles.ts -------------------------------------------------------------------------------- /src/component/project/Project/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/Project.tsx -------------------------------------------------------------------------------- /src/component/project/Project/ProjectForm/ProjectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/ProjectForm/ProjectForm.tsx -------------------------------------------------------------------------------- /src/component/project/Project/ProjectHealth/ProjectHealth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/ProjectHealth/ProjectHealth.tsx -------------------------------------------------------------------------------- /src/component/project/Project/ProjectInfo/ProjectInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/ProjectInfo/ProjectInfo.tsx -------------------------------------------------------------------------------- /src/component/project/Project/ProjectOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/ProjectOverview.tsx -------------------------------------------------------------------------------- /src/component/project/Project/hooks/useProjectForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/Project/hooks/useProjectForm.ts -------------------------------------------------------------------------------- /src/component/project/ProjectAccess/ProjectAccess.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectAccess/ProjectAccess.styles.ts -------------------------------------------------------------------------------- /src/component/project/ProjectAccess/ProjectAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectAccess/ProjectAccess.tsx -------------------------------------------------------------------------------- /src/component/project/ProjectCard/ProjectCard.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectCard/ProjectCard.styles.ts -------------------------------------------------------------------------------- /src/component/project/ProjectCard/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectCard/ProjectCard.tsx -------------------------------------------------------------------------------- /src/component/project/ProjectEnvironment/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectEnvironment/helpers.ts -------------------------------------------------------------------------------- /src/component/project/ProjectList/ProjectList.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectList/ProjectList.styles.ts -------------------------------------------------------------------------------- /src/component/project/ProjectList/ProjectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectList/ProjectList.tsx -------------------------------------------------------------------------------- /src/component/project/ProjectList/loadingData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/project/ProjectList/loadingData.ts -------------------------------------------------------------------------------- /src/component/providers/AccessProvider/AccessProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/AccessProvider/AccessProvider.tsx -------------------------------------------------------------------------------- /src/component/providers/AccessProvider/AccessProviderMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/AccessProvider/AccessProviderMock.tsx -------------------------------------------------------------------------------- /src/component/providers/AccessProvider/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/AccessProvider/permissions.ts -------------------------------------------------------------------------------- /src/component/providers/SWRProvider/SWRProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/SWRProvider/SWRProvider.tsx -------------------------------------------------------------------------------- /src/component/providers/UIProvider/UIProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/UIProvider/UIProvider.tsx -------------------------------------------------------------------------------- /src/component/providers/UIProvider/UIProviderContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/providers/UIProvider/UIProviderContainer.tsx -------------------------------------------------------------------------------- /src/component/segments/CreateSegment/CreateSegment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/CreateSegment/CreateSegment.tsx -------------------------------------------------------------------------------- /src/component/segments/EditSegment/EditSegment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/EditSegment/EditSegment.tsx -------------------------------------------------------------------------------- /src/component/segments/SegmentDelete/SegmentDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentDelete/SegmentDelete.tsx -------------------------------------------------------------------------------- /src/component/segments/SegmentDocs/SegmentDocs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentDocs/SegmentDocs.tsx -------------------------------------------------------------------------------- /src/component/segments/SegmentEmpty/SegmentEmpty.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentEmpty/SegmentEmpty.styles.ts -------------------------------------------------------------------------------- /src/component/segments/SegmentEmpty/SegmentEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentEmpty/SegmentEmpty.tsx -------------------------------------------------------------------------------- /src/component/segments/SegmentForm/SegmentForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentForm/SegmentForm.styles.ts -------------------------------------------------------------------------------- /src/component/segments/SegmentForm/SegmentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentForm/SegmentForm.tsx -------------------------------------------------------------------------------- /src/component/segments/SegmentTable/SegmentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/SegmentTable/SegmentTable.tsx -------------------------------------------------------------------------------- /src/component/segments/hooks/useSegmentForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/hooks/useSegmentForm.ts -------------------------------------------------------------------------------- /src/component/segments/hooks/useSegmentValuesCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/segments/hooks/useSegmentValuesCount.ts -------------------------------------------------------------------------------- /src/component/splash/SplashPage/SplashPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/splash/SplashPage/SplashPage.tsx -------------------------------------------------------------------------------- /src/component/splash/splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/splash/splash.tsx -------------------------------------------------------------------------------- /src/component/strategies/CreateStrategy/CreateStrategy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/CreateStrategy/CreateStrategy.tsx -------------------------------------------------------------------------------- /src/component/strategies/EditStrategy/EditStrategy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/EditStrategy/EditStrategy.tsx -------------------------------------------------------------------------------- /src/component/strategies/StrategiesList/StrategiesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/StrategiesList/StrategiesList.tsx -------------------------------------------------------------------------------- /src/component/strategies/StrategyForm/StrategyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/StrategyForm/StrategyForm.tsx -------------------------------------------------------------------------------- /src/component/strategies/StrategyView/StrategyView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/StrategyView/StrategyView.tsx -------------------------------------------------------------------------------- /src/component/strategies/hooks/useStrategyForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/hooks/useStrategyForm.ts -------------------------------------------------------------------------------- /src/component/strategies/strategies.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/strategies/strategies.module.scss -------------------------------------------------------------------------------- /src/component/tags/CreateTagType/CreateTagType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/CreateTagType/CreateTagType.tsx -------------------------------------------------------------------------------- /src/component/tags/EditTagType/EditTagType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/EditTagType/EditTagType.tsx -------------------------------------------------------------------------------- /src/component/tags/TagTypeForm/TagTypeForm.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/TagTypeForm/TagTypeForm.styles.ts -------------------------------------------------------------------------------- /src/component/tags/TagTypeForm/TagTypeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/TagTypeForm/TagTypeForm.tsx -------------------------------------------------------------------------------- /src/component/tags/TagTypeForm/useTagTypeForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/TagTypeForm/useTagTypeForm.ts -------------------------------------------------------------------------------- /src/component/tags/TagTypeList/TagTypeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/tags/TagTypeList/TagTypeList.tsx -------------------------------------------------------------------------------- /src/component/user/Authentication/Authentication.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Authentication/Authentication.test.tsx -------------------------------------------------------------------------------- /src/component/user/Authentication/Authentication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Authentication/Authentication.tsx -------------------------------------------------------------------------------- /src/component/user/AuthenticationCustomComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/AuthenticationCustomComponent.tsx -------------------------------------------------------------------------------- /src/component/user/DemoAuth/DemoAuth.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/DemoAuth/DemoAuth.module.scss -------------------------------------------------------------------------------- /src/component/user/DemoAuth/DemoAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/DemoAuth/DemoAuth.tsx -------------------------------------------------------------------------------- /src/component/user/ForgottenPassword/ForgottenPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/ForgottenPassword/ForgottenPassword.tsx -------------------------------------------------------------------------------- /src/component/user/HostedAuth/HostedAuth.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/HostedAuth/HostedAuth.styles.ts -------------------------------------------------------------------------------- /src/component/user/HostedAuth/HostedAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/HostedAuth/HostedAuth.tsx -------------------------------------------------------------------------------- /src/component/user/Login/Login.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Login/Login.styles.ts -------------------------------------------------------------------------------- /src/component/user/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Login/Login.tsx -------------------------------------------------------------------------------- /src/component/user/Login/parseRedirectParam.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Login/parseRedirectParam.test.ts -------------------------------------------------------------------------------- /src/component/user/Login/parseRedirectParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/Login/parseRedirectParam.ts -------------------------------------------------------------------------------- /src/component/user/NewUser/NewUser.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/NewUser/NewUser.styles.ts -------------------------------------------------------------------------------- /src/component/user/NewUser/NewUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/NewUser/NewUser.tsx -------------------------------------------------------------------------------- /src/component/user/PasswordAuth/PasswordAuth.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/PasswordAuth/PasswordAuth.styles.ts -------------------------------------------------------------------------------- /src/component/user/PasswordAuth/PasswordAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/PasswordAuth/PasswordAuth.tsx -------------------------------------------------------------------------------- /src/component/user/ResetPassword/ResetPassword.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/ResetPassword/ResetPassword.styles.ts -------------------------------------------------------------------------------- /src/component/user/ResetPassword/ResetPassword.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/ResetPassword/ResetPassword.test.tsx -------------------------------------------------------------------------------- /src/component/user/ResetPassword/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/ResetPassword/ResetPassword.tsx -------------------------------------------------------------------------------- /src/component/user/SimpleAuth/SimpleAuth.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/SimpleAuth/SimpleAuth.module.scss -------------------------------------------------------------------------------- /src/component/user/SimpleAuth/SimpleAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/SimpleAuth/SimpleAuth.tsx -------------------------------------------------------------------------------- /src/component/user/StandaloneBanner/StandaloneBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/StandaloneBanner/StandaloneBanner.tsx -------------------------------------------------------------------------------- /src/component/user/UserProfile/EditProfile/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/UserProfile/EditProfile/EditProfile.tsx -------------------------------------------------------------------------------- /src/component/user/UserProfile/UserProfile.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/UserProfile/UserProfile.styles.ts -------------------------------------------------------------------------------- /src/component/user/UserProfile/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/UserProfile/UserProfile.tsx -------------------------------------------------------------------------------- /src/component/user/UserProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/UserProfile/index.tsx -------------------------------------------------------------------------------- /src/component/user/common/AuthOptions/AuthOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/common/AuthOptions/AuthOptions.tsx -------------------------------------------------------------------------------- /src/component/user/common/InvalidToken/InvalidToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/common/InvalidToken/InvalidToken.tsx -------------------------------------------------------------------------------- /src/component/user/user.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/component/user/user.module.scss -------------------------------------------------------------------------------- /src/constants/apiErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/apiErrors.ts -------------------------------------------------------------------------------- /src/constants/authTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/authTypes.ts -------------------------------------------------------------------------------- /src/constants/environmentTypes.ts: -------------------------------------------------------------------------------- 1 | export const PRODUCTION = 'production'; 2 | -------------------------------------------------------------------------------- /src/constants/featureToggleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/featureToggleTypes.ts -------------------------------------------------------------------------------- /src/constants/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/misc.ts -------------------------------------------------------------------------------- /src/constants/navigate.ts: -------------------------------------------------------------------------------- 1 | export const GO_BACK = -1; 2 | -------------------------------------------------------------------------------- /src/constants/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/operators.ts -------------------------------------------------------------------------------- /src/constants/statusCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/constants/statusCodes.ts -------------------------------------------------------------------------------- /src/contexts/AccessContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/contexts/AccessContext.ts -------------------------------------------------------------------------------- /src/contexts/UIContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/contexts/UIContext.ts -------------------------------------------------------------------------------- /src/hooks/__snapshots__/useFeaturesFilter.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/__snapshots__/useFeaturesFilter.test.ts.snap -------------------------------------------------------------------------------- /src/hooks/api/actions/useAddonsApi/useAddonsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useAddonsApi/useAddonsApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useAdminUsersApi/errorHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useAdminUsersApi/errorHandlers.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useAdminUsersApi/useAdminUsersApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useAdminUsersApi/useAdminUsersApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useApi/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useApi/useApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useApiTokensApi/useApiTokensApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useApiTokensApi/useApiTokensApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useAuthApi/useAuthApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useAuthApi/useAuthApi.tsx -------------------------------------------------------------------------------- /src/hooks/api/actions/useContextsApi/useContextsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useContextsApi/useContextsApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useFeatureApi/useFeatureApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useFeatureApi/useFeatureApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useGroupApi/useGroupApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useGroupApi/useGroupApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/usePlayground/usePlayground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/usePlayground/usePlayground.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useProjectApi/useProjectApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useProjectApi/useProjectApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useSegmentsApi/useSegmentsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useSegmentsApi/useSegmentsApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useSplashApi/useSplashApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useSplashApi/useSplashApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useStrategiesApi/useStrategiesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useStrategiesApi/useStrategiesApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useTagTypesApi/useTagTypesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useTagTypesApi/useTagTypesApi.ts -------------------------------------------------------------------------------- /src/hooks/api/actions/useUiConfigApi/useUiConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/actions/useUiConfigApi/useUiConfigApi.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/httpErrorResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/httpErrorResponseHandler.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAccess/useAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAccess/useAccess.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAddons/useAddons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAddons/useAddons.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useApiGetter/useApiGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useApiGetter/useApiGetter.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useApiTokens/useApiTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useApiTokens/useApiTokens.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useApplication/useApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useApplication/useApplication.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useApplications/useApplications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useApplications/useApplications.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthDetails.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthEndpoint.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthFeedback.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthPermissions.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthSplash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthSplash.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuth/useAuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuth/useAuthUser.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useAuthSettings/useAuthSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useAuthSettings/useAuthSettings.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useContext/useContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useContext/useContext.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useEnvironment/defaultEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useEnvironment/defaultEnvironment.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useEnvironment/useEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useEnvironment/useEnvironment.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useEnvironments/useEnvironments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useEnvironments/useEnvironments.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useEventSearch/useEventSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useEventSearch/useEventSearch.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useFeature/emptyFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useFeature/emptyFeature.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useFeature/useFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useFeature/useFeature.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useFeature/useFeatureImmutable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useFeature/useFeatureImmutable.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useFeatureTypes/useFeatureTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useFeatureTypes/useFeatureTypes.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useFeatures/useFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useFeatures/useFeatures.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useGroup/useGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useGroup/useGroup.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useGroups/useGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useGroups/useGroups.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useHealthReport/useHealthReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useHealthReport/useHealthReport.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useInvoices/useInvoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useInvoices/useInvoices.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProject/getProjectFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProject/getProjectFetcher.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProject/useProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProject/useProject.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProjectAccess/useProjectAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProjectAccess/useProjectAccess.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProjectRole/useProjectRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProjectRole/useProjectRole.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProjectRoles/useProjectRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProjectRoles/useProjectRoles.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useProjects/useProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useProjects/useProjects.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useResetPassword/useResetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useResetPassword/useResetPassword.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useSegment/useSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useSegment/useSegment.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useSegmentLimits/useSegmentLimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useSegmentLimits/useSegmentLimits.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useSegments/useSegments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useSegments/useSegments.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useStrategies/useStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useStrategies/useStrategies.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useStrategy/useStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useStrategy/useStrategy.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useTagType/useTagType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useTagType/useTagType.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useTagTypes/useTagTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useTagTypes/useTagTypes.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useTags/useTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useTags/useTags.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useUiConfig/defaultValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useUiConfig/defaultValue.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useUiConfig/useUiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useUiConfig/useUiConfig.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useUserInfo/useUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useUserInfo/useUserInfo.ts -------------------------------------------------------------------------------- /src/hooks/api/getters/useUsers/useUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/api/getters/useUsers/useUsers.ts -------------------------------------------------------------------------------- /src/hooks/useDragItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useDragItem.ts -------------------------------------------------------------------------------- /src/hooks/useEventSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useEventSettings.ts -------------------------------------------------------------------------------- /src/hooks/useFeaturesFilter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useFeaturesFilter.test.ts -------------------------------------------------------------------------------- /src/hooks/useFeaturesFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useFeaturesFilter.ts -------------------------------------------------------------------------------- /src/hooks/useFormErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useFormErrors.ts -------------------------------------------------------------------------------- /src/hooks/useGlobalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useGlobalState.ts -------------------------------------------------------------------------------- /src/hooks/useHiddenColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useHiddenColumns.ts -------------------------------------------------------------------------------- /src/hooks/useId.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useId.test.ts -------------------------------------------------------------------------------- /src/hooks/useId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useId.ts -------------------------------------------------------------------------------- /src/hooks/useIsAppleDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useIsAppleDevice.ts -------------------------------------------------------------------------------- /src/hooks/useKeyboardShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useKeyboardShortcut.ts -------------------------------------------------------------------------------- /src/hooks/useLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useLoading.ts -------------------------------------------------------------------------------- /src/hooks/useLocationSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useLocationSettings.ts -------------------------------------------------------------------------------- /src/hooks/useOnVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useOnVisible.ts -------------------------------------------------------------------------------- /src/hooks/useOptionalPathParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useOptionalPathParam.ts -------------------------------------------------------------------------------- /src/hooks/usePageTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/usePageTitle.ts -------------------------------------------------------------------------------- /src/hooks/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/usePagination.ts -------------------------------------------------------------------------------- /src/hooks/usePersistentGlobalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/usePersistentGlobalState.ts -------------------------------------------------------------------------------- /src/hooks/usePlausibleTracker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/usePlausibleTracker.test.ts -------------------------------------------------------------------------------- /src/hooks/usePlausibleTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/usePlausibleTracker.ts -------------------------------------------------------------------------------- /src/hooks/useQueryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useQueryParams.ts -------------------------------------------------------------------------------- /src/hooks/useQueryStringNumberState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useQueryStringNumberState.ts -------------------------------------------------------------------------------- /src/hooks/useQueryStringState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useQueryStringState.ts -------------------------------------------------------------------------------- /src/hooks/useRequiredPathParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useRequiredPathParam.ts -------------------------------------------------------------------------------- /src/hooks/useRequiredQueryParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useRequiredQueryParam.ts -------------------------------------------------------------------------------- /src/hooks/useSearch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useSearch.test.ts -------------------------------------------------------------------------------- /src/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useSearch.ts -------------------------------------------------------------------------------- /src/hooks/useTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useTabs.ts -------------------------------------------------------------------------------- /src/hooks/useThemeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useThemeMode.ts -------------------------------------------------------------------------------- /src/hooks/useToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useToast.tsx -------------------------------------------------------------------------------- /src/hooks/useUsersPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useUsersPlan.ts -------------------------------------------------------------------------------- /src/hooks/useVirtualizedRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useVirtualizedRange.ts -------------------------------------------------------------------------------- /src/hooks/useWeakMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/hooks/useWeakMap.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/addons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/addons.ts -------------------------------------------------------------------------------- /src/interfaces/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/application.ts -------------------------------------------------------------------------------- /src/interfaces/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/context.ts -------------------------------------------------------------------------------- /src/interfaces/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/environments.ts -------------------------------------------------------------------------------- /src/interfaces/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/event.ts -------------------------------------------------------------------------------- /src/interfaces/featureToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/featureToggle.ts -------------------------------------------------------------------------------- /src/interfaces/featureTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/featureTypes.ts -------------------------------------------------------------------------------- /src/interfaces/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/group.ts -------------------------------------------------------------------------------- /src/interfaces/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/instance.ts -------------------------------------------------------------------------------- /src/interfaces/invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/invoice.ts -------------------------------------------------------------------------------- /src/interfaces/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/project.ts -------------------------------------------------------------------------------- /src/interfaces/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/role.ts -------------------------------------------------------------------------------- /src/interfaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/route.ts -------------------------------------------------------------------------------- /src/interfaces/segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/segment.ts -------------------------------------------------------------------------------- /src/interfaces/strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/strategy.ts -------------------------------------------------------------------------------- /src/interfaces/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/tags.ts -------------------------------------------------------------------------------- /src/interfaces/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/toast.ts -------------------------------------------------------------------------------- /src/interfaces/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/token.ts -------------------------------------------------------------------------------- /src/interfaces/uiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/uiConfig.ts -------------------------------------------------------------------------------- /src/interfaces/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/interfaces/user.ts -------------------------------------------------------------------------------- /src/openapi/apis/AdminApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/apis/AdminApi.ts -------------------------------------------------------------------------------- /src/openapi/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/apis/index.ts -------------------------------------------------------------------------------- /src/openapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/index.ts -------------------------------------------------------------------------------- /src/openapi/models/CloneFeatureSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/CloneFeatureSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/ConstraintSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/ConstraintSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/CreateFeatureSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/CreateFeatureSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/CreateStrategySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/CreateStrategySchema.ts -------------------------------------------------------------------------------- /src/openapi/models/FeatureEnvironmentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/FeatureEnvironmentSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/FeatureSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/FeatureSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/FeatureStrategySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/FeatureStrategySchema.ts -------------------------------------------------------------------------------- /src/openapi/models/FeaturesSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/FeaturesSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/OverrideSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/OverrideSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/PatchOperationSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/PatchOperationSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/StrategySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/StrategySchema.ts -------------------------------------------------------------------------------- /src/openapi/models/TagSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/TagSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/TagsResponseSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/TagsResponseSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/UpdateFeatureSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/UpdateFeatureSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/UpdateStrategySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/UpdateStrategySchema.ts -------------------------------------------------------------------------------- /src/openapi/models/VariantSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/VariantSchema.ts -------------------------------------------------------------------------------- /src/openapi/models/VariantSchemaPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/VariantSchemaPayload.ts -------------------------------------------------------------------------------- /src/openapi/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/models/index.ts -------------------------------------------------------------------------------- /src/openapi/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/openapi/runtime.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/themes/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/themes/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/app.css -------------------------------------------------------------------------------- /src/themes/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/colors.ts -------------------------------------------------------------------------------- /src/themes/dark-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/dark-theme.ts -------------------------------------------------------------------------------- /src/themes/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/theme.ts -------------------------------------------------------------------------------- /src/themes/themeStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/themeStyles.ts -------------------------------------------------------------------------------- /src/themes/themeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/themes/themeTypes.ts -------------------------------------------------------------------------------- /src/types/global-fetch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/types/global-fetch.d.ts -------------------------------------------------------------------------------- /src/types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/types/react-table-config.d.ts -------------------------------------------------------------------------------- /src/utils/apiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/apiUtils.ts -------------------------------------------------------------------------------- /src/utils/arraysHaveSameItems.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/arraysHaveSameItems.test.ts -------------------------------------------------------------------------------- /src/utils/arraysHaveSameItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/arraysHaveSameItems.ts -------------------------------------------------------------------------------- /src/utils/calculatePercentage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/calculatePercentage.ts -------------------------------------------------------------------------------- /src/utils/cleanConstraint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/cleanConstraint.test.ts -------------------------------------------------------------------------------- /src/utils/cleanConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/cleanConstraint.ts -------------------------------------------------------------------------------- /src/utils/createFeatureStrategy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/createFeatureStrategy.test.ts -------------------------------------------------------------------------------- /src/utils/createFeatureStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/createFeatureStrategy.ts -------------------------------------------------------------------------------- /src/utils/createLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/createLocalStorage.ts -------------------------------------------------------------------------------- /src/utils/env.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/env.test.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/formatAccessText.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatAccessText.test.ts -------------------------------------------------------------------------------- /src/utils/formatAccessText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatAccessText.ts -------------------------------------------------------------------------------- /src/utils/formatConstraintValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatConstraintValue.ts -------------------------------------------------------------------------------- /src/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatDate.ts -------------------------------------------------------------------------------- /src/utils/formatPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatPath.test.ts -------------------------------------------------------------------------------- /src/utils/formatPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatPath.ts -------------------------------------------------------------------------------- /src/utils/formatUnknownError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatUnknownError.test.ts -------------------------------------------------------------------------------- /src/utils/formatUnknownError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/formatUnknownError.ts -------------------------------------------------------------------------------- /src/utils/getFeatureMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/getFeatureMetrics.ts -------------------------------------------------------------------------------- /src/utils/getFeatureTypeIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/getFeatureTypeIcons.ts -------------------------------------------------------------------------------- /src/utils/instanceTrial.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/instanceTrial.test.ts -------------------------------------------------------------------------------- /src/utils/instanceTrial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/instanceTrial.ts -------------------------------------------------------------------------------- /src/utils/nonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/nonEmptyArray.ts -------------------------------------------------------------------------------- /src/utils/objectId.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/objectId.test.ts -------------------------------------------------------------------------------- /src/utils/objectId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/objectId.ts -------------------------------------------------------------------------------- /src/utils/oneOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/oneOf.ts -------------------------------------------------------------------------------- /src/utils/openapiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/openapiClient.ts -------------------------------------------------------------------------------- /src/utils/operatorsForContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/operatorsForContext.ts -------------------------------------------------------------------------------- /src/utils/paginate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/paginate.test.ts -------------------------------------------------------------------------------- /src/utils/paginate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/paginate.ts -------------------------------------------------------------------------------- /src/utils/parseParameter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/parseParameter.test.ts -------------------------------------------------------------------------------- /src/utils/parseParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/parseParameter.ts -------------------------------------------------------------------------------- /src/utils/projectFilterGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/projectFilterGenerator.ts -------------------------------------------------------------------------------- /src/utils/removeEmptyStringFields.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/removeEmptyStringFields.test.ts -------------------------------------------------------------------------------- /src/utils/removeEmptyStringFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/removeEmptyStringFields.ts -------------------------------------------------------------------------------- /src/utils/routePathHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/routePathHelpers.ts -------------------------------------------------------------------------------- /src/utils/sortStrategyParameters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/sortStrategyParameters.test.ts -------------------------------------------------------------------------------- /src/utils/sortStrategyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/sortStrategyParameters.ts -------------------------------------------------------------------------------- /src/utils/sortTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/sortTypes.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/strategyNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/strategyNames.tsx -------------------------------------------------------------------------------- /src/utils/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/testIds.ts -------------------------------------------------------------------------------- /src/utils/testRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/testRenderer.tsx -------------------------------------------------------------------------------- /src/utils/testServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/testServer.ts -------------------------------------------------------------------------------- /src/utils/validateParameterValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/validateParameterValue.test.ts -------------------------------------------------------------------------------- /src/utils/validateParameterValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/utils/validateParameterValue.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------