@omnia/workplace 6.5.94-preview → 6.5.98-preview
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.
|
@@ -370,6 +370,7 @@ export declare class WebComponentManifests {
|
|
|
370
370
|
static get SignOffRequestResourceProvider(): Guid;
|
|
371
371
|
static get SignOffRequestListDialog(): Guid;
|
|
372
372
|
static get SignOffRequestUpdateStatusDialog(): Guid;
|
|
373
|
+
static get ShareToTeams(): Guid;
|
|
373
374
|
static get MicrosoftTeamChannelFeedCore(): Guid;
|
|
374
375
|
static get MicrosoftTeamChannelFeedBlockSettings(): Guid;
|
|
375
376
|
static get MicrosoftTeamChannelFeedBlock(): Guid;
|
|
@@ -1844,6 +1844,11 @@ var WebComponentManifests = /** @class */ (function () {
|
|
|
1844
1844
|
enumerable: false,
|
|
1845
1845
|
configurable: true
|
|
1846
1846
|
});
|
|
1847
|
+
Object.defineProperty(WebComponentManifests, "ShareToTeams", {
|
|
1848
|
+
get: function () { return new Guid("6afd1b39-b7d3-4a1b-9ea7-ad2a9f97c504"); },
|
|
1849
|
+
enumerable: false,
|
|
1850
|
+
configurable: true
|
|
1851
|
+
});
|
|
1847
1852
|
Object.defineProperty(WebComponentManifests, "MicrosoftTeamChannelFeedCore", {
|
|
1848
1853
|
get: function () { return new Guid("c3899c18-6445-47b8-a1db-fb583e1c0f54"); },
|
|
1849
1854
|
enumerable: false,
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { ApiPath, BlockSettings, EnterpriseGlossaryInformationProviderId, EnterpriseGlossaryInformationSourceSettings, GuidValue, IBlockInstance, MultilingualString, SpacingSettings, ThemeDefinition } from "@omnia/fx/models";
|
|
2
|
-
import {
|
|
3
|
-
import { IVueComponentBase } from "@omnia/fx/internal-do-not-import-from-here/ux/VueComponentBase";
|
|
2
|
+
import { VueComponentBase } from '@omnia/fx/ux';
|
|
4
3
|
export interface TaxonomyNavigationQuerySettings {
|
|
5
4
|
enterpriseGlossaryInstanceId: number;
|
|
6
5
|
}
|
|
7
|
-
|
|
6
|
+
export interface TaxonomyCardStyle {
|
|
8
7
|
theming: ThemeDefinition;
|
|
9
8
|
width: number;
|
|
10
9
|
spacing: SpacingSettings;
|
|
11
|
-
}
|
|
10
|
+
}
|
|
12
11
|
export interface TaxonomyNavigationSelectionViewSettings {
|
|
13
12
|
cardStyle: TaxonomyCardStyle;
|
|
14
13
|
}
|
|
@@ -16,6 +15,7 @@ export interface TaxonomyNavigationViewSettings {
|
|
|
16
15
|
numberOfParentLevels: number;
|
|
17
16
|
numberOfChildrensLimit: number;
|
|
18
17
|
showTaxonomyName: boolean;
|
|
18
|
+
lineColor: string;
|
|
19
19
|
defaultView: TaxonomyNavigationSelectionViewSettings;
|
|
20
20
|
currentView: TaxonomyNavigationSelectionViewSettings;
|
|
21
21
|
}
|
|
@@ -30,11 +30,6 @@ export interface TaxonomyNavigationBlockSettings<TQuery extends TaxonomyNavigati
|
|
|
30
30
|
borderColor: string;
|
|
31
31
|
spacing: SpacingSettings;
|
|
32
32
|
title: MultilingualString;
|
|
33
|
-
cardStyle: {
|
|
34
|
-
theming: ThemeDefinition;
|
|
35
|
-
width: number;
|
|
36
|
-
spacing: SpacingSettings;
|
|
37
|
-
};
|
|
38
33
|
query: TQuery;
|
|
39
34
|
view: TView;
|
|
40
35
|
provider: EnterpriseGlossaryTaxonomyNavigationSettingsProvider;
|
|
@@ -45,13 +40,12 @@ export interface ITaxonomyNavigationRegistration {
|
|
|
45
40
|
}
|
|
46
41
|
export interface ITaxonomyNavigationSettingsProvider<TQuery extends TaxonomyNavigationQuerySettings = TaxonomyNavigationQuerySettings, TView extends TaxonomyNavigationViewSettings = TaxonomyNavigationViewSettings> {
|
|
47
42
|
provider: EnterpriseGlossaryTaxonomyNavigationSettingsProvider;
|
|
48
|
-
renderQuerySettings?: (settings: TQuery, omponentRef:
|
|
49
|
-
renderViewSettings?: (settings: TView, omponentRef:
|
|
43
|
+
renderQuerySettings?: (settings: TQuery, omponentRef: VueComponentBase) => JSX.Element;
|
|
44
|
+
renderViewSettings?: (settings: TView, omponentRef: VueComponentBase) => JSX.Element;
|
|
50
45
|
}
|
|
51
46
|
export declare abstract class TaxonomyNavigationDisplayProviderBase<TQuery extends TaxonomyNavigationQuerySettings = TaxonomyNavigationQuerySettings, TView extends TaxonomyNavigationViewSettings = TaxonomyNavigationViewSettings> {
|
|
52
47
|
provider: EnterpriseGlossaryTaxonomyNavigationDisplayProvider;
|
|
53
|
-
abstract
|
|
54
|
-
abstract triggered(renderingCallBack: (element: TaxonomyNavigationDisplayProviderRenderResult) => void): void;
|
|
48
|
+
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase, renderingCallBack: (element: TaxonomyNavigationDisplayProviderRenderResult) => void): void;
|
|
55
49
|
abstract dispose(): void;
|
|
56
50
|
}
|
|
57
51
|
export declare type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
@@ -77,4 +71,3 @@ declare module './WorkplaceApi' {
|
|
|
77
71
|
};
|
|
78
72
|
}
|
|
79
73
|
}
|
|
80
|
-
export {};
|