@itwin/grouping-mapping-widget 0.8.0 → 0.8.1
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/widget/components/BlockingOverlay.js +1 -2
- package/lib/cjs/widget/components/BlockingOverlay.js.map +1 -1
- package/lib/cjs/widget/components/BlockingOverlay.scss +8 -10
- package/lib/cjs/widget/components/GroupingMapping.scss +4 -1
- package/lib/esm/widget/components/BlockingOverlay.js +1 -2
- package/lib/esm/widget/components/BlockingOverlay.js.map +1 -1
- package/lib/esm/widget/components/BlockingOverlay.scss +8 -10
- package/lib/esm/widget/components/GroupingMapping.scss +4 -1
- package/package.json +1 -1
|
@@ -14,8 +14,7 @@ const utils_1 = require("./utils");
|
|
|
14
14
|
require("./BlockingOverlay.scss");
|
|
15
15
|
const BlockingOverlay = ({ isVisible }) => {
|
|
16
16
|
return (react_1.default.createElement("div", { className: classnames_1.default("gmw-group-mapping-blocking-overlay", isVisible && "gmw-visible") },
|
|
17
|
-
react_1.default.createElement(
|
|
18
|
-
react_1.default.createElement(utils_1.LoadingSpinner, null))));
|
|
17
|
+
react_1.default.createElement(utils_1.LoadingSpinner, null)));
|
|
19
18
|
};
|
|
20
19
|
exports.BlockingOverlay = BlockingOverlay;
|
|
21
20
|
//# sourceMappingURL=BlockingOverlay.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockingOverlay.js","sourceRoot":"","sources":["../../../../src/widget/components/BlockingOverlay.tsx"],"names":[],"mappings":";;;;;;AAAA;;;+FAG+F;AAC/F,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAyC;AACzC,kCAAgC;AAMzB,MAAM,eAAe,GAAG,CAAC,EAAE,SAAS,EAAwB,EAAE,EAAE;IACrE,OAAO,CACL,uCAAK,SAAS,EAAE,oBAAU,CAAC,oCAAoC,EAAE,SAAS,IAAI,aAAa,CAAC;QAC1F,
|
|
1
|
+
{"version":3,"file":"BlockingOverlay.js","sourceRoot":"","sources":["../../../../src/widget/components/BlockingOverlay.tsx"],"names":[],"mappings":";;;;;;AAAA;;;+FAG+F;AAC/F,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAyC;AACzC,kCAAgC;AAMzB,MAAM,eAAe,GAAG,CAAC,EAAE,SAAS,EAAwB,EAAE,EAAE;IACrE,OAAO,CACL,uCAAK,SAAS,EAAE,oBAAU,CAAC,oCAAoC,EAAE,SAAS,IAAI,aAAa,CAAC;QAC1F,8BAAC,sBAAc,OAAG,CACd,CACP,CAAC;AACJ,CAAC,CAAC;AANW,QAAA,eAAe,mBAM1B","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*--------------------------------------------------------------------------------------------*/\nimport classnames from \"classnames\";\nimport React from \"react\";\nimport { LoadingSpinner } from \"./utils\";\nimport \"./BlockingOverlay.scss\";\n\nexport interface BlockingOverlayProps {\n isVisible: boolean;\n}\n\nexport const BlockingOverlay = ({ isVisible }: BlockingOverlayProps) => {\n return (\n <div className={classnames(\"gmw-group-mapping-blocking-overlay\", isVisible && \"gmw-visible\")}>\n <LoadingSpinner />\n </div>\n );\n};\n"]}
|
|
@@ -2,14 +2,18 @@
|
|
|
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
|
|
5
|
+
@import "~@itwin/itwinui-css/scss/variables";
|
|
6
6
|
|
|
7
7
|
.gmw-group-mapping-blocking-overlay {
|
|
8
8
|
background-color: black;
|
|
9
9
|
position: absolute;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
top: $iui-baseline;
|
|
14
|
+
bottom: $iui-baseline;
|
|
15
|
+
right: $iui-s;
|
|
16
|
+
left: $iui-s;
|
|
13
17
|
opacity: 60%;
|
|
14
18
|
z-index: 9999;
|
|
15
19
|
visibility: hidden;
|
|
@@ -18,9 +22,3 @@
|
|
|
18
22
|
visibility: visible;
|
|
19
23
|
}
|
|
20
24
|
}
|
|
21
|
-
|
|
22
|
-
.gmw-group-mapping-blocking-overlay-spinner {
|
|
23
|
-
display: flex;
|
|
24
|
-
justify-content: center;
|
|
25
|
-
height: inherit;
|
|
26
|
-
}
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
@import "~@itwin/itwinui-css/scss/variables";
|
|
6
6
|
|
|
7
7
|
.gmw-group-mapping-container {
|
|
8
|
+
position: absolute;
|
|
9
|
+
right: 0;
|
|
10
|
+
left: 0;
|
|
8
11
|
display: flex;
|
|
9
12
|
flex-direction: column;
|
|
10
13
|
padding: $iui-baseline $iui-m;
|
|
@@ -15,4 +18,4 @@
|
|
|
15
18
|
|
|
16
19
|
.gmw-field-legend {
|
|
17
20
|
color: $iui-color-system-gray;
|
|
18
|
-
}
|
|
21
|
+
}
|
|
@@ -8,7 +8,6 @@ import { LoadingSpinner } from "./utils";
|
|
|
8
8
|
import "./BlockingOverlay.scss";
|
|
9
9
|
export const BlockingOverlay = ({ isVisible }) => {
|
|
10
10
|
return (React.createElement("div", { className: classnames("gmw-group-mapping-blocking-overlay", isVisible && "gmw-visible") },
|
|
11
|
-
React.createElement(
|
|
12
|
-
React.createElement(LoadingSpinner, null))));
|
|
11
|
+
React.createElement(LoadingSpinner, null)));
|
|
13
12
|
};
|
|
14
13
|
//# sourceMappingURL=BlockingOverlay.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockingOverlay.js","sourceRoot":"","sources":["../../../../src/widget/components/BlockingOverlay.tsx"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,wBAAwB,CAAC;AAMhC,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAAE,SAAS,EAAwB,EAAE,EAAE;IACrE,OAAO,CACL,6BAAK,SAAS,EAAE,UAAU,CAAC,oCAAoC,EAAE,SAAS,IAAI,aAAa,CAAC;QAC1F,
|
|
1
|
+
{"version":3,"file":"BlockingOverlay.js","sourceRoot":"","sources":["../../../../src/widget/components/BlockingOverlay.tsx"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,wBAAwB,CAAC;AAMhC,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAAE,SAAS,EAAwB,EAAE,EAAE;IACrE,OAAO,CACL,6BAAK,SAAS,EAAE,UAAU,CAAC,oCAAoC,EAAE,SAAS,IAAI,aAAa,CAAC;QAC1F,oBAAC,cAAc,OAAG,CACd,CACP,CAAC;AACJ,CAAC,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*--------------------------------------------------------------------------------------------*/\nimport classnames from \"classnames\";\nimport React from \"react\";\nimport { LoadingSpinner } from \"./utils\";\nimport \"./BlockingOverlay.scss\";\n\nexport interface BlockingOverlayProps {\n isVisible: boolean;\n}\n\nexport const BlockingOverlay = ({ isVisible }: BlockingOverlayProps) => {\n return (\n <div className={classnames(\"gmw-group-mapping-blocking-overlay\", isVisible && \"gmw-visible\")}>\n <LoadingSpinner />\n </div>\n );\n};\n"]}
|
|
@@ -2,14 +2,18 @@
|
|
|
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
|
|
5
|
+
@import "~@itwin/itwinui-css/scss/variables";
|
|
6
6
|
|
|
7
7
|
.gmw-group-mapping-blocking-overlay {
|
|
8
8
|
background-color: black;
|
|
9
9
|
position: absolute;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
top: $iui-baseline;
|
|
14
|
+
bottom: $iui-baseline;
|
|
15
|
+
right: $iui-s;
|
|
16
|
+
left: $iui-s;
|
|
13
17
|
opacity: 60%;
|
|
14
18
|
z-index: 9999;
|
|
15
19
|
visibility: hidden;
|
|
@@ -18,9 +22,3 @@
|
|
|
18
22
|
visibility: visible;
|
|
19
23
|
}
|
|
20
24
|
}
|
|
21
|
-
|
|
22
|
-
.gmw-group-mapping-blocking-overlay-spinner {
|
|
23
|
-
display: flex;
|
|
24
|
-
justify-content: center;
|
|
25
|
-
height: inherit;
|
|
26
|
-
}
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
@import "~@itwin/itwinui-css/scss/variables";
|
|
6
6
|
|
|
7
7
|
.gmw-group-mapping-container {
|
|
8
|
+
position: absolute;
|
|
9
|
+
right: 0;
|
|
10
|
+
left: 0;
|
|
8
11
|
display: flex;
|
|
9
12
|
flex-direction: column;
|
|
10
13
|
padding: $iui-baseline $iui-m;
|
|
@@ -15,4 +18,4 @@
|
|
|
15
18
|
|
|
16
19
|
.gmw-field-legend {
|
|
17
20
|
color: $iui-color-system-gray;
|
|
18
|
-
}
|
|
21
|
+
}
|