Skip to content

Commit c9cb149

Browse files
committed
Merge branch 'dev' of https://github.com/mgwojciech/sp-dev-fx-controls-react into mgwojciech-dev
2 parents 480836d + aa0b30a commit c9cb149

23 files changed

+2510
-10
lines changed

package-lock.json

Lines changed: 615 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"start:v8": "NODE_NO_HTTP2=1 gulp serve --nobrowser"
2222
},
2323
"dependencies": {
24+
"@fluentui/react-northstar": "^0.51.3",
2425
"@microsoft/decorators": "1.11.0",
2526
"@microsoft/sp-core-library": "1.11.0",
2627
"@microsoft/sp-listview-extensibility": "1.11.0",

src/common/model/TAction.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export type TAction = {
2+
title: string;
3+
iconName?: string;
4+
multi?: boolean;
5+
__internal_callback__?: string;
6+
};
7+
8+
export type TActions = {
9+
[actionKey: string]: TAction;
10+
};

0 commit comments

Comments
 (0)