diff --git a/packages/components/src/components/Accordion/index.ts b/packages/components/src/components/Accordion/index.ts index bb4819da9..067a60143 100644 --- a/packages/components/src/components/Accordion/index.ts +++ b/packages/components/src/components/Accordion/index.ts @@ -2,3 +2,5 @@ export * from './Accordion'; export * from './components/AccordionGroup'; export * from './AccordionStateContext'; export * from './types'; +export type { AccordionSummaryProps } from './components/AccordionSummary'; +export type { AccordionDetailsProps } from './components/AccordionDetails'; diff --git a/packages/components/src/components/Autocomplete/types.ts b/packages/components/src/components/Autocomplete/types.ts index e5b08256e..0e3256ed2 100644 --- a/packages/components/src/components/Autocomplete/types.ts +++ b/packages/components/src/components/Autocomplete/types.ts @@ -9,6 +9,7 @@ import type { import type { DataAttributeProps } from '@koobiq/react-core'; import type { AriaComboBoxProps } from '@koobiq/react-primitives'; +import type { ItemProps, SectionProps } from '../Collections'; import type { DropdownFooterProps } from '../DropdownFooter'; import { formFieldControlGroupPropVariant, @@ -27,7 +28,8 @@ import type { FormFieldProps, } from '../FormField'; import type { IconButtonProps } from '../IconButton'; -import type { ListInnerProps } from '../List'; +import type { ListInnerProps, ListItemTextProps } from '../List'; +import type { ListItemAddonProps } from '../List/components'; import type { PopoverProps } from '../Popover'; export const autocompletePropLabelPlacement = formFieldPropLabelPlacement; @@ -39,6 +41,12 @@ export type AutocompletePropLabelAlign = FormFieldPropLabelAlign; export const autocompletePropVariant = formFieldControlGroupPropVariant; export type AutocompleteInputPropVariant = FormFieldControlGroupPropVariant; +export type AutocompleteItemProps = ItemProps; +export type AutocompleteSectionProps = + SectionProps; +export type AutocompleteItemTextProps = ListItemTextProps; +export type AutocompleteItemAddonProps = ListItemAddonProps; + export type AutocompleteProps = { /** Additional CSS-classes. */ className?: string; diff --git a/packages/components/src/components/ContentPanel/types.ts b/packages/components/src/components/ContentPanel/types.ts index 2b006bae5..142c7ac69 100644 --- a/packages/components/src/components/ContentPanel/types.ts +++ b/packages/components/src/components/ContentPanel/types.ts @@ -8,7 +8,16 @@ import type { import type { DataAttributeProps } from '@koobiq/react-core'; import type { TransitionProps } from 'react-transition-group/Transition'; -import type { DialogProps } from '../Dialog'; +import type { + DialogBodyProps, + DialogFooterProps, + DialogHeaderProps, + DialogProps, +} from '../Dialog'; + +export type ContentPanelHeaderProps = DialogHeaderProps; +export type ContentPanelBodyProps = DialogBodyProps; +export type ContentPanelFooterProps = DialogFooterProps; export type ContentPanelSize = number | `${number}` | `${number}%`; diff --git a/packages/components/src/components/Form/components/FormCaption/FormCaption.tsx b/packages/components/src/components/Form/components/FormCaption/FormCaption.tsx index 848948e46..eae2af039 100644 --- a/packages/components/src/components/Form/components/FormCaption/FormCaption.tsx +++ b/packages/components/src/components/Form/components/FormCaption/FormCaption.tsx @@ -31,5 +31,5 @@ export const FormCaption = polymorphicForwardRef<'div', FormCaptionBaseProps>( ) ); -export type FormCationProps = +export type FormCaptionProps = ComponentPropsWithRef>; diff --git a/packages/components/src/components/Form/index.ts b/packages/components/src/components/Form/index.ts index caac0dc9a..014682f8b 100644 --- a/packages/components/src/components/Form/index.ts +++ b/packages/components/src/components/Form/index.ts @@ -1,3 +1,8 @@ export * from './Form'; export * from './FormContext'; export * from './types'; +export type { + FormGroupProps, + FormCaptionProps, + FormActionsProps, +} from './components'; diff --git a/packages/components/src/components/List/types.ts b/packages/components/src/components/List/types.ts index 96e7e0410..d339567f3 100644 --- a/packages/components/src/components/List/types.ts +++ b/packages/components/src/components/List/types.ts @@ -10,8 +10,16 @@ import type { import type { ExtendableProps } from '@koobiq/react-core'; import type { AriaListBoxProps } from '@koobiq/react-primitives'; +import type { DividerProps, ItemProps, SectionProps } from '../Collections'; import type { TypographyProps } from '../Typography'; +import type { ListItemAddonProps as ListItemAddonBaseProps } from './components'; + +export type ListItemProps = ItemProps; +export type ListSectionProps = SectionProps; +export type ListDividerProps = DividerProps; +export type ListItemAddonProps = ListItemAddonBaseProps; + export type ListProps = ExtendableProps< { /** Additional CSS-classes. */ diff --git a/packages/components/src/components/Menu/types.ts b/packages/components/src/components/Menu/types.ts index f73e5ec7f..6e385f920 100644 --- a/packages/components/src/components/Menu/types.ts +++ b/packages/components/src/components/Menu/types.ts @@ -1,4 +1,5 @@ import type { + ComponentProps, ComponentPropsWithRef, ComponentRef, ElementType, @@ -9,12 +10,28 @@ import type { ReactNode, } from 'react'; -import type { ExtendableProps } from '@koobiq/react-core'; +import type { ExtendableProps, Pressable } from '@koobiq/react-core'; import type { ButtonOptions, AriaMenuProps } from '@koobiq/react-primitives'; +import type { + DividerProps, + HeaderProps, + ItemProps, + SectionProps, +} from '../Collections'; import type { DropdownFooterProps } from '../DropdownFooter'; +import type { ListItemTextProps } from '../List'; +import type { ListItemAddonProps } from '../List/components'; import type { PopoverProps, PopoverPropPlacement } from '../Popover'; +export type MenuItemProps = ItemProps; +export type MenuSectionProps = SectionProps; +export type MenuHeaderProps = HeaderProps; +export type MenuDividerProps = DividerProps; +export type MenuItemTextProps = ListItemTextProps; +export type MenuItemAddonProps = ListItemAddonProps; +export type MenuControlProps = ComponentProps; + export type MenuPropControl = ( props: Omit & { ref?: Ref; diff --git a/packages/components/src/components/Modal/types.ts b/packages/components/src/components/Modal/types.ts index bd62d5411..8fe0cfd6a 100644 --- a/packages/components/src/components/Modal/types.ts +++ b/packages/components/src/components/Modal/types.ts @@ -9,7 +9,16 @@ import type { import type { ButtonOptions } from '@koobiq/react-primitives'; import type { BackdropProps } from '../Backdrop'; -import type { DialogProps } from '../Dialog'; +import type { + DialogBodyProps, + DialogFooterProps, + DialogHeaderProps, + DialogProps, +} from '../Dialog'; + +export type ModalHeaderProps = DialogHeaderProps; +export type ModalBodyProps = DialogBodyProps; +export type ModalFooterProps = DialogFooterProps; export const modalPropSize = ['small', 'medium', 'large'] as const; diff --git a/packages/components/src/components/Navbar/index.ts b/packages/components/src/components/Navbar/index.ts index bc216136e..db892190e 100644 --- a/packages/components/src/components/Navbar/index.ts +++ b/packages/components/src/components/Navbar/index.ts @@ -1,2 +1,9 @@ export * from './Navbar'; export * from './types'; +export type { + NavbarHeaderProps, + NavbarBodyProps, + NavbarFooterProps, + NavbarItemProps, + NavbarAppItemProps, +} from './components'; diff --git a/packages/components/src/components/Popover/types.ts b/packages/components/src/components/Popover/types.ts index b3e885f73..d1349801c 100644 --- a/packages/components/src/components/Popover/types.ts +++ b/packages/components/src/components/Popover/types.ts @@ -14,7 +14,16 @@ import type { } from '@koobiq/react-primitives'; import type { TransitionProps } from 'react-transition-group/Transition'; -import type { DialogProps } from '../Dialog'; +import type { + DialogBodyProps, + DialogFooterProps, + DialogHeaderProps, + DialogProps, +} from '../Dialog'; + +export type PopoverHeaderProps = DialogHeaderProps; +export type PopoverBodyProps = DialogBodyProps; +export type PopoverFooterProps = DialogFooterProps; export type PopoverPropContent = | ReactNode diff --git a/packages/components/src/components/Select/types.ts b/packages/components/src/components/Select/types.ts index f9aace3b4..8cb6b6d14 100644 --- a/packages/components/src/components/Select/types.ts +++ b/packages/components/src/components/Select/types.ts @@ -13,6 +13,7 @@ import type { useMultiSelectState, } from '@koobiq/react-primitives'; +import type { DividerProps, ItemProps, SectionProps } from '../Collections'; import type { FormFieldLabelProps, FormFieldErrorProps, @@ -27,6 +28,7 @@ import { formFieldPropLabelPlacement, } from '../FormField'; import type { IconButtonProps } from '../IconButton'; +import type { ListItemTextProps } from '../List'; import type { PopoverProps } from '../Popover'; import type { SelectListProps } from './components'; @@ -45,6 +47,11 @@ export type SelectPropLabelPlacement = FormFieldPropLabelPlacement; export const selectPropLabelAlign = formFieldPropLabelAlign; export type SelectPropLabelAlign = FormFieldPropLabelAlign; +export type SelectItemProps = ItemProps; +export type SelectSectionProps = SectionProps; +export type SelectDividerProps = DividerProps; +export type SelectItemTextProps = ListItemTextProps; + export type SelectProps = ExtendableProps< { /** diff --git a/packages/components/src/components/SelectNext/types.ts b/packages/components/src/components/SelectNext/types.ts index 0fc371a33..41bd31568 100644 --- a/packages/components/src/components/SelectNext/types.ts +++ b/packages/components/src/components/SelectNext/types.ts @@ -10,6 +10,7 @@ import type { ExtendableProps, Node } from '@koobiq/react-core'; import type { AriaSelectProps, SelectState } from '@koobiq/react-primitives'; import type { SelectionMode } from '@react-types/select'; +import type { DividerProps } from '../Divider'; import type { DropdownFooterProps } from '../DropdownFooter'; import type { FormFieldLabelProps, @@ -25,11 +26,17 @@ import { formFieldPropLabelPlacement, } from '../FormField'; import type { IconButtonProps } from '../IconButton'; +import type { ListItemTextProps } from '../List'; +import type { ListItemAddonProps } from '../List/components'; import type { PopoverProps } from '../Popover'; import type { SearchInputProps } from '../SearchInput'; import type { TagProps } from '../Tag'; -import type { SelectListProps } from './components'; +import type { + SelectListProps, + SelectOptionProps, + SelectSectionProps, +} from './components'; export const selectNextPropSelectedTagsOverflow = [ 'multiline', @@ -47,6 +54,14 @@ export type SelectNextPropLabelAlign = FormFieldPropLabelAlign; export type SelectNextTagProps = TagProps; +export type SelectNextItemProps = + SelectOptionProps; +export type SelectNextSectionProps = + SelectSectionProps; +export type SelectNextDividerProps = DividerProps; +export type SelectNextItemTextProps = ListItemTextProps; +export type SelectNextItemAddonProps = ListItemAddonProps; + export type SelectNextProps< T extends object, M extends SelectionMode = 'single', diff --git a/packages/components/src/components/SidePanel/types.ts b/packages/components/src/components/SidePanel/types.ts index 2b1224679..2b73e54c2 100644 --- a/packages/components/src/components/SidePanel/types.ts +++ b/packages/components/src/components/SidePanel/types.ts @@ -8,7 +8,16 @@ import type { import type { ButtonOptions } from '@koobiq/react-primitives'; import type { BackdropProps } from '../Backdrop'; -import type { DialogProps } from '../Dialog'; +import type { + DialogBodyProps, + DialogFooterProps, + DialogHeaderProps, + DialogProps, +} from '../Dialog'; + +export type SidePanelHeaderProps = DialogHeaderProps; +export type SidePanelBodyProps = DialogBodyProps; +export type SidePanelFooterProps = DialogFooterProps; export const sidePanelPropSize = ['small', 'medium', 'large'] as const; diff --git a/packages/components/src/components/Table/index.ts b/packages/components/src/components/Table/index.ts index 73057c463..12257c17d 100644 --- a/packages/components/src/components/Table/index.ts +++ b/packages/components/src/components/Table/index.ts @@ -1,2 +1,9 @@ export * from './Table'; export * from './types'; +export type { + CellProps as TableCellProps, + ColumnProps as TableColumnProps, + RowProps as TableRowProps, + TableBodyProps, + TableHeaderProps, +} from '../Collections'; diff --git a/packages/components/src/components/TagAutocomplete/index.ts b/packages/components/src/components/TagAutocomplete/index.ts index eac52faed..187e03a68 100644 --- a/packages/components/src/components/TagAutocomplete/index.ts +++ b/packages/components/src/components/TagAutocomplete/index.ts @@ -1,2 +1,3 @@ export * from './TagAutocomplete'; export * from './types'; +export type { TagAutocompleteListItemProps } from './TagAutocompleteItem'; diff --git a/packages/components/src/components/TagAutocomplete/types.ts b/packages/components/src/components/TagAutocomplete/types.ts index 24d9eafd8..98c419445 100644 --- a/packages/components/src/components/TagAutocomplete/types.ts +++ b/packages/components/src/components/TagAutocomplete/types.ts @@ -5,6 +5,9 @@ import type { AriaTagAutocompleteProps } from '@koobiq/react-primitives'; import type { ListInnerProps } from '../List'; import type { PopoverProps } from '../Popover'; import type { TagInputProps, TagInputRef } from '../TagInput'; +import type { TagProps } from '../TagList/Tag'; + +export type TagAutocompleteTagProps = TagProps; type TagAutocompleteBaseProps = Omit< AriaTagAutocompleteProps, diff --git a/packages/components/src/components/TagInput/types.ts b/packages/components/src/components/TagInput/types.ts index 024f21ae8..a5fe320e4 100644 --- a/packages/components/src/components/TagInput/types.ts +++ b/packages/components/src/components/TagInput/types.ts @@ -30,6 +30,9 @@ import { } from '../FormField'; import type { IconButtonProps } from '../IconButton'; import type { TagListInnerProps } from '../TagList'; +import type { TagProps } from '../TagList/Tag'; + +export type TagInputTagProps = TagProps; export const tagInputPropVariant = formFieldControlGroupPropVariant; export type TagInputPropVariant = FormFieldControlGroupPropVariant; diff --git a/packages/components/src/components/TagList/types.ts b/packages/components/src/components/TagList/types.ts index 5603ffd6d..88e5bdc61 100644 --- a/packages/components/src/components/TagList/types.ts +++ b/packages/components/src/components/TagList/types.ts @@ -15,6 +15,10 @@ import type { } from '@koobiq/react-core'; import type { ListState } from '@koobiq/react-primitives'; +import type { TagProps } from './Tag'; + +export type TagListTagProps = TagProps; + export const tagListPropVariant = [ 'theme-fade', 'contrast-fade', diff --git a/packages/components/src/components/Tree/types.ts b/packages/components/src/components/Tree/types.ts index 2d65b59c6..d548458fe 100644 --- a/packages/components/src/components/Tree/types.ts +++ b/packages/components/src/components/Tree/types.ts @@ -4,6 +4,8 @@ import type { ListItemAddonProps, ListItemTextProps } from '../List/components'; export type TreeItemContentText = ListItemTextProps; export type TreeItemContentAddon = ListItemAddonProps; +export type TreeItemContentTextProps = ListItemTextProps; +export type TreeItemContentAddonProps = ListItemAddonProps; export type TreeProps = AriaTreeProps & { /** Whether the tree has outer padding. */ diff --git a/packages/components/src/components/TreeSelect/types.ts b/packages/components/src/components/TreeSelect/types.ts index 4c55e1110..9d5be7bbf 100644 --- a/packages/components/src/components/TreeSelect/types.ts +++ b/packages/components/src/components/TreeSelect/types.ts @@ -32,9 +32,18 @@ import type { IconButtonProps } from '../IconButton'; import type { PopoverProps } from '../Popover'; import type { SearchInputProps } from '../SearchInput'; import { selectedTagsPropOverflow } from '../SelectedTags'; +import type { + TreeItemContentProps, + TreeItemProps, + TreeLoadMoreItemProps, +} from '../Tree'; import type { TreeCollection } from './TreeInner'; +export type TreeSelectItemProps = TreeItemProps; +export type TreeSelectItemContentProps = TreeItemContentProps; +export type TreeSelectLoadMoreItemProps = TreeLoadMoreItemProps; + export const treeSelectPropLabelPlacement = formFieldPropLabelPlacement; export type TreeSelectPropLabelPlacement = FormFieldPropLabelPlacement; diff --git a/tools/public_api_guard/components/Accordion.api.md b/tools/public_api_guard/components/Accordion.api.md index fde7d0734..b0df430fb 100644 --- a/tools/public_api_guard/components/Accordion.api.md +++ b/tools/public_api_guard/components/Accordion.api.md @@ -29,6 +29,15 @@ export const Accordion: CompoundedComponent; // @public (undocumented) export const AccordionComponent: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type AccordionDetailsProps = ExtendableComponentPropsWithRef<{ + children?: ReactNode; + unmountOnExit?: boolean; + slotProps?: { + transition?: Partial>; + }; +}, 'div'>; + // @public (undocumented) export const AccordionGroup: ForwardRefExoticComponent & RefAttributes>; @@ -54,6 +63,23 @@ export type AccordionRef = ComponentRef<'div'>; // @public (undocumented) export const AccordionStateContext: Context; +// @public (undocumented) +export type AccordionSummaryProps = { + children?: ReactNode; + className?: string; + expandIcon?: (isExpanded: boolean) => ReactElement; + expandIconPlacement?: AccordionSummaryPropExpandIconPlacement; + hideExpandIcon?: boolean; + slotProps?: { + trigger?: Omit; + expandIcon?: ComponentPropsWithRef<'span'>; + }; +}; + +// Warnings were encountered during analysis: +// +// packages/components/dist/components/Accordion/components/AccordionSummary/types.d.ts:17:5 - (ae-forgotten-export) The symbol "AccordionSummaryPropExpandIconPlacement" needs to be exported by the entry point index.d.ts + // (No @packageDocumentation comment for this package) ``` diff --git a/tools/public_api_guard/components/Autocomplete.api.md b/tools/public_api_guard/components/Autocomplete.api.md index c0dd73627..310d64d1b 100644 --- a/tools/public_api_guard/components/Autocomplete.api.md +++ b/tools/public_api_guard/components/Autocomplete.api.md @@ -45,6 +45,21 @@ export type AutocompleteComponent = (props: Autocompl // @public (undocumented) export type AutocompleteInputPropVariant = FormFieldControlGroupPropVariant; +// Warning: (ae-forgotten-export) The symbol "ListItemAddonProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type AutocompleteItemAddonProps = ListItemAddonProps; + +// Warning: (ae-forgotten-export) The symbol "ItemProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type AutocompleteItemProps = ItemProps; + +// Warning: (ae-forgotten-export) The symbol "ListItemTextProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type AutocompleteItemTextProps = ListItemTextProps; + // Warning: (ae-forgotten-export) The symbol "FormFieldPropLabelAlign" needs to be exported by the entry point index.d.ts // // @public (undocumented) @@ -107,18 +122,23 @@ export type AutocompleteRef = ComponentRef<'input'>; // @public (undocumented) export function AutocompleteRender(props: Omit, 'ref'>, ref: Ref): JSX.Element; +// Warning: (ae-forgotten-export) The symbol "SectionProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type AutocompleteSectionProps = SectionProps; + // Warnings were encountered during analysis: // -// packages/components/dist/components/Autocomplete/types.d.ts:53:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:54:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:55:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:56:9 - (ae-forgotten-export) The symbol "FormFieldInputProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:57:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:58:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:59:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:60:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:61:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Autocomplete/types.d.ts:62:9 - (ae-forgotten-export) The symbol "ListInnerProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:59:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:60:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:61:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:62:9 - (ae-forgotten-export) The symbol "FormFieldInputProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:63:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:64:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:65:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:66:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:67:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Autocomplete/types.d.ts:68:9 - (ae-forgotten-export) The symbol "ListInnerProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/ContentPanel.api.md b/tools/public_api_guard/components/ContentPanel.api.md index a4ab27e56..614235338 100644 --- a/tools/public_api_guard/components/ContentPanel.api.md +++ b/tools/public_api_guard/components/ContentPanel.api.md @@ -27,6 +27,11 @@ import { TransitionProps } from 'react-transition-group/Transition'; // @public export const ContentPanel: CompoundedComponent; +// Warning: (ae-forgotten-export) The symbol "DialogBodyProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type ContentPanelBodyProps = DialogBodyProps; + // @public (undocumented) export const ContentPanelContainer: ForwardRefExoticComponent & RefAttributes>; @@ -51,6 +56,16 @@ export type ContentPanelContainerProps = ExtendableComponentPropsWithRef<{ // @public (undocumented) export type ContentPanelContainerRef = ComponentRef<'div'>; +// Warning: (ae-forgotten-export) The symbol "DialogFooterProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type ContentPanelFooterProps = DialogFooterProps; + +// Warning: (ae-forgotten-export) The symbol "DialogHeaderProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type ContentPanelHeaderProps = DialogHeaderProps; + // Warning: (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts // // @public (undocumented) diff --git a/tools/public_api_guard/components/Form.api.md b/tools/public_api_guard/components/Form.api.md index 3fad313ea..5ee4c391f 100644 --- a/tools/public_api_guard/components/Form.api.md +++ b/tools/public_api_guard/components/Form.api.md @@ -4,6 +4,7 @@ ```ts +import type { ComponentPropsWithRef } from 'react'; import type { ComponentRef } from 'react'; import { Context } from 'react'; import type { ElementType } from 'react'; @@ -17,6 +18,16 @@ import { RefAttributes } from 'react'; // @public export const Form: CompoundedComponent; +// Warning: (ae-forgotten-export) The symbol "FormActions" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type FormActionsProps = ComponentPropsWithRef>; + +// Warning: (ae-forgotten-export) The symbol "FormCaption" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type FormCaptionProps = ComponentPropsWithRef>; + // @public (undocumented) export const FormContext: Context; @@ -28,6 +39,11 @@ export type FormContextProps = { isReadOnly?: boolean; }; +// Warning: (ae-forgotten-export) The symbol "FormGroup" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type FormGroupProps = ComponentPropsWithRef>; + // @public (undocumented) export type FormPropLabelInlineSize = (typeof formPropLabelInlineSize)[number]; diff --git a/tools/public_api_guard/components/List.api.md b/tools/public_api_guard/components/List.api.md index 2d2e76870..8afc1b8b8 100644 --- a/tools/public_api_guard/components/List.api.md +++ b/tools/public_api_guard/components/List.api.md @@ -31,6 +31,11 @@ export const List: CompoundedComponent; // @public (undocumented) export type ListComponent = (props: ListProps) => ReactElement | null; +// Warning: (ae-forgotten-export) The symbol "DividerProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type ListDividerProps = DividerProps; + // @public (undocumented) export function ListInner(props: ListInnerProps): JSX.Element; @@ -52,6 +57,14 @@ export namespace ListItem { getCollectionNode: unknown; } +// Warning: (ae-forgotten-export) The symbol "ListItemAddonProps_2" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type ListItemAddonProps = ListItemAddonProps_2; + +// @public (undocumented) +export type ListItemProps = ItemProps; + // @public (undocumented) export const ListItemText: ForwardRefExoticComponent & RefAttributes>; @@ -100,6 +113,9 @@ export namespace ListSection { getCollectionNode: unknown; } +// @public (undocumented) +export type ListSectionProps = SectionProps; + // Warnings were encountered during analysis: // // packages/components/dist/components/List/components/ListItemText/types.d.ts:14:9 - (ae-forgotten-export) The symbol "TypographyProps" needs to be exported by the entry point index.d.ts diff --git a/tools/public_api_guard/components/Menu.api.md b/tools/public_api_guard/components/Menu.api.md index 6b4bafd1b..f2b968202 100644 --- a/tools/public_api_guard/components/Menu.api.md +++ b/tools/public_api_guard/components/Menu.api.md @@ -8,6 +8,7 @@ import type { AriaDialogProps } from '@koobiq/react-primitives'; import type { AriaMenuProps } from '@koobiq/react-primitives'; import type { ButtonBaseProps as ButtonBaseProps_2 } from '@koobiq/react-primitives'; import type { ButtonOptions } from '@koobiq/react-primitives'; +import type { ComponentProps } from 'react'; import type { ComponentPropsWithRef } from 'react'; import type { ComponentRef } from 'react'; import type { CSSProperties } from 'react'; @@ -35,6 +36,34 @@ export const Menu: CompoundedComponent; // @public (undocumented) export type MenuComponent = (props: MenuProps) => ReactElement | null; +// @public (undocumented) +export type MenuControlProps = ComponentProps; + +// Warning: (ae-forgotten-export) The symbol "DividerProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuDividerProps = DividerProps; + +// Warning: (ae-forgotten-export) The symbol "HeaderProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuHeaderProps = HeaderProps; + +// Warning: (ae-forgotten-export) The symbol "ListItemAddonProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuItemAddonProps = ListItemAddonProps; + +// Warning: (ae-forgotten-export) The symbol "ItemProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuItemProps = ItemProps; + +// Warning: (ae-forgotten-export) The symbol "ListItemTextProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuItemTextProps = ListItemTextProps; + // @public (undocumented) export type MenuPropControl = (props: Omit & { ref?: Ref; @@ -71,10 +100,15 @@ export type MenuProps = ExtendableProps<{ // @public (undocumented) export type MenuRef = ComponentRef<'div'>; +// Warning: (ae-forgotten-export) The symbol "SectionProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type MenuSectionProps = SectionProps; + // Warnings were encountered during analysis: // -// packages/components/dist/components/Menu/types.d.ts:47:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Menu/types.d.ts:48:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Menu/types.d.ts:57:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Menu/types.d.ts:58:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/Modal.api.md b/tools/public_api_guard/components/Modal.api.md index 2df3c48a1..ca0858f3a 100644 --- a/tools/public_api_guard/components/Modal.api.md +++ b/tools/public_api_guard/components/Modal.api.md @@ -27,6 +27,9 @@ export const Modal: CompoundedComponent; // Warning: (ae-forgotten-export) The symbol "DialogBodyProps" needs to be exported by the entry point index.d.ts // +// @public (undocumented) +export type ModalBodyProps = DialogBodyProps; + // @public @deprecated (undocumented) export const ModalContent: ForwardRefExoticComponent & RefAttributes>; @@ -35,11 +38,17 @@ export const ModalContent: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type ModalFooterProps = DialogFooterProps; + // Warning: (ae-forgotten-export) The symbol "DialogHeaderProps" needs to be exported by the entry point index.d.ts // // @public @deprecated (undocumented) export const ModalHeader: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type ModalHeaderProps = DialogHeaderProps; + // @public (undocumented) export type ModalPropContent = ReactNode | ((props: { close(): void; @@ -86,8 +95,8 @@ export type ModalRef = ComponentRef<'div'>; // Warnings were encountered during analysis: // -// packages/components/dist/components/Modal/types.d.ts:76:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Modal/types.d.ts:77:9 - (ae-forgotten-export) The symbol "BackdropProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Modal/types.d.ts:79:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Modal/types.d.ts:80:9 - (ae-forgotten-export) The symbol "BackdropProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/Navbar.api.md b/tools/public_api_guard/components/Navbar.api.md index 982304ac7..2d7d6d31f 100644 --- a/tools/public_api_guard/components/Navbar.api.md +++ b/tools/public_api_guard/components/Navbar.api.md @@ -17,12 +17,34 @@ import type { ReactNode } from 'react'; // @public export const Navbar: CompoundedComponent; +// @public (undocumented) +export type NavbarAppItemProps = DistributiveOmit; + +// @public (undocumented) +export type NavbarBodyProps = ComponentPropsWithRef<'ul'>; + // @public (undocumented) export const NavbarComponent: { (input: NavbarProps): JSX.Element; displayName: string; }; +// @public (undocumented) +export type NavbarFooterProps = ComponentPropsWithRef<'footer'>; + +// @public (undocumented) +export type NavbarHeaderProps = ComponentPropsWithRef<'header'>; + +// @public (undocumented) +export type NavbarItemProps = { + isActive?: boolean; + isMenu?: boolean; + className?: string; + icon?: ReactNode; + badge?: ReactNode; + children?: ReactNode; +} & LinkBaseProps; + // @public (undocumented) export type NavbarProps = { isCollapsed?: boolean; diff --git a/tools/public_api_guard/components/Popover.api.md b/tools/public_api_guard/components/Popover.api.md index 663850fe4..83358e81d 100644 --- a/tools/public_api_guard/components/Popover.api.md +++ b/tools/public_api_guard/components/Popover.api.md @@ -30,6 +30,9 @@ export const Popover: CompoundedComponent; // Warning: (ae-forgotten-export) The symbol "DialogBodyProps" needs to be exported by the entry point index.d.ts // +// @public (undocumented) +export type PopoverBodyProps = DialogBodyProps; + // @public @deprecated (undocumented) export const PopoverContent: ForwardRefExoticComponent & RefAttributes>; @@ -38,11 +41,17 @@ export const PopoverContent: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type PopoverFooterProps = DialogFooterProps; + // Warning: (ae-forgotten-export) The symbol "DialogHeaderProps" needs to be exported by the entry point index.d.ts // // @public @deprecated (undocumented) export const PopoverHeader: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type PopoverHeaderProps = DialogHeaderProps; + // @public (undocumented) export type PopoverInnerProps = { state: OverlayTriggerState; @@ -116,7 +125,7 @@ export const popoverPropType: readonly ["dialog", "menu", "listbox", "tree", "gr // Warnings were encountered during analysis: // -// packages/components/dist/components/Popover/types.d.ts:123:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Popover/types.d.ts:126:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/Select.api.md b/tools/public_api_guard/components/Select.api.md index faa19ef27..9421d1879 100644 --- a/tools/public_api_guard/components/Select.api.md +++ b/tools/public_api_guard/components/Select.api.md @@ -40,6 +40,21 @@ export const Select: CompoundedComponent; // @public (undocumented) export type SelectComponent = (props: SelectProps) => ReactElement | null; +// Warning: (ae-forgotten-export) The symbol "DividerProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type SelectDividerProps = DividerProps; + +// Warning: (ae-forgotten-export) The symbol "ItemProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type SelectItemProps = ItemProps; + +// Warning: (ae-forgotten-export) The symbol "ListItemTextProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type SelectItemTextProps = ListItemTextProps; + // Warning: (ae-forgotten-export) The symbol "FormFieldPropLabelAlign" needs to be exported by the entry point index.d.ts // // @public (undocumented) @@ -108,16 +123,21 @@ export const selectPropSelectedTagsOverflow: readonly ["multiline", "responsive" // @public (undocumented) export type SelectRef = ComponentRef<'div'>; +// Warning: (ae-forgotten-export) The symbol "SectionProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type SelectSectionProps = SectionProps; + // Warnings were encountered during analysis: // -// packages/components/dist/components/Select/types.d.ts:88:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:89:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:90:9 - (ae-forgotten-export) The symbol "SelectListProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:91:9 - (ae-forgotten-export) The symbol "FormFieldSelectProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:92:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:93:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:94:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/Select/types.d.ts:95:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:94:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:95:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:96:9 - (ae-forgotten-export) The symbol "SelectListProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:97:9 - (ae-forgotten-export) The symbol "FormFieldSelectProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:98:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:99:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:100:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Select/types.d.ts:101:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/SidePanel.api.md b/tools/public_api_guard/components/SidePanel.api.md index 474dae912..5b10b4e6e 100644 --- a/tools/public_api_guard/components/SidePanel.api.md +++ b/tools/public_api_guard/components/SidePanel.api.md @@ -27,6 +27,9 @@ export const SidePanel: CompoundedComponent; // Warning: (ae-forgotten-export) The symbol "DialogBodyProps" needs to be exported by the entry point index.d.ts // +// @public (undocumented) +export type SidePanelBodyProps = DialogBodyProps; + // @public @deprecated (undocumented) export const SidePanelContent: ForwardRefExoticComponent & RefAttributes>; @@ -35,11 +38,17 @@ export const SidePanelContent: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type SidePanelFooterProps = DialogFooterProps; + // Warning: (ae-forgotten-export) The symbol "DialogHeaderProps" needs to be exported by the entry point index.d.ts // // @public @deprecated (undocumented) export const SidePanelHeader: ForwardRefExoticComponent & RefAttributes>; +// @public (undocumented) +export type SidePanelHeaderProps = DialogHeaderProps; + // @public (undocumented) export type SidePanelPropContent = ReactNode | ((props: { close(): void; @@ -98,8 +107,8 @@ export type SidePanelRef = ComponentRef<'div'>; // Warnings were encountered during analysis: // -// packages/components/dist/components/SidePanel/types.d.ts:89:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/SidePanel/types.d.ts:90:9 - (ae-forgotten-export) The symbol "BackdropProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/SidePanel/types.d.ts:92:9 - (ae-forgotten-export) The symbol "DialogProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/SidePanel/types.d.ts:93:9 - (ae-forgotten-export) The symbol "BackdropProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/Table.api.md b/tools/public_api_guard/components/Table.api.md index aec4c50b8..9d59f65f5 100644 --- a/tools/public_api_guard/components/Table.api.md +++ b/tools/public_api_guard/components/Table.api.md @@ -5,8 +5,8 @@ ```ts import type { AriaTableColumnResizeProps } from '@koobiq/react-primitives'; -import type { CellProps as CellProps_2 } from '@koobiq/react-primitives'; -import type { ColumnProps as ColumnProps_2 } from '@koobiq/react-primitives'; +import type { CellProps } from '@koobiq/react-primitives'; +import type { ColumnProps } from '@koobiq/react-primitives'; import type { ComponentPropsWithRef } from 'react'; import type { ComponentRef } from 'react'; import type { CSSProperties } from 'react'; @@ -16,7 +16,7 @@ import { PolyForwardComponent } from '@koobiq/react-core'; import type { ReactElement } from 'react'; import type { ReactNode } from 'react'; import type { Ref } from 'react'; -import type { RowProps as RowProps_2 } from '@koobiq/react-primitives'; +import type { RowProps } from '@koobiq/react-primitives'; import type { TableBodyProps as TableBodyProps_2 } from '@koobiq/react-primitives'; import type { TableHeaderProps as TableHeaderProps_2 } from '@koobiq/react-primitives'; import type { TableStateProps } from '@koobiq/react-primitives'; @@ -26,6 +26,27 @@ import type { TableStateProps } from '@koobiq/react-primitives'; // @public export const Table: CompoundedComponent; +// @public (undocumented) +export type TableBodyProps = TableBodyProps_2; + +// @public (undocumented) +export type TableCellProps = CellProps & { + className?: string; + style?: CSSProperties; + 'data-testid'?: string | number; + align?: CellPropAlign; + valign?: CellPropVerticalAlign; +}; + +// @public (undocumented) +export type TableColumnProps = ColumnProps & { + className?: string; + style?: CSSProperties; + 'data-testid'?: string | number; + align?: ColumnPropAlign; + valign?: ColumnPropVerticalAlign; +}; + // @public (undocumented) export type TableComponent = (props: TableProps) => ReactElement | null; @@ -34,6 +55,9 @@ export type TableComponent = (props: TableProps) => ReactElement | null; // @public (undocumented) export const TableContainer: PolyForwardComponent<"div", TableContainerBaseProps, ElementType>; +// @public (undocumented) +export type TableHeaderProps = TableHeaderProps_2; + // @public (undocumented) export type TablePropChildren = TableStateProps['children']; @@ -67,8 +91,19 @@ export type TableProps = Pick, 'selectionBehavior' | 'sele // @public (undocumented) export type TableRef = ComponentRef<'table'>; +// @public (undocumented) +export type TableRowProps = RowProps & { + className?: string; + style?: CSSProperties; + 'data-testid'?: string | number; +}; + // Warnings were encountered during analysis: // +// packages/components/dist/components/Collections/Cell.d.ts:18:5 - (ae-forgotten-export) The symbol "CellPropAlign" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Collections/Cell.d.ts:23:5 - (ae-forgotten-export) The symbol "CellPropVerticalAlign" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Collections/Column.d.ts:18:5 - (ae-forgotten-export) The symbol "ColumnPropAlign" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/Collections/Column.d.ts:23:5 - (ae-forgotten-export) The symbol "ColumnPropVerticalAlign" needs to be exported by the entry point index.d.ts // packages/components/dist/components/Table/types.d.ts:35:5 - (ae-forgotten-export) The symbol "TablePropSortIconRender" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/TagAutocomplete.api.md b/tools/public_api_guard/components/TagAutocomplete.api.md index 1ca6b2340..0c701f7c9 100644 --- a/tools/public_api_guard/components/TagAutocomplete.api.md +++ b/tools/public_api_guard/components/TagAutocomplete.api.md @@ -45,6 +45,11 @@ export type TagAutocompleteComponent = (props: TagAut ref?: Ref; }) => ReactElement | null; +// Warning: (ae-forgotten-export) The symbol "ItemProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type TagAutocompleteListItemProps = ItemProps; + // Warning: (ae-forgotten-export) The symbol "TagAutocompleteBaseProps" needs to be exported by the entry point index.d.ts // Warning: (ae-forgotten-export) The symbol "TagInputProps" needs to be exported by the entry point index.d.ts // @@ -66,10 +71,15 @@ export type TagAutocompleteProps = TagAutocompleteBas // @public (undocumented) export type TagAutocompleteRef = TagInputRef; +// Warning: (ae-forgotten-export) The symbol "TagProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type TagAutocompleteTagProps = TagProps; + // Warnings were encountered during analysis: // -// packages/components/dist/components/TagAutocomplete/types.d.ts:24:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagAutocomplete/types.d.ts:26:9 - (ae-forgotten-export) The symbol "ListInnerProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagAutocomplete/types.d.ts:26:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagAutocomplete/types.d.ts:28:9 - (ae-forgotten-export) The symbol "ListInnerProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/TagInput.api.md b/tools/public_api_guard/components/TagInput.api.md index f1545aa8d..c32ade9b9 100644 --- a/tools/public_api_guard/components/TagInput.api.md +++ b/tools/public_api_guard/components/TagInput.api.md @@ -118,16 +118,21 @@ export const tagInputPropVariant: readonly ["filled", "transparent"]; // @public (undocumented) export type TagInputRef = ComponentRef<'input'>; +// Warning: (ae-forgotten-export) The symbol "TagProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type TagInputTagProps = TagProps; + // Warnings were encountered during analysis: // -// packages/components/dist/components/TagInput/types.d.ts:58:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:59:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:60:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:61:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:62:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:63:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:64:9 - (ae-forgotten-export) The symbol "FormFieldInputProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TagInput/types.d.ts:65:9 - (ae-forgotten-export) The symbol "TagListInnerProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:60:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:61:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:62:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:63:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:64:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:65:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:66:9 - (ae-forgotten-export) The symbol "FormFieldInputProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TagInput/types.d.ts:67:9 - (ae-forgotten-export) The symbol "TagListInnerProps" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package) diff --git a/tools/public_api_guard/components/TagList.api.md b/tools/public_api_guard/components/TagList.api.md index 456d6a50b..e6dbb1b7d 100644 --- a/tools/public_api_guard/components/TagList.api.md +++ b/tools/public_api_guard/components/TagList.api.md @@ -51,6 +51,11 @@ export const tagListPropVariant: readonly ["theme-fade", "contrast-fade", "error // @public (undocumented) export type TagListRef = ComponentRef<'div'>; +// Warning: (ae-forgotten-export) The symbol "TagProps" needs to be exported by the entry point index.d.ts +// +// @public (undocumented) +export type TagListTagProps = TagProps; + // (No @packageDocumentation comment for this package) ``` diff --git a/tools/public_api_guard/components/Tree.api.md b/tools/public_api_guard/components/Tree.api.md index b68abca23..4e22b4be3 100644 --- a/tools/public_api_guard/components/Tree.api.md +++ b/tools/public_api_guard/components/Tree.api.md @@ -59,6 +59,9 @@ export function TreeItemContent(props: TreeItemContentProps): JSX.Element; // @public (undocumented) export type TreeItemContentAddon = ListItemAddonProps; +// @public (undocumented) +export type TreeItemContentAddonProps = ListItemAddonProps; + // @public (undocumented) export type TreeItemContentProps = TreeItemContentProps_2 & { slotProps?: TreeItemContentPropSlotProps; @@ -73,6 +76,9 @@ export type TreeItemContentPropSlotProps = { // @public (undocumented) export type TreeItemContentText = ListItemTextProps; +// @public (undocumented) +export type TreeItemContentTextProps = ListItemTextProps; + // @public (undocumented) export type TreeItemPropAlign = (typeof treeItemPropAlign)[number]; diff --git a/tools/public_api_guard/components/TreeSelect.api.md b/tools/public_api_guard/components/TreeSelect.api.md index 0e5e7df28..f7cf8ebdc 100644 --- a/tools/public_api_guard/components/TreeSelect.api.md +++ b/tools/public_api_guard/components/TreeSelect.api.md @@ -57,6 +57,21 @@ export type TreeSelectInnerProps; // Warnings were encountered during analysis: // -// packages/components/dist/components/TreeSelect/types.d.ts:77:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:78:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:79:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:80:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:81:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:82:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:83:9 - (ae-forgotten-export) The symbol "FormFieldSelectProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:84:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:85:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:87:9 - (ae-forgotten-export) The symbol "SearchInputProps" needs to be exported by the entry point index.d.ts -// packages/components/dist/components/TreeSelect/types.d.ts:94:5 - (ae-forgotten-export) The symbol "TreeCollection" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:81:9 - (ae-forgotten-export) The symbol "FormFieldProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:82:9 - (ae-forgotten-export) The symbol "FormFieldLabelProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:83:9 - (ae-forgotten-export) The symbol "FormFieldCaptionProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:84:9 - (ae-forgotten-export) The symbol "FormFieldErrorProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:85:9 - (ae-forgotten-export) The symbol "FormFieldControlGroupProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:86:9 - (ae-forgotten-export) The symbol "IconButtonProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:87:9 - (ae-forgotten-export) The symbol "FormFieldSelectProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:88:9 - (ae-forgotten-export) The symbol "PopoverProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:89:9 - (ae-forgotten-export) The symbol "DropdownFooterProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:91:9 - (ae-forgotten-export) The symbol "SearchInputProps" needs to be exported by the entry point index.d.ts +// packages/components/dist/components/TreeSelect/types.d.ts:98:5 - (ae-forgotten-export) The symbol "TreeCollection" needs to be exported by the entry point index.d.ts // (No @packageDocumentation comment for this package)