@microsoft/sp-top-actions 1.18.0-beta.1 → 1.18.0-beta.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.
|
@@ -16,7 +16,7 @@ export declare interface ITopActions {
|
|
|
16
16
|
* @param actionName - the specified property path that has been altered
|
|
17
17
|
* @param updatedValue - the updated value passed by top actions for the specified actionName
|
|
18
18
|
*/
|
|
19
|
-
onExecute(actionName: string, updatedValue:
|
|
19
|
+
onExecute(actionName: string, updatedValue: unknown): void;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -146,7 +146,7 @@ export declare interface ITopActionsDropdownProps {
|
|
|
146
146
|
*
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
export declare interface ITopActionsField<TProperties =
|
|
149
|
+
export declare interface ITopActionsField<TProperties = unknown> {
|
|
150
150
|
/**
|
|
151
151
|
* Display name for the action which can be used in a tooltip or aria-label.
|
|
152
152
|
*/
|
|
@@ -16,7 +16,7 @@ export declare interface ITopActions {
|
|
|
16
16
|
* @param actionName - the specified property path that has been altered
|
|
17
17
|
* @param updatedValue - the updated value passed by top actions for the specified actionName
|
|
18
18
|
*/
|
|
19
|
-
onExecute(actionName: string, updatedValue:
|
|
19
|
+
onExecute(actionName: string, updatedValue: unknown): void;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -146,7 +146,7 @@ export declare interface ITopActionsDropdownProps {
|
|
|
146
146
|
*
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
export declare interface ITopActionsField<TProperties =
|
|
149
|
+
export declare interface ITopActionsField<TProperties = unknown> {
|
|
150
150
|
/**
|
|
151
151
|
* Display name for the action which can be used in a tooltip or aria-label.
|
|
152
152
|
*/
|
package/dist/index-internal.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare interface ITopActions {
|
|
|
16
16
|
* @param actionName - the specified property path that has been altered
|
|
17
17
|
* @param updatedValue - the updated value passed by top actions for the specified actionName
|
|
18
18
|
*/
|
|
19
|
-
onExecute(actionName: string, updatedValue:
|
|
19
|
+
onExecute(actionName: string, updatedValue: unknown): void;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -146,7 +146,7 @@ export declare interface ITopActionsDropdownProps {
|
|
|
146
146
|
*
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
export declare interface ITopActionsField<TProperties =
|
|
149
|
+
export declare interface ITopActionsField<TProperties = unknown> {
|
|
150
150
|
/**
|
|
151
151
|
* Display name for the action which can be used in a tooltip or aria-label.
|
|
152
152
|
*/
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/sp-top-actions",
|
|
3
|
-
"version": "1.18.0-beta.
|
|
3
|
+
"version": "1.18.0-beta.2",
|
|
4
4
|
"description": "SharePoint Framework support for the web part top actions user interface.",
|
|
5
5
|
"license": "https://aka.ms/spfx/license",
|
|
6
6
|
"homepage": "http://aka.ms/spfx",
|
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
"module": "lib/index.js",
|
|
9
9
|
"typings": "dist/index-internal.d.ts",
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@rushstack/heft": "0.
|
|
11
|
+
"@rushstack/heft": "0.56.0",
|
|
12
12
|
"@types/react": "17.0.45",
|
|
13
13
|
"@types/react-dom": "17.0.17",
|
|
14
|
+
"eslint": "8.7.0",
|
|
14
15
|
"@ms/spfx-internal-web-build-next-rig": "0.1.0"
|
|
15
16
|
},
|
|
16
17
|
"scripts": {
|