@indico-data/design-system 2.1.2 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/lib/build/generated/iconTypes.d.ts +2 -0
- package/lib/index.css +37 -0
- package/lib/index.d.ts +11 -1364
- package/lib/index.esm.css +37 -0
- package/lib/index.esm.js +28288 -12273
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +28289 -12276
- package/lib/index.js.map +1 -1
- package/lib/{components → src/components}/button/types.d.ts +1 -1
- package/lib/src/components/icons/Icon.d.ts +4 -0
- package/lib/src/components/icons/Icon.stories.d.ts +10 -0
- package/lib/src/components/icons/index.d.ts +1 -0
- package/lib/src/components/icons/types.d.ts +10 -0
- package/lib/{components → src/components}/index.d.ts +1 -0
- package/lib/src/index.d.ts +8 -0
- package/lib/{legacy → src/legacy}/components/Toggle/Toggle.d.ts +2 -1
- package/lib/src/legacy/components/Toggle/Toggle.stories.d.ts +21 -0
- package/lib/{legacy → src/legacy}/components/index.d.ts +0 -1
- package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/NoInputDatePicker.d.ts +2 -1
- package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/CircleSpinner.d.ts +3 -4
- package/lib/src/legacy/components/text-truncate/TextTruncate.test.d.ts +1 -0
- package/lib/src/types.d.ts +12 -0
- package/package.json +17 -14
- package/rollup.config.mjs +2 -2
- package/scripts/generateIconTypes.js +50 -0
- package/src/components/button/Button.tsx +1 -2
- package/src/components/button/types.ts +2 -1
- package/src/components/icons/Icon.mdx +49 -0
- package/src/components/icons/Icon.stories.tsx +248 -0
- package/src/components/icons/Icon.tsx +45 -0
- package/src/components/icons/__tests__/Icon.test.tsx +104 -0
- package/src/components/icons/index.ts +1 -0
- package/src/{legacy/components/Icon → components/icons}/indicons.tsx +17 -17
- package/src/components/icons/styles/Icon.scss +23 -0
- package/src/components/icons/types.ts +12 -0
- package/src/components/index.ts +1 -0
- package/src/index.ts +1 -3
- package/src/legacy/components/Accordion/Accordion.tsx +2 -2
- package/src/legacy/components/ListTable/Header/Header.tsx +1 -2
- package/src/legacy/components/ListTable/ListTable.stories.tsx +2 -1
- package/src/legacy/components/Navigation/Drawer/Drawer.tsx +2 -2
- package/src/legacy/components/Navigation/Drawer/DrawerLinkList.tsx +2 -2
- package/src/legacy/components/Toggle/Toggle.styles.ts +1 -1
- package/src/legacy/components/Toggle/Toggle.tsx +17 -4
- package/src/legacy/components/basic-section/SectionTable/SectionTable.tsx +1 -1
- package/src/legacy/components/buttons/Button/Button.tsx +1 -1
- package/src/legacy/components/buttons/IconButton/IconButton.tsx +2 -2
- package/src/legacy/components/dropdowns/BorderSelect/BorderSelect.tsx +1 -1
- package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.stories.tsx +8 -7
- package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.styles.ts +3 -1
- package/src/legacy/components/dropdowns/MultiCombobox/MultiCombobox.tsx +2 -2
- package/src/legacy/components/dropdowns/Select/Select.tsx +3 -3
- package/src/legacy/components/dropdowns/SingleCombobox/SingleCombobox.tsx +2 -2
- package/src/legacy/components/index.ts +1 -1
- package/src/legacy/components/inputs/EditableInput/EditableInput.tsx +1 -1
- package/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.stories.tsx +2 -2
- package/src/legacy/components/inputs/NoInputDatePicker/NoInputDatePicker.tsx +5 -4
- package/src/legacy/components/inputs/NumberInput/NumberInput.tsx +1 -1
- package/src/legacy/components/inputs/SearchInput/SearchInput.tsx +1 -1
- package/src/legacy/components/loading-indicators/CircleSpinner/CircleSpinner.tsx +8 -8
- package/src/legacy/components/user-feedback/Shrug/Shrug.styles.ts +2 -0
- package/src/legacy/components/user-feedback/Shrug/Shrug.tsx +4 -4
- package/src/styles/index.scss +1 -0
- package/src/styles/variables/_icons.scss +7 -0
- package/src/styles/variables/index.scss +2 -1
- package/src/types.ts +3 -10
- package/tsconfig.json +1 -1
- package/lib/legacy/components/Icon/Icon.d.ts +0 -17
- package/lib/legacy/components/Icon/Icon.stories.d.ts +0 -42
- package/lib/legacy/components/Icon/faIcons.d.ts +0 -76
- package/lib/legacy/components/Icon/index.d.ts +0 -3
- package/lib/legacy/components/Icon/storyHelpers.d.ts +0 -9
- package/lib/legacy/components/Toggle/Toggle.stories.d.ts +0 -21
- package/lib/types.d.ts +0 -231
- package/src/legacy/components/Icon/Icon.stories.tsx +0 -61
- package/src/legacy/components/Icon/Icon.tsx +0 -76
- package/src/legacy/components/Icon/faIcons.tsx +0 -168
- package/src/legacy/components/Icon/index.ts +0 -3
- package/src/legacy/components/Icon/storyHelpers.tsx +0 -88
- /package/lib/{components → src/components}/button/Button.d.ts +0 -0
- /package/lib/{components → src/components}/button/Button.stories.d.ts +0 -0
- /package/lib/{components → src/components}/button/__tests__/Button.test.d.ts +0 -0
- /package/lib/{components → src/components}/button/enums.d.ts +0 -0
- /package/lib/{components → src/components}/button/index.d.ts +0 -0
- /package/lib/{components → src/components}/grid/col/Col.d.ts +0 -0
- /package/lib/{components → src/components}/grid/col/Col.stories.d.ts +0 -0
- /package/lib/{components → src/components}/grid/container/Container.d.ts +0 -0
- /package/lib/{components → src/components}/grid/container/Container.stories.d.ts +0 -0
- /package/lib/{components → src/components}/grid/index.d.ts +0 -0
- /package/lib/{components → src/components}/grid/row/Row.d.ts +0 -0
- /package/lib/{components → src/components}/grid/row/Row.stories.d.ts +0 -0
- /package/lib/{legacy/components/Navigation/Drawer/__tests__/DrawerLinkList.test.d.ts → src/components/icons/__tests__/Icon.test.d.ts} +0 -0
- /package/lib/{legacy/components/Icon → src/components/icons}/indicons.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Accordion/Accordion.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Accordion/Accordion.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Accordion/Accordion.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Accordion/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/Header/Header.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/Header/Header.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/Header/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/ListTable.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/ListTable.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/ListTable.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/mock-data/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/ListTable/mock-data/mock-data.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/LoadingAwareContainer.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/LoadingAwareContainer.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/LoadingAwareContainer/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/Drawer.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/Drawer.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/DrawerLinkList.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/DrawerLinkList.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/__mocks__/mocks.d.ts +0 -0
- /package/lib/{legacy/components/text-truncate/TextTruncate.test.d.ts → src/legacy/components/Navigation/Drawer/__tests__/DrawerLinkList.test.d.ts} +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/Drawer/types.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Navigation/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Pagination/Pagination.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Pagination/Pagination.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Pagination/Pagination.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Pagination/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Toggle/Toggle.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Toggle/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Tooltip/Tooltip.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Tooltip/Tooltip.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Tooltip/Tooltip.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/Tooltip/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/Section/Section.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/Section/Section.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/Section/Section.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/Section/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBlock/SectionBlock.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBlock/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/SectionBody.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/SectionBody.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/SectionBody.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionBody/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/SectionHeader.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/SectionHeader.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionHeader/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionTable/SectionTable.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionTable/SectionTable.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/SectionTable/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/basic-section/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/Button/Button.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/Button/Button.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/Button/Button.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/Button/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/IconButton/IconButton.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/IconButton/IconButton.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/IconButton/IconButton.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/IconButton/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/commonStyles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/buttons/types.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/BorderSelect.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/BorderSelect.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/BorderSelect/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/MultiCombobox.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/MultiCombobox.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/MultiCombobox/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/Select/Select.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/Select/Select.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/Select/Select.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/Select/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/SingleCombobox.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/SingleCombobox.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/SingleCombobox/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/commonStyles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/types.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/useCombobox.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/dropdowns/utils.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/DatePicker.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/DatePicker.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/DatePicker.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/DatePicker/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/EditableInput.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/EditableInput.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/EditableInput.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/EditableInput/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/NoInputDatePicker.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/NoInputDatePicker.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NoInputDatePicker/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/NumberInput.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/NumberInput.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/NumberInput.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/NumberInput/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/RadioButtons.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/RadioButtons.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/RadioButtons.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioButtons/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/RadioGroup.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/RadioGroup.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/RadioGroup.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/RadioGroup/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/SearchInput.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/SearchInput.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/SearchInput.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/SearchInput/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/TextInput/TextInput.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/TextInput/TextInput.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/TextInput/TextInput.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/TextInput/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/inputs/inputsCommon.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/BarSpinner.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/BarSpinner.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/BarSpinner/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/CirclePulse.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/CirclePulse.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/CirclePulse.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CirclePulse/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/CircleSpinner.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/CircleSpinner/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/LoadingIndicator.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingIndicator/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/LoadingList.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/LoadingList.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/LoadingList/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/PercentageRing.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/PercentageRing.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/PercentageRing/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/RandomLoadingMessage/random-messages.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/loading-indicators/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/ConfirmModal.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/ConfirmModal.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ConfirmModal/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ModalBase/ModalBase.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ModalBase/ModalBase.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ModalBase/ModalBase.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/ModalBase/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/modals/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/text-truncate/TextTruncate.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/text-truncate/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/Shrug.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/Shrug.stories.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/Shrug.styles.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/user-feedback/Shrug/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/components/user-feedback/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/buttons.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/forms.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/layout.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/lists.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/margin-padding.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/media.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/tables.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/typography.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/globals/utility-classes.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/styles/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/animation.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/breakpoints.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/colors.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/margin.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/numbers.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/padding.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/spacings.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/tokens/typography.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/utils/color.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/utils/index.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/utils/number.d.ts +0 -0
- /package/lib/{legacy → src/legacy}/utils/string.d.ts +0 -0
- /package/lib/{setupTests.d.ts → src/setupTests.d.ts} +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderColor.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderColor.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderRadius.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderRadius.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderStyles.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderStyles.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderThickness.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/BorderThickness.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/borders/index.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Colors.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Colors.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/Swatch.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/UtilityClasses.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/UtilityClasses.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/constants.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/hooks.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/colors/index.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/Sizing.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/Sizing.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/sizing/index.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/Typography.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/Typography.stories.d.ts +0 -0
- /package/lib/{stylesAndAnimations → src/stylesAndAnimations}/typography/index.d.ts +0 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,986 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import * as React$1 from 'react';
|
|
4
|
-
import React__default, { ChangeEvent } from 'react';
|
|
5
|
-
import * as styled_components from 'styled-components';
|
|
6
|
-
import { PermafrostComponent, IconName as IconName$1 } from '@/types';
|
|
7
|
-
import { AriaButtonProps } from '@react-types/button';
|
|
8
|
-
import { AriaRadioProps, RadioGroupProps as RadioGroupProps$1, AriaRadioGroupProps } from '@react-types/radio';
|
|
9
|
-
import { DateRange } from 'react-day-picker';
|
|
10
|
-
import { ContainerProps, RowProps, ColProps } from 'react-grid-system';
|
|
11
|
-
|
|
12
|
-
declare const GlobalStyles: () => react_jsx_runtime.JSX.Element;
|
|
13
|
-
|
|
14
|
-
declare const faIcons: {
|
|
15
|
-
'fa-dot-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
16
|
-
'fa-file': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
17
|
-
'fa-file-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
18
|
-
'fa-file-pdf': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
19
|
-
'fa-file-word': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
20
|
-
'fa-check-square': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
21
|
-
'fa-square': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
22
|
-
'fa-angle-double-left': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
23
|
-
'fa-arrow-circle-right': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
24
|
-
'fa-arrow-down': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
25
|
-
'fa-arrow-left': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
26
|
-
'fa-arrow-right': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
27
|
-
'fa-arrow-up': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
28
|
-
'fa-ban': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
29
|
-
'fa-caret-down': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
30
|
-
'fa-caret-up': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
31
|
-
'fa-chart-bar': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
32
|
-
'fa-check': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
33
|
-
'fa-check-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
34
|
-
'fa-circle-notch': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
35
|
-
'fa-clipboard': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
36
|
-
'fa-clock': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
37
|
-
'fa-clone': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
38
|
-
'fa-cloud': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
39
|
-
'fa-cog': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
40
|
-
'fa-cogs': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
41
|
-
'fa-coins': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
42
|
-
'fa-cube': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
43
|
-
'fa-cut': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
44
|
-
'fa-download': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
45
|
-
'fa-exclamation-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
46
|
-
'fa-exclamation-triangle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
47
|
-
'fa-external-link-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
48
|
-
'fa-eye-dropper': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
49
|
-
'fa-file-download': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
50
|
-
'fa-file-export': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
51
|
-
'fa-file-upload': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
52
|
-
'fa-filter': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
53
|
-
'fa-ghost': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
54
|
-
'fa-hat-wizard': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
55
|
-
'fa-info-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
56
|
-
'fa-key': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
57
|
-
'fa-keyboard': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
58
|
-
'fa-layer-group': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
59
|
-
'fa-pencil-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
60
|
-
'fa-plus': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
61
|
-
'fa-plus-square': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
62
|
-
'fa-question-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
63
|
-
'fa-robot': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
64
|
-
'fa-search': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
65
|
-
'fa-sign-out-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
66
|
-
'fa-sliders-h': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
67
|
-
'fa-sync-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
68
|
-
'fa-tag': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
69
|
-
'fa-times': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
70
|
-
'fa-times-circle': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
71
|
-
'fa-tint': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
72
|
-
'fa-toggle-off': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
73
|
-
'fa-toggle-on': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
74
|
-
'fa-trash': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
75
|
-
'fa-trash-alt': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
76
|
-
'fa-undo': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
77
|
-
'fa-user': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
78
|
-
'fa-users': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
79
|
-
'fa-mouse-pointer': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
80
|
-
'fa-step-forward': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
81
|
-
'fa-search-minus': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
82
|
-
'fa-search-plus': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
83
|
-
'fa-table': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
84
|
-
'fa-image': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
85
|
-
'fa-link': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
86
|
-
'fa-list': React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>>;
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
declare const indicons: {
|
|
90
|
-
'indico-o-white': react_jsx_runtime.JSX.Element;
|
|
91
|
-
account: react_jsx_runtime.JSX.Element;
|
|
92
|
-
address: react_jsx_runtime.JSX.Element;
|
|
93
|
-
'api-doc': react_jsx_runtime.JSX.Element;
|
|
94
|
-
'arrow-dots': react_jsx_runtime.JSX.Element;
|
|
95
|
-
'arrow-down': react_jsx_runtime.JSX.Element;
|
|
96
|
-
'arrow-up-circle': react_jsx_runtime.JSX.Element;
|
|
97
|
-
'arrows-cursor': react_jsx_runtime.JSX.Element;
|
|
98
|
-
bookmark: react_jsx_runtime.JSX.Element;
|
|
99
|
-
bookmarks: react_jsx_runtime.JSX.Element;
|
|
100
|
-
'bookmark-saved': react_jsx_runtime.JSX.Element;
|
|
101
|
-
branch: react_jsx_runtime.JSX.Element;
|
|
102
|
-
calendar: react_jsx_runtime.JSX.Element;
|
|
103
|
-
'check-circle': react_jsx_runtime.JSX.Element;
|
|
104
|
-
'circle-help': react_jsx_runtime.JSX.Element;
|
|
105
|
-
check: react_jsx_runtime.JSX.Element;
|
|
106
|
-
checkbox: react_jsx_runtime.JSX.Element;
|
|
107
|
-
'chevron-down': react_jsx_runtime.JSX.Element;
|
|
108
|
-
'chevron-left': react_jsx_runtime.JSX.Element;
|
|
109
|
-
'chevron-right': react_jsx_runtime.JSX.Element;
|
|
110
|
-
'chevron-up': react_jsx_runtime.JSX.Element;
|
|
111
|
-
'classification-document': react_jsx_runtime.JSX.Element;
|
|
112
|
-
'classification-image': react_jsx_runtime.JSX.Element;
|
|
113
|
-
'classification-page': react_jsx_runtime.JSX.Element;
|
|
114
|
-
'classify-and-unbundle': react_jsx_runtime.JSX.Element;
|
|
115
|
-
clipboard: react_jsx_runtime.JSX.Element;
|
|
116
|
-
'coffee-1': react_jsx_runtime.JSX.Element;
|
|
117
|
-
'coffee-2': react_jsx_runtime.JSX.Element;
|
|
118
|
-
'coffee-fail': react_jsx_runtime.JSX.Element;
|
|
119
|
-
coffeecup: react_jsx_runtime.JSX.Element;
|
|
120
|
-
coffeesteam: react_jsx_runtime.JSX.Element;
|
|
121
|
-
cog: react_jsx_runtime.JSX.Element;
|
|
122
|
-
collection: react_jsx_runtime.JSX.Element;
|
|
123
|
-
compare: react_jsx_runtime.JSX.Element;
|
|
124
|
-
'company-name': react_jsx_runtime.JSX.Element;
|
|
125
|
-
'confidence-bar-1': react_jsx_runtime.JSX.Element;
|
|
126
|
-
'confidence-bar-2': react_jsx_runtime.JSX.Element;
|
|
127
|
-
'confidence-bar-3': react_jsx_runtime.JSX.Element;
|
|
128
|
-
'confidence-bar-4': react_jsx_runtime.JSX.Element;
|
|
129
|
-
'confidence-bars': react_jsx_runtime.JSX.Element;
|
|
130
|
-
configure: react_jsx_runtime.JSX.Element;
|
|
131
|
-
'choose-library': react_jsx_runtime.JSX.Element;
|
|
132
|
-
crowdlabel: react_jsx_runtime.JSX.Element;
|
|
133
|
-
currency: react_jsx_runtime.JSX.Element;
|
|
134
|
-
dashboard: react_jsx_runtime.JSX.Element;
|
|
135
|
-
'data-and-access': react_jsx_runtime.JSX.Element;
|
|
136
|
-
database: react_jsx_runtime.JSX.Element;
|
|
137
|
-
document: react_jsx_runtime.JSX.Element;
|
|
138
|
-
date: react_jsx_runtime.JSX.Element;
|
|
139
|
-
draggable: react_jsx_runtime.JSX.Element;
|
|
140
|
-
droplet: react_jsx_runtime.JSX.Element;
|
|
141
|
-
edit: react_jsx_runtime.JSX.Element;
|
|
142
|
-
education: react_jsx_runtime.JSX.Element;
|
|
143
|
-
ellipsis: react_jsx_runtime.JSX.Element;
|
|
144
|
-
'elmos-fire': react_jsx_runtime.JSX.Element;
|
|
145
|
-
email: react_jsx_runtime.JSX.Element;
|
|
146
|
-
enterprise: react_jsx_runtime.JSX.Element;
|
|
147
|
-
'exclamation-circle-stroke': react_jsx_runtime.JSX.Element;
|
|
148
|
-
extraction: react_jsx_runtime.JSX.Element;
|
|
149
|
-
eye: react_jsx_runtime.JSX.Element;
|
|
150
|
-
file: react_jsx_runtime.JSX.Element;
|
|
151
|
-
fileHappy: react_jsx_runtime.JSX.Element;
|
|
152
|
-
filter: react_jsx_runtime.JSX.Element;
|
|
153
|
-
'filter-outline': react_jsx_runtime.JSX.Element;
|
|
154
|
-
folder: react_jsx_runtime.JSX.Element;
|
|
155
|
-
form: react_jsx_runtime.JSX.Element;
|
|
156
|
-
gallery: react_jsx_runtime.JSX.Element;
|
|
157
|
-
'find-documents': react_jsx_runtime.JSX.Element;
|
|
158
|
-
graphiql: react_jsx_runtime.JSX.Element;
|
|
159
|
-
'grid-view': react_jsx_runtime.JSX.Element;
|
|
160
|
-
happy: react_jsx_runtime.JSX.Element;
|
|
161
|
-
'help-solid': react_jsx_runtime.JSX.Element;
|
|
162
|
-
help: react_jsx_runtime.JSX.Element;
|
|
163
|
-
highlight: react_jsx_runtime.JSX.Element;
|
|
164
|
-
'highlight-outline': react_jsx_runtime.JSX.Element;
|
|
165
|
-
'indico-logo-white': react_jsx_runtime.JSX.Element;
|
|
166
|
-
'indico-o': react_jsx_runtime.JSX.Element;
|
|
167
|
-
info: react_jsx_runtime.JSX.Element;
|
|
168
|
-
kabob: react_jsx_runtime.JSX.Element;
|
|
169
|
-
key: react_jsx_runtime.JSX.Element;
|
|
170
|
-
label: react_jsx_runtime.JSX.Element;
|
|
171
|
-
'layout-complex': react_jsx_runtime.JSX.Element;
|
|
172
|
-
'layout-simple': react_jsx_runtime.JSX.Element;
|
|
173
|
-
'list-view': react_jsx_runtime.JSX.Element;
|
|
174
|
-
libraries: react_jsx_runtime.JSX.Element;
|
|
175
|
-
location: react_jsx_runtime.JSX.Element;
|
|
176
|
-
logout: react_jsx_runtime.JSX.Element;
|
|
177
|
-
lock: react_jsx_runtime.JSX.Element;
|
|
178
|
-
menu: react_jsx_runtime.JSX.Element;
|
|
179
|
-
'model-import': react_jsx_runtime.JSX.Element;
|
|
180
|
-
'model-starter': react_jsx_runtime.JSX.Element;
|
|
181
|
-
moon: react_jsx_runtime.JSX.Element;
|
|
182
|
-
moonbow: react_jsx_runtime.JSX.Element;
|
|
183
|
-
'no-collections': react_jsx_runtime.JSX.Element;
|
|
184
|
-
'no-libraries': react_jsx_runtime.JSX.Element;
|
|
185
|
-
no_results: react_jsx_runtime.JSX.Element;
|
|
186
|
-
'no-format': react_jsx_runtime.JSX.Element;
|
|
187
|
-
'object-detection': react_jsx_runtime.JSX.Element;
|
|
188
|
-
organizations: react_jsx_runtime.JSX.Element;
|
|
189
|
-
output: react_jsx_runtime.JSX.Element;
|
|
190
|
-
'page-thumbnail': react_jsx_runtime.JSX.Element;
|
|
191
|
-
'pay-as-you-go': react_jsx_runtime.JSX.Element;
|
|
192
|
-
person: react_jsx_runtime.JSX.Element;
|
|
193
|
-
phone: react_jsx_runtime.JSX.Element;
|
|
194
|
-
pin: react_jsx_runtime.JSX.Element;
|
|
195
|
-
plus: react_jsx_runtime.JSX.Element;
|
|
196
|
-
pointer: react_jsx_runtime.JSX.Element;
|
|
197
|
-
popup: react_jsx_runtime.JSX.Element;
|
|
198
|
-
price: react_jsx_runtime.JSX.Element;
|
|
199
|
-
'preview-view': react_jsx_runtime.JSX.Element;
|
|
200
|
-
'radio-button': react_jsx_runtime.JSX.Element;
|
|
201
|
-
recruiter: react_jsx_runtime.JSX.Element;
|
|
202
|
-
regex: react_jsx_runtime.JSX.Element;
|
|
203
|
-
reject: react_jsx_runtime.JSX.Element;
|
|
204
|
-
repair: react_jsx_runtime.JSX.Element;
|
|
205
|
-
research: react_jsx_runtime.JSX.Element;
|
|
206
|
-
reset: react_jsx_runtime.JSX.Element;
|
|
207
|
-
retrain: react_jsx_runtime.JSX.Element;
|
|
208
|
-
sad: react_jsx_runtime.JSX.Element;
|
|
209
|
-
search: react_jsx_runtime.JSX.Element;
|
|
210
|
-
'search-thin': react_jsx_runtime.JSX.Element;
|
|
211
|
-
shrug: react_jsx_runtime.JSX.Element;
|
|
212
|
-
signature: react_jsx_runtime.JSX.Element;
|
|
213
|
-
'sort-down': react_jsx_runtime.JSX.Element;
|
|
214
|
-
split: react_jsx_runtime.JSX.Element;
|
|
215
|
-
'step-forward': react_jsx_runtime.JSX.Element;
|
|
216
|
-
sun: react_jsx_runtime.JSX.Element;
|
|
217
|
-
surround: react_jsx_runtime.JSX.Element;
|
|
218
|
-
'surround-outline': react_jsx_runtime.JSX.Element;
|
|
219
|
-
text: react_jsx_runtime.JSX.Element;
|
|
220
|
-
'thumbs-down': react_jsx_runtime.JSX.Element;
|
|
221
|
-
'thumbs-up': react_jsx_runtime.JSX.Element;
|
|
222
|
-
time: react_jsx_runtime.JSX.Element;
|
|
223
|
-
trash: react_jsx_runtime.JSX.Element;
|
|
224
|
-
unlock: react_jsx_runtime.JSX.Element;
|
|
225
|
-
upload: react_jsx_runtime.JSX.Element;
|
|
226
|
-
url: react_jsx_runtime.JSX.Element;
|
|
227
|
-
user: react_jsx_runtime.JSX.Element;
|
|
228
|
-
wand: react_jsx_runtime.JSX.Element;
|
|
229
|
-
warning: react_jsx_runtime.JSX.Element;
|
|
230
|
-
'warning-stroke': react_jsx_runtime.JSX.Element;
|
|
231
|
-
workflows: react_jsx_runtime.JSX.Element;
|
|
232
|
-
'x-close': react_jsx_runtime.JSX.Element;
|
|
233
|
-
'zoom-in': react_jsx_runtime.JSX.Element;
|
|
234
|
-
'zoom-out': react_jsx_runtime.JSX.Element;
|
|
235
|
-
};
|
|
236
|
-
|
|
237
|
-
declare const animation: {
|
|
238
|
-
readonly duration: "200ms";
|
|
239
|
-
readonly timing: "ease";
|
|
240
|
-
};
|
|
241
|
-
|
|
242
|
-
declare const breakpoints: {
|
|
243
|
-
readonly mediumScreen: "600px";
|
|
244
|
-
readonly largeScreen: "900px";
|
|
245
|
-
readonly maxScreen: "1300px";
|
|
246
|
-
};
|
|
247
|
-
declare const mediaQueries: {
|
|
248
|
-
mediumScreen: string;
|
|
249
|
-
largeScreen: string;
|
|
250
|
-
maxScreen: string;
|
|
251
|
-
};
|
|
252
|
-
|
|
253
|
-
declare const typography: {
|
|
254
|
-
fontFamily: {
|
|
255
|
-
base: string;
|
|
256
|
-
heading: string;
|
|
257
|
-
};
|
|
258
|
-
fontSize: {
|
|
259
|
-
readonly caption: "12px";
|
|
260
|
-
readonly base: "14px";
|
|
261
|
-
readonly subheadSmall: "16px";
|
|
262
|
-
readonly subheadLarge: "18px";
|
|
263
|
-
readonly subheadXl: "22px";
|
|
264
|
-
readonly display: "30px";
|
|
265
|
-
};
|
|
266
|
-
lineHeight: {
|
|
267
|
-
readonly base: 1.25;
|
|
268
|
-
readonly heading: 1.2;
|
|
269
|
-
};
|
|
270
|
-
spacing: {
|
|
271
|
-
base: string;
|
|
272
|
-
half: string;
|
|
273
|
-
quarter: string;
|
|
274
|
-
third: string;
|
|
275
|
-
};
|
|
276
|
-
ellipsis: styled_components.RuleSet<object>;
|
|
277
|
-
weight: {
|
|
278
|
-
light: number;
|
|
279
|
-
regular: number;
|
|
280
|
-
semibold: number;
|
|
281
|
-
bold: number;
|
|
282
|
-
};
|
|
283
|
-
};
|
|
284
|
-
|
|
285
|
-
declare const padding: {
|
|
286
|
-
readonly sm: "15px";
|
|
287
|
-
readonly md: "20px";
|
|
288
|
-
};
|
|
289
|
-
|
|
290
|
-
declare const spacings: {
|
|
291
|
-
readonly xs: "8px";
|
|
292
|
-
readonly sm: "12px";
|
|
293
|
-
readonly md: "24px";
|
|
294
|
-
};
|
|
295
|
-
|
|
296
|
-
declare const margin: {
|
|
297
|
-
readonly sm: "15px";
|
|
298
|
-
readonly md: "20px";
|
|
299
|
-
};
|
|
300
|
-
|
|
301
|
-
declare function decimalAdjust(type: any, value: any, exp: any): any;
|
|
302
|
-
declare function round10(value: any, exp: any): any;
|
|
303
|
-
declare function clamp(value: any, min: any, max: any): any;
|
|
304
|
-
declare function numberWithCommas$1(x: any): any;
|
|
305
|
-
declare namespace MATH {
|
|
306
|
-
export { decimalAdjust };
|
|
307
|
-
export { round10 };
|
|
308
|
-
export { clamp };
|
|
309
|
-
export { numberWithCommas$1 as numberWithCommas };
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
declare const allColors: {
|
|
313
|
-
readonly akaroa: "#cbc98f";
|
|
314
|
-
readonly alizarin: "#E72326";
|
|
315
|
-
readonly amber: "#f4c401";
|
|
316
|
-
readonly amethyst: "#8e57b3";
|
|
317
|
-
readonly aqua: "#10e4fe";
|
|
318
|
-
readonly astralBlue: "#2f7ca2";
|
|
319
|
-
readonly ateneoBlue: "#0d466a";
|
|
320
|
-
readonly avocado: "#81b12f";
|
|
321
|
-
readonly azure: "#108cf7";
|
|
322
|
-
readonly baliHai: "#8498b6";
|
|
323
|
-
readonly black: "#000";
|
|
324
|
-
readonly blueBayoux: "#4f5e74";
|
|
325
|
-
readonly blueDarknut: "#0070f5";
|
|
326
|
-
readonly blueMagenta: "#542f9d";
|
|
327
|
-
readonly blueRibbon: "#0b35ff";
|
|
328
|
-
readonly blueYonder: "#586fd2";
|
|
329
|
-
readonly bouqet: "#a35c9a";
|
|
330
|
-
readonly brick: "#c62828";
|
|
331
|
-
readonly brightDusk: "#efebf7";
|
|
332
|
-
readonly britishShorthair: "#4b94eb";
|
|
333
|
-
readonly brown: "#785349";
|
|
334
|
-
readonly candyCorn: "#fcef4d";
|
|
335
|
-
readonly carnation: "#ff8adf";
|
|
336
|
-
readonly carrot: "#f29a2d";
|
|
337
|
-
readonly cerise: "#d52a96";
|
|
338
|
-
readonly cerulean: "#008b9e";
|
|
339
|
-
readonly chantilly: "#f7b0eb";
|
|
340
|
-
readonly charcoal: "#474b4b";
|
|
341
|
-
readonly chartreuse: "#34ff01";
|
|
342
|
-
readonly clay: "#283243";
|
|
343
|
-
readonly clementine: "#F16E00";
|
|
344
|
-
readonly cocoaBean: "#5c1200";
|
|
345
|
-
readonly comet: "#5a6982";
|
|
346
|
-
readonly cornflower: "#2060ff";
|
|
347
|
-
readonly crimson: "#e53126";
|
|
348
|
-
readonly curiousBlue: "#178ee0";
|
|
349
|
-
readonly cyan: "#0cf";
|
|
350
|
-
readonly daisyBush: "#431B92";
|
|
351
|
-
readonly darkFontColor: "#0d151d";
|
|
352
|
-
readonly darkGray: "#333";
|
|
353
|
-
readonly darkPurple: "#6f3eae";
|
|
354
|
-
readonly darkRed: "#b30000";
|
|
355
|
-
readonly defaultFontColor: "#bbbfc5";
|
|
356
|
-
readonly dodgerBlue: "#1774ff";
|
|
357
|
-
readonly dusty: "#999999";
|
|
358
|
-
readonly eagleGreen: "#005557";
|
|
359
|
-
readonly ebony: "#101a26";
|
|
360
|
-
readonly eggplant: "#7a0074";
|
|
361
|
-
readonly electricGreen: "#00ff0a";
|
|
362
|
-
readonly emerald: "#09c199";
|
|
363
|
-
readonly endeavor: "#0055B9";
|
|
364
|
-
readonly espresso: "#5a3627";
|
|
365
|
-
readonly fieldPromptError: "#fd9693";
|
|
366
|
-
readonly fieldPromptInfo: "#00bfff";
|
|
367
|
-
readonly flamingo: "#f861b6";
|
|
368
|
-
readonly flirt: "#910870";
|
|
369
|
-
readonly forestGreen: "#1f7f1f";
|
|
370
|
-
readonly frostedOver: "#DCEAFD";
|
|
371
|
-
readonly geraldine: "#fe9486";
|
|
372
|
-
readonly grannysmith: "#92e959";
|
|
373
|
-
readonly green: "#4caf50";
|
|
374
|
-
readonly harlequin: "#20cb00";
|
|
375
|
-
readonly harvestGold: "#e6c079";
|
|
376
|
-
readonly hawkes: "#DCEAFD";
|
|
377
|
-
readonly hemlock: "#626740";
|
|
378
|
-
readonly imperial: "#4b0134";
|
|
379
|
-
readonly iron: "#d9dee0";
|
|
380
|
-
readonly japaneseIndigo: "#264359";
|
|
381
|
-
readonly juniper: "#6d9292";
|
|
382
|
-
readonly khaki: "#bba44b";
|
|
383
|
-
readonly koamaru: "#2f346a";
|
|
384
|
-
readonly korma: "#90370e";
|
|
385
|
-
readonly lavender: "#B086E3";
|
|
386
|
-
readonly lavenderRose: "#fb9fda";
|
|
387
|
-
readonly lightGray: "#eee";
|
|
388
|
-
readonly lightPurple: "#b43be4";
|
|
389
|
-
readonly lilac: "#a195d4";
|
|
390
|
-
readonly lincolnGreen: "#254600";
|
|
391
|
-
readonly magenta: "#ff15e0";
|
|
392
|
-
readonly malibu: "#68C2FB";
|
|
393
|
-
readonly mantis: "#4fa83d";
|
|
394
|
-
readonly maroon: "#ad3349";
|
|
395
|
-
readonly mauve: "#e06cfb";
|
|
396
|
-
readonly mediumGray: "#999";
|
|
397
|
-
readonly midFontColor: "#8593b3";
|
|
398
|
-
readonly mint: "#3ac999";
|
|
399
|
-
readonly mirage: "#182432";
|
|
400
|
-
readonly mulberry: "#5c0536";
|
|
401
|
-
readonly olive: "#807300";
|
|
402
|
-
readonly orange: "#ff7200";
|
|
403
|
-
readonly orchid: "#ab00ff";
|
|
404
|
-
readonly oxfordBlue: "#384558";
|
|
405
|
-
readonly pacific: "#00b5b6";
|
|
406
|
-
readonly palm: "#1aa511";
|
|
407
|
-
readonly persian: "#1717cf";
|
|
408
|
-
readonly persianLight: "#0327ce";
|
|
409
|
-
readonly pine: "#017074";
|
|
410
|
-
readonly pink: "#f74f8a";
|
|
411
|
-
readonly pistachio: "#aac609";
|
|
412
|
-
readonly raspberry: "#990030";
|
|
413
|
-
readonly red: "#f95359";
|
|
414
|
-
readonly robinsEggBlue: "#00bcd4";
|
|
415
|
-
readonly romanSilver: "#7d888d";
|
|
416
|
-
readonly sagatPurple: "#6833d0";
|
|
417
|
-
readonly salem: "#03832e";
|
|
418
|
-
readonly sapGreen: "#5f7e20";
|
|
419
|
-
readonly seaGreen: "#0b8a51";
|
|
420
|
-
readonly seance: "#7f1f82";
|
|
421
|
-
readonly shiraz: "#c61021";
|
|
422
|
-
readonly silverChalice: "#aaaaaa";
|
|
423
|
-
readonly sinopia: "#D14200";
|
|
424
|
-
readonly slaaneshGrey: "#dbd5e6";
|
|
425
|
-
readonly tangerine: "#ff9900";
|
|
426
|
-
readonly teal: "#008285";
|
|
427
|
-
readonly toast: "#997862";
|
|
428
|
-
readonly trueBlue: "#066CC6";
|
|
429
|
-
readonly tundora: "#444444";
|
|
430
|
-
readonly turquoise: "#00b5b6";
|
|
431
|
-
readonly vermilion: "#b95555";
|
|
432
|
-
readonly viking: "#59cfe0";
|
|
433
|
-
readonly violet: "#3e4eb8";
|
|
434
|
-
readonly violetBlue: "#8060d2";
|
|
435
|
-
readonly walnut: "#783f00";
|
|
436
|
-
readonly white: "#fff";
|
|
437
|
-
readonly windsorTan: "#b35c00";
|
|
438
|
-
readonly yellow: "#ffca28";
|
|
439
|
-
readonly zucchini: "#016422";
|
|
440
|
-
readonly hiliteFontColor: "#fff";
|
|
441
|
-
readonly lightFontColor: "#eee";
|
|
442
|
-
readonly borderColor: "#eee";
|
|
443
|
-
readonly actionColor: "#8593b3";
|
|
444
|
-
readonly backgroundColor: "#182432";
|
|
445
|
-
};
|
|
446
|
-
|
|
447
|
-
type Props$q = PermafrostComponent & {
|
|
448
|
-
content: React__default.ReactNode;
|
|
449
|
-
header?: React__default.ReactNode | string;
|
|
450
|
-
open?: boolean;
|
|
451
|
-
};
|
|
452
|
-
declare const Accordion: (props: Props$q) => react_jsx_runtime.JSX.Element;
|
|
453
|
-
|
|
454
|
-
type Props$p = PermafrostComponent & {
|
|
455
|
-
style?: object;
|
|
456
|
-
children: React__default.ReactNode;
|
|
457
|
-
};
|
|
458
|
-
declare const Section: (props: Props$p) => react_jsx_runtime.JSX.Element;
|
|
459
|
-
|
|
460
|
-
type Props$o = PermafrostComponent & {
|
|
461
|
-
title?: string;
|
|
462
|
-
style?: object;
|
|
463
|
-
children: React__default.ReactNode;
|
|
464
|
-
};
|
|
465
|
-
declare const SectionBlock: (props: Props$o) => react_jsx_runtime.JSX.Element;
|
|
466
|
-
|
|
467
|
-
type SectionBodyProps = PermafrostComponent & {
|
|
468
|
-
style?: object;
|
|
469
|
-
children: React__default.ReactNode;
|
|
470
|
-
};
|
|
471
|
-
declare const SectionBody: (props: SectionBodyProps) => react_jsx_runtime.JSX.Element;
|
|
472
|
-
|
|
473
|
-
type Props$n = PermafrostComponent & {
|
|
474
|
-
style?: object;
|
|
475
|
-
children?: React__default.ReactNode;
|
|
476
|
-
};
|
|
477
|
-
declare const SectionHeader: {
|
|
478
|
-
(props: Props$n): react_jsx_runtime.JSX.Element;
|
|
479
|
-
defaultProps: {
|
|
480
|
-
className: string;
|
|
481
|
-
style: {};
|
|
482
|
-
};
|
|
483
|
-
};
|
|
484
|
-
|
|
485
|
-
declare const SectionTable: (props: any) => react_jsx_runtime.JSX.Element;
|
|
486
|
-
|
|
487
|
-
type ButtonVariant = 'primary' | 'cta' | 'normal' | 'link-style' | 'no-style' | 'outline';
|
|
488
|
-
type ButtonProps$1 = PermafrostComponent & {
|
|
489
|
-
'aria-label'?: string;
|
|
490
|
-
'aria-pressed'?: boolean;
|
|
491
|
-
'aria-selected'?: boolean;
|
|
492
|
-
busy?: boolean;
|
|
493
|
-
children: React__default.ReactNode | React__default.ReactNode[];
|
|
494
|
-
disabled?: boolean;
|
|
495
|
-
onClick: (...args: any[]) => void;
|
|
496
|
-
onFocus?: () => void;
|
|
497
|
-
role?: string;
|
|
498
|
-
style?: React__default.CSSProperties;
|
|
499
|
-
tabindex?: 0 | -1;
|
|
500
|
-
type?: 'submit' | 'button' | 'reset';
|
|
501
|
-
variant?: ButtonVariant;
|
|
502
|
-
onMouseEnter?: () => void;
|
|
503
|
-
onMouseLeave?: () => void;
|
|
504
|
-
};
|
|
505
|
-
declare function Button$1(props: ButtonProps$1): React__default.ReactElement;
|
|
506
|
-
|
|
507
|
-
type IconButtonVariant = 'default' | 'primary' | 'destructive' | 'outline';
|
|
508
|
-
type ButtonSize = 'normal' | 'large';
|
|
509
|
-
|
|
510
|
-
type Props$m = PermafrostComponent & {
|
|
511
|
-
/**
|
|
512
|
-
* Adjusts vertical alignment of the text label, in relation to the icon
|
|
513
|
-
*/
|
|
514
|
-
adjustAlignment?: number;
|
|
515
|
-
busy?: boolean;
|
|
516
|
-
iconName: IconName$1;
|
|
517
|
-
iconSide?: 'start' | 'end';
|
|
518
|
-
isDisabled?: boolean;
|
|
519
|
-
/**
|
|
520
|
-
* If element will be an `<a>`, the href URL
|
|
521
|
-
*/
|
|
522
|
-
isLink?: string;
|
|
523
|
-
label?: string;
|
|
524
|
-
size?: ButtonSize;
|
|
525
|
-
style?: React__default.CSSProperties;
|
|
526
|
-
variant?: IconButtonVariant;
|
|
527
|
-
} & AriaButtonProps;
|
|
528
|
-
/**
|
|
529
|
-
* General utility “button with an icon” component. May also be used for links that _look_
|
|
530
|
-
* like buttons, via the `isLink` property.
|
|
531
|
-
*
|
|
532
|
-
* The button handler must be passed in via the `onPress` property (replaces `onClick`).
|
|
533
|
-
*
|
|
534
|
-
* @see {@link https://react-spectrum.adobe.com/blog/building-a-button-part-1.html}
|
|
535
|
-
*/
|
|
536
|
-
declare function IconButton(props: Props$m): react_jsx_runtime.JSX.Element;
|
|
537
|
-
|
|
538
|
-
type Props$l = PermafrostComponent & {
|
|
539
|
-
defaultValue?: string;
|
|
540
|
-
disabled?: boolean;
|
|
541
|
-
horizontal?: boolean;
|
|
542
|
-
initialText?: string;
|
|
543
|
-
label?: string;
|
|
544
|
-
onChange(e: React__default.ChangeEvent<HTMLSelectElement>): void;
|
|
545
|
-
options: {
|
|
546
|
-
name: string;
|
|
547
|
-
value: string | number;
|
|
548
|
-
}[];
|
|
549
|
-
style?: object;
|
|
550
|
-
value?: string | number;
|
|
551
|
-
validationErrors?: string[];
|
|
552
|
-
};
|
|
553
|
-
declare const BorderSelect: (props: Props$l) => react_jsx_runtime.JSX.Element;
|
|
554
|
-
|
|
555
|
-
type ComboboxProps = {
|
|
556
|
-
'aria-label'?: string;
|
|
557
|
-
'aria-labelledby'?: string;
|
|
558
|
-
className?: string;
|
|
559
|
-
closeMenuOnSelect?: boolean;
|
|
560
|
-
/**
|
|
561
|
-
* Function to generate a custom React component for every available list `Option`
|
|
562
|
-
* @see {@link https://react-select.com/props#option}
|
|
563
|
-
*/
|
|
564
|
-
customOption?: (props: any) => JSX.Element;
|
|
565
|
-
/**
|
|
566
|
-
* Customize the text to appear in selected items.
|
|
567
|
-
*
|
|
568
|
-
* @example (option) => `${option.value}`
|
|
569
|
-
*/
|
|
570
|
-
customOptionLabel?(option: any): string;
|
|
571
|
-
/**
|
|
572
|
-
* Customize the value for the Combobox to use. Defaults to `value`
|
|
573
|
-
*
|
|
574
|
-
* @example (option) => `${option.id}`
|
|
575
|
-
*/
|
|
576
|
-
customOptionValue?(option: any): string;
|
|
577
|
-
defaultValue?: any[];
|
|
578
|
-
disabled?: boolean;
|
|
579
|
-
loading?: boolean;
|
|
580
|
-
menuIsOpen?: boolean;
|
|
581
|
-
/**
|
|
582
|
-
* Custom text to show if there are no more items available to select
|
|
583
|
-
*/
|
|
584
|
-
noOptionsMessage?: string;
|
|
585
|
-
/**
|
|
586
|
-
* Combobox defaults to expect { label: string; value: string; } at minimum - use `customOptionLabel` and `customOptionValue` props to change
|
|
587
|
-
*/
|
|
588
|
-
options: ComboboxOption[];
|
|
589
|
-
/**
|
|
590
|
-
* Input placeholder text
|
|
591
|
-
*/
|
|
592
|
-
placeholder?: string;
|
|
593
|
-
};
|
|
594
|
-
type ComboboxOption = {
|
|
595
|
-
label?: string;
|
|
596
|
-
[key: string]: any;
|
|
597
|
-
};
|
|
598
|
-
type ComboboxSize = 'small' | 'medium';
|
|
599
|
-
type ComboboxVariant = 'default' | 'light';
|
|
600
|
-
|
|
601
|
-
type Props$k = PermafrostComponent & {
|
|
602
|
-
disabled?: boolean;
|
|
603
|
-
initialText?: string;
|
|
604
|
-
options: {
|
|
605
|
-
name: string;
|
|
606
|
-
value: string | number;
|
|
607
|
-
}[];
|
|
608
|
-
size?: ComboboxSize;
|
|
609
|
-
style?: object;
|
|
610
|
-
value?: string | number;
|
|
611
|
-
variant?: ComboboxVariant;
|
|
612
|
-
onChange(e: React__default.ChangeEvent<HTMLSelectElement>): void;
|
|
613
|
-
onClick?(e: React__default.MouseEvent<HTMLDivElement, MouseEvent>): void;
|
|
614
|
-
};
|
|
615
|
-
declare const Select: (props: Props$k) => react_jsx_runtime.JSX.Element;
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* Multiselect combobox component. If selections are not bound to outside state
|
|
619
|
-
* via the `value` prop, you will need to import and use the `useCombobox` hook
|
|
620
|
-
* in order to clear its selected value .
|
|
621
|
-
*
|
|
622
|
-
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
623
|
-
*/
|
|
624
|
-
declare const MultiCombobox: React__default.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
|
|
625
|
-
/**
|
|
626
|
-
* MultiValue is a selected option in the input area
|
|
627
|
-
*/
|
|
628
|
-
multiValueProps?: {
|
|
629
|
-
'data-cy': string;
|
|
630
|
-
} | undefined;
|
|
631
|
-
optionProps?: {
|
|
632
|
-
'data-cy': string;
|
|
633
|
-
} | undefined;
|
|
634
|
-
values?: ComboboxOption[] | undefined;
|
|
635
|
-
onChange: (selectedOption: ComboboxOption[]) => void;
|
|
636
|
-
} & React__default.RefAttributes<unknown>>;
|
|
637
|
-
|
|
638
|
-
/**
|
|
639
|
-
* Combobox component to select a single option. If selections are not bound to
|
|
640
|
-
* outside state via the `value` prop, you will need to import and use the
|
|
641
|
-
* `useCombobox` hook in order to clear its selected value.
|
|
642
|
-
*
|
|
643
|
-
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
644
|
-
*/
|
|
645
|
-
declare const SingleCombobox: React__default.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
|
|
646
|
-
dropdownIndicatorProps?: {
|
|
647
|
-
'data-cy': string;
|
|
648
|
-
} | undefined;
|
|
649
|
-
optionProps?: {
|
|
650
|
-
'data-cy': string;
|
|
651
|
-
} | undefined;
|
|
652
|
-
value?: ComboboxOption | undefined;
|
|
653
|
-
onChange: (selectedOption: ComboboxOption) => void;
|
|
654
|
-
} & React__default.RefAttributes<unknown>>;
|
|
655
|
-
|
|
656
|
-
type Props$j = PermafrostComponent & {
|
|
657
|
-
ariaLabel?: string;
|
|
658
|
-
fill?: string;
|
|
659
|
-
name: IconName$1;
|
|
660
|
-
size?: [string | number] | [string | number, string | number];
|
|
661
|
-
style?: any;
|
|
662
|
-
onClick?(): void;
|
|
663
|
-
ref?: React__default.Ref<SVGSVGElement>;
|
|
664
|
-
};
|
|
665
|
-
/**
|
|
666
|
-
* Generic icon component, hidden from Assistive Technology by default.
|
|
667
|
-
* If icon should be available to AT, pass the desired name into the `ariaLabel` prop.
|
|
668
|
-
*/
|
|
669
|
-
declare function Icon({ style, ...props }: Props$j): React__default.ReactElement | null;
|
|
670
|
-
|
|
671
|
-
type Props$i = PermafrostComponent & {
|
|
672
|
-
children: React__default.ReactNode | string;
|
|
673
|
-
minLength?: number;
|
|
674
|
-
onUpdate?(newValue: string): void;
|
|
675
|
-
};
|
|
676
|
-
/**
|
|
677
|
-
* Wrapper component which enables text editing in place directly on a child component,
|
|
678
|
-
* element, or plain text.
|
|
679
|
-
*/
|
|
680
|
-
declare function EditableInput(props: Props$i): react_jsx_runtime.JSX.Element;
|
|
681
|
-
|
|
682
|
-
type Props$h = PermafrostComponent & {
|
|
683
|
-
autoFocus?: boolean;
|
|
684
|
-
decrement?(): void;
|
|
685
|
-
disabled?: boolean;
|
|
686
|
-
hiddenLabel?: boolean;
|
|
687
|
-
increment?(): void;
|
|
688
|
-
label: string;
|
|
689
|
-
max?: number;
|
|
690
|
-
min?: number;
|
|
691
|
-
onChange(value: number | ''): void;
|
|
692
|
-
placeholder?: string;
|
|
693
|
-
required?: boolean;
|
|
694
|
-
step?: string;
|
|
695
|
-
tabIndex?: number;
|
|
696
|
-
value: number | '';
|
|
697
|
-
};
|
|
698
|
-
/**
|
|
699
|
-
* Basic numeric input field. A label is required, but may be visually hidden
|
|
700
|
-
* using the `hiddenLabel` property.
|
|
701
|
-
*/
|
|
702
|
-
declare function NumberInput(props: Props$h): React__default.ReactElement;
|
|
703
|
-
|
|
704
|
-
type Props$g = PermafrostComponent & {
|
|
705
|
-
inputBorder?: boolean;
|
|
706
|
-
showClearInputIcon?: boolean;
|
|
707
|
-
showSearchIcon?: boolean;
|
|
708
|
-
inputProps?: {
|
|
709
|
-
[key: string]: string;
|
|
710
|
-
};
|
|
711
|
-
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
712
|
-
onClear?(): void;
|
|
713
|
-
onKeyUp?: (e: React__default.KeyboardEvent<HTMLInputElement>) => void;
|
|
714
|
-
placeholder?: string;
|
|
715
|
-
value?: string;
|
|
716
|
-
};
|
|
717
|
-
declare const SearchInput: {
|
|
718
|
-
(props: Props$g): react_jsx_runtime.JSX.Element;
|
|
719
|
-
defaultProps: {
|
|
720
|
-
className: string;
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
|
|
724
|
-
type Props$f = PermafrostComponent & {
|
|
725
|
-
autoComplete?: 'email' | 'current-password' | 'new-password' | string;
|
|
726
|
-
autoFocus?: boolean;
|
|
727
|
-
defaultValue?: string;
|
|
728
|
-
disabled?: boolean;
|
|
729
|
-
displayErrors?: boolean;
|
|
730
|
-
inputProps?: any;
|
|
731
|
-
label?: string;
|
|
732
|
-
maxLength?: number;
|
|
733
|
-
name?: string;
|
|
734
|
-
onBlur?(): void;
|
|
735
|
-
onChange?(event: ChangeEvent<HTMLInputElement>): void;
|
|
736
|
-
onFocus?(): void;
|
|
737
|
-
placeholder?: string;
|
|
738
|
-
promptProps?: any;
|
|
739
|
-
required?: boolean;
|
|
740
|
-
type?: 'text' | 'email' | 'password' | string;
|
|
741
|
-
validationErrors?: string[];
|
|
742
|
-
value?: string;
|
|
743
|
-
readOnly?: boolean;
|
|
744
|
-
};
|
|
745
|
-
declare function TextInput(props: Props$f): React__default.ReactElement;
|
|
746
|
-
|
|
747
|
-
type Props$e = {
|
|
748
|
-
['aria-label']: string;
|
|
749
|
-
children?: React__default.ReactNode;
|
|
750
|
-
hideFocusRing: boolean;
|
|
751
|
-
color: string;
|
|
752
|
-
labelColor: string;
|
|
753
|
-
hoverAndSelectedColor: string;
|
|
754
|
-
focusRingColor: string;
|
|
755
|
-
value: string;
|
|
756
|
-
} & RadioGroupProps$1 & PermafrostComponent;
|
|
757
|
-
/**
|
|
758
|
-
* Renders a group of radio buttons.
|
|
759
|
-
*
|
|
760
|
-
* A group label must be included: either pass a string or markup into the
|
|
761
|
-
* `label` prop, or include an `aria-label` or `aria-labelledby` attribute.
|
|
762
|
-
*/
|
|
763
|
-
declare function RadioGroup$1({ children, ...props }: Props$e): react_jsx_runtime.JSX.Element;
|
|
764
|
-
/**
|
|
765
|
-
* A single radio button and its label.
|
|
766
|
-
*/
|
|
767
|
-
declare function Radio$1({ children, ...props }: AriaRadioProps): react_jsx_runtime.JSX.Element;
|
|
768
|
-
|
|
769
|
-
type RadioGroupProps = PermafrostComponent & {
|
|
770
|
-
value?: string;
|
|
771
|
-
onChange?: (value: string) => void;
|
|
772
|
-
children: React__default.ReactNode;
|
|
773
|
-
className?: string;
|
|
774
|
-
} & AriaRadioGroupProps;
|
|
775
|
-
/**
|
|
776
|
-
* Renders a group of radio buttons with no styling. This component is not
|
|
777
|
-
* designed to be user-facing, and should only be used to provide functionality.
|
|
778
|
-
*
|
|
779
|
-
* A group label must be included: either pass a string or markup into the
|
|
780
|
-
* `label` prop, or include an `aria-label` or `aria-labelledby` attribute.
|
|
781
|
-
*/
|
|
782
|
-
declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
783
|
-
/**
|
|
784
|
-
* A single radio button and its label; no styling is applied, and the native
|
|
785
|
-
* radio button is visually hidden.
|
|
786
|
-
*/
|
|
787
|
-
declare function Radio(props: AriaRadioProps & {
|
|
788
|
-
className?: string;
|
|
789
|
-
isVisuallySelected?: (selectedValue: string) => void;
|
|
790
|
-
}): react_jsx_runtime.JSX.Element;
|
|
791
|
-
|
|
792
|
-
type Props$d = PermafrostComponent & {
|
|
793
|
-
ariaLabel?: string;
|
|
794
|
-
disableBeforeDate?: Date;
|
|
795
|
-
disableAfterDate?: Date;
|
|
796
|
-
disabled?: boolean;
|
|
797
|
-
id: string;
|
|
798
|
-
label?: string;
|
|
799
|
-
onChange: (value: Date | undefined) => void;
|
|
800
|
-
placeholder?: string;
|
|
801
|
-
selected?: Date | undefined;
|
|
802
|
-
value: Date | undefined;
|
|
803
|
-
};
|
|
804
|
-
declare const DatePicker: (props: Props$d) => react_jsx_runtime.JSX.Element;
|
|
805
|
-
|
|
806
|
-
type Props$c = PermafrostComponent & {
|
|
807
|
-
ariaLabel?: string;
|
|
808
|
-
disableBeforeDate?: Date;
|
|
809
|
-
disableAfterDate?: Date;
|
|
810
|
-
disabled?: boolean;
|
|
811
|
-
id: string;
|
|
812
|
-
label?: string;
|
|
813
|
-
onChange: (value: Date | DateRange | undefined) => void;
|
|
814
|
-
selected?: Date | undefined;
|
|
815
|
-
selectedRange?: DateRange | undefined;
|
|
816
|
-
value: Date | undefined;
|
|
817
|
-
triggerIcon: IconName$1;
|
|
818
|
-
triggerIconSize: [string | number];
|
|
819
|
-
isRangePicker?: boolean;
|
|
820
|
-
isOpen?: boolean;
|
|
821
|
-
clearOnClose?: boolean;
|
|
822
|
-
};
|
|
823
|
-
declare const NoInputDatePicker: (props: Props$c) => react_jsx_runtime.JSX.Element;
|
|
824
|
-
|
|
825
|
-
type Props$b = PermafrostComponent & {
|
|
826
|
-
ariaLabel?: string;
|
|
827
|
-
size?: string;
|
|
828
|
-
style?: {
|
|
829
|
-
[key: string]: string;
|
|
830
|
-
};
|
|
831
|
-
fill?: string;
|
|
832
|
-
};
|
|
833
|
-
declare function CircleSpinner(props: Props$b): React__default.ReactElement;
|
|
834
|
-
|
|
835
|
-
type Props$a = PermafrostComponent & {
|
|
836
|
-
width?: string;
|
|
837
|
-
};
|
|
838
|
-
declare function BarSpinner(props: Props$a): React__default.ReactElement;
|
|
839
|
-
|
|
840
|
-
type Props$9 = PermafrostComponent & {
|
|
841
|
-
color?: string;
|
|
842
|
-
overallSize?: string | number;
|
|
843
|
-
rippleSize?: string | number;
|
|
844
|
-
showRandomMessage?: boolean;
|
|
845
|
-
};
|
|
846
|
-
declare function CirclePulse(props: Props$9): React__default.ReactElement;
|
|
847
|
-
|
|
848
|
-
declare const RandomLoadingMessage: () => react_jsx_runtime.JSX.Element;
|
|
849
|
-
|
|
850
|
-
type Props$8 = PermafrostComponent & {
|
|
851
|
-
backgroundColor?: string;
|
|
852
|
-
foregroundColor?: string;
|
|
853
|
-
ringRadius?: number;
|
|
854
|
-
strokeWidth?: number;
|
|
855
|
-
/** an integer between 0 and 1 */
|
|
856
|
-
value: number;
|
|
857
|
-
valueFontSize?: number;
|
|
858
|
-
};
|
|
859
|
-
declare function PercentageRing(props: Props$8): react_jsx_runtime.JSX.Element;
|
|
860
|
-
|
|
861
|
-
declare const LoadingList: () => react_jsx_runtime.JSX.Element;
|
|
862
|
-
|
|
863
|
-
type Props$7 = PermafrostComponent & {
|
|
864
|
-
accordion?: boolean;
|
|
865
|
-
accordionDefaultOpen?: boolean;
|
|
866
|
-
emptyListMessage?: string;
|
|
867
|
-
error?: any;
|
|
868
|
-
errorMessage?: any;
|
|
869
|
-
headerComponent?: React__default.ReactNode;
|
|
870
|
-
listHeader: React__default.ReactNode;
|
|
871
|
-
listItems: React__default.ReactNode[];
|
|
872
|
-
loading?: any;
|
|
873
|
-
pagination?: {
|
|
874
|
-
currentPage: number;
|
|
875
|
-
limit: number;
|
|
876
|
-
pageInfo: {
|
|
877
|
-
startCursor: number;
|
|
878
|
-
endCursor: number;
|
|
879
|
-
hasNextPage: boolean;
|
|
880
|
-
aggregateCount: number;
|
|
881
|
-
};
|
|
882
|
-
getNextPage: (before: number) => void;
|
|
883
|
-
getPage: (after: number, pageOffset: number) => void;
|
|
884
|
-
getPreviousPage: (after: number) => void;
|
|
885
|
-
};
|
|
886
|
-
sortBy?: {
|
|
887
|
-
descending: boolean;
|
|
888
|
-
items: {
|
|
889
|
-
name: string;
|
|
890
|
-
value: string;
|
|
891
|
-
}[];
|
|
892
|
-
value: string;
|
|
893
|
-
onSort: (value: string) => void;
|
|
894
|
-
updateDescending: () => void;
|
|
895
|
-
};
|
|
896
|
-
subTitle?: string | React__default.ReactNode;
|
|
897
|
-
title: string;
|
|
898
|
-
totalCount?: number;
|
|
899
|
-
};
|
|
900
|
-
declare const ListTable: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
901
|
-
|
|
902
|
-
type Props$6 = PermafrostComponent & {
|
|
903
|
-
currentPage: number;
|
|
904
|
-
limit: number;
|
|
905
|
-
pageInfo: {
|
|
906
|
-
aggregateCount: number;
|
|
907
|
-
endCursor: number;
|
|
908
|
-
hasNextPage: boolean;
|
|
909
|
-
startCursor: number;
|
|
910
|
-
};
|
|
911
|
-
quantity: number;
|
|
912
|
-
skip?: number;
|
|
913
|
-
getPage(startCursor: number, endCursor: number): void;
|
|
914
|
-
getNextPage(cursor: number): void;
|
|
915
|
-
getPreviousPage(cursor: number): void;
|
|
916
|
-
};
|
|
917
|
-
declare function Pagination(props: Props$6): react_jsx_runtime.JSX.Element;
|
|
918
|
-
|
|
919
|
-
type Props$5 = PermafrostComponent & {
|
|
920
|
-
actionLink?: string;
|
|
921
|
-
actionText?: string;
|
|
922
|
-
buttonAction?(): void;
|
|
923
|
-
buttonText?: string;
|
|
924
|
-
message?: string | React__default.ReactNode;
|
|
925
|
-
messageProps?: {
|
|
926
|
-
'data-cy': string;
|
|
927
|
-
};
|
|
928
|
-
};
|
|
929
|
-
declare function Shrug(props: Props$5): React__default.ReactElement;
|
|
930
|
-
|
|
931
|
-
type ModalBaseProps = PermafrostComponent & {
|
|
932
|
-
children: React__default.ReactNode | React__default.ReactNode[];
|
|
933
|
-
clickToDismiss?(): void;
|
|
934
|
-
describedBy?: string;
|
|
935
|
-
/** a selector representing the desired parent; defaults to `#root` */
|
|
936
|
-
node?: string;
|
|
937
|
-
open: boolean;
|
|
938
|
-
preventEscDismiss?: boolean;
|
|
939
|
-
preventReturnFocus?: boolean;
|
|
940
|
-
maxWidth?: string;
|
|
941
|
-
} & ({
|
|
942
|
-
labelElement: string;
|
|
943
|
-
} | {
|
|
944
|
-
labelText: string;
|
|
945
|
-
});
|
|
946
|
-
/**
|
|
947
|
-
* Base modal component, powered by [react-modal](http://reactcommunity.org/react-modal/#usage)
|
|
948
|
-
*
|
|
949
|
-
* (Also see `ModalAdapter` in the styles file)
|
|
950
|
-
*
|
|
951
|
-
* Accessible element label must be included either as a string passed to `labelText`, or
|
|
952
|
-
* the id of one of the children passed to `labelElement`. If a description is available,
|
|
953
|
-
* pass that element’s id to the `describedBy` prop.
|
|
954
|
-
*/
|
|
955
|
-
declare function ModalBase(props: ModalBaseProps): react_jsx_runtime.JSX.Element;
|
|
956
|
-
|
|
957
|
-
type Props$4 = PermafrostComponent & Pick<ModalBaseProps, 'open'> & {
|
|
958
|
-
describedBy?: string;
|
|
959
|
-
clickOutsideHandler(e?: React__default.SyntheticEvent): void;
|
|
960
|
-
confirmText?: string;
|
|
961
|
-
message?: string | React__default.ReactNode;
|
|
962
|
-
modalNode?: string;
|
|
963
|
-
processing?: boolean;
|
|
964
|
-
rejectText?: string;
|
|
965
|
-
responseHandler(response: boolean, event: React__default.SyntheticEvent): void;
|
|
966
|
-
title?: string | React__default.ReactNode;
|
|
967
|
-
width?: number;
|
|
968
|
-
};
|
|
969
|
-
declare function ConfirmModal(props: Props$4): react_jsx_runtime.JSX.Element;
|
|
970
|
-
|
|
971
|
-
type Props$3 = {
|
|
972
|
-
children: React__default.ReactNode | React__default.ReactNode[];
|
|
973
|
-
className?: string;
|
|
974
|
-
isLoading?: boolean;
|
|
975
|
-
style?: React__default.CSSProperties;
|
|
976
|
-
};
|
|
977
|
-
/**
|
|
978
|
-
* A functional container for content that is yet to load or will change; displays a loading indicator and announces
|
|
979
|
-
* to Assistive Technology as needed.
|
|
980
|
-
*
|
|
981
|
-
* todo: this is an extremely simple version of this component; as I get more familiar with LoadingIndicator use cases, this will be refactored. - jm 9/1/2020
|
|
982
|
-
*/
|
|
983
|
-
declare function LoadingAwareContainer(props: Props$3): React__default.ReactElement;
|
|
1
|
+
import { IconName as IconName$1 } from '@/types';
|
|
984
2
|
|
|
985
3
|
type ListItem = {
|
|
986
4
|
id: string;
|
|
@@ -989,387 +7,16 @@ type ListItem = {
|
|
|
989
7
|
path: string;
|
|
990
8
|
};
|
|
991
9
|
|
|
992
|
-
type Props$2 = PermafrostComponent & {
|
|
993
|
-
|
|
994
|
-
logoText?: string;
|
|
995
|
-
logoIcon?: IconName$1;
|
|
996
|
-
headerComponent?: React__default.ReactNode;
|
|
997
|
-
navigationItems?: ListItem[];
|
|
998
|
-
footerItems?: ListItem[];
|
|
999
|
-
expandedWidth?: string;
|
|
1000
|
-
collapsedWidth?: string;
|
|
1001
|
-
};
|
|
1002
|
-
declare const Drawer: (props: Props$2) => react_jsx_runtime.JSX.Element;
|
|
1003
|
-
|
|
1004
|
-
interface TextTruncateProps {
|
|
1005
|
-
string: string;
|
|
1006
|
-
maxChars: number;
|
|
1007
|
-
children?: any;
|
|
1008
|
-
noTitle?: boolean;
|
|
1009
|
-
}
|
|
1010
|
-
declare function TextTruncate({ string, maxChars, children, noTitle }: TextTruncateProps): react_jsx_runtime.JSX.Element;
|
|
1011
|
-
|
|
1012
|
-
type Props$1 = {
|
|
1013
|
-
disabled: boolean;
|
|
1014
|
-
onChange: any;
|
|
1015
|
-
value: boolean;
|
|
1016
|
-
['aria-label']?: string;
|
|
1017
|
-
iconSize?: number | string;
|
|
1018
|
-
checkedIconName?: IconName$1;
|
|
1019
|
-
notCheckedIconName?: IconName$1;
|
|
1020
|
-
} & PermafrostComponent;
|
|
1021
|
-
declare const Toggle: (props: Props$1) => react_jsx_runtime.JSX.Element;
|
|
1022
|
-
|
|
1023
|
-
type Props = PermafrostComponent & {
|
|
1024
|
-
questionMark?: boolean;
|
|
1025
|
-
for?: string | null;
|
|
1026
|
-
place?: string;
|
|
1027
|
-
clickToShow?: boolean;
|
|
1028
|
-
delayShow?: number;
|
|
1029
|
-
delayHide?: number;
|
|
1030
|
-
questionMarkClassName?: string;
|
|
1031
|
-
children: React__default.ReactNode;
|
|
1032
|
-
block?: boolean;
|
|
1033
|
-
};
|
|
1034
|
-
declare const Tooltip: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
1035
|
-
|
|
1036
|
-
declare const mix: (color_1: string, color_2: string, weight: number) => string;
|
|
1037
|
-
declare const shade: (color: string, percentage: number) => string;
|
|
1038
|
-
declare const tint: (color: string, percentage: number) => string;
|
|
1039
|
-
/**
|
|
1040
|
-
* Converts hex color values to rgb or rgba values if a opacity is supplied
|
|
1041
|
-
* @param hex
|
|
1042
|
-
* @returns {*}
|
|
1043
|
-
*/
|
|
1044
|
-
declare const hexToRgb: (hex: string, opacity?: number) => string | undefined;
|
|
1045
|
-
/**
|
|
1046
|
-
* Takes a 3- or 6-character hex color value, and returns an object containing
|
|
1047
|
-
* its equivalent HSL values.
|
|
1048
|
-
*
|
|
1049
|
-
* @see {@link https://css-tricks.com/converting-color-spaces-in-javascript/}
|
|
1050
|
-
* @see {@link https://gist.github.com/mjackson/5311256}
|
|
1051
|
-
*/
|
|
1052
|
-
declare function hexToHsl(hexColor: string): {
|
|
1053
|
-
hue: number;
|
|
1054
|
-
saturation: number;
|
|
1055
|
-
lightness: number;
|
|
1056
|
-
};
|
|
1057
|
-
|
|
1058
|
-
declare const color_d_hexToHsl: typeof hexToHsl;
|
|
1059
|
-
declare const color_d_hexToRgb: typeof hexToRgb;
|
|
1060
|
-
declare const color_d_mix: typeof mix;
|
|
1061
|
-
declare const color_d_shade: typeof shade;
|
|
1062
|
-
declare const color_d_tint: typeof tint;
|
|
1063
|
-
declare namespace color_d {
|
|
1064
|
-
export { color_d_hexToHsl as hexToHsl, color_d_hexToRgb as hexToRgb, color_d_mix as mix, color_d_shade as shade, color_d_tint as tint };
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
declare const camelCaseToUpperUnderscore: (string: string) => string;
|
|
1068
|
-
declare const camelCaseToSpaceUpper: (string: string) => string;
|
|
1069
|
-
declare const underscoreToCapitalize: (string: string) => string;
|
|
1070
|
-
declare const snakeCaseToCamelCase: (string: string) => string;
|
|
1071
|
-
declare function capitalize(string: string): string;
|
|
1072
|
-
declare function capitalizeFirstOnly(string: string): string;
|
|
1073
|
-
/**
|
|
1074
|
-
* Generates a random string of English alphabet characters. Defaults to a length of 8.
|
|
1075
|
-
*/
|
|
1076
|
-
declare function createRandomString(length?: number): string;
|
|
1077
|
-
declare const maxLengthWithEllipse: (string: string, maxLength: number) => string;
|
|
1078
|
-
declare const maxLengthWithMiddleEllipsis: (string: string, maxLength: number) => string;
|
|
1079
|
-
|
|
1080
|
-
declare const string_d_camelCaseToSpaceUpper: typeof camelCaseToSpaceUpper;
|
|
1081
|
-
declare const string_d_camelCaseToUpperUnderscore: typeof camelCaseToUpperUnderscore;
|
|
1082
|
-
declare const string_d_capitalize: typeof capitalize;
|
|
1083
|
-
declare const string_d_capitalizeFirstOnly: typeof capitalizeFirstOnly;
|
|
1084
|
-
declare const string_d_createRandomString: typeof createRandomString;
|
|
1085
|
-
declare const string_d_maxLengthWithEllipse: typeof maxLengthWithEllipse;
|
|
1086
|
-
declare const string_d_maxLengthWithMiddleEllipsis: typeof maxLengthWithMiddleEllipsis;
|
|
1087
|
-
declare const string_d_snakeCaseToCamelCase: typeof snakeCaseToCamelCase;
|
|
1088
|
-
declare const string_d_underscoreToCapitalize: typeof underscoreToCapitalize;
|
|
1089
|
-
declare namespace string_d {
|
|
1090
|
-
export { string_d_camelCaseToSpaceUpper as camelCaseToSpaceUpper, string_d_camelCaseToUpperUnderscore as camelCaseToUpperUnderscore, string_d_capitalize as capitalize, string_d_capitalizeFirstOnly as capitalizeFirstOnly, string_d_createRandomString as createRandomString, string_d_maxLengthWithEllipse as maxLengthWithEllipse, string_d_maxLengthWithMiddleEllipsis as maxLengthWithMiddleEllipsis, string_d_snakeCaseToCamelCase as snakeCaseToCamelCase, string_d_underscoreToCapitalize as underscoreToCapitalize };
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
/**
|
|
1094
|
-
* Takes a number and formats it nicely.
|
|
1095
|
-
*
|
|
1096
|
-
* @example numberWithCommas(12345)
|
|
1097
|
-
* // returns 12,345
|
|
1098
|
-
*/
|
|
1099
|
-
declare function numberWithCommas(value: number): string;
|
|
1100
|
-
/**
|
|
1101
|
-
* Takes a number and returns it, rounded up to the maximum decimal places specified.
|
|
1102
|
-
*
|
|
1103
|
-
* @example maxDecimalPlaces(0.1694915254237288, 2)
|
|
1104
|
-
* // returns 0.17
|
|
1105
|
-
*
|
|
1106
|
-
* @example maxDecimalPlaces(0.1694915254237288, 3)
|
|
1107
|
-
* // returns 0.169
|
|
1108
|
-
*
|
|
1109
|
-
* @example maxDecimalPlaces(12.902, 2)
|
|
1110
|
-
* // returns 12.9
|
|
1111
|
-
*/
|
|
1112
|
-
declare function maxDecimalPlaces(value: number, decimalPlaces: number): number;
|
|
1113
|
-
declare function formatConfidence(confidence: number): number;
|
|
1114
|
-
|
|
1115
|
-
declare const number_d_formatConfidence: typeof formatConfidence;
|
|
1116
|
-
declare const number_d_maxDecimalPlaces: typeof maxDecimalPlaces;
|
|
1117
|
-
declare const number_d_numberWithCommas: typeof numberWithCommas;
|
|
1118
|
-
declare namespace number_d {
|
|
1119
|
-
export { number_d_formatConfidence as formatConfidence, number_d_maxDecimalPlaces as maxDecimalPlaces, number_d_numberWithCommas as numberWithCommas };
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
declare const Container: ({ ref: _ref, ...rest }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
declare const iconNames: readonly ["account", "address", "api-doc", "arrow-dots", "arrow-down", "arrow-up-circle", "arrows-cursor", "bookmark", "bookmark-saved", "bookmarks", "branch", "calendar", "check", "check-circle", "checkbox", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "choose-library", "circle-help", "classification-document", "classification-image", "classification-page", "classify-and-unbundle", "clipboard", "coffee-1", "coffee-2", "coffee-fail", "coffeecup", "coffeesteam", "cog", "collection", "company-name", "compare", "confidence-bar-1", "confidence-bar-2", "confidence-bar-3", "confidence-bar-4", "confidence-bars", "configure", "crowdlabel", "currency", "dashboard", "data-and-access", "database", "date", "document", "draggable", "droplet", "edit", "education", "ellipsis", "elmos-fire", "email", "enterprise", "exclamation-circle-stroke", "extraction", "eye", "fa-0", "fa-1", "fa-2", "fa-3", "fa-4", "fa-5", "fa-6", "fa-7", "fa-8", "fa-9", "fa-a", "fa-ad", "fa-add", "fa-address-book", "fa-address-card", "fa-adjust", "fa-air-freshener", "fa-align-center", "fa-align-justify", "fa-align-left", "fa-align-right", "fa-allergies", "fa-ambulance", "fa-american-sign-language-interpreting", "fa-anchor", "fa-anchor-circle-check", "fa-anchor-circle-exclamation", "fa-anchor-circle-xmark", "fa-anchor-lock", "fa-angle-double-down", "fa-angle-double-left", "fa-angle-double-right", "fa-angle-double-up", "fa-angle-down", "fa-angle-left", "fa-angle-right", "fa-angle-up", "fa-angles-down", "fa-angles-left", "fa-angles-right", "fa-angles-up", "fa-angry", "fa-ankh", "fa-apple-alt", "fa-apple-whole", "fa-archive", "fa-archway", "fa-area-chart", "fa-arrow-alt-circle-down", "fa-arrow-alt-circle-left", "fa-arrow-alt-circle-right", "fa-arrow-alt-circle-up", "fa-arrow-circle-down", "fa-arrow-circle-left", "fa-arrow-circle-right", "fa-arrow-circle-up", "fa-arrow-down", "fa-arrow-down-19", "fa-arrow-down-91", "fa-arrow-down-a-z", "fa-arrow-down-long", "fa-arrow-down-short-wide", "fa-arrow-down-up-across-line", "fa-arrow-down-up-lock", "fa-arrow-down-wide-short", "fa-arrow-down-z-a", "fa-arrow-left", "fa-arrow-left-long", "fa-arrow-left-rotate", "fa-arrow-pointer", "fa-arrow-right", "fa-arrow-right-arrow-left", "fa-arrow-right-from-bracket", "fa-arrow-right-from-file", "fa-arrow-right-long", "fa-arrow-right-rotate", "fa-arrow-right-to-bracket", "fa-arrow-right-to-city", "fa-arrow-right-to-file", "fa-arrow-rotate-back", "fa-arrow-rotate-backward", "fa-arrow-rotate-forward", "fa-arrow-rotate-left", "fa-arrow-rotate-right", "fa-arrow-trend-down", "fa-arrow-trend-up", "fa-arrow-turn-down", "fa-arrow-turn-up", "fa-arrow-up", "fa-arrow-up-19", "fa-arrow-up-91", "fa-arrow-up-a-z", "fa-arrow-up-from-bracket", "fa-arrow-up-from-ground-water", "fa-arrow-up-from-water-pump", "fa-arrow-up-long", "fa-arrow-up-right-dots", "fa-arrow-up-right-from-square", "fa-arrow-up-short-wide", "fa-arrow-up-wide-short", "fa-arrow-up-z-a", "fa-arrows", "fa-arrows-alt", "fa-arrows-alt-h", "fa-arrows-alt-v", "fa-arrows-down-to-line", "fa-arrows-down-to-people", "fa-arrows-h", "fa-arrows-left-right", "fa-arrows-left-right-to-line", "fa-arrows-rotate", "fa-arrows-spin", "fa-arrows-split-up-and-left", "fa-arrows-to-circle", "fa-arrows-to-dot", "fa-arrows-to-eye", "fa-arrows-turn-right", "fa-arrows-turn-to-dots", "fa-arrows-up-down", "fa-arrows-up-down-left-right", "fa-arrows-up-to-line", "fa-arrows-v", "fa-asl-interpreting", "fa-assistive-listening-systems", "fa-asterisk", "fa-at", "fa-atlas", "fa-atom", "fa-audio-description", "fa-austral-sign", "fa-automobile", "fa-award", "fa-b", "fa-baby", "fa-baby-carriage", "fa-backspace", "fa-backward", "fa-backward-fast", "fa-backward-step", "fa-bacon", "fa-bacteria", "fa-bacterium", "fa-bag-shopping", "fa-bahai", "fa-baht-sign", "fa-balance-scale", "fa-balance-scale-left", "fa-balance-scale-right", "fa-ban", "fa-ban-smoking", "fa-band-aid", "fa-bandage", "fa-bangladeshi-taka-sign", "fa-bank", "fa-bar-chart", "fa-barcode", "fa-bars", "fa-bars-progress", "fa-bars-staggered", "fa-baseball", "fa-baseball-ball", "fa-baseball-bat-ball", "fa-basket-shopping", "fa-basketball", "fa-basketball-ball", "fa-bath", "fa-bathtub", "fa-battery", "fa-battery-0", "fa-battery-2", "fa-battery-3", "fa-battery-4", "fa-battery-5", "fa-battery-car", "fa-battery-empty", "fa-battery-full", "fa-battery-half", "fa-battery-quarter", "fa-battery-three-quarters", "fa-bed", "fa-bed-pulse", "fa-beer", "fa-beer-mug-empty", "fa-bell", "fa-bell-concierge", "fa-bell-slash", "fa-bezier-curve", "fa-bible", "fa-bicycle", "fa-biking", "fa-binoculars", "fa-biohazard", "fa-birthday-cake", "fa-bitcoin-sign", "fa-blackboard", "fa-blender", "fa-blender-phone", "fa-blind", "fa-blog", "fa-bold", "fa-bolt", "fa-bolt-lightning", "fa-bomb", "fa-bone", "fa-bong", "fa-book", "fa-book-atlas", "fa-book-bible", "fa-book-bookmark", "fa-book-dead", "fa-book-journal-whills", "fa-book-medical", "fa-book-open", "fa-book-open-reader", "fa-book-quran", "fa-book-reader", "fa-book-skull", "fa-book-tanakh", "fa-bookmark", "fa-border-all", "fa-border-none", "fa-border-style", "fa-border-top-left", "fa-bore-hole", "fa-bottle-droplet", "fa-bottle-water", "fa-bowl-food", "fa-bowl-rice", "fa-bowling-ball", "fa-box", "fa-box-archive", "fa-box-open", "fa-box-tissue", "fa-boxes", "fa-boxes-alt", "fa-boxes-packing", "fa-boxes-stacked", "fa-braille", "fa-brain", "fa-brazilian-real-sign", "fa-bread-slice", "fa-bridge", "fa-bridge-circle-check", "fa-bridge-circle-exclamation", "fa-bridge-circle-xmark", "fa-bridge-lock", "fa-bridge-water", "fa-briefcase", "fa-briefcase-clock", "fa-briefcase-medical", "fa-broadcast-tower", "fa-broom", "fa-broom-ball", "fa-brush", "fa-bucket", "fa-bug", "fa-bug-slash", "fa-bugs", "fa-building", "fa-building-circle-arrow-right", "fa-building-circle-check", "fa-building-circle-exclamation", "fa-building-circle-xmark", "fa-building-columns", "fa-building-flag", "fa-building-lock", "fa-building-ngo", "fa-building-shield", "fa-building-un", "fa-building-user", "fa-building-wheat", "fa-bullhorn", "fa-bullseye", "fa-burger", "fa-burn", "fa-burst", "fa-bus", "fa-bus-alt", "fa-bus-simple", "fa-business-time", "fa-c", "fa-cab", "fa-cable-car", "fa-cake", "fa-cake-candles", "fa-calculator", "fa-calendar", "fa-calendar-alt", "fa-calendar-check", "fa-calendar-day", "fa-calendar-days", "fa-calendar-minus", "fa-calendar-plus", "fa-calendar-times", "fa-calendar-week", "fa-calendar-xmark", "fa-camera", "fa-camera-alt", "fa-camera-retro", "fa-camera-rotate", "fa-campground", "fa-cancel", "fa-candy-cane", "fa-cannabis", "fa-capsules", "fa-car", "fa-car-alt", "fa-car-battery", "fa-car-burst", "fa-car-crash", "fa-car-on", "fa-car-rear", "fa-car-side", "fa-car-tunnel", "fa-caravan", "fa-caret-down", "fa-caret-left", "fa-caret-right", "fa-caret-square-down", "fa-caret-square-left", "fa-caret-square-right", "fa-caret-square-up", "fa-caret-up", "fa-carriage-baby", "fa-carrot", "fa-cart-arrow-down", "fa-cart-flatbed", "fa-cart-flatbed-suitcase", "fa-cart-plus", "fa-cart-shopping", "fa-cash-register", "fa-cat", "fa-cedi-sign", "fa-cent-sign", "fa-certificate", "fa-chain", "fa-chain-broken", "fa-chain-slash", "fa-chair", "fa-chalkboard", "fa-chalkboard-teacher", "fa-chalkboard-user", "fa-champagne-glasses", "fa-charging-station", "fa-chart-area", "fa-chart-bar", "fa-chart-column", "fa-chart-gantt", "fa-chart-line", "fa-chart-pie", "fa-chart-simple", "fa-check", "fa-check-circle", "fa-check-double", "fa-check-square", "fa-check-to-slot", "fa-cheese", "fa-chess", "fa-chess-bishop", "fa-chess-board", "fa-chess-king", "fa-chess-knight", "fa-chess-pawn", "fa-chess-queen", "fa-chess-rook", "fa-chevron-circle-down", "fa-chevron-circle-left", "fa-chevron-circle-right", "fa-chevron-circle-up", "fa-chevron-down", "fa-chevron-left", "fa-chevron-right", "fa-chevron-up", "fa-child", "fa-child-combatant", "fa-child-dress", "fa-child-reaching", "fa-child-rifle", "fa-children", "fa-church", "fa-circle", "fa-circle-arrow-down", "fa-circle-arrow-left", "fa-circle-arrow-right", "fa-circle-arrow-up", "fa-circle-check", "fa-circle-chevron-down", "fa-circle-chevron-left", "fa-circle-chevron-right", "fa-circle-chevron-up", "fa-circle-dollar-to-slot", "fa-circle-dot", "fa-circle-down", "fa-circle-exclamation", "fa-circle-h", "fa-circle-half-stroke", "fa-circle-info", "fa-circle-left", "fa-circle-minus", "fa-circle-nodes", "fa-circle-notch", "fa-circle-pause", "fa-circle-play", "fa-circle-plus", "fa-circle-question", "fa-circle-radiation", "fa-circle-right", "fa-circle-stop", "fa-circle-up", "fa-circle-user", "fa-circle-xmark", "fa-city", "fa-clapperboard", "fa-clinic-medical", "fa-clipboard", "fa-clipboard-check", "fa-clipboard-list", "fa-clipboard-question", "fa-clipboard-user", "fa-clock", "fa-clock-four", "fa-clock-rotate-left", "fa-clone", "fa-close", "fa-closed-captioning", "fa-cloud", "fa-cloud-arrow-down", "fa-cloud-arrow-up", "fa-cloud-bolt", "fa-cloud-download", "fa-cloud-download-alt", "fa-cloud-meatball", "fa-cloud-moon", "fa-cloud-moon-rain", "fa-cloud-rain", "fa-cloud-showers-heavy", "fa-cloud-showers-water", "fa-cloud-sun", "fa-cloud-sun-rain", "fa-cloud-upload", "fa-cloud-upload-alt", "fa-clover", "fa-cny", "fa-cocktail", "fa-code", "fa-code-branch", "fa-code-commit", "fa-code-compare", "fa-code-fork", "fa-code-merge", "fa-code-pull-request", "fa-coffee", "fa-cog", "fa-cogs", "fa-coins", "fa-colon-sign", "fa-columns", "fa-comment", "fa-comment-alt", "fa-comment-dollar", "fa-comment-dots", "fa-comment-medical", "fa-comment-slash", "fa-comment-sms", "fa-commenting", "fa-comments", "fa-comments-dollar", "fa-compact-disc", "fa-compass", "fa-compass-drafting", "fa-compress", "fa-compress-alt", "fa-compress-arrows-alt", "fa-computer", "fa-computer-mouse", "fa-concierge-bell", "fa-contact-book", "fa-contact-card", "fa-cookie", "fa-cookie-bite", "fa-copy", "fa-copyright", "fa-couch", "fa-cow", "fa-credit-card", "fa-credit-card-alt", "fa-crop", "fa-crop-alt", "fa-crop-simple", "fa-cross", "fa-crosshairs", "fa-crow", "fa-crown", "fa-crutch", "fa-cruzeiro-sign", "fa-cube", "fa-cubes", "fa-cubes-stacked", "fa-cut", "fa-cutlery", "fa-d", "fa-dashboard", "fa-database", "fa-deaf", "fa-deafness", "fa-dedent", "fa-delete-left", "fa-democrat", "fa-desktop", "fa-desktop-alt", "fa-dharmachakra", "fa-diagnoses", "fa-diagram-next", "fa-diagram-predecessor", "fa-diagram-project", "fa-diagram-successor", "fa-diamond", "fa-diamond-turn-right", "fa-dice", "fa-dice-d-20", "fa-dice-d-6", "fa-dice-five", "fa-dice-four", "fa-dice-one", "fa-dice-six", "fa-dice-three", "fa-dice-two", "fa-digging", "fa-digital-tachograph", "fa-directions", "fa-disease", "fa-display", "fa-divide", "fa-dizzy", "fa-dna", "fa-dog", "fa-dollar", "fa-dollar-sign", "fa-dolly", "fa-dolly-box", "fa-dolly-flatbed", "fa-donate", "fa-dong-sign", "fa-door-closed", "fa-door-open", "fa-dot-circle", "fa-dove", "fa-down-left-and-up-right-to-center", "fa-down-long", "fa-download", "fa-drafting-compass", "fa-dragon", "fa-draw-polygon", "fa-drivers-license", "fa-droplet", "fa-droplet-slash", "fa-drum", "fa-drum-steelpan", "fa-drumstick-bite", "fa-dumbbell", "fa-dumpster", "fa-dumpster-fire", "fa-dungeon", "fa-e", "fa-ear-deaf", "fa-ear-listen", "fa-earth", "fa-earth-africa", "fa-earth-america", "fa-earth-americas", "fa-earth-asia", "fa-earth-europe", "fa-earth-oceania", "fa-edit", "fa-egg", "fa-eject", "fa-elevator", "fa-ellipsis", "fa-ellipsis-h", "fa-ellipsis-v", "fa-ellipsis-vertical", "fa-envelope", "fa-envelope-circle-check", "fa-envelope-open", "fa-envelope-open-text", "fa-envelope-square", "fa-envelopes-bulk", "fa-equals", "fa-eraser", "fa-ethernet", "fa-eur", "fa-euro", "fa-euro-sign", "fa-exchange", "fa-exchange-alt", "fa-exclamation", "fa-exclamation-circle", "fa-exclamation-triangle", "fa-expand", "fa-expand-alt", "fa-expand-arrows-alt", "fa-explosion", "fa-external-link", "fa-external-link-alt", "fa-external-link-square", "fa-external-link-square-alt", "fa-eye", "fa-eye-dropper", "fa-eye-dropper-empty", "fa-eye-low-vision", "fa-eye-slash", "fa-eyedropper", "fa-f", "fa-face-angry", "fa-face-dizzy", "fa-face-flushed", "fa-face-frown", "fa-face-frown-open", "fa-face-grimace", "fa-face-grin", "fa-face-grin-beam", "fa-face-grin-beam-sweat", "fa-face-grin-hearts", "fa-face-grin-squint", "fa-face-grin-squint-tears", "fa-face-grin-stars", "fa-face-grin-tears", "fa-face-grin-tongue", "fa-face-grin-tongue-squint", "fa-face-grin-tongue-wink", "fa-face-grin-wide", "fa-face-grin-wink", "fa-face-kiss", "fa-face-kiss-beam", "fa-face-kiss-wink-heart", "fa-face-laugh", "fa-face-laugh-beam", "fa-face-laugh-squint", "fa-face-laugh-wink", "fa-face-meh", "fa-face-meh-blank", "fa-face-rolling-eyes", "fa-face-sad-cry", "fa-face-sad-tear", "fa-face-smile", "fa-face-smile-beam", "fa-face-smile-wink", "fa-face-surprise", "fa-face-tired", "fa-fan", "fa-fast-backward", "fa-fast-forward", "fa-faucet", "fa-faucet-drip", "fa-fax", "fa-feather", "fa-feather-alt", "fa-feather-pointed", "fa-feed", "fa-female", "fa-ferry", "fa-fighter-jet", "fa-file", "fa-file-alt", "fa-file-archive", "fa-file-arrow-down", "fa-file-arrow-up", "fa-file-audio", "fa-file-circle-check", "fa-file-circle-exclamation", "fa-file-circle-minus", "fa-file-circle-plus", "fa-file-circle-question", "fa-file-circle-xmark", "fa-file-clipboard", "fa-file-code", "fa-file-contract", "fa-file-csv", "fa-file-download", "fa-file-edit", "fa-file-excel", "fa-file-export", "fa-file-image", "fa-file-import", "fa-file-invoice", "fa-file-invoice-dollar", "fa-file-lines", "fa-file-medical", "fa-file-medical-alt", "fa-file-pdf", "fa-file-pen", "fa-file-powerpoint", "fa-file-prescription", "fa-file-shield", "fa-file-signature", "fa-file-text", "fa-file-upload", "fa-file-video", "fa-file-waveform", "fa-file-word", "fa-file-zipper", "fa-fill", "fa-fill-drip", "fa-film", "fa-filter", "fa-filter-circle-dollar", "fa-filter-circle-xmark", "fa-fingerprint", "fa-fire", "fa-fire-alt", "fa-fire-burner", "fa-fire-extinguisher", "fa-fire-flame-curved", "fa-fire-flame-simple", "fa-first-aid", "fa-fish", "fa-fish-fins", "fa-fist-raised", "fa-flag", "fa-flag-checkered", "fa-flag-usa", "fa-flask", "fa-flask-vial", "fa-floppy-disk", "fa-florin-sign", "fa-flushed", "fa-folder", "fa-folder-blank", "fa-folder-closed", "fa-folder-minus", "fa-folder-open", "fa-folder-plus", "fa-folder-tree", "fa-font", "fa-font-awesome", "fa-font-awesome-flag", "fa-font-awesome-logo-full", "fa-football", "fa-football-ball", "fa-forward", "fa-forward-fast", "fa-forward-step", "fa-franc-sign", "fa-frog", "fa-frown", "fa-frown-open", "fa-funnel-dollar", "fa-futbol", "fa-futbol-ball", "fa-g", "fa-gamepad", "fa-gas-pump", "fa-gauge", "fa-gauge-high", "fa-gauge-med", "fa-gauge-simple", "fa-gauge-simple-high", "fa-gauge-simple-med", "fa-gavel", "fa-gbp", "fa-gear", "fa-gears", "fa-gem", "fa-genderless", "fa-ghost", "fa-gift", "fa-gifts", "fa-glass-cheers", "fa-glass-martini", "fa-glass-martini-alt", "fa-glass-water", "fa-glass-water-droplet", "fa-glass-whiskey", "fa-glasses", "fa-globe", "fa-globe-africa", "fa-globe-americas", "fa-globe-asia", "fa-globe-europe", "fa-globe-oceania", "fa-golf-ball", "fa-golf-ball-tee", "fa-gopuram", "fa-graduation-cap", "fa-greater-than", "fa-greater-than-equal", "fa-grimace", "fa-grin", "fa-grin-alt", "fa-grin-beam", "fa-grin-beam-sweat", "fa-grin-hearts", "fa-grin-squint", "fa-grin-squint-tears", "fa-grin-stars", "fa-grin-tears", "fa-grin-tongue", "fa-grin-tongue-squint", "fa-grin-tongue-wink", "fa-grin-wink", "fa-grip", "fa-grip-horizontal", "fa-grip-lines", "fa-grip-lines-vertical", "fa-grip-vertical", "fa-group-arrows-rotate", "fa-guarani-sign", "fa-guitar", "fa-gun", "fa-h", "fa-h-square", "fa-hamburger", "fa-hammer", "fa-hamsa", "fa-hand", "fa-hand-back-fist", "fa-hand-dots", "fa-hand-fist", "fa-hand-holding", "fa-hand-holding-dollar", "fa-hand-holding-droplet", "fa-hand-holding-hand", "fa-hand-holding-heart", "fa-hand-holding-medical", "fa-hand-holding-usd", "fa-hand-holding-water", "fa-hand-lizard", "fa-hand-middle-finger", "fa-hand-paper", "fa-hand-peace", "fa-hand-point-down", "fa-hand-point-left", "fa-hand-point-right", "fa-hand-point-up", "fa-hand-pointer", "fa-hand-rock", "fa-hand-scissors", "fa-hand-sparkles", "fa-hand-spock", "fa-handcuffs", "fa-hands", "fa-hands-american-sign-language-interpreting", "fa-hands-asl-interpreting", "fa-hands-bound", "fa-hands-bubbles", "fa-hands-clapping", "fa-hands-helping", "fa-hands-holding", "fa-hands-holding-child", "fa-hands-holding-circle", "fa-hands-praying", "fa-hands-wash", "fa-handshake", "fa-handshake-alt", "fa-handshake-alt-slash", "fa-handshake-angle", "fa-handshake-simple", "fa-handshake-simple-slash", "fa-handshake-slash", "fa-hanukiah", "fa-hard-drive", "fa-hard-hat", "fa-hard-of-hearing", "fa-hashtag", "fa-hat-cowboy", "fa-hat-cowboy-side", "fa-hat-hard", "fa-hat-wizard", "fa-haykal", "fa-hdd", "fa-head-side-cough", "fa-head-side-cough-slash", "fa-head-side-mask", "fa-head-side-virus", "fa-header", "fa-heading", "fa-headphones", "fa-headphones-alt", "fa-headphones-simple", "fa-headset", "fa-heart", "fa-heart-broken", "fa-heart-circle-bolt", "fa-heart-circle-check", "fa-heart-circle-exclamation", "fa-heart-circle-minus", "fa-heart-circle-plus", "fa-heart-circle-xmark", "fa-heart-crack", "fa-heart-music-camera-bolt", "fa-heart-pulse", "fa-heartbeat", "fa-helicopter", "fa-helicopter-symbol", "fa-helmet-safety", "fa-helmet-un", "fa-highlighter", "fa-hiking", "fa-hill-avalanche", "fa-hill-rockslide", "fa-hippo", "fa-history", "fa-hockey-puck", "fa-holly-berry", "fa-home", "fa-home-alt", "fa-home-lg", "fa-home-lg-alt", "fa-home-user", "fa-horse", "fa-horse-head", "fa-hospital", "fa-hospital-alt", "fa-hospital-symbol", "fa-hospital-user", "fa-hospital-wide", "fa-hot-tub", "fa-hot-tub-person", "fa-hotdog", "fa-hotel", "fa-hourglass", "fa-hourglass-1", "fa-hourglass-2", "fa-hourglass-3", "fa-hourglass-empty", "fa-hourglass-end", "fa-hourglass-half", "fa-hourglass-start", "fa-house", "fa-house-chimney", "fa-house-chimney-crack", "fa-house-chimney-medical", "fa-house-chimney-user", "fa-house-chimney-window", "fa-house-circle-check", "fa-house-circle-exclamation", "fa-house-circle-xmark", "fa-house-crack", "fa-house-damage", "fa-house-fire", "fa-house-flag", "fa-house-flood-water", "fa-house-flood-water-circle-arrow-right", "fa-house-laptop", "fa-house-lock", "fa-house-medical", "fa-house-medical-circle-check", "fa-house-medical-circle-exclamation", "fa-house-medical-circle-xmark", "fa-house-medical-flag", "fa-house-signal", "fa-house-tsunami", "fa-house-user", "fa-hryvnia", "fa-hryvnia-sign", "fa-hurricane", "fa-i", "fa-i-cursor", "fa-ice-cream", "fa-icicles", "fa-icons", "fa-id-badge", "fa-id-card", "fa-id-card-alt", "fa-id-card-clip", "fa-igloo", "fa-ils", "fa-image", "fa-image-portrait", "fa-images", "fa-inbox", "fa-indent", "fa-indian-rupee", "fa-indian-rupee-sign", "fa-industry", "fa-infinity", "fa-info", "fa-info-circle", "fa-inr", "fa-institution", "fa-italic", "fa-j", "fa-jar", "fa-jar-wheat", "fa-jedi", "fa-jet-fighter", "fa-jet-fighter-up", "fa-joint", "fa-journal-whills", "fa-jpy", "fa-jug-detergent", "fa-k", "fa-kaaba", "fa-key", "fa-keyboard", "fa-khanda", "fa-kip-sign", "fa-kiss", "fa-kiss-beam", "fa-kiss-wink-heart", "fa-kit-medical", "fa-kitchen-set", "fa-kiwi-bird", "fa-krw", "fa-l", "fa-ladder-water", "fa-land-mine-on", "fa-landmark", "fa-landmark-alt", "fa-landmark-dome", "fa-landmark-flag", "fa-language", "fa-laptop", "fa-laptop-code", "fa-laptop-file", "fa-laptop-house", "fa-laptop-medical", "fa-lari-sign", "fa-laugh", "fa-laugh-beam", "fa-laugh-squint", "fa-laugh-wink", "fa-layer-group", "fa-leaf", "fa-left-long", "fa-left-right", "fa-legal", "fa-lemon", "fa-less-than", "fa-less-than-equal", "fa-level-down", "fa-level-down-alt", "fa-level-up", "fa-level-up-alt", "fa-life-ring", "fa-lightbulb", "fa-line-chart", "fa-lines-leaning", "fa-link", "fa-link-slash", "fa-lira-sign", "fa-list", "fa-list-12", "fa-list-alt", "fa-list-check", "fa-list-dots", "fa-list-numeric", "fa-list-ol", "fa-list-squares", "fa-list-ul", "fa-litecoin-sign", "fa-location", "fa-location-arrow", "fa-location-crosshairs", "fa-location-dot", "fa-location-pin", "fa-location-pin-lock", "fa-lock", "fa-lock-open", "fa-locust", "fa-long-arrow-alt-down", "fa-long-arrow-alt-left", "fa-long-arrow-alt-right", "fa-long-arrow-alt-up", "fa-long-arrow-down", "fa-long-arrow-left", "fa-long-arrow-right", "fa-long-arrow-up", "fa-low-vision", "fa-luggage-cart", "fa-lungs", "fa-lungs-virus", "fa-m", "fa-magic", "fa-magic-wand-sparkles", "fa-magnet", "fa-magnifying-glass", "fa-magnifying-glass-arrow-right", "fa-magnifying-glass-chart", "fa-magnifying-glass-dollar", "fa-magnifying-glass-location", "fa-magnifying-glass-minus", "fa-magnifying-glass-plus", "fa-mail-bulk", "fa-mail-forward", "fa-mail-reply", "fa-mail-reply-all", "fa-male", "fa-manat-sign", "fa-map", "fa-map-location", "fa-map-location-dot", "fa-map-marked", "fa-map-marked-alt", "fa-map-marker", "fa-map-marker-alt", "fa-map-pin", "fa-map-signs", "fa-marker", "fa-mars", "fa-mars-and-venus", "fa-mars-and-venus-burst", "fa-mars-double", "fa-mars-stroke", "fa-mars-stroke-h", "fa-mars-stroke-right", "fa-mars-stroke-up", "fa-mars-stroke-v", "fa-martini-glass", "fa-martini-glass-citrus", "fa-martini-glass-empty", "fa-mask", "fa-mask-face", "fa-mask-ventilator", "fa-masks-theater", "fa-mattress-pillow", "fa-maximize", "fa-medal", "fa-medkit", "fa-meh", "fa-meh-blank", "fa-meh-rolling-eyes", "fa-memory", "fa-menorah", "fa-mercury", "fa-message", "fa-meteor", "fa-microchip", "fa-microphone", "fa-microphone-alt", "fa-microphone-alt-slash", "fa-microphone-lines", "fa-microphone-lines-slash", "fa-microphone-slash", "fa-microscope", "fa-mill-sign", "fa-minimize", "fa-minus", "fa-minus-circle", "fa-minus-square", "fa-mitten", "fa-mobile", "fa-mobile-alt", "fa-mobile-android", "fa-mobile-android-alt", "fa-mobile-button", "fa-mobile-phone", "fa-mobile-retro", "fa-mobile-screen", "fa-mobile-screen-button", "fa-money-bill", "fa-money-bill-1", "fa-money-bill-1-wave", "fa-money-bill-alt", "fa-money-bill-transfer", "fa-money-bill-trend-up", "fa-money-bill-wave", "fa-money-bill-wave-alt", "fa-money-bill-wheat", "fa-money-bills", "fa-money-check", "fa-money-check-alt", "fa-money-check-dollar", "fa-monument", "fa-moon", "fa-mortar-board", "fa-mortar-pestle", "fa-mosque", "fa-mosquito", "fa-mosquito-net", "fa-motorcycle", "fa-mound", "fa-mountain", "fa-mountain-city", "fa-mountain-sun", "fa-mouse", "fa-mouse-pointer", "fa-mug-hot", "fa-mug-saucer", "fa-multiply", "fa-museum", "fa-music", "fa-n", "fa-naira-sign", "fa-navicon", "fa-network-wired", "fa-neuter", "fa-newspaper", "fa-not-equal", "fa-notdef", "fa-note-sticky", "fa-notes-medical", "fa-o", "fa-object-group", "fa-object-ungroup", "fa-oil-can", "fa-oil-well", "fa-om", "fa-otter", "fa-outdent", "fa-p", "fa-pager", "fa-paint-brush", "fa-paint-roller", "fa-paintbrush", "fa-palette", "fa-pallet", "fa-panorama", "fa-paper-plane", "fa-paperclip", "fa-parachute-box", "fa-paragraph", "fa-parking", "fa-passport", "fa-pastafarianism", "fa-paste", "fa-pause", "fa-pause-circle", "fa-paw", "fa-peace", "fa-pen", "fa-pen-alt", "fa-pen-clip", "fa-pen-fancy", "fa-pen-nib", "fa-pen-ruler", "fa-pen-square", "fa-pen-to-square", "fa-pencil", "fa-pencil-alt", "fa-pencil-ruler", "fa-pencil-square", "fa-people-arrows", "fa-people-arrows-left-right", "fa-people-carry", "fa-people-carry-box", "fa-people-group", "fa-people-line", "fa-people-pulling", "fa-people-robbery", "fa-people-roof", "fa-pepper-hot", "fa-percent", "fa-percentage", "fa-person", "fa-person-arrow-down-to-line", "fa-person-arrow-up-from-line", "fa-person-biking", "fa-person-booth", "fa-person-breastfeeding", "fa-person-burst", "fa-person-cane", "fa-person-chalkboard", "fa-person-circle-check", "fa-person-circle-exclamation", "fa-person-circle-minus", "fa-person-circle-plus", "fa-person-circle-question", "fa-person-circle-xmark", "fa-person-digging", "fa-person-dots-from-line", "fa-person-dress", "fa-person-dress-burst", "fa-person-drowning", "fa-person-falling", "fa-person-falling-burst", "fa-person-half-dress", "fa-person-harassing", "fa-person-hiking", "fa-person-military-pointing", "fa-person-military-rifle", "fa-person-military-to-person", "fa-person-praying", "fa-person-pregnant", "fa-person-rays", "fa-person-rifle", "fa-person-running", "fa-person-shelter", "fa-person-skating", "fa-person-skiing", "fa-person-skiing-nordic", "fa-person-snowboarding", "fa-person-swimming", "fa-person-through-window", "fa-person-walking", "fa-person-walking-arrow-loop-left", "fa-person-walking-arrow-right", "fa-person-walking-dashed-line-arrow-right", "fa-person-walking-luggage", "fa-person-walking-with-cane", "fa-peseta-sign", "fa-peso-sign", "fa-phone", "fa-phone-alt", "fa-phone-flip", "fa-phone-slash", "fa-phone-square", "fa-phone-square-alt", "fa-phone-volume", "fa-photo-film", "fa-photo-video", "fa-pie-chart", "fa-piggy-bank", "fa-pills", "fa-ping-pong-paddle-ball", "fa-pizza-slice", "fa-place-of-worship", "fa-plane", "fa-plane-arrival", "fa-plane-circle-check", "fa-plane-circle-exclamation", "fa-plane-circle-xmark", "fa-plane-departure", "fa-plane-lock", "fa-plane-slash", "fa-plane-up", "fa-plant-wilt", "fa-plate-wheat", "fa-play", "fa-play-circle", "fa-plug", "fa-plug-circle-bolt", "fa-plug-circle-check", "fa-plug-circle-exclamation", "fa-plug-circle-minus", "fa-plug-circle-plus", "fa-plug-circle-xmark", "fa-plus", "fa-plus-circle", "fa-plus-minus", "fa-plus-square", "fa-podcast", "fa-poll", "fa-poll-h", "fa-poo", "fa-poo-bolt", "fa-poo-storm", "fa-poop", "fa-portrait", "fa-pound-sign", "fa-power-off", "fa-pray", "fa-praying-hands", "fa-prescription", "fa-prescription-bottle", "fa-prescription-bottle-alt", "fa-prescription-bottle-medical", "fa-print", "fa-procedures", "fa-project-diagram", "fa-pump-medical", "fa-pump-soap", "fa-puzzle-piece", "fa-q", "fa-qrcode", "fa-question", "fa-question-circle", "fa-quidditch", "fa-quidditch-broom-ball", "fa-quote-left", "fa-quote-left-alt", "fa-quote-right", "fa-quote-right-alt", "fa-quran", "fa-r", "fa-radiation", "fa-radiation-alt", "fa-radio", "fa-rainbow", "fa-random", "fa-ranking-star", "fa-receipt", "fa-record-vinyl", "fa-rectangle-ad", "fa-rectangle-list", "fa-rectangle-times", "fa-rectangle-xmark", "fa-recycle", "fa-redo", "fa-redo-alt", "fa-refresh", "fa-registered", "fa-remove", "fa-remove-format", "fa-reorder", "fa-repeat", "fa-reply", "fa-reply-all", "fa-republican", "fa-restroom", "fa-retweet", "fa-ribbon", "fa-right-from-bracket", "fa-right-left", "fa-right-long", "fa-right-to-bracket", "fa-ring", "fa-rmb", "fa-road", "fa-road-barrier", "fa-road-bridge", "fa-road-circle-check", "fa-road-circle-exclamation", "fa-road-circle-xmark", "fa-road-lock", "fa-road-spikes", "fa-robot", "fa-rocket", "fa-rod-asclepius", "fa-rod-snake", "fa-rotate", "fa-rotate-back", "fa-rotate-backward", "fa-rotate-forward", "fa-rotate-left", "fa-rotate-right", "fa-rouble", "fa-route", "fa-rss", "fa-rss-square", "fa-rub", "fa-ruble", "fa-ruble-sign", "fa-rug", "fa-ruler", "fa-ruler-combined", "fa-ruler-horizontal", "fa-ruler-vertical", "fa-running", "fa-rupee", "fa-rupee-sign", "fa-rupiah-sign", "fa-s", "fa-sack-dollar", "fa-sack-xmark", "fa-sad-cry", "fa-sad-tear", "fa-sailboat", "fa-satellite", "fa-satellite-dish", "fa-save", "fa-scale-balanced", "fa-scale-unbalanced", "fa-scale-unbalanced-flip", "fa-school", "fa-school-circle-check", "fa-school-circle-exclamation", "fa-school-circle-xmark", "fa-school-flag", "fa-school-lock", "fa-scissors", "fa-screwdriver", "fa-screwdriver-wrench", "fa-scroll", "fa-scroll-torah", "fa-sd-card", "fa-search", "fa-search-dollar", "fa-search-location", "fa-search-minus", "fa-search-plus", "fa-section", "fa-seedling", "fa-server", "fa-shapes", "fa-share", "fa-share-alt", "fa-share-alt-square", "fa-share-from-square", "fa-share-nodes", "fa-share-square", "fa-sheet-plastic", "fa-shekel", "fa-shekel-sign", "fa-sheqel", "fa-sheqel-sign", "fa-shield", "fa-shield-alt", "fa-shield-blank", "fa-shield-cat", "fa-shield-dog", "fa-shield-halved", "fa-shield-heart", "fa-shield-virus", "fa-ship", "fa-shipping-fast", "fa-shirt", "fa-shoe-prints", "fa-shop", "fa-shop-lock", "fa-shop-slash", "fa-shopping-bag", "fa-shopping-basket", "fa-shopping-cart", "fa-shower", "fa-shrimp", "fa-shuffle", "fa-shuttle-space", "fa-shuttle-van", "fa-sign", "fa-sign-hanging", "fa-sign-in", "fa-sign-in-alt", "fa-sign-language", "fa-sign-out", "fa-sign-out-alt", "fa-signal", "fa-signal-5", "fa-signal-perfect", "fa-signature", "fa-signing", "fa-signs-post", "fa-sim-card", "fa-sink", "fa-sitemap", "fa-skating", "fa-skiing", "fa-skiing-nordic", "fa-skull", "fa-skull-crossbones", "fa-slash", "fa-sleigh", "fa-sliders", "fa-sliders-h", "fa-smile", "fa-smile-beam", "fa-smile-wink", "fa-smog", "fa-smoking", "fa-smoking-ban", "fa-sms", "fa-snowboarding", "fa-snowflake", "fa-snowman", "fa-snowplow", "fa-soap", "fa-soccer-ball", "fa-socks", "fa-solar-panel", "fa-sort", "fa-sort-alpha-asc", "fa-sort-alpha-desc", "fa-sort-alpha-down", "fa-sort-alpha-down-alt", "fa-sort-alpha-up", "fa-sort-alpha-up-alt", "fa-sort-amount-asc", "fa-sort-amount-desc", "fa-sort-amount-down", "fa-sort-amount-down-alt", "fa-sort-amount-up", "fa-sort-amount-up-alt", "fa-sort-asc", "fa-sort-desc", "fa-sort-down", "fa-sort-numeric-asc", "fa-sort-numeric-desc", "fa-sort-numeric-down", "fa-sort-numeric-down-alt", "fa-sort-numeric-up", "fa-sort-numeric-up-alt", "fa-sort-up", "fa-spa", "fa-space-shuttle", "fa-spaghetti-monster-flying", "fa-spell-check", "fa-spider", "fa-spinner", "fa-splotch", "fa-spoon", "fa-spray-can", "fa-spray-can-sparkles", "fa-sprout", "fa-square", "fa-square-arrow-up-right", "fa-square-caret-down", "fa-square-caret-left", "fa-square-caret-right", "fa-square-caret-up", "fa-square-check", "fa-square-envelope", "fa-square-full", "fa-square-h", "fa-square-minus", "fa-square-nfi", "fa-square-parking", "fa-square-pen", "fa-square-person-confined", "fa-square-phone", "fa-square-phone-flip", "fa-square-plus", "fa-square-poll-horizontal", "fa-square-poll-vertical", "fa-square-root-alt", "fa-square-root-variable", "fa-square-rss", "fa-square-share-nodes", "fa-square-up-right", "fa-square-virus", "fa-square-xmark", "fa-staff-aesculapius", "fa-staff-snake", "fa-stairs", "fa-stamp", "fa-stapler", "fa-star", "fa-star-and-crescent", "fa-star-half", "fa-star-half-alt", "fa-star-half-stroke", "fa-star-of-david", "fa-star-of-life", "fa-step-backward", "fa-step-forward", "fa-sterling-sign", "fa-stethoscope", "fa-sticky-note", "fa-stop", "fa-stop-circle", "fa-stopwatch", "fa-stopwatch-20", "fa-store", "fa-store-alt", "fa-store-alt-slash", "fa-store-slash", "fa-stream", "fa-street-view", "fa-strikethrough", "fa-stroopwafel", "fa-subscript", "fa-subtract", "fa-subway", "fa-suitcase", "fa-suitcase-medical", "fa-suitcase-rolling", "fa-sun", "fa-sun-plant-wilt", "fa-superscript", "fa-surprise", "fa-swatchbook", "fa-swimmer", "fa-swimming-pool", "fa-synagogue", "fa-sync", "fa-sync-alt", "fa-syringe", "fa-t", "fa-t-shirt", "fa-table", "fa-table-cells", "fa-table-cells-column-lock", "fa-table-cells-large", "fa-table-cells-row-lock", "fa-table-columns", "fa-table-list", "fa-table-tennis", "fa-table-tennis-paddle-ball", "fa-tablet", "fa-tablet-alt", "fa-tablet-android", "fa-tablet-button", "fa-tablet-screen-button", "fa-tablets", "fa-tachograph-digital", "fa-tachometer", "fa-tachometer-alt", "fa-tachometer-alt-average", "fa-tachometer-alt-fast", "fa-tachometer-average", "fa-tachometer-fast", "fa-tag", "fa-tags", "fa-tanakh", "fa-tape", "fa-tarp", "fa-tarp-droplet", "fa-tasks", "fa-tasks-alt", "fa-taxi", "fa-teeth", "fa-teeth-open", "fa-teletype", "fa-television", "fa-temperature-0", "fa-temperature-1", "fa-temperature-2", "fa-temperature-3", "fa-temperature-4", "fa-temperature-arrow-down", "fa-temperature-arrow-up", "fa-temperature-down", "fa-temperature-empty", "fa-temperature-full", "fa-temperature-half", "fa-temperature-high", "fa-temperature-low", "fa-temperature-quarter", "fa-temperature-three-quarters", "fa-temperature-up", "fa-tenge", "fa-tenge-sign", "fa-tent", "fa-tent-arrow-down-to-line", "fa-tent-arrow-left-right", "fa-tent-arrow-turn-left", "fa-tent-arrows-down", "fa-tents", "fa-terminal", "fa-text-height", "fa-text-slash", "fa-text-width", "fa-th", "fa-th-large", "fa-th-list", "fa-theater-masks", "fa-thermometer", "fa-thermometer-0", "fa-thermometer-1", "fa-thermometer-2", "fa-thermometer-3", "fa-thermometer-4", "fa-thermometer-empty", "fa-thermometer-full", "fa-thermometer-half", "fa-thermometer-quarter", "fa-thermometer-three-quarters", "fa-thumb-tack", "fa-thumbs-down", "fa-thumbs-up", "fa-thumbtack", "fa-thunderstorm", "fa-ticket", "fa-ticket-alt", "fa-ticket-simple", "fa-timeline", "fa-times", "fa-times-circle", "fa-times-rectangle", "fa-times-square", "fa-tint", "fa-tint-slash", "fa-tired", "fa-toggle-off", "fa-toggle-on", "fa-toilet", "fa-toilet-paper", "fa-toilet-paper-slash", "fa-toilet-portable", "fa-toilets-portable", "fa-toolbox", "fa-tools", "fa-tooth", "fa-torah", "fa-torii-gate", "fa-tornado", "fa-tower-broadcast", "fa-tower-cell", "fa-tower-observation", "fa-tractor", "fa-trademark", "fa-traffic-light", "fa-trailer", "fa-train", "fa-train-subway", "fa-train-tram", "fa-tram", "fa-transgender", "fa-transgender-alt", "fa-trash", "fa-trash-alt", "fa-trash-arrow-up", "fa-trash-can", "fa-trash-can-arrow-up", "fa-trash-restore", "fa-trash-restore-alt", "fa-tree", "fa-tree-city", "fa-triangle-circle-square", "fa-triangle-exclamation", "fa-trophy", "fa-trowel", "fa-trowel-bricks", "fa-truck", "fa-truck-arrow-right", "fa-truck-droplet", "fa-truck-fast", "fa-truck-field", "fa-truck-field-un", "fa-truck-front", "fa-truck-loading", "fa-truck-medical", "fa-truck-monster", "fa-truck-moving", "fa-truck-pickup", "fa-truck-plane", "fa-truck-ramp-box", "fa-try", "fa-tshirt", "fa-tty", "fa-turkish-lira", "fa-turkish-lira-sign", "fa-turn-down", "fa-turn-up", "fa-tv", "fa-tv-alt", "fa-u", "fa-umbrella", "fa-umbrella-beach", "fa-underline", "fa-undo", "fa-undo-alt", "fa-universal-access", "fa-university", "fa-unlink", "fa-unlock", "fa-unlock-alt", "fa-unlock-keyhole", "fa-unsorted", "fa-up-down", "fa-up-down-left-right", "fa-up-long", "fa-up-right-and-down-left-from-center", "fa-up-right-from-square", "fa-upload", "fa-usd", "fa-user", "fa-user-alt", "fa-user-alt-slash", "fa-user-astronaut", "fa-user-check", "fa-user-circle", "fa-user-clock", "fa-user-cog", "fa-user-doctor", "fa-user-edit", "fa-user-friends", "fa-user-gear", "fa-user-graduate", "fa-user-group", "fa-user-injured", "fa-user-large", "fa-user-large-slash", "fa-user-lock", "fa-user-md", "fa-user-minus", "fa-user-ninja", "fa-user-nurse", "fa-user-pen", "fa-user-plus", "fa-user-secret", "fa-user-shield", "fa-user-slash", "fa-user-tag", "fa-user-tie", "fa-user-times", "fa-user-xmark", "fa-users", "fa-users-between-lines", "fa-users-cog", "fa-users-gear", "fa-users-line", "fa-users-rays", "fa-users-rectangle", "fa-users-slash", "fa-users-viewfinder", "fa-utensil-spoon", "fa-utensils", "fa-v", "fa-van-shuttle", "fa-vault", "fa-vcard", "fa-vector-square", "fa-venus", "fa-venus-double", "fa-venus-mars", "fa-vest", "fa-vest-patches", "fa-vial", "fa-vial-circle-check", "fa-vial-virus", "fa-vials", "fa-video", "fa-video-camera", "fa-video-slash", "fa-vihara", "fa-virus", "fa-virus-covid", "fa-virus-covid-slash", "fa-virus-slash", "fa-viruses", "fa-voicemail", "fa-volcano", "fa-volleyball", "fa-volleyball-ball", "fa-volume-control-phone", "fa-volume-down", "fa-volume-high", "fa-volume-low", "fa-volume-mute", "fa-volume-off", "fa-volume-times", "fa-volume-up", "fa-volume-xmark", "fa-vote-yea", "fa-vr-cardboard", "fa-w", "fa-walkie-talkie", "fa-walking", "fa-wallet", "fa-wand-magic", "fa-wand-magic-sparkles", "fa-wand-sparkles", "fa-warehouse", "fa-warning", "fa-water", "fa-water-ladder", "fa-wave-square", "fa-weight", "fa-weight-hanging", "fa-weight-scale", "fa-wheat-alt", "fa-wheat-awn", "fa-wheat-awn-circle-exclamation", "fa-wheelchair", "fa-wheelchair-alt", "fa-wheelchair-move", "fa-whiskey-glass", "fa-wifi", "fa-wifi-3", "fa-wifi-strong", "fa-wind", "fa-window-close", "fa-window-maximize", "fa-window-minimize", "fa-window-restore", "fa-wine-bottle", "fa-wine-glass", "fa-wine-glass-alt", "fa-wine-glass-empty", "fa-won", "fa-won-sign", "fa-worm", "fa-wrench", "fa-x", "fa-x-ray", "fa-xmark", "fa-xmark-circle", "fa-xmark-square", "fa-xmarks-lines", "fa-y", "fa-yen", "fa-yen-sign", "fa-yin-yang", "fa-z", "fa-zap", "file", "fileHappy", "filter", "filter-outline", "find-documents", "folder", "form", "gallery", "graphiql", "grid-view", "happy", "help", "help-solid", "highlight", "highlight-outline", "indico-logo-white", "indico-o", "indico-o-white", "info", "kabob", "key", "label", "layout-complex", "layout-simple", "libraries", "list-view", "location", "lock", "logout", "menu", "model-import", "model-starter", "moon", "moonbow", "no-collections", "no-format", "no-libraries", "no_results", "object-detection", "organizations", "output", "page-thumbnail", "pay-as-you-go", "person", "phone", "pin", "plus", "pointer", "popup", "preview-view", "price", "radio-button", "recruiter", "regex", "reject", "repair", "research", "reset", "retrain", "sad", "search", "search-thin", "shrug", "signature", "sort-down", "split", "step-forward", "sun", "surround", "surround-outline", "text", "thumbs-down", "thumbs-up", "time", "trash", "unlock", "upload", "url", "user", "wand", "warning", "warning-stroke", "workflows", "x-close", "zoom-in", "zoom-out"];
|
|
11
|
+
type IconName = typeof iconNames[number];
|
|
1123
12
|
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
declare const Col: ({ ref: _ref, ...rest }: ColProps) => react_jsx_runtime.JSX.Element;
|
|
1127
|
-
|
|
1128
|
-
declare const allIcons: {
|
|
1129
|
-
readonly 'indico-o-white': react_jsx_runtime.JSX.Element;
|
|
1130
|
-
readonly account: react_jsx_runtime.JSX.Element;
|
|
1131
|
-
readonly address: react_jsx_runtime.JSX.Element;
|
|
1132
|
-
readonly 'api-doc': react_jsx_runtime.JSX.Element;
|
|
1133
|
-
readonly 'arrow-dots': react_jsx_runtime.JSX.Element;
|
|
1134
|
-
readonly 'arrow-down': react_jsx_runtime.JSX.Element;
|
|
1135
|
-
readonly 'arrow-up-circle': react_jsx_runtime.JSX.Element;
|
|
1136
|
-
readonly 'arrows-cursor': react_jsx_runtime.JSX.Element;
|
|
1137
|
-
readonly bookmark: react_jsx_runtime.JSX.Element;
|
|
1138
|
-
readonly bookmarks: react_jsx_runtime.JSX.Element;
|
|
1139
|
-
readonly 'bookmark-saved': react_jsx_runtime.JSX.Element;
|
|
1140
|
-
readonly branch: react_jsx_runtime.JSX.Element;
|
|
1141
|
-
readonly calendar: react_jsx_runtime.JSX.Element;
|
|
1142
|
-
readonly 'check-circle': react_jsx_runtime.JSX.Element;
|
|
1143
|
-
readonly 'circle-help': react_jsx_runtime.JSX.Element;
|
|
1144
|
-
readonly check: react_jsx_runtime.JSX.Element;
|
|
1145
|
-
readonly checkbox: react_jsx_runtime.JSX.Element;
|
|
1146
|
-
readonly 'chevron-down': react_jsx_runtime.JSX.Element;
|
|
1147
|
-
readonly 'chevron-left': react_jsx_runtime.JSX.Element;
|
|
1148
|
-
readonly 'chevron-right': react_jsx_runtime.JSX.Element;
|
|
1149
|
-
readonly 'chevron-up': react_jsx_runtime.JSX.Element;
|
|
1150
|
-
readonly 'classification-document': react_jsx_runtime.JSX.Element;
|
|
1151
|
-
readonly 'classification-image': react_jsx_runtime.JSX.Element;
|
|
1152
|
-
readonly 'classification-page': react_jsx_runtime.JSX.Element;
|
|
1153
|
-
readonly 'classify-and-unbundle': react_jsx_runtime.JSX.Element;
|
|
1154
|
-
readonly clipboard: react_jsx_runtime.JSX.Element;
|
|
1155
|
-
readonly 'coffee-1': react_jsx_runtime.JSX.Element;
|
|
1156
|
-
readonly 'coffee-2': react_jsx_runtime.JSX.Element;
|
|
1157
|
-
readonly 'coffee-fail': react_jsx_runtime.JSX.Element;
|
|
1158
|
-
readonly coffeecup: react_jsx_runtime.JSX.Element;
|
|
1159
|
-
readonly coffeesteam: react_jsx_runtime.JSX.Element;
|
|
1160
|
-
readonly cog: react_jsx_runtime.JSX.Element;
|
|
1161
|
-
readonly collection: react_jsx_runtime.JSX.Element;
|
|
1162
|
-
readonly compare: react_jsx_runtime.JSX.Element;
|
|
1163
|
-
readonly 'company-name': react_jsx_runtime.JSX.Element;
|
|
1164
|
-
readonly 'confidence-bar-1': react_jsx_runtime.JSX.Element;
|
|
1165
|
-
readonly 'confidence-bar-2': react_jsx_runtime.JSX.Element;
|
|
1166
|
-
readonly 'confidence-bar-3': react_jsx_runtime.JSX.Element;
|
|
1167
|
-
readonly 'confidence-bar-4': react_jsx_runtime.JSX.Element;
|
|
1168
|
-
readonly 'confidence-bars': react_jsx_runtime.JSX.Element;
|
|
1169
|
-
readonly configure: react_jsx_runtime.JSX.Element;
|
|
1170
|
-
readonly 'choose-library': react_jsx_runtime.JSX.Element;
|
|
1171
|
-
readonly crowdlabel: react_jsx_runtime.JSX.Element;
|
|
1172
|
-
readonly currency: react_jsx_runtime.JSX.Element;
|
|
1173
|
-
readonly dashboard: react_jsx_runtime.JSX.Element;
|
|
1174
|
-
readonly 'data-and-access': react_jsx_runtime.JSX.Element;
|
|
1175
|
-
readonly database: react_jsx_runtime.JSX.Element;
|
|
1176
|
-
readonly document: react_jsx_runtime.JSX.Element;
|
|
1177
|
-
readonly date: react_jsx_runtime.JSX.Element;
|
|
1178
|
-
readonly draggable: react_jsx_runtime.JSX.Element;
|
|
1179
|
-
readonly droplet: react_jsx_runtime.JSX.Element;
|
|
1180
|
-
readonly edit: react_jsx_runtime.JSX.Element;
|
|
1181
|
-
readonly education: react_jsx_runtime.JSX.Element;
|
|
1182
|
-
readonly ellipsis: react_jsx_runtime.JSX.Element;
|
|
1183
|
-
readonly 'elmos-fire': react_jsx_runtime.JSX.Element;
|
|
1184
|
-
readonly email: react_jsx_runtime.JSX.Element;
|
|
1185
|
-
readonly enterprise: react_jsx_runtime.JSX.Element;
|
|
1186
|
-
readonly 'exclamation-circle-stroke': react_jsx_runtime.JSX.Element;
|
|
1187
|
-
readonly extraction: react_jsx_runtime.JSX.Element;
|
|
1188
|
-
readonly eye: react_jsx_runtime.JSX.Element;
|
|
1189
|
-
readonly file: react_jsx_runtime.JSX.Element;
|
|
1190
|
-
readonly fileHappy: react_jsx_runtime.JSX.Element;
|
|
1191
|
-
readonly filter: react_jsx_runtime.JSX.Element;
|
|
1192
|
-
readonly 'filter-outline': react_jsx_runtime.JSX.Element;
|
|
1193
|
-
readonly folder: react_jsx_runtime.JSX.Element;
|
|
1194
|
-
readonly form: react_jsx_runtime.JSX.Element;
|
|
1195
|
-
readonly gallery: react_jsx_runtime.JSX.Element;
|
|
1196
|
-
readonly 'find-documents': react_jsx_runtime.JSX.Element;
|
|
1197
|
-
readonly graphiql: react_jsx_runtime.JSX.Element;
|
|
1198
|
-
readonly 'grid-view': react_jsx_runtime.JSX.Element;
|
|
1199
|
-
readonly happy: react_jsx_runtime.JSX.Element;
|
|
1200
|
-
readonly 'help-solid': react_jsx_runtime.JSX.Element;
|
|
1201
|
-
readonly help: react_jsx_runtime.JSX.Element;
|
|
1202
|
-
readonly highlight: react_jsx_runtime.JSX.Element;
|
|
1203
|
-
readonly 'highlight-outline': react_jsx_runtime.JSX.Element;
|
|
1204
|
-
readonly 'indico-logo-white': react_jsx_runtime.JSX.Element;
|
|
1205
|
-
readonly 'indico-o': react_jsx_runtime.JSX.Element;
|
|
1206
|
-
readonly info: react_jsx_runtime.JSX.Element;
|
|
1207
|
-
readonly kabob: react_jsx_runtime.JSX.Element;
|
|
1208
|
-
readonly key: react_jsx_runtime.JSX.Element;
|
|
1209
|
-
readonly label: react_jsx_runtime.JSX.Element;
|
|
1210
|
-
readonly 'layout-complex': react_jsx_runtime.JSX.Element;
|
|
1211
|
-
readonly 'layout-simple': react_jsx_runtime.JSX.Element;
|
|
1212
|
-
readonly 'list-view': react_jsx_runtime.JSX.Element;
|
|
1213
|
-
readonly libraries: react_jsx_runtime.JSX.Element;
|
|
1214
|
-
readonly location: react_jsx_runtime.JSX.Element;
|
|
1215
|
-
readonly logout: react_jsx_runtime.JSX.Element;
|
|
1216
|
-
readonly lock: react_jsx_runtime.JSX.Element;
|
|
1217
|
-
readonly menu: react_jsx_runtime.JSX.Element;
|
|
1218
|
-
readonly 'model-import': react_jsx_runtime.JSX.Element;
|
|
1219
|
-
readonly 'model-starter': react_jsx_runtime.JSX.Element;
|
|
1220
|
-
readonly moon: react_jsx_runtime.JSX.Element;
|
|
1221
|
-
readonly moonbow: react_jsx_runtime.JSX.Element;
|
|
1222
|
-
readonly 'no-collections': react_jsx_runtime.JSX.Element;
|
|
1223
|
-
readonly 'no-libraries': react_jsx_runtime.JSX.Element;
|
|
1224
|
-
readonly no_results: react_jsx_runtime.JSX.Element;
|
|
1225
|
-
readonly 'no-format': react_jsx_runtime.JSX.Element;
|
|
1226
|
-
readonly 'object-detection': react_jsx_runtime.JSX.Element;
|
|
1227
|
-
readonly organizations: react_jsx_runtime.JSX.Element;
|
|
1228
|
-
readonly output: react_jsx_runtime.JSX.Element;
|
|
1229
|
-
readonly 'page-thumbnail': react_jsx_runtime.JSX.Element;
|
|
1230
|
-
readonly 'pay-as-you-go': react_jsx_runtime.JSX.Element;
|
|
1231
|
-
readonly person: react_jsx_runtime.JSX.Element;
|
|
1232
|
-
readonly phone: react_jsx_runtime.JSX.Element;
|
|
1233
|
-
readonly pin: react_jsx_runtime.JSX.Element;
|
|
1234
|
-
readonly plus: react_jsx_runtime.JSX.Element;
|
|
1235
|
-
readonly pointer: react_jsx_runtime.JSX.Element;
|
|
1236
|
-
readonly popup: react_jsx_runtime.JSX.Element;
|
|
1237
|
-
readonly price: react_jsx_runtime.JSX.Element;
|
|
1238
|
-
readonly 'preview-view': react_jsx_runtime.JSX.Element;
|
|
1239
|
-
readonly 'radio-button': react_jsx_runtime.JSX.Element;
|
|
1240
|
-
readonly recruiter: react_jsx_runtime.JSX.Element;
|
|
1241
|
-
readonly regex: react_jsx_runtime.JSX.Element;
|
|
1242
|
-
readonly reject: react_jsx_runtime.JSX.Element;
|
|
1243
|
-
readonly repair: react_jsx_runtime.JSX.Element;
|
|
1244
|
-
readonly research: react_jsx_runtime.JSX.Element;
|
|
1245
|
-
readonly reset: react_jsx_runtime.JSX.Element;
|
|
1246
|
-
readonly retrain: react_jsx_runtime.JSX.Element;
|
|
1247
|
-
readonly sad: react_jsx_runtime.JSX.Element;
|
|
1248
|
-
readonly search: react_jsx_runtime.JSX.Element;
|
|
1249
|
-
readonly 'search-thin': react_jsx_runtime.JSX.Element;
|
|
1250
|
-
readonly shrug: react_jsx_runtime.JSX.Element;
|
|
1251
|
-
readonly signature: react_jsx_runtime.JSX.Element;
|
|
1252
|
-
readonly 'sort-down': react_jsx_runtime.JSX.Element;
|
|
1253
|
-
readonly split: react_jsx_runtime.JSX.Element;
|
|
1254
|
-
readonly 'step-forward': react_jsx_runtime.JSX.Element;
|
|
1255
|
-
readonly sun: react_jsx_runtime.JSX.Element;
|
|
1256
|
-
readonly surround: react_jsx_runtime.JSX.Element;
|
|
1257
|
-
readonly 'surround-outline': react_jsx_runtime.JSX.Element;
|
|
1258
|
-
readonly text: react_jsx_runtime.JSX.Element;
|
|
1259
|
-
readonly 'thumbs-down': react_jsx_runtime.JSX.Element;
|
|
1260
|
-
readonly 'thumbs-up': react_jsx_runtime.JSX.Element;
|
|
1261
|
-
readonly time: react_jsx_runtime.JSX.Element;
|
|
1262
|
-
readonly trash: react_jsx_runtime.JSX.Element;
|
|
1263
|
-
readonly unlock: react_jsx_runtime.JSX.Element;
|
|
1264
|
-
readonly upload: react_jsx_runtime.JSX.Element;
|
|
1265
|
-
readonly url: react_jsx_runtime.JSX.Element;
|
|
1266
|
-
readonly user: react_jsx_runtime.JSX.Element;
|
|
1267
|
-
readonly wand: react_jsx_runtime.JSX.Element;
|
|
1268
|
-
readonly warning: react_jsx_runtime.JSX.Element;
|
|
1269
|
-
readonly 'warning-stroke': react_jsx_runtime.JSX.Element;
|
|
1270
|
-
readonly workflows: react_jsx_runtime.JSX.Element;
|
|
1271
|
-
readonly 'x-close': react_jsx_runtime.JSX.Element;
|
|
1272
|
-
readonly 'zoom-in': react_jsx_runtime.JSX.Element;
|
|
1273
|
-
readonly 'zoom-out': react_jsx_runtime.JSX.Element;
|
|
1274
|
-
readonly 'fa-dot-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1275
|
-
readonly 'fa-file': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1276
|
-
readonly 'fa-file-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1277
|
-
readonly 'fa-file-pdf': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1278
|
-
readonly 'fa-file-word': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1279
|
-
readonly 'fa-check-square': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1280
|
-
readonly 'fa-square': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1281
|
-
readonly 'fa-angle-double-left': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1282
|
-
readonly 'fa-arrow-circle-right': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1283
|
-
readonly 'fa-arrow-down': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1284
|
-
readonly 'fa-arrow-left': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1285
|
-
readonly 'fa-arrow-right': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1286
|
-
readonly 'fa-arrow-up': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1287
|
-
readonly 'fa-ban': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1288
|
-
readonly 'fa-caret-down': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1289
|
-
readonly 'fa-caret-up': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1290
|
-
readonly 'fa-chart-bar': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1291
|
-
readonly 'fa-check': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1292
|
-
readonly 'fa-check-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1293
|
-
readonly 'fa-circle-notch': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1294
|
-
readonly 'fa-clipboard': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1295
|
-
readonly 'fa-clock': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1296
|
-
readonly 'fa-clone': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1297
|
-
readonly 'fa-cloud': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1298
|
-
readonly 'fa-cog': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1299
|
-
readonly 'fa-cogs': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1300
|
-
readonly 'fa-coins': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1301
|
-
readonly 'fa-cube': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1302
|
-
readonly 'fa-cut': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1303
|
-
readonly 'fa-download': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1304
|
-
readonly 'fa-exclamation-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1305
|
-
readonly 'fa-exclamation-triangle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1306
|
-
readonly 'fa-external-link-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1307
|
-
readonly 'fa-eye-dropper': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1308
|
-
readonly 'fa-file-download': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1309
|
-
readonly 'fa-file-export': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1310
|
-
readonly 'fa-file-upload': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1311
|
-
readonly 'fa-filter': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1312
|
-
readonly 'fa-ghost': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1313
|
-
readonly 'fa-hat-wizard': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1314
|
-
readonly 'fa-info-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1315
|
-
readonly 'fa-key': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1316
|
-
readonly 'fa-keyboard': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1317
|
-
readonly 'fa-layer-group': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1318
|
-
readonly 'fa-pencil-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1319
|
-
readonly 'fa-plus': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1320
|
-
readonly 'fa-plus-square': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1321
|
-
readonly 'fa-question-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1322
|
-
readonly 'fa-robot': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1323
|
-
readonly 'fa-search': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1324
|
-
readonly 'fa-sign-out-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1325
|
-
readonly 'fa-sliders-h': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1326
|
-
readonly 'fa-sync-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1327
|
-
readonly 'fa-tag': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1328
|
-
readonly 'fa-times': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1329
|
-
readonly 'fa-times-circle': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1330
|
-
readonly 'fa-tint': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1331
|
-
readonly 'fa-toggle-off': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1332
|
-
readonly 'fa-toggle-on': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1333
|
-
readonly 'fa-trash': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1334
|
-
readonly 'fa-trash-alt': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1335
|
-
readonly 'fa-undo': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1336
|
-
readonly 'fa-user': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1337
|
-
readonly 'fa-users': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1338
|
-
readonly 'fa-mouse-pointer': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1339
|
-
readonly 'fa-step-forward': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1340
|
-
readonly 'fa-search-minus': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1341
|
-
readonly 'fa-search-plus': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1342
|
-
readonly 'fa-table': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1343
|
-
readonly 'fa-image': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1344
|
-
readonly 'fa-link': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1345
|
-
readonly 'fa-list': React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
1346
|
-
};
|
|
1347
|
-
type IconName = keyof typeof allIcons;
|
|
1348
|
-
|
|
1349
|
-
type ButtonVariants = 'solid' | 'outline' | 'text';
|
|
1350
|
-
type ButtonColors = 'primary' | 'secondary' | 'warning' | 'error' | 'success' | 'info';
|
|
1351
|
-
type ButtonIconPositions = 'left' | 'right';
|
|
1352
|
-
type ButtonSizes = 'sm' | 'md' | 'lg';
|
|
1353
|
-
type ButtonTypes = 'button' | 'submit' | 'reset';
|
|
1354
|
-
interface ButtonProps {
|
|
13
|
+
type PermafrostComponent = {
|
|
14
|
+
id?: string;
|
|
1355
15
|
className?: string;
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
isLoading?: boolean;
|
|
1362
|
-
onClick?: (...args: any[]) => void;
|
|
1363
|
-
variant?: ButtonVariants;
|
|
1364
|
-
iconPosition?: ButtonIconPositions;
|
|
1365
|
-
color?: ButtonColors;
|
|
1366
|
-
size?: ButtonSizes;
|
|
1367
|
-
iconName?: IconName;
|
|
1368
|
-
type?: ButtonTypes;
|
|
1369
|
-
href?: string;
|
|
1370
|
-
isDisabled?: boolean;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
|
-
declare const Button: (props: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
'data-cy'?: string;
|
|
17
|
+
'data-testid'?: string;
|
|
18
|
+
};
|
|
19
|
+
type ButtonVariant = 'default' | 'primary' | 'destructive';
|
|
20
|
+
type ButtonSize = 'normal' | 'large';
|
|
1374
21
|
|
|
1375
|
-
export {
|
|
22
|
+
export type { ButtonSize, ButtonVariant, IconName, ListItem, PermafrostComponent };
|