@m4l/widgets 0.3.0 → 0.3.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/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/index.js +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './charts';
|
|
2
2
|
export * from './cards/WidgetBase';
|
|
3
|
-
export * from './cards/WidgetDigitalInput';
|
|
4
3
|
export * from './cards/WidgetBaseThreeValues';
|
|
4
|
+
export * from './cards/WidgetDigitalInput';
|
|
5
5
|
export * from './@types/types.d';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../packages/widgets/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../packages/widgets/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC"}
|
package/index.js
CHANGED
|
@@ -3,15 +3,15 @@ import { ChartSeries as a } from "./charts/ChartSeries/ChartSeries.js";
|
|
|
3
3
|
import { CHART_SERIES_DICTIONARY as m, getChartSeriesComponentDictionary as p, resolveChartSeriesCompactNumberDictionary as C } from "./charts/ChartSeries/dictionary.js";
|
|
4
4
|
import { formatCompactNumber as s } from "./charts/ChartSeries/helpers/formatCompactNumber.js";
|
|
5
5
|
import { WidgetBase as g } from "./cards/WidgetBase/WidgetBase.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { WidgetBaseThreeValues as n } from "./cards/WidgetBaseThreeValues/WidgetBaseThreeValues.js";
|
|
7
|
+
import { WidgetDigitalInput as c } from "./cards/WidgetDigitalInput/WidgetDigitalInput.js";
|
|
8
8
|
export {
|
|
9
9
|
m as CHART_SERIES_DICTIONARY,
|
|
10
10
|
t as ChartPie,
|
|
11
11
|
a as ChartSeries,
|
|
12
12
|
g as WidgetBase,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
n as WidgetBaseThreeValues,
|
|
14
|
+
c as WidgetDigitalInput,
|
|
15
15
|
s as formatCompactNumber,
|
|
16
16
|
p as getChartSeriesComponentDictionary,
|
|
17
17
|
C as resolveChartSeriesCompactNumberDictionary
|