@rte-ds/react 1.3.11 → 1.3.13

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.
@@ -1,5 +1,6 @@
1
1
  export declare const RegularIcons: {
2
2
  add: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ "add-box": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
3
4
  "alt-route": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
4
5
  apps: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
5
6
  "arrow-alt-down": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -54,6 +55,7 @@ export declare const RegularIcons: {
54
55
  "copy-all": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
55
56
  "crisis-alert": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
56
57
  cut: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
58
+ detach: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
57
59
  download: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
58
60
  "download-done": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
59
61
  "drag-handle": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -107,6 +109,7 @@ export declare const RegularIcons: {
107
109
  search: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
108
110
  "side-navigation": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
109
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;
110
113
  "support-agent": ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
111
114
  switch: ({ width, height, fill, ...props }: import('./Icon').IconProps) => import("react/jsx-runtime").JSX.Element;
112
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 SvgAddBox: ({ width, height, fill, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgAddBox;
@@ -0,0 +1,3 @@
1
+ import { IconProps } from '../Icon';
2
+ declare const SvgDetach: ({ width, height, fill, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgDetach;
@@ -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;
@@ -1,4 +1,5 @@
1
1
  export { default as Add } from './Add';
2
+ export { default as AddBox } from './AddBox';
2
3
  export { default as AddCircleFilled } from './AddCircleFilled';
3
4
  export { default as AddCircleOutlined } from './AddCircleOutlined';
4
5
  export { default as AdminPanelSettingsFilled } from './AdminPanelSettingsFilled';
@@ -163,6 +164,7 @@ export { default as DeleteFilled } from './DeleteFilled';
163
164
  export { default as DeleteOutlined } from './DeleteOutlined';
164
165
  export { default as DesktopFilled } from './DesktopFilled';
165
166
  export { default as DesktopOutlined } from './DesktopOutlined';
167
+ export { default as Detach } from './Detach';
166
168
  export { default as DevicesFilled } from './DevicesFilled';
167
169
  export { default as DevicesOutlined } from './DevicesOutlined';
168
170
  export { default as Download } from './Download';
@@ -402,6 +404,7 @@ export { default as StarFilled } from './StarFilled';
402
404
  export { default as StarOutlined } from './StarOutlined';
403
405
  export { default as StickyNoteFilled } from './StickyNoteFilled';
404
406
  export { default as StickyNoteOutlined } from './StickyNoteOutlined';
407
+ export { default as StickyNoteValide } from './StickyNoteValide';
405
408
  export { default as StopCircleFilled } from './StopCircleFilled';
406
409
  export { default as StopCircleOutlined } from './StopCircleOutlined';
407
410
  export { default as StopFilled } from './StopFilled';
@@ -0,0 +1,5 @@
1
+ import { SegmentedTabsProps as CoreSegmentedTabsProps } from '../../../../core/components/segmented-tabs/segmented-tabs.interface';
2
+ interface SegmentedTabsProps extends CoreSegmentedTabsProps, Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
3
+ }
4
+ declare const SegmentedTabs: import('react').ForwardRefExoticComponent<SegmentedTabsProps & import('react').RefAttributes<HTMLDivElement>>;
5
+ export default SegmentedTabs;
@@ -3,6 +3,7 @@ interface SelectProps extends coreSelectProps {
3
3
  labelId?: string;
4
4
  tooltipTextLabel?: string;
5
5
  styleSelectWrapper?: React.CSSProperties;
6
+ labelExtra?: React.ReactNode;
6
7
  }
7
8
  declare const Select: import('react').ForwardRefExoticComponent<SelectProps & import('react').RefAttributes<HTMLDivElement>>;
8
9
  export default Select;
package/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@ import { default as RadioButton } from './components/radioButton/RadioButton.tsx
18
18
  import { default as RadioButtonGroup } from './components/radioButtonGroup/RadioButtonGroup.tsx';
19
19
  import { default as Searchbar } from './components/searchbar/Searchbar.tsx';
20
20
  import { default as SegmentedControl } from './components/segmentedControl/SegmentedControl.tsx';
21
+ import { default as SegmentedTabs } from './components/segmentedTabs/SegmentedTabs.tsx';
21
22
  import { default as Select } from './components/select/Select.tsx';
22
23
  import { default as BaseSideNav } from './components/sideNav/baseSideNav/BaseSideNav.tsx';
23
24
  import { default as SideNav } from './components/sideNav/SideNav.tsx';
@@ -32,5 +33,5 @@ import { default as ToastQueueProvider } from './components/toast/toastQueue/Toa
32
33
  import { default as Tooltip } from './components/tooltip/Tooltip.tsx';
33
34
  import { default as useBreakpoint } from './hooks/useBreakpoint.ts';
34
35
  import { default as useIsMobile } from './hooks/useIsMobile.ts';
35
- export { Button, Grid, Checkbox, CheckboxGroup, Link, RadioButton, RadioButtonGroup, Icon, IconButton, IconButtonToggle, SplitButton, Tooltip, BaseTextInput as TextInput, Chip, Badge, Textarea, Divider, Switch, SegmentedControl, Breadcrumbs, Banner, Popover, Modal, SideNav, BaseSideNav, Card, Toast, ToastQueueProvider, Tag, Tab, Searchbar, Select, useBreakpoint, useIsMobile, };
36
+ export { Button, Grid, Checkbox, CheckboxGroup, Link, RadioButton, RadioButtonGroup, Icon, IconButton, IconButtonToggle, SplitButton, Tooltip, BaseTextInput as TextInput, Chip, Badge, Textarea, Divider, Switch, SegmentedControl, SegmentedTabs, Breadcrumbs, Banner, Popover, Modal, SideNav, BaseSideNav, Card, Toast, ToastQueueProvider, Tag, Tab, Searchbar, Select, useBreakpoint, useIsMobile, };
36
37
  export type { Breakpoint, UseBreakpointResult } from './hooks/useBreakpoint.ts';