@gravitee/ui-components 3.25.3-typescript-9a4271f → 3.25.3-typescript-50960c3
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 +3 -4
- package/src/atoms/gv-autocomplete.d.ts +104 -0
- package/src/atoms/gv-button.d.ts +109 -0
- package/src/atoms/gv-checkbox.d.ts +114 -0
- package/src/atoms/gv-date-picker-calendar.d.ts +190 -0
- package/src/atoms/gv-date-picker-cell.d.ts +80 -0
- package/src/atoms/gv-date-picker.d.ts +194 -0
- package/src/atoms/gv-file-upload.d.ts +64 -0
- package/src/atoms/gv-icon.d.ts +26 -0
- package/src/atoms/gv-image.d.ts +45 -0
- package/src/atoms/gv-input-message.d.ts +20 -0
- package/src/atoms/gv-input.d.ts +246 -0
- package/src/atoms/gv-link.d.ts +67 -0
- package/src/atoms/gv-message.d.ts +23 -0
- package/src/atoms/gv-message.js +1 -1
- package/src/atoms/gv-metric.d.ts +32 -0
- package/src/atoms/gv-relative-time.d.ts +45 -0
- package/src/atoms/gv-select-native.d.ts +174 -0
- package/src/atoms/gv-select.d.ts +71 -0
- package/src/atoms/gv-spinner.d.ts +10 -0
- package/src/atoms/gv-state.d.ts +50 -0
- package/src/atoms/gv-switch.d.ts +60 -0
- package/src/atoms/gv-tag.d.ts +69 -0
- package/src/atoms/gv-text.d.ts +110 -0
- package/src/charts/gv-chart-bar.d.ts +50 -0
- package/src/charts/gv-chart-gauge.d.ts +58 -0
- package/src/charts/gv-chart-histogram.d.ts +48 -0
- package/src/charts/gv-chart-line.d.ts +52 -0
- package/src/charts/gv-chart-map.d.ts +50 -0
- package/src/charts/gv-chart-pie.d.ts +50 -0
- package/src/index.d.ts +77 -0
- package/src/lib/cron-expression.d.ts +1 -0
- package/src/lib/date.d.ts +1 -0
- package/src/lib/events.d.ts +1 -0
- package/src/lib/http-client-schema-form.d.ts +68 -0
- package/src/lib/http.d.ts +222 -0
- package/src/lib/i18n.d.ts +30 -0
- package/src/lib/item.d.ts +12 -0
- package/src/lib/properties.d.ts +42 -0
- package/src/lib/schema-form.d.ts +5 -0
- package/src/lib/studio.d.ts +2 -0
- package/src/lib/style.d.ts +6 -0
- package/src/lib/text-format.d.ts +6 -0
- package/src/lib/theme.d.ts +4 -0
- package/src/lib/utils.d.ts +9 -0
- package/src/mixins/chart-element.d.ts +39 -0
- package/src/mixins/input-element.d.ts +64 -0
- package/src/mixins/item-resource.d.ts +56 -0
- package/src/mixins/keyboard-element.d.ts +25 -0
- package/src/mixins/update-after-browser.d.ts +11 -0
- package/src/mixins/with-resize-observer.d.ts +12 -0
- package/src/mixins/with-skeleton-attribute.d.ts +35 -0
- package/src/molecules/gv-card-full.d.ts +78 -0
- package/src/molecules/gv-card-list.d.ts +33 -0
- package/src/molecules/gv-card.d.ts +65 -0
- package/src/molecules/gv-category-list.d.ts +17 -0
- package/src/molecules/gv-category.d.ts +64 -0
- package/src/molecules/gv-code.d.ts +192 -0
- package/src/molecules/gv-confirm.d.ts +60 -0
- package/src/molecules/gv-cron-editor.d.ts +115 -0
- package/src/molecules/gv-dropdown-menu.d.ts +28 -0
- package/src/molecules/gv-expandable.d.ts +37 -0
- package/src/molecules/gv-expression-language.d.ts +150 -0
- package/src/molecules/gv-identity-picture.d.ts +44 -0
- package/src/molecules/gv-list.d.ts +123 -0
- package/src/molecules/gv-metrics.d.ts +65 -0
- package/src/molecules/gv-modal.d.ts +64 -0
- package/src/molecules/gv-nav.d.ts +41 -0
- package/src/molecules/gv-option.d.ts +65 -0
- package/src/molecules/gv-plans.d.ts +73 -0
- package/src/molecules/gv-popover.d.ts +91 -0
- package/src/molecules/gv-promote.d.ts +108 -0
- package/src/molecules/gv-rating-list.d.ts +77 -0
- package/src/molecules/gv-rating.d.ts +55 -0
- package/src/molecules/gv-row-expandable.d.ts +8 -0
- package/src/molecules/gv-row.d.ts +37 -0
- package/src/molecules/gv-stats.d.ts +53 -0
- package/src/molecules/gv-stepper.d.ts +46 -0
- package/src/molecules/gv-table.d.ts +159 -0
- package/src/molecules/gv-tree.d.ts +44 -0
- package/src/organisms/gv-documentation.d.ts +52 -0
- package/src/organisms/gv-header.d.ts +60 -0
- package/src/organisms/gv-http-client.d.ts +57 -0
- package/src/organisms/gv-menu.d.ts +74 -0
- package/src/organisms/gv-newsletter-subscription.d.ts +82 -0
- package/src/organisms/gv-pagination.d.ts +63 -0
- package/src/organisms/gv-properties.d.ts +229 -0
- package/src/organisms/gv-resizable-views.d.ts +33 -0
- package/src/organisms/gv-resources.d.ts +125 -0
- package/src/organisms/gv-schema-form-array.d.ts +55 -0
- package/src/organisms/gv-schema-form-control-object.d.ts +64 -0
- package/src/organisms/gv-schema-form-control.d.ts +90 -0
- package/src/organisms/gv-schema-form.d.ts +156 -0
- package/src/organisms/gv-tabs.d.ts +56 -0
- package/src/organisms/gv-user-menu.d.ts +56 -0
- package/src/organisms/gv-vertical-menu.d.ts +28 -0
- package/src/policy-studio/gv-flow-step.d.ts +142 -0
- package/src/policy-studio/gv-flow.d.ts +89 -0
- package/src/policy-studio/gv-policy-studio-menu.d.ts +94 -0
- package/src/policy-studio/gv-policy-studio.d.ts +464 -0
- package/src/styles/empty.d.ts +1 -0
- package/src/styles/input.d.ts +1 -0
- package/src/styles/link.d.ts +1 -0
- package/src/styles/shapes.d.ts +2 -0
- package/src/styles/skeleton.d.ts +1 -0
- package/src/styles/zoom.d.ts +1 -0
- package/src/theme/gv-theme.d.ts +81 -0
- package/wc/gv-autocomplete.d.ts +1 -0
- package/wc/gv-button.d.ts +1 -0
- package/wc/gv-card-full.d.ts +1 -0
- package/wc/gv-card-list.d.ts +1 -0
- package/wc/gv-card.d.ts +1 -0
- package/wc/gv-category-list.d.ts +1 -0
- package/wc/gv-category.d.ts +1 -0
- package/wc/gv-chart-bar.d.ts +1 -0
- package/wc/gv-chart-gauge.d.ts +1 -0
- package/wc/gv-chart-histogram.d.ts +1 -0
- package/wc/gv-chart-line.d.ts +1 -0
- package/wc/gv-chart-map.d.ts +1 -0
- package/wc/gv-chart-pie.d.ts +1 -0
- package/wc/gv-checkbox.d.ts +1 -0
- package/wc/gv-code.d.ts +1 -0
- package/wc/gv-confirm.d.ts +1 -0
- package/wc/gv-cron-editor.d.ts +1 -0
- package/wc/gv-date-picker-calendar.d.ts +1 -0
- package/wc/gv-date-picker-cell.d.ts +1 -0
- package/wc/gv-date-picker.d.ts +1 -0
- package/wc/gv-documentation.d.ts +1 -0
- package/wc/gv-dropdown-menu.d.ts +1 -0
- package/wc/gv-expandable.d.ts +1 -0
- package/wc/gv-expression-language.d.ts +1 -0
- package/wc/gv-file-upload.d.ts +1 -0
- package/wc/gv-flow-step.d.ts +1 -0
- package/wc/gv-flow.d.ts +1 -0
- package/wc/gv-header.d.ts +1 -0
- package/wc/gv-http-client.d.ts +1 -0
- package/wc/gv-icon.d.ts +1 -0
- package/wc/gv-identity-picture.d.ts +1 -0
- package/wc/gv-image.d.ts +1 -0
- package/wc/gv-input-message.d.ts +1 -0
- package/wc/gv-input.d.ts +1 -0
- package/wc/gv-link.d.ts +1 -0
- package/wc/gv-list.d.ts +1 -0
- package/wc/gv-menu.d.ts +1 -0
- package/wc/gv-message.d.ts +1 -0
- package/wc/gv-metric.d.ts +1 -0
- package/wc/gv-metrics.d.ts +1 -0
- package/wc/gv-modal.d.ts +1 -0
- package/wc/gv-nav.d.ts +1 -0
- package/wc/gv-newsletter-subscription.d.ts +1 -0
- package/wc/gv-option.d.ts +1 -0
- package/wc/gv-pagination.d.ts +1 -0
- package/wc/gv-plans.d.ts +1 -0
- package/wc/gv-policy-studio-menu.d.ts +1 -0
- package/wc/gv-policy-studio.d.ts +1 -0
- package/wc/gv-popover.d.ts +1 -0
- package/wc/gv-promote.d.ts +1 -0
- package/wc/gv-properties.d.ts +1 -0
- package/wc/gv-rating-list.d.ts +1 -0
- package/wc/gv-rating.d.ts +1 -0
- package/wc/gv-relative-time.d.ts +1 -0
- package/wc/gv-resizable-views.d.ts +1 -0
- package/wc/gv-resources.d.ts +1 -0
- package/wc/gv-row-expandable.d.ts +1 -0
- package/wc/gv-row.d.ts +1 -0
- package/wc/gv-schema-form-array.d.ts +1 -0
- package/wc/gv-schema-form-control-object.d.ts +1 -0
- package/wc/gv-schema-form-control.d.ts +1 -0
- package/wc/gv-schema-form.d.ts +1 -0
- package/wc/gv-select-native.d.ts +1 -0
- package/wc/gv-select.d.ts +1 -0
- package/wc/gv-spinner.d.ts +1 -0
- package/wc/gv-state.d.ts +1 -0
- package/wc/gv-stats.d.ts +1 -0
- package/wc/gv-stepper.d.ts +1 -0
- package/wc/gv-switch.d.ts +1 -0
- package/wc/gv-table.d.ts +1 -0
- package/wc/gv-tabs.d.ts +1 -0
- package/wc/gv-tag.d.ts +1 -0
- package/wc/gv-text.d.ts +1 -0
- package/wc/gv-theme.d.ts +1 -0
- package/wc/gv-tree.d.ts +1 -0
- package/wc/gv-user-menu.d.ts +1 -0
- package/wc/gv-vertical-menu.d.ts +1 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const GvChartGauge_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_skeletonAttribute: string;
|
|
5
|
+
_eventListener: () => void;
|
|
6
|
+
connectedCallback(): void;
|
|
7
|
+
disconnectedCallback(): void;
|
|
8
|
+
getOptions(): Promise<void>;
|
|
9
|
+
updated(changedProperties: any): void;
|
|
10
|
+
_additionalOptions: void | undefined;
|
|
11
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
12
|
+
_invisible: boolean;
|
|
13
|
+
_skeleton: boolean;
|
|
14
|
+
_error: boolean;
|
|
15
|
+
_empty: boolean;
|
|
16
|
+
};
|
|
17
|
+
readonly properties: {
|
|
18
|
+
series: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ArrayConstructor;
|
|
23
|
+
};
|
|
24
|
+
_additionalOptions: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
attribute: boolean;
|
|
27
|
+
};
|
|
28
|
+
_series: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
attribute: boolean;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
readonly styles: import("lit").CSSResult[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Gauge chart component
|
|
37
|
+
*
|
|
38
|
+
* ⚠️ This component is based on `highcharts`.
|
|
39
|
+
* To use this component in your project be sure the dependency is installed or
|
|
40
|
+
* install it with: `npm install highcharts --save`
|
|
41
|
+
*
|
|
42
|
+
* @attr {number} max - The maximum value of the gauge.
|
|
43
|
+
* @attr {Array} series - Array of the series to display.
|
|
44
|
+
* @attr {Object} tooltip - The list of tooltip attributes to overwrite.
|
|
45
|
+
* @attr {Object} pane - The pane serves as a container for axes and backgrounds for circular gauges and polar charts.
|
|
46
|
+
*/
|
|
47
|
+
export class GvChartGauge extends GvChartGauge_base {
|
|
48
|
+
static get properties(): {
|
|
49
|
+
/** @required */
|
|
50
|
+
max: {
|
|
51
|
+
type: NumberConstructor;
|
|
52
|
+
};
|
|
53
|
+
series: {
|
|
54
|
+
type: ArrayConstructor;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
declare const GvChartHistogram_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_skeletonAttribute: string;
|
|
5
|
+
_eventListener: () => void;
|
|
6
|
+
connectedCallback(): void;
|
|
7
|
+
disconnectedCallback(): void;
|
|
8
|
+
getOptions(): Promise<void>;
|
|
9
|
+
updated(changedProperties: any): void;
|
|
10
|
+
_additionalOptions: void | undefined;
|
|
11
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
12
|
+
_invisible: boolean;
|
|
13
|
+
_skeleton: boolean;
|
|
14
|
+
_error: boolean;
|
|
15
|
+
_empty: boolean;
|
|
16
|
+
};
|
|
17
|
+
readonly properties: {
|
|
18
|
+
series: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ArrayConstructor;
|
|
23
|
+
};
|
|
24
|
+
_additionalOptions: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
attribute: boolean;
|
|
27
|
+
};
|
|
28
|
+
_series: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
attribute: boolean;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
readonly styles: import("lit").CSSResult[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Histogram chart component
|
|
37
|
+
*
|
|
38
|
+
* ⚠️ This component is based on `highcharts`.
|
|
39
|
+
* To use this component in your project be sure the dependency is installed or
|
|
40
|
+
* install it with: `npm install highcharts --save`
|
|
41
|
+
*
|
|
42
|
+
* @attr {Array} series - The series to display on the histogram chart.
|
|
43
|
+
* @attr {Object} options - The list of options to display.
|
|
44
|
+
*
|
|
45
|
+
*/
|
|
46
|
+
export class GvChartHistogram extends GvChartHistogram_base {
|
|
47
|
+
}
|
|
48
|
+
export {};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const GvChartLine_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_skeletonAttribute: string;
|
|
5
|
+
_eventListener: () => void;
|
|
6
|
+
connectedCallback(): void;
|
|
7
|
+
disconnectedCallback(): void;
|
|
8
|
+
getOptions(): Promise<void>;
|
|
9
|
+
updated(changedProperties: any): void;
|
|
10
|
+
_additionalOptions: void | undefined;
|
|
11
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
12
|
+
_invisible: boolean;
|
|
13
|
+
_skeleton: boolean;
|
|
14
|
+
_error: boolean;
|
|
15
|
+
_empty: boolean;
|
|
16
|
+
};
|
|
17
|
+
readonly properties: {
|
|
18
|
+
series: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ArrayConstructor;
|
|
23
|
+
};
|
|
24
|
+
_additionalOptions: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
attribute: boolean;
|
|
27
|
+
};
|
|
28
|
+
_series: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
attribute: boolean;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
readonly styles: import("lit").CSSResult[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Line chart component
|
|
37
|
+
*
|
|
38
|
+
* ⚠️ This component is based on `highcharts`.
|
|
39
|
+
* To use this component in your project be sure the dependency is installed or
|
|
40
|
+
* install it with: `npm install highcharts --save`
|
|
41
|
+
*
|
|
42
|
+
* @fires gv-chart-line:zoom - Custom event with zoomed timeframe
|
|
43
|
+
* @fires gv-chart-line:select - Custom event with selected value
|
|
44
|
+
*
|
|
45
|
+
* @attr {Array} series - The series to display on the line chart.
|
|
46
|
+
* @attr {Array} options - The list of options to display.
|
|
47
|
+
*
|
|
48
|
+
*/
|
|
49
|
+
export class GvChartLine extends GvChartLine_base {
|
|
50
|
+
firstUpdated(): void;
|
|
51
|
+
}
|
|
52
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const GvChartMap_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_skeletonAttribute: string;
|
|
5
|
+
_eventListener: () => void;
|
|
6
|
+
connectedCallback(): void;
|
|
7
|
+
disconnectedCallback(): void;
|
|
8
|
+
getOptions(): Promise<void>;
|
|
9
|
+
updated(changedProperties: any): void;
|
|
10
|
+
_additionalOptions: void | undefined;
|
|
11
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
12
|
+
_invisible: boolean;
|
|
13
|
+
_skeleton: boolean;
|
|
14
|
+
_error: boolean;
|
|
15
|
+
_empty: boolean;
|
|
16
|
+
};
|
|
17
|
+
readonly properties: {
|
|
18
|
+
series: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ArrayConstructor;
|
|
23
|
+
};
|
|
24
|
+
_additionalOptions: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
attribute: boolean;
|
|
27
|
+
};
|
|
28
|
+
_series: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
attribute: boolean;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
readonly styles: import("lit").CSSResult[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Map chart component.
|
|
37
|
+
*
|
|
38
|
+
* ⚠️ This component is based on `highcharts` and `@highcharts/map-collection`.
|
|
39
|
+
* To use this component in your project be sure the dependencies are installed or
|
|
40
|
+
* install them with: `npm install highcharts @highcharts/map-collection --save`
|
|
41
|
+
*
|
|
42
|
+
* @fires gv-chart-map:select - Custom event with selected value
|
|
43
|
+
*
|
|
44
|
+
* @attr {Array} series - The series to display on the map chart.
|
|
45
|
+
* @attr {Array} options - The list of options to display.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export class GvChartMap extends GvChartMap_base {
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const GvChartPie_base: {
|
|
2
|
+
new (): {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
_skeletonAttribute: string;
|
|
5
|
+
_eventListener: () => void;
|
|
6
|
+
connectedCallback(): void;
|
|
7
|
+
disconnectedCallback(): void;
|
|
8
|
+
getOptions(): Promise<void>;
|
|
9
|
+
updated(changedProperties: any): void;
|
|
10
|
+
_additionalOptions: void | undefined;
|
|
11
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
12
|
+
_invisible: boolean;
|
|
13
|
+
_skeleton: boolean;
|
|
14
|
+
_error: boolean;
|
|
15
|
+
_empty: boolean;
|
|
16
|
+
};
|
|
17
|
+
readonly properties: {
|
|
18
|
+
series: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ArrayConstructor;
|
|
23
|
+
};
|
|
24
|
+
_additionalOptions: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
attribute: boolean;
|
|
27
|
+
};
|
|
28
|
+
_series: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
attribute: boolean;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
readonly styles: import("lit").CSSResult[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Pie chart component
|
|
37
|
+
*
|
|
38
|
+
* ⚠️ This component is based on `highcharts`.
|
|
39
|
+
* To use this component in your project be sure the dependency is installed or
|
|
40
|
+
* install it with: `npm install highcharts --save`
|
|
41
|
+
*
|
|
42
|
+
* @fires gv-chart-pie:select - Custom event with selected value
|
|
43
|
+
*
|
|
44
|
+
* @attr {Array} series - The series to display on the pie chart.
|
|
45
|
+
* @attr {Array} options - The list of options to display.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export class GvChartPie extends GvChartPie_base {
|
|
49
|
+
}
|
|
50
|
+
export {};
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
export { GvAutocomplete } from "./atoms/gv-autocomplete";
|
|
2
|
+
export { GvButton } from "./atoms/gv-button";
|
|
3
|
+
export { GvCheckbox } from "./atoms/gv-checkbox";
|
|
4
|
+
export { GvDatePickerCalendar } from "./atoms/gv-date-picker-calendar";
|
|
5
|
+
export { GvDatePickerCell } from "./atoms/gv-date-picker-cell";
|
|
6
|
+
export { GvDatePicker } from "./atoms/gv-date-picker";
|
|
7
|
+
export { GvFileUpload } from "./atoms/gv-file-upload";
|
|
8
|
+
export { GvIcon } from "./atoms/gv-icon";
|
|
9
|
+
export { GvImage } from "./atoms/gv-image";
|
|
10
|
+
export { GvInputMessage } from "./atoms/gv-input-message";
|
|
11
|
+
export { GvInput } from "./atoms/gv-input";
|
|
12
|
+
export { GvLink } from "./atoms/gv-link";
|
|
13
|
+
export { GvMessage } from "./atoms/gv-message";
|
|
14
|
+
export { GvMetric } from "./atoms/gv-metric";
|
|
15
|
+
export { GvRelativeTime } from "./atoms/gv-relative-time";
|
|
16
|
+
export { GvSelectNative } from "./atoms/gv-select-native";
|
|
17
|
+
export { GvSelect } from "./atoms/gv-select";
|
|
18
|
+
export { GvSpinner } from "./atoms/gv-spinner";
|
|
19
|
+
export { GvState } from "./atoms/gv-state";
|
|
20
|
+
export { GvSwitch } from "./atoms/gv-switch";
|
|
21
|
+
export { GvTag } from "./atoms/gv-tag";
|
|
22
|
+
export { GvText } from "./atoms/gv-text";
|
|
23
|
+
export { GvChartBar } from "./charts/gv-chart-bar";
|
|
24
|
+
export { GvChartGauge } from "./charts/gv-chart-gauge";
|
|
25
|
+
export { GvChartHistogram } from "./charts/gv-chart-histogram";
|
|
26
|
+
export { GvChartLine } from "./charts/gv-chart-line";
|
|
27
|
+
export { GvChartMap } from "./charts/gv-chart-map";
|
|
28
|
+
export { GvChartPie } from "./charts/gv-chart-pie";
|
|
29
|
+
export { GvCardFull } from "./molecules/gv-card-full";
|
|
30
|
+
export { GvCardList } from "./molecules/gv-card-list";
|
|
31
|
+
export { GvCard } from "./molecules/gv-card";
|
|
32
|
+
export { GvCategoryList } from "./molecules/gv-category-list";
|
|
33
|
+
export { GvCategory } from "./molecules/gv-category";
|
|
34
|
+
export { GvCode } from "./molecules/gv-code";
|
|
35
|
+
export { GvConfirm } from "./molecules/gv-confirm";
|
|
36
|
+
export { GvCronEditor } from "./molecules/gv-cron-editor";
|
|
37
|
+
export { GvDropdownMenu } from "./molecules/gv-dropdown-menu";
|
|
38
|
+
export { GvExpandable } from "./molecules/gv-expandable";
|
|
39
|
+
export { GvExpressionLanguage } from "./molecules/gv-expression-language";
|
|
40
|
+
export { GvIdentityPicture } from "./molecules/gv-identity-picture";
|
|
41
|
+
export { GvList } from "./molecules/gv-list";
|
|
42
|
+
export { GvMetrics } from "./molecules/gv-metrics";
|
|
43
|
+
export { GvModal } from "./molecules/gv-modal";
|
|
44
|
+
export { GvNav } from "./molecules/gv-nav";
|
|
45
|
+
export { GvOption } from "./molecules/gv-option";
|
|
46
|
+
export { GvPlans } from "./molecules/gv-plans";
|
|
47
|
+
export { GvPopover } from "./molecules/gv-popover";
|
|
48
|
+
export { GvPromote } from "./molecules/gv-promote";
|
|
49
|
+
export { GvRatingList } from "./molecules/gv-rating-list";
|
|
50
|
+
export { GvRating } from "./molecules/gv-rating";
|
|
51
|
+
export { GvRowExpandable } from "./molecules/gv-row-expandable";
|
|
52
|
+
export { GvRow } from "./molecules/gv-row";
|
|
53
|
+
export { GvStats } from "./molecules/gv-stats";
|
|
54
|
+
export { GvStepper } from "./molecules/gv-stepper";
|
|
55
|
+
export { GvTable } from "./molecules/gv-table";
|
|
56
|
+
export { GvTree } from "./molecules/gv-tree";
|
|
57
|
+
export { GvDocumentation } from "./organisms/gv-documentation";
|
|
58
|
+
export { GvHeader } from "./organisms/gv-header";
|
|
59
|
+
export { GvHttpClient } from "./organisms/gv-http-client";
|
|
60
|
+
export { GvMenu } from "./organisms/gv-menu";
|
|
61
|
+
export { GvNewsletterSubscription } from "./organisms/gv-newsletter-subscription";
|
|
62
|
+
export { GvPagination } from "./organisms/gv-pagination";
|
|
63
|
+
export { GvProperties } from "./organisms/gv-properties";
|
|
64
|
+
export { GvResizableViews } from "./organisms/gv-resizable-views";
|
|
65
|
+
export { GvResources } from "./organisms/gv-resources";
|
|
66
|
+
export { GvSchemaFormArray } from "./organisms/gv-schema-form-array";
|
|
67
|
+
export { GvSchemaFormControlObject } from "./organisms/gv-schema-form-control-object";
|
|
68
|
+
export { GvSchemaFormControl } from "./organisms/gv-schema-form-control";
|
|
69
|
+
export { GvSchemaForm } from "./organisms/gv-schema-form";
|
|
70
|
+
export { GvTabs } from "./organisms/gv-tabs";
|
|
71
|
+
export { GvUserMenu } from "./organisms/gv-user-menu";
|
|
72
|
+
export { GvVerticalMenu } from "./organisms/gv-vertical-menu";
|
|
73
|
+
export { GvFlowStep } from "./policy-studio/gv-flow-step";
|
|
74
|
+
export { GvFlow } from "./policy-studio/gv-flow";
|
|
75
|
+
export { GvPolicyStudioMenu } from "./policy-studio/gv-policy-studio-menu";
|
|
76
|
+
export { GvPolicyStudio } from "./policy-studio/gv-policy-studio";
|
|
77
|
+
export { GvTheme } from "./theme/gv-theme";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function isValidCron(cron: any, options: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function isInvalid(date: any, min: any, max: any, noTime?: boolean, disabledDates?: any[]): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function dispatchCustomEvent(node: any, suffix: any, detail: any, options?: {}): void;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export namespace httpClientSchemaForm {
|
|
2
|
+
export const type: string;
|
|
3
|
+
export const id: string;
|
|
4
|
+
export namespace properties {
|
|
5
|
+
namespace method {
|
|
6
|
+
export const title: string;
|
|
7
|
+
export const description: string;
|
|
8
|
+
const type_1: string;
|
|
9
|
+
export { type_1 as type };
|
|
10
|
+
const _default: string;
|
|
11
|
+
export { _default as default };
|
|
12
|
+
const _enum: string[];
|
|
13
|
+
export { _enum as enum };
|
|
14
|
+
}
|
|
15
|
+
namespace path {
|
|
16
|
+
const title_1: string;
|
|
17
|
+
export { title_1 as title };
|
|
18
|
+
const type_2: string;
|
|
19
|
+
export { type_2 as type };
|
|
20
|
+
const _default_1: string;
|
|
21
|
+
export { _default_1 as default };
|
|
22
|
+
}
|
|
23
|
+
namespace headers {
|
|
24
|
+
const type_3: string;
|
|
25
|
+
export { type_3 as type };
|
|
26
|
+
const title_2: string;
|
|
27
|
+
export { title_2 as title };
|
|
28
|
+
export namespace items {
|
|
29
|
+
const type_4: string;
|
|
30
|
+
export { type_4 as type };
|
|
31
|
+
const title_3: string;
|
|
32
|
+
export { title_3 as title };
|
|
33
|
+
export namespace properties_1 {
|
|
34
|
+
namespace name {
|
|
35
|
+
const title_4: string;
|
|
36
|
+
export { title_4 as title };
|
|
37
|
+
const type_5: string;
|
|
38
|
+
export { type_5 as type };
|
|
39
|
+
}
|
|
40
|
+
namespace value {
|
|
41
|
+
const title_5: string;
|
|
42
|
+
export { title_5 as title };
|
|
43
|
+
const type_6: string;
|
|
44
|
+
export { type_6 as type };
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
export { properties_1 as properties };
|
|
48
|
+
}
|
|
49
|
+
export const required: string[];
|
|
50
|
+
}
|
|
51
|
+
const body: {
|
|
52
|
+
title: string;
|
|
53
|
+
type: string;
|
|
54
|
+
'x-schema-form': {
|
|
55
|
+
type: string;
|
|
56
|
+
codemirrorOptions: {
|
|
57
|
+
placeholder: string;
|
|
58
|
+
lineWrapping: boolean;
|
|
59
|
+
lineNumbers: boolean;
|
|
60
|
+
allowDropFileTypes: boolean;
|
|
61
|
+
autoCloseTags: boolean;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
const required_1: string[];
|
|
67
|
+
export { required_1 as required };
|
|
68
|
+
}
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
export const statusCode: {
|
|
2
|
+
100: {
|
|
3
|
+
description: string;
|
|
4
|
+
constant: string;
|
|
5
|
+
};
|
|
6
|
+
101: {
|
|
7
|
+
description: string;
|
|
8
|
+
constant: string;
|
|
9
|
+
};
|
|
10
|
+
102: {
|
|
11
|
+
description: string;
|
|
12
|
+
constant: string;
|
|
13
|
+
};
|
|
14
|
+
200: {
|
|
15
|
+
description: string;
|
|
16
|
+
constant: string;
|
|
17
|
+
};
|
|
18
|
+
201: {
|
|
19
|
+
description: string;
|
|
20
|
+
constant: string;
|
|
21
|
+
};
|
|
22
|
+
202: {
|
|
23
|
+
description: string;
|
|
24
|
+
constant: string;
|
|
25
|
+
};
|
|
26
|
+
203: {
|
|
27
|
+
description: string;
|
|
28
|
+
constant: string;
|
|
29
|
+
};
|
|
30
|
+
204: {
|
|
31
|
+
description: string;
|
|
32
|
+
constant: string;
|
|
33
|
+
};
|
|
34
|
+
205: {
|
|
35
|
+
description: string;
|
|
36
|
+
constant: string;
|
|
37
|
+
};
|
|
38
|
+
206: {
|
|
39
|
+
description: string;
|
|
40
|
+
constant: string;
|
|
41
|
+
};
|
|
42
|
+
207: {
|
|
43
|
+
description: string;
|
|
44
|
+
constant: string;
|
|
45
|
+
};
|
|
46
|
+
300: {
|
|
47
|
+
description: string;
|
|
48
|
+
constant: string;
|
|
49
|
+
};
|
|
50
|
+
301: {
|
|
51
|
+
description: string;
|
|
52
|
+
constant: string;
|
|
53
|
+
};
|
|
54
|
+
302: {
|
|
55
|
+
description: string;
|
|
56
|
+
constant: string;
|
|
57
|
+
};
|
|
58
|
+
303: {
|
|
59
|
+
description: string;
|
|
60
|
+
constant: string;
|
|
61
|
+
};
|
|
62
|
+
304: {
|
|
63
|
+
description: string;
|
|
64
|
+
constant: string;
|
|
65
|
+
};
|
|
66
|
+
305: {
|
|
67
|
+
description: string;
|
|
68
|
+
constant: string;
|
|
69
|
+
};
|
|
70
|
+
307: {
|
|
71
|
+
description: string;
|
|
72
|
+
constant: string;
|
|
73
|
+
};
|
|
74
|
+
308: {
|
|
75
|
+
description: string;
|
|
76
|
+
constant: string;
|
|
77
|
+
};
|
|
78
|
+
400: {
|
|
79
|
+
description: string;
|
|
80
|
+
constant: string;
|
|
81
|
+
};
|
|
82
|
+
401: {
|
|
83
|
+
description: string;
|
|
84
|
+
constant: string;
|
|
85
|
+
};
|
|
86
|
+
402: {
|
|
87
|
+
description: string;
|
|
88
|
+
constant: string;
|
|
89
|
+
};
|
|
90
|
+
403: {
|
|
91
|
+
description: string;
|
|
92
|
+
constant: string;
|
|
93
|
+
};
|
|
94
|
+
404: {
|
|
95
|
+
description: string;
|
|
96
|
+
constant: string;
|
|
97
|
+
};
|
|
98
|
+
405: {
|
|
99
|
+
description: string;
|
|
100
|
+
constant: string;
|
|
101
|
+
};
|
|
102
|
+
406: {
|
|
103
|
+
description: string;
|
|
104
|
+
constant: string;
|
|
105
|
+
};
|
|
106
|
+
407: {
|
|
107
|
+
description: string;
|
|
108
|
+
constant: string;
|
|
109
|
+
};
|
|
110
|
+
408: {
|
|
111
|
+
description: string;
|
|
112
|
+
constant: string;
|
|
113
|
+
};
|
|
114
|
+
409: {
|
|
115
|
+
description: string;
|
|
116
|
+
constant: string;
|
|
117
|
+
};
|
|
118
|
+
410: {
|
|
119
|
+
description: string;
|
|
120
|
+
constant: string;
|
|
121
|
+
};
|
|
122
|
+
411: {
|
|
123
|
+
description: string;
|
|
124
|
+
constant: string;
|
|
125
|
+
};
|
|
126
|
+
412: {
|
|
127
|
+
description: string;
|
|
128
|
+
constant: string;
|
|
129
|
+
};
|
|
130
|
+
413: {
|
|
131
|
+
description: string;
|
|
132
|
+
constant: string;
|
|
133
|
+
};
|
|
134
|
+
414: {
|
|
135
|
+
description: string;
|
|
136
|
+
constant: string;
|
|
137
|
+
};
|
|
138
|
+
415: {
|
|
139
|
+
description: string;
|
|
140
|
+
constant: string;
|
|
141
|
+
};
|
|
142
|
+
416: {
|
|
143
|
+
description: string;
|
|
144
|
+
constant: string;
|
|
145
|
+
};
|
|
146
|
+
417: {
|
|
147
|
+
description: string;
|
|
148
|
+
constant: string;
|
|
149
|
+
};
|
|
150
|
+
418: {
|
|
151
|
+
description: string;
|
|
152
|
+
constant: string;
|
|
153
|
+
};
|
|
154
|
+
419: {
|
|
155
|
+
description: string;
|
|
156
|
+
constant: string;
|
|
157
|
+
};
|
|
158
|
+
420: {
|
|
159
|
+
description: string;
|
|
160
|
+
constant: string;
|
|
161
|
+
};
|
|
162
|
+
422: {
|
|
163
|
+
description: string;
|
|
164
|
+
constant: string;
|
|
165
|
+
};
|
|
166
|
+
423: {
|
|
167
|
+
description: string;
|
|
168
|
+
constant: string;
|
|
169
|
+
};
|
|
170
|
+
424: {
|
|
171
|
+
description: string;
|
|
172
|
+
constant: string;
|
|
173
|
+
};
|
|
174
|
+
428: {
|
|
175
|
+
description: string;
|
|
176
|
+
constant: string;
|
|
177
|
+
};
|
|
178
|
+
429: {
|
|
179
|
+
description: string;
|
|
180
|
+
constant: string;
|
|
181
|
+
};
|
|
182
|
+
431: {
|
|
183
|
+
description: string;
|
|
184
|
+
constant: string;
|
|
185
|
+
};
|
|
186
|
+
451: {
|
|
187
|
+
description: string;
|
|
188
|
+
constant: string;
|
|
189
|
+
};
|
|
190
|
+
500: {
|
|
191
|
+
description: string;
|
|
192
|
+
constant: string;
|
|
193
|
+
};
|
|
194
|
+
501: {
|
|
195
|
+
description: string;
|
|
196
|
+
constant: string;
|
|
197
|
+
};
|
|
198
|
+
502: {
|
|
199
|
+
description: string;
|
|
200
|
+
constant: string;
|
|
201
|
+
};
|
|
202
|
+
503: {
|
|
203
|
+
description: string;
|
|
204
|
+
constant: string;
|
|
205
|
+
};
|
|
206
|
+
504: {
|
|
207
|
+
description: string;
|
|
208
|
+
constant: string;
|
|
209
|
+
};
|
|
210
|
+
505: {
|
|
211
|
+
description: string;
|
|
212
|
+
constant: string;
|
|
213
|
+
};
|
|
214
|
+
507: {
|
|
215
|
+
description: string;
|
|
216
|
+
constant: string;
|
|
217
|
+
};
|
|
218
|
+
511: {
|
|
219
|
+
description: string;
|
|
220
|
+
constant: string;
|
|
221
|
+
};
|
|
222
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @param {string} key - The translation key
|
|
3
|
+
* @param {object} data - The translation data
|
|
4
|
+
* @returns {string} - The translated
|
|
5
|
+
*/
|
|
6
|
+
export function i18n(key: string, data: object): string;
|
|
7
|
+
export namespace i18n {
|
|
8
|
+
const _translations: {};
|
|
9
|
+
const _messageFormatter: MessageFormat;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @param {string} lang - Translation language code
|
|
13
|
+
*/
|
|
14
|
+
export function setLanguage(lang: string): void;
|
|
15
|
+
/**
|
|
16
|
+
* @returns {string} - Translation language code
|
|
17
|
+
*/
|
|
18
|
+
export function getLanguage(): string;
|
|
19
|
+
/**
|
|
20
|
+
* @param {string} lang - Translation language code
|
|
21
|
+
* @param {object} translations - Translation values by key
|
|
22
|
+
* @param {object} label - Lang label
|
|
23
|
+
*/
|
|
24
|
+
export function addTranslations(lang: string, translations: object, label: object): void;
|
|
25
|
+
/**
|
|
26
|
+
* @returns {object} - All defined languages (key: human name and value: code)
|
|
27
|
+
*/
|
|
28
|
+
export function getAvailableLanguages(): object;
|
|
29
|
+
export function loadDefaultTranslations(): Promise<void>;
|
|
30
|
+
import MessageFormat = require("messageformat");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export function getVersion(item: any): any;
|
|
2
|
+
export function getTitle(item: any): any;
|
|
3
|
+
export function getPicture(item: any): any;
|
|
4
|
+
export function getBackground(item: any): any;
|
|
5
|
+
export function getStates(item: any): any;
|
|
6
|
+
export function getLabels(item: any): any;
|
|
7
|
+
export function getRating(item: any): any;
|
|
8
|
+
export function getEntrypoints(item: any): any;
|
|
9
|
+
export function getDescription(item: any): any;
|
|
10
|
+
export function getOwner(item: any): any;
|
|
11
|
+
export function getNbApisInView(item: any): any;
|
|
12
|
+
export function getPictureDisplayName(item: any): any;
|