@devtable/dashboard 14.54.2 → 14.55.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/components/panel/settings/common/data-field-selector.d.ts +2 -1
- package/dist/components/panel/settings/common/numbro-format-selector.d.ts +5 -3
- package/dist/components/plugins/plugin-context.d.ts +44 -8
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/row-editor.d.ts +3 -2
- package/dist/components/plugins/viz-components/merico-linear-gauge/migrator/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/merico-linear-gauge/type.d.ts +3 -0
- package/dist/contexts/panel-context.d.ts +56 -8
- package/dist/dashboard-editor/model/panels/panel.d.ts +14 -2
- package/dist/dashboard.es.js +6401 -6267
- package/dist/dashboard.umd.js +89 -89
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +19 -6
- package/dist/model/render-model/dashboard/content/panels/types.d.ts +15 -2
- package/dist/stats.html +1 -1
- package/dist/utils/number.d.ts +1 -0
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/dist/utils/number.d.ts
CHANGED
|
@@ -9,4 +9,5 @@ export type TNumberFormat = TNumbroFormat & {
|
|
|
9
9
|
absolute: boolean;
|
|
10
10
|
};
|
|
11
11
|
export declare const defaultNumberFormat: TNumberFormat;
|
|
12
|
+
export declare const getDefaultNumberFormat: () => TNumberFormat;
|
|
12
13
|
export declare function formatNumber(number: string | number | null, { absolute, ...format }: TNumberFormat): string;
|
package/dist/version.json
CHANGED