@trackunit/react-widgets 2.0.0
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/README.md +19 -0
- package/index.cjs.js +354 -0
- package/index.d.ts +1 -0
- package/index.esm.js +343 -0
- package/package.json +24 -0
- package/src/EmptyStates/Error/WidgetError.d.ts +10 -0
- package/src/EmptyStates/MissingConfiguration/WidgetMissingConfiguration.d.ts +8 -0
- package/src/EmptyStates/NoData/WidgetNoData.d.ts +12 -0
- package/src/HorizontalWidgetLayout/HorizontalWidgetLayout.d.ts +13 -0
- package/src/HorizontalWidgetLayout/HorizontalWidgetLayout.variants.d.ts +4 -0
- package/src/VerticalSplitWidgetLayout/VerticalSplitWidgetLayout.d.ts +12 -0
- package/src/VerticalSplitWidgetLayout/VerticalSplitWidgetLayout.variants.d.ts +2 -0
- package/src/Widget/WidgetBody.d.ts +25 -0
- package/src/Widget/WidgetBody.variants.d.ts +4 -0
- package/src/Widget/WidgetEditBody.d.ts +33 -0
- package/src/Widget/WidgetEditBody.variants.d.ts +4 -0
- package/src/WidgetKPI/WidgetKPI.d.ts +67 -0
- package/src/WidgetKPI/WidgetKPI.variants.d.ts +13 -0
- package/src/WidgetList/WidgetList.d.ts +35 -0
- package/src/WidgetList/WidgetList.variants.d.ts +2 -0
- package/src/WidgetListItem/WidgetListItem.d.ts +16 -0
- package/src/WidgetListItem/WidgetListItem.variants.d.ts +1 -0
- package/src/index.d.ts +10 -0
- package/src/translation.d.ts +33 -0
- package/translation.cjs.js +12 -0
- package/translation.cjs10.js +12 -0
- package/translation.cjs11.js +12 -0
- package/translation.cjs12.js +12 -0
- package/translation.cjs13.js +12 -0
- package/translation.cjs14.js +12 -0
- package/translation.cjs15.js +12 -0
- package/translation.cjs16.js +12 -0
- package/translation.cjs17.js +12 -0
- package/translation.cjs2.js +12 -0
- package/translation.cjs3.js +12 -0
- package/translation.cjs4.js +12 -0
- package/translation.cjs5.js +12 -0
- package/translation.cjs6.js +12 -0
- package/translation.cjs7.js +12 -0
- package/translation.cjs8.js +12 -0
- package/translation.cjs9.js +12 -0
- package/translation.esm.js +10 -0
- package/translation.esm10.js +10 -0
- package/translation.esm11.js +10 -0
- package/translation.esm12.js +10 -0
- package/translation.esm13.js +10 -0
- package/translation.esm14.js +10 -0
- package/translation.esm15.js +10 -0
- package/translation.esm16.js +10 -0
- package/translation.esm17.js +10 -0
- package/translation.esm2.js +10 -0
- package/translation.esm3.js +10 -0
- package/translation.esm4.js +10 -0
- package/translation.esm5.js +10 -0
- package/translation.esm6.js +10 -0
- package/translation.esm7.js +10 -0
- package/translation.esm8.js +10 -0
- package/translation.esm9.js +10 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
+
import { CommonProps } from "@trackunit/react-components";
|
|
3
|
+
import { RelayPagination } from "@trackunit/react-table-pagination";
|
|
4
|
+
import { MappedOmit } from "@trackunit/shared-utils";
|
|
5
|
+
import { ReactElement, RefObject } from "react";
|
|
6
|
+
import { cvaWidgetList } from "./WidgetList.variants";
|
|
7
|
+
export interface WidgetListProps extends CommonProps, MappedOmit<VariantProps<typeof cvaWidgetList>, "className"> {
|
|
8
|
+
/**
|
|
9
|
+
* The number of items in the list.
|
|
10
|
+
*/
|
|
11
|
+
count: number;
|
|
12
|
+
/**
|
|
13
|
+
* The pagination configuration for the list.
|
|
14
|
+
*/
|
|
15
|
+
pagination: RelayPagination;
|
|
16
|
+
/**
|
|
17
|
+
* The height of each row in the list, default is 56px.
|
|
18
|
+
*/
|
|
19
|
+
rowHeight?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The children to render for each item in the list.
|
|
22
|
+
*/
|
|
23
|
+
children: (index: number) => ReactElement | null;
|
|
24
|
+
/**
|
|
25
|
+
* The ref for the scroll container.
|
|
26
|
+
*/
|
|
27
|
+
scrollRef?: RefObject<HTMLDivElement | null>;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* WidgetList used for rendering a list of in a widget
|
|
31
|
+
*
|
|
32
|
+
* @param { WidgetListProps} props - The props for the WidgetList component
|
|
33
|
+
* @returns {JSX.Element} WidgetList component
|
|
34
|
+
*/
|
|
35
|
+
export declare const WidgetList: ({ dataTestId, pagination, count, children, className, rowHeight, scrollRef, }: WidgetListProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
+
import { CommonProps } from "@trackunit/react-components";
|
|
3
|
+
import { MappedOmit } from "@trackunit/shared-utils";
|
|
4
|
+
import { cvaWidgetListItem } from "../WidgetListItem/WidgetListItem.variants";
|
|
5
|
+
export interface WidgetListItemProps extends CommonProps, MappedOmit<VariantProps<typeof cvaWidgetListItem>, "className"> {
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
tableCellComponent: React.ReactNode;
|
|
8
|
+
details?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Widget ListItem component for the WidgetList component this is 1 row in the list
|
|
12
|
+
*
|
|
13
|
+
* @param { WidgetListItemProps} props - The props for the WidgetListItem component
|
|
14
|
+
* @returns {JSX.Element} WidgetListItem component
|
|
15
|
+
*/
|
|
16
|
+
export declare const WidgetListItem: ({ className, dataTestId, onClick, details, tableCellComponent, }: WidgetListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const cvaWidgetListItem: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string;
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./EmptyStates/Error/WidgetError";
|
|
2
|
+
export * from "./EmptyStates/MissingConfiguration/WidgetMissingConfiguration";
|
|
3
|
+
export * from "./EmptyStates/NoData/WidgetNoData";
|
|
4
|
+
export * from "./HorizontalWidgetLayout/HorizontalWidgetLayout";
|
|
5
|
+
export * from "./VerticalSplitWidgetLayout/VerticalSplitWidgetLayout";
|
|
6
|
+
export * from "./Widget/WidgetBody";
|
|
7
|
+
export * from "./Widget/WidgetEditBody";
|
|
8
|
+
export * from "./WidgetKPI/WidgetKPI";
|
|
9
|
+
export * from "./WidgetList/WidgetList";
|
|
10
|
+
export * from "./WidgetListItem/WidgetListItem";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { NamespaceTransProps, TransForLibs, TranslationResource } from "@trackunit/i18n-library-translation";
|
|
2
|
+
import defaultTranslations from "./locales/en/translation.json";
|
|
3
|
+
/** A type for all available translation keys in this library */
|
|
4
|
+
export type TranslationKeys = keyof typeof defaultTranslations;
|
|
5
|
+
/** The translation namespace for this library */
|
|
6
|
+
export declare const namespace = "react.widgets";
|
|
7
|
+
/**
|
|
8
|
+
* The TranslationResource for this Library.
|
|
9
|
+
* Holds lazy loaded imports for all languages supported by the library.
|
|
10
|
+
*
|
|
11
|
+
* This is used to register the translations for this library before initializing i18next.
|
|
12
|
+
*/
|
|
13
|
+
export declare const translations: TranslationResource<TranslationKeys>;
|
|
14
|
+
/**
|
|
15
|
+
* Local useTranslation for this specific library
|
|
16
|
+
*/
|
|
17
|
+
export declare const useTranslation: () => [TransForLibs<"widget.edit.cancel" | "widget.edit.save" | "widget.edit.title" | "widget.emptystate.configure" | "widget.emptystate.error" | "widget.emptystate.missingdata">, import("i18next").i18n, boolean] & {
|
|
18
|
+
t: TransForLibs<"widget.edit.cancel" | "widget.edit.save" | "widget.edit.title" | "widget.emptystate.configure" | "widget.emptystate.error" | "widget.emptystate.missingdata">;
|
|
19
|
+
i18n: import("i18next").i18n;
|
|
20
|
+
ready: boolean;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Type of the t function for the local useTranslation for this specific library
|
|
24
|
+
*/
|
|
25
|
+
export type TranslationFunction = TransForLibs<TranslationKeys>;
|
|
26
|
+
/**
|
|
27
|
+
* Trans for this specific library.
|
|
28
|
+
*/
|
|
29
|
+
export declare const Trans: (props: NamespaceTransProps<TranslationKeys>) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
/**
|
|
31
|
+
* Registers the translations for this library
|
|
32
|
+
*/
|
|
33
|
+
export declare const setupLibraryTranslations: () => void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"widget.edit.cancel": "Cancel",
|
|
5
|
+
"widget.edit.save": "Save",
|
|
6
|
+
"widget.edit.title": "Configure",
|
|
7
|
+
"widget.emptystate.configure": "Configure",
|
|
8
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
9
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
exports.default = translation;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var translation = {
|
|
2
|
+
"widget.edit.cancel": "Cancel",
|
|
3
|
+
"widget.edit.save": "Save",
|
|
4
|
+
"widget.edit.title": "Configure",
|
|
5
|
+
"widget.emptystate.configure": "Configure",
|
|
6
|
+
"widget.emptystate.error": "Something went wrong. Try refreshing the page. If the error persists, contact our support team.",
|
|
7
|
+
"widget.emptystate.missingdata": "This widget needs a quick setup before it can show your data."
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { translation as default };
|