@glance-networks/agent-plugin
Version:
Glance Networks Agent Plugin
86 lines (85 loc) • 2.22 kB
TypeScript
import alert_error_filled from './assets/alert_error_filled.svelte';
import alert_triangle_filled from './assets/alert_triangle_filled.svelte';
import alert_info_filled from './assets/alert_info_filled.svelte';
import alert_success_filled from './assets/alert_success_filled.svelte';
import alertInfo from './assets/alertInfo.svelte';
import alertTriangle from './assets/alertTriangle.svelte';
import alertError from './assets/alertError.svelte';
import alertSuccess from './assets/alertSuccess.svelte';
/**
* @constant
* @name ALERT_BADGE_SIZES
* @description Alert badge sizes
**/
export declare const ALERT_BADGE_SIZES: {
small: string;
medium: string;
large: string;
};
/**
* @constant
* @name Icons
* @description SVG icons, colors and label for the alert severity badge
**/
export declare const Icons: {
info: {
component: typeof alertInfo;
label: string;
inverseStroke: any;
stroke: any;
dataIcon: string;
};
warning: {
component: typeof alertTriangle;
label: string;
inverseStroke: any;
stroke: any;
dataIcon: string;
};
error: {
component: typeof alertError;
label: string;
inverseStroke: any;
stroke: any;
dataIcon: string;
};
success: {
component: typeof alertSuccess;
label: string;
inverseStroke: any;
stroke: any;
dataIcon: string;
};
info_filled: {
component: typeof alert_info_filled;
label: string;
inverseFill: any;
fill: any;
stroke: any;
dataIcon: string;
};
warning_filled: {
component: typeof alert_triangle_filled;
label: string;
inverseFill: any;
fill: any;
stroke: any;
dataIcon: string;
};
error_filled: {
component: typeof alert_error_filled;
label: string;
inverseFill: any;
fill: any;
stroke: any;
dataIcon: string;
};
success_filled: {
component: typeof alert_success_filled;
label: string;
inverseFill: any;
fill: any;
stroke: any;
dataIcon: string;
};
};