@sisense/sdk-data 1.0.0 → 1.1.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/dimensional-model/filters/factory.d.ts +486 -134
- package/dist/dimensional-model/filters/factory.js +486 -134
- package/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -12,13 +12,13 @@ export * from './dimensional-model/dimensions.js';
|
|
|
12
12
|
export * from './dimensional-model/factory.js';
|
|
13
13
|
export * from './dimensional-model/filters/filters.js';
|
|
14
14
|
/**
|
|
15
|
-
* Functions to create date, text, or numeric filters on
|
|
15
|
+
* Functions to create date, text, or numeric filters on specified data.
|
|
16
16
|
*
|
|
17
|
-
*
|
|
17
|
+
* Filters created with these functions can be used to:
|
|
18
18
|
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
* + Filter explicit queries by query components or query functions
|
|
20
|
+
* + Filter or highlight queries used by UI components, such as charts
|
|
21
|
+
* + Set the filters of filter components
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* Example of using React hook `useExecuteQuery` to query the `Sample ECommerce` data source.
|
package/dist/index.js
CHANGED
|
@@ -12,13 +12,13 @@ export * from './dimensional-model/dimensions.js';
|
|
|
12
12
|
export * from './dimensional-model/factory.js';
|
|
13
13
|
export * from './dimensional-model/filters/filters.js';
|
|
14
14
|
/**
|
|
15
|
-
* Functions to create date, text, or numeric filters on
|
|
15
|
+
* Functions to create date, text, or numeric filters on specified data.
|
|
16
16
|
*
|
|
17
|
-
*
|
|
17
|
+
* Filters created with these functions can be used to:
|
|
18
18
|
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
* + Filter explicit queries by query components or query functions
|
|
20
|
+
* + Filter or highlight queries used by UI components, such as charts
|
|
21
|
+
* + Set the filters of filter components
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* Example of using React hook `useExecuteQuery` to query the `Sample ECommerce` data source.
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"Sisense",
|
|
12
12
|
"Compose SDK"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.
|
|
14
|
+
"version": "1.1.0",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": "./dist/index.js",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"author": "Sisense ",
|
|
24
24
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@sisense/sdk-common": "^1.
|
|
27
|
-
"@sisense/sdk-rest-client": "^1.
|
|
26
|
+
"@sisense/sdk-common": "^1.1.0",
|
|
27
|
+
"@sisense/sdk-rest-client": "^1.1.0",
|
|
28
28
|
"guid-typescript": "^1.0.9",
|
|
29
29
|
"lodash": "^4.17.21",
|
|
30
30
|
"numeral": "^2.0.6",
|