@teselagen/ui 0.10.6 → 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 -10
- package/index.es.js +3 -10
- package/package.json +1 -1
- package/src/CollapsibleCard/style.css +10 -1
- package/src/DataTable/DraggableColumnOptions.js +3 -6
- package/src/DataTable/index.js +1 -1
- package/src/style.css +2 -0
- package/ui.css +12 -1
package/index.cjs.js
CHANGED
|
@@ -34671,15 +34671,7 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34671
34671
|
"(",
|
|
34672
34672
|
field.fieldGroup,
|
|
34673
34673
|
")"
|
|
34674
|
-
), subFrag && /* @__PURE__ */ React$1.createElement(
|
|
34675
|
-
InfoHelper,
|
|
34676
|
-
{
|
|
34677
|
-
icon: "warning-sign",
|
|
34678
|
-
intent: "warning",
|
|
34679
|
-
style: { marginLeft: 5 }
|
|
34680
|
-
},
|
|
34681
|
-
"Viewing this column may cause the table to load slower"
|
|
34682
|
-
))
|
|
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."))
|
|
34683
34675
|
}
|
|
34684
34676
|
)
|
|
34685
34677
|
);
|
|
@@ -57180,7 +57172,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
57180
57172
|
setPageSize = noop$4,
|
|
57181
57173
|
setSearchTerm = noop$4,
|
|
57182
57174
|
shouldShowSubComponent,
|
|
57183
|
-
showCount =
|
|
57175
|
+
showCount = true,
|
|
57184
57176
|
style = {},
|
|
57185
57177
|
SubComponent,
|
|
57186
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,15 +34654,7 @@ const DraggableColumnOption = /* @__PURE__ */ __name(({
|
|
|
34653
34654
|
"(",
|
|
34654
34655
|
field.fieldGroup,
|
|
34655
34656
|
")"
|
|
34656
|
-
), subFrag && /* @__PURE__ */ React__default.createElement(
|
|
34657
|
-
InfoHelper,
|
|
34658
|
-
{
|
|
34659
|
-
icon: "warning-sign",
|
|
34660
|
-
intent: "warning",
|
|
34661
|
-
style: { marginLeft: 5 }
|
|
34662
|
-
},
|
|
34663
|
-
"Viewing this column may cause the table to load slower"
|
|
34664
|
-
))
|
|
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."))
|
|
34665
34658
|
}
|
|
34666
34659
|
)
|
|
34667
34660
|
);
|
|
@@ -57162,7 +57155,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
57162
57155
|
setPageSize = noop$4,
|
|
57163
57156
|
setSearchTerm = noop$4,
|
|
57164
57157
|
shouldShowSubComponent,
|
|
57165
|
-
showCount =
|
|
57158
|
+
showCount = true,
|
|
57166
57159
|
style = {},
|
|
57167
57160
|
SubComponent,
|
|
57168
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,12 +69,9 @@ const DraggableColumnOption = ({
|
|
|
69
69
|
</span>
|
|
70
70
|
)}
|
|
71
71
|
{subFrag && (
|
|
72
|
-
<InfoHelper
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
style={{ marginLeft: 5 }}
|
|
76
|
-
>
|
|
77
|
-
Viewing this column may cause the table to load slower
|
|
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.
|
|
78
75
|
</InfoHelper>
|
|
79
76
|
)}
|
|
80
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;
|