@okta/odyssey-react-mui 1.21.2 → 1.23.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/CHANGELOG.md +34 -0
- package/dist/@types/i18next.d.js.map +1 -1
- package/dist/Autocomplete.js +106 -38
- package/dist/Autocomplete.js.map +1 -1
- package/dist/Callout.js +12 -24
- package/dist/Callout.js.map +1 -1
- package/dist/Checkbox.js +26 -11
- package/dist/Checkbox.js.map +1 -1
- package/dist/CheckboxGroup.js +14 -3
- package/dist/CheckboxGroup.js.map +1 -1
- package/dist/DataTable/DataTable.js +10 -2
- package/dist/DataTable/DataTable.js.map +1 -1
- package/dist/DataTable/useScrollIndication.js +9 -5
- package/dist/DataTable/useScrollIndication.js.map +1 -1
- package/dist/Field.js +3 -1
- package/dist/Field.js.map +1 -1
- package/dist/FileUploader/FileUploadIllustration.js.map +1 -0
- package/dist/FileUploader/FileUploadPreview.js.map +1 -0
- package/dist/{labs/FileUpload.js → FileUploader/FileUploader.js} +6 -5
- package/dist/FileUploader/FileUploader.js.map +1 -0
- package/dist/FileUploader/index.js +13 -0
- package/dist/FileUploader/index.js.map +1 -0
- package/dist/OdysseyCacheProvider.js +4 -3
- package/dist/OdysseyCacheProvider.js.map +1 -1
- package/dist/OdysseyProvider.js +10 -3
- package/dist/OdysseyProvider.js.map +1 -1
- package/dist/OdysseyThemeProvider.js +3 -2
- package/dist/OdysseyThemeProvider.js.map +1 -1
- package/dist/Radio.js +33 -6
- package/dist/Radio.js.map +1 -1
- package/dist/RadioGroup.js +17 -5
- package/dist/RadioGroup.js.map +1 -1
- package/dist/Select.js +89 -31
- package/dist/Select.js.map +1 -1
- package/dist/{labs/Switch.js → Switch.js} +77 -23
- package/dist/Switch.js.map +1 -0
- package/dist/Tabs.js +7 -9
- package/dist/Tabs.js.map +1 -1
- package/dist/Tag.js +102 -4
- package/dist/Tag.js.map +1 -1
- package/dist/TextField.js +16 -39
- package/dist/TextField.js.map +1 -1
- package/dist/Toast.js +2 -2
- package/dist/Toast.js.map +1 -1
- package/dist/ToastStack.js.map +1 -1
- package/dist/createShadowDomElements.js +43 -0
- package/dist/createShadowDomElements.js.map +1 -0
- package/dist/i18n.js +1 -1
- package/dist/i18n.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.scss +96 -8
- package/dist/labs/AppTile.js +124 -0
- package/dist/labs/AppTile.js.map +1 -0
- package/dist/labs/DataView/BulkActionsMenu.js.map +1 -0
- package/dist/labs/{DataComponents/StackContent.js → DataView/CardLayoutContent.js} +14 -14
- package/dist/labs/DataView/CardLayoutContent.js.map +1 -0
- package/dist/labs/{DataComponents/StackCard.js → DataView/DataCard.js} +6 -6
- package/dist/labs/DataView/DataCard.js.map +1 -0
- package/dist/labs/{DataComponents → DataView}/DataTable.js +6 -2
- package/dist/labs/DataView/DataTable.js.map +1 -0
- package/dist/labs/{DataComponents → DataView}/DataView.js +79 -30
- package/dist/labs/DataView/DataView.js.map +1 -0
- package/dist/labs/DataView/DetailPanel.js.map +1 -0
- package/dist/labs/DataView/LayoutSwitcher.js.map +1 -0
- package/dist/labs/DataView/RowActions.js.map +1 -0
- package/dist/labs/{DataComponents/TableContent.js → DataView/TableLayoutContent.js} +34 -20
- package/dist/labs/DataView/TableLayoutContent.js.map +1 -0
- package/dist/labs/{DataComponents → DataView}/TableSettings.js +2 -2
- package/dist/labs/DataView/TableSettings.js.map +1 -0
- package/dist/labs/DataView/componentTypes.js.map +1 -0
- package/dist/labs/{DataComponents → DataView}/constants.js +2 -2
- package/dist/labs/DataView/constants.js.map +1 -0
- package/dist/labs/DataView/dataTypes.js.map +1 -0
- package/dist/labs/DataView/fetchData.js.map +1 -0
- package/dist/labs/{DataComponents → DataView}/index.js +0 -1
- package/dist/labs/DataView/index.js.map +1 -0
- package/dist/labs/DataView/tableConstants.js.map +1 -0
- package/dist/labs/DataView/useFilterConversion.js.map +1 -0
- package/dist/labs/DateField.js +2 -0
- package/dist/labs/DateField.js.map +1 -1
- package/dist/labs/DatePicker.js +5 -1
- package/dist/labs/DatePicker.js.map +1 -1
- package/dist/labs/SideNav/CollapseIcon.js +44 -0
- package/dist/labs/SideNav/CollapseIcon.js.map +1 -0
- package/dist/labs/SideNav/OktaLogo.js +36 -0
- package/dist/labs/SideNav/OktaLogo.js.map +1 -0
- package/dist/labs/SideNav/SideNav.js +335 -0
- package/dist/labs/SideNav/SideNav.js.map +1 -0
- package/dist/labs/SideNav/SideNavFooterContent.js +49 -0
- package/dist/labs/SideNav/SideNavFooterContent.js.map +1 -0
- package/dist/labs/SideNav/SideNavHeader.js +81 -0
- package/dist/labs/SideNav/SideNavHeader.js.map +1 -0
- package/dist/labs/SideNav/SideNavItemContent.js +157 -0
- package/dist/labs/SideNav/SideNavItemContent.js.map +1 -0
- package/dist/labs/SideNav/SideNavItemLinkContent.js +71 -0
- package/dist/labs/SideNav/SideNavItemLinkContent.js.map +1 -0
- package/dist/labs/SideNav/index.js +14 -0
- package/dist/labs/SideNav/index.js.map +1 -0
- package/dist/labs/SideNav/types.js +2 -0
- package/dist/labs/SideNav/types.js.map +1 -0
- package/dist/labs/TopNav.js +2 -1
- package/dist/labs/TopNav.js.map +1 -1
- package/dist/labs/index.js +3 -4
- package/dist/labs/index.js.map +1 -1
- package/dist/labs/useDateFieldsTranslations.js +1 -1
- package/dist/labs/useDateFieldsTranslations.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui.js +3 -1
- package/dist/properties/ts/odyssey-react-mui.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_cs.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_cs.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_da.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_da.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_de.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_de.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_el.js +18 -4
- package/dist/properties/ts/odyssey-react-mui_el.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_es.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_es.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_fi.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_fi.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_fr.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_fr.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ht.js +18 -4
- package/dist/properties/ts/odyssey-react-mui_ht.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_hu.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_hu.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_id.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_id.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_it.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_it.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ja.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_ja.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ko.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_ko.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ms.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_ms.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_nb.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_nb.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_nl_NL.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_nl_NL.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_pl.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_pl.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_pt_BR.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_pt_BR.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ro.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_ro.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ru.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_ru.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_sv.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_sv.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_th.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_th.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_tr.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_tr.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_uk.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_uk.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_vi.js +17 -3
- package/dist/properties/ts/odyssey-react-mui_vi.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_zh_CN.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_zh_CN.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_zh_TW.js +16 -2
- package/dist/properties/ts/odyssey-react-mui_zh_TW.js.map +1 -1
- package/dist/src/Autocomplete.d.ts +30 -0
- package/dist/src/Autocomplete.d.ts.map +1 -1
- package/dist/src/Callout.d.ts +11 -23
- package/dist/src/Callout.d.ts.map +1 -1
- package/dist/src/Checkbox.d.ts +2 -2
- package/dist/src/Checkbox.d.ts.map +1 -1
- package/dist/src/CheckboxGroup.d.ts +3 -3
- package/dist/src/CheckboxGroup.d.ts.map +1 -1
- package/dist/src/DataTable/DataTable.d.ts +9 -1
- package/dist/src/DataTable/DataTable.d.ts.map +1 -1
- package/dist/src/DataTable/useScrollIndication.d.ts.map +1 -1
- package/dist/src/Field.d.ts +3 -2
- package/dist/src/Field.d.ts.map +1 -1
- package/dist/src/FileUploader/FileUploadIllustration.d.ts.map +1 -0
- package/dist/src/{labs → FileUploader}/FileUploadPreview.d.ts +2 -2
- package/dist/src/FileUploader/FileUploadPreview.d.ts.map +1 -0
- package/dist/src/{labs/FileUpload.d.ts → FileUploader/FileUploader.d.ts} +5 -4
- package/dist/src/FileUploader/FileUploader.d.ts.map +1 -0
- package/dist/src/FileUploader/index.d.ts +13 -0
- package/dist/src/FileUploader/index.d.ts.map +1 -0
- package/dist/src/NativeSelect.d.ts +1 -1
- package/dist/src/OdysseyCacheProvider.d.ts +7 -3
- package/dist/src/OdysseyCacheProvider.d.ts.map +1 -1
- package/dist/src/OdysseyProvider.d.ts +1 -1
- package/dist/src/OdysseyProvider.d.ts.map +1 -1
- package/dist/src/OdysseyThemeProvider.d.ts +3 -1
- package/dist/src/OdysseyThemeProvider.d.ts.map +1 -1
- package/dist/src/OdysseyTranslationProvider.d.ts +1 -1
- package/dist/src/OdysseyTranslationProvider.d.ts.map +1 -1
- package/dist/src/PasswordField.d.ts +1 -1
- package/dist/src/Radio.d.ts +6 -8
- package/dist/src/Radio.d.ts.map +1 -1
- package/dist/src/RadioGroup.d.ts +4 -5
- package/dist/src/RadioGroup.d.ts.map +1 -1
- package/dist/src/SearchField.d.ts +1 -1
- package/dist/src/Select.d.ts +38 -2
- package/dist/src/Select.d.ts.map +1 -1
- package/dist/src/{labs/Switch.d.ts → Switch.d.ts} +8 -4
- package/dist/src/Switch.d.ts.map +1 -0
- package/dist/src/Tabs.d.ts +6 -8
- package/dist/src/Tabs.d.ts.map +1 -1
- package/dist/src/Tag.d.ts +7 -1
- package/dist/src/Tag.d.ts.map +1 -1
- package/dist/src/TextField.d.ts +17 -40
- package/dist/src/TextField.d.ts.map +1 -1
- package/dist/src/ToastStack.d.ts +2 -2
- package/dist/src/ToastStack.d.ts.map +1 -1
- package/dist/src/{createShadowRootElement.d.ts → createShadowDomElements.d.ts} +6 -1
- package/dist/src/createShadowDomElements.d.ts.map +1 -0
- package/dist/src/i18n.d.ts +2 -2
- package/dist/src/i18n.d.ts.map +1 -1
- package/dist/src/index.d.ts +3 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/labs/AppTile.d.ts +39 -0
- package/dist/src/labs/AppTile.d.ts.map +1 -0
- package/dist/src/labs/DataView/BulkActionsMenu.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents/StackContent.d.ts → DataView/CardLayoutContent.d.ts} +7 -7
- package/dist/src/labs/DataView/CardLayoutContent.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents/StackCard.d.ts → DataView/DataCard.d.ts} +4 -4
- package/dist/src/labs/DataView/DataCard.d.ts.map +1 -0
- package/dist/src/labs/DataView/DataTable.d.ts +16 -0
- package/dist/src/labs/DataView/DataTable.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/DataView.d.ts +1 -1
- package/dist/src/labs/DataView/DataView.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/DetailPanel.d.ts +2 -2
- package/dist/src/labs/DataView/DetailPanel.d.ts.map +1 -0
- package/dist/src/labs/DataView/LayoutSwitcher.d.ts.map +1 -0
- package/dist/src/labs/DataView/RowActions.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents/TableContent.d.ts → DataView/TableLayoutContent.d.ts} +8 -7
- package/dist/src/labs/DataView/TableLayoutContent.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/TableSettings.d.ts +3 -3
- package/dist/src/labs/DataView/TableSettings.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/componentTypes.d.ts +21 -9
- package/dist/src/labs/DataView/componentTypes.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/constants.d.ts +1 -1
- package/dist/src/labs/DataView/constants.d.ts.map +1 -0
- package/dist/src/labs/DataView/dataTypes.d.ts.map +1 -0
- package/dist/src/labs/DataView/fetchData.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/index.d.ts +0 -1
- package/dist/src/labs/DataView/index.d.ts.map +1 -0
- package/dist/src/labs/DataView/tableConstants.d.ts.map +1 -0
- package/dist/src/labs/{DataComponents → DataView}/useFilterConversion.d.ts +2 -2
- package/dist/src/labs/DataView/useFilterConversion.d.ts.map +1 -0
- package/dist/src/labs/DateField.d.ts +2 -2
- package/dist/src/labs/DateField.d.ts.map +1 -1
- package/dist/src/labs/DatePicker.d.ts +2 -2
- package/dist/src/labs/DatePicker.d.ts.map +1 -1
- package/dist/src/labs/SideNav/CollapseIcon.d.ts +17 -0
- package/dist/src/labs/SideNav/CollapseIcon.d.ts.map +1 -0
- package/dist/src/labs/SideNav/OktaLogo.d.ts +14 -0
- package/dist/src/labs/SideNav/OktaLogo.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNav.d.ts +16 -0
- package/dist/src/labs/SideNav/SideNav.d.ts.map +1 -0
- package/dist/{test-selectors/odysseyTestSelectors.js → src/labs/SideNav/SideNavFooterContent.d.ts} +6 -9
- package/dist/src/labs/SideNav/SideNavFooterContent.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNavHeader.d.ts +16 -0
- package/dist/src/labs/SideNav/SideNavHeader.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNavItemContent.d.ts +33 -0
- package/dist/src/labs/SideNav/SideNavItemContent.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNavItemLinkContent.d.ts +16 -0
- package/dist/src/labs/SideNav/SideNavItemLinkContent.d.ts.map +1 -0
- package/dist/src/labs/SideNav/index.d.ts +14 -0
- package/dist/src/labs/SideNav/index.d.ts.map +1 -0
- package/dist/src/labs/{SideNav.d.ts → SideNav/types.d.ts} +54 -33
- package/dist/src/labs/SideNav/types.d.ts.map +1 -0
- package/dist/src/labs/TopNav.d.ts +1 -0
- package/dist/src/labs/TopNav.d.ts.map +1 -1
- package/dist/src/labs/index.d.ts +2 -3
- package/dist/src/labs/index.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui.d.ts +2 -0
- package/dist/src/properties/ts/odyssey-react-mui.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_cs.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_cs.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_da.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_da.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_de.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_de.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_el.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_el.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_es.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_es.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_fi.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_fi.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_fr.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_fr.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ht.d.ts +16 -2
- package/dist/src/properties/ts/odyssey-react-mui_ht.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_hu.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_hu.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_id.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_id.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_it.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_it.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ja.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_ja.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ko.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_ko.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ms.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_ms.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_nb.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_nb.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_nl_NL.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_nl_NL.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_pl.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_pl.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_pt_BR.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_pt_BR.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ro.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_ro.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_ru.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_ru.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_sv.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_sv.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_th.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_th.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_tr.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_tr.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_uk.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_uk.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_vi.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_vi.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_zh_CN.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_zh_CN.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui_zh_TW.d.ts +15 -1
- package/dist/src/properties/ts/odyssey-react-mui_zh_TW.d.ts.map +1 -1
- package/dist/src/test-selectors/getByQuerySelector.d.ts +148 -0
- package/dist/src/test-selectors/getByQuerySelector.d.ts.map +1 -0
- package/dist/src/test-selectors/getComputedAccessibleErrorMessageText.d.ts +14 -0
- package/dist/src/test-selectors/getComputedAccessibleErrorMessageText.d.ts.map +1 -0
- package/dist/src/test-selectors/getComputedAccessibleText.d.ts +23 -0
- package/dist/src/test-selectors/getComputedAccessibleText.d.ts.map +1 -0
- package/dist/src/test-selectors/index.d.ts +2 -2
- package/dist/src/test-selectors/index.d.ts.map +1 -1
- package/{src/test-selectors/odysseyTestSelectors.ts → dist/src/test-selectors/interpolateString.d.ts} +4 -11
- package/dist/src/test-selectors/interpolateString.d.ts.map +1 -0
- package/dist/src/test-selectors/linkedHtmlSelectors.d.ts +24 -0
- package/dist/src/test-selectors/linkedHtmlSelectors.d.ts.map +1 -0
- package/dist/src/test-selectors/queryOdysseySelector.d.ts +5755 -0
- package/dist/src/test-selectors/queryOdysseySelector.d.ts.map +1 -0
- package/dist/src/test-selectors/querySelector.d.ts +59 -3613
- package/dist/src/test-selectors/querySelector.d.ts.map +1 -1
- package/dist/src/test-selectors/sanityChecks.d.ts +18 -0
- package/dist/src/test-selectors/sanityChecks.d.ts.map +1 -0
- package/dist/src/test-selectors/testSelector.d.ts +46 -0
- package/dist/src/test-selectors/testSelector.d.ts.map +1 -0
- package/dist/src/theme/components.d.ts +3 -1
- package/dist/src/theme/components.d.ts.map +1 -1
- package/dist/src/theme/createOdysseyMuiTheme.d.ts +3 -1
- package/dist/src/theme/createOdysseyMuiTheme.d.ts.map +1 -1
- package/dist/test-selectors/getByQuerySelector.js +64 -0
- package/dist/test-selectors/getByQuerySelector.js.map +1 -0
- package/dist/test-selectors/getComputedAccessibleErrorMessageText.js +25 -0
- package/dist/test-selectors/getComputedAccessibleErrorMessageText.js.map +1 -0
- package/dist/test-selectors/getComputedAccessibleText.js +24 -0
- package/dist/test-selectors/getComputedAccessibleText.js.map +1 -0
- package/dist/test-selectors/index.js +2 -2
- package/dist/test-selectors/index.js.map +1 -1
- package/dist/test-selectors/interpolateString.js +25 -0
- package/dist/test-selectors/interpolateString.js.map +1 -0
- package/dist/test-selectors/linkedHtmlSelectors.js +34 -0
- package/dist/test-selectors/linkedHtmlSelectors.js.map +1 -0
- package/dist/test-selectors/queryOdysseySelector.js +26 -0
- package/dist/test-selectors/queryOdysseySelector.js.map +1 -0
- package/dist/test-selectors/querySelector.js +82 -58
- package/dist/test-selectors/querySelector.js.map +1 -1
- package/dist/test-selectors/sanityChecks.js +33 -0
- package/dist/test-selectors/sanityChecks.js.map +1 -0
- package/dist/test-selectors/testSelector.js +2 -0
- package/dist/test-selectors/testSelector.js.map +1 -0
- package/dist/test-selectors/testSelectors.json +1 -1
- package/dist/theme/components.js +231 -146
- package/dist/theme/components.js.map +1 -1
- package/dist/theme/createOdysseyMuiTheme.js +3 -2
- package/dist/theme/createOdysseyMuiTheme.js.map +1 -1
- package/dist/tsconfig.production.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/jest.setup.js +3 -0
- package/package.json +5 -5
- package/scripts/generateTestSelectorsJson.ts +1 -1
- package/src/@types/i18next.d.ts +1 -1
- package/src/Autocomplete.tsx +140 -45
- package/src/Callout.tsx +13 -25
- package/src/Checkbox.tsx +39 -9
- package/src/CheckboxGroup.tsx +20 -4
- package/src/DataTable/DataTable.tsx +24 -1
- package/src/DataTable/useScrollIndication.tsx +11 -4
- package/src/Field.tsx +5 -2
- package/src/{labs → FileUploader}/FileUploadPreview.tsx +3 -3
- package/src/{labs/FileUpload.tsx → FileUploader/FileUploader.tsx} +7 -6
- package/src/FileUploader/index.ts +13 -0
- package/src/OdysseyCacheProvider.test.tsx +1 -0
- package/src/OdysseyCacheProvider.tsx +18 -4
- package/src/OdysseyProvider.tsx +12 -4
- package/src/OdysseyThemeProvider.tsx +6 -2
- package/src/Radio.tsx +41 -12
- package/src/RadioGroup.tsx +26 -7
- package/src/Select.tsx +116 -45
- package/src/{labs/Switch.tsx → Switch.tsx} +95 -41
- package/src/Tabs.tsx +8 -10
- package/src/Tag.tsx +134 -3
- package/src/TextField.tsx +18 -41
- package/src/Toast.tsx +1 -1
- package/src/ToastStack.tsx +2 -2
- package/src/createShadowDomElements.ts +53 -0
- package/src/i18n.ts +3 -3
- package/src/index.ts +7 -2
- package/src/labs/AppTile.tsx +200 -0
- package/src/labs/{DataComponents/StackContent.tsx → DataView/CardLayoutContent.tsx} +24 -19
- package/src/labs/{DataComponents/StackCard.tsx → DataView/DataCard.tsx} +7 -7
- package/src/labs/{DataComponents → DataView}/DataTable.tsx +8 -4
- package/src/labs/DataView/DataView.test.tsx +158 -0
- package/src/labs/{DataComponents → DataView}/DataView.tsx +119 -42
- package/src/labs/{DataComponents → DataView}/DetailPanel.tsx +2 -2
- package/src/labs/{DataComponents/TableContent.tsx → DataView/TableLayoutContent.tsx} +59 -27
- package/src/labs/{DataComponents → DataView}/TableSettings.tsx +5 -4
- package/src/labs/{DataComponents → DataView}/componentTypes.ts +24 -9
- package/src/labs/{DataComponents → DataView}/constants.tsx +2 -2
- package/src/labs/{DataComponents → DataView}/index.tsx +0 -1
- package/src/labs/{DataComponents → DataView}/useFilterConversion.ts +2 -2
- package/src/labs/DateField.tsx +3 -0
- package/src/labs/DatePicker.tsx +12 -1
- package/src/labs/SideNav/CollapseIcon.tsx +48 -0
- package/src/labs/SideNav/OktaLogo.tsx +39 -0
- package/src/labs/SideNav/SideNav.tsx +486 -0
- package/src/labs/SideNav/SideNavFooterContent.tsx +64 -0
- package/src/labs/SideNav/SideNavHeader.tsx +88 -0
- package/src/labs/SideNav/SideNavItemContent.tsx +216 -0
- package/src/labs/SideNav/SideNavItemLinkContent.tsx +87 -0
- package/src/labs/SideNav/index.ts +15 -0
- package/src/labs/SideNav/types.ts +152 -0
- package/src/labs/TopNav.tsx +3 -1
- package/src/labs/index.ts +3 -4
- package/src/labs/useDateFieldsTranslations.ts +1 -1
- package/src/properties/odyssey-react-mui.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_cs.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_da.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_de.properties +14 -2
- package/src/properties/translations/odyssey-react-mui_el.properties +16 -4
- package/src/properties/translations/odyssey-react-mui_es.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_fi.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_fr.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_ht.properties +17 -6
- package/src/properties/translations/odyssey-react-mui_hu.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_id.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_it.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_ja.properties +14 -2
- package/src/properties/translations/odyssey-react-mui_ko.properties +14 -2
- package/src/properties/translations/odyssey-react-mui_ms.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_nb.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_nl_NL.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_pl.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_pt_BR.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_ro.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_ru.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_sv.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_th.properties +14 -2
- package/src/properties/translations/odyssey-react-mui_tr.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_uk.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_vi.properties +15 -3
- package/src/properties/translations/odyssey-react-mui_zh_CN.properties +14 -2
- package/src/properties/translations/odyssey-react-mui_zh_TW.properties +14 -2
- package/src/properties/ts/odyssey-react-mui.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_cs.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_da.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_de.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_el.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_es.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_fi.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_fr.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ht.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_hu.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_id.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_it.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ja.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ko.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ms.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_nb.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_nl_NL.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_pl.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_pt_BR.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ro.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_ru.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_sv.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_th.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_tr.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_uk.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_vi.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_zh_CN.ts +1 -1
- package/src/properties/ts/odyssey-react-mui_zh_TW.ts +1 -1
- package/src/test-selectors/getByQuerySelector.ts +176 -0
- package/src/test-selectors/getComputedAccessibleErrorMessageText.ts +52 -0
- package/src/test-selectors/getComputedAccessibleText.ts +36 -0
- package/src/test-selectors/index.ts +2 -2
- package/src/test-selectors/interpolateString.ts +41 -0
- package/src/test-selectors/linkedHtmlSelectors.ts +73 -0
- package/src/test-selectors/queryOdysseySelector.ts +36 -0
- package/src/test-selectors/querySelector.ts +221 -170
- package/src/test-selectors/sanityChecks.ts +53 -0
- package/src/test-selectors/testSelector.ts +143 -0
- package/src/theme/components.tsx +238 -150
- package/src/theme/createOdysseyMuiTheme.ts +4 -1
- package/dist/createShadowRootElement.js +0 -26
- package/dist/createShadowRootElement.js.map +0 -1
- package/dist/labs/DataComponents/BulkActionsMenu.js.map +0 -1
- package/dist/labs/DataComponents/DataStack.js +0 -85
- package/dist/labs/DataComponents/DataStack.js.map +0 -1
- package/dist/labs/DataComponents/DataTable.js.map +0 -1
- package/dist/labs/DataComponents/DataView.js.map +0 -1
- package/dist/labs/DataComponents/DetailPanel.js.map +0 -1
- package/dist/labs/DataComponents/LayoutSwitcher.js.map +0 -1
- package/dist/labs/DataComponents/RowActions.js.map +0 -1
- package/dist/labs/DataComponents/StackCard.js.map +0 -1
- package/dist/labs/DataComponents/StackContent.js.map +0 -1
- package/dist/labs/DataComponents/TableContent.js.map +0 -1
- package/dist/labs/DataComponents/TableSettings.js.map +0 -1
- package/dist/labs/DataComponents/componentTypes.js.map +0 -1
- package/dist/labs/DataComponents/constants.js.map +0 -1
- package/dist/labs/DataComponents/dataTypes.js.map +0 -1
- package/dist/labs/DataComponents/fetchData.js.map +0 -1
- package/dist/labs/DataComponents/index.js.map +0 -1
- package/dist/labs/DataComponents/tableConstants.js.map +0 -1
- package/dist/labs/DataComponents/useFilterConversion.js.map +0 -1
- package/dist/labs/FileUpload.js.map +0 -1
- package/dist/labs/FileUploadIllustration.js.map +0 -1
- package/dist/labs/FileUploadPreview.js.map +0 -1
- package/dist/labs/SideNav.js +0 -478
- package/dist/labs/SideNav.js.map +0 -1
- package/dist/labs/Switch.js.map +0 -1
- package/dist/src/createShadowRootElement.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/BulkActionsMenu.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/DataStack.d.ts +0 -20
- package/dist/src/labs/DataComponents/DataStack.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/DataTable.d.ts +0 -16
- package/dist/src/labs/DataComponents/DataTable.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/DataView.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/DetailPanel.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/LayoutSwitcher.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/RowActions.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/StackCard.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/StackContent.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/TableContent.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/TableSettings.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/componentTypes.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/constants.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/dataTypes.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/fetchData.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/index.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/tableConstants.d.ts.map +0 -1
- package/dist/src/labs/DataComponents/useFilterConversion.d.ts.map +0 -1
- package/dist/src/labs/FileUpload.d.ts.map +0 -1
- package/dist/src/labs/FileUploadIllustration.d.ts.map +0 -1
- package/dist/src/labs/FileUploadPreview.d.ts.map +0 -1
- package/dist/src/labs/SideNav.d.ts.map +0 -1
- package/dist/src/labs/Switch.d.ts.map +0 -1
- package/dist/src/test-selectors/featureTestSelector.d.ts +0 -31
- package/dist/src/test-selectors/featureTestSelector.d.ts.map +0 -1
- package/dist/src/test-selectors/odysseyTestSelectors.d.ts +0 -120
- package/dist/src/test-selectors/odysseyTestSelectors.d.ts.map +0 -1
- package/dist/test-selectors/featureTestSelector.js +0 -2
- package/dist/test-selectors/featureTestSelector.js.map +0 -1
- package/dist/test-selectors/odysseyTestSelectors.js.map +0 -1
- package/src/createShadowRootElement.ts +0 -31
- package/src/labs/DataComponents/DataStack.tsx +0 -105
- package/src/labs/SideNav.tsx +0 -745
- package/src/test-selectors/featureTestSelector.ts +0 -41
- /package/dist/{labs → FileUploader}/FileUploadIllustration.js +0 -0
- /package/dist/{labs → FileUploader}/FileUploadPreview.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/BulkActionsMenu.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/DetailPanel.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/LayoutSwitcher.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/RowActions.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/componentTypes.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/dataTypes.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/fetchData.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/tableConstants.js +0 -0
- /package/dist/labs/{DataComponents → DataView}/useFilterConversion.js +0 -0
- /package/dist/src/{labs → FileUploader}/FileUploadIllustration.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/BulkActionsMenu.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/LayoutSwitcher.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/RowActions.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/dataTypes.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/fetchData.d.ts +0 -0
- /package/dist/src/labs/{DataComponents → DataView}/tableConstants.d.ts +0 -0
- /package/src/{labs → FileUploader}/FileUploadIllustration.tsx +0 -0
- /package/src/labs/{DataComponents → DataView}/BulkActionsMenu.tsx +0 -0
- /package/src/labs/{DataComponents → DataView}/LayoutSwitcher.tsx +0 -0
- /package/src/labs/{DataComponents → DataView}/RowActions.tsx +0 -0
- /package/src/labs/{DataComponents → DataView}/dataTypes.ts +0 -0
- /package/src/labs/{DataComponents → DataView}/fetchData.ts +0 -0
- /package/src/labs/{DataComponents → DataView}/tableConstants.tsx +0 -0
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_ru.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_ru.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ru.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_ru.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_ru.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA0jK,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_sv.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_sv.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_sv.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_sv.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_sv.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAywJ,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_th.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_th.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_th.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_th.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_th.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAouJ,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_tr.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_tr.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_tr.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_tr.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_tr.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA67J,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_uk.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_uk.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_uk.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_uk.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_uk.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4jK,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_vi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_vi.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_vi.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_vi.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_vi.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoyJ,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_zh_CN.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_zh_CN.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_zh_CN.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_zh_CN.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_zh_CN.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAw1H,CAAC"}
|
|
@@ -3,11 +3,15 @@ export declare const translation: {
|
|
|
3
3
|
"breadcrumbs.label.text": string;
|
|
4
4
|
"close.text": string;
|
|
5
5
|
"clear.text": string;
|
|
6
|
+
"open.text": string;
|
|
6
7
|
"picker.calendar.navigation.nextmonth": string;
|
|
7
8
|
"picker.calendar.navigation.previousmonth": string;
|
|
8
9
|
"picker.date.toolbar.title": string;
|
|
9
10
|
"picker.daterange.toolbar.title": string;
|
|
10
11
|
"picker.datetime.toolbar.title": string;
|
|
12
|
+
"picker.error.invalid": string;
|
|
13
|
+
"picker.error.mindate": string;
|
|
14
|
+
"picker.error.maxdate": string;
|
|
11
15
|
"picker.field.placeholder.day": string;
|
|
12
16
|
"picker.field.placeholder.hours": string;
|
|
13
17
|
"picker.field.placeholder.meridiem": string;
|
|
@@ -70,11 +74,11 @@ export declare const translation: {
|
|
|
70
74
|
"severity.warning": string;
|
|
71
75
|
"switch.active": string;
|
|
72
76
|
"switch.inactive": string;
|
|
73
|
-
"table.actions": string;
|
|
74
77
|
"table.columnvisibility.arialabel": string;
|
|
75
78
|
"table.density.arialabel": string;
|
|
76
79
|
"table.draghandle.arialabel": string;
|
|
77
80
|
"table.draghandle.tooltip": string;
|
|
81
|
+
"table.actions": string;
|
|
78
82
|
"table.error": string;
|
|
79
83
|
"table.fetchedrows.text": string;
|
|
80
84
|
"table.fetchedrows.text_plural": string;
|
|
@@ -94,5 +98,15 @@ export declare const translation: {
|
|
|
94
98
|
"pagination.rowsperpage": string;
|
|
95
99
|
"pagination.rowswithtotal": string;
|
|
96
100
|
"pagination.rowswithouttotal": string;
|
|
101
|
+
"table.actions.selectall": string;
|
|
102
|
+
"table.actions.selectnone": string;
|
|
103
|
+
"table.actions.selectsome": string;
|
|
104
|
+
"table.rowexpansion.expand": string;
|
|
105
|
+
"table.rowexpansion.expandall": string;
|
|
106
|
+
"table.rowexpansion.collapse": string;
|
|
107
|
+
"table.rowexpansion.collapseall": string;
|
|
108
|
+
"dataview.layout.table": string;
|
|
109
|
+
"dataview.layout.grid": string;
|
|
110
|
+
"dataview.layout.list": string;
|
|
97
111
|
};
|
|
98
112
|
//# sourceMappingURL=odyssey-react-mui_zh_TW.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_zh_TW.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_zh_TW.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_zh_TW.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui_zh_TW.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAm3H,CAAC"}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) 2024-present, Okta, Inc. and/or its affiliates. All rights reserved.
|
|
3
|
+
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
|
|
4
|
+
*
|
|
5
|
+
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
7
|
+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
8
|
+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
9
|
+
*
|
|
10
|
+
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
import { queries, type BoundFunctions, type ByRoleMatcher, type ByRoleOptions, type Matcher, type SelectorMatcherOptions } from "@testing-library/dom";
|
|
13
|
+
export type RoleSelectorMethod = "ByRole";
|
|
14
|
+
export type TextSelectorMethod = "ByLabelText" | "ByPlaceholderText" | "ByText" | "ByAltText" | "ByTitle";
|
|
15
|
+
export type QueryMethod = "find" | "get" | "query";
|
|
16
|
+
export type ByRoleMethods = "getByRole" | "queryByRole";
|
|
17
|
+
export type ByTextMethods = "getByLabelText" | "queryByLabelText" | "getByPlaceholderText" | "queryByPlaceholderText" | "getByText" | "queryByText" | "getByAltText" | "queryByAltText" | "getByTitle" | "queryByTitle";
|
|
18
|
+
export declare const executeTestingLibraryMethod: <CanvasMethods extends keyof BoundFunctions<typeof queries>>({ canvas, queryMethod, selectionMethod, }: {
|
|
19
|
+
canvas: Pick<BoundFunctions<typeof queries>, CanvasMethods>;
|
|
20
|
+
queryMethod: QueryMethod;
|
|
21
|
+
selectionMethod: RoleSelectorMethod | TextSelectorMethod;
|
|
22
|
+
}) => Pick<{
|
|
23
|
+
getByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.GetByText<T>>;
|
|
24
|
+
getAllByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.AllByText<T>>;
|
|
25
|
+
queryByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.QueryByText<T>>;
|
|
26
|
+
queryAllByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.AllByText<T>>;
|
|
27
|
+
findByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByText<T>>;
|
|
28
|
+
findAllByLabelText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByText<T>>;
|
|
29
|
+
getByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.GetByBoundAttribute<T>>;
|
|
30
|
+
getAllByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
31
|
+
queryByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.QueryByBoundAttribute<T>>;
|
|
32
|
+
queryAllByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
33
|
+
findByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByBoundAttribute<T>>;
|
|
34
|
+
findAllByPlaceholderText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByBoundAttribute<T>>;
|
|
35
|
+
getByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.GetByText<T>>;
|
|
36
|
+
getAllByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.AllByText<T>>;
|
|
37
|
+
queryByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.QueryByText<T>>;
|
|
38
|
+
queryAllByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined): ReturnType<queries.AllByText<T>>;
|
|
39
|
+
findByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByText<T>>;
|
|
40
|
+
findAllByText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByText<T>>;
|
|
41
|
+
getByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.GetByBoundAttribute<T>>;
|
|
42
|
+
getAllByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
43
|
+
queryByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.QueryByBoundAttribute<T>>;
|
|
44
|
+
queryAllByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
45
|
+
findByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByBoundAttribute<T>>;
|
|
46
|
+
findAllByAltText<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByBoundAttribute<T>>;
|
|
47
|
+
getByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.GetByBoundAttribute<T>>;
|
|
48
|
+
getAllByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
49
|
+
queryByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.QueryByBoundAttribute<T>>;
|
|
50
|
+
queryAllByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
51
|
+
findByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByBoundAttribute<T>>;
|
|
52
|
+
findAllByTitle<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByBoundAttribute<T>>;
|
|
53
|
+
getByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.GetByBoundAttribute<T>>;
|
|
54
|
+
getAllByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
55
|
+
queryByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.QueryByBoundAttribute<T>>;
|
|
56
|
+
queryAllByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
57
|
+
findByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByBoundAttribute<T>>;
|
|
58
|
+
findAllByDisplayValue<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByBoundAttribute<T>>;
|
|
59
|
+
getByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined): ReturnType<queries.GetByRole<T>>;
|
|
60
|
+
getAllByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined): ReturnType<queries.AllByRole<T>>;
|
|
61
|
+
queryByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined): ReturnType<queries.QueryByRole<T>>;
|
|
62
|
+
queryAllByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined): ReturnType<queries.AllByRole<T>>;
|
|
63
|
+
findByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByRole<T>>;
|
|
64
|
+
findAllByRole<T extends HTMLElement = HTMLElement>(role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByRole<T>>;
|
|
65
|
+
getByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.GetByBoundAttribute<T>>;
|
|
66
|
+
getAllByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
67
|
+
queryByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.QueryByBoundAttribute<T>>;
|
|
68
|
+
queryAllByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined): ReturnType<queries.AllByBoundAttribute<T>>;
|
|
69
|
+
findByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindByBoundAttribute<T>>;
|
|
70
|
+
findAllByTestId<T extends HTMLElement = HTMLElement>(id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined): ReturnType<queries.FindAllByBoundAttribute<T>>;
|
|
71
|
+
} & {
|
|
72
|
+
getByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement;
|
|
73
|
+
getAllByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
74
|
+
queryByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement | null;
|
|
75
|
+
queryAllByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
76
|
+
findByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
77
|
+
findAllByLabelText: (id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
78
|
+
getByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement;
|
|
79
|
+
getAllByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
80
|
+
queryByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement | null;
|
|
81
|
+
queryAllByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
82
|
+
findByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
83
|
+
findAllByPlaceholderText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
84
|
+
getByText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement;
|
|
85
|
+
getAllByText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
86
|
+
queryByText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement | null;
|
|
87
|
+
queryAllByText: (id: Matcher, options?: SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
88
|
+
findByText: (id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
89
|
+
findAllByText: (id: Matcher, options?: SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
90
|
+
getByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement;
|
|
91
|
+
getAllByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
92
|
+
queryByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement | null;
|
|
93
|
+
queryAllByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
94
|
+
findByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
95
|
+
findAllByAltText: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
96
|
+
getByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement;
|
|
97
|
+
getAllByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
98
|
+
queryByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement | null;
|
|
99
|
+
queryAllByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
100
|
+
findByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
101
|
+
findAllByTitle: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
102
|
+
getByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement;
|
|
103
|
+
getAllByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
104
|
+
queryByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement | null;
|
|
105
|
+
queryAllByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
106
|
+
findByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
107
|
+
findAllByDisplayValue: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
108
|
+
getByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined) => HTMLElement;
|
|
109
|
+
getAllByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined) => HTMLElement[];
|
|
110
|
+
queryByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined) => HTMLElement | null;
|
|
111
|
+
queryAllByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined) => HTMLElement[];
|
|
112
|
+
findByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
113
|
+
findAllByRole: (role: ByRoleMatcher, options?: queries.ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
114
|
+
getByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement;
|
|
115
|
+
getAllByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
116
|
+
queryByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement | null;
|
|
117
|
+
queryAllByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined) => HTMLElement[];
|
|
118
|
+
findByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
119
|
+
findAllByTestId: (id: Matcher, options?: import("@testing-library/dom").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/dom").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
120
|
+
}, CanvasMethods>[CanvasMethods];
|
|
121
|
+
export declare const getByQuerySelector: <LocalQueryMethod extends QueryMethod = "get">({ element, queryMethod, queryOptions, role, selectionMethod, text, }: {
|
|
122
|
+
element: HTMLElement;
|
|
123
|
+
queryMethod: LocalQueryMethod;
|
|
124
|
+
} & ({
|
|
125
|
+
queryOptions?: ByRoleOptions;
|
|
126
|
+
role: ByRoleMatcher;
|
|
127
|
+
selectionMethod: RoleSelectorMethod;
|
|
128
|
+
text?: never;
|
|
129
|
+
} | {
|
|
130
|
+
queryOptions?: SelectorMatcherOptions;
|
|
131
|
+
role?: never;
|
|
132
|
+
selectionMethod: TextSelectorMethod;
|
|
133
|
+
text: Matcher;
|
|
134
|
+
})) => LocalQueryMethod extends "get" ? HTMLElement : HTMLElement | null;
|
|
135
|
+
export declare const getByRoleQuerySelector: <LocalQueryMethod extends QueryMethod>({ element, queryMethod, queryOptions, role, }: {
|
|
136
|
+
element: HTMLElement;
|
|
137
|
+
queryMethod: LocalQueryMethod;
|
|
138
|
+
queryOptions?: ByRoleOptions;
|
|
139
|
+
role: ByRoleMatcher;
|
|
140
|
+
}) => LocalQueryMethod extends "get" ? HTMLElement : HTMLElement | null;
|
|
141
|
+
export declare const getByTextQuerySelector: <LocalQueryMethod extends QueryMethod>({ element, queryMethod, queryOptions, selectionMethod, text, }: {
|
|
142
|
+
element: HTMLElement;
|
|
143
|
+
queryMethod: LocalQueryMethod;
|
|
144
|
+
queryOptions?: SelectorMatcherOptions;
|
|
145
|
+
selectionMethod: TextSelectorMethod;
|
|
146
|
+
text: Matcher;
|
|
147
|
+
}) => LocalQueryMethod extends "get" ? HTMLElement : HTMLElement | null;
|
|
148
|
+
//# sourceMappingURL=getByQuerySelector.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getByQuerySelector.d.ts","sourceRoot":"","sources":["../../../src/test-selectors/getByQuerySelector.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,OAAO,EAEP,KAAK,cAAc,EACnB,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,OAAO,EACZ,KAAK,sBAAsB,EAC5B,MAAM,sBAAsB,CAAC;AAE9B,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CAAC;AAE1C,MAAM,MAAM,kBAAkB,GAC1B,aAAa,GACb,mBAAmB,GACnB,QAAQ,GACR,WAAW,GACX,SAAS,CAAC;AAEd,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,CAAC;AAEnD,MAAM,MAAM,aAAa,GACrB,WAAW,GAEX,aAAa,CAAC;AAKlB,MAAM,MAAM,aAAa,GACrB,gBAAgB,GAEhB,kBAAkB,GAIlB,sBAAsB,GAEtB,wBAAwB,GAIxB,WAAW,GAEX,aAAa,GAIb,cAAc,GAEd,gBAAgB,GAIhB,YAAY,GAEZ,cAAc,CAAC;AAKnB,eAAO,MAAM,2BAA2B,GACtC,aAAa,SAAS,MAAM,cAAc,CAAC,OAAO,OAAO,CAAC,6CAKzD;IACD,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,EAAE,aAAa,CAAC,CAAC;IAC5D,WAAW,EAAE,WAAW,CAAC;IACzB,eAAe,EAAE,kBAAkB,GAAG,kBAAkB,CAAC;CAC1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAME,CAAC;AAEJ,eAAO,MAAM,kBAAkB,GAC7B,gBAAgB,SAAS,WAAW,gFAQnC;IACD,OAAO,EAAE,WAAW,CAAC;IACrB,WAAW,EAAE,gBAAgB,CAAC;CAC/B,GAAG,CACA;IACE,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,IAAI,EAAE,aAAa,CAAC;IACpB,eAAe,EAAE,kBAAkB,CAAC;IACpC,IAAI,CAAC,EAAE,KAAK,CAAC;CACd,GACD;IACE,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,eAAe,EAAE,kBAAkB,CAAC;IACpC,IAAI,EAAE,OAAO,CAAC;CACf,CACJ,KAgB2B,gBAAgB,SAAS,KAAK,GACpD,WAAW,GACX,WAAW,GAAG,IACnB,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,gBAAgB,SAAS,WAAW,iDAKxE;IACD,OAAO,EAAE,WAAW,CAAC;IACrB,WAAW,EAAE,gBAAgB,CAAC;IAC9B,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,IAAI,EAAE,aAAa,CAAC;CACrB,sEAOG,CAAC;AAEL,eAAO,MAAM,sBAAsB,GAAI,gBAAgB,SAAS,WAAW,kEAMxE;IACD,OAAO,EAAE,WAAW,CAAC;IACrB,WAAW,EAAE,gBAAgB,CAAC;IAC9B,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,eAAe,EAAE,kBAAkB,CAAC;IACpC,IAAI,EAAE,OAAO,CAAC;CACf,sEAOG,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) 2024-present, Okta, Inc. and/or its affiliates. All rights reserved.
|
|
3
|
+
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
|
|
4
|
+
*
|
|
5
|
+
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
7
|
+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
8
|
+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
9
|
+
*
|
|
10
|
+
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
/** @see https://www.w3.org/TR/wai-aria-1.2/#aria-errormessage */
|
|
13
|
+
export declare const getComputedAccessibleErrorMessageText: (htmlElement: HTMLElement) => string;
|
|
14
|
+
//# sourceMappingURL=getComputedAccessibleErrorMessageText.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getComputedAccessibleErrorMessageText.d.ts","sourceRoot":"","sources":["../../../src/test-selectors/getComputedAccessibleErrorMessageText.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAMH,iEAAiE;AACjE,eAAO,MAAM,qCAAqC,gBACnC,WAAW,WAiCzB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) 2024-present, Okta, Inc. and/or its affiliates. All rights reserved.
|
|
3
|
+
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
|
|
4
|
+
*
|
|
5
|
+
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
7
|
+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
8
|
+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
9
|
+
*
|
|
10
|
+
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
import { computeAccessibleName, computeAccessibleDescription } from "dom-accessibility-api";
|
|
13
|
+
import { type AccessibleTextSelectorValue } from "./testSelector";
|
|
14
|
+
export declare const accessibleTextSelector: {
|
|
15
|
+
readonly description: typeof computeAccessibleDescription;
|
|
16
|
+
readonly errorMessage: (htmlElement: HTMLElement) => string;
|
|
17
|
+
readonly label: typeof computeAccessibleName;
|
|
18
|
+
};
|
|
19
|
+
export declare const getComputedAccessibleText: ({ element, type, }: {
|
|
20
|
+
element: HTMLElement;
|
|
21
|
+
type: AccessibleTextSelectorValue;
|
|
22
|
+
}) => string;
|
|
23
|
+
//# sourceMappingURL=getComputedAccessibleText.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getComputedAccessibleText.d.ts","sourceRoot":"","sources":["../../../src/test-selectors/getComputedAccessibleText.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,qBAAqB,EACrB,4BAA4B,EAC7B,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EAAE,KAAK,2BAA2B,EAAE,MAAM,gBAAgB,CAAC;AAGlE,eAAO,MAAM,sBAAsB;;;;CAOlC,CAAC;AAEF,eAAO,MAAM,yBAAyB,uBAGnC;IACD,OAAO,EAAE,WAAW,CAAC;IACrB,IAAI,EAAE,2BAA2B,CAAC;CACnC,WAA0C,CAAC"}
|