@omnia/workplace 7.8.75-preview → 7.8.77-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,7 +441,6 @@ 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;
|
|
445
444
|
static get SignOffRequestJourney(): Guid;
|
|
446
445
|
static get SignOffRequestHeaderRequestedByMeList(): Guid;
|
|
447
446
|
static get SignOffRequestHeaderCreateNewRequest(): Guid;
|
|
@@ -450,7 +450,6 @@ 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"); }
|
|
454
453
|
static get SignOffRequestJourney() { return new fx_models_1.Guid("9c4dbbe9-8bdd-4017-b1d8-3e477e179010"); }
|
|
455
454
|
static get SignOffRequestHeaderRequestedByMeList() { return new fx_models_1.Guid("a152b5cf-cf71-4d52-bfe1-d61ef1c34cb4"); }
|
|
456
455
|
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 {
|
|
2
|
+
import { VueComponentBase } from "@omnia/fx/ux";
|
|
3
3
|
export interface TaxonomyNavigationQuerySettings {
|
|
4
4
|
enterpriseGlossaryInstanceId: number;
|
|
5
5
|
}
|
|
@@ -45,9 +45,7 @@ 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,
|
|
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;
|
|
48
|
+
abstract triggered(settings: TaxonomyNavigationBlockSettings<TQuery, TView>, blockInstance: IBlockInstance<TaxonomyNavigationBlockSettings<TQuery, TView>>, componentRef: VueComponentBase, renderingCallBack: (element: TaxonomyNavigationDisplayProviderRenderResult) => void): void;
|
|
51
49
|
abstract dispose(): void;
|
|
52
50
|
}
|
|
53
51
|
export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
@@ -55,11 +53,6 @@ export type TaxonomyNavigationDisplayProviderRenderResult = {
|
|
|
55
53
|
parents: JSX.Element[];
|
|
56
54
|
childrens: JSX.Element[];
|
|
57
55
|
};
|
|
58
|
-
export interface TaxonomyNavigationDisplayProviderScopedSlots {
|
|
59
|
-
current: void;
|
|
60
|
-
parents: void;
|
|
61
|
-
childrens: void;
|
|
62
|
-
}
|
|
63
56
|
declare module "./WorkplaceApi" {
|
|
64
57
|
interface IWorkplaceApi {
|
|
65
58
|
taxonomyNavigation: {
|