@oliasoft-open-source/react-ui-library 3.11.0-beta-5 → 3.11.0-beta-6
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 +65 -54
- package/dist/index.js +12 -12
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -23390,103 +23390,103 @@ html[data-theme='dark'] {
|
|
|
23390
23390
|
/*
|
|
23391
23391
|
Z-INDEX
|
|
23392
23392
|
*/
|
|
23393
|
-
.
|
|
23393
|
+
._inputInTable_1y97v_337 {
|
|
23394
23394
|
background-color: transparent;
|
|
23395
23395
|
border-radius: inherit !important;
|
|
23396
23396
|
height: var(--size);
|
|
23397
23397
|
min-height: 100%;
|
|
23398
23398
|
}
|
|
23399
|
-
.
|
|
23399
|
+
._inputInTable_1y97v_337:not(:hover) {
|
|
23400
23400
|
border-color: transparent;
|
|
23401
23401
|
}
|
|
23402
|
-
.
|
|
23402
|
+
._inputHover_1y97v_346 {
|
|
23403
23403
|
position: relative;
|
|
23404
23404
|
border-color: var(--color-border-hover);
|
|
23405
23405
|
z-index: 2;
|
|
23406
23406
|
}
|
|
23407
|
-
.
|
|
23407
|
+
._inputFocus_1y97v_351 {
|
|
23408
23408
|
position: relative;
|
|
23409
23409
|
outline: none !important;
|
|
23410
23410
|
border-color: var(--color-border-focus) !important;
|
|
23411
23411
|
box-shadow: var(--shadow-focus);
|
|
23412
23412
|
z-index: 3;
|
|
23413
23413
|
}
|
|
23414
|
-
.
|
|
23415
|
-
.
|
|
23414
|
+
._inputError_1y97v_358,
|
|
23415
|
+
._inputWarning_1y97v_359 {
|
|
23416
23416
|
position: relative;
|
|
23417
23417
|
}
|
|
23418
|
-
.
|
|
23418
|
+
._inputError_1y97v_358 {
|
|
23419
23419
|
z-index: 2;
|
|
23420
23420
|
border-color: var(--color-border-error) !important;
|
|
23421
23421
|
color: var(--color-text-error) !important;
|
|
23422
23422
|
background-color: var(--color-background-error);
|
|
23423
23423
|
}
|
|
23424
|
-
.
|
|
23424
|
+
._inputError_1y97v_358:hover {
|
|
23425
23425
|
border-color: var(--color-border-error-hover) !important;
|
|
23426
23426
|
}
|
|
23427
|
-
.
|
|
23427
|
+
._inputError_1y97v_358:focus {
|
|
23428
23428
|
position: relative;
|
|
23429
23429
|
outline: none !important;
|
|
23430
23430
|
border-color: var(--color-border-focus) !important;
|
|
23431
23431
|
box-shadow: var(--shadow-focus);
|
|
23432
23432
|
z-index: 3;
|
|
23433
23433
|
}
|
|
23434
|
-
.
|
|
23434
|
+
._inputWarning_1y97v_359 {
|
|
23435
23435
|
z-index: 1;
|
|
23436
23436
|
border-color: var(--color-border-warning) !important;
|
|
23437
23437
|
color: var(--color-text-warning) !important;
|
|
23438
23438
|
background-color: var(--color-background-warning);
|
|
23439
23439
|
}
|
|
23440
|
-
.
|
|
23440
|
+
._inputWarning_1y97v_359:hover {
|
|
23441
23441
|
border-color: var(--color-border-warning-hover) !important;
|
|
23442
23442
|
}
|
|
23443
|
-
.
|
|
23443
|
+
._inputWarning_1y97v_359:focus {
|
|
23444
23444
|
position: relative;
|
|
23445
23445
|
outline: none !important;
|
|
23446
23446
|
border-color: var(--color-border-focus) !important;
|
|
23447
23447
|
box-shadow: var(--shadow-focus);
|
|
23448
23448
|
z-index: 3;
|
|
23449
23449
|
}
|
|
23450
|
-
.
|
|
23450
|
+
._inputDisabled_1y97v_394 {
|
|
23451
23451
|
pointer-events: none;
|
|
23452
23452
|
background-color: var(--color-background-disabled);
|
|
23453
23453
|
color: var(--color-text-muted);
|
|
23454
23454
|
}
|
|
23455
|
-
.
|
|
23455
|
+
._hideScrollbars_1y97v_399 {
|
|
23456
23456
|
/* Firefox */
|
|
23457
23457
|
scrollbar-width: none;
|
|
23458
23458
|
/* IE 10+ */
|
|
23459
23459
|
-ms-overflow-style: none;
|
|
23460
23460
|
/* Chrome, Safari and Opera */
|
|
23461
23461
|
}
|
|
23462
|
-
.
|
|
23462
|
+
._hideScrollbars_1y97v_399::-webkit-scrollbar {
|
|
23463
23463
|
display: none;
|
|
23464
23464
|
}
|
|
23465
|
-
.
|
|
23465
|
+
._scrollbars_1y97v_409 {
|
|
23466
23466
|
overflow: overlay;
|
|
23467
23467
|
--scrollbar-color: #00000040;
|
|
23468
23468
|
}
|
|
23469
|
-
.
|
|
23469
|
+
._scrollbars_1y97v_409::-webkit-scrollbar {
|
|
23470
23470
|
display: block;
|
|
23471
23471
|
width: 16px;
|
|
23472
23472
|
z-index: 2;
|
|
23473
23473
|
}
|
|
23474
|
-
.
|
|
23474
|
+
._scrollbars_1y97v_409::-webkit-scrollbar-button {
|
|
23475
23475
|
display: none;
|
|
23476
23476
|
}
|
|
23477
|
-
.
|
|
23477
|
+
._scrollbars_1y97v_409::-webkit-scrollbar-track {
|
|
23478
23478
|
background-color: #00000000;
|
|
23479
23479
|
}
|
|
23480
|
-
.
|
|
23480
|
+
._scrollbars_1y97v_409::-webkit-scrollbar-track-piece {
|
|
23481
23481
|
background-color: #00000000;
|
|
23482
23482
|
}
|
|
23483
|
-
.
|
|
23483
|
+
._scrollbars_1y97v_409::-webkit-scrollbar-thumb {
|
|
23484
23484
|
background-color: #00000000;
|
|
23485
23485
|
border: 5px solid transparent;
|
|
23486
23486
|
border-radius: 24px;
|
|
23487
23487
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23488
23488
|
}
|
|
23489
|
-
.
|
|
23489
|
+
._scrollbars_1y97v_409::-webkit-scrollbar-corner {
|
|
23490
23490
|
background: rgba(0, 0, 0, 0);
|
|
23491
23491
|
}
|
|
23492
23492
|
:root {
|
|
@@ -23499,78 +23499,76 @@ html[data-theme='dark'] {
|
|
|
23499
23499
|
--color-background-table-row-tinted: var(--color-neutral-850);
|
|
23500
23500
|
--color-border-table: black;
|
|
23501
23501
|
}
|
|
23502
|
-
.
|
|
23502
|
+
._scrollWrapper_1y97v_446 {
|
|
23503
23503
|
overflow: overlay;
|
|
23504
23504
|
--scrollbar-color: #00000040;
|
|
23505
|
-
|
|
23505
|
+
border-radius: inherit;
|
|
23506
23506
|
}
|
|
23507
|
-
.
|
|
23507
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar {
|
|
23508
23508
|
display: block;
|
|
23509
23509
|
width: 16px;
|
|
23510
23510
|
z-index: 2;
|
|
23511
23511
|
}
|
|
23512
|
-
.
|
|
23512
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar-button {
|
|
23513
23513
|
display: none;
|
|
23514
23514
|
}
|
|
23515
|
-
.
|
|
23515
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar-track {
|
|
23516
23516
|
background-color: #00000000;
|
|
23517
23517
|
}
|
|
23518
|
-
.
|
|
23518
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar-track-piece {
|
|
23519
23519
|
background-color: #00000000;
|
|
23520
23520
|
}
|
|
23521
|
-
.
|
|
23521
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar-thumb {
|
|
23522
23522
|
background-color: #00000000;
|
|
23523
23523
|
border: 5px solid transparent;
|
|
23524
23524
|
border-radius: 24px;
|
|
23525
23525
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23526
23526
|
}
|
|
23527
|
-
.
|
|
23527
|
+
._scrollWrapper_1y97v_446::-webkit-scrollbar-corner {
|
|
23528
23528
|
background: rgba(0, 0, 0, 0);
|
|
23529
23529
|
}
|
|
23530
|
-
.
|
|
23530
|
+
._scrollWrapper_1y97v_446._bordered_1y97v_474 {
|
|
23531
23531
|
border-radius: 4px;
|
|
23532
23532
|
}
|
|
23533
|
-
.
|
|
23534
|
-
margin-left: -1px;
|
|
23535
|
-
}
|
|
23536
|
-
._table_15p4y_480 {
|
|
23533
|
+
._table_1y97v_477 {
|
|
23537
23534
|
background: var(--color-background-raised);
|
|
23538
23535
|
color: var(--color-text);
|
|
23539
23536
|
border-collapse: separate;
|
|
23540
23537
|
border-spacing: 0;
|
|
23541
|
-
border-radius:
|
|
23538
|
+
border-radius: inherit;
|
|
23542
23539
|
width: 100%;
|
|
23540
|
+
overflow: hidden;
|
|
23543
23541
|
}
|
|
23544
|
-
.
|
|
23542
|
+
._table_1y97v_477:not(:first-child) {
|
|
23545
23543
|
border-top-left-radius: 0;
|
|
23546
23544
|
border-top-right-radius: 0;
|
|
23547
23545
|
}
|
|
23548
|
-
.
|
|
23546
|
+
._table_1y97v_477 > :first-child {
|
|
23549
23547
|
border-top-left-radius: inherit;
|
|
23550
23548
|
border-top-right-radius: inherit;
|
|
23551
23549
|
}
|
|
23552
|
-
.
|
|
23550
|
+
._table_1y97v_477 > :first-child > :first-child {
|
|
23553
23551
|
border-top-left-radius: inherit;
|
|
23554
23552
|
border-top-right-radius: inherit;
|
|
23555
23553
|
}
|
|
23556
|
-
.
|
|
23554
|
+
._table_1y97v_477 > :first-child > :first-child > :first-child {
|
|
23557
23555
|
border-top-left-radius: inherit;
|
|
23558
23556
|
}
|
|
23559
|
-
.
|
|
23557
|
+
._table_1y97v_477 > :first-child > :first-child > :last-child {
|
|
23560
23558
|
border-top-right-radius: inherit;
|
|
23561
23559
|
}
|
|
23562
|
-
.
|
|
23560
|
+
._table_1y97v_477 > :last-child {
|
|
23563
23561
|
border-bottom-left-radius: inherit;
|
|
23564
23562
|
border-bottom-right-radius: inherit;
|
|
23565
23563
|
}
|
|
23566
|
-
.
|
|
23564
|
+
._table_1y97v_477 > :last-child > :last-child {
|
|
23567
23565
|
border-bottom-left-radius: inherit;
|
|
23568
23566
|
border-bottom-right-radius: inherit;
|
|
23569
23567
|
}
|
|
23570
|
-
.
|
|
23568
|
+
._table_1y97v_477 > :last-child > :last-child > :first-child {
|
|
23571
23569
|
border-bottom-left-radius: inherit;
|
|
23572
23570
|
}
|
|
23573
|
-
.
|
|
23571
|
+
._table_1y97v_477 > :last-child > :last-child > :last-child {
|
|
23574
23572
|
border-bottom-right-radius: inherit;
|
|
23575
23573
|
}
|
|
23576
23574
|
th,
|
|
@@ -23581,19 +23579,32 @@ td {
|
|
|
23581
23579
|
background: inherit;
|
|
23582
23580
|
border-color: var(--color-border-table);
|
|
23583
23581
|
border-style: solid;
|
|
23584
|
-
border-
|
|
23582
|
+
border-width: 0;
|
|
23583
|
+
}
|
|
23584
|
+
th:not(:first-child),
|
|
23585
|
+
td:not(:first-child) {
|
|
23585
23586
|
border-left-width: 1px;
|
|
23586
|
-
|
|
23587
|
+
}
|
|
23588
|
+
._table_1y97v_477 > *:not(:last-child) > tr th,
|
|
23589
|
+
._table_1y97v_477 > *:not(:last-child) > tr td,
|
|
23590
|
+
._table_1y97v_477 > *:last-child > tr:not(:last-child) th,
|
|
23591
|
+
._table_1y97v_477 > *:last-child > tr:not(:last-child) td {
|
|
23587
23592
|
border-bottom-width: 1px;
|
|
23588
23593
|
}
|
|
23589
|
-
.
|
|
23590
|
-
.
|
|
23594
|
+
._bordered_1y97v_474 th:first-child,
|
|
23595
|
+
._bordered_1y97v_474 td:first-child {
|
|
23596
|
+
border-left-width: 1px;
|
|
23597
|
+
}
|
|
23598
|
+
._bordered_1y97v_474 th:last-child,
|
|
23599
|
+
._bordered_1y97v_474 td:last-child {
|
|
23591
23600
|
border-right-width: 1px;
|
|
23592
23601
|
}
|
|
23593
|
-
|
|
23594
|
-
|
|
23595
|
-
|
|
23596
|
-
|
|
23602
|
+
._bordered_1y97v_474 ._table_1y97v_477 > *:last-child tr th,
|
|
23603
|
+
._bordered_1y97v_474 ._table_1y97v_477 > *:last-child tr td {
|
|
23604
|
+
border-bottom-width: 1px;
|
|
23605
|
+
}
|
|
23606
|
+
._bordered_1y97v_474 ._table_1y97v_477 > *:first-child > tr:first-child th,
|
|
23607
|
+
._bordered_1y97v_474 ._table_1y97v_477 > *:first-child > tr:first-child td {
|
|
23597
23608
|
border-top-width: 1px;
|
|
23598
23609
|
}
|
|
23599
23610
|
@-moz-document url-prefix() {
|
|
@@ -23620,7 +23631,7 @@ tbody {
|
|
|
23620
23631
|
tbody tr {
|
|
23621
23632
|
background-color: var(--color-background-raised);
|
|
23622
23633
|
}
|
|
23623
|
-
.
|
|
23634
|
+
._striped_1y97v_578 tbody tr:nth-child(even) {
|
|
23624
23635
|
background-color: var(--color-background-table-row-tinted);
|
|
23625
23636
|
}
|
|
23626
23637
|
/*
|
package/dist/index.js
CHANGED
|
@@ -59110,18 +59110,18 @@ Spacer.propTypes = {
|
|
|
59110
59110
|
width: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number]),
|
|
59111
59111
|
flex: propTypes$1.exports.bool
|
|
59112
59112
|
};
|
|
59113
|
-
const inputInTable$2 = "
|
|
59114
|
-
const inputHover$2 = "
|
|
59115
|
-
const inputFocus$2 = "
|
|
59116
|
-
const inputError$2 = "
|
|
59117
|
-
const inputWarning$2 = "
|
|
59118
|
-
const inputDisabled$2 = "
|
|
59119
|
-
const hideScrollbars$2 = "
|
|
59120
|
-
const scrollbars$2 = "
|
|
59121
|
-
const scrollWrapper = "
|
|
59122
|
-
const bordered = "
|
|
59123
|
-
const table = "
|
|
59124
|
-
const striped = "
|
|
59113
|
+
const inputInTable$2 = "_inputInTable_1y97v_337";
|
|
59114
|
+
const inputHover$2 = "_inputHover_1y97v_346";
|
|
59115
|
+
const inputFocus$2 = "_inputFocus_1y97v_351";
|
|
59116
|
+
const inputError$2 = "_inputError_1y97v_358";
|
|
59117
|
+
const inputWarning$2 = "_inputWarning_1y97v_359";
|
|
59118
|
+
const inputDisabled$2 = "_inputDisabled_1y97v_394";
|
|
59119
|
+
const hideScrollbars$2 = "_hideScrollbars_1y97v_399";
|
|
59120
|
+
const scrollbars$2 = "_scrollbars_1y97v_409";
|
|
59121
|
+
const scrollWrapper = "_scrollWrapper_1y97v_446";
|
|
59122
|
+
const bordered = "_bordered_1y97v_474";
|
|
59123
|
+
const table = "_table_1y97v_477";
|
|
59124
|
+
const striped = "_striped_1y97v_578";
|
|
59125
59125
|
const styles$a = {
|
|
59126
59126
|
inputInTable: inputInTable$2,
|
|
59127
59127
|
inputHover: inputHover$2,
|
package/package.json
CHANGED