iszolea-ui 1.2.12 → 1.2.13
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.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare const enum DisplayType {
|
|
2
2
|
Icons = 1,
|
|
3
3
|
PredefinedValues = 2,
|
|
4
|
-
RabbitAction = 3
|
|
4
|
+
RabbitAction = 3,
|
|
5
|
+
Link = 4
|
|
5
6
|
}
|
|
6
7
|
export interface IIconsColumnEditorItem {
|
|
7
8
|
value: string;
|
|
@@ -15,7 +16,12 @@ export interface IRabbitActionEditorData {
|
|
|
15
16
|
actionType: string;
|
|
16
17
|
fields: string[];
|
|
17
18
|
}
|
|
18
|
-
export
|
|
19
|
+
export interface ILinkEditorData {
|
|
20
|
+
url: string;
|
|
21
|
+
text: string;
|
|
22
|
+
openNewTab: boolean;
|
|
23
|
+
}
|
|
24
|
+
export declare type IDisplayTypeSettings = IDisplayIconsTypeSettings | IDisplayIPredefinedValuesTypeSettings | IDisplayIRabbitActionTypeSettings | IDisplayILinkTypeSettings;
|
|
19
25
|
export interface IDisplayIconsTypeSettings {
|
|
20
26
|
type: DisplayType.Icons;
|
|
21
27
|
data: IIconsColumnEditorItem[];
|
|
@@ -28,6 +34,10 @@ export interface IDisplayIRabbitActionTypeSettings {
|
|
|
28
34
|
type: DisplayType.RabbitAction;
|
|
29
35
|
data: IRabbitActionEditorData;
|
|
30
36
|
}
|
|
37
|
+
export interface IDisplayILinkTypeSettings {
|
|
38
|
+
type: DisplayType.Link;
|
|
39
|
+
data: ILinkEditorData;
|
|
40
|
+
}
|
|
31
41
|
export interface IControlConfiguratorOptions {
|
|
32
42
|
$container: JQuery;
|
|
33
43
|
isStandalonePage: boolean;
|