@bizdoc/core 1.13.0 → 1.13.5
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/esm2020/lib/core/layout/layout.component.mjs +2 -2
- package/esm2020/lib/core/models.mjs +2 -2
- package/esm2020/lib/cube/cube.service.mjs +9 -1
- package/esm2020/lib/cube/explore/explore-items.component.mjs +25 -14
- package/fesm2015/bizdoc-core.mjs +34 -15
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +34 -15
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/models.d.ts +1 -1
- package/lib/cube/cube.service.d.ts +6 -0
- package/package.json +1 -2
package/lib/core/models.d.ts
CHANGED
@@ -384,7 +384,7 @@ export declare enum FieldType {
|
|
384
384
|
Address = "Address",
|
385
385
|
Object = "Object",
|
386
386
|
Expression = "Expression",
|
387
|
-
|
387
|
+
Duration = "Duration",
|
388
388
|
Autocomplete = "Autocomplete",
|
389
389
|
Percent = "Percent",
|
390
390
|
DateRange = "DateRange"
|
@@ -82,6 +82,12 @@ export declare class CubeService {
|
|
82
82
|
[axis: string]: (string | number);
|
83
83
|
} | Array<string | number>;
|
84
84
|
}): Observable<ExploreType>;
|
85
|
+
/**
|
86
|
+
* information on expected explore type
|
87
|
+
* @param cube name
|
88
|
+
* @param index name
|
89
|
+
*/
|
90
|
+
resolveIndex(cube: string, index: string): Observable<ExploreType>;
|
85
91
|
/**
|
86
92
|
* explore items by axis
|
87
93
|
* @param cube name
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "1.13.
|
3
|
+
"version": "1.13.5",
|
4
4
|
"author": "Moding Ltd.",
|
5
5
|
"homepage": "https://github.com/moding-il/bizdoc.core",
|
6
6
|
"license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
|
@@ -30,7 +30,6 @@
|
|
30
30
|
"hammerjs": "~2",
|
31
31
|
"lottie-web": "^5.8.1",
|
32
32
|
"ngx-cookie-service": "13",
|
33
|
-
"xlsx": "^0.17.4",
|
34
33
|
"dayjs": "^1.10.7",
|
35
34
|
"zone.js": "^0.11.4",
|
36
35
|
"tslib": "^2.3.0"
|