@sisense/sdk-ui 0.15.0 → 0.16.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/dist/ai.js +2 -2
- package/dist/api/types/dashboard-dto.d.ts +3 -2
- package/dist/chart-data-options/coloring/consts.d.ts +3 -0
- package/dist/chart-data-options/coloring/utils.d.ts +6 -0
- package/dist/chart-data-options/get-translated-data-options.d.ts +6 -0
- package/dist/chart-options-processor/chart-options-service.d.ts +2 -74
- package/dist/chart-options-processor/translations/axis-section.d.ts +3 -1
- package/dist/chart-options-processor/translations/funnel-series.d.ts +1 -2
- package/dist/chart-options-processor/translations/legend-section.d.ts +2 -1
- package/dist/chart-options-processor/translations/pie-series.d.ts +1 -2
- package/dist/chart-options-processor/translations/translations-to-highcharts.d.ts +6 -2
- package/dist/dashboard-widget/translate-panel-color-format.d.ts +2 -2
- package/dist/dashboard-widget/translate-widget-data-options.d.ts +4 -4
- package/dist/dashboard-widget/translate-widget-style-options.d.ts +1 -1
- package/dist/dashboard-widget/types.d.ts +20 -17
- package/dist/dashboard-widget/use-fetch-widget-dto-model.d.ts +7 -1
- package/dist/dashboard-widget/utils.d.ts +1 -1
- package/dist/filters/components/common/dropdown.d.ts +8 -0
- package/dist/filters/components/common/index.d.ts +2 -1
- package/dist/filters/components/common/radio.d.ts +7 -0
- package/dist/filters/components/criteria-filter-tile/criteria-filter-display.d.ts +2 -2
- package/dist/filters/components/criteria-filter-tile/criteria-filter-menu.d.ts +5 -3
- package/dist/filters/components/criteria-filter-tile/criteria-filter-operations.d.ts +17 -3
- package/dist/filters/components/criteria-filter-tile/criteria-filter-tile.d.ts +20 -3
- package/dist/filters/components/member-filter-tile/basic-member-filter-tile.d.ts +2 -0
- package/dist/filters/components/member-filter-tile/members-reducer.d.ts +9 -1
- package/dist/filters/components/member-filter-tile/pill-section.d.ts +0 -1
- package/dist/highcharts-memorized.d.ts +4 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5375 -4600
- package/dist/models/dashboard/types.d.ts +1 -1
- package/dist/models/widget/get-widget-model.d.ts +4 -0
- package/dist/models/widget/index.d.ts +3 -1
- package/dist/models/widget/translate-widget.d.ts +1 -1
- package/dist/models/widget/use-get-widget-model.d.ts +102 -0
- package/dist/models/widget/widget-model.d.ts +122 -0
- package/dist/query/execute-query.d.ts +2 -0
- package/dist/query-execution/csv-query-state-reducer.d.ts +2 -0
- package/dist/query-execution/index.d.ts +4 -3
- package/dist/query-execution/query-state-reducer.d.ts +1 -58
- package/dist/query-execution/types.d.ts +190 -0
- package/dist/query-execution/use-execute-csv-query.d.ts +82 -0
- package/dist/query-execution/use-execute-query-by-widget-id.d.ts +2 -37
- package/dist/query-execution/use-execute-query.d.ts +8 -33
- package/dist/table/hooks/use-table-data.d.ts +5 -1
- package/dist/table/table.d.ts +3 -0
- package/dist/{table-widget-7b20ecf7.js → table-widget-5f3b1d03.js} +21968 -21679
- package/dist/translation/resources/en.d.ts +6 -0
- package/dist/translation/resources/index.d.ts +12 -0
- package/dist/utils/utility-types.d.ts +4 -0
- package/dist/widgets/common/drilldown-breadcrumbs/drilldown-breadcrumbs-navigation.d.ts +8 -0
- package/dist/widgets/common/drilldown-breadcrumbs/styled-buttons.d.ts +11 -0
- package/package.json +15 -6
- package/dist/models/widget/types.d.ts +0 -6
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import { Jaql, SortDirection } from '@sisense/sdk-data';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
/**
|
|
3
|
+
* The type of a widget on a dashboard that is a variant of Cartesian widget.
|
|
4
|
+
*/
|
|
5
|
+
export type CartesianWidgetType = 'chart/line' | 'chart/area' | 'chart/bar' | 'chart/column' | 'chart/polar';
|
|
6
|
+
/**
|
|
7
|
+
* The type of a widget on a dashboard that is a variant of Categorical widget.
|
|
8
|
+
*/
|
|
9
|
+
export type CategoricalWidgetType = 'chart/pie' | 'chart/funnel' | 'treemap' | 'sunburst';
|
|
10
|
+
/**
|
|
11
|
+
* The type of a widget on a dashboard that is a variant of tabular widget.
|
|
12
|
+
*/
|
|
13
|
+
export type TabularWidgetType = 'tablewidget' | 'tablewidgetagg';
|
|
14
|
+
/**
|
|
15
|
+
* The type of a widget on a dashboard.
|
|
16
|
+
*/
|
|
17
|
+
export type WidgetType = CartesianWidgetType | CategoricalWidgetType | 'chart/scatter' | 'indicator' | TabularWidgetType;
|
|
17
18
|
export type WidgetSubtype = 'area/basic' | 'area/stacked' | 'area/stacked100' | 'area/spline' | 'area/stackedspline' | 'area/stackedspline100' | 'bar/classic' | 'bar/stacked' | 'bar/stacked100' | 'column/classic' | 'column/stackedcolumn' | 'column/stackedcolumn100' | 'line/basic' | 'line/spline' | 'pie/classic' | 'pie/donut' | 'pie/ring' | 'column/polar' | 'area/polar' | 'line/polar' | 'indicator/numeric' | 'indicator/gauge' | 'bubble/scatter' | 'treemap' | 'sunburst';
|
|
18
19
|
export declare enum WidgetDashboardFilterMode {
|
|
19
20
|
FILTER = "filter",
|
|
@@ -23,7 +24,9 @@ export type Datasource = {
|
|
|
23
24
|
title: string;
|
|
24
25
|
id: string;
|
|
25
26
|
fullname?: string;
|
|
26
|
-
live
|
|
27
|
+
live?: boolean;
|
|
28
|
+
address?: string;
|
|
29
|
+
database?: string;
|
|
27
30
|
};
|
|
28
31
|
/**
|
|
29
32
|
* The data transfer object (DTO) containing info of a widget on a dashboard.
|
|
@@ -42,7 +45,7 @@ export interface WidgetDto {
|
|
|
42
45
|
};
|
|
43
46
|
style: WidgetStyle;
|
|
44
47
|
title: string;
|
|
45
|
-
desc: string;
|
|
48
|
+
desc: string | null;
|
|
46
49
|
options?: {
|
|
47
50
|
dashboardFiltersMode: `${WidgetDashboardFilterMode}`;
|
|
48
51
|
};
|
|
@@ -20,7 +20,13 @@ export declare const fetchWidgetDtoModel: ({ widgetOid, dashboardOid, includeDas
|
|
|
20
20
|
api: RestApi;
|
|
21
21
|
}) => Promise<{
|
|
22
22
|
widget: WidgetDto;
|
|
23
|
-
dashboard:
|
|
23
|
+
dashboard: ({
|
|
24
|
+
oid: string;
|
|
25
|
+
title: string;
|
|
26
|
+
datasource: import("./types").Datasource;
|
|
27
|
+
widgets?: WidgetDto[] | undefined;
|
|
28
|
+
filters?: (import("../api/types/dashboard-dto").Filter | import("../api/types/dashboard-dto").CascadingFilter)[] | undefined;
|
|
29
|
+
} & import("../utils/utility-types").AnyObject) | undefined;
|
|
24
30
|
}>;
|
|
25
31
|
/**
|
|
26
32
|
* Custom hook for fetching Widget DTO and Dashboard DTO models.
|
|
@@ -6,7 +6,7 @@ export declare function getChartType(widgetType: WidgetType): ChartType;
|
|
|
6
6
|
export declare function getChartSubtype(widgetSubtype: WidgetSubtype): ChartSubtype | undefined;
|
|
7
7
|
type WidgetTypeOrString = string | WidgetType;
|
|
8
8
|
export declare function isSupportedWidgetType(widgetType: WidgetTypeOrString): widgetType is WidgetType;
|
|
9
|
-
export declare function
|
|
9
|
+
export declare function isTabularWidget(widgetType: WidgetTypeOrString): boolean;
|
|
10
10
|
export declare function getEnabledPanelItems(panels: Panel[], panelName: string): PanelItem[];
|
|
11
11
|
export declare function getRootPanelItem(item: PanelItem): PanelItem;
|
|
12
12
|
export declare function getSortType(jaqlSort: JaqlSortDirection | undefined): SortDirection;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type FunctionComponent } from 'react';
|
|
2
|
+
import { MenuList } from '@mui/material';
|
|
3
|
+
export type DropdownProps = {
|
|
4
|
+
elements: JSX.Element[];
|
|
5
|
+
icon?: JSX.Element;
|
|
6
|
+
selectedIdx?: number;
|
|
7
|
+
} & React.ComponentProps<typeof MenuList>;
|
|
8
|
+
export declare const Dropdown: FunctionComponent<DropdownProps>;
|
|
@@ -2,7 +2,8 @@ export { LinkButton, PrimaryButton, SecondaryButton } from './buttons';
|
|
|
2
2
|
export { Checkbox } from './checkbox';
|
|
3
3
|
export { BasicInput } from './basic-input';
|
|
4
4
|
export { Input } from './input';
|
|
5
|
-
export { Radio } from './radio';
|
|
5
|
+
export { Radio, RadioGroup, type RadioGroupProps } from './radio';
|
|
6
6
|
export { SisenseSwitchButton } from './switch';
|
|
7
7
|
export { TriangleIndicator } from './triangle-indicator';
|
|
8
8
|
export { DateRangeFieldButton } from './date-range-field-button';
|
|
9
|
+
export { Dropdown } from './dropdown';
|
|
@@ -3,4 +3,11 @@ type RadioProps = {
|
|
|
3
3
|
label?: string;
|
|
4
4
|
} & InputHTMLAttributes<HTMLInputElement>;
|
|
5
5
|
export declare const Radio: FunctionComponent<RadioProps>;
|
|
6
|
+
export type RadioGroupProps = {
|
|
7
|
+
items: string[];
|
|
8
|
+
currentSelection?: string;
|
|
9
|
+
title?: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
} & InputHTMLAttributes<HTMLInputElement>;
|
|
12
|
+
export declare const RadioGroup: FunctionComponent<RadioGroupProps>;
|
|
6
13
|
export {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FunctionComponent } from 'react';
|
|
2
|
-
import { FilterOptionType } from './criteria-filter-operations.js';
|
|
2
|
+
import { FilterOptionType, CriteriaFilterValueType } from './criteria-filter-operations.js';
|
|
3
3
|
/**
|
|
4
4
|
* Props for {@link CriteriaFilterDisplay}
|
|
5
5
|
*/
|
|
6
6
|
export interface CriteriaFilterDisplayProps {
|
|
7
7
|
filterType: FilterOptionType;
|
|
8
|
-
values?:
|
|
8
|
+
values?: CriteriaFilterValueType[];
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* UI component that provides a static, uneditable display of the criteria filter values, to be shown when vertically aligned filter tiles are collapsed.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FunctionComponent } from 'react';
|
|
2
|
-
import { FilterOptionType, FilterVariant } from './criteria-filter-operations';
|
|
2
|
+
import { FilterOptionType, FilterVariant, CriteriaFilterValueType } from './criteria-filter-operations';
|
|
3
|
+
import { Measure } from '@sisense/sdk-data';
|
|
3
4
|
/**
|
|
4
5
|
* Props for {@link CriteriaFilterMenu}
|
|
5
6
|
*
|
|
@@ -8,9 +9,10 @@ import { FilterOptionType, FilterVariant } from './criteria-filter-operations';
|
|
|
8
9
|
export interface CriteriaFilterMenuProps {
|
|
9
10
|
filterType: FilterOptionType;
|
|
10
11
|
arrangement?: FilterVariant;
|
|
11
|
-
defaultValues?:
|
|
12
|
-
onUpdate?: (values:
|
|
12
|
+
defaultValues?: CriteriaFilterValueType[];
|
|
13
|
+
onUpdate?: (values: CriteriaFilterValueType[]) => void;
|
|
13
14
|
disabled?: boolean;
|
|
15
|
+
measures?: Measure[];
|
|
14
16
|
}
|
|
15
17
|
/**
|
|
16
18
|
* UI component that provides field(s) for the user to enter values for a numeric filter.
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Measure } from '@sisense/sdk-data';
|
|
2
|
+
import { CriteriaFilterType } from './criteria-filter-tile';
|
|
1
3
|
/**
|
|
2
4
|
* Collection of filter options for the {@link CriteriaFilterMenu},
|
|
3
5
|
* to be provided to subcomponents as the `filterType` prop.
|
|
@@ -5,6 +7,9 @@
|
|
|
5
7
|
* @internal
|
|
6
8
|
*/
|
|
7
9
|
export declare const FilterOption: {
|
|
10
|
+
NOT_BETWEEN: string;
|
|
11
|
+
TOP: string;
|
|
12
|
+
BOTTOM: string;
|
|
8
13
|
BETWEEN: string;
|
|
9
14
|
EQUALS: string;
|
|
10
15
|
NOT_EQUALS: string;
|
|
@@ -24,7 +29,6 @@ export declare const FilterOption: {
|
|
|
24
29
|
};
|
|
25
30
|
export type FilterOptionType = keyof typeof FilterOption;
|
|
26
31
|
export type FilterVariant = 'vertical' | 'horizontal';
|
|
27
|
-
export type FilterInputType = 'text' | 'number';
|
|
28
32
|
/**
|
|
29
33
|
* Object containing related information for a filter option,
|
|
30
34
|
* including the function to be used for filtering, the number of inputs,
|
|
@@ -39,7 +43,7 @@ export type FilterInfo = {
|
|
|
39
43
|
symbols: string[];
|
|
40
44
|
message: string;
|
|
41
45
|
ranked: boolean;
|
|
42
|
-
type:
|
|
46
|
+
type: string;
|
|
43
47
|
};
|
|
44
48
|
/**
|
|
45
49
|
* Map of {@link FilterOption} to {@link FilterInfo}
|
|
@@ -58,5 +62,15 @@ export declare const CRITERIA_FILTER_MAP: {
|
|
|
58
62
|
* @internal
|
|
59
63
|
*/
|
|
60
64
|
export declare const isVertical: (arrangement: FilterVariant) => boolean;
|
|
61
|
-
|
|
65
|
+
/**
|
|
66
|
+
* Given an input filter, use the filterType and operators to determine
|
|
67
|
+
* the corresponding {@link FilterOption} and {@link FilterInfo}.
|
|
68
|
+
*
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
export declare const filterToOption: (filter: CriteriaFilterType) => FilterOptionType;
|
|
72
|
+
export type CriteriaFilterValueType = string | number | Measure;
|
|
73
|
+
export declare const filterToDefaultValues: (filter: CriteriaFilterType) => CriteriaFilterValueType[];
|
|
74
|
+
export declare const valuesToDisplayValues: (values: CriteriaFilterValueType[]) => (string | number)[];
|
|
62
75
|
export declare const translatedMsgNoVal: (message: string, t: Function) => any;
|
|
76
|
+
export declare const filterTypeToInputType: (filterType: string) => string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { FilterVariant } from './criteria-filter-operations.js';
|
|
3
|
-
import { Filter, NumericFilter, TextFilter } from '@sisense/sdk-data';
|
|
3
|
+
import { ExcludeFilter, Filter, Measure, NumericFilter, RankingFilter, TextFilter } from '@sisense/sdk-data';
|
|
4
4
|
/**
|
|
5
5
|
* Props for {@link CriteriaFilterTile}
|
|
6
6
|
*/
|
|
@@ -13,14 +13,31 @@ export interface CriteriaFilterTileProps {
|
|
|
13
13
|
arrangement?: FilterVariant;
|
|
14
14
|
/** Callback returning filter object, or null for failure */
|
|
15
15
|
onUpdate: (filter: Filter | null) => void;
|
|
16
|
+
/** List of available measures to rank by. Required only for ranking filters. */
|
|
17
|
+
measures?: Measure[];
|
|
16
18
|
}
|
|
17
|
-
export type CriteriaFilterType = NumericFilter | TextFilter;
|
|
19
|
+
export type CriteriaFilterType = NumericFilter | TextFilter | RankingFilter | ExcludeFilter;
|
|
18
20
|
/**
|
|
19
21
|
* UI component that allows the user to filter numeric or text attributes according to
|
|
20
|
-
* a number of built-in operations defined in the {@link NumericFilter} or {@link
|
|
22
|
+
* a number of built-in operations defined in the {@link NumericFilter}, {@link TextFilter}, or {@link RankingFilter}.
|
|
21
23
|
*
|
|
22
24
|
* The arrangement prop determines whether the filter is rendered vertically or horizontally, with the latter intended for toolbar use and omitting title, enable/disable, and collapse/expand functionality.
|
|
23
25
|
*
|
|
26
|
+
* @example
|
|
27
|
+
* ```tsx
|
|
28
|
+
* const initialRevenueFilter = filters.greaterThanOrEqual(DM.Commerce.Revenue, 10000);
|
|
29
|
+
* const [revenueFilter, setRevenueFilter] = useState<Filter | null>(initialRevenueFilter);
|
|
30
|
+
*
|
|
31
|
+
* return (
|
|
32
|
+
* <CriteriaFilterTile
|
|
33
|
+
* title={'Revenue'}
|
|
34
|
+
* filter={revenueFilter}
|
|
35
|
+
* onUpdate={setRevenueFilter}
|
|
36
|
+
* />
|
|
37
|
+
* );
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* <img src="media://criteria-filter-tile-example-1.png" width="300px" />
|
|
24
41
|
* @param props - Criteria filter tile props
|
|
25
42
|
* @returns Criteria filter tile component
|
|
26
43
|
*/
|
|
@@ -18,6 +18,8 @@ export interface BasicMemberFilterTileProps {
|
|
|
18
18
|
maxAllowedMembers?: number;
|
|
19
19
|
/** Whether this is a dependent filter */
|
|
20
20
|
isDependent?: boolean;
|
|
21
|
+
/** Flag to update selected members when caused by an external change */
|
|
22
|
+
shouldUpdateSelectedMembers?: boolean;
|
|
21
23
|
}
|
|
22
24
|
/**
|
|
23
25
|
* UI component that, given a list of members to select from and a list of
|
|
@@ -20,6 +20,14 @@ type DeselectMemberAction = {
|
|
|
20
20
|
type SelectAllMembersAction = {
|
|
21
21
|
type: 'selectAllMembers';
|
|
22
22
|
};
|
|
23
|
+
type UpdatePossibleMembersAction = {
|
|
24
|
+
type: 'updatePossibleMembers';
|
|
25
|
+
members: Member[];
|
|
26
|
+
};
|
|
27
|
+
type UpdateMembersAction = {
|
|
28
|
+
type: 'updateMembers';
|
|
29
|
+
members: SelectedMember[];
|
|
30
|
+
};
|
|
23
31
|
type ClearAllMembersAction = {
|
|
24
32
|
type: 'clearAllMembers';
|
|
25
33
|
};
|
|
@@ -27,6 +35,6 @@ type ToggleSelectedMemberAction = {
|
|
|
27
35
|
type: 'toggleSelectedMember';
|
|
28
36
|
memberKey: string;
|
|
29
37
|
};
|
|
30
|
-
export type MembersAction = SelectMemberAction | DeselectMemberAction | SelectAllMembersAction | ClearAllMembersAction | ToggleSelectedMemberAction;
|
|
38
|
+
export type MembersAction = SelectMemberAction | DeselectMemberAction | SelectAllMembersAction | UpdatePossibleMembersAction | UpdateMembersAction | ClearAllMembersAction | ToggleSelectedMemberAction;
|
|
31
39
|
export declare function membersReducer(state: MembersState, action: MembersAction): MembersState;
|
|
32
40
|
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { FunctionComponent } from 'react';
|
|
2
2
|
import { SelectedMember } from './members-reducer';
|
|
3
3
|
export interface PillSectionProps {
|
|
4
|
-
membersSize: number;
|
|
5
4
|
selectedMembers: SelectedMember[];
|
|
6
5
|
onToggleSelectedMember: (key: string) => void;
|
|
7
6
|
disabled: boolean;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HighchartsOptionsInternal } from './chart-options-processor/chart-options-service';
|
|
3
|
-
|
|
3
|
+
type HighchartsReactMemoizedProps = {
|
|
4
4
|
options: HighchartsOptionsInternal;
|
|
5
|
-
|
|
6
|
-
}) => JSX.Element>;
|
|
5
|
+
};
|
|
6
|
+
export declare const HighchartsReactMemoized: import("react").MemoExoticComponent<({ options }: HighchartsReactMemoizedProps) => JSX.Element>;
|
|
7
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './chart-data-options/types';
|
|
|
7
7
|
export { Chart } from './chart';
|
|
8
8
|
export { ThemeProvider } from './theme-provider';
|
|
9
9
|
export { DashboardWidget } from './dashboard-widget/dashboard-widget';
|
|
10
|
+
export { type WidgetType, type CartesianWidgetType, type CategoricalWidgetType, type TabularWidgetType, } from './dashboard-widget/types';
|
|
10
11
|
export * from './query-execution';
|
|
11
12
|
export { executeQuery } from './query/execute-query';
|
|
12
13
|
export { SisenseContextProvider } from './sisense-context/sisense-context-provider';
|
|
@@ -31,7 +32,7 @@ export * from './sisense-context/custom-sisense-context-provider';
|
|
|
31
32
|
export * from './theme-provider/custom-theme-provider';
|
|
32
33
|
export { getThemeSettingsByOid } from './themes/theme-loader';
|
|
33
34
|
export { getDefaultThemeSettings } from './chart-options-processor/theme-option-service';
|
|
34
|
-
export { useGetDashboardModel, useGetDashboardModels, getDashboardModel, getDashboardModels, type DashboardModel, type GetDashboardModelParams, type GetDashboardModelsParams, type DashboardModelState, type DashboardModelLoadingState, type DashboardModelSuccessState, type DashboardModelErrorState, type DashboardModelsState, type DashboardModelsLoadingState, type DashboardModelsSuccessState, type DashboardModelsErrorState, type WidgetModel, type GetDashboardModelOptions, type GetDashboardModelsOptions, } from './models';
|
|
35
|
+
export { useGetDashboardModel, useGetDashboardModels, getDashboardModel, getDashboardModels, useGetWidgetModel, getWidgetModel, type DashboardModel, type GetDashboardModelParams, type GetDashboardModelsParams, type DashboardModelState, type DashboardModelLoadingState, type DashboardModelSuccessState, type DashboardModelErrorState, type DashboardModelsState, type DashboardModelsLoadingState, type DashboardModelsSuccessState, type DashboardModelsErrorState, type WidgetModel, type WidgetDataOptions, type WidgetModelState, type WidgetModelLoadingState, type WidgetModelErrorState, type WidgetModelSuccessState, type GetWidgetModelParams, type GetDashboardModelOptions, type GetDashboardModelsOptions, } from './models';
|
|
35
36
|
export * from './props';
|
|
36
37
|
export * from './types';
|
|
37
38
|
export * from './filters';
|