├── .browserslistrc ├── .cypress-cucumber-preprocessorrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml ├── pull_request_template.md ├── stale.yml └── workflows │ ├── comment-and-close.yml │ ├── dhis2-deploy-netlify.yml │ ├── dhis2-preview-pr.yml │ ├── dhis2-verify-commits.yml │ ├── dhis2-verify-lib.yml │ └── generate-and-upload-bom.yml ├── .gitignore ├── .hooks ├── .gitignore ├── commit-msg └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .tx └── config ├── API.md ├── ARCHITECTURE.md ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _redirects ├── collections ├── README.md ├── forms │ ├── .eslintrc.js │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── hi_IN.po │ │ ├── id.po │ │ ├── km.po │ │ ├── ko_KR.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── si.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── CheckboxFieldFF │ │ │ ├── CheckboxFieldFF.e2e.stories.js │ │ │ ├── CheckboxFieldFF.js │ │ │ ├── CheckboxFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_toggle_a_boolean.feature │ │ │ │ ├── can_toggle_a_boolean │ │ │ │ └── index.js │ │ │ │ ├── can_toggle_a_value.feature │ │ │ │ ├── can_toggle_a_value │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── FieldGroupFF │ │ │ ├── FieldGroupFF.js │ │ │ └── FieldGroupFF.prod.stories.js │ │ ├── FileInputFieldFF │ │ │ ├── FileInputFieldFF.e2e.stories.js │ │ │ ├── FileInputFieldFF.js │ │ │ ├── FileInputFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── accepts_file.feature │ │ │ │ ├── accepts_file │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── InputFieldFF │ │ │ ├── InputFieldFF.e2e.stories.js │ │ │ ├── InputFieldFF.js │ │ │ ├── InputFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_set_a_value.feature │ │ │ │ ├── can_set_a_value │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── MultiSelectFieldFF │ │ │ ├── MultiSelectFieldFF.e2e.stories.js │ │ │ ├── MultiSelectFieldFF.js │ │ │ ├── MultiSelectFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_set_a_value.feature │ │ │ │ ├── can_set_a_value │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── RadioFieldFF │ │ │ ├── RadioFieldFF.e2e.stories.js │ │ │ ├── RadioFieldFF.js │ │ │ ├── RadioFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_set_a_value.feature │ │ │ │ ├── can_set_a_value │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── SimpleSingleSelectFieldFF │ │ │ ├── SimpleSingleSelectFieldFF.js │ │ │ ├── SimpleSingleSelectFieldFF.prod.stories.js │ │ │ └── SimpleSingleSelectFieldFF.test.js │ │ ├── SingleSelectFieldFF │ │ │ ├── SingleSelectFieldFF.e2e.stories.js │ │ │ ├── SingleSelectFieldFF.js │ │ │ ├── SingleSelectFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_set_a_value.feature │ │ │ │ ├── can_set_a_value │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── SwitchFieldFF │ │ │ ├── SwitchFieldFF.e2e.stories.js │ │ │ ├── SwitchFieldFF.js │ │ │ ├── SwitchFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_toggle_a_boolean.feature │ │ │ │ ├── can_toggle_a_boolean │ │ │ │ └── index.js │ │ │ │ ├── can_toggle_a_value.feature │ │ │ │ ├── can_toggle_a_value │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── TextAreaFieldFF │ │ │ ├── TextAreaFieldFF.e2e.stories.js │ │ │ ├── TextAreaFieldFF.js │ │ │ ├── TextAreaFieldFF.prod.stories.js │ │ │ └── features │ │ │ │ ├── can_set_a_value.feature │ │ │ │ ├── can_set_a_value │ │ │ │ └── index.js │ │ │ │ ├── displays_error.feature │ │ │ │ └── displays_error │ │ │ │ └── index.js │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ │ ├── formDecorator.js │ │ ├── index.js │ │ ├── shared │ │ │ ├── helpers.js │ │ │ ├── helpers │ │ │ │ ├── createBlurHandler.js │ │ │ │ ├── createChangeHandler.js │ │ │ │ ├── createFocusHandler.js │ │ │ │ ├── createSelectChangeHandler.js │ │ │ │ ├── createToggleChangeHandler.js │ │ │ │ ├── getValidationText.js │ │ │ │ ├── hasError.js │ │ │ │ ├── isLoading.js │ │ │ │ └── isValid.js │ │ │ └── propTypes.js │ │ ├── transformers │ │ │ ├── arrayWithIdObjects.js │ │ │ └── index.js │ │ └── validators │ │ │ ├── __tests__ │ │ │ ├── alphaNumeric.test.js │ │ │ ├── boolean.test.js │ │ │ ├── composeValidators.test.js │ │ │ ├── createCharacterLengthRange.test.js │ │ │ ├── createEqualTo.test.js │ │ │ ├── createMaxCharacterLength.test.js │ │ │ ├── createMaxNumber.test.js │ │ │ ├── createMinCharacterLength.test.js │ │ │ ├── createMinNumber.test.js │ │ │ ├── createNumberRange.test.js │ │ │ ├── createPattern.test.js │ │ │ ├── dhis2Password.test.js │ │ │ ├── dhis2Username.test.js │ │ │ ├── email.test.js │ │ │ ├── hasValue.test.js │ │ │ ├── integer.test.js │ │ │ ├── internationalPhoneNumber.test.js │ │ │ ├── number.test.js │ │ │ ├── string.test.js │ │ │ └── url.test.js │ │ │ ├── alphaNumeric.js │ │ │ ├── boolean.js │ │ │ ├── composeValidators.js │ │ │ ├── createCharacterLengthRange.js │ │ │ ├── createEqualTo.js │ │ │ ├── createMaxCharacterLength.js │ │ │ ├── createMaxNumber.js │ │ │ ├── createMinCharacterLength.js │ │ │ ├── createMinNumber.js │ │ │ ├── createNumberRange.js │ │ │ ├── createPattern.js │ │ │ ├── dhis2Password.js │ │ │ ├── dhis2Username.js │ │ │ ├── email.js │ │ │ ├── hasValue.js │ │ │ ├── helpers │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── integer.js │ │ │ ├── internationalPhoneNumber.js │ │ │ ├── number.js │ │ │ ├── string.js │ │ │ ├── test-helpers │ │ │ └── index.js │ │ │ └── url.js │ └── types │ │ ├── CheckboxFieldFF │ │ └── CheckboxFieldFF.d.ts │ │ ├── FieldGroupFF │ │ └── FieldGroupFF.d.ts │ │ ├── FileInputFieldFF │ │ └── FileInputFieldFF.d.ts │ │ ├── InputFieldFF │ │ └── InputFieldFF.d.ts │ │ ├── MultiSelectFieldFF │ │ └── MutliSelectFieldFF.d.ts │ │ ├── RadioFieldFF │ │ └── RadioFieldFF.d.ts │ │ ├── SingleSelectFieldFF │ │ └── SingleSelectFieldFF.d.ts │ │ ├── SwitchFieldFF │ │ └── SwitchFieldFF.d.ts │ │ ├── TextAreaFieldFF │ │ └── TextAreaFieldFF.d.ts │ │ ├── index.d.ts │ │ ├── transformers │ │ └── index.d.ts │ │ └── validators │ │ └── index.d.ts └── ui │ ├── .eslintrc.js │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ └── index.js │ └── types │ └── index.d.ts ├── components ├── README.md ├── alert │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── alert-bar │ │ │ ├── action.js │ │ │ ├── actions.js │ │ │ ├── alert-bar.e2e.stories.js │ │ │ ├── alert-bar.js │ │ │ ├── alert-bar.prod.stories.js │ │ │ ├── alert-bar.styles.js │ │ │ ├── dismiss.js │ │ │ ├── features │ │ │ │ ├── api.feature │ │ │ │ ├── api │ │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ │ └── index.js │ │ │ │ ├── hide.feature │ │ │ │ └── hide │ │ │ │ │ └── index.js │ │ │ ├── icon.js │ │ │ ├── index.js │ │ │ └── message.js │ │ ├── alert-stack │ │ │ ├── alert-stack.e2e.stories.js │ │ │ ├── alert-stack.js │ │ │ ├── alert-stack.prod.stories.js │ │ │ ├── features │ │ │ │ ├── render_children.feature │ │ │ │ └── render_children │ │ │ │ │ └── alertbars.js │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── box │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── box.e2e.stories.js │ │ ├── box.js │ │ ├── box.prod.stories.js │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_multiple_props.feature │ │ │ └── accepts_multiple_props │ │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── button │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ └── en.pot │ ├── package.json │ ├── src │ │ ├── button-strip │ │ │ ├── button-strip.e2e.stories.js │ │ │ ├── button-strip.js │ │ │ ├── button-strip.prod.stories.js │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── button │ │ │ ├── __tests__ │ │ │ │ └── Button.test.js │ │ │ ├── button.e2e.stories.js │ │ │ ├── button.js │ │ │ ├── button.prod.stories.js │ │ │ ├── button.styles.js │ │ │ ├── features │ │ │ │ ├── can_be_blurred.feature │ │ │ │ ├── can_be_blurred │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_clicked.feature │ │ │ │ ├── can_be_clicked │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_focused.feature │ │ │ │ └── can_be_focused │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── dropdown-button │ │ │ ├── __tests__ │ │ │ │ └── dropdown-button.test.js │ │ │ ├── dropdown-button.e2e.stories.js │ │ │ ├── dropdown-button.js │ │ │ ├── dropdown-button.prod.stories.js │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ ├── accepts_children │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_component.feature │ │ │ │ ├── accepts_component │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_icon.feature │ │ │ │ ├── accepts_icon │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_initial_focus.feature │ │ │ │ ├── accepts_initial_focus │ │ │ │ │ └── index.js │ │ │ │ ├── button_is_clickable.feature │ │ │ │ ├── button_is_clickable │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_disabled.feature │ │ │ │ ├── can_be_disabled │ │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ │ └── index.js │ │ │ │ ├── opens_a_dropdown.feature │ │ │ │ └── opens_a_dropdown │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── index.js │ │ └── split-button │ │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_icon.feature │ │ │ ├── accepts_icon │ │ │ │ └── index.js │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── arrow_opens_menu.feature │ │ │ ├── arrow_opens_menu │ │ │ │ └── index.js │ │ │ ├── button_is_clickable.feature │ │ │ ├── button_is_clickable │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ └── common │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── split-button.e2e.stories.js │ │ │ ├── split-button.js │ │ │ ├── split-button.prod.stories.js │ │ │ └── split-button.test.js │ └── types │ │ └── index.d.ts ├── calendar │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ └── en.pot │ ├── package.json │ ├── src │ │ ├── __e2e__ │ │ │ └── calendar-input.e2e.stories.js │ │ ├── calendar-input │ │ │ ├── __tests__ │ │ │ │ └── calendar-input.test.js │ │ │ └── calendar-input.js │ │ ├── calendar │ │ │ ├── calendar-container.js │ │ │ ├── calendar-table-cell.js │ │ │ ├── calendar-table-days-header.js │ │ │ ├── calendar-table.js │ │ │ ├── calendar.js │ │ │ └── navigation-container.js │ │ ├── features │ │ │ ├── supports_calendar_clear_button.feature │ │ │ ├── supports_calendar_clear_button │ │ │ │ └── supports_calendar_clear_button.js │ │ │ ├── supports_ethiopic_calendar.feature │ │ │ ├── supports_ethiopic_calendar │ │ │ │ └── supports_ethiopic_calendar.js │ │ │ ├── supports_gregorian_calendar.feature │ │ │ ├── supports_gregorian_calendar │ │ │ │ └── supports_gregorian_calendar.js │ │ │ ├── supports_islamic_calendar.feature │ │ │ ├── supports_islamic_calendar │ │ │ │ └── supports_islamic_calendar.js │ │ │ ├── supports_nepali_calendar.feature │ │ │ └── supports_nepali_calendar │ │ │ │ └── supports_nepali_calendar.js │ │ ├── index.js │ │ └── stories │ │ │ ├── calendar-input.prod.stories.js │ │ │ ├── calendar-story-wrapper.js │ │ │ └── calendar.prod.stories.js │ └── types │ │ └── index.d.ts ├── card │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── card.e2e.stories.js │ │ ├── card.js │ │ ├── card.prod.stories.js │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ └── accepts_children │ │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── center │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── center.js │ │ ├── center.prod.stories.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── checkbox │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── checkbox-field │ │ │ ├── __tests__ │ │ │ │ └── checkbox-field.test.js │ │ │ ├── checkbox-field.e2e.stories.js │ │ │ ├── checkbox-field.js │ │ │ ├── checkbox-field.prod.stories.js │ │ │ ├── features │ │ │ │ ├── accepts_help_text.feature │ │ │ │ ├── accepts_help_text │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_validation_text.feature │ │ │ │ ├── accepts_validation_text │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_required.feature │ │ │ │ └── can_be_required │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── checkbox │ │ │ ├── __tests__ │ │ │ │ └── checkbox.test.js │ │ │ ├── checkbox-icon.js │ │ │ ├── checkbox.e2e.stories.js │ │ │ ├── checkbox.js │ │ │ ├── checkbox.prod.stories.js │ │ │ ├── features │ │ │ │ ├── accepts_initial_focus.feature │ │ │ │ ├── accepts_initial_focus │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_blurred.feature │ │ │ │ ├── can_be_blurred │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_changed.feature │ │ │ │ ├── can_be_changed │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_disabled.feature │ │ │ │ ├── can_be_disabled │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_focused.feature │ │ │ │ ├── can_be_focused │ │ │ │ │ └── index.js │ │ │ │ ├── has_indeterminate_prop.feature │ │ │ │ └── has_indeterminate_prop │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── chip │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── chip.e2e.stories.js │ │ ├── chip.js │ │ ├── chip.prod.stories.js │ │ ├── content.js │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_icon.feature │ │ │ ├── accepts_icon │ │ │ │ └── index.js │ │ │ ├── is_clickable.feature │ │ │ ├── is_clickable │ │ │ │ └── index.js │ │ │ ├── is_removable.feature │ │ │ └── is_removable │ │ │ │ └── index.js │ │ ├── icon.js │ │ ├── index.js │ │ └── remove.js │ └── types │ │ └── index.d.ts ├── cover │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── cover.e2e.stories.js │ │ ├── cover.js │ │ ├── cover.prod.stories.js │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── click_behavior.feature │ │ │ └── click_behavior │ │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── css │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── css-reset │ │ │ ├── css-reset.js │ │ │ ├── css-reset.prod.stories.js │ │ │ └── index.js │ │ ├── css-variables │ │ │ ├── css-variables.e2e.stories.js │ │ │ ├── css-variables.js │ │ │ ├── css-variables.prod.stories.js │ │ │ ├── features │ │ │ │ ├── sets_variables.feature │ │ │ │ └── sets_variables │ │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── divider │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── divider.js │ │ ├── divider.prod.stories.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── field │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── field-group │ │ │ ├── features │ │ │ │ ├── can_be_required.feature │ │ │ │ └── can_be_required │ │ │ │ │ └── index.js │ │ │ ├── field-group.e2e.stories.js │ │ │ ├── field-group.js │ │ │ ├── field-group.prod.stories.js │ │ │ └── index.js │ │ ├── field-set │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ ├── field-set.e2e.stories.js │ │ │ ├── field-set.js │ │ │ ├── field-set.prod.stories.js │ │ │ └── index.js │ │ ├── field │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ ├── field.e2e.stories.js │ │ │ ├── field.js │ │ │ ├── field.prod.stories.js │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── file-input │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── hi_IN.po │ │ ├── id.po │ │ ├── km.po │ │ ├── ko_KR.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── si.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── file-input-field-with-list │ │ │ ├── __tests__ │ │ │ │ └── file-input-field-with-list.test.js │ │ │ ├── features │ │ │ │ ├── common │ │ │ │ │ └── index.js │ │ │ │ ├── deduplicates_the_file_list.feature │ │ │ │ ├── deduplicates_the_file_list │ │ │ │ │ └── index.js │ │ │ │ ├── disables_button_when_full.feature │ │ │ │ ├── disables_button_when_full │ │ │ │ │ └── index.js │ │ │ │ ├── displays_files_in_a_list.feature │ │ │ │ ├── displays_files_in_a_list │ │ │ │ │ └── index.js │ │ │ │ ├── files_can_be_removed.feature │ │ │ │ ├── files_can_be_removed │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_button_label.feature │ │ │ │ ├── has_default_button_label │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_placeholder.feature │ │ │ │ ├── has_default_placeholder │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_remove_text.feature │ │ │ │ └── has_default_remove_text │ │ │ │ │ └── index.js │ │ │ ├── file-input-field-with-list.e2e.stories.js │ │ │ ├── file-input-field-with-list.js │ │ │ ├── file-input-field-with-list.prod.stories.js │ │ │ ├── file-list-item-with-remove.js │ │ │ └── index.js │ │ ├── file-input-field │ │ │ ├── __tests__ │ │ │ │ └── file-input-field.test.js │ │ │ ├── features │ │ │ │ ├── can_be_required.feature │ │ │ │ ├── can_be_required │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_button_label.feature │ │ │ │ ├── has_default_button_label │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_placeholder.feature │ │ │ │ └── has_default_placeholder │ │ │ │ │ └── index.js │ │ │ ├── file-input-field.e2e.stories.js │ │ │ ├── file-input-field.js │ │ │ ├── file-input-field.prod.stories.js │ │ │ └── index.js │ │ ├── file-input │ │ │ ├── __tests__ │ │ │ │ └── file-input.test.js │ │ │ ├── features │ │ │ │ ├── accepts_multiple_files.feature │ │ │ │ ├── accepts_multiple_files │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_blurred.feature │ │ │ │ ├── can_be_blurred │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_changed.feature │ │ │ │ ├── can_be_changed │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_focused.feature │ │ │ │ ├── can_be_focused │ │ │ │ │ └── index.js │ │ │ │ └── common │ │ │ │ │ └── index.js │ │ │ ├── file-input.e2e.stories.js │ │ │ ├── file-input.js │ │ │ ├── file-input.prod.stories.js │ │ │ └── index.js │ │ ├── file-list │ │ │ ├── features │ │ │ │ ├── accepts_cancel_text.feature │ │ │ │ ├── accepts_cancel_text │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_remove_text.feature │ │ │ │ ├── accepts_remove_text │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_removed.feature │ │ │ │ ├── can_be_removed │ │ │ │ │ └── index.js │ │ │ │ ├── file-list-item-accepts_children.feature │ │ │ │ ├── file-list-item-accepts_children │ │ │ │ │ └── index.js │ │ │ │ ├── file-list-placeholder-accepts_children.feature │ │ │ │ ├── file-list-placeholder-accepts_children │ │ │ │ │ └── index.js │ │ │ │ ├── loading_can_be_cancelled.feature │ │ │ │ └── loading_can_be_cancelled │ │ │ │ │ └── index.js │ │ │ ├── file-list-item.e2e.stories.js │ │ │ ├── file-list-item.js │ │ │ ├── file-list-placeholder.e2e.stories.js │ │ │ ├── file-list-placeholder.js │ │ │ ├── file-list.e2e.stories.js │ │ │ ├── file-list.js │ │ │ └── index.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── header-bar │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── bn.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── hi_IN.po │ │ ├── id.po │ │ ├── km.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── or.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── si.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── __e2e__ │ │ │ ├── header-bar.e2e.stories.js │ │ │ └── stories │ │ │ │ ├── common.js │ │ │ │ ├── custom-application-title.js │ │ │ │ ├── default.js │ │ │ │ ├── me-with-avatar.js │ │ │ │ ├── modulesWithSpecialCharacters.js │ │ │ │ ├── online-status-message.js │ │ │ │ ├── pwa-enabled.js │ │ │ │ ├── user-has-all-authority.js │ │ │ │ ├── user-has-no-authorities.js │ │ │ │ ├── user-has-web-interpretation-and-messaging-authority.js │ │ │ │ ├── user-has-web-interpretation-authority.js │ │ │ │ ├── user-has-web-messaging-authority.js │ │ │ │ ├── with-debug-info-edge-cases.js │ │ │ │ ├── with-special-app-name-character.js │ │ │ │ ├── with-update-available-notification.js │ │ │ │ ├── zero-unread-interpretations.js │ │ │ │ └── zero-unread-messages.js │ │ ├── apps.js │ │ ├── debug-info │ │ │ ├── debug-info-menu-item.js │ │ │ ├── debug-info-modal.js │ │ │ ├── debug-info-table.js │ │ │ └── use-debug-info.js │ │ ├── features │ │ │ ├── common │ │ │ │ └── index.js │ │ │ ├── the_headerbar_can_display_online_status.feature │ │ │ ├── the_headerbar_can_display_online_status │ │ │ │ └── the_headerbar_displays_online_status.js │ │ │ ├── the_headerbar_conditionally_renders_notification_icons.feature │ │ │ ├── the_headerbar_conditionally_renders_notification_icons │ │ │ │ └── the_headerbar_conditionally_renders_notification_icons.js │ │ │ ├── the_headerbar_contains_a_menu_to_all_apps.feature │ │ │ ├── the_headerbar_contains_a_menu_to_all_apps │ │ │ │ ├── common.js │ │ │ │ ├── the_app_menu_closes_when_the_user_clicks_outside.js │ │ │ │ ├── the_headerbar_contains_a_menu_icon.js │ │ │ │ └── the_user_will_be_offered_a_menu_with_5_apps.js │ │ │ ├── the_headerbar_contains_a_profile_menu.feature │ │ │ ├── the_headerbar_contains_a_profile_menu │ │ │ │ ├── common.js │ │ │ │ ├── the_headerbar_shows_a_text_icon_if_the_user_does_not_have_an_avatar.js │ │ │ │ ├── the_headerbar_shows_an_image_icon_if_the_user_has_an_avatar.js │ │ │ │ ├── the_menu_is_closed_by_default.js │ │ │ │ ├── the_menu_opens.js │ │ │ │ ├── the_profile_menu_closes_when_the_user_clicks_outside.js │ │ │ │ ├── the_user_can_edit_his_profile.js │ │ │ │ ├── the_user_can_go_to_his_account.js │ │ │ │ ├── the_user_can_go_to_the_about_dhis2_page.js │ │ │ │ ├── the_user_can_go_to_the_help_page.js │ │ │ │ ├── the_user_can_go_to_the_settings.js │ │ │ │ ├── the_user_can_log_out.js │ │ │ │ └── the_user_name_and_email_are_displayed.js │ │ │ ├── the_headerbar_displays_a_link_to_interpretations_and_an_unread_count.feature │ │ │ ├── the_headerbar_displays_a_link_to_interpretations_and_an_unread_count │ │ │ │ ├── the_headerbar_displays_a_link_to_the_interpretations.js │ │ │ │ ├── there_are_no_unread_interpretations.js │ │ │ │ └── there_are_some_unread_interpretations.js │ │ │ ├── the_headerbar_displays_a_link_to_messages_and_an_unread_count.feature │ │ │ ├── the_headerbar_displays_a_link_to_messages_and_an_unread_count │ │ │ │ ├── the_headerbar_displays_a_link_to_the_messages.js │ │ │ │ ├── there_are_no_unread_messages.js │ │ │ │ └── there_are_some_unread_messages.js │ │ │ ├── the_headerbar_should_contain_a_logo_that_links_to_the_homepage.feature │ │ │ ├── the_headerbar_should_contain_a_logo_that_links_to_the_homepage │ │ │ │ └── headerbar_contains_logo.js │ │ │ ├── the_headerbar_should_display_app_update_notification.feature │ │ │ ├── the_headerbar_should_display_app_update_notification │ │ │ │ └── index.js │ │ │ ├── the_headerbar_should_display_debug_version_infos.feature │ │ │ ├── the_headerbar_should_display_debug_version_infos │ │ │ │ └── index.js │ │ │ ├── the_headerbar_should_display_the_title_provided_by_the_backend_and_the_app.feature │ │ │ ├── the_headerbar_should_display_the_title_provided_by_the_backend_and_the_app │ │ │ │ └── the_headerbar_displays_the_custom_title.js │ │ │ ├── the_search_should_escape_regexp_character.feature │ │ │ └── the_search_should_escape_regexp_character │ │ │ │ ├── common.js │ │ │ │ ├── the_modules_do_not_contain_items_with_special_chars.js │ │ │ │ └── the_user_searches_for_an_app_with_a_regex_character.js │ │ ├── header-bar-context.js │ │ ├── header-bar.js │ │ ├── header-bar.prod.stories.js │ │ ├── index.js │ │ ├── join-path.js │ │ ├── logo-image.js │ │ ├── logo.js │ │ ├── notification-icon.js │ │ ├── notifications.js │ │ ├── online-status.js │ │ ├── online-status.styles.js │ │ ├── profile-menu │ │ │ ├── index.js │ │ │ ├── profile-header.js │ │ │ ├── profile-menu.js │ │ │ └── update-notification.js │ │ ├── profile.js │ │ ├── profile │ │ │ ├── use-on-doc-click.js │ │ │ └── use-on-doc-click.test.js │ │ └── title.js │ └── types │ │ └── index.d.ts ├── help │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ └── accepts_children │ │ │ │ └── index.js │ │ ├── help.e2e.stories.js │ │ ├── help.js │ │ ├── help.prod.stories.js │ │ └── index.js │ └── types │ │ └── index.d.ts ├── input │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── input-field │ │ │ ├── __tests__ │ │ │ │ └── input-field.test.js │ │ │ ├── features │ │ │ │ ├── can_be_required.feature │ │ │ │ └── can_be_required │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── input-field.e2e.stories.js │ │ │ ├── input-field.js │ │ │ └── input-field.prod.stories.js │ │ └── input │ │ │ ├── __tests__ │ │ │ └── input.test.js │ │ │ ├── features │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── can_be_blurred.feature │ │ │ ├── can_be_blurred │ │ │ │ └── index.js │ │ │ ├── can_be_changed.feature │ │ │ ├── can_be_changed │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ ├── can_be_focused.feature │ │ │ └── can_be_focused │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── input.e2e.stories.js │ │ │ ├── input.js │ │ │ ├── input.prod.stories.js │ │ │ └── inputTypes.js │ └── types │ │ └── index.d.ts ├── intersection-detector │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── Visibility_notification.feature │ │ │ └── Visibility_notification │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── intersection-detector.e2e.stories.js │ │ ├── intersection-detector.js │ │ └── intersection-detector.prod.stories.js │ └── types │ │ └── index.d.ts ├── label │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── can_be_required.feature │ │ │ └── can_be_required │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── label.e2e.stories.js │ │ └── label.js │ └── types │ │ └── index.d.ts ├── layer │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── click_behavior.feature │ │ │ ├── click_behavior │ │ │ │ └── index.js │ │ │ ├── stacking.feature │ │ │ └── stacking │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── layer-context.js │ │ ├── layer.e2e.stories.js │ │ ├── layer.js │ │ ├── layer.prod.stories.js │ │ └── use-layer-context.js │ └── types │ │ └── index.d.ts ├── legend │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── can_be_required.feature │ │ │ └── can_be_required │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── legend.e2e.stories.js │ │ ├── legend.js │ │ └── legend.prod.stories.js │ └── types │ │ └── index.d.ts ├── loader │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── circular-loader │ │ │ ├── __tests__ │ │ │ │ └── circular-loader.test.js │ │ │ ├── circular-loader.js │ │ │ ├── circular-loader.prod.stories.js │ │ │ └── index.js │ │ ├── index.js │ │ └── linear-loader │ │ │ ├── __tests__ │ │ │ └── linear-loader.test.js │ │ │ ├── index.js │ │ │ ├── linear-loader.js │ │ │ └── linear-loader.prod.stories.js │ └── types │ │ └── index.d.ts ├── logo │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── logo-icon-svg.js │ │ ├── logo-svg.js │ │ ├── logo.js │ │ └── logo.prod.stories.js │ └── types │ │ └── index.d.ts ├── menu │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── flyout-menu │ │ │ ├── __tests__ │ │ │ │ └── flyout-menu.test.js │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ ├── accepts_children │ │ │ │ │ └── index.js │ │ │ │ ├── position.feature │ │ │ │ ├── position │ │ │ │ │ └── index.js │ │ │ │ ├── toggles_submenus.feature │ │ │ │ └── toggles_submenus │ │ │ │ │ └── index.js │ │ │ ├── flyout-menu.e2e.stories.js │ │ │ ├── flyout-menu.js │ │ │ ├── flyout-menu.prod.stories.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── menu-divider │ │ │ ├── index.js │ │ │ ├── menu-divider.js │ │ │ └── menu-divider.prod.stories.js │ │ ├── menu-item │ │ │ ├── __tests__ │ │ │ │ └── menu-item.test.js │ │ │ ├── features │ │ │ │ ├── accepts_href.feature │ │ │ │ ├── accepts_href │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_icon.feature │ │ │ │ ├── accepts_icon │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_suffix.feature │ │ │ │ ├── accepts_suffix │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_target.feature │ │ │ │ ├── accepts_target │ │ │ │ │ └── index.js │ │ │ │ ├── is_clickable.feature │ │ │ │ └── is_clickable │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── menu-item.e2e.stories.js │ │ │ ├── menu-item.js │ │ │ ├── menu-item.prod.stories.js │ │ │ └── menu-item.styles.js │ │ ├── menu-section-header │ │ │ ├── features │ │ │ │ ├── accepts_label.feature │ │ │ │ └── accepts_label │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── menu-section-header.e2e.stories.js │ │ │ ├── menu-section-header.js │ │ │ └── menu-section-header.prod.stories.js │ │ └── menu │ │ │ ├── __tests__ │ │ │ └── menu.test.js │ │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ └── accepts_children │ │ │ │ └── index.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── menu.e2e.stories.js │ │ │ ├── menu.js │ │ │ ├── menu.prod.stories.js │ │ │ └── use-menu.js │ └── types │ │ └── index.d.ts ├── modal │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ └── en.pot │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── modal-actions │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── modal-actions.e2e.stories.js │ │ │ └── modal-actions.js │ │ ├── modal-content │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── modal-content.e2e.stories.js │ │ │ └── modal-content.js │ │ ├── modal-title │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ └── accepts_children │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── modal-title.e2e.stories.js │ │ │ └── modal-title.js │ │ └── modal │ │ │ ├── close-button.js │ │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── can_be_closed.feature │ │ │ ├── can_be_closed │ │ │ │ └── index.js │ │ │ ├── does_not_unmount_children_when_hiding.feature │ │ │ └── does_not_unmount_children_when_hiding │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── modal.e2e.stories.js │ │ │ ├── modal.js │ │ │ ├── modal.prod.stories.js │ │ │ └── modal.test.js │ └── types │ │ └── index.d.ts ├── node │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_component.feature │ │ │ ├── accepts_component │ │ │ │ └── index.js │ │ │ ├── accepts_icon.feature │ │ │ ├── accepts_icon │ │ │ │ └── index.js │ │ │ ├── can_be_closed.feature │ │ │ ├── can_be_closed │ │ │ │ └── index.js │ │ │ ├── can_be_opened.feature │ │ │ └── can_be_opened │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── leaves.js │ │ ├── node.e2e.stories.js │ │ ├── node.js │ │ ├── node.prod.stories.js │ │ ├── spacer.js │ │ └── toggle.js │ └── types │ │ └── index.d.ts ├── notice-box │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── notice-box-icon.test.js │ │ │ ├── notice-box-message.test.js │ │ │ └── notice-box-title.test.js │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_title.feature │ │ │ └── accepts_title │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── notice-box-content.js │ │ ├── notice-box-icon.js │ │ ├── notice-box-message.js │ │ ├── notice-box-title.js │ │ ├── notice-box.e2e.stories.js │ │ ├── notice-box.js │ │ └── notice-box.prod.stories.js │ └── types │ │ └── index.d.ts ├── organisation-unit-tree │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── cs.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── lo.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── uk.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── __e2e__ │ │ │ ├── children_as_child_nodes.js │ │ │ ├── common.js │ │ │ ├── controlled_expanded.js │ │ │ ├── displaying_loading_error.js │ │ │ ├── expanded.js │ │ │ ├── force_reload.js │ │ │ ├── get-organisation-unit-data.js │ │ │ ├── highlight.js │ │ │ ├── loading_state.js │ │ │ ├── multi_selection.js │ │ │ ├── namespace.js │ │ │ ├── no_selection.js │ │ │ ├── path_based_filtering.js │ │ │ ├── single_selection.js │ │ │ ├── sub_unit_as_root.js │ │ │ └── tree_api.js │ │ ├── __stories__ │ │ │ ├── collapsed.js │ │ │ ├── custom-expanded-imperative-open.js │ │ │ ├── custom-node-label.js │ │ │ ├── development-stories.js │ │ │ ├── expanded.js │ │ │ ├── filtered-root.js │ │ │ ├── filtered.js │ │ │ ├── force-reload-all.js │ │ │ ├── force-reload-one-unit.js │ │ │ ├── highlighted.js │ │ │ ├── indeterminate.js │ │ │ ├── loading-error-grandchild.js │ │ │ ├── loading.js │ │ │ ├── multiple-roots.js │ │ │ ├── no-selection.js │ │ │ ├── replace-roots.js │ │ │ ├── root-error.js │ │ │ ├── root-loading.js │ │ │ ├── rtl.js │ │ │ ├── selected-multiple.js │ │ │ ├── shared.js │ │ │ └── single-selection.js │ │ ├── features │ │ │ ├── children_as_child_nodes.feature │ │ │ ├── children_as_child_nodes │ │ │ │ └── index.js │ │ │ ├── controlled_expanded.feature │ │ │ ├── controlled_expanded │ │ │ │ └── index.js │ │ │ ├── displaying_loading_error.feature │ │ │ ├── displaying_loading_error │ │ │ │ └── index.js │ │ │ ├── expanded.feature │ │ │ ├── expanded │ │ │ │ └── index.js │ │ │ ├── force_reload.feature │ │ │ ├── force_reload │ │ │ │ └── index.js │ │ │ ├── highlight.feature │ │ │ ├── highlight │ │ │ │ └── index.js │ │ │ ├── loading_state.feature │ │ │ ├── loading_state │ │ │ │ └── index.js │ │ │ ├── multi_selection.feature │ │ │ ├── multi_selection │ │ │ │ └── index.js │ │ │ ├── no_selection.feature │ │ │ ├── no_selection │ │ │ │ └── index.js │ │ │ ├── path_based_filtering.feature │ │ │ ├── path_based_filtering │ │ │ │ └── index.js │ │ │ ├── single_selection.feature │ │ │ ├── single_selection │ │ │ │ └── index.js │ │ │ ├── sub_unit_as_root.feature │ │ │ ├── sub_unit_as_root │ │ │ │ └── index.js │ │ │ ├── tree_api.feature │ │ │ └── tree_api │ │ │ │ └── index.js │ │ ├── get-all-expanded-paths │ │ │ ├── get-all-expanded-paths.js │ │ │ ├── get-all-expanded-paths.test.js │ │ │ └── index.js │ │ ├── helpers │ │ │ ├── index.js │ │ │ ├── is-path-included.js │ │ │ ├── left-trim-to-root-id.js │ │ │ └── sort-node-children-alphabetically.js │ │ ├── index.js │ │ ├── organisation-unit-node │ │ │ ├── compute-child-nodes.js │ │ │ ├── compute-child-nodes.test.js │ │ │ ├── error-message.js │ │ │ ├── has-descendant-selected-paths.js │ │ │ ├── has-descendant-selected-paths.test.js │ │ │ ├── index.js │ │ │ ├── label │ │ │ │ ├── disabled-selection-label.js │ │ │ │ ├── icon-empty.js │ │ │ │ ├── icon-folder-closed.js │ │ │ │ ├── icon-folder-open.js │ │ │ │ ├── icon-single.js │ │ │ │ ├── icon.js │ │ │ │ ├── iconized-checkbox.js │ │ │ │ ├── index.js │ │ │ │ ├── label-container.js │ │ │ │ ├── label.js │ │ │ │ └── single-selection-label.js │ │ │ ├── loading-spinner.js │ │ │ ├── organisation-unit-node-children.js │ │ │ ├── organisation-unit-node.js │ │ │ ├── use-open-state.js │ │ │ ├── use-open-state.test.js │ │ │ ├── use-org-children.js │ │ │ ├── use-org-children.test.js │ │ │ └── use-org-data │ │ │ │ ├── index.js │ │ │ │ ├── use-org-data.js │ │ │ │ └── use-org-data.test.js │ │ ├── organisation-unit-tree.e2e.stories.js │ │ ├── organisation-unit-tree.prod.stories.js │ │ ├── organisation-unit-tree │ │ │ ├── default-render-node-label │ │ │ │ ├── default-render-node-label.js │ │ │ │ └── index.js │ │ │ ├── filter-root-ids.js │ │ │ ├── index.js │ │ │ ├── organisation-unit-tree-root-error.js │ │ │ ├── organisation-unit-tree-root-loading.js │ │ │ ├── organisation-unit-tree.js │ │ │ ├── organisation-unit-tree.test.js │ │ │ ├── use-expanded │ │ │ │ ├── create-expand-handlers.js │ │ │ │ ├── create-expand-handlers.test.js │ │ │ │ ├── index.js │ │ │ │ ├── use-expanded.js │ │ │ │ └── use-expanded.test.js │ │ │ ├── use-force-reload.js │ │ │ ├── use-force-reload.test.js │ │ │ └── use-root-org-data │ │ │ │ ├── index.js │ │ │ │ ├── patch-missing-display-name.js │ │ │ │ ├── patch-missing-display-name.test.js │ │ │ │ ├── use-root-org-data.js │ │ │ │ └── use-root-org-unit.test.js │ │ └── prop-types.js │ └── types │ │ └── index.d.ts ├── pagination │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── bn.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── hi_IN.po │ │ ├── id.po │ │ ├── km.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── __fixtures__ │ │ │ └── index.js │ │ ├── __tests__ │ │ │ ├── get-item-range.test.js │ │ │ ├── page-controls.test.js │ │ │ ├── page-select.test.js │ │ │ ├── page-size-select.test.js │ │ │ ├── page-summary.test.js │ │ │ └── pagination.test.js │ │ ├── get-default-page-summary-text.js │ │ ├── get-item-range.js │ │ ├── index.js │ │ ├── page-controls.js │ │ ├── page-select.js │ │ ├── page-size-select.js │ │ ├── page-summary.js │ │ ├── pagination.js │ │ └── pagination.prod.stories.js │ └── types │ │ └── index.d.ts ├── popover │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── arrow.js │ │ ├── features │ │ │ ├── arrow_position.feature │ │ │ ├── arrow_position │ │ │ │ └── index.js │ │ │ ├── clicking_outside.feature │ │ │ ├── clicking_outside │ │ │ │ └── index.js │ │ │ ├── conditional_arrow.feature │ │ │ ├── conditional_arrow │ │ │ │ └── index.js │ │ │ ├── position.feature │ │ │ └── position │ │ │ │ └── index.js │ │ ├── get-arrow-position.js │ │ ├── index.js │ │ ├── modifiers.js │ │ ├── popover.e2e.stories.js │ │ ├── popover.js │ │ └── popover.prod.stories.js │ └── types │ │ └── index.d.ts ├── popper │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_different_reference_types.feature │ │ │ ├── accepts_different_reference_types │ │ │ │ └── index.js │ │ │ ├── positions.feature │ │ │ └── positions │ │ │ │ └── index.js │ │ ├── get-reference-element.js │ │ ├── index.js │ │ ├── modifiers.js │ │ ├── popper.e2e.stories.js │ │ ├── popper.js │ │ └── popper.prod.stories.js │ └── types │ │ └── index.d.ts ├── portal │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── portal.js │ └── types │ │ └── index.d.ts ├── radio │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── radio.test.js │ │ ├── features │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── accepts_label.feature │ │ │ ├── accepts_label │ │ │ │ └── index.js │ │ │ ├── can_be_blurred.feature │ │ │ ├── can_be_blurred │ │ │ │ └── index.js │ │ │ ├── can_be_changed.feature │ │ │ ├── can_be_changed │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ ├── can_be_focused.feature │ │ │ └── can_be_focused │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── radio-icons.js │ │ ├── radio.e2e.stories.js │ │ ├── radio.js │ │ └── radio.prod.stories.js │ └── types │ │ └── index.d.ts ├── required │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── required.js │ └── types │ │ └── index.d.ts ├── segmented-control │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── segmented-control.js │ │ └── segmented-control.prod.stories.js │ └── types │ │ └── index.d.ts ├── select │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── id.po │ │ ├── km.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── multi-select-field │ │ │ ├── __tests__ │ │ │ │ └── multi-select-field.test.js │ │ │ ├── features │ │ │ │ ├── accepts_help_text.feature │ │ │ │ ├── accepts_help_text │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_validation_text.feature │ │ │ │ ├── accepts_validation_text │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_required.feature │ │ │ │ ├── can_be_required │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_clear_text.feature │ │ │ │ ├── has_default_clear_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_empty_text.feature │ │ │ │ ├── has_default_empty_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_filter_nomatch_text.feature │ │ │ │ ├── has_default_filter_nomatch_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_filter_placeholder.feature │ │ │ │ ├── has_default_filter_placeholder │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_loading_text.feature │ │ │ │ └── has_default_loading_text │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── multi-select-field.e2e.stories.js │ │ │ ├── multi-select-field.js │ │ │ └── multi-select-field.prod.stories.js │ │ ├── multi-select-option │ │ │ ├── index.js │ │ │ └── multi-select-option.js │ │ ├── multi-select │ │ │ ├── __tests__ │ │ │ │ ├── multi-select.test.js │ │ │ │ └── selection-list.test.js │ │ │ ├── features │ │ │ │ ├── accepts_blur_cb.feature │ │ │ │ ├── accepts_blur_cb │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_focus_cb.feature │ │ │ │ ├── accepts_focus_cb │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_initial_focus.feature │ │ │ │ ├── accepts_initial_focus │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_loading.feature │ │ │ │ ├── accepts_loading │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_max_height.feature │ │ │ │ ├── accepts_max_height │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_placeholder.feature │ │ │ │ ├── accepts_placeholder │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_prefix.feature │ │ │ │ ├── accepts_prefix │ │ │ │ │ └── index.js │ │ │ │ ├── allows_invalid_options.feature │ │ │ │ ├── allows_invalid_options │ │ │ │ │ └── index.js │ │ │ │ ├── allows_selecting.feature │ │ │ │ ├── allows_selecting │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_cleared.feature │ │ │ │ ├── can_be_cleared │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_disabled.feature │ │ │ │ ├── can_be_disabled │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_empty.feature │ │ │ │ ├── can_be_empty │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_filtered.feature │ │ │ │ ├── can_be_filtered │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_opened_and_closed.feature │ │ │ │ ├── can_be_opened_and_closed │ │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ │ └── index.js │ │ │ │ ├── duplicate_option_values.feature │ │ │ │ ├── duplicate_option_values │ │ │ │ │ └── index.js │ │ │ │ ├── menu_width_matches_input.feature │ │ │ │ ├── menu_width_matches_input │ │ │ │ │ └── index.js │ │ │ │ ├── position.feature │ │ │ │ ├── position │ │ │ │ │ └── index.js │ │ │ │ ├── shows_selections.feature │ │ │ │ └── shows_selections │ │ │ │ │ └── index.js │ │ │ ├── filterable-menu.js │ │ │ ├── index.js │ │ │ ├── input.js │ │ │ ├── menu.js │ │ │ ├── multi-select.e2e.stories.js │ │ │ ├── multi-select.js │ │ │ ├── multi-select.prod.stories.js │ │ │ └── selection-list.js │ │ ├── select │ │ │ ├── __tests__ │ │ │ │ └── select.test.js │ │ │ ├── debounce │ │ │ │ ├── debounce.js │ │ │ │ └── debounce.spec.js │ │ │ ├── empty.js │ │ │ ├── filter-input.js │ │ │ ├── filterable-menu.js │ │ │ ├── index.js │ │ │ ├── input-clear-button.js │ │ │ ├── input-placeholder.js │ │ │ ├── input-prefix.js │ │ │ ├── input-wrapper.js │ │ │ ├── loading.js │ │ │ ├── menu-wrapper.js │ │ │ ├── no-match.js │ │ │ ├── option-helpers.js │ │ │ └── select.js │ │ ├── simple-single-select-field │ │ │ ├── index.js │ │ │ ├── simple-single-select-field.js │ │ │ ├── simple-single-select-field.prod.stories.js │ │ │ └── simple-single-select-field.test.js │ │ ├── simple-single-select │ │ │ ├── __stories__ │ │ │ │ ├── DefaultPosition.js │ │ │ │ ├── Dense.js │ │ │ │ ├── Empty.js │ │ │ │ ├── EmptyWithEmptyNode.js │ │ │ │ ├── EmptyWithEmptyText.js │ │ │ │ ├── FlippedPosition.js │ │ │ │ ├── InfiniteLoading.js │ │ │ │ ├── Loading.js │ │ │ │ ├── ShiftedIntoView.js │ │ │ │ ├── WithClearButton.js │ │ │ │ ├── WithCustomLowMaxHeight.js │ │ │ │ ├── WithCustomOptions.js │ │ │ │ ├── WithDisabledOption.js │ │ │ │ ├── WithFilterField.js │ │ │ │ ├── WithInitialFocus.js │ │ │ │ ├── WithManyOptions.js │ │ │ │ ├── WithMultipleSelectsAndScrollableParent.js │ │ │ │ ├── WithNoMatchText.js │ │ │ │ ├── WithOnBlur.js │ │ │ │ ├── WithOnFocus.js │ │ │ │ ├── WithOptionsAndDisabled.js │ │ │ │ ├── WithOptionsAndLoading.js │ │ │ │ ├── WithOptionsAndLoadingText.js │ │ │ │ ├── WithPlaceholder.js │ │ │ │ ├── WithPlaceholderAndSelection.js │ │ │ │ ├── WithPrefix.js │ │ │ │ ├── WithPrefixAndSelection.js │ │ │ │ ├── WithRTL.js │ │ │ │ ├── WithScrollingParent.js │ │ │ │ ├── WithSelection.js │ │ │ │ ├── WithSelectionAndDisabled.js │ │ │ │ ├── WithServerSideFilteringDemo.js │ │ │ │ ├── WithSimpleFilteringDemo.js │ │ │ │ ├── WithoutOptionsAndLoading.js │ │ │ │ ├── WithoutSelection.js │ │ │ │ ├── options.js │ │ │ │ └── simple-single-select-server-side-filtering │ │ │ │ │ ├── CustomDataProvider.js │ │ │ │ │ ├── dataElements.js │ │ │ │ │ └── index.js │ │ │ ├── features │ │ │ │ ├── keyboard-interactions.test.e2e.js │ │ │ │ └── menu-positioning.test.e2e.js │ │ │ ├── index.js │ │ │ ├── is-option-hidden.js │ │ │ ├── menu │ │ │ │ ├── empty.js │ │ │ │ ├── filter.js │ │ │ │ ├── index.js │ │ │ │ ├── loading.js │ │ │ │ ├── menu.js │ │ │ │ ├── no-match.js │ │ │ │ ├── option.js │ │ │ │ └── options-list.js │ │ │ ├── selected-value │ │ │ │ ├── clear-button.js │ │ │ │ ├── container.js │ │ │ │ ├── index.js │ │ │ │ ├── placeholder.js │ │ │ │ ├── prefix.js │ │ │ │ └── selected-value.js │ │ │ ├── shared-prop-types.js │ │ │ ├── simple-single-select.e2e.stories.js │ │ │ ├── simple-single-select.js │ │ │ ├── simple-single-select.prod.stories.js │ │ │ ├── simple-single-select.test.js │ │ │ └── use-handle-key-press │ │ │ │ ├── index.js │ │ │ │ ├── use-focus-option.js │ │ │ │ ├── use-handle-key-press-on-combobox.js │ │ │ │ ├── use-handle-key-press-on-filter-input.js │ │ │ │ ├── use-handle-typing.js │ │ │ │ ├── use-highlight-first-option-on-previous-page.js │ │ │ │ ├── use-highlight-first-visible-option.js │ │ │ │ ├── use-highlight-last-option-on-next-page.js │ │ │ │ ├── use-highlight-last-visible-option.js │ │ │ │ ├── use-page-down.js │ │ │ │ ├── use-page-up.js │ │ │ │ └── utils.js │ │ ├── single-select-field │ │ │ ├── __tests__ │ │ │ │ └── single-select-field.test.js │ │ │ ├── features │ │ │ │ ├── accepts_help_text.feature │ │ │ │ ├── accepts_help_text │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_label.feature │ │ │ │ ├── accepts_label │ │ │ │ │ └── index.js │ │ │ │ ├── accepts_validation_text.feature │ │ │ │ ├── accepts_validation_text │ │ │ │ │ └── index.js │ │ │ │ ├── can_be_required.feature │ │ │ │ ├── can_be_required │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_clear_text.feature │ │ │ │ ├── has_default_clear_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_empty_text.feature │ │ │ │ ├── has_default_empty_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_filter_nomatch_text.feature │ │ │ │ ├── has_default_filter_nomatch_text │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_filter_placeholder.feature │ │ │ │ ├── has_default_filter_placeholder │ │ │ │ │ └── index.js │ │ │ │ ├── has_default_loading_text.feature │ │ │ │ └── has_default_loading_text │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── single-select-field.e2e.stories.js │ │ │ ├── single-select-field.js │ │ │ └── single-select-field.prod.stories.js │ │ ├── single-select-option │ │ │ ├── index.js │ │ │ └── single-select-option.js │ │ └── single-select │ │ │ ├── __tests__ │ │ │ ├── selection.test.js │ │ │ └── single-select.test.js │ │ │ ├── features │ │ │ ├── accepts_blur_cb.feature │ │ │ ├── accepts_blur_cb │ │ │ │ └── index.js │ │ │ ├── accepts_focus_cb.feature │ │ │ ├── accepts_focus_cb │ │ │ │ └── index.js │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── accepts_loading.feature │ │ │ ├── accepts_loading │ │ │ │ └── index.js │ │ │ ├── accepts_max_height.feature │ │ │ ├── accepts_max_height │ │ │ │ └── index.js │ │ │ ├── accepts_placeholder.feature │ │ │ ├── accepts_placeholder │ │ │ │ └── index.js │ │ │ ├── accepts_prefix.feature │ │ │ ├── accepts_prefix │ │ │ │ └── index.js │ │ │ ├── allows_invalid_options.feature │ │ │ ├── allows_invalid_options │ │ │ │ └── index.js │ │ │ ├── allows_selecting.feature │ │ │ ├── allows_selecting │ │ │ │ └── index.js │ │ │ ├── can_be_cleared.feature │ │ │ ├── can_be_cleared │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ ├── can_be_empty.feature │ │ │ ├── can_be_empty │ │ │ │ └── index.js │ │ │ ├── can_be_filtered.feature │ │ │ ├── can_be_filtered │ │ │ │ └── index.js │ │ │ ├── can_be_opened_and_closed.feature │ │ │ ├── can_be_opened_and_closed │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ └── index.js │ │ │ ├── duplicate_option_values.feature │ │ │ ├── duplicate_option_values │ │ │ │ └── index.js │ │ │ ├── menu_width_matches_input.feature │ │ │ ├── menu_width_matches_input │ │ │ │ └── index.js │ │ │ ├── position.feature │ │ │ ├── position │ │ │ │ └── index.js │ │ │ ├── shows_selections.feature │ │ │ └── shows_selections │ │ │ │ └── index.js │ │ │ ├── filterable-menu.js │ │ │ ├── index.js │ │ │ ├── input.js │ │ │ ├── menu.js │ │ │ ├── selection.js │ │ │ ├── single-select.e2e.stories.js │ │ │ ├── single-select.js │ │ │ └── single-select.prod.stories.js │ └── types │ │ └── index.d.ts ├── selector-bar │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── cs.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fr.po │ │ ├── id.po │ │ ├── lo.po │ │ ├── nb.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── selector-bar-item │ │ │ ├── features │ │ │ │ ├── toggle-children.feature │ │ │ │ └── toggle-children │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── selector-bar-item.e2e.stories.js │ │ │ └── selector-bar-item.js │ │ └── selector-bar │ │ │ ├── __stories__ │ │ │ ├── common.js │ │ │ ├── keep-org-unit-expanded.js │ │ │ ├── rtl.js │ │ │ ├── with-multiple-rows.js │ │ │ ├── with-right-hand-side-content.js │ │ │ └── with-some-inputs.js │ │ │ ├── index.js │ │ │ ├── selector-bar.js │ │ │ ├── selector-bar.prod.stories.js │ │ │ └── selector-bar.test.js │ └── types │ │ └── index.d.ts ├── sharing-dialog │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── ar_IQ.po │ │ ├── ckb.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hi_IN.po │ │ ├── id.po │ │ ├── km.po │ │ ├── lo.po │ │ ├── my.po │ │ ├── nb.po │ │ ├── ne.po │ │ ├── nl.po │ │ ├── prs.po │ │ ├── ps.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── si.po │ │ ├── sv.po │ │ ├── tet.po │ │ ├── tg.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── uz_Latn.po │ │ ├── uz_UZ_Cyrl.po │ │ ├── uz_UZ_Latn.po │ │ ├── vi.po │ │ ├── zh.po │ │ └── zh_CN.po │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── sharing-dialog.test.js │ │ ├── access-add │ │ │ ├── __tests__ │ │ │ │ └── access-add.test.js │ │ │ ├── access-add.js │ │ │ └── index.js │ │ ├── access-list │ │ │ ├── access-list.js │ │ │ ├── index.js │ │ │ ├── list-item-context.js │ │ │ ├── list-item-icon.js │ │ │ └── list-item.js │ │ ├── autocomplete │ │ │ ├── autocomplete.js │ │ │ ├── index.js │ │ │ ├── menu-popup.js │ │ │ ├── sharing-autocomplete.js │ │ │ └── sharing-autocomplete.test.js │ │ ├── cascade-sharing │ │ │ ├── __tests__ │ │ │ │ └── helpers.test.js │ │ │ ├── cascade-sharing.js │ │ │ ├── controls.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── result-info.js │ │ │ ├── static-info.js │ │ │ └── update-info.js │ │ ├── constants.js │ │ ├── destructive-select-option │ │ │ ├── destructive-select-option.js │ │ │ └── index.js │ │ ├── features │ │ │ ├── access-level-change.feature │ │ │ ├── access-level-change │ │ │ │ └── index.js │ │ │ ├── access-level-disable.feature │ │ │ ├── access-level-disable │ │ │ │ └── index.js │ │ │ ├── access-level-remove.feature │ │ │ ├── access-level-remove │ │ │ │ └── index.js │ │ │ ├── add-entity.feature │ │ │ ├── add-entity │ │ │ │ └── index.js │ │ │ ├── dashboard.feature │ │ │ ├── dashboard │ │ │ │ └── index.js │ │ │ ├── data-sharing.feature │ │ │ ├── data-sharing │ │ │ │ └── index.js │ │ │ ├── fixtures │ │ │ │ ├── all-users-no-access.json │ │ │ │ ├── all-users-view-access.json │ │ │ │ ├── all-users-view-edit-access.json │ │ │ │ ├── dashboard-sharing.json │ │ │ │ ├── dashboards.json │ │ │ │ ├── disabled-access.json │ │ │ │ ├── get-object-data-metadata-access.js │ │ │ │ ├── group-no-access.json │ │ │ │ ├── group-view-access.json │ │ │ │ ├── group-view-edit-access.json │ │ │ │ ├── index.js │ │ │ │ ├── no-access.json │ │ │ │ ├── search-group.json │ │ │ │ ├── search-user.json │ │ │ │ ├── user-all-authority.json │ │ │ │ ├── user-no-access.json │ │ │ │ ├── user-view-access.json │ │ │ │ ├── user-view-edit-access.json │ │ │ │ ├── with-displayname.json │ │ │ │ └── without-displayname.json │ │ │ ├── title.feature │ │ │ └── title │ │ │ │ └── index.js │ │ ├── fetching-context │ │ │ ├── fetching-context.js │ │ │ └── index.js │ │ ├── helpers │ │ │ ├── __tests__ │ │ │ │ ├── debounce.test.js │ │ │ │ └── helpers.test.js │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── modal │ │ │ ├── index.js │ │ │ └── modal.js │ │ ├── sharing-dialog.e2e.stories.js │ │ ├── sharing-dialog.js │ │ ├── sharing-dialog.prod.stories.js │ │ ├── tabs │ │ │ ├── index.js │ │ │ └── tabbed-content.js │ │ └── text │ │ │ ├── index.js │ │ │ └── title.js │ └── types │ │ └── index.d.ts ├── status-icon │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── status-icon.js │ └── types │ │ └── index.d.ts ├── switch │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── switch-field │ │ │ ├── __tests__ │ │ │ │ └── switch-field.test.js │ │ │ ├── features │ │ │ │ ├── can_be_required.feature │ │ │ │ └── can_be_required │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── switch-field.e2e.stories.js │ │ │ ├── switch-field.js │ │ │ └── switch-field.prod.stories.js │ │ └── switch │ │ │ ├── __tests__ │ │ │ └── switch.test.js │ │ │ ├── features │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── accepts_label.feature │ │ │ ├── accepts_label │ │ │ │ └── index.js │ │ │ ├── can_be_blurred.feature │ │ │ ├── can_be_blurred │ │ │ │ └── index.js │ │ │ ├── can_be_changed.feature │ │ │ ├── can_be_changed │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ ├── can_be_focused.feature │ │ │ └── can_be_focused │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── switch-icons.js │ │ │ ├── switch.e2e.stories.js │ │ │ ├── switch.js │ │ │ └── switch.prod.stories.js │ └── types │ │ └── index.d.ts ├── tab │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── tab-bar │ │ │ ├── animated-side-scroll.js │ │ │ ├── detect-horizontal-scrollbar-height.js │ │ │ ├── features │ │ │ │ ├── accepts_children.feature │ │ │ │ ├── accepts_children │ │ │ │ │ └── index.js │ │ │ │ ├── auto_hides_scroll_buttons.feature │ │ │ │ └── auto_hides_scroll_buttons │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── scroll-bar.js │ │ │ ├── scroll-button.js │ │ │ ├── tab-bar.e2e.stories.js │ │ │ ├── tab-bar.js │ │ │ ├── tab-bar.prod.stories.js │ │ │ └── tabs.js │ │ └── tab │ │ │ ├── features │ │ │ ├── accepts_children.feature │ │ │ ├── accepts_children │ │ │ │ └── index.js │ │ │ ├── accepts_icon.feature │ │ │ ├── accepts_icon │ │ │ │ └── index.js │ │ │ ├── is_clickable.feature │ │ │ └── is_clickable │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── tab.e2e.stories.js │ │ │ └── tab.js │ └── types │ │ └── index.d.ts ├── table │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── i18n │ │ ├── ar.po │ │ ├── cs.po │ │ ├── en.pot │ │ ├── es.po │ │ ├── es_419.po │ │ ├── km.po │ │ ├── lo.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── uk.po │ │ ├── uz_UZ_Cyrl.po │ │ └── zh.po │ ├── package.json │ ├── src │ │ ├── data-table │ │ │ ├── __tests__ │ │ │ │ ├── data-table-cell.test.js │ │ │ │ ├── data-table-column-header.test.js │ │ │ │ ├── data-table-column-header │ │ │ │ │ ├── filter-handle.test.js │ │ │ │ │ └── sorter.test.js │ │ │ │ ├── data-table-row.test.js │ │ │ │ ├── data-table-row │ │ │ │ │ ├── expand-handle-cell.js │ │ │ │ │ └── expanded-row.test.js │ │ │ │ └── data-table.test.js │ │ │ ├── data-table-body.js │ │ │ ├── data-table-cell.js │ │ │ ├── data-table-column-header │ │ │ │ ├── data-table-column-header.js │ │ │ │ ├── data-table-column-header.styles.js │ │ │ │ ├── filter-handle.js │ │ │ │ └── sorter.js │ │ │ ├── data-table-foot.js │ │ │ ├── data-table-head.js │ │ │ ├── data-table-row │ │ │ │ ├── data-table-row.js │ │ │ │ ├── data-table-row.styles.js │ │ │ │ ├── drag-handle-cell.js │ │ │ │ ├── expand-handle-cell.js │ │ │ │ └── expanded-row.js │ │ │ ├── data-table-toolbar.js │ │ │ ├── data-table.e2e.stories.js │ │ │ ├── data-table.js │ │ │ ├── data-table.prod.stories.js │ │ │ ├── features │ │ │ │ ├── can_scroll.feature │ │ │ │ └── can_scroll │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── table-elements │ │ │ │ ├── __tests__ │ │ │ │ ├── table-body.test.js │ │ │ │ ├── table-data-cell.test.js │ │ │ │ ├── table-foot.test.js │ │ │ │ ├── table-head.test.js │ │ │ │ ├── table-header-cell-action.test.js │ │ │ │ ├── table-header-cell.test.js │ │ │ │ ├── table-row.test.js │ │ │ │ ├── table-scroll-box.test.js │ │ │ │ ├── table-toolbar.test.js │ │ │ │ └── table.test.js │ │ │ │ ├── features │ │ │ │ ├── can_scroll.feature │ │ │ │ └── can_scroll │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── table-body.js │ │ │ │ ├── table-data-cell │ │ │ │ ├── table-data-cell.js │ │ │ │ └── table-data-cell.styles.js │ │ │ │ ├── table-foot.js │ │ │ │ ├── table-head.js │ │ │ │ ├── table-header-cell-action.js │ │ │ │ ├── table-header-cell │ │ │ │ ├── table-header-cell.js │ │ │ │ └── table-header-cell.styles.js │ │ │ │ ├── table-row.js │ │ │ │ ├── table-scroll-box.js │ │ │ │ ├── table-toolbar.js │ │ │ │ ├── table.e2e.stories.js │ │ │ │ ├── table.js │ │ │ │ └── table.stories.internal.js │ │ ├── index.js │ │ ├── stacked-table │ │ │ ├── add-col-num-to-children.js │ │ │ ├── content-with-title.js │ │ │ ├── extract-header-labels.js │ │ │ ├── index.js │ │ │ ├── stacked-table-body.js │ │ │ ├── stacked-table-cell-head.js │ │ │ ├── stacked-table-cell.js │ │ │ ├── stacked-table-foot.js │ │ │ ├── stacked-table-head.js │ │ │ ├── stacked-table-row-head.js │ │ │ ├── stacked-table-row.js │ │ │ ├── stacked-table.js │ │ │ ├── stacked-table.prod.stories.js │ │ │ ├── stacked-table.test.js │ │ │ ├── supply-header-labels-to-children.js │ │ │ ├── table-context.js │ │ │ └── table.js │ │ └── table │ │ │ ├── index.js │ │ │ ├── table-body.js │ │ │ ├── table-cell-head.js │ │ │ ├── table-cell.js │ │ │ ├── table-context.js │ │ │ ├── table-foot.js │ │ │ ├── table-head.js │ │ │ ├── table-row-head.js │ │ │ ├── table-row.js │ │ │ ├── table.js │ │ │ └── table.prod.stories.js │ └── types │ │ └── index.d.ts ├── tag │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── accepts_icon.feature │ │ │ ├── accepts_icon │ │ │ │ └── index.js │ │ │ ├── accepts_max_width.feature │ │ │ ├── accepts_max_width │ │ │ │ └── index.js │ │ │ ├── accepts_text.feature │ │ │ └── accepts_text │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── tag-icon.js │ │ ├── tag-text.js │ │ ├── tag.e2e.stories.js │ │ ├── tag.js │ │ └── tag.prod.stories.js │ └── types │ │ └── index.d.ts ├── text-area │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── text-area-field │ │ │ ├── __tests__ │ │ │ │ └── text-area-field.test.js │ │ │ ├── features │ │ │ │ ├── can_be_required.feature │ │ │ │ └── can_be_required │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── text-area-field.e2e.stories.js │ │ │ ├── text-area-field.js │ │ │ └── text-area-field.prod.stories.js │ │ └── text-area │ │ │ ├── __tests__ │ │ │ └── text-area.test.js │ │ │ ├── features │ │ │ ├── accepts_initial_focus.feature │ │ │ ├── accepts_initial_focus │ │ │ │ └── index.js │ │ │ ├── can_be_blurred.feature │ │ │ ├── can_be_blurred │ │ │ │ └── index.js │ │ │ ├── can_be_changed.feature │ │ │ ├── can_be_changed │ │ │ │ └── index.js │ │ │ ├── can_be_disabled.feature │ │ │ ├── can_be_disabled │ │ │ │ └── index.js │ │ │ ├── can_be_focused.feature │ │ │ ├── can_be_focused │ │ │ │ └── index.js │ │ │ └── common │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── text-area.e2e.stories.js │ │ │ ├── text-area.js │ │ │ ├── text-area.prod.stories.js │ │ │ └── text-area.styles.js │ └── types │ │ └── index.d.ts ├── tooltip │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── features │ │ │ ├── common │ │ │ │ ├── constants.js │ │ │ │ ├── getReferenceAndBodyPositions.js │ │ │ │ ├── getReferenceAndContentPositions.js │ │ │ │ └── index.js │ │ │ ├── layering.feature │ │ │ ├── layering │ │ │ │ └── index.js │ │ │ ├── positions.feature │ │ │ ├── positions │ │ │ │ └── index.js │ │ │ ├── scrolling_containers.feature │ │ │ ├── scrolling_containers │ │ │ │ └── index.js │ │ │ ├── visibility_toggling.feature │ │ │ └── visibility_toggling │ │ │ │ └── index.js │ │ ├── index.js │ │ ├── tooltip.e2e.stories.js │ │ ├── tooltip.js │ │ ├── tooltip.prod.stories.js │ │ └── tooltip.test.js │ └── types │ │ └── index.d.ts ├── transfer │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ │ ├── __e2e__ │ │ │ ├── add_remove-highlighted-options.e2e.stories.js │ │ │ ├── common.js │ │ │ ├── common │ │ │ │ ├── options.js │ │ │ │ └── stateful-decorator.js │ │ │ ├── disabled-transfer-buttons.e2e.stories.js │ │ │ ├── disabled-transfer-options.e2e.stories.js │ │ │ ├── display-order.e2e.stories.js │ │ │ ├── filter-options-list.e2e.stories.js │ │ │ ├── highlight-range-of-options.e2e.stories.js │ │ │ ├── loading_lists.e2e.stories.js │ │ │ ├── notify_at_end_of_list.e2e.stories.js │ │ │ ├── reorder-with-buttons.e2e.stories.js │ │ │ ├── set_unset-highlighted-option.e2e.stories.js │ │ │ └── transferring-items.e2e.stories.js │ │ ├── __tests__ │ │ │ ├── common.test.js │ │ │ ├── helper │ │ │ │ ├── add-all-selectable-source-options.test.js │ │ │ │ ├── add-individual-source-options.test.js │ │ │ │ ├── default-filter-callback.test.js │ │ │ │ ├── is-reorder-down-disabled.test.js │ │ │ │ ├── is-reorder-up-disabled.test.js │ │ │ │ ├── move-highlighted-picked-option-down.test.js │ │ │ │ ├── move-highlighted-picked-option-up.test.js │ │ │ │ ├── remove-all-picked-options.test.js │ │ │ │ ├── remove-individual-picked-options.test.js │ │ │ │ ├── use-highlighted-option.test.js │ │ │ │ └── use-highlighted-option │ │ │ │ │ ├── create-toggle-highlighted-option.test.js │ │ │ │ │ ├── toggle-add.test.js │ │ │ │ │ ├── toggle-range.test.js │ │ │ │ │ └── toggle-replace.test.js │ │ │ └── transfer.test.js │ │ ├── actions.js │ │ ├── add-all.js │ │ ├── add-individual.js │ │ ├── common │ │ │ ├── find-option-index.js │ │ │ ├── get-mode-by-modifier-key.js │ │ │ ├── index.js │ │ │ ├── is-option.js │ │ │ ├── modes.js │ │ │ ├── remove-option.js │ │ │ └── toggle-value.js │ │ ├── container.js │ │ ├── end-intersection-detector.js │ │ ├── features │ │ │ ├── add_remove-highlighted-options.feature │ │ │ ├── add_remove-highlighted-options │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ └── index.js │ │ │ ├── disabled-transfer-buttons.feature │ │ │ ├── disabled-transfer-buttons │ │ │ │ └── index.js │ │ │ ├── disabled-transfer-options.feature │ │ │ ├── disabled-transfer-options │ │ │ │ └── index.js │ │ │ ├── display-order.feature │ │ │ ├── display-order │ │ │ │ └── index.js │ │ │ ├── filter-options-list.feature │ │ │ ├── filter-options-list │ │ │ │ └── index.js │ │ │ ├── highlight-range-of-options.feature │ │ │ ├── highlight-range-of-options │ │ │ │ └── index.js │ │ │ ├── loading_lists.feature │ │ │ ├── loading_lists │ │ │ │ └── index.js │ │ │ ├── notify_at_end_of_list.feature │ │ │ ├── notify_at_end_of_list │ │ │ │ └── index.js │ │ │ ├── reorder-with-buttons.feature │ │ │ ├── reorder-with-buttons │ │ │ │ └── index.js │ │ │ ├── set_unset-highlighted-option.feature │ │ │ ├── set_unset-highlighted-option │ │ │ │ └── index.js │ │ │ ├── transferring-items.feature │ │ │ └── transferring-items │ │ │ │ └── index.js │ │ ├── filter.js │ │ ├── icons.js │ │ ├── index.js │ │ ├── left-footer.js │ │ ├── left-header.js │ │ ├── left-side.js │ │ ├── options-container.js │ │ ├── picked-options.js │ │ ├── remove-all.js │ │ ├── remove-individual.js │ │ ├── reordering-actions.js │ │ ├── right-footer.js │ │ ├── right-header.js │ │ ├── right-side.js │ │ ├── source-options.js │ │ ├── transfer-option.js │ │ ├── transfer.js │ │ ├── transfer.prod.stories.js │ │ ├── transfer │ │ │ ├── add-all-selectable-source-options.js │ │ │ ├── add-individual-source-options.js │ │ │ ├── create-double-click-handlers.js │ │ │ ├── default-filter-callback.js │ │ │ ├── get-option-click-handlers.js │ │ │ ├── index.js │ │ │ ├── is-reorder-down-disabled.js │ │ │ ├── is-reorder-up-disabled.js │ │ │ ├── move-highlighted-picked-option-down.js │ │ │ ├── move-highlighted-picked-option-up.js │ │ │ ├── remove-all-picked-options.js │ │ │ ├── remove-individual-picked-options.js │ │ │ ├── use-filter.js │ │ │ ├── use-highlighted-options.js │ │ │ └── use-highlighted-options │ │ │ │ ├── create-toggle-highlighted-option.js │ │ │ │ ├── toggle-add.js │ │ │ │ ├── toggle-range.js │ │ │ │ └── toggle-replace.js │ │ └── use-resize-counter.js │ └── types │ │ └── index.d.ts └── user-avatar │ ├── API.md │ ├── README.md │ ├── d2.config.js │ ├── package.json │ ├── src │ ├── image-avatar.js │ ├── image-avatar.test.js │ ├── index.js │ ├── text-avatar.js │ ├── text-avatar.test.js │ ├── user-avatar.js │ ├── user-avatar.prod.stories.js │ └── user-avatar.test.js │ └── types │ └── index.d.ts ├── constants ├── .eslintrc.js ├── API.md ├── README.md ├── d2.config.js ├── package.json ├── src │ ├── colors.js │ ├── elevations.js │ ├── index.js │ ├── layers.js │ ├── shared-prop-types.js │ ├── spacers.js │ └── theme.js └── types │ └── index.d.ts ├── cypress.config.js ├── cypress ├── .eslintrc.js ├── assets │ └── unfetch.umd.js ├── drafts │ └── Transfer │ │ ├── drag-and-drop-items.feature │ │ └── highlight-keyboard.feature ├── e2e │ └── common.js ├── fixtures │ ├── FileInput │ │ ├── file.bar │ │ ├── file.foo │ │ ├── file.md │ │ └── file.txt │ ├── HeaderBar │ │ ├── applicationTitle.json │ │ ├── avatar.png │ │ ├── dashboard.json │ │ ├── getModules.json │ │ ├── getModulesWithSpecialChars.json │ │ ├── helpPageLink.json │ │ ├── logo_banner.json │ │ ├── me.json │ │ └── meWithAvatar.json │ └── OrganisationUnitTree │ │ └── organisationUnits │ │ ├── A0000000000.json │ │ ├── A0000000001.json │ │ ├── A0000000002.json │ │ ├── A0000000003.json │ │ ├── A0000000004.json │ │ ├── A0000000005.json │ │ └── A0000000006.json └── support │ ├── all.js │ ├── clickWith.js │ ├── common │ ├── dataTestNameToSelector.js │ └── parseSelectorWithDataTest.js │ ├── e2e.js │ ├── find.js │ ├── generateTestMatrix.js │ ├── get.js │ ├── getAll.js │ ├── getFormValue.js │ ├── getPositionsBySelectors.js │ ├── org_unit_tree │ ├── closeOrgUnitNode.js │ ├── getOrgUnitByLabel.js │ ├── index.js │ ├── openOrgUnitNode.js │ ├── shouldBeAClosedNode.js │ ├── shouldBeASelectedOrgUnitNode.js │ ├── shouldBeAnOpenNode.js │ ├── shouldBeAnOrgUnitNode.js │ ├── shouldBeDoneLoading.js │ ├── shouldHaveChildNodes.js │ ├── shouldNotBeASelectedOrgUnitNode.js │ ├── shouldNotHaveChildNodes.js │ ├── toggleOrgUnitNode.js │ └── toggleOrgUnitNodeSelection.js │ ├── screenshots.js │ ├── selectSelectNthOption.js │ ├── uploadFile │ └── hexStringToByte.js │ ├── uploadMultipleFiles.js │ ├── uploadSingleFile.js │ ├── verifyFormValue.js │ └── visitStory.js ├── d2-style.config.js ├── d2.config.js ├── docs ├── .gitignore ├── babel.config.js ├── docs │ ├── .gitkeep │ ├── components │ │ ├── alertbar.md │ │ ├── avatar.md │ │ ├── button.md │ │ ├── calendar-input.md │ │ ├── calendar.md │ │ ├── card.md │ │ ├── checkbox.md │ │ ├── chip.md │ │ ├── data-table.md │ │ ├── elevation.md │ │ ├── fileinput.md │ │ ├── inputfield.md │ │ ├── loading.md │ │ ├── menu.md │ │ ├── modal.md │ │ ├── notice-box.md │ │ ├── org-unit-tree.md │ │ ├── pagination.md │ │ ├── popover.md │ │ ├── radio.md │ │ ├── segmented-control.md │ │ ├── select.md │ │ ├── simple-single-select.md │ │ ├── switch.md │ │ ├── tab.md │ │ ├── tag.md │ │ ├── tooltip.md │ │ └── transfer.md │ ├── getting-started │ │ ├── installation.md │ │ └── readme.md │ ├── help │ │ ├── advanced-usage.md │ │ ├── migrating.md │ │ └── troubleshooting.md │ ├── package │ │ ├── api.md │ │ └── changelog.md │ ├── partials │ │ └── _component-header.mdx │ ├── patterns │ │ ├── designing-with-time.md │ │ ├── glossary.md │ │ ├── large-data.md │ │ └── writing.md │ ├── principles │ │ ├── color.md │ │ ├── content-communication.md │ │ ├── design-for-use.md │ │ ├── forms.md │ │ ├── icons.md │ │ ├── layout.md │ │ └── typography.md │ ├── recipes │ │ ├── assets │ │ │ └── ui-table.png │ │ ├── recipes.md │ │ ├── simple-single-select-server-side-filtering.md │ │ ├── simple-single-select-simple-filtering.md │ │ ├── transfer-infinite-loading-all-options-selected.md │ │ └── ui-table.md │ └── utilities │ │ ├── constants.md │ │ └── forms │ │ ├── images │ │ └── form-demo.png │ │ ├── react-final-form.md │ │ ├── transformers.md │ │ └── validators.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── DemoComponent.jsx │ │ ├── DemoComponent.module.css │ │ └── DocFigure.jsx │ ├── constants.js │ └── css │ │ └── custom.css ├── static │ ├── .nojekyll │ ├── images │ │ ├── addons-bar.png │ │ ├── alertbar-comp.png │ │ ├── alertbar-critical.png │ │ ├── alertbar-example.png │ │ ├── alertbar-success.png │ │ ├── alertbar-warning.png │ │ ├── alertbar.png │ │ ├── avatar-example-1.png │ │ ├── avatar-sizes.png │ │ ├── avatar.png │ │ ├── btn-basic.jpg │ │ ├── btn-destructive.jpg │ │ ├── btn-dropdown.jpg │ │ ├── btn-link.jpg │ │ ├── btn-link.png │ │ ├── btn-primary.jpg │ │ ├── btn-secondary.jpg │ │ ├── btn-split.jpg │ │ ├── button-disabled.png │ │ ├── button-example.png │ │ ├── button-icon.png │ │ ├── button-sizes.png │ │ ├── button-toggle.png │ │ ├── button.png │ │ ├── card.jpg │ │ ├── card.png │ │ ├── checkbox-example.png │ │ ├── checkbox-indeterminate.png │ │ ├── checkbox-sizes.png │ │ ├── checkbox.jpg │ │ ├── checkbox.png │ │ ├── chip-example-1.png │ │ ├── chip-icon.jpg │ │ ├── chip-icon.png │ │ ├── chip-table-selected.jpg │ │ ├── chip-table-selected@2x.png │ │ ├── chip-table.jpg │ │ ├── chip-table@2x.png │ │ ├── chip.png │ │ ├── color-contrast.jpg │ │ ├── color-picker.png │ │ ├── color-scale.jpg │ │ ├── color │ │ │ ├── color-blue-050.png │ │ │ ├── color-blue-100.png │ │ │ ├── color-blue-200.png │ │ │ ├── color-blue-300.png │ │ │ ├── color-blue-400.png │ │ │ ├── color-blue-500.png │ │ │ ├── color-blue-600.png │ │ │ ├── color-blue-700.png │ │ │ ├── color-blue-800.png │ │ │ ├── color-blue-900.png │ │ │ ├── color-green-050.png │ │ │ ├── color-green-100.png │ │ │ ├── color-green-200.png │ │ │ ├── color-green-300.png │ │ │ ├── color-green-400.png │ │ │ ├── color-green-500.png │ │ │ ├── color-green-600.png │ │ │ ├── color-green-700.png │ │ │ ├── color-green-800.png │ │ │ ├── color-green-900.png │ │ │ ├── color-grey-050.png │ │ │ ├── color-grey-100.png │ │ │ ├── color-grey-200.png │ │ │ ├── color-grey-300.png │ │ │ ├── color-grey-400.png │ │ │ ├── color-grey-500.png │ │ │ ├── color-grey-600.png │ │ │ ├── color-grey-700.png │ │ │ ├── color-grey-800.png │ │ │ ├── color-grey-900.png │ │ │ ├── color-red-050.png │ │ │ ├── color-red-100.png │ │ │ ├── color-red-200.png │ │ │ ├── color-red-300.png │ │ │ ├── color-red-400.png │ │ │ ├── color-red-500.png │ │ │ ├── color-red-600.png │ │ │ ├── color-red-700.png │ │ │ ├── color-red-800.png │ │ │ ├── color-red-900.png │ │ │ ├── color-scale.png │ │ │ ├── color-teal-050.png │ │ │ ├── color-teal-100.png │ │ │ ├── color-teal-200.png │ │ │ ├── color-teal-300.png │ │ │ ├── color-teal-400.png │ │ │ ├── color-teal-500.png │ │ │ ├── color-teal-600.png │ │ │ ├── color-teal-700.png │ │ │ ├── color-teal-800.png │ │ │ ├── color-teal-900.png │ │ │ ├── color-yellow-050.png │ │ │ ├── color-yellow-100.png │ │ │ ├── color-yellow-200.png │ │ │ ├── color-yellow-300.png │ │ │ ├── color-yellow-400.png │ │ │ ├── color-yellow-500.png │ │ │ ├── color-yellow-600.png │ │ │ ├── color-yellow-700.png │ │ │ ├── color-yellow-800.png │ │ │ ├── color-yellow-900.png │ │ │ ├── ex-color-1.png │ │ │ ├── ex-color-2.png │ │ │ ├── ex-color-3.png │ │ │ ├── ex-color-4.png │ │ │ └── ex-color-5.png │ │ ├── comment-active.png │ │ ├── comment-composition-active.png │ │ ├── comment-composition-display.png │ │ ├── comment-composition-empty.png │ │ ├── comment-display.jpg │ │ ├── comment-display.png │ │ ├── comment-editing.jpg │ │ ├── comment-empty.jpg │ │ ├── comment-empty.png │ │ ├── comment-width.png │ │ ├── comment.png │ │ ├── communication │ │ │ ├── ex-comms-1.png │ │ │ ├── ex-comms-2.png │ │ │ ├── ex-comms-3.png │ │ │ ├── ex-comms-4.png │ │ │ ├── ex-comms-5.png │ │ │ ├── ex-comms-6.png │ │ │ └── ex-comms-7.png │ │ ├── componentloader.png │ │ ├── componentloaderlinear.png │ │ ├── dashboard-example.jpg │ │ ├── data-table.png │ │ ├── data-table │ │ │ ├── cell-edit-active.png │ │ │ ├── cell-edit.png │ │ │ ├── data-table-example-1.png │ │ │ ├── inline-filter.png │ │ │ ├── row-actions.png │ │ │ ├── row-edit-active.png │ │ │ ├── row-edit.png │ │ │ ├── search.png │ │ │ ├── selectable.png │ │ │ ├── sorting.png │ │ │ ├── standalone-filter.png │ │ │ └── table-actions.png │ │ ├── datatabe-fixed-column.png │ │ ├── datatable-actions.png │ │ ├── datatable-bordered.png │ │ ├── datatable-cell-formatting.png │ │ ├── datatable-composition.png │ │ ├── datatable-edit-columns.png │ │ ├── datatable-empty.png │ │ ├── datatable-expandable.png │ │ ├── datatable-filter-display.png │ │ ├── datatable-filter.png │ │ ├── datatable-fixed-column.png │ │ ├── datatable-fixed-header.png │ │ ├── datatable-inline-edit.png │ │ ├── datatable-large.png │ │ ├── datatable-reorder.png │ │ ├── datatable-row-actions.png │ │ ├── datatable-search.png │ │ ├── datatable-selectable-rows.png │ │ ├── datatable-sorting.png │ │ ├── datatable-status-badge.png │ │ ├── datatable-status-default.png │ │ ├── datatable-status-error.png │ │ ├── datatable-status-neutral.png │ │ ├── datatable-status-valid.png │ │ ├── datatable-title.png │ │ ├── docs-page.png │ │ ├── docs-tab.png │ │ ├── elevation-example.png │ │ ├── elevation-illu.png │ │ ├── elevation.jpg │ │ ├── elevation.png │ │ ├── elevation@2x.png │ │ ├── event-example.jpg │ │ ├── ex-group-inputs.png │ │ ├── ex-layout-titles.png │ │ ├── file-input-composition.png │ │ ├── file-upload-error-file.png │ │ ├── file-upload-error.png │ │ ├── file-upload-full.png │ │ ├── file-upload-help.png │ │ ├── file-upload-label.png │ │ ├── file-upload-loader.png │ │ ├── file-upload-multi.png │ │ ├── file-upload-placeholder.png │ │ ├── file-upload.png │ │ ├── filtered-information.jpg │ │ ├── form-demo.png │ │ ├── forms │ │ │ ├── actions.png │ │ │ ├── contextual-help.png │ │ │ ├── input-help.png │ │ │ ├── progressive-disclosure.png │ │ │ └── save-context.png │ │ ├── global-header.jpg │ │ ├── global-header.png │ │ ├── global-header@2x.png │ │ ├── grouping.png │ │ ├── icon-button.jpg │ │ ├── icon-list.jpg │ │ ├── icons │ │ │ ├── consistency.png │ │ │ ├── icon-alignment.png │ │ │ ├── icon-and-text.png │ │ │ ├── icon-color-state.png │ │ │ └── icon-color.png │ │ ├── input-composition.png │ │ ├── input-disabled.png │ │ ├── input-email.png │ │ ├── input-error.png │ │ ├── input-loading.png │ │ ├── input-number.png │ │ ├── input-password.png │ │ ├── input-placeholder.png │ │ ├── input-sizes.png │ │ ├── input-telephone.png │ │ ├── input-textarea.png │ │ ├── input-url.png │ │ ├── input-valid.png │ │ ├── input.png │ │ ├── large-data │ │ │ ├── batch-editing.png │ │ │ ├── example-user-information.png │ │ │ ├── expensive-operations.png │ │ │ ├── filtering-searching-sorting.png │ │ │ └── respect-user-resources.png │ │ ├── layout-8grid.png │ │ ├── layout-complex.png │ │ ├── layout-sidebar.png │ │ ├── layout-single-purpose.png │ │ ├── layout-spacing-scale.png │ │ ├── layout-toolbar.png │ │ ├── line-lengths.jpg │ │ ├── loader.png │ │ ├── menu-destructive.png │ │ ├── menu-disabled.png │ │ ├── menu-example.png │ │ ├── menu-icons.png │ │ ├── menu-levels.png │ │ ├── menu-sections.png │ │ ├── menu-size.png │ │ ├── menu.png │ │ ├── menuitem.png │ │ ├── modal-acknowledge.png │ │ ├── modal-breakdown.jpg │ │ ├── modal-composition.png │ │ ├── modal-confirmation.png │ │ ├── modal-error.png │ │ ├── modal-example-1.png │ │ ├── modal-example-2.png │ │ ├── modal-large.jpg │ │ ├── modal-loading.png │ │ ├── modal-medium.jpg │ │ ├── modal-scroll.jpg │ │ ├── modal-singleaction.jpg │ │ ├── modal-small.jpg │ │ ├── modal-task.png │ │ ├── notice-box-composition.png │ │ ├── notice-box-critical.png │ │ ├── notice-box-example.png │ │ ├── notice-box-information.png │ │ ├── notice-box-information@2x.png │ │ ├── notice-box-warning.png │ │ ├── ou-tree │ │ │ ├── org-unit-tree.png │ │ │ └── selection-type.png │ │ ├── pageloader.png │ │ ├── pagination-compact.png │ │ ├── pagination-composition.png │ │ ├── pagination-example.png │ │ ├── pagination-full.png │ │ ├── pagination-viewing.png │ │ ├── pagination.png │ │ ├── pattern │ │ │ └── time │ │ │ │ ├── timestamp-expand.png │ │ │ │ └── timestamp-tooltip.png │ │ ├── popover-.jpg │ │ ├── popover-2x.png │ │ ├── popover-example.jpg │ │ ├── popover-example.png │ │ ├── popover-example@2x.png │ │ ├── popover.png │ │ ├── radio-buttons.jpg │ │ ├── radio-buttons.png │ │ ├── radio-example.jpg │ │ ├── radio-example@2x.png │ │ ├── radio-size.png │ │ ├── radio.png │ │ ├── rich-text.png │ │ ├── rt-composition.png │ │ ├── rt-mentions.png │ │ ├── rt-preview.png │ │ ├── rt-tools.png │ │ ├── segmented-control-example.png │ │ ├── segmented-control.png │ │ ├── select-clear.png │ │ ├── select-custom.png │ │ ├── select-empty.png │ │ ├── select-example-1.png │ │ ├── select-example-2.png │ │ ├── select-example-3.png │ │ ├── select-filter.png │ │ ├── select-inlinelabel.png │ │ ├── select-multiple.png │ │ ├── select-single.png │ │ ├── select.png │ │ ├── spacing-example.jpg │ │ ├── spacing-scale.jpg │ │ ├── stacking.png │ │ ├── switch.png │ │ ├── table.jpg │ │ ├── table@2x.png │ │ ├── tabs-example.jpg │ │ ├── tabs-example.png │ │ ├── tabs-fixed.jpg │ │ ├── tabs-fixed.png │ │ ├── tabs-fixed@2x.png │ │ ├── tabs-fluid.jpg │ │ ├── tabs-fluid.png │ │ ├── tabs-fluid@2x.png │ │ ├── tabs.jpg │ │ ├── tabs.png │ │ ├── tabs@2x.png │ │ ├── tag │ │ │ ├── tag-blue.png │ │ │ ├── tag-ex-1.png │ │ │ ├── tag-ex-2.png │ │ │ ├── tag-green.png │ │ │ ├── tag-grey.png │ │ │ ├── tag-icons.png │ │ │ ├── tag-red.png │ │ │ └── tag.png │ │ ├── test-color.png │ │ ├── text-input-dense.png │ │ ├── text-input-error.png │ │ ├── text-input-help.png │ │ ├── text-input-loading.png │ │ ├── text-input-sizes.png │ │ ├── text-input-valid.png │ │ ├── text-input.png │ │ ├── tooltip-example-1.png │ │ ├── tooltip-example-2.png │ │ ├── tooltip-example-3.png │ │ ├── tooltip-example.jpg │ │ ├── tooltip-example2.jpg │ │ ├── tooltip-example2@2x.png │ │ ├── tooltip-example3.jpg │ │ ├── tooltip-example3@2x.png │ │ ├── tooltip-example@2x.png │ │ ├── tooltip.jpg │ │ ├── tooltip.png │ │ ├── tooltip@2x.png │ │ ├── transfer-buttons.png │ │ ├── transfer-composition.png │ │ ├── transfer-custom.png │ │ ├── transfer-empty.png │ │ ├── transfer-error.png │ │ ├── transfer-example.png │ │ ├── transfer-filter.png │ │ ├── transfer-footer.png │ │ ├── transfer-header.png │ │ ├── transfer-reorder.png │ │ ├── transfer.png │ │ └── type-hierarchy.jpg │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── yarn.lock ├── icons ├── .eslintrc.js ├── API.md ├── README.md ├── __tests__ │ ├── __snapshots__ │ │ └── svgr.test.js.snap │ └── svgr.test.js ├── d2.config.js ├── package.json ├── src │ ├── icons.prod.stories.js │ └── svg │ │ ├── add-16.svg │ │ ├── add-24.svg │ │ ├── add-circle-16.svg │ │ ├── add-circle-24.svg │ │ ├── apps-16.svg │ │ ├── apps-24.svg │ │ ├── archive-16.svg │ │ ├── archive-24.svg │ │ ├── arrow-down-16.svg │ │ ├── arrow-down-24.svg │ │ ├── arrow-left-16.svg │ │ ├── arrow-left-24.svg │ │ ├── arrow-left-multi-16.svg │ │ ├── arrow-left-multi-24.svg │ │ ├── arrow-right-16.svg │ │ ├── arrow-right-24.svg │ │ ├── arrow-right-multi-16.svg │ │ ├── arrow-right-multi-24.svg │ │ ├── arrow-up-16.svg │ │ ├── arrow-up-24.svg │ │ ├── at-16.svg │ │ ├── at-24.svg │ │ ├── attachment-16.svg │ │ ├── attachment-24.svg │ │ ├── block-16.svg │ │ ├── block-24.svg │ │ ├── calendar-16.svg │ │ ├── calendar-24.svg │ │ ├── checkmark-12.svg │ │ ├── checkmark-16.svg │ │ ├── checkmark-24.svg │ │ ├── checkmark-circle-16.svg │ │ ├── checkmark-circle-24.svg │ │ ├── chevron-down-16.svg │ │ ├── chevron-down-24.svg │ │ ├── chevron-left-16.svg │ │ ├── chevron-left-24.svg │ │ ├── chevron-right-16.svg │ │ ├── chevron-right-24.svg │ │ ├── chevron-up-16.svg │ │ ├── chevron-up-24.svg │ │ ├── clock-16.svg │ │ ├── clock-24.svg │ │ ├── clock-history-16.svg │ │ ├── clock-history-24.svg │ │ ├── color-16.svg │ │ ├── color-24.svg │ │ ├── copy-16.svg │ │ ├── copy-24.svg │ │ ├── cross-16.svg │ │ ├── cross-24.svg │ │ ├── dashboard-window-16.svg │ │ ├── dashboard-window-24.svg │ │ ├── data-integer-16.svg │ │ ├── data-integer-24.svg │ │ ├── data-string-16.svg │ │ ├── data-string-24.svg │ │ ├── delete-16.svg │ │ ├── delete-24.svg │ │ ├── dimension-category-option-groupset-16.svg │ │ ├── dimension-data-16.svg │ │ ├── dimension-data-element-groupset-16.svg │ │ ├── dimension-data-set-16.svg │ │ ├── dimension-event-data-item-16.svg │ │ ├── dimension-indicator-16.svg │ │ ├── dimension-org-unit-16.svg │ │ ├── dimension-org-unit-groupset-16.svg │ │ ├── dimension-program-attribute-16.svg │ │ ├── dimension-program-indicator-16.svg │ │ ├── dimension-validation-rule-16.svg │ │ ├── direction-north-16.svg │ │ ├── direction-north-24.svg │ │ ├── download-16.svg │ │ ├── download-24.svg │ │ ├── drag-handle-16.svg │ │ ├── drag-handle-24.svg │ │ ├── duplicate-16.svg │ │ ├── duplicate-24.svg │ │ ├── edit-16.svg │ │ ├── edit-24.svg │ │ ├── edit-items-16.svg │ │ ├── edit-items-24.svg │ │ ├── empty-frame-16.svg │ │ ├── empty-frame-24.svg │ │ ├── error-16.svg │ │ ├── error-24.svg │ │ ├── error-filled-16.svg │ │ ├── error-filled-24.svg │ │ ├── export-items-24.svg │ │ ├── face-add-16.svg │ │ ├── face-add-24.svg │ │ ├── file-16.svg │ │ ├── file-24.svg │ │ ├── file-document-16.svg │ │ ├── file-document-24.svg │ │ ├── filter-16.svg │ │ ├── filter-24.svg │ │ ├── flag-16.svg │ │ ├── flag-24.svg │ │ ├── folder-16.svg │ │ ├── folder-24.svg │ │ ├── folder-open-16.svg │ │ ├── folder-open-24.svg │ │ ├── fullscreen-16.svg │ │ ├── fullscreen-24.svg │ │ ├── fullscreen-exit-16.svg │ │ ├── fullscreen-exit-24.svg │ │ ├── home-16.svg │ │ ├── home-24.svg │ │ ├── image-16.svg │ │ ├── image-24.svg │ │ ├── import-items-24.svg │ │ ├── info-16.svg │ │ ├── info-24.svg │ │ ├── info-filled-16.svg │ │ ├── info-filled-24.svg │ │ ├── launch-16.svg │ │ ├── launch-24.svg │ │ ├── layout-columns-16.svg │ │ ├── layout-columns-24.svg │ │ ├── layout-rows-16.svg │ │ ├── layout-rows-24.svg │ │ ├── legend-16.svg │ │ ├── legend-24.svg │ │ ├── link-16.svg │ │ ├── link-24.svg │ │ ├── link-off-16.svg │ │ ├── link-off-24.svg │ │ ├── list-16.svg │ │ ├── list-24.svg │ │ ├── location-16.svg │ │ ├── location-24.svg │ │ ├── lock-16.svg │ │ ├── lock-24.svg │ │ ├── lock-open-16.svg │ │ ├── lock-open-24.svg │ │ ├── log-out-16.svg │ │ ├── log-out-24.svg │ │ ├── mail-16.svg │ │ ├── mail-24.svg │ │ ├── mail-open-16.svg │ │ ├── mail-open-24.svg │ │ ├── messages-16.svg │ │ ├── messages-24.svg │ │ ├── more-16.svg │ │ ├── more-24.svg │ │ ├── move-16.svg │ │ ├── move-24.svg │ │ ├── push-left-16.svg │ │ ├── push-left-24.svg │ │ ├── push-right-16.svg │ │ ├── push-right-24.svg │ │ ├── question-16.svg │ │ ├── question-24.svg │ │ ├── question-filled-16.svg │ │ ├── question-filled-24.svg │ │ ├── queue-16.svg │ │ ├── queue-24.svg │ │ ├── redo-16.svg │ │ ├── redo-24.svg │ │ ├── reorder-16.svg │ │ ├── reorder-24.svg │ │ ├── reply-16.svg │ │ ├── reply-24.svg │ │ ├── ruler-16.svg │ │ ├── ruler-24.svg │ │ ├── save-16.svg │ │ ├── save-24.svg │ │ ├── search-16.svg │ │ ├── search-24.svg │ │ ├── settings-16.svg │ │ ├── settings-24.svg │ │ ├── share-16.svg │ │ ├── share-24.svg │ │ ├── star-16.svg │ │ ├── star-24.svg │ │ ├── star-filled-16.svg │ │ ├── star-filled-24.svg │ │ ├── subscribe-16.svg │ │ ├── subscribe-24.svg │ │ ├── subscribe-off-16.svg │ │ ├── subscribe-off-24.svg │ │ ├── subtract-16.svg │ │ ├── subtract-24.svg │ │ ├── subtract-circle-16.svg │ │ ├── subtract-circle-24.svg │ │ ├── sync-16.svg │ │ ├── sync-24.svg │ │ ├── table-16.svg │ │ ├── table-24.svg │ │ ├── terminal-window-16.svg │ │ ├── terminal-window-24.svg │ │ ├── text-bold-16.svg │ │ ├── text-bold-24.svg │ │ ├── text-box-16.svg │ │ ├── text-box-24.svg │ │ ├── text-heading-16.svg │ │ ├── text-heading-24.svg │ │ ├── text-italic-16.svg │ │ ├── text-italic-24.svg │ │ ├── text-list-ordered-16.svg │ │ ├── text-list-ordered-24.svg │ │ ├── text-list-unordered-16.svg │ │ ├── text-list-unordered-24.svg │ │ ├── thumb-down-16.svg │ │ ├── thumb-down-24.svg │ │ ├── thumb-up-16.svg │ │ ├── thumb-up-24.svg │ │ ├── translate-16.svg │ │ ├── translate-24.svg │ │ ├── undo-16.svg │ │ ├── undo-24.svg │ │ ├── upload-16.svg │ │ ├── upload-24.svg │ │ ├── user-16.svg │ │ ├── user-24.svg │ │ ├── user-group-16.svg │ │ ├── user-group-24.svg │ │ ├── view-16.svg │ │ ├── view-24.svg │ │ ├── view-off-16.svg │ │ ├── view-off-24.svg │ │ ├── visualization-area-16.svg │ │ ├── visualization-area-24.svg │ │ ├── visualization-area-stacked-16.svg │ │ ├── visualization-area-stacked-24.svg │ │ ├── visualization-bar-16.svg │ │ ├── visualization-bar-24.svg │ │ ├── visualization-bar-stacked-16.svg │ │ ├── visualization-bar-stacked-24.svg │ │ ├── visualization-column-16.svg │ │ ├── visualization-column-24.svg │ │ ├── visualization-column-multi-16.svg │ │ ├── visualization-column-multi-24.svg │ │ ├── visualization-column-stacked-16.svg │ │ ├── visualization-column-stacked-24.svg │ │ ├── visualization-gauge-16.svg │ │ ├── visualization-gauge-24.svg │ │ ├── visualization-line-16.svg │ │ ├── visualization-line-24.svg │ │ ├── visualization-line-multi-16.svg │ │ ├── visualization-line-multi-24.svg │ │ ├── visualization-linelist-16.svg │ │ ├── visualization-linelist-24.svg │ │ ├── visualization-outlier-table-16.svg │ │ ├── visualization-outlier-table-24.svg │ │ ├── visualization-pie-16.svg │ │ ├── visualization-pie-24.svg │ │ ├── visualization-pivot-table-16.svg │ │ ├── visualization-pivot-table-24.svg │ │ ├── visualization-radar-16.svg │ │ ├── visualization-radar-24.svg │ │ ├── visualization-scatter-16.svg │ │ ├── visualization-scatter-24.svg │ │ ├── visualization-single-value-16.svg │ │ ├── visualization-single-value-24.svg │ │ ├── warning-16.svg │ │ ├── warning-24.svg │ │ ├── warning-filled-16.svg │ │ ├── warning-filled-24.svg │ │ ├── window-16.svg │ │ ├── window-24.svg │ │ ├── world-16.svg │ │ └── world-24.svg ├── svgr.config.js ├── templates │ ├── icon-template.js │ └── index-template.js └── types │ └── index.d.ts ├── jest.config.js ├── jest.config.shared.js ├── jest.enzyme.config.js ├── jest.globals.config.js ├── jest.testing-library.config.js ├── netlify.toml ├── package.json ├── scripts ├── build-world.sh ├── build.js ├── create-artifact.sh ├── cypress.js ├── extract-artifact.sh ├── generate-api-docs.js └── setup.js ├── storybook ├── config │ ├── main.js │ ├── manager-head.html │ ├── manager.js │ ├── preview-head.html │ ├── preview.js │ └── theme.js ├── package.json ├── src │ ├── babel-config.js │ ├── load-stories.js │ ├── paths.js │ ├── ui-packages.js │ └── webpack-config.js └── static │ ├── dhis2-icon-rgb-positive.png │ ├── favicon.ico │ ├── images │ ├── addons-bar.png │ ├── docs-page.png │ ├── docs-tab.png │ └── form-demo.png │ ├── manager.css │ └── preview.css └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.5% 2 | last 2 versions 3 | Firefox ESR 4 | ie 11 5 | not dead 6 | -------------------------------------------------------------------------------- /.cypress-cucumber-preprocessorrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.cypress-cucumber-preprocessorrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.hooks/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.hooks/commit-msg -------------------------------------------------------------------------------- /.hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.hooks/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/.tx/config -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/API.md -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/_redirects -------------------------------------------------------------------------------- /collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/README.md -------------------------------------------------------------------------------- /collections/forms/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/.eslintrc.js -------------------------------------------------------------------------------- /collections/forms/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/API.md -------------------------------------------------------------------------------- /collections/forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/README.md -------------------------------------------------------------------------------- /collections/forms/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/d2.config.js -------------------------------------------------------------------------------- /collections/forms/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ar.po -------------------------------------------------------------------------------- /collections/forms/i18n/ar_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ar_IQ.po -------------------------------------------------------------------------------- /collections/forms/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ckb.po -------------------------------------------------------------------------------- /collections/forms/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/cs.po -------------------------------------------------------------------------------- /collections/forms/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/da.po -------------------------------------------------------------------------------- /collections/forms/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/en.pot -------------------------------------------------------------------------------- /collections/forms/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/es.po -------------------------------------------------------------------------------- /collections/forms/i18n/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/es_419.po -------------------------------------------------------------------------------- /collections/forms/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/fr.po -------------------------------------------------------------------------------- /collections/forms/i18n/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/hi_IN.po -------------------------------------------------------------------------------- /collections/forms/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/id.po -------------------------------------------------------------------------------- /collections/forms/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/km.po -------------------------------------------------------------------------------- /collections/forms/i18n/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ko_KR.po -------------------------------------------------------------------------------- /collections/forms/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/lo.po -------------------------------------------------------------------------------- /collections/forms/i18n/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/my.po -------------------------------------------------------------------------------- /collections/forms/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/nb.po -------------------------------------------------------------------------------- /collections/forms/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/nl.po -------------------------------------------------------------------------------- /collections/forms/i18n/prs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/prs.po -------------------------------------------------------------------------------- /collections/forms/i18n/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ps.po -------------------------------------------------------------------------------- /collections/forms/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/pt.po -------------------------------------------------------------------------------- /collections/forms/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/pt_BR.po -------------------------------------------------------------------------------- /collections/forms/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ro.po -------------------------------------------------------------------------------- /collections/forms/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ru.po -------------------------------------------------------------------------------- /collections/forms/i18n/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/si.po -------------------------------------------------------------------------------- /collections/forms/i18n/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/sv.po -------------------------------------------------------------------------------- /collections/forms/i18n/tet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/tet.po -------------------------------------------------------------------------------- /collections/forms/i18n/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/tg.po -------------------------------------------------------------------------------- /collections/forms/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/uk.po -------------------------------------------------------------------------------- /collections/forms/i18n/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/ur.po -------------------------------------------------------------------------------- /collections/forms/i18n/uz_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/uz_Latn.po -------------------------------------------------------------------------------- /collections/forms/i18n/uz_UZ_Cyrl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/uz_UZ_Cyrl.po -------------------------------------------------------------------------------- /collections/forms/i18n/uz_UZ_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/uz_UZ_Latn.po -------------------------------------------------------------------------------- /collections/forms/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/vi.po -------------------------------------------------------------------------------- /collections/forms/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/zh.po -------------------------------------------------------------------------------- /collections/forms/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/i18n/zh_CN.po -------------------------------------------------------------------------------- /collections/forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/package.json -------------------------------------------------------------------------------- /collections/forms/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/src/index.js -------------------------------------------------------------------------------- /collections/forms/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/forms/types/index.d.ts -------------------------------------------------------------------------------- /collections/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/.eslintrc.js -------------------------------------------------------------------------------- /collections/ui/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/API.md -------------------------------------------------------------------------------- /collections/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/README.md -------------------------------------------------------------------------------- /collections/ui/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/d2.config.js -------------------------------------------------------------------------------- /collections/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/package.json -------------------------------------------------------------------------------- /collections/ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/src/index.js -------------------------------------------------------------------------------- /collections/ui/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/collections/ui/types/index.d.ts -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/README.md -------------------------------------------------------------------------------- /components/alert/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/API.md -------------------------------------------------------------------------------- /components/alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/README.md -------------------------------------------------------------------------------- /components/alert/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/d2.config.js -------------------------------------------------------------------------------- /components/alert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/package.json -------------------------------------------------------------------------------- /components/alert/src/alert-bar/index.js: -------------------------------------------------------------------------------- 1 | export { AlertBar } from './alert-bar.js' 2 | -------------------------------------------------------------------------------- /components/alert/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/src/index.js -------------------------------------------------------------------------------- /components/alert/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/alert/types/index.d.ts -------------------------------------------------------------------------------- /components/box/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/API.md -------------------------------------------------------------------------------- /components/box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/README.md -------------------------------------------------------------------------------- /components/box/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/d2.config.js -------------------------------------------------------------------------------- /components/box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/package.json -------------------------------------------------------------------------------- /components/box/src/box.e2e.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/src/box.e2e.stories.js -------------------------------------------------------------------------------- /components/box/src/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/src/box.js -------------------------------------------------------------------------------- /components/box/src/index.js: -------------------------------------------------------------------------------- 1 | export { Box } from './box.js' 2 | -------------------------------------------------------------------------------- /components/box/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/box/types/index.d.ts -------------------------------------------------------------------------------- /components/button/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/API.md -------------------------------------------------------------------------------- /components/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/README.md -------------------------------------------------------------------------------- /components/button/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/d2.config.js -------------------------------------------------------------------------------- /components/button/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/i18n/en.pot -------------------------------------------------------------------------------- /components/button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/package.json -------------------------------------------------------------------------------- /components/button/src/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/src/button/index.js -------------------------------------------------------------------------------- /components/button/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/src/index.js -------------------------------------------------------------------------------- /components/button/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/button/types/index.d.ts -------------------------------------------------------------------------------- /components/calendar/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/API.md -------------------------------------------------------------------------------- /components/calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/README.md -------------------------------------------------------------------------------- /components/calendar/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/d2.config.js -------------------------------------------------------------------------------- /components/calendar/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/i18n/en.pot -------------------------------------------------------------------------------- /components/calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/package.json -------------------------------------------------------------------------------- /components/calendar/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/src/index.js -------------------------------------------------------------------------------- /components/calendar/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/calendar/types/index.d.ts -------------------------------------------------------------------------------- /components/card/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/API.md -------------------------------------------------------------------------------- /components/card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/README.md -------------------------------------------------------------------------------- /components/card/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/d2.config.js -------------------------------------------------------------------------------- /components/card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/package.json -------------------------------------------------------------------------------- /components/card/src/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/src/card.js -------------------------------------------------------------------------------- /components/card/src/index.js: -------------------------------------------------------------------------------- 1 | export { Card } from './card.js' 2 | -------------------------------------------------------------------------------- /components/card/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/card/types/index.d.ts -------------------------------------------------------------------------------- /components/center/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/API.md -------------------------------------------------------------------------------- /components/center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/README.md -------------------------------------------------------------------------------- /components/center/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/d2.config.js -------------------------------------------------------------------------------- /components/center/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/package.json -------------------------------------------------------------------------------- /components/center/src/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/src/center.js -------------------------------------------------------------------------------- /components/center/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/src/index.js -------------------------------------------------------------------------------- /components/center/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/center/types/index.d.ts -------------------------------------------------------------------------------- /components/checkbox/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/API.md -------------------------------------------------------------------------------- /components/checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/README.md -------------------------------------------------------------------------------- /components/checkbox/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/d2.config.js -------------------------------------------------------------------------------- /components/checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/package.json -------------------------------------------------------------------------------- /components/checkbox/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/src/index.js -------------------------------------------------------------------------------- /components/checkbox/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/checkbox/types/index.d.ts -------------------------------------------------------------------------------- /components/chip/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/API.md -------------------------------------------------------------------------------- /components/chip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/README.md -------------------------------------------------------------------------------- /components/chip/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/d2.config.js -------------------------------------------------------------------------------- /components/chip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/package.json -------------------------------------------------------------------------------- /components/chip/src/chip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/src/chip.js -------------------------------------------------------------------------------- /components/chip/src/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/src/content.js -------------------------------------------------------------------------------- /components/chip/src/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/src/icon.js -------------------------------------------------------------------------------- /components/chip/src/index.js: -------------------------------------------------------------------------------- 1 | export { Chip } from './chip.js' 2 | -------------------------------------------------------------------------------- /components/chip/src/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/src/remove.js -------------------------------------------------------------------------------- /components/chip/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/chip/types/index.d.ts -------------------------------------------------------------------------------- /components/cover/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/API.md -------------------------------------------------------------------------------- /components/cover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/README.md -------------------------------------------------------------------------------- /components/cover/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/d2.config.js -------------------------------------------------------------------------------- /components/cover/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/package.json -------------------------------------------------------------------------------- /components/cover/src/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/src/cover.js -------------------------------------------------------------------------------- /components/cover/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/src/index.js -------------------------------------------------------------------------------- /components/cover/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/cover/types/index.d.ts -------------------------------------------------------------------------------- /components/css/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/API.md -------------------------------------------------------------------------------- /components/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/README.md -------------------------------------------------------------------------------- /components/css/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/d2.config.js -------------------------------------------------------------------------------- /components/css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/package.json -------------------------------------------------------------------------------- /components/css/src/css-reset/index.js: -------------------------------------------------------------------------------- 1 | export { CssReset } from './css-reset.js' 2 | -------------------------------------------------------------------------------- /components/css/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/src/index.js -------------------------------------------------------------------------------- /components/css/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/css/types/index.d.ts -------------------------------------------------------------------------------- /components/divider/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/API.md -------------------------------------------------------------------------------- /components/divider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/README.md -------------------------------------------------------------------------------- /components/divider/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/d2.config.js -------------------------------------------------------------------------------- /components/divider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/package.json -------------------------------------------------------------------------------- /components/divider/src/divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/src/divider.js -------------------------------------------------------------------------------- /components/divider/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/src/index.js -------------------------------------------------------------------------------- /components/divider/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/divider/types/index.d.ts -------------------------------------------------------------------------------- /components/field/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/API.md -------------------------------------------------------------------------------- /components/field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/README.md -------------------------------------------------------------------------------- /components/field/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/d2.config.js -------------------------------------------------------------------------------- /components/field/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/package.json -------------------------------------------------------------------------------- /components/field/src/field-set/index.js: -------------------------------------------------------------------------------- 1 | export { FieldSet } from './field-set.js' 2 | -------------------------------------------------------------------------------- /components/field/src/field/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/src/field/field.js -------------------------------------------------------------------------------- /components/field/src/field/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/src/field/index.js -------------------------------------------------------------------------------- /components/field/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/src/index.js -------------------------------------------------------------------------------- /components/field/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/field/types/index.d.ts -------------------------------------------------------------------------------- /components/file-input/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/API.md -------------------------------------------------------------------------------- /components/file-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/README.md -------------------------------------------------------------------------------- /components/file-input/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/d2.config.js -------------------------------------------------------------------------------- /components/file-input/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ar.po -------------------------------------------------------------------------------- /components/file-input/i18n/ar_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ar_IQ.po -------------------------------------------------------------------------------- /components/file-input/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ckb.po -------------------------------------------------------------------------------- /components/file-input/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/cs.po -------------------------------------------------------------------------------- /components/file-input/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/da.po -------------------------------------------------------------------------------- /components/file-input/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/en.pot -------------------------------------------------------------------------------- /components/file-input/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/es.po -------------------------------------------------------------------------------- /components/file-input/i18n/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/es_419.po -------------------------------------------------------------------------------- /components/file-input/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/fr.po -------------------------------------------------------------------------------- /components/file-input/i18n/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/hi_IN.po -------------------------------------------------------------------------------- /components/file-input/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/id.po -------------------------------------------------------------------------------- /components/file-input/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/km.po -------------------------------------------------------------------------------- /components/file-input/i18n/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ko_KR.po -------------------------------------------------------------------------------- /components/file-input/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/lo.po -------------------------------------------------------------------------------- /components/file-input/i18n/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/my.po -------------------------------------------------------------------------------- /components/file-input/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/nb.po -------------------------------------------------------------------------------- /components/file-input/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/nl.po -------------------------------------------------------------------------------- /components/file-input/i18n/prs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/prs.po -------------------------------------------------------------------------------- /components/file-input/i18n/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ps.po -------------------------------------------------------------------------------- /components/file-input/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/pt.po -------------------------------------------------------------------------------- /components/file-input/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/pt_BR.po -------------------------------------------------------------------------------- /components/file-input/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ru.po -------------------------------------------------------------------------------- /components/file-input/i18n/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/si.po -------------------------------------------------------------------------------- /components/file-input/i18n/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/sv.po -------------------------------------------------------------------------------- /components/file-input/i18n/tet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/tet.po -------------------------------------------------------------------------------- /components/file-input/i18n/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/tg.po -------------------------------------------------------------------------------- /components/file-input/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/uk.po -------------------------------------------------------------------------------- /components/file-input/i18n/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/ur.po -------------------------------------------------------------------------------- /components/file-input/i18n/uz_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/uz_Latn.po -------------------------------------------------------------------------------- /components/file-input/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/vi.po -------------------------------------------------------------------------------- /components/file-input/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/zh.po -------------------------------------------------------------------------------- /components/file-input/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/i18n/zh_CN.po -------------------------------------------------------------------------------- /components/file-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/package.json -------------------------------------------------------------------------------- /components/file-input/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/file-input/src/index.js -------------------------------------------------------------------------------- /components/header-bar/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/API.md -------------------------------------------------------------------------------- /components/header-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/README.md -------------------------------------------------------------------------------- /components/header-bar/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/d2.config.js -------------------------------------------------------------------------------- /components/header-bar/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ar.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ar_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ar_IQ.po -------------------------------------------------------------------------------- /components/header-bar/i18n/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/bn.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ckb.po -------------------------------------------------------------------------------- /components/header-bar/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/cs.po -------------------------------------------------------------------------------- /components/header-bar/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/da.po -------------------------------------------------------------------------------- /components/header-bar/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/en.pot -------------------------------------------------------------------------------- /components/header-bar/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/es.po -------------------------------------------------------------------------------- /components/header-bar/i18n/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/es_419.po -------------------------------------------------------------------------------- /components/header-bar/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/fr.po -------------------------------------------------------------------------------- /components/header-bar/i18n/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/hi_IN.po -------------------------------------------------------------------------------- /components/header-bar/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/id.po -------------------------------------------------------------------------------- /components/header-bar/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/km.po -------------------------------------------------------------------------------- /components/header-bar/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/lo.po -------------------------------------------------------------------------------- /components/header-bar/i18n/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/my.po -------------------------------------------------------------------------------- /components/header-bar/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/nb.po -------------------------------------------------------------------------------- /components/header-bar/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/nl.po -------------------------------------------------------------------------------- /components/header-bar/i18n/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/or.po -------------------------------------------------------------------------------- /components/header-bar/i18n/prs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/prs.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ps.po -------------------------------------------------------------------------------- /components/header-bar/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/pt.po -------------------------------------------------------------------------------- /components/header-bar/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/pt_BR.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ro.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ru.po -------------------------------------------------------------------------------- /components/header-bar/i18n/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/si.po -------------------------------------------------------------------------------- /components/header-bar/i18n/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/sv.po -------------------------------------------------------------------------------- /components/header-bar/i18n/tet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/tet.po -------------------------------------------------------------------------------- /components/header-bar/i18n/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/tg.po -------------------------------------------------------------------------------- /components/header-bar/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/uk.po -------------------------------------------------------------------------------- /components/header-bar/i18n/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/ur.po -------------------------------------------------------------------------------- /components/header-bar/i18n/uz_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/uz_Latn.po -------------------------------------------------------------------------------- /components/header-bar/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/vi.po -------------------------------------------------------------------------------- /components/header-bar/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/zh.po -------------------------------------------------------------------------------- /components/header-bar/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/i18n/zh_CN.po -------------------------------------------------------------------------------- /components/header-bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/package.json -------------------------------------------------------------------------------- /components/header-bar/src/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/src/apps.js -------------------------------------------------------------------------------- /components/header-bar/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/src/index.js -------------------------------------------------------------------------------- /components/header-bar/src/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/src/logo.js -------------------------------------------------------------------------------- /components/header-bar/src/profile-menu/index.js: -------------------------------------------------------------------------------- 1 | export * from './profile-menu.js' 2 | -------------------------------------------------------------------------------- /components/header-bar/src/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/src/profile.js -------------------------------------------------------------------------------- /components/header-bar/src/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/header-bar/src/title.js -------------------------------------------------------------------------------- /components/help/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/API.md -------------------------------------------------------------------------------- /components/help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/README.md -------------------------------------------------------------------------------- /components/help/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/d2.config.js -------------------------------------------------------------------------------- /components/help/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/package.json -------------------------------------------------------------------------------- /components/help/src/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/src/help.js -------------------------------------------------------------------------------- /components/help/src/index.js: -------------------------------------------------------------------------------- 1 | export { Help } from './help.js' 2 | -------------------------------------------------------------------------------- /components/help/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/help/types/index.d.ts -------------------------------------------------------------------------------- /components/input/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/API.md -------------------------------------------------------------------------------- /components/input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/README.md -------------------------------------------------------------------------------- /components/input/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/d2.config.js -------------------------------------------------------------------------------- /components/input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/package.json -------------------------------------------------------------------------------- /components/input/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/src/index.js -------------------------------------------------------------------------------- /components/input/src/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/src/input/index.js -------------------------------------------------------------------------------- /components/input/src/input/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/src/input/input.js -------------------------------------------------------------------------------- /components/input/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/input/types/index.d.ts -------------------------------------------------------------------------------- /components/label/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/API.md -------------------------------------------------------------------------------- /components/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/README.md -------------------------------------------------------------------------------- /components/label/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/d2.config.js -------------------------------------------------------------------------------- /components/label/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/package.json -------------------------------------------------------------------------------- /components/label/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/src/index.js -------------------------------------------------------------------------------- /components/label/src/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/src/label.js -------------------------------------------------------------------------------- /components/label/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/label/types/index.d.ts -------------------------------------------------------------------------------- /components/layer/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/API.md -------------------------------------------------------------------------------- /components/layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/README.md -------------------------------------------------------------------------------- /components/layer/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/d2.config.js -------------------------------------------------------------------------------- /components/layer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/package.json -------------------------------------------------------------------------------- /components/layer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/src/index.js -------------------------------------------------------------------------------- /components/layer/src/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/src/layer.js -------------------------------------------------------------------------------- /components/layer/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/layer/types/index.d.ts -------------------------------------------------------------------------------- /components/legend/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/API.md -------------------------------------------------------------------------------- /components/legend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/README.md -------------------------------------------------------------------------------- /components/legend/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/d2.config.js -------------------------------------------------------------------------------- /components/legend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/package.json -------------------------------------------------------------------------------- /components/legend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/src/index.js -------------------------------------------------------------------------------- /components/legend/src/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/src/legend.js -------------------------------------------------------------------------------- /components/legend/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/legend/types/index.d.ts -------------------------------------------------------------------------------- /components/loader/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/API.md -------------------------------------------------------------------------------- /components/loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/README.md -------------------------------------------------------------------------------- /components/loader/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/d2.config.js -------------------------------------------------------------------------------- /components/loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/package.json -------------------------------------------------------------------------------- /components/loader/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/src/index.js -------------------------------------------------------------------------------- /components/loader/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/loader/types/index.d.ts -------------------------------------------------------------------------------- /components/logo/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/API.md -------------------------------------------------------------------------------- /components/logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/README.md -------------------------------------------------------------------------------- /components/logo/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/d2.config.js -------------------------------------------------------------------------------- /components/logo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/package.json -------------------------------------------------------------------------------- /components/logo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/src/index.js -------------------------------------------------------------------------------- /components/logo/src/logo-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/src/logo-svg.js -------------------------------------------------------------------------------- /components/logo/src/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/src/logo.js -------------------------------------------------------------------------------- /components/logo/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/logo/types/index.d.ts -------------------------------------------------------------------------------- /components/menu/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/API.md -------------------------------------------------------------------------------- /components/menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/README.md -------------------------------------------------------------------------------- /components/menu/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/d2.config.js -------------------------------------------------------------------------------- /components/menu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/package.json -------------------------------------------------------------------------------- /components/menu/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/src/index.js -------------------------------------------------------------------------------- /components/menu/src/menu/index.js: -------------------------------------------------------------------------------- 1 | export { Menu } from './menu.js' 2 | -------------------------------------------------------------------------------- /components/menu/src/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/src/menu/menu.js -------------------------------------------------------------------------------- /components/menu/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/menu/types/index.d.ts -------------------------------------------------------------------------------- /components/modal/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/API.md -------------------------------------------------------------------------------- /components/modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/README.md -------------------------------------------------------------------------------- /components/modal/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/d2.config.js -------------------------------------------------------------------------------- /components/modal/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/i18n/en.pot -------------------------------------------------------------------------------- /components/modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/package.json -------------------------------------------------------------------------------- /components/modal/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/src/index.js -------------------------------------------------------------------------------- /components/modal/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/modal/types/index.d.ts -------------------------------------------------------------------------------- /components/node/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/API.md -------------------------------------------------------------------------------- /components/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/README.md -------------------------------------------------------------------------------- /components/node/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/d2.config.js -------------------------------------------------------------------------------- /components/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/package.json -------------------------------------------------------------------------------- /components/node/src/index.js: -------------------------------------------------------------------------------- 1 | export { Node } from './node.js' 2 | -------------------------------------------------------------------------------- /components/node/src/leaves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/src/leaves.js -------------------------------------------------------------------------------- /components/node/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/src/node.js -------------------------------------------------------------------------------- /components/node/src/spacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/src/spacer.js -------------------------------------------------------------------------------- /components/node/src/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/src/toggle.js -------------------------------------------------------------------------------- /components/node/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/node/types/index.d.ts -------------------------------------------------------------------------------- /components/notice-box/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/notice-box/API.md -------------------------------------------------------------------------------- /components/notice-box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/notice-box/README.md -------------------------------------------------------------------------------- /components/notice-box/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/notice-box/d2.config.js -------------------------------------------------------------------------------- /components/notice-box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/notice-box/package.json -------------------------------------------------------------------------------- /components/notice-box/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/notice-box/src/index.js -------------------------------------------------------------------------------- /components/organisation-unit-tree/src/__e2e__/namespace.js: -------------------------------------------------------------------------------- 1 | export const namespace = 'OrganisationUnitTree' 2 | -------------------------------------------------------------------------------- /components/pagination/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/API.md -------------------------------------------------------------------------------- /components/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/README.md -------------------------------------------------------------------------------- /components/pagination/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/d2.config.js -------------------------------------------------------------------------------- /components/pagination/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ar.po -------------------------------------------------------------------------------- /components/pagination/i18n/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/bn.po -------------------------------------------------------------------------------- /components/pagination/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ckb.po -------------------------------------------------------------------------------- /components/pagination/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/cs.po -------------------------------------------------------------------------------- /components/pagination/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/da.po -------------------------------------------------------------------------------- /components/pagination/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/en.pot -------------------------------------------------------------------------------- /components/pagination/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/es.po -------------------------------------------------------------------------------- /components/pagination/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/fr.po -------------------------------------------------------------------------------- /components/pagination/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/id.po -------------------------------------------------------------------------------- /components/pagination/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/km.po -------------------------------------------------------------------------------- /components/pagination/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/lo.po -------------------------------------------------------------------------------- /components/pagination/i18n/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/my.po -------------------------------------------------------------------------------- /components/pagination/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/nb.po -------------------------------------------------------------------------------- /components/pagination/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/nl.po -------------------------------------------------------------------------------- /components/pagination/i18n/prs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/prs.po -------------------------------------------------------------------------------- /components/pagination/i18n/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ps.po -------------------------------------------------------------------------------- /components/pagination/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/pt.po -------------------------------------------------------------------------------- /components/pagination/i18n/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ro.po -------------------------------------------------------------------------------- /components/pagination/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ru.po -------------------------------------------------------------------------------- /components/pagination/i18n/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/sv.po -------------------------------------------------------------------------------- /components/pagination/i18n/tet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/tet.po -------------------------------------------------------------------------------- /components/pagination/i18n/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/tg.po -------------------------------------------------------------------------------- /components/pagination/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/uk.po -------------------------------------------------------------------------------- /components/pagination/i18n/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/ur.po -------------------------------------------------------------------------------- /components/pagination/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/vi.po -------------------------------------------------------------------------------- /components/pagination/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/i18n/zh.po -------------------------------------------------------------------------------- /components/pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/package.json -------------------------------------------------------------------------------- /components/pagination/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/pagination/src/index.js -------------------------------------------------------------------------------- /components/popover/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/API.md -------------------------------------------------------------------------------- /components/popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/README.md -------------------------------------------------------------------------------- /components/popover/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/d2.config.js -------------------------------------------------------------------------------- /components/popover/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/package.json -------------------------------------------------------------------------------- /components/popover/src/arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/src/arrow.js -------------------------------------------------------------------------------- /components/popover/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/src/index.js -------------------------------------------------------------------------------- /components/popover/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popover/src/popover.js -------------------------------------------------------------------------------- /components/popper/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/API.md -------------------------------------------------------------------------------- /components/popper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/README.md -------------------------------------------------------------------------------- /components/popper/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/d2.config.js -------------------------------------------------------------------------------- /components/popper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/package.json -------------------------------------------------------------------------------- /components/popper/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/src/index.js -------------------------------------------------------------------------------- /components/popper/src/modifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/src/modifiers.js -------------------------------------------------------------------------------- /components/popper/src/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/src/popper.js -------------------------------------------------------------------------------- /components/popper/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/popper/types/index.d.ts -------------------------------------------------------------------------------- /components/portal/API.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/README.md -------------------------------------------------------------------------------- /components/portal/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/d2.config.js -------------------------------------------------------------------------------- /components/portal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/package.json -------------------------------------------------------------------------------- /components/portal/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/src/index.js -------------------------------------------------------------------------------- /components/portal/src/portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/src/portal.js -------------------------------------------------------------------------------- /components/portal/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/portal/types/index.d.ts -------------------------------------------------------------------------------- /components/radio/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/API.md -------------------------------------------------------------------------------- /components/radio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/README.md -------------------------------------------------------------------------------- /components/radio/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/d2.config.js -------------------------------------------------------------------------------- /components/radio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/package.json -------------------------------------------------------------------------------- /components/radio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/src/index.js -------------------------------------------------------------------------------- /components/radio/src/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/src/radio.js -------------------------------------------------------------------------------- /components/radio/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/radio/types/index.d.ts -------------------------------------------------------------------------------- /components/required/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/required/API.md -------------------------------------------------------------------------------- /components/required/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/required/README.md -------------------------------------------------------------------------------- /components/required/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/required/d2.config.js -------------------------------------------------------------------------------- /components/required/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/required/package.json -------------------------------------------------------------------------------- /components/required/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/required/src/index.js -------------------------------------------------------------------------------- /components/select/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/API.md -------------------------------------------------------------------------------- /components/select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/README.md -------------------------------------------------------------------------------- /components/select/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/d2.config.js -------------------------------------------------------------------------------- /components/select/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ar.po -------------------------------------------------------------------------------- /components/select/i18n/ar_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ar_IQ.po -------------------------------------------------------------------------------- /components/select/i18n/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ckb.po -------------------------------------------------------------------------------- /components/select/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/cs.po -------------------------------------------------------------------------------- /components/select/i18n/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/da.po -------------------------------------------------------------------------------- /components/select/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/en.pot -------------------------------------------------------------------------------- /components/select/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/es.po -------------------------------------------------------------------------------- /components/select/i18n/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/es_419.po -------------------------------------------------------------------------------- /components/select/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/fr.po -------------------------------------------------------------------------------- /components/select/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/id.po -------------------------------------------------------------------------------- /components/select/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/km.po -------------------------------------------------------------------------------- /components/select/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/lo.po -------------------------------------------------------------------------------- /components/select/i18n/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/my.po -------------------------------------------------------------------------------- /components/select/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/nb.po -------------------------------------------------------------------------------- /components/select/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/nl.po -------------------------------------------------------------------------------- /components/select/i18n/prs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/prs.po -------------------------------------------------------------------------------- /components/select/i18n/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ps.po -------------------------------------------------------------------------------- /components/select/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/pt.po -------------------------------------------------------------------------------- /components/select/i18n/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/pt_BR.po -------------------------------------------------------------------------------- /components/select/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ru.po -------------------------------------------------------------------------------- /components/select/i18n/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/sv.po -------------------------------------------------------------------------------- /components/select/i18n/tet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/tet.po -------------------------------------------------------------------------------- /components/select/i18n/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/tg.po -------------------------------------------------------------------------------- /components/select/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/uk.po -------------------------------------------------------------------------------- /components/select/i18n/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/ur.po -------------------------------------------------------------------------------- /components/select/i18n/uz_Latn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/uz_Latn.po -------------------------------------------------------------------------------- /components/select/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/vi.po -------------------------------------------------------------------------------- /components/select/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/zh.po -------------------------------------------------------------------------------- /components/select/i18n/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/i18n/zh_CN.po -------------------------------------------------------------------------------- /components/select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/package.json -------------------------------------------------------------------------------- /components/select/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/src/index.js -------------------------------------------------------------------------------- /components/select/src/simple-single-select/menu/index.js: -------------------------------------------------------------------------------- 1 | export { Menu } from './menu.js' 2 | -------------------------------------------------------------------------------- /components/select/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/select/types/index.d.ts -------------------------------------------------------------------------------- /components/selector-bar/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/API.md -------------------------------------------------------------------------------- /components/selector-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/README.md -------------------------------------------------------------------------------- /components/selector-bar/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/ar.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/cs.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/es.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/fr.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/id.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/lo.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/nb.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/pt.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/ru.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/vi.po -------------------------------------------------------------------------------- /components/selector-bar/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/selector-bar/i18n/zh.po -------------------------------------------------------------------------------- /components/sharing-dialog/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/sharing-dialog/API.md -------------------------------------------------------------------------------- /components/sharing-dialog/src/helpers/index.js: -------------------------------------------------------------------------------- 1 | export * from './helpers.js' 2 | -------------------------------------------------------------------------------- /components/status-icon/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/status-icon/API.md -------------------------------------------------------------------------------- /components/status-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/status-icon/README.md -------------------------------------------------------------------------------- /components/switch/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/API.md -------------------------------------------------------------------------------- /components/switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/README.md -------------------------------------------------------------------------------- /components/switch/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/d2.config.js -------------------------------------------------------------------------------- /components/switch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/package.json -------------------------------------------------------------------------------- /components/switch/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/src/index.js -------------------------------------------------------------------------------- /components/switch/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/switch/types/index.d.ts -------------------------------------------------------------------------------- /components/tab/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/API.md -------------------------------------------------------------------------------- /components/tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/README.md -------------------------------------------------------------------------------- /components/tab/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/d2.config.js -------------------------------------------------------------------------------- /components/tab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/package.json -------------------------------------------------------------------------------- /components/tab/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/src/index.js -------------------------------------------------------------------------------- /components/tab/src/tab-bar/index.js: -------------------------------------------------------------------------------- 1 | export { TabBar } from './tab-bar.js' 2 | -------------------------------------------------------------------------------- /components/tab/src/tab-bar/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/src/tab-bar/tabs.js -------------------------------------------------------------------------------- /components/tab/src/tab/index.js: -------------------------------------------------------------------------------- 1 | export { Tab } from './tab.js' 2 | -------------------------------------------------------------------------------- /components/tab/src/tab/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/src/tab/tab.js -------------------------------------------------------------------------------- /components/tab/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tab/types/index.d.ts -------------------------------------------------------------------------------- /components/table/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/API.md -------------------------------------------------------------------------------- /components/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/README.md -------------------------------------------------------------------------------- /components/table/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/d2.config.js -------------------------------------------------------------------------------- /components/table/i18n/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/ar.po -------------------------------------------------------------------------------- /components/table/i18n/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/cs.po -------------------------------------------------------------------------------- /components/table/i18n/en.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/en.pot -------------------------------------------------------------------------------- /components/table/i18n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/es.po -------------------------------------------------------------------------------- /components/table/i18n/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/es_419.po -------------------------------------------------------------------------------- /components/table/i18n/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/km.po -------------------------------------------------------------------------------- /components/table/i18n/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/lo.po -------------------------------------------------------------------------------- /components/table/i18n/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/nb.po -------------------------------------------------------------------------------- /components/table/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/nl.po -------------------------------------------------------------------------------- /components/table/i18n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/pt.po -------------------------------------------------------------------------------- /components/table/i18n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/ru.po -------------------------------------------------------------------------------- /components/table/i18n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/uk.po -------------------------------------------------------------------------------- /components/table/i18n/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/i18n/zh.po -------------------------------------------------------------------------------- /components/table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/package.json -------------------------------------------------------------------------------- /components/table/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/src/index.js -------------------------------------------------------------------------------- /components/table/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/table/types/index.d.ts -------------------------------------------------------------------------------- /components/tag/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/API.md -------------------------------------------------------------------------------- /components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/README.md -------------------------------------------------------------------------------- /components/tag/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/d2.config.js -------------------------------------------------------------------------------- /components/tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/package.json -------------------------------------------------------------------------------- /components/tag/src/index.js: -------------------------------------------------------------------------------- 1 | export { Tag } from './tag.js' 2 | -------------------------------------------------------------------------------- /components/tag/src/tag-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/src/tag-icon.js -------------------------------------------------------------------------------- /components/tag/src/tag-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/src/tag-text.js -------------------------------------------------------------------------------- /components/tag/src/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/src/tag.js -------------------------------------------------------------------------------- /components/tag/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tag/types/index.d.ts -------------------------------------------------------------------------------- /components/text-area/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/text-area/API.md -------------------------------------------------------------------------------- /components/text-area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/text-area/README.md -------------------------------------------------------------------------------- /components/text-area/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/text-area/d2.config.js -------------------------------------------------------------------------------- /components/text-area/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/text-area/package.json -------------------------------------------------------------------------------- /components/text-area/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/text-area/src/index.js -------------------------------------------------------------------------------- /components/tooltip/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/API.md -------------------------------------------------------------------------------- /components/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/README.md -------------------------------------------------------------------------------- /components/tooltip/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/d2.config.js -------------------------------------------------------------------------------- /components/tooltip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/package.json -------------------------------------------------------------------------------- /components/tooltip/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/src/index.js -------------------------------------------------------------------------------- /components/tooltip/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/tooltip/src/tooltip.js -------------------------------------------------------------------------------- /components/transfer/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/API.md -------------------------------------------------------------------------------- /components/transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/README.md -------------------------------------------------------------------------------- /components/transfer/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/d2.config.js -------------------------------------------------------------------------------- /components/transfer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/package.json -------------------------------------------------------------------------------- /components/transfer/src/__e2e__/common.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/transfer/src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/src/actions.js -------------------------------------------------------------------------------- /components/transfer/src/add-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/src/add-all.js -------------------------------------------------------------------------------- /components/transfer/src/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/src/filter.js -------------------------------------------------------------------------------- /components/transfer/src/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/src/icons.js -------------------------------------------------------------------------------- /components/transfer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/transfer/src/index.js -------------------------------------------------------------------------------- /components/user-avatar/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/user-avatar/API.md -------------------------------------------------------------------------------- /components/user-avatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/components/user-avatar/README.md -------------------------------------------------------------------------------- /constants/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/.eslintrc.js -------------------------------------------------------------------------------- /constants/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/API.md -------------------------------------------------------------------------------- /constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/README.md -------------------------------------------------------------------------------- /constants/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/d2.config.js -------------------------------------------------------------------------------- /constants/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/package.json -------------------------------------------------------------------------------- /constants/src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/colors.js -------------------------------------------------------------------------------- /constants/src/elevations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/elevations.js -------------------------------------------------------------------------------- /constants/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/index.js -------------------------------------------------------------------------------- /constants/src/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/layers.js -------------------------------------------------------------------------------- /constants/src/shared-prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/shared-prop-types.js -------------------------------------------------------------------------------- /constants/src/spacers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/spacers.js -------------------------------------------------------------------------------- /constants/src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/src/theme.js -------------------------------------------------------------------------------- /constants/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/constants/types/index.d.ts -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/.eslintrc.js -------------------------------------------------------------------------------- /cypress/assets/unfetch.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/assets/unfetch.umd.js -------------------------------------------------------------------------------- /cypress/e2e/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/e2e/common.js -------------------------------------------------------------------------------- /cypress/fixtures/FileInput/file.bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/fixtures/FileInput/file.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/fixtures/FileInput/file.md: -------------------------------------------------------------------------------- 1 | # I'm a markdown file! 2 | -------------------------------------------------------------------------------- /cypress/fixtures/FileInput/file.txt: -------------------------------------------------------------------------------- 1 | I'm a text file! 2 | -------------------------------------------------------------------------------- /cypress/fixtures/HeaderBar/applicationTitle.json: -------------------------------------------------------------------------------- 1 | { 2 | "applicationTitle": "Foobar" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/HeaderBar/me.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/fixtures/HeaderBar/me.json -------------------------------------------------------------------------------- /cypress/support/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/all.js -------------------------------------------------------------------------------- /cypress/support/clickWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/clickWith.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/support/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/find.js -------------------------------------------------------------------------------- /cypress/support/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/get.js -------------------------------------------------------------------------------- /cypress/support/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/getAll.js -------------------------------------------------------------------------------- /cypress/support/getFormValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/getFormValue.js -------------------------------------------------------------------------------- /cypress/support/screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/screenshots.js -------------------------------------------------------------------------------- /cypress/support/verifyFormValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/verifyFormValue.js -------------------------------------------------------------------------------- /cypress/support/visitStory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/cypress/support/visitStory.js -------------------------------------------------------------------------------- /d2-style.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/d2-style.config.js -------------------------------------------------------------------------------- /d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/d2.config.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /docs/docs/components/alertbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/alertbar.md -------------------------------------------------------------------------------- /docs/docs/components/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/avatar.md -------------------------------------------------------------------------------- /docs/docs/components/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/button.md -------------------------------------------------------------------------------- /docs/docs/components/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/calendar.md -------------------------------------------------------------------------------- /docs/docs/components/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/card.md -------------------------------------------------------------------------------- /docs/docs/components/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/checkbox.md -------------------------------------------------------------------------------- /docs/docs/components/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/chip.md -------------------------------------------------------------------------------- /docs/docs/components/data-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/data-table.md -------------------------------------------------------------------------------- /docs/docs/components/elevation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/elevation.md -------------------------------------------------------------------------------- /docs/docs/components/fileinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/fileinput.md -------------------------------------------------------------------------------- /docs/docs/components/inputfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/inputfield.md -------------------------------------------------------------------------------- /docs/docs/components/loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/loading.md -------------------------------------------------------------------------------- /docs/docs/components/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/menu.md -------------------------------------------------------------------------------- /docs/docs/components/modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/modal.md -------------------------------------------------------------------------------- /docs/docs/components/notice-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/notice-box.md -------------------------------------------------------------------------------- /docs/docs/components/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/pagination.md -------------------------------------------------------------------------------- /docs/docs/components/popover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/popover.md -------------------------------------------------------------------------------- /docs/docs/components/radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/radio.md -------------------------------------------------------------------------------- /docs/docs/components/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/select.md -------------------------------------------------------------------------------- /docs/docs/components/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/switch.md -------------------------------------------------------------------------------- /docs/docs/components/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/tab.md -------------------------------------------------------------------------------- /docs/docs/components/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/tag.md -------------------------------------------------------------------------------- /docs/docs/components/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/tooltip.md -------------------------------------------------------------------------------- /docs/docs/components/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/components/transfer.md -------------------------------------------------------------------------------- /docs/docs/help/advanced-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/help/advanced-usage.md -------------------------------------------------------------------------------- /docs/docs/help/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/help/migrating.md -------------------------------------------------------------------------------- /docs/docs/help/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/help/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/package/api.md: -------------------------------------------------------------------------------- 1 | # API 2 | 3 | Placeholder document for API reference. 4 | -------------------------------------------------------------------------------- /docs/docs/package/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/package/changelog.md -------------------------------------------------------------------------------- /docs/docs/patterns/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/patterns/glossary.md -------------------------------------------------------------------------------- /docs/docs/patterns/large-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/patterns/large-data.md -------------------------------------------------------------------------------- /docs/docs/patterns/writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/patterns/writing.md -------------------------------------------------------------------------------- /docs/docs/principles/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/principles/color.md -------------------------------------------------------------------------------- /docs/docs/principles/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/principles/forms.md -------------------------------------------------------------------------------- /docs/docs/principles/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/principles/icons.md -------------------------------------------------------------------------------- /docs/docs/principles/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/principles/layout.md -------------------------------------------------------------------------------- /docs/docs/principles/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/principles/typography.md -------------------------------------------------------------------------------- /docs/docs/recipes/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/recipes/recipes.md -------------------------------------------------------------------------------- /docs/docs/recipes/ui-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/recipes/ui-table.md -------------------------------------------------------------------------------- /docs/docs/utilities/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docs/utilities/constants.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/DocFigure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/src/components/DocFigure.jsx -------------------------------------------------------------------------------- /docs/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/src/constants.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/images/addons-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/addons-bar.png -------------------------------------------------------------------------------- /docs/static/images/alertbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/alertbar.png -------------------------------------------------------------------------------- /docs/static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/avatar.png -------------------------------------------------------------------------------- /docs/static/images/btn-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/btn-basic.jpg -------------------------------------------------------------------------------- /docs/static/images/btn-link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/btn-link.jpg -------------------------------------------------------------------------------- /docs/static/images/btn-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/btn-link.png -------------------------------------------------------------------------------- /docs/static/images/btn-primary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/btn-primary.jpg -------------------------------------------------------------------------------- /docs/static/images/btn-split.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/btn-split.jpg -------------------------------------------------------------------------------- /docs/static/images/button-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/button-icon.png -------------------------------------------------------------------------------- /docs/static/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/button.png -------------------------------------------------------------------------------- /docs/static/images/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/card.jpg -------------------------------------------------------------------------------- /docs/static/images/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/card.png -------------------------------------------------------------------------------- /docs/static/images/checkbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/checkbox.jpg -------------------------------------------------------------------------------- /docs/static/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/checkbox.png -------------------------------------------------------------------------------- /docs/static/images/chip-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/chip-icon.jpg -------------------------------------------------------------------------------- /docs/static/images/chip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/chip-icon.png -------------------------------------------------------------------------------- /docs/static/images/chip-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/chip-table.jpg -------------------------------------------------------------------------------- /docs/static/images/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/chip.png -------------------------------------------------------------------------------- /docs/static/images/color-scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/color-scale.jpg -------------------------------------------------------------------------------- /docs/static/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/comment.png -------------------------------------------------------------------------------- /docs/static/images/data-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/data-table.png -------------------------------------------------------------------------------- /docs/static/images/docs-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/docs-page.png -------------------------------------------------------------------------------- /docs/static/images/docs-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/docs-tab.png -------------------------------------------------------------------------------- /docs/static/images/elevation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/elevation.jpg -------------------------------------------------------------------------------- /docs/static/images/elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/elevation.png -------------------------------------------------------------------------------- /docs/static/images/file-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/file-upload.png -------------------------------------------------------------------------------- /docs/static/images/form-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/form-demo.png -------------------------------------------------------------------------------- /docs/static/images/grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/grouping.png -------------------------------------------------------------------------------- /docs/static/images/icon-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/icon-button.jpg -------------------------------------------------------------------------------- /docs/static/images/icon-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/icon-list.jpg -------------------------------------------------------------------------------- /docs/static/images/input-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input-email.png -------------------------------------------------------------------------------- /docs/static/images/input-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input-error.png -------------------------------------------------------------------------------- /docs/static/images/input-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input-sizes.png -------------------------------------------------------------------------------- /docs/static/images/input-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input-url.png -------------------------------------------------------------------------------- /docs/static/images/input-valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input-valid.png -------------------------------------------------------------------------------- /docs/static/images/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/input.png -------------------------------------------------------------------------------- /docs/static/images/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/loader.png -------------------------------------------------------------------------------- /docs/static/images/menu-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/menu-icons.png -------------------------------------------------------------------------------- /docs/static/images/menu-levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/menu-levels.png -------------------------------------------------------------------------------- /docs/static/images/menu-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/menu-size.png -------------------------------------------------------------------------------- /docs/static/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/menu.png -------------------------------------------------------------------------------- /docs/static/images/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/menuitem.png -------------------------------------------------------------------------------- /docs/static/images/modal-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/modal-error.png -------------------------------------------------------------------------------- /docs/static/images/modal-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/modal-large.jpg -------------------------------------------------------------------------------- /docs/static/images/modal-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/modal-small.jpg -------------------------------------------------------------------------------- /docs/static/images/modal-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/modal-task.png -------------------------------------------------------------------------------- /docs/static/images/pageloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/pageloader.png -------------------------------------------------------------------------------- /docs/static/images/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/pagination.png -------------------------------------------------------------------------------- /docs/static/images/popover-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/popover-.jpg -------------------------------------------------------------------------------- /docs/static/images/popover-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/popover-2x.png -------------------------------------------------------------------------------- /docs/static/images/popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/popover.png -------------------------------------------------------------------------------- /docs/static/images/radio-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/radio-size.png -------------------------------------------------------------------------------- /docs/static/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/radio.png -------------------------------------------------------------------------------- /docs/static/images/rich-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/rich-text.png -------------------------------------------------------------------------------- /docs/static/images/rt-mentions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/rt-mentions.png -------------------------------------------------------------------------------- /docs/static/images/rt-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/rt-preview.png -------------------------------------------------------------------------------- /docs/static/images/rt-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/rt-tools.png -------------------------------------------------------------------------------- /docs/static/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/select.png -------------------------------------------------------------------------------- /docs/static/images/stacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/stacking.png -------------------------------------------------------------------------------- /docs/static/images/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/switch.png -------------------------------------------------------------------------------- /docs/static/images/table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/table.jpg -------------------------------------------------------------------------------- /docs/static/images/table@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/table@2x.png -------------------------------------------------------------------------------- /docs/static/images/tabs-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs-fixed.jpg -------------------------------------------------------------------------------- /docs/static/images/tabs-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs-fixed.png -------------------------------------------------------------------------------- /docs/static/images/tabs-fluid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs-fluid.jpg -------------------------------------------------------------------------------- /docs/static/images/tabs-fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs-fluid.png -------------------------------------------------------------------------------- /docs/static/images/tabs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs.jpg -------------------------------------------------------------------------------- /docs/static/images/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs.png -------------------------------------------------------------------------------- /docs/static/images/tabs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tabs@2x.png -------------------------------------------------------------------------------- /docs/static/images/tag/tag-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tag/tag-red.png -------------------------------------------------------------------------------- /docs/static/images/tag/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tag/tag.png -------------------------------------------------------------------------------- /docs/static/images/test-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/test-color.png -------------------------------------------------------------------------------- /docs/static/images/text-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/text-input.png -------------------------------------------------------------------------------- /docs/static/images/tooltip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tooltip.jpg -------------------------------------------------------------------------------- /docs/static/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tooltip.png -------------------------------------------------------------------------------- /docs/static/images/tooltip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/tooltip@2x.png -------------------------------------------------------------------------------- /docs/static/images/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/images/transfer.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /icons/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/.eslintrc.js -------------------------------------------------------------------------------- /icons/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/API.md -------------------------------------------------------------------------------- /icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/README.md -------------------------------------------------------------------------------- /icons/__tests__/svgr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/__tests__/svgr.test.js -------------------------------------------------------------------------------- /icons/d2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/d2.config.js -------------------------------------------------------------------------------- /icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/package.json -------------------------------------------------------------------------------- /icons/src/icons.prod.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/icons.prod.stories.js -------------------------------------------------------------------------------- /icons/src/svg/add-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/add-16.svg -------------------------------------------------------------------------------- /icons/src/svg/add-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/add-24.svg -------------------------------------------------------------------------------- /icons/src/svg/add-circle-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/add-circle-16.svg -------------------------------------------------------------------------------- /icons/src/svg/add-circle-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/add-circle-24.svg -------------------------------------------------------------------------------- /icons/src/svg/apps-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/apps-16.svg -------------------------------------------------------------------------------- /icons/src/svg/apps-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/apps-24.svg -------------------------------------------------------------------------------- /icons/src/svg/archive-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/archive-16.svg -------------------------------------------------------------------------------- /icons/src/svg/archive-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/archive-24.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-down-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-down-16.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-down-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-down-24.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-left-16.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-left-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-left-24.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-right-16.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-right-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-right-24.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-up-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-up-16.svg -------------------------------------------------------------------------------- /icons/src/svg/arrow-up-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/arrow-up-24.svg -------------------------------------------------------------------------------- /icons/src/svg/at-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/at-16.svg -------------------------------------------------------------------------------- /icons/src/svg/at-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/at-24.svg -------------------------------------------------------------------------------- /icons/src/svg/attachment-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/attachment-16.svg -------------------------------------------------------------------------------- /icons/src/svg/attachment-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/attachment-24.svg -------------------------------------------------------------------------------- /icons/src/svg/block-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/block-16.svg -------------------------------------------------------------------------------- /icons/src/svg/block-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/block-24.svg -------------------------------------------------------------------------------- /icons/src/svg/calendar-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/calendar-16.svg -------------------------------------------------------------------------------- /icons/src/svg/calendar-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/calendar-24.svg -------------------------------------------------------------------------------- /icons/src/svg/checkmark-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/checkmark-12.svg -------------------------------------------------------------------------------- /icons/src/svg/checkmark-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/checkmark-16.svg -------------------------------------------------------------------------------- /icons/src/svg/checkmark-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/checkmark-24.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-down-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-down-16.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-down-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-down-24.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-left-16.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-left-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-left-24.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-right-16.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-right-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-right-24.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-up-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-up-16.svg -------------------------------------------------------------------------------- /icons/src/svg/chevron-up-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/chevron-up-24.svg -------------------------------------------------------------------------------- /icons/src/svg/clock-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/clock-16.svg -------------------------------------------------------------------------------- /icons/src/svg/clock-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/clock-24.svg -------------------------------------------------------------------------------- /icons/src/svg/clock-history-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/clock-history-16.svg -------------------------------------------------------------------------------- /icons/src/svg/clock-history-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/clock-history-24.svg -------------------------------------------------------------------------------- /icons/src/svg/color-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/color-16.svg -------------------------------------------------------------------------------- /icons/src/svg/color-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/color-24.svg -------------------------------------------------------------------------------- /icons/src/svg/copy-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/copy-16.svg -------------------------------------------------------------------------------- /icons/src/svg/copy-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/copy-24.svg -------------------------------------------------------------------------------- /icons/src/svg/cross-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/cross-16.svg -------------------------------------------------------------------------------- /icons/src/svg/cross-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/cross-24.svg -------------------------------------------------------------------------------- /icons/src/svg/data-integer-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/data-integer-16.svg -------------------------------------------------------------------------------- /icons/src/svg/data-integer-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/data-integer-24.svg -------------------------------------------------------------------------------- /icons/src/svg/data-string-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/data-string-16.svg -------------------------------------------------------------------------------- /icons/src/svg/data-string-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/data-string-24.svg -------------------------------------------------------------------------------- /icons/src/svg/delete-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/delete-16.svg -------------------------------------------------------------------------------- /icons/src/svg/delete-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/delete-24.svg -------------------------------------------------------------------------------- /icons/src/svg/download-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/download-16.svg -------------------------------------------------------------------------------- /icons/src/svg/download-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/download-24.svg -------------------------------------------------------------------------------- /icons/src/svg/drag-handle-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/drag-handle-16.svg -------------------------------------------------------------------------------- /icons/src/svg/drag-handle-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/drag-handle-24.svg -------------------------------------------------------------------------------- /icons/src/svg/duplicate-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/duplicate-16.svg -------------------------------------------------------------------------------- /icons/src/svg/duplicate-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/duplicate-24.svg -------------------------------------------------------------------------------- /icons/src/svg/edit-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/edit-16.svg -------------------------------------------------------------------------------- /icons/src/svg/edit-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/edit-24.svg -------------------------------------------------------------------------------- /icons/src/svg/edit-items-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/edit-items-16.svg -------------------------------------------------------------------------------- /icons/src/svg/edit-items-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/edit-items-24.svg -------------------------------------------------------------------------------- /icons/src/svg/empty-frame-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/empty-frame-16.svg -------------------------------------------------------------------------------- /icons/src/svg/empty-frame-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/empty-frame-24.svg -------------------------------------------------------------------------------- /icons/src/svg/error-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/error-16.svg -------------------------------------------------------------------------------- /icons/src/svg/error-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/error-24.svg -------------------------------------------------------------------------------- /icons/src/svg/error-filled-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/error-filled-16.svg -------------------------------------------------------------------------------- /icons/src/svg/error-filled-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/error-filled-24.svg -------------------------------------------------------------------------------- /icons/src/svg/export-items-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/export-items-24.svg -------------------------------------------------------------------------------- /icons/src/svg/face-add-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/face-add-16.svg -------------------------------------------------------------------------------- /icons/src/svg/face-add-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/face-add-24.svg -------------------------------------------------------------------------------- /icons/src/svg/file-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/file-16.svg -------------------------------------------------------------------------------- /icons/src/svg/file-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/file-24.svg -------------------------------------------------------------------------------- /icons/src/svg/file-document-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/file-document-16.svg -------------------------------------------------------------------------------- /icons/src/svg/file-document-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/file-document-24.svg -------------------------------------------------------------------------------- /icons/src/svg/filter-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/filter-16.svg -------------------------------------------------------------------------------- /icons/src/svg/filter-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/filter-24.svg -------------------------------------------------------------------------------- /icons/src/svg/flag-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/flag-16.svg -------------------------------------------------------------------------------- /icons/src/svg/flag-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/flag-24.svg -------------------------------------------------------------------------------- /icons/src/svg/folder-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/folder-16.svg -------------------------------------------------------------------------------- /icons/src/svg/folder-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/folder-24.svg -------------------------------------------------------------------------------- /icons/src/svg/folder-open-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/folder-open-16.svg -------------------------------------------------------------------------------- /icons/src/svg/folder-open-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/folder-open-24.svg -------------------------------------------------------------------------------- /icons/src/svg/fullscreen-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/fullscreen-16.svg -------------------------------------------------------------------------------- /icons/src/svg/fullscreen-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/fullscreen-24.svg -------------------------------------------------------------------------------- /icons/src/svg/home-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/home-16.svg -------------------------------------------------------------------------------- /icons/src/svg/home-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/home-24.svg -------------------------------------------------------------------------------- /icons/src/svg/image-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/image-16.svg -------------------------------------------------------------------------------- /icons/src/svg/image-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/image-24.svg -------------------------------------------------------------------------------- /icons/src/svg/import-items-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/import-items-24.svg -------------------------------------------------------------------------------- /icons/src/svg/info-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/info-16.svg -------------------------------------------------------------------------------- /icons/src/svg/info-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/info-24.svg -------------------------------------------------------------------------------- /icons/src/svg/info-filled-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/info-filled-16.svg -------------------------------------------------------------------------------- /icons/src/svg/info-filled-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/info-filled-24.svg -------------------------------------------------------------------------------- /icons/src/svg/launch-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/launch-16.svg -------------------------------------------------------------------------------- /icons/src/svg/launch-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/launch-24.svg -------------------------------------------------------------------------------- /icons/src/svg/layout-rows-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/layout-rows-16.svg -------------------------------------------------------------------------------- /icons/src/svg/layout-rows-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/layout-rows-24.svg -------------------------------------------------------------------------------- /icons/src/svg/legend-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/legend-16.svg -------------------------------------------------------------------------------- /icons/src/svg/legend-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/legend-24.svg -------------------------------------------------------------------------------- /icons/src/svg/link-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/link-16.svg -------------------------------------------------------------------------------- /icons/src/svg/link-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/link-24.svg -------------------------------------------------------------------------------- /icons/src/svg/link-off-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/link-off-16.svg -------------------------------------------------------------------------------- /icons/src/svg/link-off-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/link-off-24.svg -------------------------------------------------------------------------------- /icons/src/svg/list-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/list-16.svg -------------------------------------------------------------------------------- /icons/src/svg/list-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/list-24.svg -------------------------------------------------------------------------------- /icons/src/svg/location-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/location-16.svg -------------------------------------------------------------------------------- /icons/src/svg/location-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/location-24.svg -------------------------------------------------------------------------------- /icons/src/svg/lock-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/lock-16.svg -------------------------------------------------------------------------------- /icons/src/svg/lock-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/lock-24.svg -------------------------------------------------------------------------------- /icons/src/svg/lock-open-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/lock-open-16.svg -------------------------------------------------------------------------------- /icons/src/svg/lock-open-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/lock-open-24.svg -------------------------------------------------------------------------------- /icons/src/svg/log-out-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/log-out-16.svg -------------------------------------------------------------------------------- /icons/src/svg/log-out-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/log-out-24.svg -------------------------------------------------------------------------------- /icons/src/svg/mail-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/mail-16.svg -------------------------------------------------------------------------------- /icons/src/svg/mail-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/mail-24.svg -------------------------------------------------------------------------------- /icons/src/svg/mail-open-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/mail-open-16.svg -------------------------------------------------------------------------------- /icons/src/svg/mail-open-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/mail-open-24.svg -------------------------------------------------------------------------------- /icons/src/svg/messages-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/messages-16.svg -------------------------------------------------------------------------------- /icons/src/svg/messages-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/messages-24.svg -------------------------------------------------------------------------------- /icons/src/svg/more-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/more-16.svg -------------------------------------------------------------------------------- /icons/src/svg/more-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/more-24.svg -------------------------------------------------------------------------------- /icons/src/svg/move-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/move-16.svg -------------------------------------------------------------------------------- /icons/src/svg/move-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/move-24.svg -------------------------------------------------------------------------------- /icons/src/svg/push-left-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/push-left-16.svg -------------------------------------------------------------------------------- /icons/src/svg/push-left-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/push-left-24.svg -------------------------------------------------------------------------------- /icons/src/svg/push-right-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/push-right-16.svg -------------------------------------------------------------------------------- /icons/src/svg/push-right-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/push-right-24.svg -------------------------------------------------------------------------------- /icons/src/svg/question-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/question-16.svg -------------------------------------------------------------------------------- /icons/src/svg/question-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/question-24.svg -------------------------------------------------------------------------------- /icons/src/svg/queue-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/queue-16.svg -------------------------------------------------------------------------------- /icons/src/svg/queue-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/queue-24.svg -------------------------------------------------------------------------------- /icons/src/svg/redo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/redo-16.svg -------------------------------------------------------------------------------- /icons/src/svg/redo-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/redo-24.svg -------------------------------------------------------------------------------- /icons/src/svg/reorder-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/reorder-16.svg -------------------------------------------------------------------------------- /icons/src/svg/reorder-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/reorder-24.svg -------------------------------------------------------------------------------- /icons/src/svg/reply-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/reply-16.svg -------------------------------------------------------------------------------- /icons/src/svg/reply-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/reply-24.svg -------------------------------------------------------------------------------- /icons/src/svg/ruler-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/ruler-16.svg -------------------------------------------------------------------------------- /icons/src/svg/ruler-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/ruler-24.svg -------------------------------------------------------------------------------- /icons/src/svg/save-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/save-16.svg -------------------------------------------------------------------------------- /icons/src/svg/save-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/save-24.svg -------------------------------------------------------------------------------- /icons/src/svg/search-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/search-16.svg -------------------------------------------------------------------------------- /icons/src/svg/search-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/search-24.svg -------------------------------------------------------------------------------- /icons/src/svg/settings-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/settings-16.svg -------------------------------------------------------------------------------- /icons/src/svg/settings-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/settings-24.svg -------------------------------------------------------------------------------- /icons/src/svg/share-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/share-16.svg -------------------------------------------------------------------------------- /icons/src/svg/share-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/share-24.svg -------------------------------------------------------------------------------- /icons/src/svg/star-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/star-16.svg -------------------------------------------------------------------------------- /icons/src/svg/star-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/star-24.svg -------------------------------------------------------------------------------- /icons/src/svg/star-filled-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/star-filled-16.svg -------------------------------------------------------------------------------- /icons/src/svg/star-filled-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/star-filled-24.svg -------------------------------------------------------------------------------- /icons/src/svg/subscribe-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subscribe-16.svg -------------------------------------------------------------------------------- /icons/src/svg/subscribe-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subscribe-24.svg -------------------------------------------------------------------------------- /icons/src/svg/subscribe-off-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subscribe-off-16.svg -------------------------------------------------------------------------------- /icons/src/svg/subscribe-off-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subscribe-off-24.svg -------------------------------------------------------------------------------- /icons/src/svg/subtract-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subtract-16.svg -------------------------------------------------------------------------------- /icons/src/svg/subtract-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/subtract-24.svg -------------------------------------------------------------------------------- /icons/src/svg/sync-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/sync-16.svg -------------------------------------------------------------------------------- /icons/src/svg/sync-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/sync-24.svg -------------------------------------------------------------------------------- /icons/src/svg/table-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/table-16.svg -------------------------------------------------------------------------------- /icons/src/svg/table-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/table-24.svg -------------------------------------------------------------------------------- /icons/src/svg/text-bold-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-bold-16.svg -------------------------------------------------------------------------------- /icons/src/svg/text-bold-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-bold-24.svg -------------------------------------------------------------------------------- /icons/src/svg/text-box-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-box-16.svg -------------------------------------------------------------------------------- /icons/src/svg/text-box-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-box-24.svg -------------------------------------------------------------------------------- /icons/src/svg/text-heading-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-heading-16.svg -------------------------------------------------------------------------------- /icons/src/svg/text-heading-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-heading-24.svg -------------------------------------------------------------------------------- /icons/src/svg/text-italic-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-italic-16.svg -------------------------------------------------------------------------------- /icons/src/svg/text-italic-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/text-italic-24.svg -------------------------------------------------------------------------------- /icons/src/svg/thumb-down-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/thumb-down-16.svg -------------------------------------------------------------------------------- /icons/src/svg/thumb-down-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/thumb-down-24.svg -------------------------------------------------------------------------------- /icons/src/svg/thumb-up-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/thumb-up-16.svg -------------------------------------------------------------------------------- /icons/src/svg/thumb-up-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/thumb-up-24.svg -------------------------------------------------------------------------------- /icons/src/svg/translate-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/translate-16.svg -------------------------------------------------------------------------------- /icons/src/svg/translate-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/translate-24.svg -------------------------------------------------------------------------------- /icons/src/svg/undo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/undo-16.svg -------------------------------------------------------------------------------- /icons/src/svg/undo-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/undo-24.svg -------------------------------------------------------------------------------- /icons/src/svg/upload-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/upload-16.svg -------------------------------------------------------------------------------- /icons/src/svg/upload-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/upload-24.svg -------------------------------------------------------------------------------- /icons/src/svg/user-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/user-16.svg -------------------------------------------------------------------------------- /icons/src/svg/user-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/user-24.svg -------------------------------------------------------------------------------- /icons/src/svg/user-group-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/user-group-16.svg -------------------------------------------------------------------------------- /icons/src/svg/user-group-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/user-group-24.svg -------------------------------------------------------------------------------- /icons/src/svg/view-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/view-16.svg -------------------------------------------------------------------------------- /icons/src/svg/view-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/view-24.svg -------------------------------------------------------------------------------- /icons/src/svg/view-off-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/view-off-16.svg -------------------------------------------------------------------------------- /icons/src/svg/view-off-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/view-off-24.svg -------------------------------------------------------------------------------- /icons/src/svg/warning-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/warning-16.svg -------------------------------------------------------------------------------- /icons/src/svg/warning-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/warning-24.svg -------------------------------------------------------------------------------- /icons/src/svg/window-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/window-16.svg -------------------------------------------------------------------------------- /icons/src/svg/window-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/window-24.svg -------------------------------------------------------------------------------- /icons/src/svg/world-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/world-16.svg -------------------------------------------------------------------------------- /icons/src/svg/world-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/src/svg/world-24.svg -------------------------------------------------------------------------------- /icons/svgr.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/svgr.config.js -------------------------------------------------------------------------------- /icons/templates/icon-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/templates/icon-template.js -------------------------------------------------------------------------------- /icons/templates/index-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/templates/index-template.js -------------------------------------------------------------------------------- /icons/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/icons/types/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.config.shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/jest.config.shared.js -------------------------------------------------------------------------------- /jest.enzyme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/jest.enzyme.config.js -------------------------------------------------------------------------------- /jest.globals.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/jest.globals.config.js -------------------------------------------------------------------------------- /jest.testing-library.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/jest.testing-library.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-world.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/build-world.sh -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/create-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/create-artifact.sh -------------------------------------------------------------------------------- /scripts/cypress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/cypress.js -------------------------------------------------------------------------------- /scripts/extract-artifact.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tar -xvf lib-build.tar 4 | -------------------------------------------------------------------------------- /scripts/generate-api-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/generate-api-docs.js -------------------------------------------------------------------------------- /scripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/scripts/setup.js -------------------------------------------------------------------------------- /storybook/config/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/main.js -------------------------------------------------------------------------------- /storybook/config/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/manager-head.html -------------------------------------------------------------------------------- /storybook/config/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/manager.js -------------------------------------------------------------------------------- /storybook/config/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/preview-head.html -------------------------------------------------------------------------------- /storybook/config/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/preview.js -------------------------------------------------------------------------------- /storybook/config/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/config/theme.js -------------------------------------------------------------------------------- /storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/package.json -------------------------------------------------------------------------------- /storybook/src/babel-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/src/babel-config.js -------------------------------------------------------------------------------- /storybook/src/load-stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/src/load-stories.js -------------------------------------------------------------------------------- /storybook/src/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/src/paths.js -------------------------------------------------------------------------------- /storybook/src/ui-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/src/ui-packages.js -------------------------------------------------------------------------------- /storybook/src/webpack-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/src/webpack-config.js -------------------------------------------------------------------------------- /storybook/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/static/favicon.ico -------------------------------------------------------------------------------- /storybook/static/manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/static/manager.css -------------------------------------------------------------------------------- /storybook/static/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/storybook/static/preview.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhis2/ui/HEAD/yarn.lock --------------------------------------------------------------------------------