@itwin/grouping-mapping-widget 0.5.7 → 0.5.8
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/lib/cjs/grouping-mapping-widget.d.ts +2 -2
- package/lib/cjs/grouping-mapping-widget.js +1 -1
- package/lib/cjs/grouping-mapping-widget.js.map +1 -1
- package/lib/cjs/widget/components/GroupingMapping.scss +1 -4
- package/lib/esm/grouping-mapping-widget.d.ts +2 -2
- package/lib/esm/grouping-mapping-widget.js +1 -1
- package/lib/esm/grouping-mapping-widget.js.map +1 -1
- package/lib/esm/widget/components/GroupingMapping.scss +1 -4
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** UI Provider for iTwin Viewer Applications */
|
|
2
2
|
export * from "./widget/GroupingMappingWidget";
|
|
3
|
-
/** Interfaces for providing custom MappingClient */
|
|
3
|
+
/** Interfaces for providing custom MappingClient and API configuration */
|
|
4
4
|
export { createDefaultMappingClient } from "./widget/components/context/MappingClientContext";
|
|
5
|
-
export { ClientPrefix } from "./widget/components/context/GroupingApiConfigContext";
|
|
5
|
+
export { ClientPrefix, GetAccessTokenFn } from "./widget/components/context/GroupingApiConfigContext";
|
|
6
6
|
export * from "@itwin/insights-client";
|
|
7
7
|
export * from "./widget/IMappingClient";
|
|
8
8
|
/** Internal components for custom UIs */
|
|
@@ -17,7 +17,7 @@ exports.resolveFormulaDataType = exports.PropertyMenu = exports.Groupings = expo
|
|
|
17
17
|
*--------------------------------------------------------------------------------------------*/
|
|
18
18
|
/** UI Provider for iTwin Viewer Applications */
|
|
19
19
|
__exportStar(require("./widget/GroupingMappingWidget"), exports);
|
|
20
|
-
/** Interfaces for providing custom MappingClient */
|
|
20
|
+
/** Interfaces for providing custom MappingClient and API configuration */
|
|
21
21
|
var MappingClientContext_1 = require("./widget/components/context/MappingClientContext");
|
|
22
22
|
Object.defineProperty(exports, "createDefaultMappingClient", { enumerable: true, get: function () { return MappingClientContext_1.createDefaultMappingClient; } });
|
|
23
23
|
__exportStar(require("@itwin/insights-client"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grouping-mapping-widget.js","sourceRoot":"","sources":["../../src/grouping-mapping-widget.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA;;;+FAG+F;AAC/F,gDAAgD;AAChD,iEAA+C;AAE/C,
|
|
1
|
+
{"version":3,"file":"grouping-mapping-widget.js","sourceRoot":"","sources":["../../src/grouping-mapping-widget.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA;;;+FAG+F;AAC/F,gDAAgD;AAChD,iEAA+C;AAE/C,0EAA0E;AAC1E,yFAA8F;AAArF,kIAAA,0BAA0B,OAAA;AAEnC,yDAAuC;AACvC,0DAAwC;AAExC,yCAAyC;AACzC,uDAAuD;AAA9C,mGAAA,QAAQ,OAAA;AACjB,yDAAyD;AAAhD,qGAAA,SAAS,OAAA;AAClB,iEAAgE;AAAvD,4GAAA,YAAY,OAAA;AAErB,gCAAgC;AAChC,6EAA2E;AAAlE,iIAAA,sBAAsB,OAAA","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** UI Provider for iTwin Viewer Applications */\nexport * from \"./widget/GroupingMappingWidget\";\n\n/** Interfaces for providing custom MappingClient and API configuration */\nexport { createDefaultMappingClient } from \"./widget/components/context/MappingClientContext\";\nexport { ClientPrefix, GetAccessTokenFn } from \"./widget/components/context/GroupingApiConfigContext\";\nexport * from \"@itwin/insights-client\";\nexport * from \"./widget/IMappingClient\";\n\n/** Internal components for custom UIs */\nexport { Mappings } from \"./widget/components/Mapping\";\nexport { Groupings } from \"./widget/components/Grouping\";\nexport { PropertyMenu } from \"./widget/components/PropertyMenu\";\n\n/** Formula DataType resolver */\nexport { resolveFormulaDataType } from \"./formula/FormulaDataTypeResolver\";\nexport { DataType, PropertyMap } from \"./formula/Types\";\nexport { IResult } from \"./formula/IResult\";\n"]}
|
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@import
|
|
6
|
-
|
|
7
|
-
// Widgets by default don't get horizontal scrollbars...
|
|
8
|
-
/* stylelint-disable-next-line selector-class-pattern */
|
|
5
|
+
@import "~@itwin/itwinui-css/scss/variables";
|
|
9
6
|
|
|
10
7
|
.gmw-group-mapping-container {
|
|
11
8
|
display: flex;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/** UI Provider for iTwin Viewer Applications */
|
|
2
2
|
export * from "./widget/GroupingMappingWidget";
|
|
3
|
-
/** Interfaces for providing custom MappingClient */
|
|
3
|
+
/** Interfaces for providing custom MappingClient and API configuration */
|
|
4
4
|
export { createDefaultMappingClient } from "./widget/components/context/MappingClientContext";
|
|
5
|
-
export { ClientPrefix } from "./widget/components/context/GroupingApiConfigContext";
|
|
5
|
+
export { ClientPrefix, GetAccessTokenFn } from "./widget/components/context/GroupingApiConfigContext";
|
|
6
6
|
export * from "@itwin/insights-client";
|
|
7
7
|
export * from "./widget/IMappingClient";
|
|
8
8
|
/** Internal components for custom UIs */
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
/** UI Provider for iTwin Viewer Applications */
|
|
6
6
|
export * from "./widget/GroupingMappingWidget";
|
|
7
|
-
/** Interfaces for providing custom MappingClient */
|
|
7
|
+
/** Interfaces for providing custom MappingClient and API configuration */
|
|
8
8
|
export { createDefaultMappingClient } from "./widget/components/context/MappingClientContext";
|
|
9
9
|
export * from "@itwin/insights-client";
|
|
10
10
|
export * from "./widget/IMappingClient";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grouping-mapping-widget.js","sourceRoot":"","sources":["../../src/grouping-mapping-widget.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F,gDAAgD;AAChD,cAAc,gCAAgC,CAAC;AAE/C,
|
|
1
|
+
{"version":3,"file":"grouping-mapping-widget.js","sourceRoot":"","sources":["../../src/grouping-mapping-widget.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F,gDAAgD;AAChD,cAAc,gCAAgC,CAAC;AAE/C,0EAA0E;AAC1E,OAAO,EAAE,0BAA0B,EAAE,MAAM,kDAAkD,CAAC;AAE9F,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AAExC,yCAAyC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAEhE,gCAAgC;AAChC,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** UI Provider for iTwin Viewer Applications */\nexport * from \"./widget/GroupingMappingWidget\";\n\n/** Interfaces for providing custom MappingClient and API configuration */\nexport { createDefaultMappingClient } from \"./widget/components/context/MappingClientContext\";\nexport { ClientPrefix, GetAccessTokenFn } from \"./widget/components/context/GroupingApiConfigContext\";\nexport * from \"@itwin/insights-client\";\nexport * from \"./widget/IMappingClient\";\n\n/** Internal components for custom UIs */\nexport { Mappings } from \"./widget/components/Mapping\";\nexport { Groupings } from \"./widget/components/Grouping\";\nexport { PropertyMenu } from \"./widget/components/PropertyMenu\";\n\n/** Formula DataType resolver */\nexport { resolveFormulaDataType } from \"./formula/FormulaDataTypeResolver\";\nexport { DataType, PropertyMap } from \"./formula/Types\";\nexport { IResult } from \"./formula/IResult\";\n"]}
|
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
@import
|
|
6
|
-
|
|
7
|
-
// Widgets by default don't get horizontal scrollbars...
|
|
8
|
-
/* stylelint-disable-next-line selector-class-pattern */
|
|
5
|
+
@import "~@itwin/itwinui-css/scss/variables";
|
|
9
6
|
|
|
10
7
|
.gmw-group-mapping-container {
|
|
11
8
|
display: flex;
|