@dbcdk/react-components 0.0.137 → 0.0.138
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.
|
@@ -539,6 +539,15 @@
|
|
|
539
539
|
text-overflow: clip;
|
|
540
540
|
}
|
|
541
541
|
|
|
542
|
+
.row:focus-within > .cell:not(.selectionCell) .cellContent,
|
|
543
|
+
.row:focus-within > .cell:not(.selectionCell) .cellValueEllipsis {
|
|
544
|
+
white-space: normal;
|
|
545
|
+
overflow-wrap: break-word;
|
|
546
|
+
word-break: normal;
|
|
547
|
+
overflow: visible;
|
|
548
|
+
text-overflow: clip;
|
|
549
|
+
}
|
|
550
|
+
|
|
542
551
|
.contextMenuTrigger {
|
|
543
552
|
color: var(--color-fg-subtle);
|
|
544
553
|
min-inline-size: 36px;
|
|
@@ -557,9 +566,8 @@
|
|
|
557
566
|
|
|
558
567
|
.contextMenuOverlay {
|
|
559
568
|
position: absolute;
|
|
560
|
-
inset-block-start:
|
|
569
|
+
inset-block-start: 0;
|
|
561
570
|
inset-inline-end: 0;
|
|
562
|
-
transform: translateY(-50%);
|
|
563
571
|
display: inline-flex;
|
|
564
572
|
align-items: center;
|
|
565
573
|
justify-content: center;
|
package/dist/index.d.ts
CHANGED
|
@@ -23,3 +23,4 @@ export * from './components/forms/input-container/InputContainer';
|
|
|
23
23
|
export * from './components/divider/Divider';
|
|
24
24
|
export * from './components/grid/Grid';
|
|
25
25
|
export * from './components/metric-tile/MetricTile';
|
|
26
|
+
export type { TableContextMenuItem } from './components/table/Table.types';
|