@okta/odyssey-react-mui 1.25.0 → 1.27.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 +17 -0
- package/dist/Autocomplete.js +30 -191
- package/dist/Autocomplete.js.map +1 -1
- package/dist/Box.js +2 -0
- package/dist/Box.js.map +1 -1
- package/dist/Card.js +1 -0
- package/dist/Card.js.map +1 -1
- package/dist/OdysseyDesignTokensContext.js +3 -2
- package/dist/OdysseyDesignTokensContext.js.map +1 -1
- package/dist/OdysseyProvider.js +9 -7
- package/dist/OdysseyProvider.js.map +1 -1
- package/dist/OdysseyThemeProvider.js +33 -13
- package/dist/OdysseyThemeProvider.js.map +1 -1
- package/dist/Pagination/Pagination.js +46 -14
- package/dist/Pagination/Pagination.js.map +1 -1
- package/dist/Surface.js +14 -3
- package/dist/Surface.js.map +1 -1
- package/dist/Tag.js +42 -27
- package/dist/Tag.js.map +1 -1
- package/dist/index.js +6 -7
- package/dist/index.js.map +1 -1
- package/dist/index.scss +1 -1
- package/dist/labs/AppTile.js +137 -39
- package/dist/labs/AppTile.js.map +1 -1
- package/dist/labs/DataView/CardLayoutContent.js +7 -8
- package/dist/labs/DataView/CardLayoutContent.js.map +1 -1
- package/dist/labs/DataView/DataCard.js +96 -43
- package/dist/labs/DataView/DataCard.js.map +1 -1
- package/dist/labs/DataView/DataView.js +6 -0
- package/dist/labs/DataView/DataView.js.map +1 -1
- package/dist/labs/DataView/TableLayoutContent.js +3 -2
- package/dist/labs/DataView/TableLayoutContent.js.map +1 -1
- package/dist/labs/DataView/componentTypes.js.map +1 -1
- package/dist/labs/DataView/index.js.map +1 -1
- package/dist/labs/OdysseyPickers/ComposablePicker.js +113 -0
- package/dist/labs/OdysseyPickers/ComposablePicker.js.map +1 -0
- package/dist/labs/OdysseyPickers/Picker.js +261 -0
- package/dist/labs/OdysseyPickers/Picker.js.map +1 -0
- package/dist/labs/OdysseyPickers/PickerVirtualizationListBox.js +132 -0
- package/dist/labs/OdysseyPickers/PickerVirtualizationListBox.js.map +1 -0
- package/dist/labs/OdysseyPickers/PickerWithOptionAdornment.js +291 -0
- package/dist/labs/OdysseyPickers/PickerWithOptionAdornment.js.map +1 -0
- package/dist/{src/createShadowDomElements.d.ts → labs/OdysseyPickers/index.js} +4 -7
- package/dist/labs/OdysseyPickers/index.js.map +1 -0
- package/dist/labs/PageTemplate.js +14 -10
- package/dist/labs/PageTemplate.js.map +1 -1
- package/dist/labs/SideNav/CollapseIcon.js +11 -25
- package/dist/labs/SideNav/CollapseIcon.js.map +1 -1
- package/dist/labs/SideNav/HandleIcon.js +32 -0
- package/dist/labs/SideNav/HandleIcon.js.map +1 -0
- package/dist/labs/{NavAccordion.js → SideNav/NavAccordion.js} +36 -8
- package/dist/labs/SideNav/NavAccordion.js.map +1 -0
- package/dist/labs/SideNav/OktaAura.js +32 -0
- package/dist/labs/SideNav/OktaAura.js.map +1 -0
- package/dist/labs/SideNav/OktaLogo.js +6 -9
- package/dist/labs/SideNav/OktaLogo.js.map +1 -1
- package/dist/labs/SideNav/SideNav.js +316 -172
- package/dist/labs/SideNav/SideNav.js.map +1 -1
- package/dist/labs/SideNav/SideNavFooterContent.js +32 -18
- package/dist/labs/SideNav/SideNavFooterContent.js.map +1 -1
- package/dist/labs/SideNav/SideNavHeader.js +48 -37
- package/dist/labs/SideNav/SideNavHeader.js.map +1 -1
- package/dist/labs/SideNav/SideNavItemContent.js +150 -68
- package/dist/labs/SideNav/SideNavItemContent.js.map +1 -1
- package/dist/labs/SideNav/SideNavItemContentContext.js +20 -0
- package/dist/labs/SideNav/SideNavItemContentContext.js.map +1 -0
- package/dist/labs/SideNav/SideNavItemLinkContent.js +15 -14
- package/dist/labs/SideNav/SideNavItemLinkContent.js.map +1 -1
- package/dist/labs/SideNav/SideNavLogo.js +42 -0
- package/dist/labs/SideNav/SideNavLogo.js.map +1 -0
- package/dist/labs/SideNav/SideNavToggleButton.js +170 -0
- package/dist/labs/SideNav/SideNavToggleButton.js.map +1 -0
- package/dist/labs/SideNav/SortableList/SortableItem.js +162 -0
- package/dist/labs/SideNav/SortableList/SortableItem.js.map +1 -0
- package/dist/labs/SideNav/SortableList/SortableList.js +118 -0
- package/dist/labs/SideNav/SortableList/SortableList.js.map +1 -0
- package/dist/labs/SideNav/SortableList/SortableOverlay.js +30 -0
- package/dist/labs/SideNav/SortableList/SortableOverlay.js.map +1 -0
- package/dist/labs/SideNav/types.js.map +1 -1
- package/dist/labs/TopNav/TopNav.js +65 -0
- package/dist/labs/TopNav/TopNav.js.map +1 -0
- package/dist/labs/TopNav/TopNavLinksList.js +38 -0
- package/dist/labs/TopNav/TopNavLinksList.js.map +1 -0
- package/dist/labs/TopNav/TopNavListItem.js +132 -0
- package/dist/labs/TopNav/TopNavListItem.js.map +1 -0
- package/dist/labs/TopNav/UserProfile.js +65 -0
- package/dist/labs/TopNav/UserProfile.js.map +1 -0
- package/dist/labs/TopNav/index.js +14 -0
- package/dist/labs/TopNav/index.js.map +1 -0
- package/dist/labs/UiShell/UiShell.js +68 -0
- package/dist/labs/UiShell/UiShell.js.map +1 -0
- package/dist/labs/UiShell/UiShellContent.js +114 -0
- package/dist/labs/UiShell/UiShellContent.js.map +1 -0
- package/dist/labs/UiShell/bufferLatest.js +37 -0
- package/dist/labs/UiShell/bufferLatest.js.map +1 -0
- package/dist/labs/UiShell/createMessageBus.js +30 -0
- package/dist/labs/UiShell/createMessageBus.js.map +1 -0
- package/dist/labs/UiShell/createStore.js +24 -0
- package/dist/labs/UiShell/createStore.js.map +1 -0
- package/dist/labs/UiShell/index.js +15 -0
- package/dist/labs/UiShell/index.js.map +1 -0
- package/dist/labs/UiShell/renderUiShell.js +78 -0
- package/dist/labs/UiShell/renderUiShell.js.map +1 -0
- package/dist/labs/UiShell/useHasUiShell.js +22 -0
- package/dist/labs/UiShell/useHasUiShell.js.map +1 -0
- package/dist/labs/UiShell/useScrollState.js +41 -0
- package/dist/labs/UiShell/useScrollState.js.map +1 -0
- package/dist/labs/index.js +5 -3
- package/dist/labs/index.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui.js +14 -1
- package/dist/properties/ts/odyssey-react-mui.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_cs.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_cs.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_da.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_da.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_de.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_de.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_el.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_el.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_es.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_es.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_fi.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_fi.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_fr.js +5 -3
- package/dist/properties/ts/odyssey-react-mui_fr.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ht.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_ht.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_hu.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_hu.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_id.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_id.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_it.js +4 -2
- package/dist/properties/ts/odyssey-react-mui_it.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ja.js +9 -7
- package/dist/properties/ts/odyssey-react-mui_ja.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ko.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_ko.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ms.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_ms.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_nb.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_nb.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_nl_NL.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_nl_NL.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_pl.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_pl.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_pt_BR.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_pt_BR.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ro.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_ro.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_ru.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_ru.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_sv.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_sv.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_th.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_th.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_tr.js +4 -2
- package/dist/properties/ts/odyssey-react-mui_tr.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_uk.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_uk.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_vi.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_vi.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_zh_CN.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_zh_CN.js.map +1 -1
- package/dist/properties/ts/odyssey-react-mui_zh_TW.js +3 -1
- package/dist/properties/ts/odyssey-react-mui_zh_TW.js.map +1 -1
- package/dist/src/Autocomplete.d.ts +21 -22
- package/dist/src/Autocomplete.d.ts.map +1 -1
- package/dist/src/Box.d.ts +3 -1
- package/dist/src/Box.d.ts.map +1 -1
- package/dist/src/Card.d.ts.map +1 -1
- package/dist/src/OdysseyDesignTokensContext.d.ts +5 -4
- package/dist/src/OdysseyDesignTokensContext.d.ts.map +1 -1
- package/dist/src/OdysseyProvider.d.ts +3 -3
- package/dist/src/OdysseyProvider.d.ts.map +1 -1
- package/dist/src/OdysseyThemeProvider.d.ts +10 -12
- 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/Pagination/Pagination.d.ts +21 -7
- package/dist/src/Pagination/Pagination.d.ts.map +1 -1
- package/dist/src/Surface.d.ts.map +1 -1
- package/dist/src/Tag.d.ts +5 -2
- package/dist/src/Tag.d.ts.map +1 -1
- package/dist/src/index.d.ts +6 -7
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/labs/AppTile.d.ts +3 -1
- package/dist/src/labs/AppTile.d.ts.map +1 -1
- package/dist/src/labs/DataView/CardLayoutContent.d.ts.map +1 -1
- package/dist/src/labs/DataView/DataCard.d.ts +9 -3
- package/dist/src/labs/DataView/DataCard.d.ts.map +1 -1
- package/dist/src/labs/DataView/DataView.d.ts +1 -1
- package/dist/src/labs/DataView/DataView.d.ts.map +1 -1
- package/dist/src/labs/DataView/TableLayoutContent.d.ts.map +1 -1
- package/dist/src/labs/DataView/componentTypes.d.ts +4 -3
- package/dist/src/labs/DataView/componentTypes.d.ts.map +1 -1
- package/dist/src/labs/DataView/index.d.ts +1 -0
- package/dist/src/labs/DataView/index.d.ts.map +1 -1
- package/dist/src/labs/OdysseyPickers/ComposablePicker.d.ts +33 -0
- package/dist/src/labs/OdysseyPickers/ComposablePicker.d.ts.map +1 -0
- package/dist/src/labs/OdysseyPickers/Picker.d.ts +98 -0
- package/dist/src/labs/OdysseyPickers/Picker.d.ts.map +1 -0
- package/dist/src/labs/OdysseyPickers/PickerVirtualizationListBox.d.ts +17 -0
- package/dist/src/labs/OdysseyPickers/PickerVirtualizationListBox.d.ts.map +1 -0
- package/dist/src/labs/OdysseyPickers/PickerWithOptionAdornment.d.ts +26 -0
- package/dist/src/labs/OdysseyPickers/PickerWithOptionAdornment.d.ts.map +1 -0
- package/dist/src/labs/OdysseyPickers/index.d.ts +15 -0
- package/dist/src/labs/OdysseyPickers/index.d.ts.map +1 -0
- package/dist/src/labs/PageTemplate.d.ts +1 -1
- package/dist/src/labs/PageTemplate.d.ts.map +1 -1
- package/dist/src/labs/SideNav/CollapseIcon.d.ts +1 -4
- package/dist/src/labs/SideNav/CollapseIcon.d.ts.map +1 -1
- package/dist/src/labs/SideNav/HandleIcon.d.ts +14 -0
- package/dist/src/labs/SideNav/HandleIcon.d.ts.map +1 -0
- package/dist/src/labs/{NavAccordion.d.ts → SideNav/NavAccordion.d.ts} +7 -7
- package/dist/src/labs/SideNav/NavAccordion.d.ts.map +1 -0
- package/dist/src/labs/SideNav/OktaAura.d.ts +14 -0
- package/dist/src/labs/SideNav/OktaAura.d.ts.map +1 -0
- package/dist/src/labs/SideNav/OktaLogo.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNav.d.ts +2 -1
- package/dist/src/labs/SideNav/SideNav.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNavFooterContent.d.ts +1 -1
- package/dist/src/labs/SideNav/SideNavFooterContent.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNavHeader.d.ts +12 -3
- package/dist/src/labs/SideNav/SideNavHeader.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNavItemContent.d.ts +38 -3
- package/dist/src/labs/SideNav/SideNavItemContent.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNavItemContentContext.d.ts +19 -0
- package/dist/src/labs/SideNav/SideNavItemContentContext.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNavItemLinkContent.d.ts +1 -1
- package/dist/src/labs/SideNav/SideNavItemLinkContent.d.ts.map +1 -1
- package/dist/src/labs/SideNav/SideNavLogo.d.ts +15 -0
- package/dist/src/labs/SideNav/SideNavLogo.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SideNavToggleButton.d.ts +38 -0
- package/dist/src/labs/SideNav/SideNavToggleButton.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SortableList/SortableItem.d.ts +26 -0
- package/dist/src/labs/SideNav/SortableList/SortableItem.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SortableList/SortableList.d.ts +36 -0
- package/dist/src/labs/SideNav/SortableList/SortableList.d.ts.map +1 -0
- package/dist/src/labs/SideNav/SortableList/SortableOverlay.d.ts +17 -0
- package/dist/src/labs/SideNav/SortableList/SortableOverlay.d.ts.map +1 -0
- package/dist/src/labs/SideNav/types.d.ts +79 -35
- package/dist/src/labs/SideNav/types.d.ts.map +1 -1
- package/dist/src/labs/TopNav/TopNav.d.ts +31 -0
- package/dist/src/labs/TopNav/TopNav.d.ts.map +1 -0
- package/dist/src/labs/TopNav/TopNavLinksList.d.ts +44 -0
- package/dist/src/labs/TopNav/TopNavLinksList.d.ts.map +1 -0
- package/dist/src/labs/TopNav/TopNavListItem.d.ts +42 -0
- package/dist/src/labs/TopNav/TopNavListItem.d.ts.map +1 -0
- package/dist/src/labs/TopNav/UserProfile.d.ts +29 -0
- package/dist/src/labs/TopNav/UserProfile.d.ts.map +1 -0
- package/dist/src/labs/TopNav/index.d.ts +14 -0
- package/dist/src/labs/TopNav/index.d.ts.map +1 -0
- package/dist/src/labs/UiShell/UiShell.d.ts +33 -0
- package/dist/src/labs/UiShell/UiShell.d.ts.map +1 -0
- package/dist/src/labs/UiShell/UiShellContent.d.ts +47 -0
- package/dist/src/labs/UiShell/UiShellContent.d.ts.map +1 -0
- package/dist/src/labs/UiShell/bufferLatest.d.ts +31 -0
- package/dist/src/labs/UiShell/bufferLatest.d.ts.map +1 -0
- package/dist/src/labs/UiShell/createMessageBus.d.ts +24 -0
- package/dist/src/labs/UiShell/createMessageBus.d.ts.map +1 -0
- package/dist/src/labs/UiShell/createStore.d.ts +22 -0
- package/dist/src/labs/UiShell/createStore.d.ts.map +1 -0
- package/dist/src/labs/UiShell/index.d.ts +16 -0
- package/dist/src/labs/UiShell/index.d.ts.map +1 -0
- package/dist/src/labs/UiShell/renderUiShell.d.ts +45 -0
- package/dist/src/labs/UiShell/renderUiShell.d.ts.map +1 -0
- package/dist/src/labs/UiShell/useHasUiShell.d.ts +13 -0
- package/dist/src/labs/UiShell/useHasUiShell.d.ts.map +1 -0
- package/dist/src/labs/UiShell/useScrollState.d.ts +16 -0
- package/dist/src/labs/UiShell/useScrollState.d.ts.map +1 -0
- package/dist/src/labs/index.d.ts +6 -2
- package/dist/src/labs/index.d.ts.map +1 -1
- package/dist/src/properties/ts/odyssey-react-mui.d.ts +13 -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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- 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 +2 -0
- package/dist/src/properties/ts/odyssey-react-mui_zh_TW.d.ts.map +1 -1
- package/dist/src/test-selectors/querySelector.d.ts +2 -2
- 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 +2 -1
- package/dist/src/theme/createOdysseyMuiTheme.d.ts.map +1 -1
- package/dist/src/useAutocomplete.d.ts +29 -0
- package/dist/src/useAutocomplete.d.ts.map +1 -0
- package/dist/src/useContrastMode.d.ts +46 -0
- package/dist/src/useContrastMode.d.ts.map +1 -0
- package/dist/src/web-component/index.d.ts +14 -0
- package/dist/src/web-component/index.d.ts.map +1 -0
- package/dist/src/web-component/renderReactInWebComponent.d.ts +76 -0
- package/dist/src/web-component/renderReactInWebComponent.d.ts.map +1 -0
- package/dist/src/web-component/shadow-dom.d.ts +23 -0
- package/dist/src/web-component/shadow-dom.d.ts.map +1 -0
- package/dist/test-selectors/querySelector.js.map +1 -1
- package/dist/theme/components.js +36 -32
- 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/dist/useAutocomplete.js +105 -0
- package/dist/useAutocomplete.js.map +1 -0
- package/dist/useContrastMode.js +93 -0
- package/dist/useContrastMode.js.map +1 -0
- package/dist/web-component/index.js +14 -0
- package/dist/web-component/index.js.map +1 -0
- package/dist/web-component/renderReactInWebComponent.js +72 -0
- package/dist/web-component/renderReactInWebComponent.js.map +1 -0
- package/dist/{createShadowDomElements.js → web-component/shadow-dom.js} +10 -12
- package/dist/web-component/shadow-dom.js.map +1 -0
- package/i18n.config.json +2 -1
- package/jest.config.cjs +1 -1
- package/jest.setup.js +0 -3
- package/package.json +7 -3
- package/src/Autocomplete.tsx +40 -330
- package/src/Box.tsx +4 -2
- package/src/Card.tsx +1 -0
- package/src/OdysseyDesignTokensContext.tsx +6 -3
- package/src/OdysseyProvider.tsx +13 -8
- package/src/OdysseyThemeProvider.test.tsx +209 -0
- package/src/OdysseyThemeProvider.tsx +42 -26
- package/src/Pagination/Pagination.test.tsx +305 -0
- package/src/Pagination/Pagination.tsx +86 -38
- package/src/Surface.tsx +18 -5
- package/src/Tag.tsx +64 -39
- package/src/createUniqueAlphabeticalId.test.ts +1 -1
- package/src/createUniqueId.test.ts +1 -1
- package/src/index.ts +6 -7
- package/src/labs/AppTile.tsx +169 -40
- package/src/labs/DataView/CardLayoutContent.tsx +12 -14
- package/src/labs/DataView/DataCard.tsx +137 -69
- package/src/labs/DataView/DataView.test.tsx +6 -4
- package/src/labs/DataView/DataView.tsx +6 -0
- package/src/labs/DataView/TableLayoutContent.tsx +6 -2
- package/src/labs/DataView/componentTypes.ts +7 -3
- package/src/labs/DataView/index.tsx +1 -0
- package/src/labs/OdysseyPickers/ComposablePicker.test.tsx +29 -0
- package/src/labs/OdysseyPickers/ComposablePicker.tsx +188 -0
- package/src/labs/OdysseyPickers/Picker.tsx +381 -0
- package/src/labs/OdysseyPickers/PickerVirtualizationListBox.tsx +191 -0
- package/src/labs/OdysseyPickers/PickerWithOptionAdornment.tsx +429 -0
- package/src/labs/OdysseyPickers/index.ts +15 -0
- package/src/labs/PageTemplate.tsx +18 -10
- package/src/labs/SideNav/CollapseIcon.tsx +14 -28
- package/src/labs/SideNav/HandleIcon.tsx +35 -0
- package/src/labs/{NavAccordion.tsx → SideNav/NavAccordion.tsx} +51 -16
- package/src/labs/SideNav/OktaAura.tsx +35 -0
- package/src/labs/SideNav/OktaLogo.tsx +5 -10
- package/src/labs/SideNav/SideNav.test.tsx +323 -0
- package/src/labs/SideNav/SideNav.tsx +405 -205
- package/src/labs/SideNav/SideNavFooterContent.tsx +36 -28
- package/src/labs/SideNav/SideNavHeader.tsx +62 -45
- package/src/labs/SideNav/SideNavItemContent.tsx +202 -69
- package/src/labs/SideNav/SideNavItemContentContext.tsx +29 -0
- package/src/labs/SideNav/SideNavItemLinkContent.tsx +18 -15
- package/src/labs/SideNav/SideNavLogo.tsx +41 -0
- package/src/labs/SideNav/SideNavToggleButton.tsx +245 -0
- package/src/labs/SideNav/SortableList/SortableItem.tsx +202 -0
- package/src/labs/SideNav/SortableList/SortableList.tsx +122 -0
- package/src/labs/SideNav/SortableList/SortableOverlay.tsx +34 -0
- package/src/labs/SideNav/types.ts +85 -36
- package/src/labs/TopNav/TopNav.tsx +95 -0
- package/src/labs/TopNav/TopNavLinksList.tsx +68 -0
- package/src/labs/TopNav/TopNavListItem.tsx +209 -0
- package/src/labs/TopNav/UserProfile.tsx +79 -0
- package/src/labs/TopNav/index.ts +14 -0
- package/src/labs/UiShell/UiShell.test.tsx +284 -0
- package/src/labs/UiShell/UiShell.tsx +109 -0
- package/src/labs/UiShell/UiShellContent.tsx +170 -0
- package/src/labs/UiShell/bufferLatest.test.ts +79 -0
- package/src/labs/UiShell/bufferLatest.ts +64 -0
- package/src/labs/UiShell/createMessageBus.test.ts +115 -0
- package/src/labs/UiShell/createMessageBus.ts +53 -0
- package/src/labs/UiShell/createStore.test.ts +103 -0
- package/src/labs/UiShell/createStore.ts +37 -0
- package/src/labs/UiShell/index.ts +17 -0
- package/src/labs/UiShell/renderUiShell.test.tsx +197 -0
- package/src/labs/UiShell/renderUiShell.tsx +132 -0
- package/src/labs/UiShell/useHasUiShell.ts +25 -0
- package/src/labs/UiShell/useScrollState.ts +56 -0
- package/src/labs/index.ts +10 -3
- package/src/properties/odyssey-react-mui.properties +14 -0
- package/src/properties/translations/odyssey-react-mui_cs.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_da.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_de.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_el.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_es.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_fi.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_fr.properties +4 -3
- package/src/properties/translations/odyssey-react-mui_ht.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_hu.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_id.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_it.properties +3 -2
- package/src/properties/translations/odyssey-react-mui_ja.properties +8 -7
- package/src/properties/translations/odyssey-react-mui_ko.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_ms.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_nb.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_nl_NL.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_pl.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_pt_BR.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_ro.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_ru.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_sv.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_th.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_tr.properties +3 -2
- package/src/properties/translations/odyssey-react-mui_uk.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_vi.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_zh_CN.properties +2 -1
- package/src/properties/translations/odyssey-react-mui_zh_TW.properties +2 -1
- 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/querySelector.ts +1 -1
- package/src/theme/components.tsx +50 -33
- package/src/theme/createOdysseyMuiTheme.ts +4 -3
- package/src/theme/useContrastMode.test.tsx +503 -0
- package/src/useAutocomplete.tsx +183 -0
- package/src/useContrastMode.tsx +149 -0
- package/src/web-component/index.ts +14 -0
- package/src/web-component/renderReactInWebComponent.test.tsx +156 -0
- package/src/web-component/renderReactInWebComponent.ts +153 -0
- package/src/web-component/shadow-dom.test.ts +24 -0
- package/src/{createShadowDomElements.ts → web-component/shadow-dom.ts} +15 -14
- package/dist/ContrastModeProvider.js +0 -86
- package/dist/ContrastModeProvider.js.map +0 -1
- package/dist/createShadowDomElements.js.map +0 -1
- package/dist/labs/NavAccordion.js.map +0 -1
- package/dist/labs/TopNav.js +0 -281
- package/dist/labs/TopNav.js.map +0 -1
- package/dist/src/ContrastModeProvider.d.ts +0 -34
- package/dist/src/ContrastModeProvider.d.ts.map +0 -1
- package/dist/src/createShadowDomElements.d.ts.map +0 -1
- package/dist/src/labs/NavAccordion.d.ts.map +0 -1
- package/dist/src/labs/TopNav.d.ts +0 -78
- package/dist/src/labs/TopNav.d.ts.map +0 -1
- package/src/ContrastModeProvider.tsx +0 -131
- package/src/labs/TopNav.tsx +0 -396
|
@@ -24,7 +24,8 @@ export const translation = {
|
|
|
24
24
|
"picker.labels.action.today": "今天",
|
|
25
25
|
"picker.labels.clock.empty": "未选择时间",
|
|
26
26
|
"picker.labels.clock.hours": "小时",
|
|
27
|
-
"picker.labels.clock.minutes": "
|
|
27
|
+
"picker.labels.clock.minutes": "分钟",
|
|
28
|
+
"picker.labels.clock.seconds": "秒",
|
|
28
29
|
"picker.labels.clock.selected": "选定时间为",
|
|
29
30
|
"picker.labels.date.choose": "选择日期",
|
|
30
31
|
"picker.labels.date.selected": "选定日期为",
|
|
@@ -40,6 +41,7 @@ export const translation = {
|
|
|
40
41
|
"picker.labels.table.date": "选择日期",
|
|
41
42
|
"picker.labels.table.time": "选择时间",
|
|
42
43
|
"picker.labels.time.choose": "选择时间",
|
|
44
|
+
"picker.labels.time.selected": "选定时间为",
|
|
43
45
|
"picker.time.toolbar.title": "选择时间",
|
|
44
46
|
"picker.view.name.day": "天",
|
|
45
47
|
"picker.view.name.hours": "小时",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_zh_CN.js","names":["translation"],"sources":["../../../src/properties/ts/odyssey-react-mui_zh_CN.ts"],"sourcesContent":["export const translation = {\"breadcrumbs.home.text\":\"主页\",\"breadcrumbs.label.text\":\"面包屑\",\"close.text\":\"关闭\",\"clear.text\":\"清除\",\"open.text\":\"打开\",\"picker.calendar.navigation.nextmonth\":\"下个月\",\"picker.calendar.navigation.previousmonth\":\"上个月\",\"picker.date.toolbar.title\":\"选定日期\",\"picker.daterange.toolbar.title\":\"选择日期范围\",\"picker.datetime.toolbar.title\":\"选择日期和时间\",\"picker.error.invalid\":\"更正日期格式或从日历中选择日期。\",\"picker.error.mindate\":\"输入的日期早于允许的日期。从日历中选择一个可用日期。\",\"picker.error.maxdate\":\"输入的日期晚于允许的日期。从日历中选择一个可用日期。\",\"picker.field.placeholder.day\":\"DD\",\"picker.field.placeholder.hours\":\"hh\",\"picker.field.placeholder.meridiem\":\"aa\",\"picker.field.placeholder.minutes\":\"mm\",\"picker.field.placeholder.month\":\"MM\",\"picker.field.placeholder.seconds\":\"ss\",\"picker.field.placeholder.year\":\"YYYY\",\"picker.labels.action.apply\":\"应用\",\"picker.labels.action.cancel\":\"取消\",\"picker.labels.action.today\":\"今天\",\"picker.labels.clock.empty\":\"未选择时间\",\"picker.labels.clock.hours\":\"小时\",\"picker.labels.clock.minutes\":\"秒\",\"picker.labels.clock.selected\":\"选定时间为\",\"picker.labels.date.choose\":\"选择日期\",\"picker.labels.date.selected\":\"选定日期为\",\"picker.labels.empty\":\"空\",\"picker.labels.field.clear\":\"清除值\",\"picker.labels.range.end\":\"结束\",\"picker.labels.range.enddate\":\"结束日期\",\"picker.labels.range.endtime\":\"结束时间\",\"picker.labels.range.start\":\"开始\",\"picker.labels.range.startdate\":\"开始日期\",\"picker.labels.range.starttime\":\"开始时间\",\"picker.labels.select\":\"选择\",\"picker.labels.table.date\":\"选择日期\",\"picker.labels.table.time\":\"选择时间\",\"picker.labels.time.choose\":\"选择时间\",\"picker.time.toolbar.title\":\"选择时间\",\"picker.view.name.day\":\"天\",\"picker.view.name.hours\":\"小时\",\"picker.view.name.meridiem\":\"正午\",\"picker.view.name.minutes\":\"分钟\",\"picker.view.name.month\":\"月\",\"picker.view.name.seconds\":\"秒\",\"picker.view.name.weekday\":\"工作日\",\"picker.view.name.year\":\"年份\",\"picker.view.navigation.open.nextview\":\"打开下一个视图\",\"picker.view.navigation.open.previousview\":\"打开上一个视图\",\"picker.view.navigation.switch.calendarview\":\"年份视图已打开,切换到日历视图\",\"picker.view.navigation.switch.yearview\":\"日历视图已打开,切换到年份视图\",\"fielderror.screenreader.text\":\"错误\",\"fieldlabel.optional.text\":\"可选\",\"fieldlabel.required.text\":\"必填\",\"filters.clear.label\":\"清除筛选器\",\"filters.filter.any\":\"任何\",\"filters.filter.clear\":\"清除筛选器\",\"filters.filters.arialabel\":\"筛选器\",\"filters.menuitem.any\":\"任何 {{label}}\",\"filters.menuitem.selected\":\"{{selected}} 已选中\",\"filters.search.label\":\"搜索\",\"fileupload.button.text\":\"添加文件\",\"fileupload.prompt.text\":\"将文件拖放到此处或点击添加文件\",\"fileupload.removefile.text\":\"删除文件\",\"passwordfield.icon.label.hide\":\"隐藏密码\",\"passwordfield.icon.label.show\":\"显示密码\",\"severity.error\":\"错误\",\"severity.info\":\"信息\",\"severity.success\":\"成功\",\"severity.warning\":\"警告\",\"switch.active\":\"活动\",\"switch.inactive\":\"非活动\",\"table.columnvisibility.arialabel\":\"显示/隐藏列\",\"table.density.arialabel\":\"表密度\",\"table.draghandle.arialabel\":\"拖动行以重新排序。或者,按空格键或 Enter 键开始和停止重新排序,按 Esc 键取消操作。\",\"table.draghandle.tooltip\":\"拖动行或按空格/Enter 键开始和停止重新排序\",\"table.actions\":\"操作\",\"table.error\":\"加载数据时出错。\",\"table.fetchedrows.text\":\"已获取 {{totalRows}} 行\",\"table.fetchedrows.text_plural\":\"共计已获取 {{totalRows}} 行\",\"table.moreactions.arialabel\":\"更多操作\",\"table.noresults.heading\":\"没有结果。\",\"table.noresults.text\":\"尝试不同的查询。\",\"table.reorder.backward\":\"下移\",\"table.reorder.forward\":\"上移\",\"table.reorder.toback\":\"移至底部\",\"table.reorder.tofront\":\"移至顶部\",\"table.rows.text\":\"{{totalRows}} 行\",\"table.rows.text_plural\":\"{{totalRows}} 行\",\"pagination.loadmore\":\"显示更多\",\"pagination.next\":\"下一页\",\"pagination.previous\":\"上一页\",\"pagination.page\":\"页面\",\"pagination.rowsperpage\":\"每页行数\",\"pagination.rowswithtotal\":\"第 {{firstRow}} 行至第 {{lastRow}} 行,共 {{totalRows}} 行\",\"pagination.rowswithouttotal\":\"第 {{firstRow}} 行至第 {{lastRow}} 行\",\"table.actions.selectall\":\"全选\",\"table.actions.selectnone\":\"全部不选\",\"table.actions.selectsome\":\"{{selectedRowCount}} 已选中\",\"table.rowexpansion.expand\":\"展开\",\"table.rowexpansion.expandall\":\"全部展开\",\"table.rowexpansion.collapse\":\"折叠\",\"table.rowexpansion.collapseall\":\"全部折叠\",\"dataview.layout.table\":\"表格\",\"dataview.layout.grid\":\"网格\",\"dataview.layout.list\":\"列表\"};"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_zh_CN.js","names":["translation"],"sources":["../../../src/properties/ts/odyssey-react-mui_zh_CN.ts"],"sourcesContent":["export const translation = {\"breadcrumbs.home.text\":\"主页\",\"breadcrumbs.label.text\":\"面包屑\",\"close.text\":\"关闭\",\"clear.text\":\"清除\",\"open.text\":\"打开\",\"picker.calendar.navigation.nextmonth\":\"下个月\",\"picker.calendar.navigation.previousmonth\":\"上个月\",\"picker.date.toolbar.title\":\"选定日期\",\"picker.daterange.toolbar.title\":\"选择日期范围\",\"picker.datetime.toolbar.title\":\"选择日期和时间\",\"picker.error.invalid\":\"更正日期格式或从日历中选择日期。\",\"picker.error.mindate\":\"输入的日期早于允许的日期。从日历中选择一个可用日期。\",\"picker.error.maxdate\":\"输入的日期晚于允许的日期。从日历中选择一个可用日期。\",\"picker.field.placeholder.day\":\"DD\",\"picker.field.placeholder.hours\":\"hh\",\"picker.field.placeholder.meridiem\":\"aa\",\"picker.field.placeholder.minutes\":\"mm\",\"picker.field.placeholder.month\":\"MM\",\"picker.field.placeholder.seconds\":\"ss\",\"picker.field.placeholder.year\":\"YYYY\",\"picker.labels.action.apply\":\"应用\",\"picker.labels.action.cancel\":\"取消\",\"picker.labels.action.today\":\"今天\",\"picker.labels.clock.empty\":\"未选择时间\",\"picker.labels.clock.hours\":\"小时\",\"picker.labels.clock.minutes\":\"分钟\",\"picker.labels.clock.seconds\":\"秒\",\"picker.labels.clock.selected\":\"选定时间为\",\"picker.labels.date.choose\":\"选择日期\",\"picker.labels.date.selected\":\"选定日期为\",\"picker.labels.empty\":\"空\",\"picker.labels.field.clear\":\"清除值\",\"picker.labels.range.end\":\"结束\",\"picker.labels.range.enddate\":\"结束日期\",\"picker.labels.range.endtime\":\"结束时间\",\"picker.labels.range.start\":\"开始\",\"picker.labels.range.startdate\":\"开始日期\",\"picker.labels.range.starttime\":\"开始时间\",\"picker.labels.select\":\"选择\",\"picker.labels.table.date\":\"选择日期\",\"picker.labels.table.time\":\"选择时间\",\"picker.labels.time.choose\":\"选择时间\",\"picker.labels.time.selected\":\"选定时间为\",\"picker.time.toolbar.title\":\"选择时间\",\"picker.view.name.day\":\"天\",\"picker.view.name.hours\":\"小时\",\"picker.view.name.meridiem\":\"正午\",\"picker.view.name.minutes\":\"分钟\",\"picker.view.name.month\":\"月\",\"picker.view.name.seconds\":\"秒\",\"picker.view.name.weekday\":\"工作日\",\"picker.view.name.year\":\"年份\",\"picker.view.navigation.open.nextview\":\"打开下一个视图\",\"picker.view.navigation.open.previousview\":\"打开上一个视图\",\"picker.view.navigation.switch.calendarview\":\"年份视图已打开,切换到日历视图\",\"picker.view.navigation.switch.yearview\":\"日历视图已打开,切换到年份视图\",\"fielderror.screenreader.text\":\"错误\",\"fieldlabel.optional.text\":\"可选\",\"fieldlabel.required.text\":\"必填\",\"filters.clear.label\":\"清除筛选器\",\"filters.filter.any\":\"任何\",\"filters.filter.clear\":\"清除筛选器\",\"filters.filters.arialabel\":\"筛选器\",\"filters.menuitem.any\":\"任何 {{label}}\",\"filters.menuitem.selected\":\"{{selected}} 已选中\",\"filters.search.label\":\"搜索\",\"fileupload.button.text\":\"添加文件\",\"fileupload.prompt.text\":\"将文件拖放到此处或点击添加文件\",\"fileupload.removefile.text\":\"删除文件\",\"passwordfield.icon.label.hide\":\"隐藏密码\",\"passwordfield.icon.label.show\":\"显示密码\",\"severity.error\":\"错误\",\"severity.info\":\"信息\",\"severity.success\":\"成功\",\"severity.warning\":\"警告\",\"switch.active\":\"活动\",\"switch.inactive\":\"非活动\",\"table.columnvisibility.arialabel\":\"显示/隐藏列\",\"table.density.arialabel\":\"表密度\",\"table.draghandle.arialabel\":\"拖动行以重新排序。或者,按空格键或 Enter 键开始和停止重新排序,按 Esc 键取消操作。\",\"table.draghandle.tooltip\":\"拖动行或按空格/Enter 键开始和停止重新排序\",\"table.actions\":\"操作\",\"table.error\":\"加载数据时出错。\",\"table.fetchedrows.text\":\"已获取 {{totalRows}} 行\",\"table.fetchedrows.text_plural\":\"共计已获取 {{totalRows}} 行\",\"table.moreactions.arialabel\":\"更多操作\",\"table.noresults.heading\":\"没有结果。\",\"table.noresults.text\":\"尝试不同的查询。\",\"table.reorder.backward\":\"下移\",\"table.reorder.forward\":\"上移\",\"table.reorder.toback\":\"移至底部\",\"table.reorder.tofront\":\"移至顶部\",\"table.rows.text\":\"{{totalRows}} 行\",\"table.rows.text_plural\":\"{{totalRows}} 行\",\"pagination.loadmore\":\"显示更多\",\"pagination.next\":\"下一页\",\"pagination.previous\":\"上一页\",\"pagination.page\":\"页面\",\"pagination.rowsperpage\":\"每页行数\",\"pagination.rowswithtotal\":\"第 {{firstRow}} 行至第 {{lastRow}} 行,共 {{totalRows}} 行\",\"pagination.rowswithouttotal\":\"第 {{firstRow}} 行至第 {{lastRow}} 行\",\"table.actions.selectall\":\"全选\",\"table.actions.selectnone\":\"全部不选\",\"table.actions.selectsome\":\"{{selectedRowCount}} 已选中\",\"table.rowexpansion.expand\":\"展开\",\"table.rowexpansion.expandall\":\"全部展开\",\"table.rowexpansion.collapse\":\"折叠\",\"table.rowexpansion.collapseall\":\"全部折叠\",\"dataview.layout.table\":\"表格\",\"dataview.layout.grid\":\"网格\",\"dataview.layout.list\":\"列表\"};"],"mappings":"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"}
|
|
@@ -24,7 +24,8 @@ export const translation = {
|
|
|
24
24
|
"picker.labels.action.today": "今天",
|
|
25
25
|
"picker.labels.clock.empty": "沒有選取時間",
|
|
26
26
|
"picker.labels.clock.hours": "小時",
|
|
27
|
-
"picker.labels.clock.minutes": "
|
|
27
|
+
"picker.labels.clock.minutes": "分鐘",
|
|
28
|
+
"picker.labels.clock.seconds": "秒",
|
|
28
29
|
"picker.labels.clock.selected": "選取的時間是",
|
|
29
30
|
"picker.labels.date.choose": "選擇日期",
|
|
30
31
|
"picker.labels.date.selected": "選取的日期是",
|
|
@@ -40,6 +41,7 @@ export const translation = {
|
|
|
40
41
|
"picker.labels.table.date": "挑選日期",
|
|
41
42
|
"picker.labels.table.time": "挑選時間",
|
|
42
43
|
"picker.labels.time.choose": "選擇時間",
|
|
44
|
+
"picker.labels.time.selected": "選取的時間是",
|
|
43
45
|
"picker.time.toolbar.title": "選取時間",
|
|
44
46
|
"picker.view.name.day": "天",
|
|
45
47
|
"picker.view.name.hours": "小時",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odyssey-react-mui_zh_TW.js","names":["translation"],"sources":["../../../src/properties/ts/odyssey-react-mui_zh_TW.ts"],"sourcesContent":["export const translation = {\"breadcrumbs.home.text\":\"首頁\",\"breadcrumbs.label.text\":\"軌跡\",\"close.text\":\"關閉\",\"clear.text\":\"清除\",\"open.text\":\"開啟\",\"picker.calendar.navigation.nextmonth\":\"下個月\",\"picker.calendar.navigation.previousmonth\":\"上個月\",\"picker.date.toolbar.title\":\"已選取日期\",\"picker.daterange.toolbar.title\":\"選取日期範圍\",\"picker.datetime.toolbar.title\":\"選取日期與時間\",\"picker.error.invalid\":\"修正日期格式,或從行事曆中選取日期。\",\"picker.error.mindate\":\"輸入的日期早於允許的日期。從行事曆中的可用範圍選取日期。\",\"picker.error.maxdate\":\"輸入的日期晚於允許的日期。從行事曆中的可用範圍選取日期。\",\"picker.field.placeholder.day\":\"DD\",\"picker.field.placeholder.hours\":\"hh\",\"picker.field.placeholder.meridiem\":\"aa\",\"picker.field.placeholder.minutes\":\"mm\",\"picker.field.placeholder.month\":\"MM\",\"picker.field.placeholder.seconds\":\"ss\",\"picker.field.placeholder.year\":\"YYYY\",\"picker.labels.action.apply\":\"套用\",\"picker.labels.action.cancel\":\"取消\",\"picker.labels.action.today\":\"今天\",\"picker.labels.clock.empty\":\"沒有選取時間\",\"picker.labels.clock.hours\":\"小時\",\"picker.labels.clock.minutes\":\"秒\",\"picker.labels.clock.selected\":\"選取的時間是\",\"picker.labels.date.choose\":\"選擇日期\",\"picker.labels.date.selected\":\"選取的日期是\",\"picker.labels.empty\":\"空白\",\"picker.labels.field.clear\":\"清除值\",\"picker.labels.range.end\":\"結束\",\"picker.labels.range.enddate\":\"結束日期\",\"picker.labels.range.endtime\":\"結束時間\",\"picker.labels.range.start\":\"開始\",\"picker.labels.range.startdate\":\"開始日期\",\"picker.labels.range.starttime\":\"開始時間\",\"picker.labels.select\":\"選取\",\"picker.labels.table.date\":\"挑選日期\",\"picker.labels.table.time\":\"挑選時間\",\"picker.labels.time.choose\":\"選擇時間\",\"picker.time.toolbar.title\":\"選取時間\",\"picker.view.name.day\":\"天\",\"picker.view.name.hours\":\"小時\",\"picker.view.name.meridiem\":\"十二小時制\",\"picker.view.name.minutes\":\"分鐘\",\"picker.view.name.month\":\"個月\",\"picker.view.name.seconds\":\"秒\",\"picker.view.name.weekday\":\"星期幾\",\"picker.view.name.year\":\"年\",\"picker.view.navigation.open.nextview\":\"開啟下一個檢視\",\"picker.view.navigation.open.previousview\":\"開啟上一個檢視\",\"picker.view.navigation.switch.calendarview\":\"年檢視已開啟,切換至行事曆檢視\",\"picker.view.navigation.switch.yearview\":\"行事曆檢視已開啟,切換至年檢視\",\"fielderror.screenreader.text\":\"錯誤\",\"fieldlabel.optional.text\":\"選擇性\",\"fieldlabel.required.text\":\"必要\",\"filters.clear.label\":\"清除篩選條件\",\"filters.filter.any\":\"任何\",\"filters.filter.clear\":\"清除篩選條件\",\"filters.filters.arialabel\":\"篩選條件\",\"filters.menuitem.any\":\"任何 {{label}}\",\"filters.menuitem.selected\":\"已選取 {{selected}}\",\"filters.search.label\":\"搜尋\",\"fileupload.button.text\":\"新增檔案\",\"fileupload.prompt.text\":\"將檔案拖放到此處或按一下以新增檔案\",\"fileupload.removefile.text\":\"移除檔案\",\"passwordfield.icon.label.hide\":\"隱藏密碼\",\"passwordfield.icon.label.show\":\"顯示密碼\",\"severity.error\":\"錯誤\",\"severity.info\":\"資訊\",\"severity.success\":\"成功\",\"severity.warning\":\"警告\",\"switch.active\":\"作用中\",\"switch.inactive\":\"非作用中\",\"table.columnvisibility.arialabel\":\"顯示/隱藏欄\",\"table.density.arialabel\":\"表格密度\",\"table.draghandle.arialabel\":\"拖曳列以重新排序。或者按下空白鍵或 Enter 鍵以開始和停止重新排序,按下 Esc 鍵可取消。\",\"table.draghandle.tooltip\":\"拖曳列或按下空白鍵/Enter 鍵即可開始和停止重新排序\",\"table.actions\":\"動作\",\"table.error\":\"載入資料時發生錯誤。\",\"table.fetchedrows.text\":\"已擷取 {{totalRows}} 列\",\"table.fetchedrows.text_plural\":\"已擷取總共 {{totalRows}} 列\",\"table.moreactions.arialabel\":\"更多動作\",\"table.noresults.heading\":\"沒有結果。\",\"table.noresults.text\":\"請嘗試不同的查詢。\",\"table.reorder.backward\":\"往後傳送\",\"table.reorder.forward\":\"往前帶\",\"table.reorder.toback\":\"向後傳送\",\"table.reorder.tofront\":\"向前帶\",\"table.rows.text\":\"{{totalRows}} 列\",\"table.rows.text_plural\":\"{{totalRows}} 列\",\"pagination.loadmore\":\"顯示更多\",\"pagination.next\":\"下一頁\",\"pagination.previous\":\"上一頁\",\"pagination.page\":\"頁面\",\"pagination.rowsperpage\":\"每頁列數\",\"pagination.rowswithtotal\":\"第 {{firstRow}}-{{lastRow}} 列,總共 {{totalRows}} 列\",\"pagination.rowswithouttotal\":\"第 {{firstRow}}-{{lastRow}} 列\",\"table.actions.selectall\":\"全選\",\"table.actions.selectnone\":\"沒有選取\",\"table.actions.selectsome\":\"已選取 {{selectedRowCount}} 個\",\"table.rowexpansion.expand\":\"展開\",\"table.rowexpansion.expandall\":\"全部展開\",\"table.rowexpansion.collapse\":\"摺疊\",\"table.rowexpansion.collapseall\":\"全部摺疊\",\"dataview.layout.table\":\"表格\",\"dataview.layout.grid\":\"網格\",\"dataview.layout.list\":\"清單\"};"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"odyssey-react-mui_zh_TW.js","names":["translation"],"sources":["../../../src/properties/ts/odyssey-react-mui_zh_TW.ts"],"sourcesContent":["export const translation = {\"breadcrumbs.home.text\":\"首頁\",\"breadcrumbs.label.text\":\"軌跡\",\"close.text\":\"關閉\",\"clear.text\":\"清除\",\"open.text\":\"開啟\",\"picker.calendar.navigation.nextmonth\":\"下個月\",\"picker.calendar.navigation.previousmonth\":\"上個月\",\"picker.date.toolbar.title\":\"已選取日期\",\"picker.daterange.toolbar.title\":\"選取日期範圍\",\"picker.datetime.toolbar.title\":\"選取日期與時間\",\"picker.error.invalid\":\"修正日期格式,或從行事曆中選取日期。\",\"picker.error.mindate\":\"輸入的日期早於允許的日期。從行事曆中的可用範圍選取日期。\",\"picker.error.maxdate\":\"輸入的日期晚於允許的日期。從行事曆中的可用範圍選取日期。\",\"picker.field.placeholder.day\":\"DD\",\"picker.field.placeholder.hours\":\"hh\",\"picker.field.placeholder.meridiem\":\"aa\",\"picker.field.placeholder.minutes\":\"mm\",\"picker.field.placeholder.month\":\"MM\",\"picker.field.placeholder.seconds\":\"ss\",\"picker.field.placeholder.year\":\"YYYY\",\"picker.labels.action.apply\":\"套用\",\"picker.labels.action.cancel\":\"取消\",\"picker.labels.action.today\":\"今天\",\"picker.labels.clock.empty\":\"沒有選取時間\",\"picker.labels.clock.hours\":\"小時\",\"picker.labels.clock.minutes\":\"分鐘\",\"picker.labels.clock.seconds\":\"秒\",\"picker.labels.clock.selected\":\"選取的時間是\",\"picker.labels.date.choose\":\"選擇日期\",\"picker.labels.date.selected\":\"選取的日期是\",\"picker.labels.empty\":\"空白\",\"picker.labels.field.clear\":\"清除值\",\"picker.labels.range.end\":\"結束\",\"picker.labels.range.enddate\":\"結束日期\",\"picker.labels.range.endtime\":\"結束時間\",\"picker.labels.range.start\":\"開始\",\"picker.labels.range.startdate\":\"開始日期\",\"picker.labels.range.starttime\":\"開始時間\",\"picker.labels.select\":\"選取\",\"picker.labels.table.date\":\"挑選日期\",\"picker.labels.table.time\":\"挑選時間\",\"picker.labels.time.choose\":\"選擇時間\",\"picker.labels.time.selected\":\"選取的時間是\",\"picker.time.toolbar.title\":\"選取時間\",\"picker.view.name.day\":\"天\",\"picker.view.name.hours\":\"小時\",\"picker.view.name.meridiem\":\"十二小時制\",\"picker.view.name.minutes\":\"分鐘\",\"picker.view.name.month\":\"個月\",\"picker.view.name.seconds\":\"秒\",\"picker.view.name.weekday\":\"星期幾\",\"picker.view.name.year\":\"年\",\"picker.view.navigation.open.nextview\":\"開啟下一個檢視\",\"picker.view.navigation.open.previousview\":\"開啟上一個檢視\",\"picker.view.navigation.switch.calendarview\":\"年檢視已開啟,切換至行事曆檢視\",\"picker.view.navigation.switch.yearview\":\"行事曆檢視已開啟,切換至年檢視\",\"fielderror.screenreader.text\":\"錯誤\",\"fieldlabel.optional.text\":\"選擇性\",\"fieldlabel.required.text\":\"必要\",\"filters.clear.label\":\"清除篩選條件\",\"filters.filter.any\":\"任何\",\"filters.filter.clear\":\"清除篩選條件\",\"filters.filters.arialabel\":\"篩選條件\",\"filters.menuitem.any\":\"任何 {{label}}\",\"filters.menuitem.selected\":\"已選取 {{selected}}\",\"filters.search.label\":\"搜尋\",\"fileupload.button.text\":\"新增檔案\",\"fileupload.prompt.text\":\"將檔案拖放到此處或按一下以新增檔案\",\"fileupload.removefile.text\":\"移除檔案\",\"passwordfield.icon.label.hide\":\"隱藏密碼\",\"passwordfield.icon.label.show\":\"顯示密碼\",\"severity.error\":\"錯誤\",\"severity.info\":\"資訊\",\"severity.success\":\"成功\",\"severity.warning\":\"警告\",\"switch.active\":\"作用中\",\"switch.inactive\":\"非作用中\",\"table.columnvisibility.arialabel\":\"顯示/隱藏欄\",\"table.density.arialabel\":\"表格密度\",\"table.draghandle.arialabel\":\"拖曳列以重新排序。或者按下空白鍵或 Enter 鍵以開始和停止重新排序,按下 Esc 鍵可取消。\",\"table.draghandle.tooltip\":\"拖曳列或按下空白鍵/Enter 鍵即可開始和停止重新排序\",\"table.actions\":\"動作\",\"table.error\":\"載入資料時發生錯誤。\",\"table.fetchedrows.text\":\"已擷取 {{totalRows}} 列\",\"table.fetchedrows.text_plural\":\"已擷取總共 {{totalRows}} 列\",\"table.moreactions.arialabel\":\"更多動作\",\"table.noresults.heading\":\"沒有結果。\",\"table.noresults.text\":\"請嘗試不同的查詢。\",\"table.reorder.backward\":\"往後傳送\",\"table.reorder.forward\":\"往前帶\",\"table.reorder.toback\":\"向後傳送\",\"table.reorder.tofront\":\"向前帶\",\"table.rows.text\":\"{{totalRows}} 列\",\"table.rows.text_plural\":\"{{totalRows}} 列\",\"pagination.loadmore\":\"顯示更多\",\"pagination.next\":\"下一頁\",\"pagination.previous\":\"上一頁\",\"pagination.page\":\"頁面\",\"pagination.rowsperpage\":\"每頁列數\",\"pagination.rowswithtotal\":\"第 {{firstRow}}-{{lastRow}} 列,總共 {{totalRows}} 列\",\"pagination.rowswithouttotal\":\"第 {{firstRow}}-{{lastRow}} 列\",\"table.actions.selectall\":\"全選\",\"table.actions.selectnone\":\"沒有選取\",\"table.actions.selectsome\":\"已選取 {{selectedRowCount}} 個\",\"table.rowexpansion.expand\":\"展開\",\"table.rowexpansion.expandall\":\"全部展開\",\"table.rowexpansion.collapse\":\"摺疊\",\"table.rowexpansion.collapseall\":\"全部摺疊\",\"dataview.layout.table\":\"表格\",\"dataview.layout.grid\":\"網格\",\"dataview.layout.list\":\"清單\"};"],"mappings":"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"}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*
|
|
10
10
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
import { AutocompleteProps as MuiAutocompleteProps, UseAutocompleteProps } from "@mui/material";
|
|
12
|
+
import { AutocompleteProps as MuiAutocompleteProps, UseAutocompleteProps as MuiUseAutocompleteProps } from "@mui/material";
|
|
13
13
|
import { FieldComponentProps } from "./FieldComponentProps";
|
|
14
14
|
import type { HtmlProps } from "./HtmlProps";
|
|
15
15
|
export declare const AutocompleteTestSelector: {
|
|
@@ -46,13 +46,21 @@ export type AutocompleteProps<OptionType, HasMultipleChoices extends boolean | u
|
|
|
46
46
|
/**
|
|
47
47
|
* The default value. Use when the component is not controlled.
|
|
48
48
|
*/
|
|
49
|
-
defaultValue?:
|
|
49
|
+
defaultValue?: MuiUseAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["defaultValue"];
|
|
50
50
|
/**
|
|
51
51
|
* Used to determine the string value for a given option. It's used to fill the input (and the list box options if renderOption is not provided). If used in free solo mode, it must accept both the type of the options and a string.
|
|
52
52
|
*
|
|
53
53
|
* `function(option: Value) => string`
|
|
54
54
|
*/
|
|
55
|
-
getOptionLabel?:
|
|
55
|
+
getOptionLabel?: MuiUseAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["getOptionLabel"];
|
|
56
|
+
/** Used to determine if the option represents the given value. Uses strict equality by default if none provided.
|
|
57
|
+
* Both arguments need to be handled, an option can only match with one value.
|
|
58
|
+
* option: the option to test
|
|
59
|
+
* value: the value to test against
|
|
60
|
+
*
|
|
61
|
+
* You will need to implement this function if your `option` items are objects.
|
|
62
|
+
*/
|
|
63
|
+
getIsOptionEqualToValue?: (option: OptionType, value: OptionType) => boolean;
|
|
56
64
|
/**
|
|
57
65
|
* Enables multiple choice selection
|
|
58
66
|
*/
|
|
@@ -60,7 +68,7 @@ export type AutocompleteProps<OptionType, HasMultipleChoices extends boolean | u
|
|
|
60
68
|
/**
|
|
61
69
|
* The value for the input
|
|
62
70
|
*/
|
|
63
|
-
inputValue?:
|
|
71
|
+
inputValue?: MuiUseAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["inputValue"];
|
|
64
72
|
/**
|
|
65
73
|
* Allows the input of custom values
|
|
66
74
|
*/
|
|
@@ -77,6 +85,12 @@ export type AutocompleteProps<OptionType, HasMultipleChoices extends boolean | u
|
|
|
77
85
|
* Makes the Autocomplete input read-only
|
|
78
86
|
*/
|
|
79
87
|
isReadOnly?: MuiAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["readOnly"];
|
|
88
|
+
/**
|
|
89
|
+
* If this component is required to display a virtualized list of options,
|
|
90
|
+
* then this value needs to be set to true.
|
|
91
|
+
* It is recommended if you're options are on the order of 10's of hundreds or more.
|
|
92
|
+
*/
|
|
93
|
+
isVirtualized?: boolean;
|
|
80
94
|
/**
|
|
81
95
|
* The label text for the autocomplete input
|
|
82
96
|
*/
|
|
@@ -94,7 +108,7 @@ export type AutocompleteProps<OptionType, HasMultipleChoices extends boolean | u
|
|
|
94
108
|
/**
|
|
95
109
|
* Callback fired when a selection is made.
|
|
96
110
|
*/
|
|
97
|
-
onChange?:
|
|
111
|
+
onChange?: MuiUseAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["onChange"];
|
|
98
112
|
/**
|
|
99
113
|
* Callback fired when the textbox receives typed characters.
|
|
100
114
|
*/
|
|
@@ -110,24 +124,9 @@ export type AutocompleteProps<OptionType, HasMultipleChoices extends boolean | u
|
|
|
110
124
|
/**
|
|
111
125
|
* The value of the Autocomplete input
|
|
112
126
|
*/
|
|
113
|
-
value?:
|
|
114
|
-
/**
|
|
115
|
-
* Used to determine if the option represents the given value. Uses strict equality by default if none provided.
|
|
116
|
-
* Both arguments need to be handled, an option can only match with one value.
|
|
117
|
-
* option: the option to test
|
|
118
|
-
* value: the value to test against
|
|
119
|
-
*
|
|
120
|
-
* You will need to implement this function if your `option` items are objects.
|
|
121
|
-
*/
|
|
122
|
-
getIsOptionEqualToValue?: (option: OptionType, value: OptionType) => boolean;
|
|
123
|
-
/**
|
|
124
|
-
* If this component is required to display a virtualized list of options,
|
|
125
|
-
* then this value needs to be set to true.
|
|
126
|
-
* It is recommended if you're options are on the order of 10's of hundreds or more.
|
|
127
|
-
*/
|
|
128
|
-
isVirtualized?: boolean;
|
|
127
|
+
value?: MuiUseAutocompleteProps<OptionType, HasMultipleChoices, undefined, IsCustomValueAllowed>["value"];
|
|
129
128
|
} & Pick<FieldComponentProps, "errorMessage" | "errorMessageList" | "hint" | "HintLinkComponent" | "id" | "isFullWidth" | "isOptional" | "name"> & Pick<HtmlProps, "ariaDescribedBy" | "testId" | "translate">;
|
|
130
|
-
declare const Autocomplete: <OptionType, HasMultipleChoices extends boolean | undefined, IsCustomValueAllowed extends boolean | undefined>({ ariaDescribedBy, defaultValue, errorMessage, errorMessageList, getOptionLabel, hasMultipleChoices, id: idOverride, inputValue, isCustomValueAllowed, isDisabled, isFullWidth, isLoading, isOptional, isReadOnly, isVirtualized
|
|
129
|
+
declare const Autocomplete: <OptionType, HasMultipleChoices extends boolean | undefined, IsCustomValueAllowed extends boolean | undefined>({ ariaDescribedBy, defaultValue, errorMessage, errorMessageList, getOptionLabel, hasMultipleChoices, id: idOverride, inputValue, isCustomValueAllowed, isDisabled, isFullWidth, isLoading, isOptional, isReadOnly, isVirtualized, hint, HintLinkComponent, label, name: nameOverride, noOptionsText, onBlur, onChange, onInputChange, onFocus, options, value, getIsOptionEqualToValue, testId, translate, }: AutocompleteProps<OptionType, HasMultipleChoices, IsCustomValueAllowed>) => import("react/jsx-runtime").JSX.Element;
|
|
131
130
|
declare const MemoizedAutocomplete: typeof Autocomplete;
|
|
132
131
|
export { MemoizedAutocomplete as Autocomplete };
|
|
133
132
|
//# sourceMappingURL=Autocomplete.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../src/Autocomplete.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../src/Autocomplete.tsx"],"names":[],"mappings":"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"}
|
package/dist/src/Box.d.ts
CHANGED
|
@@ -10,18 +10,20 @@
|
|
|
10
10
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
import { BoxProps as MuiBoxProps } from "@mui/material";
|
|
13
|
-
import { ReactNode } from "react";
|
|
13
|
+
import { AriaRole, ReactNode } from "react";
|
|
14
14
|
import type { HtmlProps } from "./HtmlProps";
|
|
15
15
|
export type BoxProps = {
|
|
16
16
|
children?: ReactNode;
|
|
17
17
|
component?: MuiBoxProps["component"];
|
|
18
18
|
id?: MuiBoxProps["id"];
|
|
19
|
+
role?: AriaRole;
|
|
19
20
|
sx?: MuiBoxProps["sx"];
|
|
20
21
|
} & Pick<HtmlProps, "testId" | "translate">;
|
|
21
22
|
declare const MemoizedBox: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
22
23
|
children?: ReactNode;
|
|
23
24
|
component?: MuiBoxProps["component"];
|
|
24
25
|
id?: MuiBoxProps["id"];
|
|
26
|
+
role?: AriaRole;
|
|
25
27
|
sx?: MuiBoxProps["sx"];
|
|
26
28
|
} & Pick<HtmlProps, "translate" | "testId"> & import("react").RefAttributes<HTMLElement>>>;
|
|
27
29
|
export { MemoizedBox as Box };
|
package/dist/src/Box.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Box.d.ts","sourceRoot":"","sources":["../../src/Box.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAiB,QAAQ,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,SAAS,EAAoB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Box.d.ts","sourceRoot":"","sources":["../../src/Box.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAiB,QAAQ,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAoB,MAAM,OAAO,CAAC;AAE9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,SAAS,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC,CAAC;IACrC,EAAE,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACvB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,EAAE,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CACxB,GAAG,IAAI,CAAC,SAAS,EAAE,QAAQ,GAAG,WAAW,CAAC,CAAC;AAiB5C,QAAA,MAAM,WAAW;eAtBJ,SAAS;gBACR,WAAW,CAAC,WAAW,CAAC;SAC/B,WAAW,CAAC,IAAI,CAAC;WACf,QAAQ;SACV,WAAW,CAAC,IAAI,CAAC;0FAkBK,CAAC;AAG9B,OAAO,EAAE,WAAW,IAAI,GAAG,EAAE,CAAC"}
|
package/dist/src/Card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../src/Card.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,iBAAiB,EACjB,YAAY,EAIb,MAAM,OAAO,CAAC;AAQf,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAc,eAAe,EAAE,MAAM,cAAc,CAAC;AAQ3D,eAAO,MAAM,iBAAiB,SAAS,CAAC;AAExC,MAAM,MAAM,SAAS,GAAG;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,GAAG,CACA;IACE,OAAO,EAAE,iBAAiB,CAAC;IAC3B,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,kBAAkB,CAAC,EAAE,KAAK,CAAC;CAC5B,GACD;IACE,OAAO,CAAC,EAAE,KAAK,CAAC;IAChB,MAAM,CAAC,EAAE,YAAY,CAAC,OAAO,MAAM,CAAC,CAAC;IACrC,kBAAkB,CAAC,EAAE,eAAe,CAAC,UAAU,CAAC,CAAC;CAClD,CACJ,CAAC;
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../src/Card.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,iBAAiB,EACjB,YAAY,EAIb,MAAM,OAAO,CAAC;AAQf,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAc,eAAe,EAAE,MAAM,cAAc,CAAC;AAQ3D,eAAO,MAAM,iBAAiB,SAAS,CAAC;AAExC,MAAM,MAAM,SAAS,GAAG;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,GAAG,CACA;IACE,OAAO,EAAE,iBAAiB,CAAC;IAC3B,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,kBAAkB,CAAC,EAAE,KAAK,CAAC;CAC5B,GACD;IACE,OAAO,CAAC,EAAE,KAAK,CAAC;IAChB,MAAM,CAAC,EAAE,YAAY,CAAC,OAAO,MAAM,CAAC,CAAC;IACrC,kBAAkB,CAAC,EAAE,eAAe,CAAC,UAAU,CAAC,CAAC;CAClD,CACJ,CAAC;AA4GF,QAAA,MAAM,YAAY,sHArEf,SAAS,6CAqEmB,CAAC;AAgBhC,QAAA,MAAM,YAAY,8CAVG,SAAS,6CAUC,CAAC;AAGhC,OAAO,EAAE,YAAY,IAAI,IAAI,EAAE,YAAY,IAAI,IAAI,EAAE,CAAC"}
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
*
|
|
10
10
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
import * as
|
|
13
|
-
export type DesignTokens = typeof
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
12
|
+
import * as odysseyDesignTokens from "@okta/odyssey-design-tokens";
|
|
13
|
+
export type DesignTokens = typeof odysseyDesignTokens;
|
|
14
|
+
export declare const defaultOdysseyDesignTokensContextValue: typeof odysseyDesignTokens;
|
|
15
|
+
export declare const OdysseyDesignTokensContext: import("react").Context<typeof odysseyDesignTokens>;
|
|
16
|
+
export declare const useOdysseyDesignTokens: () => typeof odysseyDesignTokens;
|
|
16
17
|
//# sourceMappingURL=OdysseyDesignTokensContext.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OdysseyDesignTokensContext.d.ts","sourceRoot":"","sources":["../../src/OdysseyDesignTokensContext.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"OdysseyDesignTokensContext.d.ts","sourceRoot":"","sources":["../../src/OdysseyDesignTokensContext.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AAGnE,MAAM,MAAM,YAAY,GAAG,OAAO,mBAAmB,CAAC;AACtD,eAAO,MAAM,sCAAsC,4BAAsB,CAAC;AAC1E,eAAO,MAAM,0BAA0B,qDAEtC,CAAC;AAEF,eAAO,MAAM,sBAAsB,kCACK,CAAC"}
|
|
@@ -17,7 +17,7 @@ import { DefaultSupportedLanguages } from "./OdysseyTranslationProvider.types";
|
|
|
17
17
|
export type OdysseyProviderProps<SupportedLanguages extends string = DefaultSupportedLanguages> = OdysseyCacheProviderProps & OdysseyThemeProviderProps & OdysseyTranslationProviderProps<SupportedLanguages> & {
|
|
18
18
|
children: ReactNode;
|
|
19
19
|
};
|
|
20
|
-
declare const OdysseyProvider: <SupportedLanguages extends string>({ children, designTokensOverride, emotionRoot, emotionRootElement,
|
|
21
|
-
declare const
|
|
22
|
-
export {
|
|
20
|
+
declare const OdysseyProvider: <SupportedLanguages extends string>({ children, contrastMode, designTokensOverride, emotionRoot, emotionRootElement, languageCode, nonce, shadowDomElement, shadowRootElement, stylisPlugins, themeOverride, translationOverrides, }: OdysseyProviderProps<SupportedLanguages>) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
declare const MemoizedOdysseyProvider: typeof OdysseyProvider;
|
|
22
|
+
export { MemoizedOdysseyProvider as OdysseyProvider };
|
|
23
23
|
//# sourceMappingURL=OdysseyProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OdysseyProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAQ,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"OdysseyProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAQ,SAAS,EAAE,MAAM,OAAO,CAAC;AAGxC,OAAO,EAEL,yBAAyB,EAC1B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAEL,yBAAyB,EAC1B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAEL,+BAA+B,EAChC,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAK/E,MAAM,MAAM,oBAAoB,CAC9B,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D,yBAAyB,GAC3B,yBAAyB,GACzB,+BAA+B,CAAC,kBAAkB,CAAC,GAAG;IACpD,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC;AAEJ,QAAA,MAAM,eAAe,GAAI,kBAAkB,SAAS,MAAM,oMAavD,oBAAoB,CAAC,kBAAkB,CAAC,4CAyB1C,CAAC;AACF,QAAA,MAAM,uBAAuB,EAA4B,OAAO,eAAe,CAAC;AAEhF,OAAO,EAAE,uBAAuB,IAAI,eAAe,EAAE,CAAC"}
|
|
@@ -12,22 +12,20 @@
|
|
|
12
12
|
import { ReactNode } from "react";
|
|
13
13
|
import { ThemeOptions } from "@mui/material";
|
|
14
14
|
import { DesignTokensOverride } from "./theme";
|
|
15
|
+
import { ContrastMode } from "./useContrastMode";
|
|
15
16
|
export type OdysseyThemeProviderProps = {
|
|
16
17
|
children: ReactNode;
|
|
18
|
+
contrastMode?: ContrastMode;
|
|
17
19
|
designTokensOverride?: DesignTokensOverride;
|
|
18
|
-
/** @deprecated Use
|
|
19
|
-
shadowDomElement?: HTMLDivElement | HTMLElement
|
|
20
|
+
/** @deprecated Use shadowRootElement instead */
|
|
21
|
+
shadowDomElement?: HTMLDivElement | HTMLElement;
|
|
20
22
|
shadowRootElement?: HTMLDivElement | HTMLElement;
|
|
21
23
|
themeOverride?: ThemeOptions;
|
|
22
24
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
declare const MemoizedOdysseyThemeProvider: import("react").MemoExoticComponent<({ children, designTokensOverride, shadowDomElement, shadowRootElement, themeOverride, }: OdysseyThemeProviderProps) => import("react/jsx-runtime").JSX.Element>;
|
|
32
|
-
export { MemoizedOdysseyThemeProvider as OdysseyThemeProvider };
|
|
25
|
+
/**
|
|
26
|
+
* This function doesn't include the Emotion Cache or Translations. You should probably be using `OdysseyProvider`.
|
|
27
|
+
*
|
|
28
|
+
* Some teams have a need to wrap separately (SIW), but most teams will never need to use this explicitly.
|
|
29
|
+
*/
|
|
30
|
+
export declare const OdysseyThemeProvider: ({ children, contrastMode: explicitContrastMode, designTokensOverride, shadowDomElement, shadowRootElement, themeOverride, }: OdysseyThemeProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
31
|
//# sourceMappingURL=OdysseyThemeProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OdysseyThemeProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyThemeProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"OdysseyThemeProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyThemeProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAW,MAAM,OAAO,CAAC;AAK3C,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAG7C,OAAO,EAAyB,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAGtE,OAAO,EACL,YAAY,EAGb,MAAM,mBAAmB,CAAC;AAG3B,MAAM,MAAM,yBAAyB,GAAG;IACtC,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,gDAAgD;IAChD,gBAAgB,CAAC,EAAE,cAAc,GAAG,WAAW,CAAC;IAChD,iBAAiB,CAAC,EAAE,cAAc,GAAG,WAAW,CAAC;IACjD,aAAa,CAAC,EAAE,YAAY,CAAC;CAC9B,CAAC;AAMF;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,gIAO9B,yBAAyB,4CA6C3B,CAAC"}
|
|
@@ -13,7 +13,7 @@ import { ReactNode } from "react";
|
|
|
13
13
|
import { DefaultSupportedLanguages } from "./OdysseyTranslationProvider.types";
|
|
14
14
|
import { resources } from "./i18n";
|
|
15
15
|
export type OdysseyI18nResourceKeys = (typeof resources)["en"];
|
|
16
|
-
export declare const odysseyI18nResourceKeysList: ("breadcrumbs.home.text" | "breadcrumbs.label.text" | "close.text" | "clear.text" | "open.text" | "picker.calendar.navigation.nextmonth" | "picker.calendar.navigation.previousmonth" | "picker.date.toolbar.title" | "picker.daterange.toolbar.title" | "picker.datetime.toolbar.title" | "picker.error.invalid" | "picker.error.mindate" | "picker.error.maxdate" | "picker.field.placeholder.day" | "picker.field.placeholder.hours" | "picker.field.placeholder.meridiem" | "picker.field.placeholder.minutes" | "picker.field.placeholder.month" | "picker.field.placeholder.seconds" | "picker.field.placeholder.year" | "picker.labels.action.apply" | "picker.labels.action.cancel" | "picker.labels.action.today" | "picker.labels.clock.empty" | "picker.labels.clock.hours" | "picker.labels.clock.minutes" | "picker.labels.clock.seconds" | "picker.labels.clock.selected" | "picker.labels.date.choose" | "picker.labels.date.selected" | "picker.labels.empty" | "picker.labels.field.clear" | "picker.labels.range.end" | "picker.labels.range.enddate" | "picker.labels.range.endtime" | "picker.labels.range.start" | "picker.labels.range.startdate" | "picker.labels.range.starttime" | "picker.labels.select" | "picker.labels.table.date" | "picker.labels.table.time" | "picker.labels.time.choose" | "picker.labels.time.selected" | "picker.time.toolbar.title" | "picker.view.name.day" | "picker.view.name.hours" | "picker.view.name.meridiem" | "picker.view.name.minutes" | "picker.view.name.month" | "picker.view.name.seconds" | "picker.view.name.weekday" | "picker.view.name.year" | "picker.view.navigation.open.nextview" | "picker.view.navigation.open.previousview" | "picker.view.navigation.switch.calendarview" | "picker.view.navigation.switch.yearview" | "fielderror.screenreader.text" | "fieldlabel.optional.text" | "fieldlabel.required.text" | "filters.clear.label" | "filters.filter.any" | "filters.filter.clear" | "filters.filters.arialabel" | "filters.menuitem.any" | "filters.menuitem.selected" | "filters.search.label" | "fileupload.button.text" | "fileupload.prompt.text" | "fileupload.removefile.text" | "passwordfield.icon.label.hide" | "passwordfield.icon.label.show" | "severity.error" | "severity.info" | "severity.success" | "severity.warning" | "switch.active" | "switch.inactive" | "table.columnvisibility.arialabel" | "table.density.arialabel" | "table.draghandle.arialabel" | "table.draghandle.tooltip" | "table.actions" | "table.error" | "table.fetchedrows.text" | "table.fetchedrows.text_plural" | "table.moreactions.arialabel" | "table.noresults.heading" | "table.noresults.text" | "table.reorder.backward" | "table.reorder.forward" | "table.reorder.toback" | "table.reorder.tofront" | "table.rows.text" | "table.rows.text_plural" | "pagination.loadmore" | "pagination.next" | "pagination.previous" | "pagination.page" | "pagination.rowsperpage" | "pagination.rowswithtotal" | "pagination.rowswithouttotal" | "table.actions.selectall" | "table.actions.selectnone" | "table.actions.selectsome" | "table.rowexpansion.expand" | "table.rowexpansion.expandall" | "table.rowexpansion.collapse" | "table.rowexpansion.collapseall" | "dataview.layout.table" | "dataview.layout.grid" | "dataview.layout.list")[];
|
|
16
|
+
export declare const odysseyI18nResourceKeysList: ("navigation.label" | "navigation.footer" | "navigation.drag.handle" | "sortable.list.drag.start" | "sortable.list.drag.moved.over" | "sortable.list.drag.nolonger.over" | "sortable.list.drag.end.dropped.over" | "sortable.list.drag.end.dropped" | "sortable.list.drag.cancel" | "breadcrumbs.home.text" | "breadcrumbs.label.text" | "close.text" | "clear.text" | "open.text" | "picker.calendar.navigation.nextmonth" | "picker.calendar.navigation.previousmonth" | "picker.date.toolbar.title" | "picker.daterange.toolbar.title" | "picker.datetime.toolbar.title" | "picker.error.invalid" | "picker.error.mindate" | "picker.error.maxdate" | "picker.field.placeholder.day" | "picker.field.placeholder.hours" | "picker.field.placeholder.meridiem" | "picker.field.placeholder.minutes" | "picker.field.placeholder.month" | "picker.field.placeholder.seconds" | "picker.field.placeholder.year" | "picker.labels.action.apply" | "picker.labels.action.cancel" | "picker.labels.action.today" | "picker.labels.clock.empty" | "picker.labels.clock.hours" | "picker.labels.clock.minutes" | "picker.labels.clock.seconds" | "picker.labels.clock.selected" | "picker.labels.date.choose" | "picker.labels.date.selected" | "picker.labels.empty" | "picker.labels.field.clear" | "picker.labels.range.end" | "picker.labels.range.enddate" | "picker.labels.range.endtime" | "picker.labels.range.start" | "picker.labels.range.startdate" | "picker.labels.range.starttime" | "picker.labels.select" | "picker.labels.table.date" | "picker.labels.table.time" | "picker.labels.time.choose" | "picker.labels.time.selected" | "picker.time.toolbar.title" | "picker.view.name.day" | "picker.view.name.hours" | "picker.view.name.meridiem" | "picker.view.name.minutes" | "picker.view.name.month" | "picker.view.name.seconds" | "picker.view.name.weekday" | "picker.view.name.year" | "picker.view.navigation.open.nextview" | "picker.view.navigation.open.previousview" | "picker.view.navigation.switch.calendarview" | "picker.view.navigation.switch.yearview" | "fielderror.screenreader.text" | "fieldlabel.optional.text" | "fieldlabel.required.text" | "filters.clear.label" | "filters.filter.any" | "filters.filter.clear" | "filters.filters.arialabel" | "filters.menuitem.any" | "filters.menuitem.selected" | "filters.search.label" | "fileupload.button.text" | "fileupload.prompt.text" | "fileupload.removefile.text" | "passwordfield.icon.label.hide" | "passwordfield.icon.label.show" | "severity.error" | "severity.info" | "severity.success" | "severity.warning" | "sidenav.toggle.expand" | "sidenav.toggle.collapse" | "switch.active" | "switch.inactive" | "table.columnvisibility.arialabel" | "table.density.arialabel" | "table.draghandle.arialabel" | "table.draghandle.tooltip" | "table.actions" | "table.error" | "table.fetchedrows.text" | "table.fetchedrows.text_plural" | "table.moreactions.arialabel" | "table.noresults.heading" | "table.noresults.text" | "table.reorder.backward" | "table.reorder.forward" | "table.reorder.toback" | "table.reorder.tofront" | "table.rows.text" | "table.rows.text_plural" | "pagination.loadmore" | "pagination.next" | "pagination.previous" | "pagination.page" | "pagination.rowsperpage" | "pagination.rowswithtotal" | "pagination.rowswithouttotal" | "table.actions.selectall" | "table.actions.selectnone" | "table.actions.selectsome" | "table.rowexpansion.expand" | "table.rowexpansion.expandall" | "table.rowexpansion.collapse" | "table.rowexpansion.collapseall" | "dataview.layout.table" | "dataview.layout.grid" | "dataview.layout.list" | "topnav.helpicon" | "topnav.settingsicon")[];
|
|
17
17
|
export type TranslationOverrides<SupportedLanguages extends string = DefaultSupportedLanguages> = Record<SupportedLanguages, Partial<OdysseyI18nResourceKeys>>;
|
|
18
18
|
export type OdysseyTranslationProviderProps<SupportedLanguages extends string = DefaultSupportedLanguages> = {
|
|
19
19
|
children: ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OdysseyTranslationProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyTranslationProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,OAAO,CAAC;AAE7C,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAE/E,OAAO,EAAmB,SAAS,EAAE,MAAM,QAAQ,CAAC;AAIpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC;AAC/D,eAAO,MAAM,2BAA2B,
|
|
1
|
+
{"version":3,"file":"OdysseyTranslationProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyTranslationProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,OAAO,CAAC;AAE7C,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAE/E,OAAO,EAAmB,SAAS,EAAE,MAAM,QAAQ,CAAC;AAIpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC;AAC/D,eAAO,MAAM,2BAA2B,2/GAAsC,CAAC;AAE/E,MAAM,MAAM,oBAAoB,CAC9B,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D,MAAM,CAAC,kBAAkB,EAAE,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAcjE,MAAM,MAAM,+BAA+B,CACzC,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D;IACF,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,kBAAkB,GAAG,yBAAyB,CAAC;IAC9D,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CACjE,CAAC;AAEF,eAAO,MAAM,0BAA0B,GAAI,kBAAkB,SAAS,MAAM,qDAIzE,+BAA+B,CAAC,kBAAkB,CAAC,4CAmBrD,CAAC"}
|
|
@@ -14,11 +14,25 @@ export type PaginationProps = {
|
|
|
14
14
|
/**
|
|
15
15
|
* The labeled rendered for the current page index
|
|
16
16
|
*/
|
|
17
|
-
currentPageLabel
|
|
17
|
+
currentPageLabel?: string;
|
|
18
18
|
/**
|
|
19
19
|
* The number of items currently visible on the page
|
|
20
20
|
*/
|
|
21
21
|
currentRowsCount?: number;
|
|
22
|
+
/**
|
|
23
|
+
* If true, the page input will be visible and the user can directly manipulate which page
|
|
24
|
+
* is visible.
|
|
25
|
+
*/
|
|
26
|
+
hasPageInput?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* If true, the row count input will be visible and the user can directly manipulate how many rows
|
|
29
|
+
* are visible.
|
|
30
|
+
*/
|
|
31
|
+
hasRowCountInput?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* If true, the "X - X of total X" label will be visible
|
|
34
|
+
*/
|
|
35
|
+
hasRowCountLabel?: boolean;
|
|
22
36
|
/**
|
|
23
37
|
* If true, the pagination controls will be disabled
|
|
24
38
|
*/
|
|
@@ -30,11 +44,11 @@ export type PaginationProps = {
|
|
|
30
44
|
/**
|
|
31
45
|
* The current page last row index
|
|
32
46
|
*/
|
|
33
|
-
lastRow
|
|
47
|
+
lastRow?: number;
|
|
34
48
|
/**
|
|
35
49
|
* If the pagination is of "loadMore" variant, then this is the the load more label
|
|
36
50
|
*/
|
|
37
|
-
loadMoreLabel
|
|
51
|
+
loadMoreLabel?: string;
|
|
38
52
|
/**
|
|
39
53
|
* The max page
|
|
40
54
|
*/
|
|
@@ -46,7 +60,7 @@ export type PaginationProps = {
|
|
|
46
60
|
/**
|
|
47
61
|
* The label for the next control
|
|
48
62
|
*/
|
|
49
|
-
nextLabel
|
|
63
|
+
nextLabel?: string;
|
|
50
64
|
/**
|
|
51
65
|
* Page index and page size setter
|
|
52
66
|
*/
|
|
@@ -65,11 +79,11 @@ export type PaginationProps = {
|
|
|
65
79
|
/**
|
|
66
80
|
* The label for the previous control
|
|
67
81
|
*/
|
|
68
|
-
previousLabel
|
|
82
|
+
previousLabel?: string;
|
|
69
83
|
/**
|
|
70
84
|
* The label that shows how many results are rendered per page
|
|
71
85
|
*/
|
|
72
|
-
rowsPerPageLabel
|
|
86
|
+
rowsPerPageLabel?: string;
|
|
73
87
|
/**
|
|
74
88
|
* Total rows count
|
|
75
89
|
*/
|
|
@@ -80,6 +94,6 @@ export type PaginationProps = {
|
|
|
80
94
|
*/
|
|
81
95
|
variant?: (typeof paginationTypeValues)[number];
|
|
82
96
|
};
|
|
83
|
-
declare const MemoizedPagination: import("react").MemoExoticComponent<({ currentPageLabel, isDisabled, isMoreDisabled, lastRow, loadMoreLabel, maxPageIndex, maxPageSize, nextLabel, onPaginationChange, pageIndex, pageSize, previousLabel, rowsPerPageLabel, totalRows,
|
|
97
|
+
declare const MemoizedPagination: import("react").MemoExoticComponent<({ currentPageLabel: currentPageLabelProp, currentRowsCount, hasPageInput, hasRowCountInput, hasRowCountLabel, isDisabled, isMoreDisabled, lastRow, loadMoreLabel: loadMoreLabelProp, maxPageIndex, maxPageSize, nextLabel: nextLabelProp, onPaginationChange: onPaginationChangeProp, pageIndex, pageSize, previousLabel: previousLabelProp, rowsPerPageLabel: rowsPerPageLabelProp, totalRows, variant, }: PaginationProps) => import("react/jsx-runtime").JSX.Element>;
|
|
84
98
|
export { MemoizedPagination as Pagination };
|
|
85
99
|
//# sourceMappingURL=Pagination.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../src/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAaH,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../src/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAaH,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AA4CnD,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,kBAAkB,EAAE,CAAC,EACnB,SAAS,EACT,QAAQ,GACT,EAAE;QACD,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,CAAC;KAClB,KAAK,IAAI,CAAC;IACX;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,OAAO,CAAC,EAAE,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;CACjD,CAAC;AA6PF,QAAA,MAAM,kBAAkB,mbAvOrB,eAAe,6CAuOyB,CAAC;AAG5C,OAAO,EAAE,kBAAkB,IAAI,UAAU,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Surface.d.ts","sourceRoot":"","sources":["../../src/Surface.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAQ,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Surface.d.ts","sourceRoot":"","sources":["../../src/Surface.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAQ,SAAS,EAAE,MAAM,OAAO,CAAC;AA2BxC,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC;AAgBF,QAAA,MAAM,eAAe,qDAdU,YAAY,6CAcN,CAAC;AAGtC,OAAO,EAAE,eAAe,IAAI,OAAO,EAAE,CAAC"}
|
package/dist/src/Tag.d.ts
CHANGED
|
@@ -12,8 +12,10 @@
|
|
|
12
12
|
import { ChipProps as MuiChipProps } from "@mui/material";
|
|
13
13
|
import { ReactElement } from "react";
|
|
14
14
|
import { HtmlProps } from "./HtmlProps";
|
|
15
|
-
|
|
15
|
+
declare const tagSizeValues: readonly ["medium", "small"];
|
|
16
|
+
export declare const tagColorVariants: readonly ["accentFour", "accentOne", "accentThree", "accentTwo", "default", "info"];
|
|
16
17
|
type TagColorVariant = (typeof tagColorVariants)[number];
|
|
18
|
+
type TagSize = (typeof tagSizeValues)[number];
|
|
17
19
|
export type TagProps = {
|
|
18
20
|
icon?: ReactElement;
|
|
19
21
|
isDisabled?: boolean;
|
|
@@ -33,7 +35,8 @@ export type TagProps = {
|
|
|
33
35
|
* Color variant of the Tag, affecting its appearance
|
|
34
36
|
*/
|
|
35
37
|
colorVariant?: TagColorVariant;
|
|
38
|
+
size?: TagSize;
|
|
36
39
|
} & Pick<HtmlProps, "testId" | "translate">;
|
|
37
|
-
declare const MemoizedTag: import("react").MemoExoticComponent<({ colorVariant, icon, isDisabled, label, onClick, onRemove, testId, translate, }: TagProps) => import("react/jsx-runtime").JSX.Element>;
|
|
40
|
+
declare const MemoizedTag: import("react").MemoExoticComponent<({ colorVariant, icon, isDisabled, label, onClick, onRemove, size, testId, translate, }: TagProps) => import("react/jsx-runtime").JSX.Element>;
|
|
38
41
|
export { MemoizedTag as Tag };
|
|
39
42
|
//# sourceMappingURL=Tag.d.ts.map
|
package/dist/src/Tag.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../src/Tag.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAQ,YAAY,EAA2B,MAAM,OAAO,CAAC;AAIpE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../src/Tag.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAmB,SAAS,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAQ,YAAY,EAA2B,MAAM,OAAO,CAAC;AAIpE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AASxC,QAAA,MAAM,aAAa,8BAA+B,CAAC;AAEnD,eAAO,MAAM,gBAAgB,qFAOnB,CAAC;AAEX,KAAK,eAAe,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AACzD,KAAK,OAAO,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC;AAE9C,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC,SAAS,CAAC,CAAC;IAClC;;OAEG;IACH,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,CAAC,CAAC;IACpC;;OAEG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;IAI/B,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB,GAAG,IAAI,CAAC,SAAS,EAAE,QAAQ,GAAG,WAAW,CAAC,CAAC;AA0P5C,QAAA,MAAM,WAAW,+HA7Cd,QAAQ,6CA6CkB,CAAC;AAG9B,OAAO,EAAE,WAAW,IAAI,GAAG,EAAE,CAAC"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -44,21 +44,19 @@ export * from "./Banner";
|
|
|
44
44
|
export * from "./Box";
|
|
45
45
|
export * from "./Breadcrumbs";
|
|
46
46
|
export * from "./Button";
|
|
47
|
-
export * from "./Card";
|
|
48
47
|
export * from "./Callout";
|
|
48
|
+
export * from "./Card";
|
|
49
49
|
export * from "./Checkbox";
|
|
50
50
|
export * from "./CheckboxGroup";
|
|
51
51
|
export * from "./CircularProgress";
|
|
52
|
-
export * from "./ContrastModeProvider";
|
|
53
|
-
export * from "./CssBaseline";
|
|
54
|
-
export * from "./createShadowDomElements";
|
|
55
52
|
export * from "./createUniqueId";
|
|
53
|
+
export * from "./CssBaseline";
|
|
56
54
|
export * from "./DataTable";
|
|
57
55
|
export * from "./Dialog";
|
|
58
56
|
export * from "./Drawer";
|
|
59
57
|
export * from "./EmptyState";
|
|
60
|
-
export * from "./Fieldset";
|
|
61
58
|
export * from "./FieldComponentProps";
|
|
59
|
+
export * from "./Fieldset";
|
|
62
60
|
export { FileUploader, fileUploadTypes, fileUploadVariants, } from "./FileUploader";
|
|
63
61
|
export * from "./Form";
|
|
64
62
|
export * from "./HintLink";
|
|
@@ -72,6 +70,7 @@ export * from "./OdysseyCacheProvider";
|
|
|
72
70
|
export * from "./OdysseyProvider";
|
|
73
71
|
export * from "./OdysseyThemeProvider";
|
|
74
72
|
export * from "./OdysseyTranslationProvider";
|
|
73
|
+
export * from "./Pagination";
|
|
75
74
|
export * from "./PasswordField";
|
|
76
75
|
export * from "./Radio";
|
|
77
76
|
export * from "./RadioGroup";
|
|
@@ -81,6 +80,7 @@ export * from "./Select";
|
|
|
81
80
|
export * from "./Stack";
|
|
82
81
|
export * from "./Status";
|
|
83
82
|
export * from "./Surface";
|
|
83
|
+
export * from "./Switch";
|
|
84
84
|
export * from "./Tabs";
|
|
85
85
|
export * from "./Tag";
|
|
86
86
|
export * from "./TagList";
|
|
@@ -88,9 +88,8 @@ export * from "./TextField";
|
|
|
88
88
|
export * from "./theme";
|
|
89
89
|
export * from "./Toast";
|
|
90
90
|
export * from "./ToastStack";
|
|
91
|
-
export * from "./Switch";
|
|
92
91
|
export * from "./Tooltip";
|
|
93
92
|
export * from "./Typography";
|
|
94
93
|
export * from "./useUniqueId";
|
|
95
|
-
export * from "./
|
|
94
|
+
export * from "./web-component";
|
|
96
95
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEvD,OAAO,EACL,WAAW;AACX,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,OAAO;AACP,4FAA4F;AAC5F,cAAc;AACd,4FAA4F;AAC5F,SAAS;AACT,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,aAAa;AACb,4FAA4F;AAC5F,QAAQ;AACR,4FAA4F;AAC5F,KAAK;AACL,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,aAAa,GACd,MAAM,eAAe,CAAC;AAEvB,YAAY,EACV,gBAAgB,EAChB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,sBAAsB,EACtB,UAAU,EACV,YAAY,GACb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAChD,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEvD,OAAO,EACL,WAAW;AACX,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,OAAO;AACP,4FAA4F;AAC5F,cAAc;AACd,4FAA4F;AAC5F,SAAS;AACT,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,aAAa;AACb,4FAA4F;AAC5F,QAAQ;AACR,4FAA4F;AAC5F,KAAK;AACL,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,aAAa,GACd,MAAM,eAAe,CAAC;AAEvB,YAAY,EACV,gBAAgB,EAChB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,sBAAsB,EACtB,UAAU,EACV,YAAY,GACb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAChD,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,YAAY,CAAC;AAC3B,OAAO,EACL,YAAY,EACZ,eAAe,EACf,kBAAkB,GACnB,MAAM,gBAAgB,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC"}
|