@rte-ds/react 1.3.12 → 1.3.14

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.
@@ -109,6 +109,7 @@ export declare const RegularIcons: {
109
109
  search: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
110
110
  "side-navigation": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
111
111
  sort: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
112
+ "sticky-note-valide": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
112
113
  "support-agent": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
113
114
  switch: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
114
115
  timeline: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { IconProps } from '../Icon';
2
+ declare const SvgStickyNoteValide: ({ width, height, fill, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgStickyNoteValide;
@@ -404,6 +404,7 @@ export { default as StarFilled } from './StarFilled';
404
404
  export { default as StarOutlined } from './StarOutlined';
405
405
  export { default as StickyNoteFilled } from './StickyNoteFilled';
406
406
  export { default as StickyNoteOutlined } from './StickyNoteOutlined';
407
+ export { default as StickyNoteValide } from './StickyNoteValide';
407
408
  export { default as StopCircleFilled } from './StopCircleFilled';
408
409
  export { default as StopCircleOutlined } from './StopCircleOutlined';
409
410
  export { default as StopFilled } from './StopFilled';
@@ -14,6 +14,7 @@ interface BaseSideNavProps extends Partial<Omit<CoreSideNavProps, "items">>, Omi
14
14
  onProfileClick?: () => void;
15
15
  showTeamData?: boolean;
16
16
  teamData?: TeamDataItem[];
17
+ middleItem?: ReactNode;
17
18
  }
18
19
  declare const BaseSideNav: import('react').ForwardRefExoticComponent<BaseSideNavProps & import('react').RefAttributes<HTMLDivElement | HTMLElement>>;
19
20
  export default BaseSideNav;