barsa-sap-ui 1.0.404 → 1.0.405
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.
- package/esm2020/lib/barsa-search-form/barsa-search-form.component.mjs +1 -1
- package/esm2020/lib/barsa-simple-form/barsa-simple-form.component.mjs +21 -6
- package/esm2020/lib/constants.mjs +9 -1
- package/esm2020/lib/form-toolbar/form-toolbar.component.mjs +3 -3
- package/esm2020/lib/form-toolbar-button/form-toolbar-button.component.mjs +3 -3
- package/esm2020/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +32 -17
- package/esm2020/lib/list-item/list-item.component.mjs +2 -2
- package/esm2020/lib/ly-empty-space/ly-empty-space.component.mjs +9 -2
- package/esm2020/lib/ui-calendar/ui-calendar.component.mjs +1 -1
- package/esm2020/lib/ui-editable-grid/ui-editable-grid.component.mjs +1 -1
- package/esm2020/lib/ui-form-panel/ui-form-panel.component.mjs +3 -3
- package/esm2020/lib/ui-gantt-chart/ui-gantt-chart.component.mjs +1 -1
- package/esm2020/lib/ui-grid/ui-grid.component.mjs +1 -1
- package/esm2020/lib/ui-list-view/ui-list-view.component.mjs +3 -3
- package/esm2020/lib/ui-multi-select-card/ui-multi-select-card.component.mjs +4 -3
- package/esm2020/lib/ui-multi-select-combo/ui-multi-select-combo.component.mjs +16 -13
- package/esm2020/lib/ui-multi-select-radio/ui-multi-select-radio.component.mjs +5 -4
- package/esm2020/lib/ui-multi-select-slider/ui-multi-select-slider.component.mjs +12 -10
- package/esm2020/lib/ui-multi-select-smile/ui-multi-select-smile.component.mjs +8 -19
- package/esm2020/lib/ui-num-int-slider/ui-num-int-slider.component.mjs +3 -3
- package/esm2020/lib/ui-report-container/ui-report-container.component.mjs +3 -3
- package/esm2020/lib/ui-tree/ui-tree.component.mjs +1 -1
- package/esm2020/lib/ulv-toolbar/ulv-toolbar.component.mjs +6 -4
- package/fesm2015/barsa-sap-ui.mjs +146 -107
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +146 -107
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-simple-form/barsa-simple-form.component.d.ts +9 -1
- package/lib/constants.d.ts +6 -0
- package/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.d.ts +9 -1
- package/lib/ly-empty-space/ly-empty-space.component.d.ts +1 -0
- package/lib/ui-form-panel/ui-form-panel.component.d.ts +4 -0
- package/lib/ui-multi-select-combo/ui-multi-select-combo.component.d.ts +1 -0
- package/lib/ui-multi-select-radio/ui-multi-select-radio.component.d.ts +1 -1
- package/lib/ui-multi-select-slider/ui-multi-select-slider.component.d.ts +10 -4
- package/lib/ui-multi-select-smile/ui-multi-select-smile.component.d.ts +3 -10
- package/lib/ui-num-int-slider/ui-num-int-slider.component.d.ts +1 -0
- package/lib/ulv-toolbar/ulv-toolbar.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ContentDensity, TabPanelComponent, ToolbarComponent } from '@fundamental-ngx/core';
|
|
3
3
|
import { BaseComponent, BreadCrumbInfo, MetaobjectDataModel, LayoutSetting, FormVisibilityStatus } from 'barsa-novin-ray-core';
|
|
4
|
+
import { FormLayoutCol } from '../constants';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BarsaSimpleFormComponent extends BaseComponent implements OnInit, OnChanges {
|
|
6
7
|
el: ElementRef;
|
|
@@ -43,6 +44,10 @@ export declare class BarsaSimpleFormComponent extends BaseComponent implements O
|
|
|
43
44
|
standalone: boolean;
|
|
44
45
|
modernTabs: LayoutSetting[];
|
|
45
46
|
workflowButtons: any[];
|
|
47
|
+
layoutGridCol: number;
|
|
48
|
+
colLg: number;
|
|
49
|
+
colXl: number;
|
|
50
|
+
colMd: number;
|
|
46
51
|
formVisibilityStatus: FormVisibilityStatus;
|
|
47
52
|
titleRef: ViewContainerRef;
|
|
48
53
|
headerAvatarRef: TemplateRef<any>;
|
|
@@ -52,6 +57,8 @@ export declare class BarsaSimpleFormComponent extends BaseComponent implements O
|
|
|
52
57
|
workflowInfoText: string;
|
|
53
58
|
workflowButtonsComboMode: boolean;
|
|
54
59
|
isFirefox: boolean;
|
|
60
|
+
layout1: FormLayoutCol;
|
|
61
|
+
layout2: FormLayoutCol;
|
|
55
62
|
constructor(el: ElementRef);
|
|
56
63
|
ngOnInit(): void;
|
|
57
64
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -60,6 +67,7 @@ export declare class BarsaSimpleFormComponent extends BaseComponent implements O
|
|
|
60
67
|
onTabChanged(tab: TabPanelComponent): void;
|
|
61
68
|
getNumber(val: any): number;
|
|
62
69
|
onDynamicComponentEvents(e: any): void;
|
|
70
|
+
_hanldeLayout(): void;
|
|
63
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSimpleFormComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaSimpleFormComponent, "bsu-barsa-simple-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "isModal": "isModal"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; "workflowButtons": "workflowButtons"; "formVisibilityStatus": "formVisibilityStatus"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaSimpleFormComponent, "bsu-barsa-simple-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "isModal": "isModal"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; "workflowButtons": "workflowButtons"; "layoutGridCol": "layoutGridCol"; "colLg": "colLg"; "colXl": "colXl"; "colMd": "colMd"; "formVisibilityStatus": "formVisibilityStatus"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
65
73
|
}
|
package/lib/constants.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
+
export interface FormLayoutCol {
|
|
2
|
+
colXl: number;
|
|
3
|
+
colLg: number;
|
|
4
|
+
colMd: number;
|
|
5
|
+
}
|
|
1
6
|
export declare function insertAvatar(elementRef: any, headerAvatarRef: any, titleRef: any, avatar: any): void;
|
|
7
|
+
export declare function GetFormLayoutGrid(ceil: boolean, colXl: number, colLg: number, colMd: number): FormLayoutCol;
|
|
2
8
|
export declare const sort: <T extends object>(a: T, b: T, key: string | null, isNumber?: boolean) => number;
|
|
3
9
|
export declare function _trimEnd(value: string): string;
|
|
4
10
|
export declare function getNestedValue<T extends Record<string, any>>(key: string, object: T): any;
|
|
@@ -2,6 +2,7 @@ import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef
|
|
|
2
2
|
import { ContentDensity, DynamicPageComponent, TabPanelComponent } from '@fundamental-ngx/core';
|
|
3
3
|
import { BaseComponent, BreadCrumbInfo, MetaobjectDataModel, LayoutSetting, FormVisibilityStatus } from 'barsa-novin-ray-core';
|
|
4
4
|
import { FormToolbarComponent } from '../form-toolbar/form-toolbar.component';
|
|
5
|
+
import { FormLayoutCol } from '../constants';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class FundamentalDynamicFormComponent extends BaseComponent implements OnInit, OnChanges {
|
|
7
8
|
el: ElementRef;
|
|
@@ -46,6 +47,10 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
46
47
|
standalone: boolean;
|
|
47
48
|
modernTabs: LayoutSetting[];
|
|
48
49
|
formVisibilityStatus: FormVisibilityStatus;
|
|
50
|
+
layoutGridCol: number;
|
|
51
|
+
colLg: number;
|
|
52
|
+
colXl: number;
|
|
53
|
+
colMd: number;
|
|
49
54
|
titleRef: ViewContainerRef;
|
|
50
55
|
headerAvatarRef: TemplateRef<any>;
|
|
51
56
|
closeFormTemplate: TemplateRef<any>;
|
|
@@ -56,6 +61,8 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
56
61
|
workflowInfoText: string;
|
|
57
62
|
workflowButtonsComboMode: boolean;
|
|
58
63
|
isFirefox: boolean;
|
|
64
|
+
layout1: FormLayoutCol;
|
|
65
|
+
layout2: FormLayoutCol;
|
|
59
66
|
constructor(el: ElementRef);
|
|
60
67
|
ngOnInit(): void;
|
|
61
68
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -63,6 +70,7 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
63
70
|
onTabChanged(tab: TabPanelComponent): void;
|
|
64
71
|
getNumber(val: any): number;
|
|
65
72
|
onDynamicComponentEvents(e: any): void;
|
|
73
|
+
_hanldeLayout(): void;
|
|
66
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<FundamentalDynamicFormComponent, never>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "fullscreen": "fullscreen"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; "formVisibilityStatus": "formVisibilityStatus"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; "fullscreenRequest": "fullscreenRequest"; }, never, never, false>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "fullscreen": "fullscreen"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; "formVisibilityStatus": "formVisibilityStatus"; "layoutGridCol": "layoutGridCol"; "colLg": "colLg"; "colXl": "colXl"; "colMd": "colMd"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; "fullscreenRequest": "fullscreenRequest"; }, never, never, false>;
|
|
68
76
|
}
|
|
@@ -3,6 +3,7 @@ import { LayoutItemBaseComponent } from 'barsa-novin-ray-core';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class LyEmptySpaceComponent extends LayoutItemBaseComponent implements OnInit {
|
|
5
5
|
emptyClass: boolean;
|
|
6
|
+
isBig: boolean;
|
|
6
7
|
flex: any;
|
|
7
8
|
maxWidth: any;
|
|
8
9
|
height: any;
|
|
@@ -19,6 +19,7 @@ export declare class UiMultiSelectComboComponent extends FieldBaseComponent impl
|
|
|
19
19
|
id: string;
|
|
20
20
|
txt: string;
|
|
21
21
|
}): any;
|
|
22
|
+
protected _initSelectedItems(): void;
|
|
22
23
|
protected _setDataList(): void;
|
|
23
24
|
protected _raiseValueChanged(): void;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiMultiSelectComboComponent, never>;
|
|
@@ -11,7 +11,7 @@ export declare class UiMultiSelectRadioComponent extends UiMultiSelectComboCompo
|
|
|
11
11
|
id: string;
|
|
12
12
|
ngOnInit(): void;
|
|
13
13
|
ngAfterViewInit(): void;
|
|
14
|
-
|
|
14
|
+
onItemClicked(item: any): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiMultiSelectRadioComponent, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiMultiSelectRadioComponent, "bsu-ui-multi-select-radio", never, {}, {}, never, never, false>;
|
|
17
17
|
}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { UiMultiSelectComboComponent } from '../ui-multi-select-combo/ui-multi-select-combo.component';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
2
|
import { SliderComponent } from '@fundamental-ngx/core';
|
|
3
|
+
import { UiMultiSelectComboComponent } from '../ui-multi-select-combo/ui-multi-select-combo.component';
|
|
4
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class UiMultiSelectSliderComponent extends UiMultiSelectComboComponent implements OnInit, OnDestroy
|
|
6
|
+
export declare class UiMultiSelectSliderComponent extends UiMultiSelectComboComponent implements OnInit, OnDestroy {
|
|
6
7
|
slider: SliderComponent;
|
|
7
8
|
selectedValue: {
|
|
8
9
|
value: string;
|
|
9
10
|
label: string;
|
|
10
11
|
};
|
|
11
|
-
|
|
12
|
+
sliderWidth: number;
|
|
13
|
+
parameters: MultiSelectSliderSetting | MetaobjectDataModel;
|
|
12
14
|
ngOnInit(): void;
|
|
13
15
|
protected _setDataList(): void;
|
|
14
16
|
_handleSetValue(): void;
|
|
@@ -16,3 +18,7 @@ export declare class UiMultiSelectSliderComponent extends UiMultiSelectComboComp
|
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiMultiSelectSliderComponent, never>;
|
|
17
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiMultiSelectSliderComponent, "bsu-ui-multi-select-slider", never, {}, {}, never, never, false>;
|
|
18
20
|
}
|
|
21
|
+
interface MultiSelectSliderSetting extends MetaobjectDataModel {
|
|
22
|
+
MaxWidth: number;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MetaobjectDataModel, MoForReportModel } from 'barsa-novin-ray-core';
|
|
3
|
-
import {
|
|
3
|
+
import { UiMultiSelectSliderComponent } from '../ui-multi-select-slider/ui-multi-select-slider.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class UiMultiSelectSmileComponent extends
|
|
6
|
-
selectedItems: {
|
|
7
|
-
id: string;
|
|
8
|
-
txt: string;
|
|
9
|
-
}[];
|
|
10
|
-
dataList: any;
|
|
11
|
-
id: string;
|
|
5
|
+
export declare class UiMultiSelectSmileComponent extends UiMultiSelectSliderComponent implements OnInit, OnDestroy {
|
|
12
6
|
smileIcons: SmileSetting[];
|
|
13
7
|
parameters: MultiSelectSmileSetting;
|
|
14
8
|
ngOnInit(): void;
|
|
15
|
-
|
|
16
|
-
onRadioClicked(smile: SmileSetting): void;
|
|
9
|
+
onItemClicked(smile: SmileSetting): void;
|
|
17
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiMultiSelectSmileComponent, never>;
|
|
18
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiMultiSelectSmileComponent, "bsu-ui-multi-select-smile", never, {}, {}, never, never, false>;
|
|
19
12
|
}
|
|
@@ -4,6 +4,7 @@ import { BaseComponent, DefaultCommandsAccess, AbbrevationDeviceSize, DeviceSize
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class UlvToolbarComponent extends BaseComponent implements OnChanges {
|
|
6
6
|
el: ElementRef;
|
|
7
|
+
allowGridColumnSort: boolean;
|
|
7
8
|
useLayoutItemTextForControl: boolean;
|
|
8
9
|
enableSearch: boolean;
|
|
9
10
|
hideTitle: boolean;
|
|
@@ -44,5 +45,5 @@ export declare class UlvToolbarComponent extends BaseComponent implements OnChan
|
|
|
44
45
|
_trackBy(index: any, item: any): string;
|
|
45
46
|
identify(index: any, item: any): string;
|
|
46
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<UlvToolbarComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UlvToolbarComponent, "bsu-ulv-toolbar", never, { "useLayoutItemTextForControl": "useLayoutItemTextForControl"; "enableSearch": "enableSearch"; "hideTitle": "hideTitle"; "title": "title"; "deviceName": "deviceName"; "deviceSize": "deviceSize"; "access": "access"; "hideToolbar": "hideToolbar"; "toolbarButtons": "toolbarButtons"; "contentDensity": "contentDensity"; "inlineEditMode": "inlineEditMode"; "allowInlineEdit": "allowInlineEdit"; "gridSetting": "gridSetting"; "viewCollection": "viewCollection"; "reportView": "reportView"; "inDialog": "inDialog"; "isMultiSelect": "isMultiSelect"; "hasSelected": "hasSelected"; "config": "config"; "hidden": "hidden"; "buttons": "buttons"; "moDataListCount": "moDataListCount"; }, { "search": "search"; "groupbyClick": "groupbyClick"; "sortClick": "sortClick"; "columnClick": "columnClick"; "editModeClick": "editModeClick"; "viewClick": "viewClick"; "createNewInlineMo": "createNewInlineMo"; }, never, ["[fd-toolbar-item]"], false>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UlvToolbarComponent, "bsu-ulv-toolbar", never, { "allowGridColumnSort": "allowGridColumnSort"; "useLayoutItemTextForControl": "useLayoutItemTextForControl"; "enableSearch": "enableSearch"; "hideTitle": "hideTitle"; "title": "title"; "deviceName": "deviceName"; "deviceSize": "deviceSize"; "access": "access"; "hideToolbar": "hideToolbar"; "toolbarButtons": "toolbarButtons"; "contentDensity": "contentDensity"; "inlineEditMode": "inlineEditMode"; "allowInlineEdit": "allowInlineEdit"; "gridSetting": "gridSetting"; "viewCollection": "viewCollection"; "reportView": "reportView"; "inDialog": "inDialog"; "isMultiSelect": "isMultiSelect"; "hasSelected": "hasSelected"; "config": "config"; "hidden": "hidden"; "buttons": "buttons"; "moDataListCount": "moDataListCount"; }, { "search": "search"; "groupbyClick": "groupbyClick"; "sortClick": "sortClick"; "columnClick": "columnClick"; "editModeClick": "editModeClick"; "viewClick": "viewClick"; "createNewInlineMo": "createNewInlineMo"; }, never, ["[fd-toolbar-item]"], false>;
|
|
48
49
|
}
|