@oliasoft-open-source/react-ui-library 3.9.4 → 3.9.5
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/dist/global.css +12 -12
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -24618,22 +24618,22 @@ html[data-theme='dark'] {
|
|
|
24618
24618
|
/*
|
|
24619
24619
|
Z-INDEX
|
|
24620
24620
|
*/
|
|
24621
|
-
.
|
|
24621
|
+
._clickableRow_17l7m_333 {
|
|
24622
24622
|
cursor: pointer;
|
|
24623
24623
|
}
|
|
24624
|
-
.
|
|
24625
|
-
.
|
|
24626
|
-
background-color: var(--color-background-listitem-
|
|
24624
|
+
._hoverableRow_17l7m_336:not(._rowActive_17l7m_336):hover,
|
|
24625
|
+
._clickableRow_17l7m_333:not(._rowActive_17l7m_336):hover {
|
|
24626
|
+
background-color: var(--color-background-listitem-hover) !important;
|
|
24627
24627
|
}
|
|
24628
|
-
.
|
|
24628
|
+
._expandableRow_17l7m_340._flush_17l7m_340 {
|
|
24629
24629
|
padding: 0 !important;
|
|
24630
24630
|
height: auto !important;
|
|
24631
24631
|
}
|
|
24632
|
-
.
|
|
24632
|
+
._rowActive_17l7m_336 {
|
|
24633
24633
|
position: relative;
|
|
24634
24634
|
background-color: var(--color-background-listitem-active) !important;
|
|
24635
24635
|
}
|
|
24636
|
-
.
|
|
24636
|
+
._rowActive_17l7m_336:after {
|
|
24637
24637
|
content: '';
|
|
24638
24638
|
position: absolute;
|
|
24639
24639
|
left: 0;
|
|
@@ -24645,24 +24645,24 @@ html[data-theme='dark'] {
|
|
|
24645
24645
|
transition: background 0.3s;
|
|
24646
24646
|
background: var(--color-background-primary);
|
|
24647
24647
|
}
|
|
24648
|
-
.
|
|
24648
|
+
._dragIconCell_17l7m_360 {
|
|
24649
24649
|
width: 36px;
|
|
24650
24650
|
position: relative;
|
|
24651
24651
|
}
|
|
24652
|
-
.
|
|
24652
|
+
._dragIcon_17l7m_360 {
|
|
24653
24653
|
display: flex;
|
|
24654
24654
|
align-items: center;
|
|
24655
24655
|
justify-content: center;
|
|
24656
24656
|
position: absolute;
|
|
24657
24657
|
inset: 0;
|
|
24658
24658
|
}
|
|
24659
|
-
.
|
|
24659
|
+
._dragIcon_17l7m_360 path {
|
|
24660
24660
|
stroke: var(--color-text-faint);
|
|
24661
24661
|
}
|
|
24662
|
-
.
|
|
24662
|
+
._dragIcon_17l7m_360:hover path {
|
|
24663
24663
|
stroke: var(--color-text-primary-hover);
|
|
24664
24664
|
}
|
|
24665
|
-
.
|
|
24665
|
+
._dragIcon_17l7m_360:active path {
|
|
24666
24666
|
stroke: var(--color-text-primary-active);
|
|
24667
24667
|
}
|
|
24668
24668
|
/*
|
package/dist/index.js
CHANGED
|
@@ -58421,19 +58421,19 @@ Cell.propTypes = {
|
|
|
58421
58421
|
cell: cellShape,
|
|
58422
58422
|
testId: PropTypes__default.string
|
|
58423
58423
|
};
|
|
58424
|
-
const clickableRow = "
|
|
58425
|
-
const hoverableRow = "
|
|
58426
|
-
const
|
|
58427
|
-
const
|
|
58428
|
-
const
|
|
58429
|
-
const dragIconCell = "
|
|
58430
|
-
const dragIcon = "
|
|
58424
|
+
const clickableRow = "_clickableRow_17l7m_333";
|
|
58425
|
+
const hoverableRow = "_hoverableRow_17l7m_336";
|
|
58426
|
+
const rowActive = "_rowActive_17l7m_336";
|
|
58427
|
+
const expandableRow = "_expandableRow_17l7m_340";
|
|
58428
|
+
const flush2 = "_flush_17l7m_340";
|
|
58429
|
+
const dragIconCell = "_dragIconCell_17l7m_360";
|
|
58430
|
+
const dragIcon = "_dragIcon_17l7m_360";
|
|
58431
58431
|
const styles$6 = {
|
|
58432
58432
|
clickableRow,
|
|
58433
58433
|
hoverableRow,
|
|
58434
|
+
rowActive,
|
|
58434
58435
|
expandableRow,
|
|
58435
58436
|
flush: flush2,
|
|
58436
|
-
rowActive,
|
|
58437
58437
|
dragIconCell,
|
|
58438
58438
|
dragIcon
|
|
58439
58439
|
};
|
package/package.json
CHANGED