@teselagen/ui 0.10.7 → 0.10.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/index.cjs.js +2 -8
- package/index.es.js +3 -8
- package/package.json +1 -1
- package/src/CollapsibleCard/style.css +10 -1
- package/src/DataTable/DraggableColumnOptions.js +3 -4
- package/src/DataTable/index.js +1 -1
- package/src/style.css +2 -0
- package/ui.css +12 -1
package/index.cjs.js
CHANGED
|
@@ -34671,13 +34671,7 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34671
34671
|
"(",
|
|
34672
34672
|
field.fieldGroup,
|
|
34673
34673
|
")"
|
|
34674
|
-
), subFrag && /* @__PURE__ */ React$1.createElement(
|
|
34675
|
-
InfoHelper,
|
|
34676
|
-
{
|
|
34677
|
-
style: { marginLeft: 5 }
|
|
34678
|
-
},
|
|
34679
|
-
"Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."
|
|
34680
|
-
))
|
|
34674
|
+
), subFrag && /* @__PURE__ */ React$1.createElement(InfoHelper, { style: { marginLeft: 5 } }, "Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."))
|
|
34681
34675
|
}
|
|
34682
34676
|
)
|
|
34683
34677
|
);
|
|
@@ -57178,7 +57172,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
57178
57172
|
setPageSize = noop$4,
|
|
57179
57173
|
setSearchTerm = noop$4,
|
|
57180
57174
|
shouldShowSubComponent,
|
|
57181
|
-
showCount =
|
|
57175
|
+
showCount = true,
|
|
57182
57176
|
style = {},
|
|
57183
57177
|
SubComponent,
|
|
57184
57178
|
subHeader,
|
package/index.es.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import './ui.css';
|
|
2
|
+
import './ui.css';
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __defProps = Object.defineProperties;
|
|
4
5
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
@@ -34653,13 +34654,7 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34653
34654
|
"(",
|
|
34654
34655
|
field.fieldGroup,
|
|
34655
34656
|
")"
|
|
34656
|
-
), subFrag && /* @__PURE__ */ React__default.createElement(
|
|
34657
|
-
InfoHelper,
|
|
34658
|
-
{
|
|
34659
|
-
style: { marginLeft: 5 }
|
|
34660
|
-
},
|
|
34661
|
-
"Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."
|
|
34662
|
-
))
|
|
34657
|
+
), subFrag && /* @__PURE__ */ React__default.createElement(InfoHelper, { style: { marginLeft: 5 } }, "Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance."))
|
|
34663
34658
|
}
|
|
34664
34659
|
)
|
|
34665
34660
|
);
|
|
@@ -57160,7 +57155,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
57160
57155
|
setPageSize = noop$4,
|
|
57161
57156
|
setSearchTerm = noop$4,
|
|
57162
57157
|
shouldShowSubComponent,
|
|
57163
|
-
showCount =
|
|
57158
|
+
showCount = true,
|
|
57164
57159
|
style = {},
|
|
57165
57160
|
SubComponent,
|
|
57166
57161
|
subHeader,
|
package/package.json
CHANGED
|
@@ -8,7 +8,16 @@
|
|
|
8
8
|
0 1px 3px rgba(0, 0, 0, 0.12),
|
|
9
9
|
0 1px 2px rgba(0, 0, 0, 0.18);
|
|
10
10
|
}
|
|
11
|
-
|
|
11
|
+
.no-card .tg-card {
|
|
12
|
+
border-radius: unset;
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
padding: 0;
|
|
15
|
+
margin-bottom: 0;
|
|
16
|
+
background: inherit;
|
|
17
|
+
}
|
|
18
|
+
.bp3-dark .no-card .tg-card {
|
|
19
|
+
background: inherit !important;
|
|
20
|
+
}
|
|
12
21
|
.tg-card-header {
|
|
13
22
|
display: flex;
|
|
14
23
|
flex-direction: row;
|
|
@@ -69,10 +69,9 @@ const DraggableColumnOption = ({
|
|
|
69
69
|
</span>
|
|
70
70
|
)}
|
|
71
71
|
{subFrag && (
|
|
72
|
-
<InfoHelper
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
Note: Viewing this complex column may cause the table to load slower. Try hiding it for better performance.
|
|
72
|
+
<InfoHelper style={{ marginLeft: 5 }}>
|
|
73
|
+
Note: Viewing this complex column may cause the table to load
|
|
74
|
+
slower. Try hiding it for better performance.
|
|
76
75
|
</InfoHelper>
|
|
77
76
|
)}
|
|
78
77
|
</span>
|
package/src/DataTable/index.js
CHANGED
package/src/style.css
CHANGED
package/ui.css
CHANGED
|
@@ -8819,11 +8819,13 @@ span.bp3-popover-target{
|
|
|
8819
8819
|
/*# sourceMappingURL=blueprint-icons.css.map */:root {
|
|
8820
8820
|
--base1: #ffffff;
|
|
8821
8821
|
--base2: #cdcdcd;
|
|
8822
|
+
--reversed: #293742;
|
|
8822
8823
|
}
|
|
8823
8824
|
|
|
8824
8825
|
body.bp3-dark {
|
|
8825
8826
|
--base1: #393a3a;
|
|
8826
8827
|
--base2: #293742;
|
|
8828
|
+
--reversed: #cdcdcd;
|
|
8827
8829
|
}
|
|
8828
8830
|
|
|
8829
8831
|
.bp3-dark .tg-card {
|
|
@@ -10389,7 +10391,16 @@ body:not(.drag-active)
|
|
|
10389
10391
|
0 1px 3px rgba(0, 0, 0, 0.12),
|
|
10390
10392
|
0 1px 2px rgba(0, 0, 0, 0.18);
|
|
10391
10393
|
}
|
|
10392
|
-
|
|
10394
|
+
.no-card .tg-card {
|
|
10395
|
+
border-radius: unset;
|
|
10396
|
+
box-shadow: none;
|
|
10397
|
+
padding: 0;
|
|
10398
|
+
margin-bottom: 0;
|
|
10399
|
+
background: inherit;
|
|
10400
|
+
}
|
|
10401
|
+
.bp3-dark .no-card .tg-card {
|
|
10402
|
+
background: inherit !important;
|
|
10403
|
+
}
|
|
10393
10404
|
.tg-card-header {
|
|
10394
10405
|
display: flex;
|
|
10395
10406
|
flex-direction: row;
|