@sisense/sdk-ui-vue 2.12.0 → 2.13.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.cjs +32 -36
- package/dist/ai.js +61 -65
- package/dist/index.cjs +1 -1
- package/dist/index.js +668 -674
- package/dist/packages/sdk-ui-vue/src/components/dashboard/dashboard.d.ts +0 -12
- package/dist/packages/sdk-ui-vue/src/components/filters/date-range-filter-tile.d.ts +1 -1
- package/dist/packages/sdk-ui-vue/src/components/filters/relative-date-filter-tile.d.ts +2 -2
- package/dist/packages/sdk-ui-vue/src/providers/custom-widgets-provider/custom-widgets-context.d.ts +1 -1
- package/dist/{use-tracking-ef56f405.cjs → use-tracking-4caf6db2.cjs} +275 -279
- package/dist/{use-tracking-e4b7c524.js → use-tracking-dd4d60d8.js} +31367 -31187
- package/package.json +2 -2
|
@@ -86,12 +86,6 @@ export declare const Dashboard: import("vue").DefineComponent<{
|
|
|
86
86
|
* {@inheritDoc @sisense/sdk-ui!DashboardProps.styleOptions}
|
|
87
87
|
*/
|
|
88
88
|
styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardStyleOptions | undefined>;
|
|
89
|
-
/**
|
|
90
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardProps.tabbersOptions}
|
|
91
|
-
*
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
tabbersOptions: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/models").TabbersOptions | undefined>;
|
|
95
89
|
}, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
90
|
[key: string]: any;
|
|
97
91
|
}>) | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -130,10 +124,4 @@ export declare const Dashboard: import("vue").DefineComponent<{
|
|
|
130
124
|
* {@inheritDoc @sisense/sdk-ui!DashboardProps.styleOptions}
|
|
131
125
|
*/
|
|
132
126
|
styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardStyleOptions | undefined>;
|
|
133
|
-
/**
|
|
134
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardProps.tabbersOptions}
|
|
135
|
-
*
|
|
136
|
-
* @internal
|
|
137
|
-
*/
|
|
138
|
-
tabbersOptions: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/models").TabbersOptions | undefined>;
|
|
139
127
|
}>>, {}, {}>;
|
|
@@ -39,7 +39,7 @@ export interface DateRangeFilterTileProps extends DateRangeFilterTilePropsPreact
|
|
|
39
39
|
* });
|
|
40
40
|
* </script>
|
|
41
41
|
* ```
|
|
42
|
-
* <img src="media://vue-date-range-filter-tile-example.png" width="
|
|
42
|
+
* <img src="media://vue-date-range-filter-tile-example.png" width="600px" />
|
|
43
43
|
* @param props - DateRangeFilterTile props
|
|
44
44
|
* @returns DateRangeFilterTile component
|
|
45
45
|
* @group Filter Tiles
|
|
@@ -26,7 +26,7 @@ export interface RelativeDateFilterTileProps extends RelativeDateFilterTileProps
|
|
|
26
26
|
* import { filterFactory } from '@sisense/sdk-data';
|
|
27
27
|
* import * as DM from '../assets/sample-retail-model';
|
|
28
28
|
*
|
|
29
|
-
* const relativeDateFilterValue = ref<Filter | null>(filterFactory.dateRelativeTo(DM.DimDate.Date.Months, 0, 18);
|
|
29
|
+
* const relativeDateFilterValue = ref<Filter | null>(filterFactory.dateRelativeTo(DM.DimDate.Date.Months, 0, 18));
|
|
30
30
|
*
|
|
31
31
|
* const relativeDateFilter = ref<RelativeDateFilterTileProps>({
|
|
32
32
|
* title: 'Relative Date Filter Tile',
|
|
@@ -38,7 +38,7 @@ export interface RelativeDateFilterTileProps extends RelativeDateFilterTileProps
|
|
|
38
38
|
* });
|
|
39
39
|
* </script>
|
|
40
40
|
* ```
|
|
41
|
-
* <img src="media://vue-relative-date-filter-tile-example.png" width="
|
|
41
|
+
* <img src="media://vue-relative-date-filter-tile-example.png" width="225px" />
|
|
42
42
|
* @param props - RelativeDateFilterTile props
|
|
43
43
|
* @returns RelativeDateFilterTile component
|
|
44
44
|
* @group Filter Tiles
|
package/dist/packages/sdk-ui-vue/src/providers/custom-widgets-provider/custom-widgets-context.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type CustomWidgetComponent, type CustomWidgetsContextAdapter } from '@sisense/sdk-ui-preact';
|
|
2
2
|
import type { InjectionKey, Ref } from 'vue';
|
|
3
3
|
export declare const defaultCustomWidgetsContext: {
|
|
4
4
|
customWidgetsMap: Map<string, CustomWidgetComponent<any>>;
|