@microsoft/sp-top-actions 1.16.0-beta.1 → 1.16.0-rc.0
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/index-internal-beta.d.ts +7 -1
- package/dist/index-internal.d.ts +2 -22
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +3 -3
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Basque.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Bulgarian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Catalan.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Chinese (Simplified).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Chinese (Traditional).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Croatian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Czech.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Danish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Dutch.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Estonian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Finnish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - French.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Galician.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - German.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Greek.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Hindi.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Hungarian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Indonesian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Italian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Japanese.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Kazakh.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Korean.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Latvian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Lithuanian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Malaysian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Norwegian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Polish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Portuguese (Brazil).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Portuguese (Portugal).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Romanian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Russian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Serbian (Cyrillic).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Serbian (Latin).docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Slovak.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Slovenian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Spanish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Swedish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Thai.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Turkish.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Ukrainian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Valencian.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Vietnamese.docx +0 -0
- package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms.docx +0 -0
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { IPropertyPaneField } from '@microsoft/sp-property-pane/lib/propertyPaneFields/propertyPaneField/IPropertyPaneField';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
+
* Configuration used for a single Top Action command.
|
|
4
5
|
* @beta
|
|
5
6
|
*/
|
|
6
|
-
export declare type ActionConfiguration = IPropertyPaneField<
|
|
7
|
+
export declare type ActionConfiguration<TProperties = any> = Readonly<IPropertyPaneField<TProperties>> & {
|
|
8
|
+
/**
|
|
9
|
+
* Display name for the action which can be used in a tooltip or aria-label.
|
|
10
|
+
*/
|
|
11
|
+
readonly title?: string;
|
|
12
|
+
};
|
|
7
13
|
|
|
8
14
|
/**
|
|
9
15
|
* The configurations used to define a webpart's top actions.
|
package/dist/index-internal.d.ts
CHANGED
|
@@ -1,27 +1,7 @@
|
|
|
1
1
|
import { IPropertyPaneField } from '@microsoft/sp-property-pane/lib/propertyPaneFields/propertyPaneField/IPropertyPaneField';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
* @beta
|
|
5
|
-
*/
|
|
6
|
-
export declare type ActionConfiguration = IPropertyPaneField<any>;
|
|
3
|
+
/* Excluded from this release type: ActionConfiguration */
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
* The configurations used to define a webpart's top actions.
|
|
10
|
-
* For consistency between the Property Pane and the CanvasTopAction,
|
|
11
|
-
* top action configurations are based on IPropertyPaneField data structure.
|
|
12
|
-
* @beta
|
|
13
|
-
*/
|
|
14
|
-
export declare interface ITopActions {
|
|
15
|
-
/**
|
|
16
|
-
* List of PropertyPane top actions
|
|
17
|
-
*/
|
|
18
|
-
readonly topActions: ActionConfiguration[];
|
|
19
|
-
/**
|
|
20
|
-
* Fired once the top action configuration state has changed for the specified property path
|
|
21
|
-
* @param actionName - the specified property path that has been altered
|
|
22
|
-
* @param newValue - the new value for the specified actionName
|
|
23
|
-
*/
|
|
24
|
-
onExecute(actionName: string, newValue: any): void;
|
|
25
|
-
}
|
|
5
|
+
/* Excluded from this release type: ITopActions */
|
|
26
6
|
|
|
27
7
|
export { }
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/sp-top-actions",
|
|
3
|
-
"version": "1.16.0-
|
|
3
|
+
"version": "1.16.0-rc.0",
|
|
4
4
|
"description": "SharePoint Framework support for the web part top actions user interface.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "https://aka.ms/spfx/license",
|
|
6
6
|
"homepage": "http://aka.ms/spfx",
|
|
7
7
|
"main": "lib-commonjs/index.js",
|
|
8
8
|
"module": "lib/index.js",
|
|
9
9
|
"typings": "dist/index-internal.d.ts",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@microsoft/sp-property-pane": "1.16.0-
|
|
11
|
+
"@microsoft/sp-property-pane": "1.16.0-rc.0"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {}
|
|
14
14
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Portuguese (Brazil).docx
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Serbian (Cyrillic).docx
DELETED
|
Binary file
|
package/EULA/Microsoft Sharepoint Framework - Standalone (free) Use Terms - Serbian (Latin).docx
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|