@gravitee/ui-components 3.27.2 → 3.27.3
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/package.json +4 -1
- package/src/atoms/gv-button/gv-button.d.ts +2 -2
- package/src/atoms/gv-checkbox/gv-checkbox.d.ts +3 -3
- package/src/atoms/gv-date-picker-calendar/gv-date-picker-calendar.d.ts +4 -4
- package/src/atoms/gv-input/gv-input.d.ts +5 -5
- package/src/atoms/gv-message/gv-message.d.ts +1 -1
- package/src/atoms/gv-select/gv-select.d.ts +2 -2
- package/src/atoms/gv-select-native/gv-select-native.d.ts +3 -3
- package/src/atoms/gv-text/gv-text.d.ts +2 -2
- package/src/charts/gv-chart-bar/gv-chart-bar.d.ts +1 -1
- package/src/charts/gv-chart-gauge/gv-chart-gauge.d.ts +1 -1
- package/src/charts/gv-chart-histogram/gv-chart-histogram.d.ts +1 -1
- package/src/charts/gv-chart-line/gv-chart-line.d.ts +1 -1
- package/src/charts/gv-chart-map/gv-chart-map.d.ts +1 -1
- package/src/charts/gv-chart-pie/gv-chart-pie.d.ts +1 -1
- package/src/mixins/chart-element.d.ts +1 -1
- package/src/mixins/input-element.d.ts +1 -1
- package/src/mixins/item-resource.d.ts +3 -3
- package/src/molecules/gv-card/gv-card.d.ts +4 -4
- package/src/molecules/gv-card-full/gv-card-full.d.ts +4 -4
- package/src/molecules/gv-card-list/gv-card-list.d.ts +2 -2
- package/src/molecules/gv-category/gv-category.d.ts +1 -1
- package/src/molecules/gv-cron-editor/gv-cron-editor.d.ts +3 -3
- package/src/molecules/gv-list/gv-list.d.ts +5 -5
- package/src/molecules/gv-metrics/gv-metrics.d.ts +2 -2
- package/src/molecules/gv-modal/gv-modal.stories.d.ts +1 -1
- package/src/molecules/gv-nav/gv-nav.d.ts +1 -1
- package/src/molecules/gv-option/gv-option.d.ts +1 -1
- package/src/molecules/gv-plans/gv-plans.d.ts +1 -1
- package/src/molecules/gv-popover/gv-popover.d.ts +1 -1
- package/src/molecules/gv-promote/gv-promote.d.ts +4 -4
- package/src/molecules/gv-rating/gv-rating.d.ts +1 -1
- package/src/molecules/gv-rating-list/gv-rating-list.d.ts +2 -2
- package/src/molecules/gv-row/gv-row.d.ts +1 -1
- package/src/molecules/gv-stats/gv-stats.d.ts +2 -2
- package/src/molecules/gv-stepper/gv-stepper.d.ts +2 -2
- package/src/molecules/gv-table/gv-table.d.ts +8 -8
- package/src/molecules/gv-tree/gv-tree.d.ts +1 -1
- package/src/organisms/gv-documentation/gv-documentation.d.ts +1 -1
- package/src/organisms/gv-header/gv-header.d.ts +3 -3
- package/src/organisms/gv-http-client/gv-http-client.d.ts +5 -5
- package/src/organisms/gv-http-client/gv-http-client.stories.d.ts +1 -1
- package/src/organisms/gv-menu/gv-menu.d.ts +1 -1
- package/src/organisms/gv-pagination/gv-pagination.d.ts +1 -1
- package/src/organisms/gv-properties/gv-properties.d.ts +7 -7
- package/src/organisms/gv-resources/gv-resources.d.ts +4 -4
- package/src/organisms/gv-schema-form/gv-schema-form.d.ts +1 -1
- package/src/organisms/gv-schema-form-array/gv-schema-form-array.d.ts +2 -2
- package/src/organisms/gv-schema-form-control/gv-schema-form-control.d.ts +1 -1
- package/src/organisms/gv-schema-form-control-object/gv-schema-form-control-object.d.ts +2 -2
- package/src/organisms/gv-user-menu/gv-user-menu.d.ts +1 -1
- package/src/policy-studio/gv-flow/gv-flow.d.ts +2 -2
- package/src/policy-studio/gv-flow-step/gv-flow-step.d.ts +2 -2
- package/src/policy-studio/gv-policy-studio/gv-policy-studio.d.ts +9 -9
- package/src/policy-studio/gv-policy-studio-menu/gv-policy-studio-menu.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravitee/ui-components",
|
|
3
|
-
"version": "3.27.
|
|
3
|
+
"version": "3.27.3",
|
|
4
4
|
"description": "Gravitee.io UI Components library, based on Web Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
"*.{js,html,css,json}": "prettier --write",
|
|
49
49
|
"package.json": "yarn lint:package"
|
|
50
50
|
},
|
|
51
|
+
"resolutions": {
|
|
52
|
+
"colors": "1.4.0"
|
|
53
|
+
},
|
|
51
54
|
"dependencies": {
|
|
52
55
|
"@codemirror/basic-setup": "^0.19.1",
|
|
53
56
|
"@codemirror/language-data": "^0.19.1",
|
|
@@ -101,9 +101,9 @@ export class GvButton extends LitElement {
|
|
|
101
101
|
_onKeyDown(e: any): void;
|
|
102
102
|
_onClick(e: any): void;
|
|
103
103
|
icon: string | undefined;
|
|
104
|
-
_getIconRight(): "" | import("lit
|
|
104
|
+
_getIconRight(): "" | import("lit").TemplateResult<1>;
|
|
105
105
|
_hasIconLeft(): any;
|
|
106
|
-
_getIconLeft(): "" | import("lit
|
|
106
|
+
_getIconLeft(): "" | import("lit").TemplateResult<1>;
|
|
107
107
|
_hasContent: boolean | undefined;
|
|
108
108
|
}
|
|
109
109
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -10,7 +10,7 @@ declare const GvCheckbox_base: {
|
|
|
10
10
|
updated(changedProperties: any): void;
|
|
11
11
|
getInputElement(): any;
|
|
12
12
|
readonly offsetHeight: any;
|
|
13
|
-
renderLabel(): "" | import("lit
|
|
13
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
};
|
|
15
15
|
[x: string]: any;
|
|
16
16
|
readonly properties: {
|
|
@@ -107,8 +107,8 @@ export class GvCheckbox extends GvCheckbox_base {
|
|
|
107
107
|
_type: string;
|
|
108
108
|
checked: boolean;
|
|
109
109
|
value: string;
|
|
110
|
-
_renderLabel(): "" | import("lit
|
|
110
|
+
_renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
111
111
|
_onInput(): void;
|
|
112
|
-
render(): import("lit
|
|
112
|
+
render(): import("lit").TemplateResult<1>;
|
|
113
113
|
}
|
|
114
114
|
export {};
|
|
@@ -132,10 +132,10 @@ export class GvDatePickerCalendar extends LitElement {
|
|
|
132
132
|
set dateTo(arg: any);
|
|
133
133
|
_to: any;
|
|
134
134
|
computeArrayOfTime(size: any): string[];
|
|
135
|
-
_renderPreviousNav(): "" | import("lit
|
|
136
|
-
_renderCurrentNav(): import("lit
|
|
137
|
-
_renderNextNav(): import("lit
|
|
138
|
-
_renderDays(): import("lit
|
|
135
|
+
_renderPreviousNav(): "" | import("lit").TemplateResult<1>;
|
|
136
|
+
_renderCurrentNav(): import("lit").TemplateResult<1>;
|
|
137
|
+
_renderNextNav(): import("lit").TemplateResult<1> | undefined;
|
|
138
|
+
_renderDays(): import("lit").TemplateResult<1>;
|
|
139
139
|
isStrictTime(): boolean;
|
|
140
140
|
isMinutesDisabled(value: any): boolean;
|
|
141
141
|
isSecondsDisabled(value: any): boolean;
|
|
@@ -10,7 +10,7 @@ declare const GvInput_base: {
|
|
|
10
10
|
updated(changedProperties: any): void;
|
|
11
11
|
getInputElement(): any;
|
|
12
12
|
readonly offsetHeight: any;
|
|
13
|
-
renderLabel(): "" | import("lit
|
|
13
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
};
|
|
15
15
|
[x: string]: any;
|
|
16
16
|
readonly properties: {
|
|
@@ -236,11 +236,11 @@ export class GvInput extends GvInput_base {
|
|
|
236
236
|
get hasClickableIcon(): any;
|
|
237
237
|
get hasClipboard(): any;
|
|
238
238
|
clear(): void;
|
|
239
|
-
_renderClearIcon(): "" | import("lit
|
|
239
|
+
_renderClearIcon(): "" | import("lit").TemplateResult<1>;
|
|
240
240
|
_shapePassword(): "general:visible" | "general:hidden";
|
|
241
|
-
_renderPasswordIcon(): "" | import("lit
|
|
241
|
+
_renderPasswordIcon(): "" | import("lit").TemplateResult<1>;
|
|
242
242
|
get hasBackground(): boolean;
|
|
243
|
-
renderIcon(): "" | import("lit
|
|
244
|
-
render(): import("lit
|
|
243
|
+
renderIcon(): "" | import("lit").TemplateResult<1>;
|
|
244
|
+
render(): import("lit").TemplateResult<1>;
|
|
245
245
|
}
|
|
246
246
|
export {};
|
|
@@ -61,11 +61,11 @@ export class GvSelect extends GvSelect_base {
|
|
|
61
61
|
_onSelect(option: any, e: any): void;
|
|
62
62
|
value: any;
|
|
63
63
|
_onClear(): void;
|
|
64
|
-
_renderIcon(): "" | import("lit
|
|
64
|
+
_renderIcon(): "" | import("lit").TemplateResult<1>;
|
|
65
65
|
set options(arg: any);
|
|
66
66
|
selectedLabel(): string;
|
|
67
67
|
onResize(): void;
|
|
68
|
-
render(): import("lit
|
|
68
|
+
render(): import("lit").TemplateResult<1>;
|
|
69
69
|
isSelected(option: any): any;
|
|
70
70
|
}
|
|
71
71
|
export {};
|
|
@@ -10,7 +10,7 @@ declare const GvSelectNative_base: {
|
|
|
10
10
|
updated(changedProperties: any): void;
|
|
11
11
|
getInputElement(): any;
|
|
12
12
|
readonly offsetHeight: any;
|
|
13
|
-
renderLabel(): "" | import("lit
|
|
13
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
};
|
|
15
15
|
[x: string]: any;
|
|
16
16
|
readonly properties: {
|
|
@@ -167,8 +167,8 @@ export class GvSelectNative extends GvSelectNative_base {
|
|
|
167
167
|
_onClear(): void;
|
|
168
168
|
set options(arg: any);
|
|
169
169
|
selectedLabel(): string;
|
|
170
|
-
renderSelect(): import("lit
|
|
171
|
-
render(): import("lit
|
|
170
|
+
renderSelect(): import("lit").TemplateResult<1>;
|
|
171
|
+
render(): import("lit").TemplateResult<1>;
|
|
172
172
|
isSelected(option: any): any;
|
|
173
173
|
}
|
|
174
174
|
export {};
|
|
@@ -10,7 +10,7 @@ declare const GvText_base: {
|
|
|
10
10
|
updated(changedProperties: any): void;
|
|
11
11
|
getInputElement(): any;
|
|
12
12
|
readonly offsetHeight: any;
|
|
13
|
-
renderLabel(): "" | import("lit
|
|
13
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
};
|
|
15
15
|
[x: string]: any;
|
|
16
16
|
readonly properties: {
|
|
@@ -105,6 +105,6 @@ export class GvText extends GvText_base {
|
|
|
105
105
|
rows: number;
|
|
106
106
|
_onInput(e: any): void;
|
|
107
107
|
value: any;
|
|
108
|
-
render(): "" | import("lit
|
|
108
|
+
render(): "" | import("lit").TemplateResult<1>;
|
|
109
109
|
}
|
|
110
110
|
export {};
|
|
@@ -8,7 +8,7 @@ declare const GvChartBar_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -8,7 +8,7 @@ declare const GvChartGauge_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -8,7 +8,7 @@ declare const GvChartHistogram_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -8,7 +8,7 @@ declare const GvChartLine_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -8,7 +8,7 @@ declare const GvChartMap_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -8,7 +8,7 @@ declare const GvChartPie_base: {
|
|
|
8
8
|
getOptions(): Promise<void>;
|
|
9
9
|
updated(changedProperties: any): void;
|
|
10
10
|
_additionalOptions: void | undefined;
|
|
11
|
-
render(): import("lit
|
|
11
|
+
render(): import("lit").TemplateResult<1>;
|
|
12
12
|
_invisible: boolean;
|
|
13
13
|
_skeleton: boolean;
|
|
14
14
|
_error: boolean;
|
|
@@ -12,7 +12,7 @@ export function ChartElement(ParentClass: any): {
|
|
|
12
12
|
getOptions(): Promise<void>;
|
|
13
13
|
updated(changedProperties: any): void;
|
|
14
14
|
_additionalOptions: void | undefined;
|
|
15
|
-
render(): import("lit
|
|
15
|
+
render(): import("lit").TemplateResult<1>;
|
|
16
16
|
_invisible: boolean;
|
|
17
17
|
_skeleton: boolean;
|
|
18
18
|
_error: boolean;
|
|
@@ -10,7 +10,7 @@ export function InputElement(ParentClass: any): {
|
|
|
10
10
|
updated(changedProperties: any): void;
|
|
11
11
|
getInputElement(): any;
|
|
12
12
|
readonly offsetHeight: any;
|
|
13
|
-
renderLabel(): "" | import("lit
|
|
13
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
};
|
|
15
15
|
[x: string]: any;
|
|
16
16
|
readonly properties: {
|
|
@@ -8,13 +8,13 @@ export function ItemResource(ParentClass: any): {
|
|
|
8
8
|
_skeletonAttribute: string;
|
|
9
9
|
_onImageLoaded(): void;
|
|
10
10
|
_skeleton: boolean;
|
|
11
|
-
_renderImage(): "" | import("lit
|
|
11
|
+
_renderImage(): "" | import("lit").TemplateResult<1>;
|
|
12
12
|
_onTagClick(tagValue: any, event: any): void;
|
|
13
13
|
_renderLabels(clickable: any): unknown;
|
|
14
14
|
_renderStates(): unknown;
|
|
15
15
|
_onClickToMetrics(event: any): void;
|
|
16
|
-
_renderMetricsWithRating(): "" | import("lit
|
|
17
|
-
_renderInfoRating(): "" | import("lit
|
|
16
|
+
_renderMetricsWithRating(): "" | import("lit").TemplateResult<1>;
|
|
17
|
+
_renderInfoRating(): "" | import("lit").TemplateResult<1>;
|
|
18
18
|
_invisible: boolean;
|
|
19
19
|
_error: boolean;
|
|
20
20
|
_empty: boolean;
|
|
@@ -4,13 +4,13 @@ declare const GvCard_base: {
|
|
|
4
4
|
_skeletonAttribute: string;
|
|
5
5
|
_onImageLoaded(): void;
|
|
6
6
|
_skeleton: boolean;
|
|
7
|
-
_renderImage(): "" | import("lit
|
|
7
|
+
_renderImage(): "" | import("lit").TemplateResult<1>;
|
|
8
8
|
_onTagClick(tagValue: any, event: any): void;
|
|
9
9
|
_renderLabels(clickable: any): unknown;
|
|
10
10
|
_renderStates(): unknown;
|
|
11
11
|
_onClickToMetrics(event: any): void;
|
|
12
|
-
_renderMetricsWithRating(): "" | import("lit
|
|
13
|
-
_renderInfoRating(): "" | import("lit
|
|
12
|
+
_renderMetricsWithRating(): "" | import("lit").TemplateResult<1>;
|
|
13
|
+
_renderInfoRating(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
_invisible: boolean;
|
|
15
15
|
_error: boolean;
|
|
16
16
|
_empty: boolean;
|
|
@@ -60,6 +60,6 @@ declare const GvCard_base: {
|
|
|
60
60
|
* @cssprop {Color} [--gv-card--bgc=var(--gv-theme-neutral-color-lightest, #ffffff)] - Background color
|
|
61
61
|
*/
|
|
62
62
|
export class GvCard extends GvCard_base {
|
|
63
|
-
render(): import("lit
|
|
63
|
+
render(): import("lit").TemplateResult<1>;
|
|
64
64
|
}
|
|
65
65
|
export {};
|
|
@@ -4,13 +4,13 @@ declare const GvCardFull_base: {
|
|
|
4
4
|
_skeletonAttribute: string;
|
|
5
5
|
_onImageLoaded(): void;
|
|
6
6
|
_skeleton: boolean;
|
|
7
|
-
_renderImage(): "" | import("lit
|
|
7
|
+
_renderImage(): "" | import("lit").TemplateResult<1>;
|
|
8
8
|
_onTagClick(tagValue: any, event: any): void;
|
|
9
9
|
_renderLabels(clickable: any): unknown;
|
|
10
10
|
_renderStates(): unknown;
|
|
11
11
|
_onClickToMetrics(event: any): void;
|
|
12
|
-
_renderMetricsWithRating(): "" | import("lit
|
|
13
|
-
_renderInfoRating(): "" | import("lit
|
|
12
|
+
_renderMetricsWithRating(): "" | import("lit").TemplateResult<1>;
|
|
13
|
+
_renderInfoRating(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
_invisible: boolean;
|
|
15
15
|
_error: boolean;
|
|
16
16
|
_empty: boolean;
|
|
@@ -89,6 +89,6 @@ export class GvCardFull extends GvCardFull_base {
|
|
|
89
89
|
};
|
|
90
90
|
limit: number;
|
|
91
91
|
_onClick(e: any): void;
|
|
92
|
-
render(): import("lit
|
|
92
|
+
render(): import("lit").TemplateResult<1>;
|
|
93
93
|
}
|
|
94
94
|
export {};
|
|
@@ -26,8 +26,8 @@ export class GvCardList extends GvCardList_base {
|
|
|
26
26
|
breakpoints: {
|
|
27
27
|
width: number[];
|
|
28
28
|
};
|
|
29
|
-
renderItem(item: any, index: any): import("lit
|
|
30
|
-
render(): "" | import("lit
|
|
29
|
+
renderItem(item: any, index: any): import("lit").TemplateResult<1>;
|
|
30
|
+
render(): "" | import("lit").TemplateResult<1>;
|
|
31
31
|
updated(changedProperties: any): void;
|
|
32
32
|
}
|
|
33
33
|
export {};
|
|
@@ -104,10 +104,10 @@ export class GvCronEditor extends GvCronEditor_base {
|
|
|
104
104
|
_getTimeExpression(date: any): string;
|
|
105
105
|
generate(): void;
|
|
106
106
|
updateState(value: any): void;
|
|
107
|
-
renderLabel(): "" | import("lit
|
|
107
|
+
renderLabel(): "" | import("lit").TemplateResult<1>;
|
|
108
108
|
displayProDetails(): void;
|
|
109
|
-
renderProDetails(): "" | import("lit
|
|
110
|
-
render(): import("lit
|
|
109
|
+
renderProDetails(): "" | import("lit").TemplateResult<1>;
|
|
110
|
+
render(): import("lit").TemplateResult<1>;
|
|
111
111
|
get allowedValues(): "" | "0-23" | "1-31" | "1-12 or JAN-DEC" | "1-7 or SUN-SAT" | "0-59";
|
|
112
112
|
get allowedChar(): "" | ",-*/";
|
|
113
113
|
_getDaySuffix(day?: number): "" | "th" | "st" | "nd" | "rd";
|
|
@@ -115,10 +115,10 @@ export class GvList extends GvList_base {
|
|
|
115
115
|
};
|
|
116
116
|
_skeletonAttribute: string;
|
|
117
117
|
_onClick(item: any): void;
|
|
118
|
-
_renderImage(item: any): import("lit
|
|
119
|
-
_renderStatus(subscriptions: any): "" | import("lit
|
|
120
|
-
_renderItem(item: any): import("lit
|
|
121
|
-
_renderItems(): "" | import("lit
|
|
122
|
-
render(): import("lit
|
|
118
|
+
_renderImage(item: any): import("lit").TemplateResult<1>;
|
|
119
|
+
_renderStatus(subscriptions: any): "" | import("lit").TemplateResult<1>;
|
|
120
|
+
_renderItem(item: any): import("lit").TemplateResult<1>;
|
|
121
|
+
_renderItems(): "" | import("lit").TemplateResult<1>;
|
|
122
|
+
render(): import("lit").TemplateResult<1>;
|
|
123
123
|
}
|
|
124
124
|
export {};
|
|
@@ -59,7 +59,7 @@ export class GvMetrics extends GvMetrics_base {
|
|
|
59
59
|
_getHealth(): string | null;
|
|
60
60
|
_getTitle(metricName: any): any;
|
|
61
61
|
_onClick(key: any): void;
|
|
62
|
-
_renderMetric(key: any, icon: any, name: any, value: any): import("lit
|
|
63
|
-
render(): import("lit
|
|
62
|
+
_renderMetric(key: any, icon: any, name: any, value: any): import("lit").TemplateResult<1>;
|
|
63
|
+
render(): import("lit").TemplateResult<1>;
|
|
64
64
|
}
|
|
65
65
|
export {};
|
|
@@ -27,7 +27,7 @@ export const modalOpenedWithCloseIcon: {
|
|
|
27
27
|
};
|
|
28
28
|
render: (args: any) => HTMLDivElement;
|
|
29
29
|
};
|
|
30
|
-
export function modalOpenOnButtonClick(): import("lit
|
|
30
|
+
export function modalOpenOnButtonClick(): import("lit").TemplateResult<1>;
|
|
31
31
|
export namespace modalOpenOnButtonClick {
|
|
32
32
|
const parameters_1: any;
|
|
33
33
|
export { parameters_1 as parameters };
|
|
@@ -35,7 +35,7 @@ export class GvNav extends LitElement {
|
|
|
35
35
|
protected _routes: any[];
|
|
36
36
|
vertical: boolean;
|
|
37
37
|
set routes(arg: any);
|
|
38
|
-
_getLink(route: any, index: any): Promise<void | import("lit
|
|
38
|
+
_getLink(route: any, index: any): Promise<void | import("lit").TemplateResult<1>>;
|
|
39
39
|
_compact: boolean | undefined;
|
|
40
40
|
}
|
|
41
41
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -60,6 +60,6 @@ export class GvOption extends LitElement {
|
|
|
60
60
|
_options: any[] | undefined;
|
|
61
61
|
_hasDescription: boolean | undefined;
|
|
62
62
|
isActive(option: any): any;
|
|
63
|
-
_renderOption(option: any, index: any): import("lit
|
|
63
|
+
_renderOption(option: any, index: any): import("lit").TemplateResult<1>;
|
|
64
64
|
}
|
|
65
65
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -66,7 +66,7 @@ export class GvPlans extends LitElement {
|
|
|
66
66
|
get hasRight(): boolean;
|
|
67
67
|
_renderHeader(plans: any): any;
|
|
68
68
|
_renderTriangles(plans: any): any;
|
|
69
|
-
_renderPagination(): "" | import("lit
|
|
69
|
+
_renderPagination(): "" | import("lit").TemplateResult<1>;
|
|
70
70
|
toLeft(): void;
|
|
71
71
|
toRight(): void;
|
|
72
72
|
}
|
|
@@ -69,7 +69,7 @@ export class GvPopover extends LitElement {
|
|
|
69
69
|
_opened: boolean | undefined;
|
|
70
70
|
close(): void;
|
|
71
71
|
_close(e: any): void;
|
|
72
|
-
renderContent(): import("lit
|
|
72
|
+
renderContent(): import("lit").TemplateResult<1>;
|
|
73
73
|
_getContentSize(): {
|
|
74
74
|
width: any;
|
|
75
75
|
height: any;
|
|
@@ -4,13 +4,13 @@ declare const GvPromote_base: {
|
|
|
4
4
|
_skeletonAttribute: string;
|
|
5
5
|
_onImageLoaded(): void;
|
|
6
6
|
_skeleton: boolean;
|
|
7
|
-
_renderImage(): "" | import("lit
|
|
7
|
+
_renderImage(): "" | import("lit").TemplateResult<1>;
|
|
8
8
|
_onTagClick(tagValue: any, event: any): void;
|
|
9
9
|
_renderLabels(clickable: any): unknown;
|
|
10
10
|
_renderStates(): unknown;
|
|
11
11
|
_onClickToMetrics(event: any): void;
|
|
12
|
-
_renderMetricsWithRating(): "" | import("lit
|
|
13
|
-
_renderInfoRating(): "" | import("lit
|
|
12
|
+
_renderMetricsWithRating(): "" | import("lit").TemplateResult<1>;
|
|
13
|
+
_renderInfoRating(): "" | import("lit").TemplateResult<1>;
|
|
14
14
|
_invisible: boolean;
|
|
15
15
|
_error: boolean;
|
|
16
16
|
_empty: boolean;
|
|
@@ -103,6 +103,6 @@ export class GvPromote extends GvPromote_base {
|
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
_onClick(): void;
|
|
106
|
-
render(): "" | import("lit
|
|
106
|
+
render(): "" | import("lit").TemplateResult<1>;
|
|
107
107
|
}
|
|
108
108
|
export {};
|
|
@@ -49,7 +49,7 @@ export class GvRating extends LitElement {
|
|
|
49
49
|
_onMouseOut(): void;
|
|
50
50
|
_onClick(index: any): void;
|
|
51
51
|
_getAverage(): number;
|
|
52
|
-
_renderStar(star: any, index: any): import("lit
|
|
52
|
+
_renderStar(star: any, index: any): import("lit").TemplateResult<1>;
|
|
53
53
|
_getCountTitle(): string;
|
|
54
54
|
}
|
|
55
55
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -65,13 +65,13 @@ export class GvRatingList extends LitElement {
|
|
|
65
65
|
_renderAnswers(rating: any): any;
|
|
66
66
|
_onDelete(rating: any): void;
|
|
67
67
|
_onDeleteAnswer(rating: any, answer: any): void;
|
|
68
|
-
_renderActions(data: any, parent: any): import("lit
|
|
68
|
+
_renderActions(data: any, parent: any): import("lit").TemplateResult<1>;
|
|
69
69
|
_render(data: any, parent: any): any;
|
|
70
70
|
_onUpdateRating(rating: any, e: any): void;
|
|
71
71
|
_canAddAnswer(): boolean;
|
|
72
72
|
_canDeleteAnswer(): boolean;
|
|
73
73
|
_canUpdate(ratingId: any): boolean;
|
|
74
74
|
_canDelete(ratingId: any): boolean;
|
|
75
|
-
_getDisplayName(data: any): "" | import("lit
|
|
75
|
+
_getDisplayName(data: any): "" | import("lit").TemplateResult<1>;
|
|
76
76
|
}
|
|
77
77
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -47,7 +47,7 @@ export class GvStats extends GvStats_base {
|
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
49
|
_skeletonAttribute: string;
|
|
50
|
-
_getStat(option: any): import("lit
|
|
51
|
-
render(): import("lit
|
|
50
|
+
_getStat(option: any): import("lit").TemplateResult<1> | "<div></div>";
|
|
51
|
+
render(): import("lit").TemplateResult<1>;
|
|
52
52
|
}
|
|
53
53
|
export {};
|
|
@@ -40,7 +40,7 @@ export class GvStepper extends LitElement {
|
|
|
40
40
|
_error: boolean;
|
|
41
41
|
_empty: boolean;
|
|
42
42
|
_onClick(index: any): void;
|
|
43
|
-
_getIcon(step: any): import("lit
|
|
44
|
-
_getStep(step: any, index: any): import("lit
|
|
43
|
+
_getIcon(step: any): import("lit").TemplateResult<1>;
|
|
44
|
+
_getStep(step: any, index: any): import("lit").TemplateResult<1>;
|
|
45
45
|
}
|
|
46
46
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -140,20 +140,20 @@ export class GvTable extends GvTable_base {
|
|
|
140
140
|
get selectedItems(): any[];
|
|
141
141
|
_onMouseEnter(item: any): void;
|
|
142
142
|
_onMouseLeave(): void;
|
|
143
|
-
_renderHeader(styleGridColumns: any): "" | import("lit
|
|
144
|
-
_renderIcon(item: any, itemIndex: any, option: any): "" | import("lit
|
|
143
|
+
_renderHeader(styleGridColumns: any): "" | import("lit").TemplateResult<1>;
|
|
144
|
+
_renderIcon(item: any, itemIndex: any, option: any): "" | import("lit").TemplateResult<1>;
|
|
145
145
|
_renderComponent(item: any, itemIndex: any, option: any, value: any, type: any): any;
|
|
146
146
|
_renderCell(formattedValue: any, option: any, item: any, itemIndex: any): any;
|
|
147
147
|
_getFormattedCellValue(option: any, item: any): any;
|
|
148
148
|
_isSelected(item: any): boolean;
|
|
149
|
-
_renderRows(styleGridColumns: any): import("lit
|
|
150
|
-
_renderItems(): import("lit
|
|
151
|
-
_renderPagination(): import("lit
|
|
149
|
+
_renderRows(styleGridColumns: any): import("lit").TemplateResult<1>;
|
|
150
|
+
_renderItems(): import("lit").TemplateResult<1>;
|
|
151
|
+
_renderPagination(): import("lit").TemplateResult<1> | undefined;
|
|
152
152
|
_getDataFromField(item: any, field: any): any;
|
|
153
|
-
_renderTag(option: any, item: any): "" | import("lit
|
|
153
|
+
_renderTag(option: any, item: any): "" | import("lit").TemplateResult<1>;
|
|
154
154
|
_onImageLoaded(): void;
|
|
155
|
-
_renderImage(picture: any, alt: any): import("lit
|
|
155
|
+
_renderImage(picture: any, alt: any): import("lit").TemplateResult<1>;
|
|
156
156
|
updated(props: any): void;
|
|
157
|
-
render(): import("lit
|
|
157
|
+
render(): import("lit").TemplateResult<1>;
|
|
158
158
|
}
|
|
159
159
|
export {};
|
|
@@ -35,7 +35,7 @@ export class GvTree extends LitElement {
|
|
|
35
35
|
_onSelect(menuItem: any, e: any): void;
|
|
36
36
|
selectedItem: any;
|
|
37
37
|
_onClick(menuItem: any, e: any): void;
|
|
38
|
-
_getMenuItemPage(menuItem: any): import("lit
|
|
38
|
+
_getMenuItemPage(menuItem: any): import("lit").TemplateResult<1>;
|
|
39
39
|
_getMenuItemFolder(menuItem: any): any;
|
|
40
40
|
_getMenu(menuItems: any): any;
|
|
41
41
|
_getMenuItem(menuItem: any): any;
|
|
@@ -41,7 +41,7 @@ export class GvDocumentation extends LitElement {
|
|
|
41
41
|
static get styles(): import("lit").CSSResult[];
|
|
42
42
|
type: string;
|
|
43
43
|
_onCloseDocumentation(): void;
|
|
44
|
-
_renderIcon(): import("lit
|
|
44
|
+
_renderIcon(): import("lit").TemplateResult<1>;
|
|
45
45
|
_dom: {
|
|
46
46
|
title: string;
|
|
47
47
|
element: HTMLDivElement;
|
|
@@ -52,9 +52,9 @@ export class GvHeader extends GvHeader_base {
|
|
|
52
52
|
_breadcrumbs: any[];
|
|
53
53
|
canSubscribe: boolean;
|
|
54
54
|
set breadcrumbs(arg: any);
|
|
55
|
-
_getLink(route: any, index: any): Promise<void | import("lit
|
|
56
|
-
_renderBreadcrumbs(): import("lit
|
|
55
|
+
_getLink(route: any, index: any): Promise<void | import("lit").TemplateResult<1>>;
|
|
56
|
+
_renderBreadcrumbs(): import("lit").TemplateResult<1>;
|
|
57
57
|
_onSubscribe(e: any): void;
|
|
58
|
-
render(): import("lit
|
|
58
|
+
render(): import("lit").TemplateResult<1>;
|
|
59
59
|
}
|
|
60
60
|
export {};
|
|
@@ -48,10 +48,10 @@ export class GvHttpClient extends GvHttpClient_base {
|
|
|
48
48
|
_sendRequest(): void;
|
|
49
49
|
_updateRequest(formData: any): void;
|
|
50
50
|
isFormValid: any;
|
|
51
|
-
render(): import("lit
|
|
52
|
-
_renderEmptyResponse(): import("lit
|
|
53
|
-
_renderLoading(): import("lit
|
|
54
|
-
_renderDebugResponse(): import("lit
|
|
55
|
-
_renderResponseHeader(): import("lit
|
|
51
|
+
render(): import("lit").TemplateResult<1>;
|
|
52
|
+
_renderEmptyResponse(): import("lit").TemplateResult<1>;
|
|
53
|
+
_renderLoading(): import("lit").TemplateResult<1>;
|
|
54
|
+
_renderDebugResponse(): import("lit").TemplateResult<1>;
|
|
55
|
+
_renderResponseHeader(): import("lit").TemplateResult<1>;
|
|
56
56
|
}
|
|
57
57
|
export {};
|
|
@@ -67,7 +67,7 @@ export class GvMenu extends GvMenu_base {
|
|
|
67
67
|
width: any;
|
|
68
68
|
}): void;
|
|
69
69
|
_small: boolean | undefined;
|
|
70
|
-
render(): import("lit
|
|
70
|
+
render(): import("lit").TemplateResult<1>;
|
|
71
71
|
updated(changedProperties: any): void;
|
|
72
72
|
_hasHeader: boolean | undefined;
|
|
73
73
|
}
|
|
@@ -56,7 +56,7 @@ export class GvPagination extends LitElement {
|
|
|
56
56
|
_goToPage(page: any): void;
|
|
57
57
|
_onSubmit(e: any): void;
|
|
58
58
|
_onClickToSearch(): void;
|
|
59
|
-
_renderPagination(): import("lit
|
|
59
|
+
_renderPagination(): import("lit").TemplateResult<1>;
|
|
60
60
|
_hasData(): any;
|
|
61
61
|
_hideEmpty(): any;
|
|
62
62
|
}
|
|
@@ -194,8 +194,8 @@ export class GvProperties extends GvProperties_base {
|
|
|
194
194
|
}): void;
|
|
195
195
|
_filter: any;
|
|
196
196
|
_onClearProperty(): void;
|
|
197
|
-
_renderErrors(withLine?: boolean): import("lit
|
|
198
|
-
_renderTable(): import("lit
|
|
197
|
+
_renderErrors(withLine?: boolean): import("lit").TemplateResult<1>;
|
|
198
|
+
_renderTable(): import("lit").TemplateResult<1>;
|
|
199
199
|
_onChangeMode({ detail }: {
|
|
200
200
|
detail: any;
|
|
201
201
|
}): void;
|
|
@@ -214,16 +214,16 @@ export class GvProperties extends GvProperties_base {
|
|
|
214
214
|
_onChangePageSize({ detail }: {
|
|
215
215
|
detail: any;
|
|
216
216
|
}): void;
|
|
217
|
-
_renderTableForm(): import("lit
|
|
217
|
+
_renderTableForm(): import("lit").TemplateResult<1>;
|
|
218
218
|
_fetchDocumentation(): void;
|
|
219
219
|
_hideDocumentation(): void;
|
|
220
220
|
get dirty(): any;
|
|
221
221
|
confirm(): any;
|
|
222
|
-
_renderForm(): import("lit
|
|
223
|
-
_renderBottom(): import("lit
|
|
224
|
-
_renderDynamicConfiguration(): string | import("lit
|
|
222
|
+
_renderForm(): import("lit").TemplateResult<1>;
|
|
223
|
+
_renderBottom(): import("lit").TemplateResult<1>;
|
|
224
|
+
_renderDynamicConfiguration(): string | import("lit").TemplateResult<1>;
|
|
225
225
|
_onMove(): void;
|
|
226
226
|
_computeTextRows(): void;
|
|
227
|
-
render(): import("lit
|
|
227
|
+
render(): import("lit").TemplateResult<1>;
|
|
228
228
|
}
|
|
229
229
|
export {};
|
|
@@ -112,14 +112,14 @@ export class GvResources extends GvResources_base {
|
|
|
112
112
|
get dirty(): any;
|
|
113
113
|
confirm(): any;
|
|
114
114
|
_onChangeResourceState(item: any, event: any): void;
|
|
115
|
-
_renderForm(): import("lit
|
|
116
|
-
_renderDoc(): import("lit
|
|
117
|
-
_renderBottom(): import("lit
|
|
115
|
+
_renderForm(): import("lit").TemplateResult<1>;
|
|
116
|
+
_renderDoc(): import("lit").TemplateResult<1>;
|
|
117
|
+
_renderBottom(): import("lit").TemplateResult<1> | undefined;
|
|
118
118
|
_onSearchResource({ detail }: {
|
|
119
119
|
detail: any;
|
|
120
120
|
}): void;
|
|
121
121
|
_filter: any;
|
|
122
122
|
_onClearResource(): void;
|
|
123
|
-
render(): import("lit
|
|
123
|
+
render(): import("lit").TemplateResult<1>;
|
|
124
124
|
}
|
|
125
125
|
export {};
|
|
@@ -132,7 +132,7 @@ export class GvSchemaForm extends LitElement {
|
|
|
132
132
|
_onControlReady(e: any): void;
|
|
133
133
|
_updateDynamicControls(): void;
|
|
134
134
|
_updateDynamicControl(controlElement: any): null;
|
|
135
|
-
_renderControl(key: any): import("lit
|
|
135
|
+
_renderControl(key: any): import("lit").TemplateResult<1>;
|
|
136
136
|
_hasCondition(control: any): boolean;
|
|
137
137
|
_evaluateCondition(control: any, conditionKey: any): boolean;
|
|
138
138
|
_evaluateNotEqualsCondition(control: any, condition: any): boolean;
|
|
@@ -44,12 +44,12 @@ export class GvSchemaFormArray extends GvSchemaFormArray_base {
|
|
|
44
44
|
value: any[];
|
|
45
45
|
_onNew(): void;
|
|
46
46
|
_onRemove(index: any): void;
|
|
47
|
-
_renderValue(value: any, index: any): import("lit
|
|
47
|
+
_renderValue(value: any, index: any): import("lit").TemplateResult<1>;
|
|
48
48
|
_onMouseLeave(): void;
|
|
49
49
|
getControls(): any[];
|
|
50
50
|
getControl(id: any): any;
|
|
51
51
|
getUpdateComplete(): Promise<void>;
|
|
52
52
|
shouldUpdate(changedProperties: any): any;
|
|
53
|
-
render(): import("lit
|
|
53
|
+
render(): import("lit").TemplateResult<1>;
|
|
54
54
|
}
|
|
55
55
|
export {};
|
|
@@ -85,6 +85,6 @@ export class GvSchemaFormControl extends GvSchemaFormControl_base {
|
|
|
85
85
|
getUpdateComplete(): Promise<void>;
|
|
86
86
|
formatErrorMessage(error: any): string;
|
|
87
87
|
shouldUpdate(changedProperties: any): any;
|
|
88
|
-
render(): import("lit
|
|
88
|
+
render(): import("lit").TemplateResult<1>;
|
|
89
89
|
}
|
|
90
90
|
export {};
|
|
@@ -54,11 +54,11 @@ export class GvSchemaFormControlObject extends GvSchemaFormControlObject_base {
|
|
|
54
54
|
};
|
|
55
55
|
static get styles(): import("lit").CSSResult[];
|
|
56
56
|
value: any[];
|
|
57
|
-
_renderPart(subKey: any): import("lit
|
|
57
|
+
_renderPart(subKey: any): import("lit").TemplateResult<1>;
|
|
58
58
|
getControls(): any[];
|
|
59
59
|
getControl(id: any): any;
|
|
60
60
|
getUpdateComplete(): Promise<void>;
|
|
61
61
|
shouldUpdate(changedProperties: any): any;
|
|
62
|
-
render(): import("lit
|
|
62
|
+
render(): import("lit").TemplateResult<1>;
|
|
63
63
|
}
|
|
64
64
|
export {};
|
|
@@ -50,7 +50,7 @@ export class GvUserMenu extends LitElement {
|
|
|
50
50
|
_hasOneItem(): boolean | null | undefined;
|
|
51
51
|
set routes(arg: any);
|
|
52
52
|
_routes: any[] | null | undefined;
|
|
53
|
-
_renderFirstItem(): import("lit
|
|
53
|
+
_renderFirstItem(): import("lit").TemplateResult<1>;
|
|
54
54
|
_renderItem(route: any): any;
|
|
55
55
|
}
|
|
56
56
|
import { LitElement } from "lit-element/lit-element";
|
|
@@ -80,9 +80,9 @@ export class GvFlow extends LitElement {
|
|
|
80
80
|
_onChangeStepState(flowKey: any, position: any, { detail }: {
|
|
81
81
|
detail: any;
|
|
82
82
|
}): void;
|
|
83
|
-
_renderDropStep(group: any, step: any, position: any): import("lit
|
|
83
|
+
_renderDropStep(group: any, step: any, position: any): import("lit").TemplateResult<1>;
|
|
84
84
|
onDragEnd(): void;
|
|
85
|
-
_getLabel(flowKey: any): "" | import("lit
|
|
85
|
+
_getLabel(flowKey: any): "" | import("lit").TemplateResult<1> | "response" | "request";
|
|
86
86
|
get collectionName(): any;
|
|
87
87
|
findPolicy(policyId: any): any;
|
|
88
88
|
}
|
|
@@ -123,10 +123,10 @@ export class GvFlowStep extends GvFlowStep_base {
|
|
|
123
123
|
_onChangeState({ detail }: {
|
|
124
124
|
detail: any;
|
|
125
125
|
}): void;
|
|
126
|
-
_renderDropdownMenu(): import("lit
|
|
126
|
+
_renderDropdownMenu(): import("lit").TemplateResult<1>;
|
|
127
127
|
resetConfirm(): void;
|
|
128
128
|
confirm: boolean | undefined;
|
|
129
|
-
render(): import("lit
|
|
129
|
+
render(): import("lit").TemplateResult<1>;
|
|
130
130
|
title: any;
|
|
131
131
|
}
|
|
132
132
|
export class PolicyDraggable {
|
|
@@ -330,10 +330,10 @@ export class GvPolicyStudio extends GvPolicyStudio_base {
|
|
|
330
330
|
_onDragStartFlowStep(flow: any, { detail }: {
|
|
331
331
|
detail: any;
|
|
332
332
|
}): void;
|
|
333
|
-
_renderFlowEmptyState(readonlyMode: any): import("lit
|
|
334
|
-
_renderFlow(index: number | undefined, hasEmptyState: boolean | undefined, readonlyMode: any): import("lit
|
|
333
|
+
_renderFlowEmptyState(readonlyMode: any): import("lit").TemplateResult<1>;
|
|
334
|
+
_renderFlow(index: number | undefined, hasEmptyState: boolean | undefined, readonlyMode: any): import("lit").TemplateResult<1>;
|
|
335
335
|
_onFetchResources(event: any): void;
|
|
336
|
-
_renderPolicy(readonlyMode: any): import("lit
|
|
336
|
+
_renderPolicy(readonlyMode: any): import("lit").TemplateResult<1>;
|
|
337
337
|
_getFlowStepForm(): any;
|
|
338
338
|
_onResetFlowStep(): void;
|
|
339
339
|
_generateFlowsId(list: any, force?: boolean): any;
|
|
@@ -344,7 +344,7 @@ export class GvPolicyStudio extends GvPolicyStudio_base {
|
|
|
344
344
|
getUpdateComplete(): Promise<void>;
|
|
345
345
|
shouldUpdate(changedProperties: any): any;
|
|
346
346
|
updated(props: any): void;
|
|
347
|
-
_renderFlowStepForm(readonlyMode: any): import("lit
|
|
347
|
+
_renderFlowStepForm(readonlyMode: any): import("lit").TemplateResult<1>;
|
|
348
348
|
_onCloseDocumentation(): void;
|
|
349
349
|
documentation: any;
|
|
350
350
|
_onDeleteFlow({ detail }: {
|
|
@@ -411,10 +411,10 @@ export class GvPolicyStudio extends GvPolicyStudio_base {
|
|
|
411
411
|
_onFilterPolicies({ detail }: {
|
|
412
412
|
detail: any;
|
|
413
413
|
}): void;
|
|
414
|
-
_renderDesign(readonlyMode: any): import("lit
|
|
415
|
-
_renderDebug(): import("lit
|
|
416
|
-
_renderConfigurationForm(readonlyMode: any): import("lit
|
|
417
|
-
_renderFlowForm(readonlyMode: any): import("lit
|
|
414
|
+
_renderDesign(readonlyMode: any): import("lit").TemplateResult<1>;
|
|
415
|
+
_renderDebug(): import("lit").TemplateResult<1>;
|
|
416
|
+
_renderConfigurationForm(readonlyMode: any): import("lit").TemplateResult<1>;
|
|
417
|
+
_renderFlowForm(readonlyMode: any): import("lit").TemplateResult<1> | undefined;
|
|
418
418
|
_onResourcesChange({ detail }: {
|
|
419
419
|
detail: any;
|
|
420
420
|
}): void;
|
|
@@ -427,7 +427,7 @@ export class GvPolicyStudio extends GvPolicyStudio_base {
|
|
|
427
427
|
_onSwitchEncryptedProperty({ detail }: {
|
|
428
428
|
detail: any;
|
|
429
429
|
}): void;
|
|
430
|
-
render(): import("lit
|
|
430
|
+
render(): import("lit").TemplateResult<1>;
|
|
431
431
|
/**
|
|
432
432
|
* Determine if the design view should be in readonly mode or not
|
|
433
433
|
* It is in readonly mode if:
|
|
@@ -65,7 +65,7 @@ export class GvPolicyStudioMenu extends LitElement {
|
|
|
65
65
|
}): void;
|
|
66
66
|
_onDuplicateFlow(content: any): void;
|
|
67
67
|
_onDeleteFlow(content: any): void;
|
|
68
|
-
_renderFlowActions(content: any, readonlyMode: any): import("lit
|
|
68
|
+
_renderFlowActions(content: any, readonlyMode: any): import("lit").TemplateResult<1>;
|
|
69
69
|
_onDragStartFlow(flow: any, index: any, event: any): void;
|
|
70
70
|
_draggingFlow: {
|
|
71
71
|
target: any;
|
|
@@ -82,9 +82,9 @@ export class GvPolicyStudioMenu extends LitElement {
|
|
|
82
82
|
_onKeyDownFlow(index: any, e: any): void;
|
|
83
83
|
_onClickPolicy(policy: any): void;
|
|
84
84
|
_isSelected(id: any): boolean;
|
|
85
|
-
_renderFlows(filteredData: any, type: any, isChild: any, id: any, open: any): import("lit
|
|
85
|
+
_renderFlows(filteredData: any, type: any, isChild: any, id: any, open: any): import("lit").TemplateResult<1>;
|
|
86
86
|
_isDraggable(policy: any): boolean;
|
|
87
|
-
_renderPolicies(filteredData: any, type: any, isChild: any, id: any, group: any): import("lit
|
|
87
|
+
_renderPolicies(filteredData: any, type: any, isChild: any, id: any, group: any): import("lit").TemplateResult<1>;
|
|
88
88
|
_getGroupShape(groupName: any): "communication:shield-thunder" | "general:shield-protected" | "tools:roller" | "general:thunder-move";
|
|
89
89
|
_renderPart(type: any, title: any, icon: any, data: any[] | undefined, hideIfEmpty: any, addHandler: any, groupKey: null | undefined, isOpen: boolean | undefined, isChild: boolean | undefined, listId: any): any;
|
|
90
90
|
_getListElement(id: any): Element | null;
|