@agorapulse/ui-components 20.4.6 → 20.4.7
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/nav-selector/index.d.ts
CHANGED
|
@@ -75,6 +75,8 @@ type NavSelectorLeafAction = {
|
|
|
75
75
|
type NavSelectorLeaf = {
|
|
76
76
|
/** Picture url to display on the avatar, optional */
|
|
77
77
|
pictureUrl: string | null;
|
|
78
|
+
/** When true we do not display the avatar */
|
|
79
|
+
avatarHidden?: boolean | null;
|
|
78
80
|
/** Counter to display on the entry, to ignore if the leaf has details */
|
|
79
81
|
counter: number | null;
|
|
80
82
|
/** When true, the leaf will be hidden */
|
|
@@ -250,6 +252,8 @@ type InternalNavSelectorLeaf = {
|
|
|
250
252
|
actionsDisplayable: boolean;
|
|
251
253
|
/** Actions that can be performed on the leaf */
|
|
252
254
|
actions: InternalNavSelectorLeafAction[];
|
|
255
|
+
/** When true we do not display the avatar */
|
|
256
|
+
avatarHidden?: boolean | null;
|
|
253
257
|
/** Picture url to display on the avatar, optional */
|
|
254
258
|
pictureUrl: string | null;
|
|
255
259
|
/** Indicates if the counter could be display. The leaf should not be disabled, feature locked or has token invalid */
|
package/package.json
CHANGED
|
Binary file
|