@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.
Files changed (58) hide show
  1. package/README.md +19 -0
  2. package/index.cjs.js +354 -0
  3. package/index.d.ts +1 -0
  4. package/index.esm.js +343 -0
  5. package/package.json +24 -0
  6. package/src/EmptyStates/Error/WidgetError.d.ts +10 -0
  7. package/src/EmptyStates/MissingConfiguration/WidgetMissingConfiguration.d.ts +8 -0
  8. package/src/EmptyStates/NoData/WidgetNoData.d.ts +12 -0
  9. package/src/HorizontalWidgetLayout/HorizontalWidgetLayout.d.ts +13 -0
  10. package/src/HorizontalWidgetLayout/HorizontalWidgetLayout.variants.d.ts +4 -0
  11. package/src/VerticalSplitWidgetLayout/VerticalSplitWidgetLayout.d.ts +12 -0
  12. package/src/VerticalSplitWidgetLayout/VerticalSplitWidgetLayout.variants.d.ts +2 -0
  13. package/src/Widget/WidgetBody.d.ts +25 -0
  14. package/src/Widget/WidgetBody.variants.d.ts +4 -0
  15. package/src/Widget/WidgetEditBody.d.ts +33 -0
  16. package/src/Widget/WidgetEditBody.variants.d.ts +4 -0
  17. package/src/WidgetKPI/WidgetKPI.d.ts +67 -0
  18. package/src/WidgetKPI/WidgetKPI.variants.d.ts +13 -0
  19. package/src/WidgetList/WidgetList.d.ts +35 -0
  20. package/src/WidgetList/WidgetList.variants.d.ts +2 -0
  21. package/src/WidgetListItem/WidgetListItem.d.ts +16 -0
  22. package/src/WidgetListItem/WidgetListItem.variants.d.ts +1 -0
  23. package/src/index.d.ts +10 -0
  24. package/src/translation.d.ts +33 -0
  25. package/translation.cjs.js +12 -0
  26. package/translation.cjs10.js +12 -0
  27. package/translation.cjs11.js +12 -0
  28. package/translation.cjs12.js +12 -0
  29. package/translation.cjs13.js +12 -0
  30. package/translation.cjs14.js +12 -0
  31. package/translation.cjs15.js +12 -0
  32. package/translation.cjs16.js +12 -0
  33. package/translation.cjs17.js +12 -0
  34. package/translation.cjs2.js +12 -0
  35. package/translation.cjs3.js +12 -0
  36. package/translation.cjs4.js +12 -0
  37. package/translation.cjs5.js +12 -0
  38. package/translation.cjs6.js +12 -0
  39. package/translation.cjs7.js +12 -0
  40. package/translation.cjs8.js +12 -0
  41. package/translation.cjs9.js +12 -0
  42. package/translation.esm.js +10 -0
  43. package/translation.esm10.js +10 -0
  44. package/translation.esm11.js +10 -0
  45. package/translation.esm12.js +10 -0
  46. package/translation.esm13.js +10 -0
  47. package/translation.esm14.js +10 -0
  48. package/translation.esm15.js +10 -0
  49. package/translation.esm16.js +10 -0
  50. package/translation.esm17.js +10 -0
  51. package/translation.esm2.js +10 -0
  52. package/translation.esm3.js +10 -0
  53. package/translation.esm4.js +10 -0
  54. package/translation.esm5.js +10 -0
  55. package/translation.esm6.js +10 -0
  56. package/translation.esm7.js +10 -0
  57. package/translation.esm8.js +10 -0
  58. 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,2 @@
1
+ export declare const cvaWidgetList: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string;
2
+ export declare const cvaWidgetListVirtualizedList: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string;
@@ -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 };