@altinn/altinn-components 0.10.3 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/dist/assets/Breadcrumbs.css +1 -0
- package/dist/assets/BreadcrumbsLink.css +1 -0
- package/dist/assets/FieldBase.css +1 -0
- package/dist/assets/Flex.css +1 -0
- package/dist/assets/Grid.css +1 -0
- package/dist/assets/Heading.css +1 -1
- package/dist/assets/InputBase.css +1 -0
- package/dist/assets/ListItemBase.css +1 -1
- package/dist/assets/ListItemHeader.css +1 -1
- package/dist/assets/ListItemLabel.css +1 -1
- package/dist/assets/MenuItemMedia.css +1 -1
- package/dist/assets/QueryLabel.css +1 -1
- package/dist/assets/Section.css +1 -1
- package/dist/assets/Typography.css +1 -1
- package/dist/components/Autocomplete/AutocompleteItem.js +6 -6
- package/dist/components/Autocomplete/index.js +5 -1
- package/dist/components/Bookmarks/BookmarksListItem.js +66 -7
- package/dist/components/Bookmarks/BookmarksSection.js +36 -13
- package/dist/components/Bookmarks/QueryLabel.js +9 -9
- package/dist/components/Bookmarks/index.js +7 -9
- package/dist/components/Button/Button.js +16 -15
- package/dist/components/Button/IconButton.js +22 -10
- package/dist/components/Dialog/Dialog.js +2 -2
- package/dist/components/Dialog/DialogContent.js +6 -6
- package/dist/components/Dialog/DialogListGroup.js +7 -7
- package/dist/components/Dialog/DialogSection.js +1 -1
- package/dist/components/Dialog/DraftDialog.js +24 -24
- package/dist/components/Dropdown/DropdownBase.js +8 -7
- package/dist/components/Icon/iconsMap.js +16960 -739
- package/dist/components/List/ListItemBase.js +11 -11
- package/dist/components/List/ListItemControls.js +15 -15
- package/dist/components/List/ListItemHeader.js +49 -49
- package/dist/components/List/ListItemLabel.js +8 -8
- package/dist/components/Menu/MenuItemMedia.js +5 -5
- package/dist/components/Page/Article.js +4 -4
- package/dist/components/Page/Breadcrumbs.js +22 -0
- package/dist/components/Page/BreadcrumbsLink.js +28 -0
- package/dist/components/Page/Flex.js +42 -0
- package/dist/components/Page/Grid.js +34 -0
- package/dist/components/Page/PageHeader.js +10 -9
- package/dist/components/Page/PageNav.js +20 -17
- package/dist/components/Page/Section.js +11 -40
- package/dist/components/Page/index.js +18 -14
- package/dist/components/Searchbar/SearchField.js +38 -28
- package/dist/components/Searchbar/Searchbar.js +16 -12
- package/dist/components/TextField/FieldBase.js +16 -0
- package/dist/components/TextField/InputBase.js +33 -0
- package/dist/components/TextField/TextField.js +7 -0
- package/dist/components/TextField/index.js +8 -0
- package/dist/components/Typography/Heading.js +3 -3
- package/dist/components/Typography/Typography.js +8 -9
- package/dist/components/index.js +280 -268
- package/dist/footer-BI7NNFeL.js +27 -0
- package/dist/globalMenu-A9dXKjrI.js +80 -0
- package/dist/header-B7oMg4iq.js +11 -0
- package/dist/inboxMenu-DXIoTtPz.js +48 -0
- package/dist/index.js +284 -272
- package/dist/types/lib/components/Autocomplete/index.d.ts +3 -0
- package/dist/types/lib/components/Bookmarks/BookmarksListItem.d.ts +24 -0
- package/dist/{lib → types/lib}/components/Bookmarks/BookmarksListItem.stories.d.ts +2 -3
- package/dist/types/lib/components/Bookmarks/BookmarksSection.d.ts +14 -0
- package/dist/types/lib/components/Bookmarks/BookmarksSection.stories.d.ts +52 -0
- package/dist/{lib → types/lib}/components/Bookmarks/index.d.ts +0 -1
- package/dist/{lib → types/lib}/components/Button/Button.d.ts +2 -1
- package/dist/{lib → types/lib}/components/Button/Button.stories.d.ts +1 -1
- package/dist/{lib → types/lib}/components/Button/IconButton.d.ts +2 -1
- package/dist/{lib → types/lib}/components/Button/IconButton.stories.d.ts +1 -1
- package/dist/{lib → types/lib}/components/Layout/LayoutBase.d.ts +1 -1
- package/dist/{lib → types/lib}/components/List/ListItemControls.d.ts +2 -1
- package/dist/{lib → types/lib}/components/List/ListItemHeader.d.ts +2 -2
- package/dist/{lib → types/lib}/components/Menu/MenuItemBase.d.ts +1 -1
- package/dist/{lib → types/lib}/components/Page/Article.d.ts +1 -1
- package/dist/types/lib/components/Page/Breadcrumbs.d.ts +5 -0
- package/dist/types/lib/components/Page/BreadcrumbsLink.d.ts +11 -0
- package/dist/{lib/components/Page/PageBase.stories.d.ts → types/lib/components/Page/Examples.stories.d.ts} +2 -1
- package/dist/types/lib/components/Page/Flex.d.ts +29 -0
- package/dist/types/lib/components/Page/Grid.d.ts +22 -0
- package/dist/types/lib/components/Page/PageNav.d.ts +16 -0
- package/dist/{lib → types/lib}/components/Page/PageNav.stories.d.ts +2 -1
- package/dist/types/lib/components/Page/Section.d.ts +9 -0
- package/dist/{lib → types/lib}/components/Page/index.d.ts +4 -2
- package/dist/{lib → types/lib}/components/Searchbar/Searchbar.stories.d.ts +6 -1
- package/dist/types/lib/components/TextField/FieldBase.d.ts +11 -0
- package/dist/types/lib/components/TextField/InputBase.d.ts +14 -0
- package/dist/types/lib/components/TextField/TextField.d.ts +7 -0
- package/dist/types/lib/components/TextField/index.d.ts +3 -0
- package/dist/{lib → types/lib}/components/Typography/Heading.d.ts +2 -2
- package/dist/{lib → types/lib}/components/Typography/Typography.d.ts +1 -1
- package/dist/{lib → types/lib}/components/index.d.ts +1 -0
- package/dist/{useAccountMenu-ImwZYwks.js → useAccountMenu-DgXhBMw4.js} +19 -27
- package/package.json +8 -3
- package/dist/ZoomPlusFill-xyiiemTy.js +0 -17126
- package/dist/assets/ListItemMenu.css +0 -1
- package/dist/assets/SectionFooter.css +0 -1
- package/dist/components/Bookmarks/BookmarksList.js +0 -12
- package/dist/components/Icon/__AkselIcon.js +0 -1042
- package/dist/components/List/ListItemMenu.js +0 -8
- package/dist/components/Page/SectionFooter.js +0 -8
- package/dist/components/Page/SectionHeader.js +0 -12
- package/dist/lib/components/Autocomplete/index.d.ts +0 -1
- package/dist/lib/components/Bookmarks/BookmarksList.d.ts +0 -5
- package/dist/lib/components/Bookmarks/BookmarksList.stories.d.ts +0 -34
- package/dist/lib/components/Bookmarks/BookmarksListItem.d.ts +0 -10
- package/dist/lib/components/Bookmarks/BookmarksSection.d.ts +0 -7
- package/dist/lib/components/Bookmarks/BookmarksSection.stories.d.ts +0 -36
- package/dist/lib/components/List/ListItemMenu.d.ts +0 -8
- package/dist/lib/components/Page/PageNav.d.ts +0 -13
- package/dist/lib/components/Page/Section.d.ts +0 -29
- package/dist/lib/components/Page/SectionFooter.d.ts +0 -6
- package/dist/lib/components/Page/SectionHeader.d.ts +0 -6
- /package/dist/{lib → types/lib}/components/AccessAreaList/AccessAreaList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessAreaList/AccessAreaListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessAreaList/AccessAreaListItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessAreaList/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessPackageList/AccessPackageList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessPackageList/AccessPackageList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessPackageList/AccessPackageListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/AccessPackageList/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Attachment/AttachmentLink.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Attachment/AttachmentLink.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Attachment/AttachmentList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Attachment/AttachmentList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Attachment/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/Autocomplete.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/Autocomplete.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/AutocompleteBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/AutocompleteGroup.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/AutocompleteItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Autocomplete/ScopeListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/Avatar.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/AvatarGroup.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/AvatarGroup.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/avatar.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/color.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Avatar/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Badge/Badge.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Badge/Badge.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Badge/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Bookmarks/QueryLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/ButtonBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/ButtonIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/ButtonLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/Buttons.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/ComboButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/ComboButton.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Button/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Byline/Byline.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Byline/Byline.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Byline/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ContextMenu/ContextMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ContextMenu/ContextMenu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ContextMenu/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/Datepicker.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/DatepickerBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/DatepickerHeader.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/DatepickerTable.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Datepicker/useDatepicker.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/Dialog.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/Dialog.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogActions.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogActions.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogActivityLog.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogAttachments.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogAttachments.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogByline.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogBylline.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogContent.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogContent.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogDescription.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogHeading.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogHistory.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogHistory.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogHistoryDetails.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogHistoryItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogListGroup.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogListItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogMetadata.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogMetadata.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogSection.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogSeenBy.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogSeenBy.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogSelect.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogStatus.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogStatus.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTimeline.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTimelineItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTouchedBy.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTouchedBy.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTransmissions.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DialogTransmissions.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DraftDialog.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/DraftDialog.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dialog/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/Backdrop.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerBody.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerFooter.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerHeader.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DrawerOrDropdown.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/DropdownBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Dropdown/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/Footer.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/Footer.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/FooterAddress.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/FooterBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/FooterLogo.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/FooterMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Footer/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/AccountButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/AccountMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/AccountMenu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/BackButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/GlobalMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/GlobalMenu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/GlobalMenuBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/LogoutButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/GlobalMenu/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/DigdirLogomark.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/Header.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/Header.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderButton.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderLogo.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderLogo.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/HeaderSearch.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Header/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/CheckboxCheckedIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/CheckboxIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/CheckboxIcon.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/CheckboxUncheckedIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/Icon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/Icon.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/ProgressIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/ProgressIcon.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/RadioCheckedIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/RadioIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/RadioIcon.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/RadioUncheckedIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/SvgIcon.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/iconsMap.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Icon/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/Layout.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/Layout.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutBase.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutBody.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutBody.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutContent.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutContent.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutSidebar.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/LayoutSidebar.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Layout/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionFooter.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionFooter.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionHeader.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionHeader.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/ActionMenu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/LayoutAction/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/List.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/List.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemHeader.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemLink.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemMedia.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/ListItemSelect.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/List/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/Menu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/Menu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuHeader.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuInputField.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItemLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItemMedia.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItems.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuItems.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuOption.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuOption.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuSearch.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/MenuSearch.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Menu/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaItemBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaItemLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaItemMedia.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaProgress.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaProgress.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaTimestamp.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/MetaTimestamp.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Meta/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Page/PageBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Page/PageHeader.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Page/PageHeader.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ResourceList/ResourceList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ResourceList/ResourceList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ResourceList/ResourceListItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ResourceList/ResourceListItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/ResourceList/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/RootProvider/RootProvider.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/RootProvider/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Searchbar/SearchField.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Searchbar/Searchbar.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Searchbar/SearchbarBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Searchbar/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Skeleton/Skeleton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Skeleton/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/Snackbar.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/Snackbar.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/SnackbarBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/SnackbarLabel.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/SnackbarMedia.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Snackbar/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Timeline/Timeline.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Timeline/Timeline.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Timeline/TimelineBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Timeline/TimelineSection.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Timeline/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/Toolbar.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/Toolbar.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarAccountMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarAdd.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarAdd.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarButton.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarButton.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarDate.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarDaterange.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarDaterange.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarFilter.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarFilter.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarFilterBase.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarMenu.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarOptions.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarOptions.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarSearch.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/ToolbarSearch.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Toolbar/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/TransmissionItem.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/TransmissionItem.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/TransmissionList.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/TransmissionList.stories.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/TransmissionType.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Transmission/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/components/Typography/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks/index.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks/useClickOutside.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks/useEnterKey.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks/useEscapeKey.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks/useMenu.d.ts +0 -0
- /package/dist/{lib → types/lib}/index.d.ts +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
-
import '../../assets/ListItemBase.css';const p = "
|
|
2
|
+
import '../../assets/ListItemBase.css';const p = "_item_7qmbp_1", x = {
|
|
3
3
|
item: p
|
|
4
|
-
},
|
|
4
|
+
}, _ = ({
|
|
5
5
|
size: e,
|
|
6
6
|
variant: t = "solid",
|
|
7
7
|
color: a = "neutral",
|
|
8
8
|
shadow: s = "xs",
|
|
9
9
|
loading: i,
|
|
10
|
-
disabled:
|
|
11
|
-
hidden:
|
|
10
|
+
disabled: d,
|
|
11
|
+
hidden: r = !1,
|
|
12
12
|
active: n = !1,
|
|
13
13
|
selected: l,
|
|
14
|
-
expanded:
|
|
15
|
-
children:
|
|
14
|
+
expanded: m,
|
|
15
|
+
children: o
|
|
16
16
|
}) => /* @__PURE__ */ c(
|
|
17
17
|
"article",
|
|
18
18
|
{
|
|
@@ -22,13 +22,13 @@ import '../../assets/ListItemBase.css';const p = "_item_1grve_1", x = {
|
|
|
22
22
|
"data-size": e,
|
|
23
23
|
"data-shadow": a === "transparent" ? "none" : s,
|
|
24
24
|
"data-active": n,
|
|
25
|
-
"aria-hidden":
|
|
26
|
-
"aria-disabled":
|
|
25
|
+
"aria-hidden": r,
|
|
26
|
+
"aria-disabled": d || i,
|
|
27
27
|
"aria-selected": l,
|
|
28
|
-
"aria-expanded":
|
|
29
|
-
children:
|
|
28
|
+
"aria-expanded": m,
|
|
29
|
+
children: o
|
|
30
30
|
}
|
|
31
31
|
);
|
|
32
32
|
export {
|
|
33
|
-
|
|
33
|
+
_ as ListItemBase
|
|
34
34
|
};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { jsx as o, jsxs as e, Fragment as i } from "react/jsx-runtime";
|
|
2
|
+
import { c as a } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import { Badge as _ } from "../Badge/Badge.js";
|
|
4
|
+
import { ContextMenu as p } from "../ContextMenu/ContextMenu.js";
|
|
5
|
+
import { Icon as x } from "../Icon/Icon.js";
|
|
5
6
|
import "../Icon/SvgIcon.js";
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
c && /* @__PURE__ */
|
|
14
|
-
r && /* @__PURE__ */
|
|
15
|
-
t && /* @__PURE__ */ n(a, { ...t, className: o.menu })
|
|
7
|
+
import '../../assets/ListItemControls.css';const k = "_controls_n31lc_1", f = "_linkText_n31lc_11", I = "_linkIcon_n31lc_16", n = {
|
|
8
|
+
controls: k,
|
|
9
|
+
linkText: f,
|
|
10
|
+
linkIcon: I
|
|
11
|
+
}, C = ({ className: m, badge: s, linkText: t, linkIcon: c, menu: r, children: l }) => /* @__PURE__ */ o("div", { className: a(n.controls, m), children: l || /* @__PURE__ */ e(i, { children: [
|
|
12
|
+
s && /* @__PURE__ */ o(_, { ...s }),
|
|
13
|
+
t && /* @__PURE__ */ o("span", { className: n.linkText, children: t }),
|
|
14
|
+
c && /* @__PURE__ */ o(x, { name: c, className: n.linkIcon }),
|
|
15
|
+
r && /* @__PURE__ */ o(p, { ...r, size: "sm", className: n.menu })
|
|
16
16
|
] }) });
|
|
17
17
|
export {
|
|
18
|
-
|
|
18
|
+
C as ListItemControls
|
|
19
19
|
};
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { c as
|
|
3
|
-
import { ListItemControls as
|
|
4
|
-
import { ListItemLabel as
|
|
1
|
+
import { jsxs as c, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { c as H } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import { ListItemControls as i } from "./ListItemControls.js";
|
|
4
|
+
import { ListItemLabel as M } from "./ListItemLabel.js";
|
|
5
5
|
import { ListItemLink as S } from "./ListItemLink.js";
|
|
6
6
|
import { ListItemMedia as q } from "./ListItemMedia.js";
|
|
7
|
-
import {
|
|
8
|
-
import
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
as:
|
|
14
|
-
loading:
|
|
15
|
-
disabled:
|
|
16
|
-
select:
|
|
17
|
-
href:
|
|
18
|
-
onClick:
|
|
19
|
-
onKeyPress:
|
|
20
|
-
tabIndex:
|
|
7
|
+
import { ListItemSelect as A } from "./ListItemSelect.js";
|
|
8
|
+
import '../../assets/ListItemHeader.css';const B = "_header_10vuh_1", D = "_link_10vuh_8", E = "_controls_10vuh_42", e = {
|
|
9
|
+
header: B,
|
|
10
|
+
link: D,
|
|
11
|
+
controls: E
|
|
12
|
+
}, R = ({
|
|
13
|
+
as: a,
|
|
14
|
+
loading: o,
|
|
15
|
+
disabled: l,
|
|
16
|
+
select: s,
|
|
17
|
+
href: h,
|
|
18
|
+
onClick: d,
|
|
19
|
+
onKeyPress: p,
|
|
20
|
+
tabIndex: L,
|
|
21
21
|
collapsible: m,
|
|
22
|
-
expanded:
|
|
23
|
-
size:
|
|
24
|
-
title:
|
|
22
|
+
expanded: n,
|
|
23
|
+
size: r = "sm",
|
|
24
|
+
title: _,
|
|
25
25
|
description: I,
|
|
26
|
-
icon:
|
|
27
|
-
avatar:
|
|
28
|
-
avatarGroup:
|
|
29
|
-
linkIcon:
|
|
30
|
-
linkText:
|
|
31
|
-
badge:
|
|
32
|
-
menu:
|
|
33
|
-
controls:
|
|
34
|
-
className:
|
|
35
|
-
children:
|
|
26
|
+
icon: f,
|
|
27
|
+
avatar: k,
|
|
28
|
+
avatarGroup: u,
|
|
29
|
+
linkIcon: v,
|
|
30
|
+
linkText: x,
|
|
31
|
+
badge: N,
|
|
32
|
+
menu: b,
|
|
33
|
+
controls: j,
|
|
34
|
+
className: w,
|
|
35
|
+
children: y
|
|
36
36
|
}) => {
|
|
37
|
-
const
|
|
38
|
-
return /* @__PURE__ */
|
|
39
|
-
|
|
40
|
-
/* @__PURE__ */
|
|
37
|
+
const C = m && n ? "chevron-up" : m ? "chevron-down" : v;
|
|
38
|
+
return /* @__PURE__ */ c("header", { className: e.header, "data-size": r, "aria-expanded": n, children: [
|
|
39
|
+
s && /* @__PURE__ */ t(A, { ...s, size: r }),
|
|
40
|
+
/* @__PURE__ */ c(
|
|
41
41
|
S,
|
|
42
42
|
{
|
|
43
|
-
className:
|
|
44
|
-
as:
|
|
45
|
-
href:
|
|
46
|
-
onClick:
|
|
47
|
-
onKeyPress:
|
|
48
|
-
tabIndex:
|
|
49
|
-
loading:
|
|
50
|
-
disabled:
|
|
51
|
-
size:
|
|
43
|
+
className: H(e.link, w),
|
|
44
|
+
as: a,
|
|
45
|
+
href: h,
|
|
46
|
+
onClick: d,
|
|
47
|
+
onKeyPress: p,
|
|
48
|
+
tabIndex: L,
|
|
49
|
+
loading: o,
|
|
50
|
+
disabled: l || o,
|
|
51
|
+
size: r,
|
|
52
52
|
children: [
|
|
53
|
-
/* @__PURE__ */
|
|
54
|
-
/* @__PURE__ */
|
|
55
|
-
/* @__PURE__ */
|
|
53
|
+
/* @__PURE__ */ t(q, { loading: o, size: r, icon: f, avatar: k, avatarGroup: u }),
|
|
54
|
+
/* @__PURE__ */ t(M, { loading: o, size: r, title: _, description: I, children: y }),
|
|
55
|
+
/* @__PURE__ */ t(i, { linkIcon: C, linkText: x, badge: N })
|
|
56
56
|
]
|
|
57
57
|
}
|
|
58
58
|
),
|
|
59
|
-
|
|
59
|
+
/* @__PURE__ */ t(i, { className: e.controls, menu: b, children: j })
|
|
60
60
|
] });
|
|
61
61
|
};
|
|
62
62
|
export {
|
|
63
|
-
|
|
63
|
+
R as ListItemHeader
|
|
64
64
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import { Skeleton as
|
|
3
|
-
import '../../assets/ListItemLabel.css';const
|
|
4
|
-
label:
|
|
5
|
-
title:
|
|
1
|
+
import { jsx as e, jsxs as n, Fragment as o } from "react/jsx-runtime";
|
|
2
|
+
import { Skeleton as r } from "../Skeleton/Skeleton.js";
|
|
3
|
+
import '../../assets/ListItemLabel.css';const m = "_label_eum9r_3", d = "_title_eum9r_41", p = "_description_eum9r_49", s = {
|
|
4
|
+
label: m,
|
|
5
|
+
title: d,
|
|
6
6
|
description: p
|
|
7
|
-
}, b = ({ loading:
|
|
8
|
-
/* @__PURE__ */ e("h2", { className: s.title, "data-size": t, children: /* @__PURE__ */ e(
|
|
7
|
+
}, b = ({ loading: l = !1, size: t = "sm", title: a, description: c, children: i }) => /* @__PURE__ */ e("span", { className: s.label, "data-size": t, children: i || /* @__PURE__ */ n(o, { children: [
|
|
8
|
+
/* @__PURE__ */ e("h2", { className: s.title, "data-size": t, children: /* @__PURE__ */ e(r, { loading: l, children: a }) }),
|
|
9
9
|
" ",
|
|
10
|
-
/* @__PURE__ */ e("p", { className: s.description, "data-size": t, children: /* @__PURE__ */ e(
|
|
10
|
+
/* @__PURE__ */ e("p", { className: s.description, "data-size": t, children: /* @__PURE__ */ e(r, { loading: l, children: c }) })
|
|
11
11
|
] }) });
|
|
12
12
|
export {
|
|
13
13
|
b as ListItemLabel
|
|
@@ -4,9 +4,9 @@ import { AvatarGroup as c } from "../Avatar/AvatarGroup.js";
|
|
|
4
4
|
import { Icon as x } from "../Icon/Icon.js";
|
|
5
5
|
import "../Icon/SvgIcon.js";
|
|
6
6
|
import "../../index-L8X2o7IH.js";
|
|
7
|
-
import '../../assets/MenuItemMedia.css';const f = "
|
|
7
|
+
import '../../assets/MenuItemMedia.css';const f = "_media_1kkjg_1", g = "_icon_1kkjg_21", e = {
|
|
8
8
|
media: f,
|
|
9
|
-
icon:
|
|
9
|
+
icon: g
|
|
10
10
|
}, m = {
|
|
11
11
|
avatar: {
|
|
12
12
|
xs: "xs",
|
|
@@ -20,9 +20,9 @@ import '../../assets/MenuItemMedia.css';const f = "_media_1n26h_1", u = "_icon_1
|
|
|
20
20
|
md: "sm",
|
|
21
21
|
lg: "md"
|
|
22
22
|
}
|
|
23
|
-
}, A = ({ size: t = "sm", color:
|
|
24
|
-
s && /* @__PURE__ */ a(x, { name: s, variant:
|
|
25
|
-
|
|
23
|
+
}, A = ({ size: t = "sm", color: i, icon: s, avatar: o, avatarGroup: r, children: n }) => !s && !o && !r && !n ? !1 : /* @__PURE__ */ d("div", { className: e.media, "data-size": t, "data-color": s ? i : null, children: [
|
|
24
|
+
s && /* @__PURE__ */ a(x, { name: s, variant: i === "strong" ? "solid" : "outline", className: e.icon }) || o && /* @__PURE__ */ a(l, { ...o, size: m == null ? void 0 : m.avatar[t] }) || r && /* @__PURE__ */ a(c, { ...r, size: m == null ? void 0 : m.avatarGroup[t] }),
|
|
25
|
+
n
|
|
26
26
|
] });
|
|
27
27
|
export {
|
|
28
28
|
A as MenuItemMedia
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Section as
|
|
3
|
-
const
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { Section as e } from "./Section.js";
|
|
3
|
+
const m = ({ children: r, ...t }) => /* @__PURE__ */ o(e, { as: "article", ...t, children: r });
|
|
4
4
|
export {
|
|
5
|
-
|
|
5
|
+
m as Article
|
|
6
6
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as r, jsxs as m } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as e } from "../Icon/Icon.js";
|
|
3
|
+
import "../Icon/SvgIcon.js";
|
|
4
|
+
import "../../index-L8X2o7IH.js";
|
|
5
|
+
import "react";
|
|
6
|
+
import "../Autocomplete/AutocompleteBase.js";
|
|
7
|
+
import "../RootProvider/RootProvider.js";
|
|
8
|
+
import { BreadcrumbsLink as n } from "./BreadcrumbsLink.js";
|
|
9
|
+
import '../../assets/Breadcrumbs.css';const a = "_list_8q7kr_1", p = "_item_8q7kr_12", _ = "_icon_8q7kr_18", i = {
|
|
10
|
+
list: a,
|
|
11
|
+
item: p,
|
|
12
|
+
icon: _
|
|
13
|
+
}, g = ({ items: t = [] }) => /* @__PURE__ */ r("ul", { className: i.list, children: t.map((l, o) => {
|
|
14
|
+
const { label: s, ...c } = l;
|
|
15
|
+
return (t == null ? void 0 : t.length) > o + 1 ? /* @__PURE__ */ m("li", { className: i.item, children: [
|
|
16
|
+
/* @__PURE__ */ r(n, { ...c, children: s }),
|
|
17
|
+
/* @__PURE__ */ r(e, { name: "arrow-right", className: i.icon })
|
|
18
|
+
] }, o) : /* @__PURE__ */ r("li", { className: i.item, children: /* @__PURE__ */ r(n, { ...c, as: "span", children: s }) }, o);
|
|
19
|
+
}) });
|
|
20
|
+
export {
|
|
21
|
+
g as Breadcrumbs
|
|
22
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { c as l } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import '../../assets/BreadcrumbsLink.css';const m = "_link_znbj7_1", k = {
|
|
4
|
+
link: m
|
|
5
|
+
}, x = ({
|
|
6
|
+
as: o,
|
|
7
|
+
className: s,
|
|
8
|
+
disabled: n = !1,
|
|
9
|
+
selected: e,
|
|
10
|
+
tabIndex: r = 0,
|
|
11
|
+
label: t,
|
|
12
|
+
children: a,
|
|
13
|
+
...c
|
|
14
|
+
}) => /* @__PURE__ */ i(
|
|
15
|
+
o || "a",
|
|
16
|
+
{
|
|
17
|
+
tabIndex: r,
|
|
18
|
+
"aria-selected": e,
|
|
19
|
+
"aria-disabled": n,
|
|
20
|
+
disabled: n,
|
|
21
|
+
className: l(k.link, s),
|
|
22
|
+
...c,
|
|
23
|
+
children: a || t
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
export {
|
|
27
|
+
x as BreadcrumbsLink
|
|
28
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { jsx as g } from "react/jsx-runtime";
|
|
2
|
+
import { c as _ } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import '../../assets/Flex.css';const h = "_flex_18d8p_1", j = {
|
|
4
|
+
flex: h
|
|
5
|
+
}, C = ({
|
|
6
|
+
as: a = "div",
|
|
7
|
+
theme: t = "inherit",
|
|
8
|
+
color: n = "transparent",
|
|
9
|
+
direction: e = "col",
|
|
10
|
+
reverse: o = !1,
|
|
11
|
+
align: i = "initial",
|
|
12
|
+
justify: s = "initial",
|
|
13
|
+
spacing: d = "none",
|
|
14
|
+
padding: r = "none",
|
|
15
|
+
margin: l = "none",
|
|
16
|
+
inset: c = !1,
|
|
17
|
+
className: f,
|
|
18
|
+
style: m,
|
|
19
|
+
children: p,
|
|
20
|
+
...x
|
|
21
|
+
}) => /* @__PURE__ */ g(
|
|
22
|
+
a,
|
|
23
|
+
{
|
|
24
|
+
className: _(j.flex, f),
|
|
25
|
+
style: m,
|
|
26
|
+
"data-theme": t,
|
|
27
|
+
"data-color": n,
|
|
28
|
+
"data-direction": e,
|
|
29
|
+
"data-reverse": o,
|
|
30
|
+
"data-align": i,
|
|
31
|
+
"data-justify": s,
|
|
32
|
+
"data-spacing": d,
|
|
33
|
+
"data-padding": r,
|
|
34
|
+
"data-margin": l,
|
|
35
|
+
"data-inset": c,
|
|
36
|
+
...x,
|
|
37
|
+
children: p
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
export {
|
|
41
|
+
C as Flex
|
|
42
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import { c as g } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import '../../assets/Grid.css';const l = "_grid_o95ym_1", f = {
|
|
4
|
+
grid: l
|
|
5
|
+
}, v = ({
|
|
6
|
+
as: a = "div",
|
|
7
|
+
theme: t = "inherit",
|
|
8
|
+
color: n = "transparent",
|
|
9
|
+
cols: o = "1-2-3",
|
|
10
|
+
reverse: r = !1,
|
|
11
|
+
spacing: e = "none",
|
|
12
|
+
padding: d = "none",
|
|
13
|
+
margin: s = "none",
|
|
14
|
+
className: i,
|
|
15
|
+
style: c,
|
|
16
|
+
children: m
|
|
17
|
+
}) => /* @__PURE__ */ p(
|
|
18
|
+
a,
|
|
19
|
+
{
|
|
20
|
+
className: g(f.grid, i),
|
|
21
|
+
style: c,
|
|
22
|
+
"data-theme": t,
|
|
23
|
+
"data-color": n,
|
|
24
|
+
"data-cols": o,
|
|
25
|
+
"data-reverse": r,
|
|
26
|
+
"data-spacing": e,
|
|
27
|
+
"data-padding": d,
|
|
28
|
+
"data-margin": s,
|
|
29
|
+
children: m
|
|
30
|
+
}
|
|
31
|
+
);
|
|
32
|
+
export {
|
|
33
|
+
v as Grid
|
|
34
|
+
};
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import { jsxs as r, jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import "../../index-L8X2o7IH.js";
|
|
3
3
|
import "../Icon/SvgIcon.js";
|
|
4
|
-
import { Heading as
|
|
4
|
+
import { Heading as d } from "../Typography/Heading.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import "../Autocomplete/AutocompleteBase.js";
|
|
7
7
|
import "../RootProvider/RootProvider.js";
|
|
8
|
-
import { ListItemMedia as
|
|
9
|
-
import { Section as
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/* @__PURE__ */ i(
|
|
8
|
+
import { ListItemMedia as s } from "../List/ListItemMedia.js";
|
|
9
|
+
import { Section as a } from "./Section.js";
|
|
10
|
+
import { Flex as c } from "./Flex.js";
|
|
11
|
+
const F = ({ title: e, icon: o, avatar: m, avatarGroup: t, children: p, ...n }) => /* @__PURE__ */ r(a, { as: "header", spacing: "md", ...n, children: [
|
|
12
|
+
/* @__PURE__ */ r(c, { direction: "row", align: "center", spacing: "md", children: [
|
|
13
|
+
/* @__PURE__ */ i(s, { avatar: m, avatarGroup: t, icon: o, size: "lg" }),
|
|
14
|
+
/* @__PURE__ */ i(d, { size: "xl", children: e })
|
|
14
15
|
] }),
|
|
15
|
-
|
|
16
|
+
p
|
|
16
17
|
] });
|
|
17
18
|
export {
|
|
18
|
-
|
|
19
|
+
F as PageHeader
|
|
19
20
|
};
|
|
@@ -1,30 +1,33 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as t, jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import "../../index-L8X2o7IH.js";
|
|
3
3
|
import "../Icon/SvgIcon.js";
|
|
4
4
|
import "react";
|
|
5
5
|
import "../Autocomplete/AutocompleteBase.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as m } from "../Button/Button.js";
|
|
7
7
|
import "../RootProvider/RootProvider.js";
|
|
8
|
-
import { ContextMenu as
|
|
9
|
-
import {
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
import { ContextMenu as a } from "../ContextMenu/ContextMenu.js";
|
|
9
|
+
import { Flex as c } from "./Flex.js";
|
|
10
|
+
import { Breadcrumbs as p } from "./Breadcrumbs.js";
|
|
11
|
+
import '../../assets/PageNav.css';const f = "_nav_9bu1z_1", v = "_controls_9bu1z_7", d = {
|
|
12
|
+
nav: f,
|
|
13
|
+
controls: v
|
|
14
|
+
}, F = ({
|
|
15
|
+
padding: i = "none",
|
|
16
|
+
margin: s = "none",
|
|
17
|
+
breadcrumbs: e,
|
|
15
18
|
backButton: o = {
|
|
16
19
|
as: "a",
|
|
17
20
|
label: "Back"
|
|
18
21
|
},
|
|
19
|
-
menu:
|
|
20
|
-
children:
|
|
21
|
-
}) => /* @__PURE__ */
|
|
22
|
-
/* @__PURE__ */
|
|
23
|
-
/* @__PURE__ */
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
menu: n,
|
|
23
|
+
children: l
|
|
24
|
+
}) => /* @__PURE__ */ t(c, { as: "nav", direction: "row", align: "center", justify: "between", padding: i, margin: s, children: [
|
|
25
|
+
e ? /* @__PURE__ */ r(p, { items: e }) : /* @__PURE__ */ r(m, { ...o, variant: "text", color: "secondary", icon: "arrow-left", children: (o == null ? void 0 : o.label) || "Back" }),
|
|
26
|
+
/* @__PURE__ */ t("div", { className: d.controls, children: [
|
|
27
|
+
l,
|
|
28
|
+
n && /* @__PURE__ */ r(a, { ...n })
|
|
26
29
|
] })
|
|
27
30
|
] });
|
|
28
31
|
export {
|
|
29
|
-
|
|
32
|
+
F as PageNav
|
|
30
33
|
};
|
|
@@ -1,42 +1,13 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { c as
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
align: s = "initial",
|
|
12
|
-
justify: i = "initial",
|
|
13
|
-
padding: c = "none",
|
|
14
|
-
spacing: d = "none",
|
|
15
|
-
margin: r = "none",
|
|
16
|
-
shadow: l = "none",
|
|
17
|
-
inset: m = !1,
|
|
18
|
-
className: p,
|
|
19
|
-
style: f,
|
|
20
|
-
children: g
|
|
21
|
-
}) => /* @__PURE__ */ x(
|
|
22
|
-
a,
|
|
23
|
-
{
|
|
24
|
-
className: h(j.section, p),
|
|
25
|
-
style: f,
|
|
26
|
-
"data-flex": e,
|
|
27
|
-
"data-reverse": o,
|
|
28
|
-
"data-align": s,
|
|
29
|
-
"data-justify": i,
|
|
30
|
-
"data-theme": t,
|
|
31
|
-
"data-color": n,
|
|
32
|
-
"data-inset": m,
|
|
33
|
-
"data-padding": c,
|
|
34
|
-
"data-spacing": d,
|
|
35
|
-
"data-margin": r,
|
|
36
|
-
"data-shadow": l,
|
|
37
|
-
children: g
|
|
38
|
-
}
|
|
39
|
-
);
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { c as m } from "../../index-L8X2o7IH.js";
|
|
3
|
+
import "../Icon/SvgIcon.js";
|
|
4
|
+
import "react";
|
|
5
|
+
import "../Autocomplete/AutocompleteBase.js";
|
|
6
|
+
import "../RootProvider/RootProvider.js";
|
|
7
|
+
import { Flex as n } from "./Flex.js";
|
|
8
|
+
import '../../assets/Section.css';const a = "_section_167jj_1", p = {
|
|
9
|
+
section: a
|
|
10
|
+
}, g = ({ as: o = "section", className: t, bg: s, shadow: i, children: r, ...c }) => /* @__PURE__ */ e(n, { as: o, "data-bg": s, "data-shadow": i, className: m(p.section, t), ...c, children: r });
|
|
40
11
|
export {
|
|
41
|
-
|
|
12
|
+
g as Section
|
|
42
13
|
};
|
|
@@ -1,16 +1,20 @@
|
|
|
1
|
-
import { PageBase as
|
|
2
|
-
import { PageNav as
|
|
3
|
-
import { PageHeader as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { PageBase as o } from "./PageBase.js";
|
|
2
|
+
import { PageNav as t } from "./PageNav.js";
|
|
3
|
+
import { PageHeader as f } from "./PageHeader.js";
|
|
4
|
+
import { Article as a } from "./Article.js";
|
|
5
|
+
import { Section as d } from "./Section.js";
|
|
6
|
+
import { Flex as g } from "./Flex.js";
|
|
7
|
+
import { Grid as B } from "./Grid.js";
|
|
8
|
+
import { Breadcrumbs as b } from "./Breadcrumbs.js";
|
|
9
|
+
import { BreadcrumbsLink as n } from "./BreadcrumbsLink.js";
|
|
8
10
|
export {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
a as Article,
|
|
12
|
+
b as Breadcrumbs,
|
|
13
|
+
n as BreadcrumbsLink,
|
|
14
|
+
g as Flex,
|
|
15
|
+
B as Grid,
|
|
16
|
+
o as PageBase,
|
|
17
|
+
f as PageHeader,
|
|
18
|
+
t as PageNav,
|
|
19
|
+
d as Section
|
|
16
20
|
};
|