@yesilyazilim/web.spa 1.0.83 → 1.0.85

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.css CHANGED
@@ -3414,6 +3414,7 @@ span {
3414
3414
  .tabulator {
3415
3415
  border-radius: var(--border-radius);
3416
3416
  border: 1px solid var(--border-color);
3417
+ transform: none;
3417
3418
  background-color: var(--background-color) !important;
3418
3419
  font-size: var(--font-size) !important;
3419
3420
  }
@@ -6309,6 +6310,11 @@ app-dt > .dt-header > .dt-table-actions .dt-tbl-ab:hover {
6309
6310
  box-shadow: 0px 2px 2px -1px var(--primary-gray-light);
6310
6311
  }
6311
6312
 
6313
+ app-dt > .dt-header > .dt-table-actions .dt-tbl-ab app-dropdown {
6314
+ cursor: auto;
6315
+ width: min-content;
6316
+ }
6317
+
6312
6318
  app-dt > .dt-header > .dt-table-actions > .col-select-btn-container {
6313
6319
  display: flex;
6314
6320
  }
@@ -6369,6 +6375,231 @@ app-dt > .dt-footer {
6369
6375
  grid-area: dt_footer;
6370
6376
  }
6371
6377
 
6378
+ app-dt .dt-allfilter-dialog {
6379
+ gap: var(--spacing-half, 8px);
6380
+ width: 330px;
6381
+ height: 400px;
6382
+ padding: var(--spacing-half, 8px);
6383
+ border: var(--border-width) solid var(--border-color);
6384
+ border-radius: var(--border-radius);
6385
+ background-color: var(--background-color);
6386
+ box-shadow: var(--box-shadow);
6387
+ grid-template-rows: 1fr auto;
6388
+ grid-template-columns: 1fr 1fr;
6389
+ min-width: fit-content;
6390
+ max-height: 220px;
6391
+ display: grid;
6392
+ }
6393
+
6394
+ app-dt .dt-allfilter-dialog .dt-allfilter-left {
6395
+ border: var(--border-width) solid var(--border-color);
6396
+ border-radius: var(--border-radius);
6397
+ flex-direction: column;
6398
+ grid-area: 1 / 1;
6399
+ justify-content: flex-start;
6400
+ align-items: flex-start;
6401
+ width: 120px;
6402
+ min-width: fit-content;
6403
+ display: flex;
6404
+ overflow: auto;
6405
+ }
6406
+
6407
+ app-dt .dt-allfilter-dialog .dt-allfilter-left .dt-allfilter-label {
6408
+ cursor: pointer;
6409
+ border-bottom: var(--zinc-300) solid;
6410
+ border-width: var(--border-width);
6411
+ width: 100%;
6412
+ padding: var(--spacing-half);
6413
+ margin-bottom: 0;
6414
+ }
6415
+
6416
+ app-dt .dt-allfilter-dialog .dt-allfilter-left .dt-allfilter-label:hover {
6417
+ background-color: var(--primary-gray-ghost);
6418
+ }
6419
+
6420
+ app-dt .dt-allfilter-dialog .dt-allfilter-left .dt-allfilter-label[selected="true"] {
6421
+ background-color: var(--primary-50) !important;
6422
+ }
6423
+
6424
+ app-dt .dt-allfilter-dialog .dt-allfilter-right {
6425
+ grid-area: 1 / 2;
6426
+ justify-content: flex-start;
6427
+ width: 210px;
6428
+ display: flex;
6429
+ overflow: auto;
6430
+ }
6431
+
6432
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-allfilter-label {
6433
+ border: var(--border-width) solid var(--border-color);
6434
+ border-radius: var(--border-radius);
6435
+ background-color: var(--background-color);
6436
+ gap: var(--spacing-half, 8px);
6437
+ padding: var(--spacing-half, 8px);
6438
+ margin: var(--spacing-half, 8px);
6439
+ text-align: center;
6440
+ }
6441
+
6442
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter-buttons {
6443
+ gap: var(--spacing-half);
6444
+ justify-content: flex-end;
6445
+ display: flex;
6446
+ }
6447
+
6448
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter-buttons .filter-button {
6449
+ padding: var(--spacing-quarter, 4px) var(--spacing, 12px);
6450
+ }
6451
+
6452
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter-buttons .filter-button i {
6453
+ font-size: .8em;
6454
+ }
6455
+
6456
+ @media (width <= 480px) {
6457
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter-buttons .date-button {
6458
+ flex: 1;
6459
+ justify-content: center;
6460
+ }
6461
+ }
6462
+
6463
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter {
6464
+ grid-template-rows: 1fr auto;
6465
+ grid-template-columns: 1fr;
6466
+ align-items: start;
6467
+ width: 100%;
6468
+ display: grid;
6469
+ }
6470
+
6471
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter .dt-filter-rows {
6472
+ grid-area: 1 / 1;
6473
+ width: 100%;
6474
+ }
6475
+
6476
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter multi-combo-box {
6477
+ width: 100%;
6478
+ }
6479
+
6480
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter .dt-filter-buttons {
6481
+ gap: var(--spacing-half);
6482
+ justify-content: flex-end;
6483
+ display: flex;
6484
+ grid-area: 3 / 1 !important;
6485
+ }
6486
+
6487
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter .dt-filter-buttons .filter-button {
6488
+ padding: var(--spacing-quarter, 4px) var(--spacing, 12px);
6489
+ }
6490
+
6491
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter .dt-filter-buttons .filter-button i {
6492
+ font-size: .8em;
6493
+ }
6494
+
6495
+ @media (width <= 480px) {
6496
+ app-dt .dt-allfilter-dialog .dt-allfilter-right .dt-filter .dt-filter-buttons .date-button {
6497
+ flex: 1;
6498
+ justify-content: center;
6499
+ }
6500
+ }
6501
+
6502
+ app-dt .dt-allfilter-dialog .dt-filter-filter-button {
6503
+ grid-area: 2 / 1 !important;
6504
+ }
6505
+
6506
+ app-dt .dt-allfilter-dialog .dt-filter-buttons {
6507
+ gap: var(--spacing-half, 8px);
6508
+ justify-content: flex-end;
6509
+ display: flex;
6510
+ grid-area: 2 / 2 !important;
6511
+ }
6512
+
6513
+ app-dt .dt-allfilter-dialog .dt-filter-buttons .filter-button {
6514
+ padding: var(--spacing-quarter, 4px) var(--spacing, 12px);
6515
+ }
6516
+
6517
+ app-dt .dt-allfilter-dialog .dt-filter-buttons .filter-button i {
6518
+ font-size: .8em;
6519
+ }
6520
+
6521
+ @media (width <= 480px) {
6522
+ app-dt .dt-allfilter-dialog .dt-filter-buttons .date-button {
6523
+ flex: 1;
6524
+ justify-content: center;
6525
+ }
6526
+ }
6527
+
6528
+ app-dt .dt-filter-range {
6529
+ gap: var(--spacing-half);
6530
+ flex-direction: row;
6531
+ align-items: center;
6532
+ display: flex;
6533
+ }
6534
+
6535
+ app-dt .dt-filter-range > * {
6536
+ margin: 0;
6537
+ }
6538
+
6539
+ app-dt .dt-filter {
6540
+ gap: var(--spacing-half, 8px);
6541
+ padding: var(--spacing-half, 8px);
6542
+ border: var(--border-width) solid var(--border-color);
6543
+ border-radius: var(--border-radius);
6544
+ background-color: var(--background-color);
6545
+ box-shadow: var(--box-shadow);
6546
+ flex-direction: column;
6547
+ min-width: fit-content;
6548
+ font-weight: normal;
6549
+ display: flex;
6550
+ }
6551
+
6552
+ app-dt .dt-filter .dt-filter-rows {
6553
+ gap: var(--spacing-half);
6554
+ flex-direction: column;
6555
+ display: flex;
6556
+ }
6557
+
6558
+ app-dt .dt-filter .dt-filter-buttons {
6559
+ gap: var(--spacing-half);
6560
+ justify-content: flex-end;
6561
+ display: flex;
6562
+ }
6563
+
6564
+ app-dt .dt-filter .dt-filter-buttons .filter-button {
6565
+ padding: var(--spacing-quarter, 4px) var(--spacing, 12px);
6566
+ }
6567
+
6568
+ app-dt .dt-filter .dt-filter-buttons .filter-button i {
6569
+ font-size: .8em;
6570
+ }
6571
+
6572
+ @media (width <= 480px) {
6573
+ app-dt .dt-filter .dt-filter-buttons .date-button {
6574
+ flex: 1;
6575
+ justify-content: center;
6576
+ }
6577
+ }
6578
+
6579
+ app-dt .dt-filter .date-range-container {
6580
+ flex-direction: column;
6581
+ display: flex;
6582
+ }
6583
+
6584
+ app-dt app-dt-flt-header {
6585
+ display: block;
6586
+ }
6587
+
6588
+ app-dt app-dt-flt-header > .dt-custom-header {
6589
+ justify-content: flex-end;
6590
+ gap: var(--spacing-half);
6591
+ flex-direction: row-reverse;
6592
+ display: flex;
6593
+ }
6594
+
6595
+ app-dt app-dt-flt-header > .dt-custom-header > .dt-filter-icon {
6596
+ opacity: .7;
6597
+ }
6598
+
6599
+ app-dt app-dt-flt-header > .dt-custom-header > .dt-filter-icon:hover {
6600
+ opacity: 1;
6601
+ }
6602
+
6372
6603
  date-range {
6373
6604
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
6374
6605
  display: block;
@@ -6769,6 +7000,119 @@ dropdown-date-range > app-dropdown > .ddBody date-range {
6769
7000
  }
6770
7001
  }
6771
7002
 
7003
+ app-drawer-contanier {
7004
+ grid-template-columns: auto 1fr auto;
7005
+ grid-template-areas: "drleft drmain drright";
7006
+ width: 100%;
7007
+ height: 100%;
7008
+ display: grid;
7009
+ }
7010
+
7011
+ app-drawer-contanier > .dr-main {
7012
+ grid-area: drmain;
7013
+ width: 100%;
7014
+ height: 100%;
7015
+ }
7016
+
7017
+ app-drawer-contanier > app-drawer {
7018
+ z-index: 10;
7019
+ display: block;
7020
+ position: absolute;
7021
+ }
7022
+
7023
+ app-drawer-contanier > app-drawer > .open-button {
7024
+ z-index: 1;
7025
+ padding: var(--spacing-half) var(--spacing);
7026
+ white-space: nowrap;
7027
+ position: absolute;
7028
+ }
7029
+
7030
+ app-drawer-contanier > app-drawer > .action-list {
7031
+ right: var(--spacing-half);
7032
+ top: var(--spacing-half);
7033
+ z-index: 1;
7034
+ gap: var(--spacing-half);
7035
+ flex-direction: row-reverse;
7036
+ display: none;
7037
+ position: absolute;
7038
+ }
7039
+
7040
+ app-drawer-contanier > app-drawer > .action-list > button {
7041
+ opacity: .5;
7042
+ background-color: var(--primary-inverse);
7043
+ border: none;
7044
+ padding: 1px;
7045
+ transition: opacity .5s;
7046
+ }
7047
+
7048
+ app-drawer-contanier > app-drawer > .action-list > button:hover {
7049
+ opacity: 1;
7050
+ }
7051
+
7052
+ app-drawer-contanier > app-drawer > .item-container {
7053
+ height: 100%;
7054
+ display: none;
7055
+ }
7056
+
7057
+ app-drawer-contanier > app-drawer.dr-left {
7058
+ grid-area: drleft;
7059
+ width: min-content;
7060
+ height: 100%;
7061
+ left: 0;
7062
+ }
7063
+
7064
+ app-drawer-contanier > app-drawer.dr-left > .open-button {
7065
+ transform-origin: 0;
7066
+ left: 0;
7067
+ transform: rotate(90deg)translate(0, -1rem);
7068
+ }
7069
+
7070
+ app-drawer-contanier > app-drawer.dr-right {
7071
+ grid-area: drright;
7072
+ width: min-content;
7073
+ height: 100%;
7074
+ right: 0;
7075
+ }
7076
+
7077
+ app-drawer-contanier > app-drawer.dr-right > .open-button {
7078
+ transform-origin: 100%;
7079
+ right: 0;
7080
+ transform: rotate(90deg)translate(100%, 1rem);
7081
+ }
7082
+
7083
+ app-drawer-contanier > app-drawer.opened > .item-container {
7084
+ display: inherit;
7085
+ box-shadow: var(--drop-shadow);
7086
+ }
7087
+
7088
+ app-drawer-contanier > app-drawer.opened.dr-left {
7089
+ border-right: 1px solid var(--border-color);
7090
+ }
7091
+
7092
+ app-drawer-contanier > app-drawer.opened.dr-right {
7093
+ border-left: 1px solid var(--border-color);
7094
+ }
7095
+
7096
+ app-drawer-contanier > app-drawer.opened > .action-list {
7097
+ display: flex;
7098
+ }
7099
+
7100
+ app-drawer-contanier > app-drawer.pinned {
7101
+ position: relative;
7102
+ }
7103
+
7104
+ app-drawer-contanier > app-drawer.pinned > .item-container {
7105
+ box-shadow: none;
7106
+ }
7107
+
7108
+ app-drawer-contanier > app-drawer.pinned.dr-left > .item-container {
7109
+ border-right: 1px solid var(--border-color);
7110
+ }
7111
+
7112
+ app-drawer-contanier > app-drawer.pinned.dr-right > .item-container {
7113
+ border-left: 1px solid var(--border-color);
7114
+ }
7115
+
6772
7116
  app-dropdown-tree {
6773
7117
  border: 1px solid var(--form-element-border-color);
6774
7118
  border-radius: var(--border-radius);