@agorapulse/ui-components 20.3.33 → 20.3.34
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/action-dropdown/index.d.ts +3 -1
- package/agorapulse-ui-components-20.3.34.tgz +0 -0
- package/fesm2022/agorapulse-ui-components-action-dropdown.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs +4 -3
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs.map +1 -1
- package/nav-selector/index.d.ts +6 -2
- package/package.json +1 -1
- package/agorapulse-ui-components-20.3.33.tgz +0 -0
package/nav-selector/index.d.ts
CHANGED
|
@@ -57,9 +57,11 @@ type NavSelectorBaseNode = {
|
|
|
57
57
|
*/
|
|
58
58
|
type NavSelectorLeafAction = {
|
|
59
59
|
/** Unique identifier of the action, used for click tracking */
|
|
60
|
-
id: string;
|
|
60
|
+
id: string | null;
|
|
61
61
|
/** Action label to display */
|
|
62
62
|
label: string;
|
|
63
|
+
/** Technical name of the action, used to identify the action */
|
|
64
|
+
name: string;
|
|
63
65
|
/** Optional icon to display on the action */
|
|
64
66
|
icon: string | null;
|
|
65
67
|
/** Optional Status */
|
|
@@ -167,9 +169,11 @@ type NodeAccessibility = {
|
|
|
167
169
|
};
|
|
168
170
|
type InternalNavSelectorLeafAction = {
|
|
169
171
|
/** Unique identifier of the action, used for click tracking */
|
|
170
|
-
id: string;
|
|
172
|
+
id: string | null;
|
|
171
173
|
/** Action label to display */
|
|
172
174
|
label: string;
|
|
175
|
+
/** Technical name of the action, used to identify the action */
|
|
176
|
+
name: string;
|
|
173
177
|
/** Optional icon to display on the action */
|
|
174
178
|
icon: string | null;
|
|
175
179
|
/** Optional Status */
|
package/package.json
CHANGED
|
Binary file
|