@omnia/workplace 7.8.77-preview → 7.8.79-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.
|
@@ -441,6 +441,7 @@ export declare class WebComponentManifests {
|
|
|
441
441
|
static get SharePointTermUISettingsBlade(): Guid;
|
|
442
442
|
static get TaxonomyNavigation(): Guid;
|
|
443
443
|
static get TaxonomyNavigationSettings(): Guid;
|
|
444
|
+
static get TaxonomyNavigationRenderer(): Guid;
|
|
444
445
|
static get SignOffRequestJourney(): Guid;
|
|
445
446
|
static get SignOffRequestHeaderRequestedByMeList(): Guid;
|
|
446
447
|
static get SignOffRequestHeaderCreateNewRequest(): Guid;
|
|
@@ -450,6 +450,7 @@ class WebComponentManifests {
|
|
|
450
450
|
static get SharePointTermUISettingsBlade() { return new fx_models_1.Guid("e5424a19-67bf-4599-bfde-ebc101b3f5ea"); }
|
|
451
451
|
static get TaxonomyNavigation() { return new fx_models_1.Guid("0ed328bd-5d9e-4613-85d7-fb51abb490a1"); }
|
|
452
452
|
static get TaxonomyNavigationSettings() { return new fx_models_1.Guid("aada204b-9c67-40e3-892e-0bb05e003f57"); }
|
|
453
|
+
static get TaxonomyNavigationRenderer() { return new fx_models_1.Guid("d20ca8cb-57f2-4411-9feb-5f3c3f518153"); }
|
|
453
454
|
static get SignOffRequestJourney() { return new fx_models_1.Guid("9c4dbbe9-8bdd-4017-b1d8-3e477e179010"); }
|
|
454
455
|
static get SignOffRequestHeaderRequestedByMeList() { return new fx_models_1.Guid("a152b5cf-cf71-4d52-bfe1-d61ef1c34cb4"); }
|
|
455
456
|
static get SignOffRequestHeaderCreateNewRequest() { return new fx_models_1.Guid("2ea29d82-fbce-4de4-93c1-126f7f4c2493"); }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApiPath, BlockSettings, EnterpriseGlossaryInformationProviderId, EnterpriseGlossaryInformationSourceSettings, GuidValue, IBlockInstance, MultilingualString, SpacingSettings, ThemeDefinition } from "@omnia/fx/models";
|
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
|
2
|
+
import { ScopedSlots, VueComponentBase } from "@omnia/fx/ux";
|
|
3
3
|
export interface TaxonomyNavigationQuerySettings {
|
|
4
4
|
enterpriseGlossaryInstanceId: number;
|
|
5
5
|
}
|
|
@@ -45,7 +45,9 @@ export interface ITaxonomyNavigationSettingsProvider<TQuery extends TaxonomyNavi
|
|
|
45
45
|
}
|
|
46
46
|
export declare abstract class TaxonomyNavigationDisplayProviderBase<TQuery extends TaxonomyNavigationQuerySettings = TaxonomyNavigationQuerySettings, TView extends TaxonomyNavigationViewSettings = TaxonomyNavigationViewSettings> {
|
|
47
47
|
provider: EnterpriseGlossaryTaxonomyNavigationDisplayProvider;
|
|
48
|
-
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase,
|
|
48
|
+
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase,
|
|
49
|
+
/** @deprecated element parameter does not reactive correctly and will be removed in future major version, use scopedSlots parameter instead. */
|
|
50
|
+
renderingCallBack: (element: TaxonomyNavigationDisplayProviderRenderResult, scopedSlots: ScopedSlots<TaxonomyNavigationDisplayProviderScopedSlots>) => void, setCurrentState: (value: boolean) => void, setChildrenState: (value: number) => void): void;
|
|
49
51
|
abstract dispose(): void;
|
|
50
52
|
}
|
|
51
53
|
export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
@@ -53,6 +55,11 @@ export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
|
53
55
|
parents: JSX.Element[];
|
|
54
56
|
childrens: JSX.Element[];
|
|
55
57
|
};
|
|
58
|
+
export interface TaxonomyNavigationDisplayProviderScopedSlots {
|
|
59
|
+
current: void;
|
|
60
|
+
parents: void;
|
|
61
|
+
childrens: void;
|
|
62
|
+
}
|
|
56
63
|
declare module "./WorkplaceApi" {
|
|
57
64
|
interface IWorkplaceApi {
|
|
58
65
|
taxonomyNavigation: {
|