@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,8 +0,0 @@
|
|
|
1
|
-
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
-
import { ContextMenu as n } from "../ContextMenu/ContextMenu.js";
|
|
3
|
-
import '../../assets/ListItemMenu.css';const s = "_menu_1u5v2_1", o = {
|
|
4
|
-
menu: s
|
|
5
|
-
}, i = ({ id: e = "list-item-menu", ...t }) => /* @__PURE__ */ m(n, { ...t, id: e, placement: "right", className: o.menu });
|
|
6
|
-
export {
|
|
7
|
-
i as ListItemMenu
|
|
8
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import '../../assets/SectionFooter.css';const r = "_footer_7dw8g_1", s = "_header_7dw8g_6", a = {
|
|
3
|
-
footer: r,
|
|
4
|
-
header: s
|
|
5
|
-
}, n = ({ margin: o = !1, children: e }) => /* @__PURE__ */ t("footer", { "data-margin": o, className: a.footer, children: e });
|
|
6
|
-
export {
|
|
7
|
-
n as SectionFooter
|
|
8
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
-
import { Section as i } from "./Section.js";
|
|
3
|
-
const p = ({
|
|
4
|
-
flex: e = "row",
|
|
5
|
-
align: r = "center",
|
|
6
|
-
justify: o = "between",
|
|
7
|
-
children: t,
|
|
8
|
-
...n
|
|
9
|
-
}) => /* @__PURE__ */ c(i, { as: "header", flex: e, align: r, justify: o, ...n, children: t });
|
|
10
|
-
export {
|
|
11
|
-
p as SectionHeader
|
|
12
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Autocomplete';
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react';
|
|
2
|
-
declare const meta: {
|
|
3
|
-
title: string;
|
|
4
|
-
component: ({ items }: import('./BookmarksList').BookmarksListProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
tags: string[];
|
|
6
|
-
parameters: {};
|
|
7
|
-
args: {
|
|
8
|
-
items: ({
|
|
9
|
-
id: string;
|
|
10
|
-
title: string;
|
|
11
|
-
params: ({
|
|
12
|
-
type: "search";
|
|
13
|
-
label: string;
|
|
14
|
-
} | {
|
|
15
|
-
type: "filter";
|
|
16
|
-
label: string;
|
|
17
|
-
})[];
|
|
18
|
-
} | {
|
|
19
|
-
id: string;
|
|
20
|
-
params: ({
|
|
21
|
-
type: "search";
|
|
22
|
-
label: string;
|
|
23
|
-
} | {
|
|
24
|
-
type: "filter";
|
|
25
|
-
label: string;
|
|
26
|
-
})[];
|
|
27
|
-
title?: undefined;
|
|
28
|
-
})[];
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
export default meta;
|
|
32
|
-
type Story = StoryObj<typeof meta>;
|
|
33
|
-
export declare const Default: Story;
|
|
34
|
-
export declare const WithContextMenu: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ListItemInputProps } from '..';
|
|
2
|
-
import { QueryItemProps } from './QueryLabel';
|
|
3
|
-
export interface BookmarksListItemProps extends ListItemInputProps {
|
|
4
|
-
id: string;
|
|
5
|
-
/** Optional title */
|
|
6
|
-
title?: string;
|
|
7
|
-
/** Query params */
|
|
8
|
-
params?: QueryItemProps[];
|
|
9
|
-
}
|
|
10
|
-
export declare const BookmarksListItem: ({ size, title, description, params, ...rest }: BookmarksListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { BookmarksListItemProps } from '../';
|
|
2
|
-
export interface BookmarksSectionProps {
|
|
3
|
-
title?: string;
|
|
4
|
-
items: BookmarksListItemProps[];
|
|
5
|
-
updatedAtLabel?: string;
|
|
6
|
-
}
|
|
7
|
-
export declare const BookmarksSection: ({ title, items, updatedAtLabel }: BookmarksSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react';
|
|
2
|
-
declare const meta: {
|
|
3
|
-
title: string;
|
|
4
|
-
component: ({ title, items, updatedAtLabel }: import('./BookmarksSection').BookmarksSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
tags: string[];
|
|
6
|
-
parameters: {};
|
|
7
|
-
args: {
|
|
8
|
-
title: string;
|
|
9
|
-
updatedAtLabel: string;
|
|
10
|
-
items: ({
|
|
11
|
-
id: string;
|
|
12
|
-
title: string;
|
|
13
|
-
params: ({
|
|
14
|
-
type: "search";
|
|
15
|
-
label: string;
|
|
16
|
-
} | {
|
|
17
|
-
type: "filter";
|
|
18
|
-
label: string;
|
|
19
|
-
})[];
|
|
20
|
-
} | {
|
|
21
|
-
id: string;
|
|
22
|
-
params: ({
|
|
23
|
-
type: "search";
|
|
24
|
-
label: string;
|
|
25
|
-
} | {
|
|
26
|
-
type: "filter";
|
|
27
|
-
label: string;
|
|
28
|
-
})[];
|
|
29
|
-
title?: undefined;
|
|
30
|
-
})[];
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
export default meta;
|
|
34
|
-
type Story = StoryObj<typeof meta>;
|
|
35
|
-
export declare const Default: Story;
|
|
36
|
-
export declare const WithContextMenu: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ContextMenuProps } from '../ContextMenu';
|
|
2
|
-
export interface ListItemMenuProps extends ContextMenuProps {
|
|
3
|
-
id: string;
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* List item context menu
|
|
7
|
-
*/
|
|
8
|
-
export declare const ListItemMenu: ({ id, ...props }: ListItemMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { BackButtonProps, ContextMenuProps, SectionProps } from '../';
|
|
3
|
-
export type PageNavPadding = 'none' | 'sm';
|
|
4
|
-
export interface PageNavProps extends SectionProps {
|
|
5
|
-
padding?: PageNavPadding;
|
|
6
|
-
backButton?: BackButtonProps;
|
|
7
|
-
menu?: ContextMenuProps;
|
|
8
|
-
children?: ReactNode;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Page navigation bar with Back button and controls.
|
|
12
|
-
*/
|
|
13
|
-
export declare const PageNav: ({ padding, backButton, menu, children, }: PageNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
export type SectionTheme = 'inherit' | 'global' | 'neutral' | 'article';
|
|
3
|
-
export type SectionColor = 'transparent' | 'subtle' | 'surface' | 'accent';
|
|
4
|
-
export type SectionElement = 'section' | 'article' | 'header' | 'footer' | 'div';
|
|
5
|
-
export type SectionSpacing = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
6
|
-
export type SectionPadding = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
7
|
-
export type SectionMargin = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
8
|
-
export type SectionShadow = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
9
|
-
export type SectionFlex = 'col' | 'row';
|
|
10
|
-
export type SectionAlign = 'initial' | 'start' | 'end' | 'center' | 'stretch';
|
|
11
|
-
export type SectionJustify = 'initial' | 'start' | 'end' | 'center' | 'between';
|
|
12
|
-
export interface SectionProps {
|
|
13
|
-
as?: SectionElement;
|
|
14
|
-
theme?: SectionTheme;
|
|
15
|
-
color?: SectionColor;
|
|
16
|
-
flex?: SectionFlex;
|
|
17
|
-
align?: SectionAlign;
|
|
18
|
-
justify?: SectionJustify;
|
|
19
|
-
reverse?: boolean;
|
|
20
|
-
padding?: SectionPadding;
|
|
21
|
-
spacing?: SectionSpacing;
|
|
22
|
-
margin?: SectionMargin;
|
|
23
|
-
shadow?: SectionShadow;
|
|
24
|
-
inset?: boolean;
|
|
25
|
-
children?: ReactNode;
|
|
26
|
-
className?: string;
|
|
27
|
-
style?: CSSProperties;
|
|
28
|
-
}
|
|
29
|
-
export declare const Section: ({ as, theme, color, flex, reverse, align, justify, padding, spacing, margin, shadow, inset, className, style, children, }: SectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { SectionProps } from './Section';
|
|
3
|
-
export interface SectionHeaderProps extends SectionProps {
|
|
4
|
-
children?: ReactNode;
|
|
5
|
-
}
|
|
6
|
-
export declare const SectionHeader: ({ flex, align, justify, children, ...rest }: SectionHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|