@gdacm/grafana-items 0.1.1
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/dist/index.d.ts +81 -0
- package/dist/index.js +1168 -0
- package/dist/index.js.map +1 -0
- package/dist/items/Annotation.d.ts +17 -0
- package/dist/items/Annotations.d.ts +12 -0
- package/dist/items/BarChart.d.ts +15 -0
- package/dist/items/Color.d.ts +8 -0
- package/dist/items/Dashboard.d.ts +46 -0
- package/dist/items/DataTransformation.d.ts +8 -0
- package/dist/items/Datasource.d.ts +9 -0
- package/dist/items/DatasourceInfinity.d.ts +8 -0
- package/dist/items/FieldConfig.d.ts +17 -0
- package/dist/items/FieldConfigCustom.d.ts +8 -0
- package/dist/items/FieldConfigCustomBarChart.d.ts +31 -0
- package/dist/items/FieldConfigCustomGauge.d.ts +8 -0
- package/dist/items/FieldConfigCustomGeomap.d.ts +10 -0
- package/dist/items/FieldConfigCustomStat.d.ts +8 -0
- package/dist/items/FieldConfigCustomTable.d.ts +16 -0
- package/dist/items/FieldConfigCustomTableCellOptions.d.ts +8 -0
- package/dist/items/FieldConfigCustomTableFooter.d.ts +12 -0
- package/dist/items/FieldConfigCustomText.d.ts +8 -0
- package/dist/items/FieldConfigCustomTimeSerie.d.ts +54 -0
- package/dist/items/FieldConfigDefault.d.ts +31 -0
- package/dist/items/FieldConfigOverride.d.ts +18 -0
- package/dist/items/Gauge.d.ts +14 -0
- package/dist/items/Geomap.d.ts +14 -0
- package/dist/items/GrafanaItem.d.ts +18 -0
- package/dist/items/GridPos.d.ts +12 -0
- package/dist/items/HideFrom.d.ts +10 -0
- package/dist/items/Influxdb.d.ts +8 -0
- package/dist/items/LineStyle.d.ts +8 -0
- package/dist/items/Link.d.ts +22 -0
- package/dist/items/Mapping.d.ts +8 -0
- package/dist/items/OverrideMatcher.d.ts +11 -0
- package/dist/items/OverrideMatcherOptionsByNames.d.ts +15 -0
- package/dist/items/OverrideProperty.d.ts +9 -0
- package/dist/items/Panel.d.ts +57 -0
- package/dist/items/PanelOptions.d.ts +8 -0
- package/dist/items/PanelOptionsBarChart.d.ts +30 -0
- package/dist/items/PanelOptionsGauge.d.ts +30 -0
- package/dist/items/PanelOptionsGaugeEffect.d.ts +10 -0
- package/dist/items/PanelOptionsGaugeReduceOptions.d.ts +15 -0
- package/dist/items/PanelOptionsGeomap.d.ts +32 -0
- package/dist/items/PanelOptionsGeomapBasemap.d.ts +14 -0
- package/dist/items/PanelOptionsGeomapControls.d.ts +13 -0
- package/dist/items/PanelOptionsGeomapLayer.d.ts +19 -0
- package/dist/items/PanelOptionsGeomapLayerConfig.d.ts +12 -0
- package/dist/items/PanelOptionsGeomapLayerConfigStyle.d.ts +31 -0
- package/dist/items/PanelOptionsGeomapLayerLocation.d.ts +8 -0
- package/dist/items/PanelOptionsGeomapTooltip.d.ts +8 -0
- package/dist/items/PanelOptionsGeomapView.d.ts +14 -0
- package/dist/items/PanelOptionsStat.d.ts +8 -0
- package/dist/items/PanelOptionsTable.d.ts +14 -0
- package/dist/items/PanelOptionsTableSortBy.d.ts +9 -0
- package/dist/items/PanelOptionsText.d.ts +12 -0
- package/dist/items/PanelOptionsTextCode.d.ts +10 -0
- package/dist/items/PanelOptionsTimeSeries.d.ts +16 -0
- package/dist/items/ScaleDistribution.d.ts +8 -0
- package/dist/items/Stacking.d.ts +9 -0
- package/dist/items/Stat.d.ts +14 -0
- package/dist/items/StyleColor.d.ts +8 -0
- package/dist/items/StyleRotation.d.ts +11 -0
- package/dist/items/StyleSize.d.ts +10 -0
- package/dist/items/StyleSymbol.d.ts +10 -0
- package/dist/items/StyleSymbolAlign.d.ts +9 -0
- package/dist/items/StyleTextConfig.d.ts +12 -0
- package/dist/items/Table.d.ts +14 -0
- package/dist/items/Target.d.ts +17 -0
- package/dist/items/TargetInfinity.d.ts +20 -0
- package/dist/items/Template.d.ts +29 -0
- package/dist/items/TemplateCurrent.d.ts +9 -0
- package/dist/items/TemplateOption.d.ts +10 -0
- package/dist/items/Templating.d.ts +12 -0
- package/dist/items/Testdata.d.ts +8 -0
- package/dist/items/TextPanel.d.ts +14 -0
- package/dist/items/ThresholdStyle.d.ts +8 -0
- package/dist/items/Thresholds.d.ts +14 -0
- package/dist/items/ThresholdsStep.d.ts +9 -0
- package/dist/items/TimePicker.d.ts +12 -0
- package/dist/items/TimeRange.d.ts +10 -0
- package/dist/items/TimeSeries.d.ts +15 -0
- package/dist/items/VizLegendOptions.d.ts +22 -0
- package/dist/items/VizTextDisplayOptions.d.ts +10 -0
- package/dist/items/VizTooltipOptions.d.ts +12 -0
- package/package.json +41 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
export { GrafanaItem } from "./items/GrafanaItem.js";
|
|
2
|
+
export { OverrideMatcher } from "./items/OverrideMatcher.js";
|
|
3
|
+
export { OverrideMatcherOptionsByNames } from "./items/OverrideMatcherOptionsByNames.js";
|
|
4
|
+
export { OverrideProperty } from "./items/OverrideProperty.js";
|
|
5
|
+
export { Datasource } from "./items/Datasource.js";
|
|
6
|
+
export { Annotation } from "./items/Annotation.js";
|
|
7
|
+
export { Annotations } from "./items/Annotations.js";
|
|
8
|
+
export { Color } from "./items/Color.js";
|
|
9
|
+
export { TimeRange } from "./items/TimeRange.js";
|
|
10
|
+
export { GridPos } from "./items/GridPos.js";
|
|
11
|
+
export { FieldConfigCustom } from "./items/FieldConfigCustom.js";
|
|
12
|
+
export { Mapping } from "./items/Mapping.js";
|
|
13
|
+
export { ThresholdsStep } from "./items/ThresholdsStep.js";
|
|
14
|
+
export { Thresholds } from "./items/Thresholds.js";
|
|
15
|
+
export { FieldConfigDefault } from "./items/FieldConfigDefault.js";
|
|
16
|
+
export { FieldConfigOverride } from "./items/FieldConfigOverride.js";
|
|
17
|
+
export { HideFrom } from "./items/HideFrom.js";
|
|
18
|
+
export { FieldConfig } from "./items/FieldConfig.js";
|
|
19
|
+
export { Target } from "./items/Target.js";
|
|
20
|
+
export { Link } from "./items/Link.js";
|
|
21
|
+
export { DataTransformation } from "./items/DataTransformation.js";
|
|
22
|
+
export { Panel } from "./items/Panel.js";
|
|
23
|
+
export { TemplateCurrent } from "./items/TemplateCurrent.js";
|
|
24
|
+
export { TemplateOption } from "./items/TemplateOption.js";
|
|
25
|
+
export { Template } from "./items/Template.js";
|
|
26
|
+
export { Templating } from "./items/Templating.js";
|
|
27
|
+
export { TimePicker } from "./items/TimePicker.js";
|
|
28
|
+
export { Dashboard } from "./items/Dashboard.js";
|
|
29
|
+
export { DatasourceInfinity } from "./items/DatasourceInfinity.js";
|
|
30
|
+
export { ScaleDistribution } from "./items/ScaleDistribution.js";
|
|
31
|
+
export { ThresholdStyle } from "./items/ThresholdStyle.js";
|
|
32
|
+
export { FieldConfigCustomBarChart } from "./items/FieldConfigCustomBarChart.js";
|
|
33
|
+
export { FieldConfigCustomGauge } from "./items/FieldConfigCustomGauge.js";
|
|
34
|
+
export { FieldConfigCustomGeomap } from "./items/FieldConfigCustomGeomap.js";
|
|
35
|
+
export { LineStyle } from "./items/LineStyle.js";
|
|
36
|
+
export { Stacking } from "./items/Stacking.js";
|
|
37
|
+
export { FieldConfigCustomTimeSerie } from "./items/FieldConfigCustomTimeSerie.js";
|
|
38
|
+
export { FieldConfigCustomTableCellOptions } from "./items/FieldConfigCustomTableCellOptions.js";
|
|
39
|
+
export { FieldConfigCustomTableFooter } from "./items/FieldConfigCustomTableFooter.js";
|
|
40
|
+
export { FieldConfigCustomTable } from "./items/FieldConfigCustomTable.js";
|
|
41
|
+
export { Influxdb } from "./items/Influxdb.js";
|
|
42
|
+
export { PanelOptions } from "./items/PanelOptions.js";
|
|
43
|
+
export { VizLegendOptions } from "./items/VizLegendOptions.js";
|
|
44
|
+
export { VizTooltipOptions } from "./items/VizTooltipOptions.js";
|
|
45
|
+
export { VizTextDisplayOptions } from "./items/VizTextDisplayOptions.js";
|
|
46
|
+
export { PanelOptionsBarChart } from "./items/PanelOptionsBarChart.js";
|
|
47
|
+
export { PanelOptionsGaugeEffect } from "./items/PanelOptionsGaugeEffect.js";
|
|
48
|
+
export { PanelOptionsGaugeReduceOptions } from "./items/PanelOptionsGaugeReduceOptions.js";
|
|
49
|
+
export { PanelOptionsGauge } from "./items/PanelOptionsGauge.js";
|
|
50
|
+
export { PanelOptionsGeomapBasemap } from "./items/PanelOptionsGeomapBasemap.js";
|
|
51
|
+
export { PanelOptionsGeomapControls } from "./items/PanelOptionsGeomapControls.js";
|
|
52
|
+
export { StyleColor } from "./items/StyleColor.js";
|
|
53
|
+
export { StyleRotation } from "./items/StyleRotation.js";
|
|
54
|
+
export { StyleSize } from "./items/StyleSize.js";
|
|
55
|
+
export { StyleSymbol } from "./items/StyleSymbol.js";
|
|
56
|
+
export { StyleSymbolAlign } from "./items/StyleSymbolAlign.js";
|
|
57
|
+
export { StyleTextConfig } from "./items/StyleTextConfig.js";
|
|
58
|
+
export { PanelOptionsGeomapLayerConfigStyle } from "./items/PanelOptionsGeomapLayerConfigStyle.js";
|
|
59
|
+
export { PanelOptionsGeomapLayerConfig } from "./items/PanelOptionsGeomapLayerConfig.js";
|
|
60
|
+
export { PanelOptionsGeomapLayerLocation } from "./items/PanelOptionsGeomapLayerLocation.js";
|
|
61
|
+
export { PanelOptionsGeomapLayer } from "./items/PanelOptionsGeomapLayer.js";
|
|
62
|
+
export { PanelOptionsGeomapTooltip } from "./items/PanelOptionsGeomapTooltip.js";
|
|
63
|
+
export { PanelOptionsGeomapView } from "./items/PanelOptionsGeomapView.js";
|
|
64
|
+
export { PanelOptionsGeomap } from "./items/PanelOptionsGeomap.js";
|
|
65
|
+
export { PanelOptionsStat } from "./items/PanelOptionsStat.js";
|
|
66
|
+
export { PanelOptionsTableSortBy } from "./items/PanelOptionsTableSortBy.js";
|
|
67
|
+
export { PanelOptionsTable } from "./items/PanelOptionsTable.js";
|
|
68
|
+
export { PanelOptionsTextCode } from "./items/PanelOptionsTextCode.js";
|
|
69
|
+
export { PanelOptionsText } from "./items/PanelOptionsText.js";
|
|
70
|
+
export { PanelOptionsTimeSeries } from "./items/PanelOptionsTimeSeries.js";
|
|
71
|
+
export { TargetInfinity } from "./items/TargetInfinity.js";
|
|
72
|
+
export { Testdata } from "./items/Testdata.js";
|
|
73
|
+
export { FieldConfigCustomText } from "./items/FieldConfigCustomText.js";
|
|
74
|
+
export { TextPanel } from "./items/TextPanel.js";
|
|
75
|
+
export { BarChart } from "./items/BarChart.js";
|
|
76
|
+
export { Gauge } from "./items/Gauge.js";
|
|
77
|
+
export { Geomap } from "./items/Geomap.js";
|
|
78
|
+
export { FieldConfigCustomStat } from "./items/FieldConfigCustomStat.js";
|
|
79
|
+
export { Stat } from "./items/Stat.js";
|
|
80
|
+
export { Table } from "./items/Table.js";
|
|
81
|
+
export { TimeSeries } from "./items/TimeSeries.js";
|