@agorapulse/ui-components 20.2.0 → 20.2.2
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
|
@@ -61,6 +61,8 @@ type NavSelectorLeafAction = {
|
|
|
61
61
|
icon: string | null;
|
|
62
62
|
/** Optional Status */
|
|
63
63
|
status: 'disabled' | 'locked' | null;
|
|
64
|
+
/** Whether to add a divider before this item */
|
|
65
|
+
dividerEnabled?: boolean;
|
|
64
66
|
};
|
|
65
67
|
/**
|
|
66
68
|
* Represent final entry of the nav selector
|
|
@@ -162,6 +164,8 @@ type InternalNavSelectorLeafAction = {
|
|
|
162
164
|
icon: string | null;
|
|
163
165
|
/** Optional Status */
|
|
164
166
|
status: 'disabled' | 'locked' | null;
|
|
167
|
+
/** Whether to add a divider before this item */
|
|
168
|
+
dividerEnabled?: boolean;
|
|
165
169
|
};
|
|
166
170
|
/**
|
|
167
171
|
* Represent a node
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-components",
|
|
3
3
|
"description": "Agorapulse UI Components Library",
|
|
4
|
-
"version": "20.2.
|
|
4
|
+
"version": "20.2.2",
|
|
5
5
|
"author": "Benoit Hediard",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"types": "./index.d.ts",
|
|
37
37
|
"default": "./fesm2022/agorapulse-ui-components.mjs"
|
|
38
38
|
},
|
|
39
|
-
"./add-comment": {
|
|
40
|
-
"types": "./add-comment/index.d.ts",
|
|
41
|
-
"default": "./fesm2022/agorapulse-ui-components-add-comment.mjs"
|
|
42
|
-
},
|
|
43
39
|
"./action-dropdown": {
|
|
44
40
|
"types": "./action-dropdown/index.d.ts",
|
|
45
41
|
"default": "./fesm2022/agorapulse-ui-components-action-dropdown.mjs"
|
|
46
42
|
},
|
|
43
|
+
"./add-comment": {
|
|
44
|
+
"types": "./add-comment/index.d.ts",
|
|
45
|
+
"default": "./fesm2022/agorapulse-ui-components-add-comment.mjs"
|
|
46
|
+
},
|
|
47
47
|
"./autocomplete": {
|
|
48
48
|
"types": "./autocomplete/index.d.ts",
|
|
49
49
|
"default": "./fesm2022/agorapulse-ui-components-autocomplete.mjs"
|
|
Binary file
|