@up42/up-components 5.0.0-tokens.0 → 5.0.0-tokens.1
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/dist/cjs/index.js +2 -2
- package/dist/cjs/types/components/Avatar/Avatar.d.ts +2 -0
- package/dist/cjs/types/global/icons/index.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/components/Avatar/Avatar.d.ts +2 -0
- package/dist/esm/types/global/icons/index.d.ts +1 -0
- package/dist/index.d.ts +411 -395
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export type AvatarProps = MUIGlobalOmit<Omit<MUIAvatarProps, 'children' | 'alt'
|
|
|
5
5
|
firstName?: string;
|
|
6
6
|
lastName?: string;
|
|
7
7
|
icon?: React.ReactNode;
|
|
8
|
+
selected?: boolean;
|
|
8
9
|
}>;
|
|
9
10
|
/**
|
|
10
11
|
* Documentation: https://up-components.up42.com/?path=/docs/data-display-avatar--docs
|
|
@@ -13,4 +14,5 @@ export declare const Avatar: React.ForwardRefExoticComponent<Omit<{
|
|
|
13
14
|
firstName?: string | undefined;
|
|
14
15
|
lastName?: string | undefined;
|
|
15
16
|
icon?: React.ReactNode;
|
|
17
|
+
selected?: boolean | undefined;
|
|
16
18
|
} & Omit<Omit<MUIAvatarProps<"div", {}>, "children" | "alt" | "src" | "sizes" | "srcSet" | "variant" | "imgProps">, "classes" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple">, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -137,6 +137,7 @@ export { default as Satellite } from './Satellite.svg';
|
|
|
137
137
|
export { default as Save } from './Save.svg';
|
|
138
138
|
export { default as Scissors } from './Scissors.svg';
|
|
139
139
|
export { default as Search } from './Search.svg';
|
|
140
|
+
export { default as SelectedIndicator } from './SelectedIndicator.svg';
|
|
140
141
|
export { default as ServerCheck } from './ServerCheck.svg';
|
|
141
142
|
export { default as ServerDeny } from './ServerDeny.svg';
|
|
142
143
|
export { default as ServerDownload } from './ServerDownload.svg';
|