@jxsuite/studio 0.37.1 → 1.1.0

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.
Files changed (113) hide show
  1. package/dist/iframe-entry.js +622 -49
  2. package/dist/iframe-entry.js.map +15 -12
  3. package/dist/studio.css +1333 -0
  4. package/dist/studio.js +103709 -81001
  5. package/dist/studio.js.map +201 -157
  6. package/package.json +47 -45
  7. package/src/account-status.ts +39 -0
  8. package/src/browse/browse.ts +10 -14
  9. package/src/canvas/canvas-live-render.ts +21 -2
  10. package/src/canvas/canvas-render.ts +35 -16
  11. package/src/canvas/canvas-utils.ts +118 -72
  12. package/src/canvas/iframe-entry.ts +20 -0
  13. package/src/canvas/iframe-eval.ts +155 -0
  14. package/src/canvas/iframe-host.ts +132 -6
  15. package/src/canvas/iframe-inline-edit.ts +107 -1
  16. package/src/canvas/iframe-protocol.ts +43 -3
  17. package/src/canvas/iframe-render.ts +18 -0
  18. package/src/collab/collab-session.ts +23 -8
  19. package/src/collab/collab-state.ts +6 -3
  20. package/src/component-props.ts +104 -0
  21. package/src/editor/context-menu.ts +1 -1
  22. package/src/editor/inline-edit-apply.ts +36 -1
  23. package/src/editor/inline-edit.ts +58 -1
  24. package/src/editor/repeater-scope.ts +8 -13
  25. package/src/editor/shortcuts.ts +41 -12
  26. package/src/files/file-ops.ts +14 -0
  27. package/src/files/files.ts +56 -1
  28. package/src/format/format-host.ts +63 -1
  29. package/src/grid/cell-editors.ts +288 -0
  30. package/src/grid/cell-popovers.ts +108 -0
  31. package/src/grid/csv-codec.ts +122 -0
  32. package/src/grid/edit-buffer.ts +490 -0
  33. package/src/grid/grid-controller.ts +417 -0
  34. package/src/grid/grid-layout.ts +83 -0
  35. package/src/grid/grid-open.ts +167 -0
  36. package/src/grid/grid-panel.ts +302 -0
  37. package/src/grid/grid-source.ts +210 -0
  38. package/src/grid/grid-view.ts +367 -0
  39. package/src/grid/schema-columns.ts +261 -0
  40. package/src/grid/sources/connector-source.ts +217 -0
  41. package/src/grid/sources/content-source.ts +542 -0
  42. package/src/grid/sources/csv-file-source.ts +247 -0
  43. package/src/grid/tabulator-tables.d.ts +120 -0
  44. package/src/new-project/add-repo-modal.ts +183 -0
  45. package/src/new-project/new-project-modal.ts +22 -3
  46. package/src/page-params.ts +34 -8
  47. package/src/panels/ai-chat/chat-markdown.ts +2 -2
  48. package/src/panels/ai-panel.ts +61 -4
  49. package/src/panels/block-action-bar.ts +8 -3
  50. package/src/panels/chat-panel.ts +98 -0
  51. package/src/panels/data-grid.ts +241 -0
  52. package/src/panels/editors.ts +43 -17
  53. package/src/panels/events-panel.ts +137 -44
  54. package/src/panels/formula-workspace.ts +379 -0
  55. package/src/panels/frontmatter-fields.ts +231 -0
  56. package/src/panels/frontmatter-panel.ts +132 -0
  57. package/src/panels/git-panel.ts +1 -1
  58. package/src/panels/head-panel.ts +11 -175
  59. package/src/panels/properties-panel.ts +154 -144
  60. package/src/panels/right-panel.ts +9 -47
  61. package/src/panels/signals-panel.ts +217 -460
  62. package/src/panels/statement-editor.ts +710 -0
  63. package/src/panels/statusbar.ts +1 -1
  64. package/src/panels/style-panel.ts +25 -1
  65. package/src/panels/stylebook-panel.ts +0 -2
  66. package/src/panels/tab-bar.ts +175 -6
  67. package/src/panels/tab-strip.ts +62 -6
  68. package/src/panels/toolbar.ts +37 -3
  69. package/src/panels/welcome-screen.ts +50 -0
  70. package/src/platform-errors.ts +30 -0
  71. package/src/platforms/cloud.ts +172 -89
  72. package/src/platforms/devserver.ts +172 -0
  73. package/src/services/ai-project-tools.ts +541 -0
  74. package/src/services/ai-session-store.ts +28 -0
  75. package/src/services/ai-system-prompt.ts +194 -24
  76. package/src/services/ai-tools.ts +88 -21
  77. package/src/services/automation.ts +16 -0
  78. package/src/services/context-resolver.ts +73 -0
  79. package/src/services/data-service.ts +155 -0
  80. package/src/services/document-assistant.ts +81 -11
  81. package/src/services/gated-registry.ts +72 -0
  82. package/src/services/live-preview.ts +0 -0
  83. package/src/services/monaco-setup.ts +75 -26
  84. package/src/services/preview-eval.ts +68 -0
  85. package/src/services/project-adoption.ts +31 -0
  86. package/src/settings/contributed-section.ts +406 -0
  87. package/src/settings/extension-sections.ts +145 -0
  88. package/src/settings/schema-field-ui.ts +4 -2
  89. package/src/settings/settings-modal.ts +101 -42
  90. package/src/site-context.ts +12 -1
  91. package/src/store.ts +4 -0
  92. package/src/studio.ts +107 -52
  93. package/src/tabs/patch-ops.ts +25 -0
  94. package/src/tabs/tab.ts +39 -1
  95. package/src/tabs/transact.ts +61 -14
  96. package/src/types.ts +132 -1
  97. package/src/ui/dynamic-slot.ts +272 -0
  98. package/src/ui/expression-editor.ts +423 -125
  99. package/src/ui/field-row.ts +5 -0
  100. package/src/ui/form-controls.ts +322 -0
  101. package/src/ui/formula-catalog.ts +557 -0
  102. package/src/ui/formula-chips.ts +216 -0
  103. package/src/ui/formula-palette.ts +211 -0
  104. package/src/ui/layers.ts +40 -0
  105. package/src/ui/media-picker.ts +1 -1
  106. package/src/ui/panel-resize.ts +15 -1
  107. package/src/ui/progress-modal.ts +2 -2
  108. package/src/ui/schema-form.ts +524 -0
  109. package/src/utils/preview-format.ts +26 -0
  110. package/src/utils/studio-utils.ts +4 -3
  111. package/src/view.ts +4 -4
  112. package/src/workspace/workspace.ts +14 -0
  113. package/src/settings/content-types-editor.ts +0 -599
