@omnia/workplace 7.7.6 → 7.7.7
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.
|
@@ -437,6 +437,7 @@ export declare class WebComponentManifests {
|
|
|
437
437
|
static get SharePointTermUISettingsBlade(): Guid;
|
|
438
438
|
static get TaxonomyNavigation(): Guid;
|
|
439
439
|
static get TaxonomyNavigationSettings(): Guid;
|
|
440
|
+
static get TaxonomyNavigationRenderer(): Guid;
|
|
440
441
|
static get SignOffRequestJourney(): Guid;
|
|
441
442
|
static get SignOffRequestHeaderRequestedByMeList(): Guid;
|
|
442
443
|
static get SignOffRequestHeaderCreateNewRequest(): Guid;
|
|
@@ -446,6 +446,7 @@ class WebComponentManifests {
|
|
|
446
446
|
static get SharePointTermUISettingsBlade() { return new fx_models_1.Guid("e5424a19-67bf-4599-bfde-ebc101b3f5ea"); }
|
|
447
447
|
static get TaxonomyNavigation() { return new fx_models_1.Guid("0ed328bd-5d9e-4613-85d7-fb51abb490a1"); }
|
|
448
448
|
static get TaxonomyNavigationSettings() { return new fx_models_1.Guid("aada204b-9c67-40e3-892e-0bb05e003f57"); }
|
|
449
|
+
static get TaxonomyNavigationRenderer() { return new fx_models_1.Guid("d20ca8cb-57f2-4411-9feb-5f3c3f518153"); }
|
|
449
450
|
static get SignOffRequestJourney() { return new fx_models_1.Guid("9c4dbbe9-8bdd-4017-b1d8-3e477e179010"); }
|
|
450
451
|
static get SignOffRequestHeaderRequestedByMeList() { return new fx_models_1.Guid("a152b5cf-cf71-4d52-bfe1-d61ef1c34cb4"); }
|
|
451
452
|
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, toggleVisibility: (visible: boolean) => 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: {
|