package/dist/studio.css CHANGED
@@ -6516,3 +6516,1336 @@
6516
6516
  .monaco-component.multiDiffEditor .multiDiffEntry .editorContainer {
6517
6517
  flex: 1;
6518
6518
  }
6519
+
6520
+ /* ../../node_modules/tabulator-tables/dist/css/tabulator.min.css */
6521
+ .tabulator {
6522
+ overflow: hidden;
6523
+ position: relative;
6524
+ text-align: left;
6525
+ background-color: #888;
6526
+ border: 1px solid #999;
6527
+ font-size: 14px;
6528
+ transform: translateZ(0);
6529
+ }
6530
+
6531
+ .tabulator[tabulator-layout="fitDataFill"] .tabulator-tableholder .tabulator-table {
6532
+ min-width: 100%;
6533
+ }
6534
+
6535
+ .tabulator[tabulator-layout="fitDataTable"] {
6536
+ display: inline-block;
6537
+ }
6538
+
6539
+ .tabulator.tabulator-block-select, .tabulator.tabulator-ranges .tabulator-cell:not(.tabulator-editing) {
6540
+ user-select: none;
6541
+ }
6542
+
6543
+ .tabulator .tabulator-header {
6544
+ box-sizing: border-box;
6545
+ color: #555;
6546
+ outline: none;
6547
+ overflow: hidden;
6548
+ position: relative;
6549
+ -moz-user-select: none;
6550
+ -khtml-user-select: none;
6551
+ -webkit-user-select: none;
6552
+ -o-user-select: none;
6553
+ white-space: nowrap;
6554
+ background-color: #e6e6e6;
6555
+ border-bottom: 1px solid #999;
6556
+ width: 100%;
6557
+ font-weight: 700;
6558
+ }
6559
+
6560
+ .tabulator .tabulator-header.tabulator-header-hidden {
6561
+ display: none;
6562
+ }
6563
+
6564
+ .tabulator .tabulator-header .tabulator-header-contents {
6565
+ overflow: hidden;
6566
+ position: relative;
6567
+ }
6568
+
6569
+ .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
6570
+ display: inline-block;
6571
+ }
6572
+
6573
+ .tabulator .tabulator-header .tabulator-col {
6574
+ box-sizing: border-box;
6575
+ display: inline-flex;
6576
+ overflow: hidden;
6577
+ position: relative;
6578
+ text-align: left;
6579
+ vertical-align: bottom;
6580
+ background: #e6e6e6;
6581
+ border-right: 1px solid #aaa;
6582
+ flex-direction: column;
6583
+ justify-content: flex-start;
6584
+ }
6585
+
6586
+ .tabulator .tabulator-header .tabulator-col.tabulator-moving {
6587
+ pointer-events: none;
6588
+ position: absolute;
6589
+ background: #cdcdcd;
6590
+ border: 1px solid #999;
6591
+ }
6592
+
6593
+ .tabulator .tabulator-header .tabulator-col.tabulator-range-highlight {
6594
+ color: #000;
6595
+ background-color: #d6d6d6;
6596
+ }
6597
+
6598
+ .tabulator .tabulator-header .tabulator-col.tabulator-range-selected {
6599
+ color: #fff;
6600
+ background-color: #3876ca;
6601
+ }
6602
+
6603
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
6604
+ box-sizing: border-box;
6605
+ position: relative;
6606
+ padding: 4px;
6607
+ }
6608
+
6609
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button {
6610
+ padding: 0 8px;
6611
+ }
6612
+
6613
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button:hover {
6614
+ cursor: pointer;
6615
+ opacity: .6;
6616
+ }
6617
+
6618
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
6619
+ position: relative;
6620
+ }
6621
+
6622
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
6623
+ box-sizing: border-box;
6624
+ overflow: hidden;
6625
+ text-overflow: ellipsis;
6626
+ vertical-align: bottom;
6627
+ white-space: nowrap;
6628
+ width: 100%;
6629
+ }
6630
+
6631
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title.tabulator-col-title-wrap {
6632
+ text-overflow: clip;
6633
+ white-space: normal;
6634
+ }
6635
+
6636
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
6637
+ box-sizing: border-box;
6638
+ background: #fff;
6639
+ border: 1px solid #999;
6640
+ width: 100%;
6641
+ padding: 1px;
6642
+ }
6643
+
6644
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-header-popup-button + .tabulator-title-editor {
6645
+ width: calc(100% - 22px);
6646
+ }
6647
+
6648
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
6649
+ display: flex;
6650
+ position: absolute;
6651
+ align-items: center;
6652
+ top: 0;
6653
+ bottom: 0;
6654
+ right: 4px;
6655
+ }
6656
+
6657
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
6658
+ border-bottom: 6px solid #bbb;
6659
+ border-left: 6px solid #0000;
6660
+ border-right: 6px solid #0000;
6661
+ width: 0;
6662
+ height: 0;
6663
+ }
6664
+
6665
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
6666
+ display: flex;
6667
+ overflow: hidden;
6668
+ position: relative;
6669
+ border-top: 1px solid #aaa;
6670
+ margin-right: -1px;
6671
+ }
6672
+
6673
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
6674
+ box-sizing: border-box;
6675
+ position: relative;
6676
+ text-align: center;
6677
+ width: 100%;
6678
+ margin-top: 2px;
6679
+ }
6680
+
6681
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
6682
+ height: auto !important;
6683
+ }
6684
+
6685
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
6686
+ margin-top: 3px;
6687
+ }
6688
+
6689
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
6690
+ width: 0;
6691
+ height: 0;
6692
+ }
6693
+
6694
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
6695
+ padding-right: 25px;
6696
+ }
6697
+
6698
+ @media (hover: hover) and (pointer: fine) {
6699
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
6700
+ cursor: pointer;
6701
+ background-color: #cdcdcd;
6702
+ }
6703
+ }
6704
+
6705
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter {
6706
+ color: #bbb;
6707
+ }
6708
+
6709
+ @media (hover: hover) and (pointer: fine) {
6710
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
6711
+ cursor: pointer;
6712
+ border-bottom: 6px solid #555;
6713
+ }
6714
+ }
6715
+
6716
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
6717
+ border-top: none;
6718
+ border-bottom: 6px solid #bbb;
6719
+ }
6720
+
6721
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter {
6722
+ color: #666;
6723
+ }
6724
+
6725
+ @media (hover: hover) and (pointer: fine) {
6726
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
6727
+ cursor: pointer;
6728
+ border-bottom: 6px solid #555;
6729
+ }
6730
+ }
6731
+
6732
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
6733
+ border-top: none;
6734
+ border-bottom: 6px solid #666;
6735
+ }
6736
+
6737
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter {
6738
+ color: #666;
6739
+ }
6740
+
6741
+ @media (hover: hover) and (pointer: fine) {
6742
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
6743
+ cursor: pointer;
6744
+ border-top: 6px solid #555;
6745
+ }
6746
+ }
6747
+
6748
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
6749
+ color: #666;
6750
+ border-top: 6px solid #666;
6751
+ border-bottom: none;
6752
+ }
6753
+
6754
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
6755
+ display: flex;
6756
+ text-orientation: mixed;
6757
+ writing-mode: vertical-rl;
6758
+ justify-content: center;
6759
+ align-items: center;
6760
+ }
6761
+
6762
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
6763
+ transform: rotate(180deg);
6764
+ }
6765
+
6766
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
6767
+ padding-top: 20px;
6768
+ padding-right: 0;
6769
+ }
6770
+
6771
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
6772
+ padding-bottom: 20px;
6773
+ padding-right: 0;
6774
+ }
6775
+
6776
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-sorter {
6777
+ justify-content: center;
6778
+ inset: 4px 0 auto;
6779
+ }
6780
+
6781
+ .tabulator .tabulator-header .tabulator-frozen {
6782
+ position: sticky;
6783
+ z-index: 11;
6784
+ left: 0;
6785
+ }
6786
+
6787
+ .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
6788
+ border-right: 2px solid #aaa;
6789
+ }
6790
+
6791
+ .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
6792
+ border-left: 2px solid #aaa;
6793
+ }
6794
+
6795
+ .tabulator .tabulator-header .tabulator-calcs-holder {
6796
+ box-sizing: border-box;
6797
+ display: inline-block;
6798
+ border-top: 1px solid #aaa;
6799
+ border-bottom: 1px solid #aaa;
6800
+ background: #f3f3f3 !important;
6801
+ }
6802
+
6803
+ .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
6804
+ background: #f3f3f3 !important;
6805
+ }
6806
+
6807
+ .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
6808
+ display: none;
6809
+ }
6810
+
6811
+ .tabulator .tabulator-header .tabulator-frozen-rows-holder {
6812
+ display: inline-block;
6813
+ padding-top: 1em;
6814
+ }
6815
+
6816
+ .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
6817
+ display: none;
6818
+ }
6819
+
6820
+ .tabulator .tabulator-tableholder {
6821
+ -webkit-overflow-scrolling: touch;
6822
+ overflow: auto;
6823
+ position: relative;
6824
+ white-space: nowrap;
6825
+ width: 100%;
6826
+ }
6827
+
6828
+ .tabulator .tabulator-tableholder:focus {
6829
+ outline: none;
6830
+ }
6831
+
6832
+ .tabulator .tabulator-tableholder .tabulator-placeholder {
6833
+ box-sizing: border-box;
6834
+ display: flex;
6835
+ justify-content: center;
6836
+ align-items: center;
6837
+ width: 100%;
6838
+ min-width: 100%;
6839
+ }
6840
+
6841
+ .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode="virtual"] {
6842
+ min-height: 100%;
6843
+ }
6844
+
6845
+ .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {
6846
+ color: #ccc;
6847
+ display: inline-block;
6848
+ text-align: center;
6849
+ white-space: normal;
6850
+ padding: 10px;
6851
+ font-size: 20px;
6852
+ font-weight: 700;
6853
+ }
6854
+
6855
+ .tabulator .tabulator-tableholder .tabulator-table {
6856
+ color: #333;
6857
+ display: inline-block;
6858
+ overflow: visible;
6859
+ position: relative;
6860
+ white-space: nowrap;
6861
+ background-color: #fff;
6862
+ }
6863
+
6864
+ .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {
6865
+ font-weight: 700;
6866
+ background: #e2e2e2 !important;
6867
+ }
6868
+
6869
+ .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
6870
+ border-bottom: 2px solid #aaa;
6871
+ }
6872
+
6873
+ .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
6874
+ border-top: 2px solid #aaa;
6875
+ }
6876
+
6877
+ .tabulator .tabulator-tableholder .tabulator-range-overlay {
6878
+ pointer-events: none;
6879
+ position: absolute;
6880
+ z-index: 10;
6881
+ inset: 0;
6882
+ }
6883
+
6884
+ .tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range {
6885
+ box-sizing: border-box;
6886
+ position: absolute;
6887
+ border: 1px solid #2975dd;
6888
+ }
6889
+
6890
+ .tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range.tabulator-range-active:after {
6891
+ content: "";
6892
+ position: absolute;
6893
+ background-color: #2975dd;
6894
+ border-radius: 999px;
6895
+ width: 6px;
6896
+ height: 6px;
6897
+ bottom: -3px;
6898
+ right: -3px;
6899
+ }
6900
+
6901
+ .tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range-cell-active {
6902
+ box-sizing: border-box;
6903
+ position: absolute;
6904
+ border: 2px solid #2975dd;
6905
+ }
6906
+
6907
+ .tabulator .tabulator-footer {
6908
+ color: #555;
6909
+ user-select: none;
6910
+ -moz-user-select: none;
6911
+ -khtml-user-select: none;
6912
+ -webkit-user-select: none;
6913
+ -o-user-select: none;
6914
+ white-space: nowrap;
6915
+ background-color: #e6e6e6;
6916
+ border-top: 1px solid #999;
6917
+ font-weight: 700;
6918
+ }
6919
+
6920
+ .tabulator .tabulator-footer .tabulator-footer-contents {
6921
+ display: flex;
6922
+ flex-direction: row;
6923
+ justify-content: space-between;
6924
+ align-items: center;
6925
+ padding: 5px 10px;
6926
+ }
6927
+
6928
+ .tabulator .tabulator-footer .tabulator-footer-contents:empty {
6929
+ display: none;
6930
+ }
6931
+
6932
+ .tabulator .tabulator-footer .tabulator-spreadsheet-tabs {
6933
+ overflow-x: auto;
6934
+ margin-top: -5px;
6935
+ }
6936
+
6937
+ .tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab {
6938
+ display: inline-block;
6939
+ border: 1px solid #999;
6940
+ border-top: none;
6941
+ border-bottom-right-radius: 5px;
6942
+ border-bottom-left-radius: 5px;
6943
+ padding: 5px;
6944
+ font-size: .9em;
6945
+ }
6946
+
6947
+ .tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab:hover {
6948
+ cursor: pointer;
6949
+ opacity: .7;
6950
+ }
6951
+
6952
+ .tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab.tabulator-spreadsheet-tab-active {
6953
+ background: #fff;
6954
+ }
6955
+
6956
+ .tabulator .tabulator-footer .tabulator-calcs-holder {
6957
+ box-sizing: border-box;
6958
+ overflow: hidden;
6959
+ text-align: left;
6960
+ border-top: 1px solid #aaa;
6961
+ border-bottom: 1px solid #aaa;
6962
+ width: 100%;
6963
+ background: #f3f3f3 !important;
6964
+ }
6965
+
6966
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
6967
+ display: inline-block;
6968
+ background: #f3f3f3 !important;
6969
+ }
6970
+
6971
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
6972
+ display: none;
6973
+ }
6974
+
6975
+ .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
6976
+ border-bottom: none;
6977
+ margin-bottom: -5px;
6978
+ }
6979
+
6980
+ .tabulator .tabulator-footer > * + .tabulator-page-counter {
6981
+ margin-left: 10px;
6982
+ }
6983
+
6984
+ .tabulator .tabulator-footer .tabulator-page-counter {
6985
+ font-weight: 400;
6986
+ }
6987
+
6988
+ .tabulator .tabulator-footer .tabulator-paginator {
6989
+ color: #555;
6990
+ font-family: inherit;
6991
+ font-size: inherit;
6992
+ font-weight: inherit;
6993
+ text-align: right;
6994
+ flex: 1;
6995
+ }
6996
+
6997
+ .tabulator .tabulator-footer .tabulator-page-size {
6998
+ display: inline-block;
6999
+ border: 1px solid #aaa;
7000
+ border-radius: 3px;
7001
+ margin: 0 5px;
7002
+ padding: 2px 5px;
7003
+ }
7004
+
7005
+ .tabulator .tabulator-footer .tabulator-pages {
7006
+ margin: 0 7px;
7007
+ }
7008
+
7009
+ .tabulator .tabulator-footer .tabulator-page {
7010
+ display: inline-block;
7011
+ background: #fff3;
7012
+ border: 1px solid #aaa;
7013
+ border-radius: 3px;
7014
+ margin: 0 2px;
7015
+ padding: 2px 5px;
7016
+ }
7017
+
7018
+ .tabulator .tabulator-footer .tabulator-page.active {
7019
+ color: #d00;
7020
+ }
7021
+
7022
+ .tabulator .tabulator-footer .tabulator-page:disabled {
7023
+ opacity: .5;
7024
+ }
7025
+
7026
+ @media (hover: hover) and (pointer: fine) {
7027
+ .tabulator .tabulator-footer .tabulator-page:not(disabled):hover {
7028
+ color: #fff;
7029
+ cursor: pointer;
7030
+ background: #0003;
7031
+ }
7032
+ }
7033
+
7034
+ .tabulator .tabulator-col-resize-handle {
7035
+ display: inline-block;
7036
+ position: relative;
7037
+ vertical-align: middle;
7038
+ z-index: 11;
7039
+ width: 6px;
7040
+ margin-left: -3px;
7041
+ margin-right: -3px;
7042
+ }
7043
+
7044
+ @media (hover: hover) and (pointer: fine) {
7045
+ .tabulator .tabulator-col-resize-handle:hover {
7046
+ cursor: ew-resize;
7047
+ }
7048
+ }
7049
+
7050
+ .tabulator .tabulator-col-resize-handle:last-of-type {
7051
+ width: 3px;
7052
+ margin-right: 0;
7053
+ }
7054
+
7055
+ .tabulator .tabulator-col-resize-guide {
7056
+ opacity: .5;
7057
+ position: absolute;
7058
+ background-color: #999;
7059
+ width: 4px;
7060
+ height: 100%;
7061
+ margin-left: -.5px;
7062
+ top: 0;
7063
+ }
7064
+
7065
+ .tabulator .tabulator-row-resize-guide {
7066
+ opacity: .5;
7067
+ position: absolute;
7068
+ background-color: #999;
7069
+ width: 100%;
7070
+ height: 4px;
7071
+ margin-top: -.5px;
7072
+ left: 0;
7073
+ }
7074
+
7075
+ .tabulator .tabulator-alert {
7076
+ display: flex;
7077
+ position: absolute;
7078
+ text-align: center;
7079
+ z-index: 100;
7080
+ background: #0006;
7081
+ align-items: center;
7082
+ width: 100%;
7083
+ height: 100%;
7084
+ top: 0;
7085
+ left: 0;
7086
+ }
7087
+
7088
+ .tabulator .tabulator-alert .tabulator-alert-msg {
7089
+ display: inline-block;
7090
+ background: #fff;
7091
+ border-radius: 10px;
7092
+ margin: 0 auto;
7093
+ padding: 10px 20px;
7094
+ font-size: 16px;
7095
+ font-weight: 700;
7096
+ }
7097
+
7098
+ .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {
7099
+ color: #000;
7100
+ border: 4px solid #333;
7101
+ }
7102
+
7103
+ .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {
7104
+ color: #590000;
7105
+ border: 4px solid #d00;
7106
+ }
7107
+
7108
+ .tabulator-row {
7109
+ box-sizing: border-box;
7110
+ position: relative;
7111
+ background-color: #fff;
7112
+ min-height: 22px;
7113
+ }
7114
+
7115
+ .tabulator-row.tabulator-row-even {
7116
+ background-color: #efefef;
7117
+ }
7118
+
7119
+ @media (hover: hover) and (pointer: fine) {
7120
+ .tabulator-row.tabulator-selectable:hover {
7121
+ cursor: pointer;
7122
+ background-color: #bbb;
7123
+ }
7124
+ }
7125
+
7126
+ .tabulator-row.tabulator-selected {
7127
+ background-color: #9abcea;
7128
+ }
7129
+
7130
+ @media (hover: hover) and (pointer: fine) {
7131
+ .tabulator-row.tabulator-selected:hover {
7132
+ cursor: pointer;
7133
+ background-color: #769bcc;
7134
+ }
7135
+ }
7136
+
7137
+ .tabulator-row.tabulator-row-moving {
7138
+ background: #fff;
7139
+ border: 1px solid #000;
7140
+ }
7141
+
7142
+ .tabulator-row.tabulator-moving {
7143
+ pointer-events: none;
7144
+ position: absolute;
7145
+ z-index: 15;
7146
+ border-top: 1px solid #aaa;
7147
+ border-bottom: 1px solid #aaa;
7148
+ }
7149
+
7150
+ .tabulator-row.tabulator-range-highlight .tabulator-cell.tabulator-range-row-header {
7151
+ color: #000;
7152
+ background-color: #d6d6d6;
7153
+ }
7154
+
7155
+ .tabulator-row.tabulator-range-highlight.tabulator-range-selected .tabulator-cell.tabulator-range-row-header, .tabulator-row.tabulator-range-selected .tabulator-cell.tabulator-range-row-header {
7156
+ color: #fff;
7157
+ background-color: #3876ca;
7158
+ }
7159
+
7160
+ .tabulator-row .tabulator-row-resize-handle {
7161
+ position: absolute;
7162
+ height: 5px;
7163
+ bottom: 0;
7164
+ left: 0;
7165
+ right: 0;
7166
+ }
7167
+
7168
+ .tabulator-row .tabulator-row-resize-handle.prev {
7169
+ top: 0;
7170
+ bottom: auto;
7171
+ }
7172
+
7173
+ @media (hover: hover) and (pointer: fine) {
7174
+ .tabulator-row .tabulator-row-resize-handle:hover {
7175
+ cursor: ns-resize;
7176
+ }
7177
+ }
7178
+
7179
+ .tabulator-row .tabulator-responsive-collapse {
7180
+ box-sizing: border-box;
7181
+ border-top: 1px solid #aaa;
7182
+ border-bottom: 1px solid #aaa;
7183
+ padding: 5px;
7184
+ }
7185
+
7186
+ .tabulator-row .tabulator-responsive-collapse:empty {
7187
+ display: none;
7188
+ }
7189
+
7190
+ .tabulator-row .tabulator-responsive-collapse table {
7191
+ font-size: 14px;
7192
+ }
7193
+
7194
+ .tabulator-row .tabulator-responsive-collapse table tr td {
7195
+ position: relative;
7196
+ }
7197
+
7198
+ .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
7199
+ padding-right: 10px;
7200
+ }
7201
+
7202
+ .tabulator-row .tabulator-cell {
7203
+ box-sizing: border-box;
7204
+ display: inline-block;
7205
+ outline: none;
7206
+ overflow: hidden;
7207
+ position: relative;
7208
+ text-overflow: ellipsis;
7209
+ vertical-align: middle;
7210
+ white-space: nowrap;
7211
+ border-right: 1px solid #aaa;
7212
+ padding: 4px;
7213
+ }
7214
+
7215
+ .tabulator-row .tabulator-cell .tabulator-tick {
7216
+ fill: #2dc214;
7217
+ }
7218
+
7219
+ .tabulator-row .tabulator-cell .tabulator-cross {
7220
+ fill: #ce1515;
7221
+ }
7222
+
7223
+ .tabulator-row .tabulator-cell.tabulator-row-header {
7224
+ background: #e6e6e6;
7225
+ border-bottom: 1px solid #aaa;
7226
+ border-right: 1px solid #999;
7227
+ }
7228
+
7229
+ .tabulator-row .tabulator-cell.tabulator-frozen {
7230
+ background-color: inherit;
7231
+ display: inline-block;
7232
+ position: sticky;
7233
+ z-index: 11;
7234
+ left: 0;
7235
+ }
7236
+
7237
+ .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
7238
+ border-right: 2px solid #aaa;
7239
+ }
7240
+
7241
+ .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
7242
+ border-left: 2px solid #aaa;
7243
+ }
7244
+
7245
+ .tabulator-row .tabulator-cell.tabulator-editing {
7246
+ outline: none;
7247
+ border: 1px solid #1d68cd;
7248
+ padding: 0;
7249
+ }
7250
+
7251
+ .tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
7252
+ outline: none;
7253
+ background: none;
7254
+ border: 1px;
7255
+ }
7256
+
7257
+ .tabulator-row .tabulator-cell.tabulator-validation-fail {
7258
+ border: 1px solid #d00;
7259
+ }
7260
+
7261
+ .tabulator-row .tabulator-cell.tabulator-validation-fail input, .tabulator-row .tabulator-cell.tabulator-validation-fail select {
7262
+ color: #d00;
7263
+ background: none;
7264
+ border: 1px;
7265
+ }
7266
+
7267
+ .tabulator-row .tabulator-cell.tabulator-row-handle {
7268
+ display: inline-flex;
7269
+ -moz-user-select: none;
7270
+ -khtml-user-select: none;
7271
+ -webkit-user-select: none;
7272
+ -o-user-select: none;
7273
+ justify-content: center;
7274
+ align-items: center;
7275
+ }
7276
+
7277
+ .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
7278
+ width: 80%;
7279
+ }
7280
+
7281
+ .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
7282
+ background: #666;
7283
+ width: 100%;
7284
+ height: 3px;
7285
+ margin-top: 2px;
7286
+ }
7287
+
7288
+ .tabulator-row .tabulator-cell.tabulator-range-selected:not(.tabulator-range-only-cell-selected):not(.tabulator-range-row-header) {
7289
+ background-color: #9abcea;
7290
+ }
7291
+
7292
+ .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {
7293
+ display: inline-block;
7294
+ width: 7px;
7295
+ }
7296
+
7297
+ .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
7298
+ display: inline-block;
7299
+ vertical-align: middle;
7300
+ border-bottom: 2px solid #aaa;
7301
+ border-left: 2px solid #aaa;
7302
+ border-bottom-left-radius: 1px;
7303
+ width: 7px;
7304
+ height: 9px;
7305
+ margin-top: -9px;
7306
+ margin-right: 5px;
7307
+ }
7308
+
7309
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control {
7310
+ display: inline-flex;
7311
+ overflow: hidden;
7312
+ vertical-align: middle;
7313
+ background: #0000001a;
7314
+ border: 1px solid #333;
7315
+ border-radius: 2px;
7316
+ justify-content: center;
7317
+ align-items: center;
7318
+ width: 11px;
7319
+ height: 11px;
7320
+ margin-right: 5px;
7321
+ }
7322
+
7323
+ @media (hover: hover) and (pointer: fine) {
7324
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
7325
+ cursor: pointer;
7326
+ background: #0003;
7327
+ }
7328
+ }
7329
+
7330
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
7331
+ display: inline-block;
7332
+ position: relative;
7333
+ background: none;
7334
+ width: 1px;
7335
+ height: 7px;
7336
+ }
7337
+
7338
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
7339
+ content: "";
7340
+ position: absolute;
7341
+ background: #333;
7342
+ width: 7px;
7343
+ height: 1px;
7344
+ top: 3px;
7345
+ left: -3px;
7346
+ }
7347
+
7348
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
7349
+ display: inline-block;
7350
+ position: relative;
7351
+ background: #333;
7352
+ width: 1px;
7353
+ height: 7px;
7354
+ }
7355
+
7356
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
7357
+ content: "";
7358
+ position: absolute;
7359
+ background: #333;
7360
+ width: 7px;
7361
+ height: 1px;
7362
+ top: 3px;
7363
+ left: -3px;
7364
+ }
7365
+
7366
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
7367
+ color: #fff;
7368
+ display: inline-flex;
7369
+ -moz-user-select: none;
7370
+ -khtml-user-select: none;
7371
+ -webkit-user-select: none;
7372
+ -o-user-select: none;
7373
+ background: #666;
7374
+ border-radius: 20px;
7375
+ justify-content: center;
7376
+ align-items: center;
7377
+ width: 15px;
7378
+ height: 15px;
7379
+ font-size: 1.1em;
7380
+ font-weight: 700;
7381
+ }
7382
+
7383
+ @media (hover: hover) and (pointer: fine) {
7384
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
7385
+ cursor: pointer;
7386
+ opacity: .7;
7387
+ }
7388
+ }
7389
+
7390
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
7391
+ display: initial;
7392
+ }
7393
+
7394
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
7395
+ display: none;
7396
+ }
7397
+
7398
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {
7399
+ stroke: #fff;
7400
+ }
7401
+
7402
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
7403
+ display: none;
7404
+ }
7405
+
7406
+ .tabulator-row .tabulator-cell .tabulator-traffic-light {
7407
+ display: inline-block;
7408
+ border-radius: 14px;
7409
+ width: 14px;
7410
+ height: 14px;
7411
+ }
7412
+
7413
+ .tabulator-row.tabulator-group {
7414
+ box-sizing: border-box;
7415
+ background: #ccc;
7416
+ border-top: 1px solid #999;
7417
+ border-bottom: 1px solid #999;
7418
+ border-right: 1px solid #aaa;
7419
+ min-width: 100%;
7420
+ padding: 5px 5px 5px 10px;
7421
+ font-weight: 700;
7422
+ }
7423
+
7424
+ @media (hover: hover) and (pointer: fine) {
7425
+ .tabulator-row.tabulator-group:hover {
7426
+ cursor: pointer;
7427
+ background-color: #0000001a;
7428
+ }
7429
+ }
7430
+
7431
+ .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
7432
+ border: 6px solid #0000;
7433
+ border-top-color: #666;
7434
+ border-bottom: 0;
7435
+ margin-right: 10px;
7436
+ }
7437
+
7438
+ .tabulator-row.tabulator-group.tabulator-group-level-1 {
7439
+ padding-left: 30px;
7440
+ }
7441
+
7442
+ .tabulator-row.tabulator-group.tabulator-group-level-2 {
7443
+ padding-left: 50px;
7444
+ }
7445
+
7446
+ .tabulator-row.tabulator-group.tabulator-group-level-3 {
7447
+ padding-left: 70px;
7448
+ }
7449
+
7450
+ .tabulator-row.tabulator-group.tabulator-group-level-4 {
7451
+ padding-left: 90px;
7452
+ }
7453
+
7454
+ .tabulator-row.tabulator-group.tabulator-group-level-5 {
7455
+ padding-left: 110px;
7456
+ }
7457
+
7458
+ .tabulator-row.tabulator-group .tabulator-group-toggle {
7459
+ display: inline-block;
7460
+ }
7461
+
7462
+ .tabulator-row.tabulator-group .tabulator-arrow {
7463
+ display: inline-block;
7464
+ vertical-align: middle;
7465
+ border: 6px solid #0000;
7466
+ border-left-color: #666;
7467
+ border-right: 0;
7468
+ width: 0;
7469
+ height: 0;
7470
+ margin-right: 16px;
7471
+ }
7472
+
7473
+ .tabulator-row.tabulator-group span {
7474
+ color: #d00;
7475
+ margin-left: 10px;
7476
+ }
7477
+
7478
+ .tabulator-toggle {
7479
+ box-sizing: border-box;
7480
+ display: flex;
7481
+ background: #dcdcdc;
7482
+ border: 1px solid #ccc;
7483
+ flex-direction: row;
7484
+ }
7485
+
7486
+ .tabulator-toggle.tabulator-toggle-on {
7487
+ background: #1c6cc2;
7488
+ }
7489
+
7490
+ .tabulator-toggle .tabulator-toggle-switch {
7491
+ box-sizing: border-box;
7492
+ background: #fff;
7493
+ border: 1px solid #ccc;
7494
+ }
7495
+
7496
+ .tabulator-popup-container {
7497
+ -webkit-overflow-scrolling: touch;
7498
+ box-sizing: border-box;
7499
+ display: inline-block;
7500
+ overflow-y: auto;
7501
+ position: absolute;
7502
+ z-index: 10000;
7503
+ background: #fff;
7504
+ border: 1px solid #aaa;
7505
+ font-size: 14px;
7506
+ box-shadow: 0 0 5px #0003;
7507
+ }
7508
+
7509
+ .tabulator-popup {
7510
+ border-radius: 3px;
7511
+ padding: 5px;
7512
+ }
7513
+
7514
+ .tabulator-tooltip {
7515
+ box-shadow: none;
7516
+ pointer-events: none;
7517
+ border-radius: 2px;
7518
+ max-width: min(500px, 100%);
7519
+ padding: 3px 5px;
7520
+ font-size: 12px;
7521
+ }
7522
+
7523
+ .tabulator-menu .tabulator-menu-item {
7524
+ box-sizing: border-box;
7525
+ position: relative;
7526
+ user-select: none;
7527
+ padding: 5px 10px;
7528
+ }
7529
+
7530
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
7531
+ opacity: .5;
7532
+ }
7533
+
7534
+ @media (hover: hover) and (pointer: fine) {
7535
+ .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
7536
+ cursor: pointer;
7537
+ background: #efefef;
7538
+ }
7539
+ }
7540
+
7541
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {
7542
+ padding-right: 25px;
7543
+ }
7544
+
7545
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu:after {
7546
+ content: "";
7547
+ display: inline-block;
7548
+ position: absolute;
7549
+ vertical-align: top;
7550
+ border: 1px solid #aaa;
7551
+ border-width: 1px 1px 0 0;
7552
+ width: 7px;
7553
+ height: 7px;
7554
+ top: calc(5px + .4em);
7555
+ right: 10px;
7556
+ transform: rotate(45deg);
7557
+ }
7558
+
7559
+ .tabulator-menu .tabulator-menu-separator {
7560
+ border-top: 1px solid #aaa;
7561
+ }
7562
+
7563
+ .tabulator-edit-list {
7564
+ -webkit-overflow-scrolling: touch;
7565
+ overflow-y: auto;
7566
+ max-height: 200px;
7567
+ font-size: 14px;
7568
+ }
7569
+
7570
+ .tabulator-edit-list .tabulator-edit-list-item {
7571
+ color: #333;
7572
+ outline: none;
7573
+ padding: 4px;
7574
+ }
7575
+
7576
+ .tabulator-edit-list .tabulator-edit-list-item.active {
7577
+ color: #fff;
7578
+ background: #1d68cd;
7579
+ }
7580
+
7581
+ .tabulator-edit-list .tabulator-edit-list-item.active.focused {
7582
+ outline: 1px solid #ffffff80;
7583
+ }
7584
+
7585
+ .tabulator-edit-list .tabulator-edit-list-item.focused {
7586
+ outline: 1px solid #1d68cd;
7587
+ }
7588
+
7589
+ @media (hover: hover) and (pointer: fine) {
7590
+ .tabulator-edit-list .tabulator-edit-list-item:hover {
7591
+ color: #fff;
7592
+ cursor: pointer;
7593
+ background: #1d68cd;
7594
+ }
7595
+ }
7596
+
7597
+ .tabulator-edit-list .tabulator-edit-list-placeholder {
7598
+ color: #333;
7599
+ text-align: center;
7600
+ padding: 4px;
7601
+ }
7602
+
7603
+ .tabulator-edit-list .tabulator-edit-list-group {
7604
+ color: #333;
7605
+ border-bottom: 1px solid #aaa;
7606
+ padding: 6px 4px 4px;
7607
+ font-weight: 700;
7608
+ }
7609
+
7610
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2, .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2 {
7611
+ padding-left: 12px;
7612
+ }
7613
+
7614
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3, .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3 {
7615
+ padding-left: 20px;
7616
+ }
7617
+
7618
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4, .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4 {
7619
+ padding-left: 28px;
7620
+ }
7621
+
7622
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5, .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5 {
7623
+ padding-left: 36px;
7624
+ }
7625
+
7626
+ .tabulator.tabulator-ltr {
7627
+ direction: ltr;
7628
+ }
7629
+
7630
+ .tabulator.tabulator-rtl {
7631
+ direction: rtl;
7632
+ text-align: initial;
7633
+ }
7634
+
7635
+ .tabulator.tabulator-rtl .tabulator-header .tabulator-col {
7636
+ border-left: 1px solid #aaa;
7637
+ border-right: initial;
7638
+ text-align: initial;
7639
+ }
7640
+
7641
+ .tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
7642
+ margin-left: -1px;
7643
+ margin-right: 0;
7644
+ }
7645
+
7646
+ .tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
7647
+ padding-left: 25px;
7648
+ padding-right: 0;
7649
+ }
7650
+
7651
+ .tabulator.tabulator-rtl .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
7652
+ left: 8px;
7653
+ right: auto;
7654
+ }
7655
+
7656
+ .tabulator.tabulator-rtl .tabulator-tableholder .tabulator-range-overlay .tabulator-range.tabulator-range-active:after {
7657
+ content: "";
7658
+ position: absolute;
7659
+ background-color: #2975dd;
7660
+ border-radius: 999px;
7661
+ width: 6px;
7662
+ height: 6px;
7663
+ bottom: -3px;
7664
+ left: -3px;
7665
+ right: auto;
7666
+ }
7667
+
7668
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {
7669
+ border-left: 1px solid #aaa;
7670
+ border-right: initial;
7671
+ }
7672
+
7673
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
7674
+ border-left: initial;
7675
+ border-right: 2px solid #aaa;
7676
+ border-bottom-right-radius: 1px;
7677
+ border-bottom-left-radius: 0;
7678
+ margin-left: 5px;
7679
+ margin-right: 0;
7680
+ }
7681
+
7682
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {
7683
+ margin-left: 5px;
7684
+ margin-right: 0;
7685
+ }
7686
+
7687
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
7688
+ border-left: 2px solid #aaa;
7689
+ }
7690
+
7691
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
7692
+ border-right: 2px solid #aaa;
7693
+ }
7694
+
7695
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {
7696
+ width: 3px;
7697
+ margin-left: 0;
7698
+ margin-right: -3px;
7699
+ }
7700
+
7701
+ .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {
7702
+ text-align: initial;
7703
+ }
7704
+
7705
+ .tabulator-print-fullscreen {
7706
+ position: absolute;
7707
+ z-index: 10000;
7708
+ inset: 0;
7709
+ }
7710
+
7711
+ body.tabulator-print-fullscreen-hide > :not(.tabulator-print-fullscreen) {
7712
+ display: none !important;
7713
+ }
7714
+
7715
+ .tabulator-print-table {
7716
+ border-collapse: collapse;
7717
+ }
7718
+
7719
+ .tabulator-print-table .tabulator-data-tree-branch {
7720
+ display: inline-block;
7721
+ vertical-align: middle;
7722
+ border-bottom: 2px solid #aaa;
7723
+ border-left: 2px solid #aaa;
7724
+ border-bottom-left-radius: 1px;
7725
+ width: 7px;
7726
+ height: 9px;
7727
+ margin-top: -9px;
7728
+ margin-right: 5px;
7729
+ }
7730
+
7731
+ .tabulator-print-table .tabulator-print-table-group {
7732
+ box-sizing: border-box;
7733
+ background: #ccc;
7734
+ border-top: 1px solid #999;
7735
+ border-bottom: 1px solid #999;
7736
+ border-right: 1px solid #aaa;
7737
+ min-width: 100%;
7738
+ padding: 5px 5px 5px 10px;
7739
+ font-weight: 700;
7740
+ }
7741
+
7742
+ @media (hover: hover) and (pointer: fine) {
7743
+ .tabulator-print-table .tabulator-print-table-group:hover {
7744
+ cursor: pointer;
7745
+ background-color: #0000001a;
7746
+ }
7747
+ }
7748
+
7749
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {
7750
+ border: 6px solid #0000;
7751
+ border-top-color: #666;
7752
+ border-bottom: 0;
7753
+ margin-right: 10px;
7754
+ }
7755
+
7756
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {
7757
+ padding-left: 30px !important;
7758
+ }
7759
+
7760
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {
7761
+ padding-left: 50px !important;
7762
+ }
7763
+
7764
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {
7765
+ padding-left: 70px !important;
7766
+ }
7767
+
7768
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {
7769
+ padding-left: 90px !important;
7770
+ }
7771
+
7772
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {
7773
+ padding-left: 110px !important;
7774
+ }
7775
+
7776
+ .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {
7777
+ display: inline-block;
7778
+ }
7779
+
7780
+ .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {
7781
+ display: inline-block;
7782
+ vertical-align: middle;
7783
+ border: 6px solid #0000;
7784
+ border-left-color: #666;
7785
+ border-right: 0;
7786
+ width: 0;
7787
+ height: 0;
7788
+ margin-right: 16px;
7789
+ }
7790
+
7791
+ .tabulator-print-table .tabulator-print-table-group span {
7792
+ color: #d00;
7793
+ margin-left: 10px;
7794
+ }
7795
+
7796
+ .tabulator-print-table .tabulator-data-tree-control {
7797
+ display: inline-flex;
7798
+ overflow: hidden;
7799
+ vertical-align: middle;
7800
+ background: #0000001a;
7801
+ border: 1px solid #333;
7802
+ border-radius: 2px;
7803
+ justify-content: center;
7804
+ align-items: center;
7805
+ width: 11px;
7806
+ height: 11px;
7807
+ margin-right: 5px;
7808
+ }
7809
+
7810
+ @media (hover: hover) and (pointer: fine) {
7811
+ .tabulator-print-table .tabulator-data-tree-control:hover {
7812
+ cursor: pointer;
7813
+ background: #0003;
7814
+ }
7815
+ }
7816
+
7817
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
7818
+ display: inline-block;
7819
+ position: relative;
7820
+ background: none;
7821
+ width: 1px;
7822
+ height: 7px;
7823
+ }
7824
+
7825
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
7826
+ content: "";
7827
+ position: absolute;
7828
+ background: #333;
7829
+ width: 7px;
7830
+ height: 1px;
7831
+ top: 3px;
7832
+ left: -3px;
7833
+ }
7834
+
7835
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
7836
+ display: inline-block;
7837
+ position: relative;
7838
+ background: #333;
7839
+ width: 1px;
7840
+ height: 7px;
7841
+ }
7842
+
7843
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
7844
+ content: "";
7845
+ position: absolute;
7846
+ background: #333;
7847
+ width: 7px;
7848
+ height: 1px;
7849
+ top: 3px;
7850
+ left: -3px;
7851
+ }