@limetech/lime-elements 35.0.0-next.3 → 35.0.0-next.32

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 (243) hide show
  1. package/dist/cjs/checkbox.template-7e3fd86a.js +43 -0
  2. package/dist/cjs/{component-f7ef9087.js → component-66df95e7.js} +190 -132
  3. package/dist/cjs/{component-f532119f.js → component-67144c1c.js} +47 -3
  4. package/dist/cjs/{component-ed21410d.js → component-ae3bfacf.js} +367 -235
  5. package/dist/cjs/{component-2faaa141.js → component-cf490570.js} +213 -143
  6. package/dist/cjs/{component-10dbdd60.js → component-dd795ff0.js} +7 -5
  7. package/dist/cjs/{index-e63a89d7.js → index-43283636.js} +23 -0
  8. package/dist/cjs/lime-elements.cjs.js +3 -3
  9. package/dist/cjs/limel-badge.cjs.entry.js +3 -3
  10. package/dist/cjs/limel-banner.cjs.entry.js +1 -1
  11. package/dist/cjs/limel-button-group.cjs.entry.js +2 -2
  12. package/dist/cjs/limel-button.cjs.entry.js +2 -2
  13. package/dist/cjs/limel-checkbox.cjs.entry.js +135 -89
  14. package/dist/cjs/limel-chip-set.cjs.entry.js +234 -190
  15. package/dist/cjs/limel-circular-progress.cjs.entry.js +2 -2
  16. package/dist/cjs/limel-code-editor.cjs.entry.js +49 -22
  17. package/dist/cjs/limel-collapsible-section.cjs.entry.js +1 -1
  18. package/dist/cjs/limel-color-picker-palette_2.cjs.entry.js +1 -1
  19. package/dist/cjs/limel-color-picker.cjs.entry.js +1 -1
  20. package/dist/cjs/limel-config.cjs.entry.js +1 -1
  21. package/dist/cjs/limel-date-picker.cjs.entry.js +5 -5
  22. package/dist/cjs/limel-dialog.cjs.entry.js +8 -9
  23. package/dist/cjs/limel-file.cjs.entry.js +5 -5
  24. package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +972 -648
  25. package/dist/cjs/limel-flex-container.cjs.entry.js +5 -1
  26. package/dist/cjs/limel-form.cjs.entry.js +382 -355
  27. package/dist/cjs/limel-grid.cjs.entry.js +1 -1
  28. package/dist/cjs/limel-header.cjs.entry.js +1 -1
  29. package/dist/cjs/limel-icon-button.cjs.entry.js +5 -5
  30. package/dist/cjs/limel-icon.cjs.entry.js +1 -1
  31. package/dist/cjs/limel-input-field.cjs.entry.js +9 -8
  32. package/dist/cjs/limel-linear-progress.cjs.entry.js +3 -3
  33. package/dist/cjs/limel-list_3.cjs.entry.js +147 -88
  34. package/dist/cjs/limel-menu-list.cjs.entry.js +86 -73
  35. package/dist/cjs/limel-menu.cjs.entry.js +1 -1
  36. package/dist/cjs/limel-picker.cjs.entry.js +3 -6
  37. package/dist/cjs/limel-popover-surface.cjs.entry.js +2 -2
  38. package/dist/cjs/limel-progress-flow-item.cjs.entry.js +1 -1
  39. package/dist/cjs/limel-progress-flow.cjs.entry.js +1 -1
  40. package/dist/cjs/limel-select.cjs.entry.js +5 -5
  41. package/dist/cjs/limel-slider.cjs.entry.js +33 -6
  42. package/dist/cjs/limel-snackbar.cjs.entry.js +78 -72
  43. package/dist/cjs/limel-spinner.cjs.entry.js +1 -1
  44. package/dist/cjs/limel-switch.cjs.entry.js +497 -201
  45. package/dist/cjs/limel-tab-bar.cjs.entry.js +262 -185
  46. package/dist/cjs/limel-tab-panel.cjs.entry.js +1 -1
  47. package/dist/cjs/limel-table.cjs.entry.js +375 -12
  48. package/dist/cjs/limel-tooltip_2.cjs.entry.js +1 -1
  49. package/dist/cjs/loader.cjs.js +3 -3
  50. package/dist/collection/collection-manifest.json +2 -2
  51. package/dist/collection/components/badge/badge.css +9 -15
  52. package/dist/collection/components/badge/badge.js +2 -2
  53. package/dist/collection/components/button/button.css +333 -145
  54. package/dist/collection/components/button-group/button-group.css +30 -5
  55. package/dist/collection/components/checkbox/checkbox.css +70 -17
  56. package/dist/collection/components/checkbox/checkbox.js +5 -4
  57. package/dist/collection/components/checkbox/checkbox.template.js +24 -20
  58. package/dist/collection/components/chip-set/chip-set.css +367 -34
  59. package/dist/collection/components/circular-progress/circular-progress.css +2 -2
  60. package/dist/collection/components/code-editor/code-editor.css +8 -13
  61. package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +1 -1
  62. package/dist/collection/components/dialog/dialog.css +153 -109
  63. package/dist/collection/components/dialog/dialog.js +7 -0
  64. package/dist/collection/components/flex-container/flex-container.js +10 -0
  65. package/dist/collection/components/form/form.css +5 -1
  66. package/dist/collection/components/form/form.js +34 -0
  67. package/dist/collection/components/form/templates/common.js +4 -1
  68. package/dist/collection/components/icon-button/icon-button.css +116 -59
  69. package/dist/collection/components/icon-button/icon-button.js +1 -0
  70. package/dist/collection/components/input-field/input-field.css +344 -29
  71. package/dist/collection/components/input-field/input-field.js +3 -2
  72. package/dist/collection/components/linear-progress/linear-progress.css +14 -2
  73. package/dist/collection/components/list/list-renderer.js +1 -4
  74. package/dist/collection/components/list/list.css +937 -90
  75. package/dist/collection/components/list/list.js +13 -6
  76. package/dist/collection/components/menu-list/menu-list-renderer.js +1 -4
  77. package/dist/collection/components/menu-list/menu-list.css +937 -90
  78. package/dist/collection/components/menu-surface/menu-surface.css +31 -7
  79. package/dist/collection/components/picker/picker.js +4 -6
  80. package/dist/collection/components/popover-surface/popover-surface.css +1 -0
  81. package/dist/collection/components/select/select.css +424 -17
  82. package/dist/collection/components/select/select.template.js +1 -1
  83. package/dist/collection/components/slider/slider.css +49 -2
  84. package/dist/collection/components/snackbar/snackbar.css +588 -301
  85. package/dist/collection/components/switch/switch.css +592 -222
  86. package/dist/collection/components/switch/switch.js +18 -12
  87. package/dist/collection/components/tab-bar/tab-bar.css +77 -48
  88. package/dist/collection/components/table/columns.js +1 -1
  89. package/dist/collection/components/table/selection.js +111 -0
  90. package/dist/collection/components/table/table-selection.js +125 -0
  91. package/dist/collection/components/table/table.css +275 -141
  92. package/dist/collection/components/table/table.js +231 -13
  93. package/dist/collection/style/functions.scss +3 -1
  94. package/dist/collection/style/internal/lime-theme.scss +30 -31
  95. package/dist/collection/style/internal/lime-typography.scss +55 -56
  96. package/dist/collection/style/internal/z-index.scss +2 -1
  97. package/dist/esm/checkbox.template-e68ade4d.js +41 -0
  98. package/dist/esm/{component-89e0ce26.js → component-19eb6e2b.js} +7 -5
  99. package/dist/esm/{component-2630c3d7.js → component-288691f3.js} +367 -235
  100. package/dist/esm/{component-d682c974.js → component-410aad5a.js} +44 -4
  101. package/dist/esm/{component-429e92ee.js → component-5b4ac85a.js} +213 -143
  102. package/dist/esm/{component-2eb4e07b.js → component-fffa3419.js} +191 -133
  103. package/dist/esm/{index-2316f345.js → index-4456d4ad.js} +23 -0
  104. package/dist/esm/lime-elements.js +3 -3
  105. package/dist/esm/limel-badge.entry.js +3 -3
  106. package/dist/esm/limel-banner.entry.js +1 -1
  107. package/dist/esm/limel-button-group.entry.js +2 -2
  108. package/dist/esm/limel-button.entry.js +2 -2
  109. package/dist/esm/limel-checkbox.entry.js +136 -90
  110. package/dist/esm/limel-chip-set.entry.js +234 -190
  111. package/dist/esm/limel-circular-progress.entry.js +2 -2
  112. package/dist/esm/limel-code-editor.entry.js +49 -22
  113. package/dist/esm/limel-collapsible-section.entry.js +1 -1
  114. package/dist/esm/limel-color-picker-palette_2.entry.js +1 -1
  115. package/dist/esm/limel-color-picker.entry.js +1 -1
  116. package/dist/esm/limel-config.entry.js +1 -1
  117. package/dist/esm/limel-date-picker.entry.js +5 -5
  118. package/dist/esm/limel-dialog.entry.js +8 -9
  119. package/dist/esm/limel-file.entry.js +5 -5
  120. package/dist/esm/limel-flatpickr-adapter.entry.js +972 -648
  121. package/dist/esm/limel-flex-container.entry.js +5 -1
  122. package/dist/esm/limel-form.entry.js +383 -356
  123. package/dist/esm/limel-grid.entry.js +1 -1
  124. package/dist/esm/limel-header.entry.js +1 -1
  125. package/dist/esm/limel-icon-button.entry.js +5 -5
  126. package/dist/esm/limel-icon.entry.js +1 -1
  127. package/dist/esm/limel-input-field.entry.js +9 -8
  128. package/dist/esm/limel-linear-progress.entry.js +4 -4
  129. package/dist/esm/limel-list_3.entry.js +148 -89
  130. package/dist/esm/limel-menu-list.entry.js +87 -74
  131. package/dist/esm/limel-menu.entry.js +1 -1
  132. package/dist/esm/limel-picker.entry.js +3 -6
  133. package/dist/esm/limel-popover-surface.entry.js +2 -2
  134. package/dist/esm/limel-progress-flow-item.entry.js +1 -1
  135. package/dist/esm/limel-progress-flow.entry.js +1 -1
  136. package/dist/esm/limel-select.entry.js +5 -5
  137. package/dist/esm/limel-slider.entry.js +34 -7
  138. package/dist/esm/limel-snackbar.entry.js +78 -72
  139. package/dist/esm/limel-spinner.entry.js +1 -1
  140. package/dist/esm/limel-switch.entry.js +497 -201
  141. package/dist/esm/limel-tab-bar.entry.js +262 -185
  142. package/dist/esm/limel-tab-panel.entry.js +1 -1
  143. package/dist/esm/limel-table.entry.js +375 -12
  144. package/dist/esm/limel-tooltip_2.entry.js +1 -1
  145. package/dist/esm/loader.js +3 -3
  146. package/dist/esm/polyfills/css-shim.js +1 -1
  147. package/dist/esm/{util-71a23335.js → util-f1bde91c.js} +1 -1
  148. package/dist/lime-elements/lime-elements.esm.js +1 -1
  149. package/dist/lime-elements/{p-a4c532a7.entry.js → p-00d485d8.entry.js} +1 -1
  150. package/dist/lime-elements/p-062a9599.entry.js +131 -0
  151. package/dist/lime-elements/p-0c5655e2.js +1 -0
  152. package/dist/lime-elements/{p-597cbe05.entry.js → p-0ea1cbf6.entry.js} +1 -1
  153. package/dist/lime-elements/p-1bacecd5.entry.js +73 -0
  154. package/dist/lime-elements/p-1c284626.js +73 -0
  155. package/dist/lime-elements/p-1fef7a86.entry.js +16 -0
  156. package/dist/lime-elements/{p-a2cf74c1.entry.js → p-255084bd.entry.js} +1 -1
  157. package/dist/lime-elements/{p-e881e98d.entry.js → p-2550ff27.entry.js} +1 -1
  158. package/dist/lime-elements/p-2a7c3c07.entry.js +1 -0
  159. package/dist/lime-elements/{p-31fecf5d.entry.js → p-3bef288b.entry.js} +1 -1
  160. package/dist/lime-elements/{p-58cbe99d.entry.js → p-3f440859.entry.js} +1 -1
  161. package/dist/lime-elements/{p-4b5af81b.entry.js → p-41ec08c9.entry.js} +1 -1
  162. package/dist/lime-elements/{p-92146da6.js → p-44f9b6d5.js} +0 -0
  163. package/dist/lime-elements/{p-1fb5340d.entry.js → p-45689f25.entry.js} +1 -1
  164. package/dist/lime-elements/p-47ef0ebb.entry.js +1 -0
  165. package/dist/lime-elements/{p-076bd4dc.js → p-48d4ef20.js} +3 -3
  166. package/dist/lime-elements/p-4e9869f4.entry.js +126 -0
  167. package/dist/lime-elements/{p-6003f817.entry.js → p-549190f6.entry.js} +1 -1
  168. package/dist/lime-elements/p-63516991.entry.js +1 -0
  169. package/dist/lime-elements/p-6fc9a0be.entry.js +59 -0
  170. package/dist/lime-elements/{p-64549ba6.entry.js → p-70a4d004.entry.js} +3 -3
  171. package/dist/lime-elements/p-7d4eb67f.entry.js +1 -0
  172. package/dist/lime-elements/p-87a8afd2.entry.js +16 -0
  173. package/dist/lime-elements/{p-714fde78.entry.js → p-897a7f8a.entry.js} +1 -1
  174. package/dist/lime-elements/{p-fc30b8e3.entry.js → p-8a5ca741.entry.js} +1 -1
  175. package/dist/lime-elements/{p-8a2c1038.entry.js → p-9607b6f9.entry.js} +2 -2
  176. package/dist/lime-elements/p-9caf28bd.entry.js +1 -0
  177. package/dist/lime-elements/{p-152a6d5f.js → p-9faad6eb.js} +1 -1
  178. package/dist/lime-elements/{p-34c7872e.entry.js → p-a35e6b8a.entry.js} +1 -1
  179. package/dist/lime-elements/{p-13f0e4f4.entry.js → p-ab88cc76.entry.js} +1 -1
  180. package/dist/lime-elements/{p-041ae00c.entry.js → p-b808ba3d.entry.js} +1 -1
  181. package/dist/lime-elements/p-bcaa25e1.entry.js +1 -0
  182. package/dist/lime-elements/p-be351178.entry.js +37 -0
  183. package/dist/lime-elements/p-c40f5030.entry.js +82 -0
  184. package/dist/lime-elements/p-c4e2eb42.entry.js +1 -0
  185. package/dist/lime-elements/{p-1876a96a.entry.js → p-c5168bda.entry.js} +1 -1
  186. package/dist/lime-elements/p-cbc43682.js +81 -0
  187. package/dist/lime-elements/{p-ace9affc.js → p-d0a7de87.js} +2 -2
  188. package/dist/lime-elements/{p-be56ffab.entry.js → p-d5f17adb.entry.js} +1 -1
  189. package/dist/lime-elements/p-d70f1c00.entry.js +59 -0
  190. package/dist/lime-elements/{p-8ad5e143.entry.js → p-dd62c71b.entry.js} +1 -1
  191. package/dist/lime-elements/p-dfba92de.js +126 -0
  192. package/dist/lime-elements/p-e320ba6a.entry.js +1 -0
  193. package/dist/lime-elements/p-e55144ec.entry.js +1 -0
  194. package/dist/lime-elements/p-e66816a4.entry.js +82 -0
  195. package/dist/lime-elements/{p-dfe0a58b.entry.js → p-e6f39a71.entry.js} +1 -1
  196. package/dist/lime-elements/p-f777d8a3.entry.js +82 -0
  197. package/dist/lime-elements/style/functions.scss +3 -1
  198. package/dist/lime-elements/style/internal/lime-theme.scss +30 -31
  199. package/dist/lime-elements/style/internal/lime-typography.scss +55 -56
  200. package/dist/lime-elements/style/internal/z-index.scss +2 -1
  201. package/dist/types/components/badge/badge.d.ts +1 -1
  202. package/dist/types/components/checkbox/checkbox.d.ts +3 -2
  203. package/dist/types/components/checkbox/checkbox.template.d.ts +1 -0
  204. package/dist/types/components/dialog/dialog.d.ts +7 -0
  205. package/dist/types/components/flex-container/flex-container.d.ts +7 -0
  206. package/dist/types/components/form/form.d.ts +8 -1
  207. package/dist/types/components/form/form.types.d.ts +6 -0
  208. package/dist/types/components/picker/picker.d.ts +2 -1
  209. package/dist/types/components/switch/switch.d.ts +2 -2
  210. package/dist/types/components/table/columns.d.ts +7 -0
  211. package/dist/types/components/table/selection.d.ts +79 -0
  212. package/dist/types/components/table/table-selection.d.ts +57 -0
  213. package/dist/types/components/table/table.d.ts +41 -7
  214. package/dist/types/components/table/table.types.d.ts +13 -0
  215. package/dist/types/components.d.ts +44 -4
  216. package/dist/types/stencil-public-runtime.d.ts +6 -4
  217. package/package.json +22 -22
  218. package/dist/cjs/checkbox.template-50eb8b76.js +0 -39
  219. package/dist/esm/checkbox.template-50f7c07b.js +0 -37
  220. package/dist/lime-elements/p-0ce9165f.entry.js +0 -1
  221. package/dist/lime-elements/p-0fd208f3.entry.js +0 -82
  222. package/dist/lime-elements/p-143705b1.entry.js +0 -1
  223. package/dist/lime-elements/p-250f55be.js +0 -1
  224. package/dist/lime-elements/p-29f054cc.entry.js +0 -37
  225. package/dist/lime-elements/p-31299106.js +0 -126
  226. package/dist/lime-elements/p-468e940e.entry.js +0 -16
  227. package/dist/lime-elements/p-4932c029.entry.js +0 -1
  228. package/dist/lime-elements/p-510bb5a4.entry.js +0 -1
  229. package/dist/lime-elements/p-668795a7.js +0 -73
  230. package/dist/lime-elements/p-6cfb45a1.entry.js +0 -1
  231. package/dist/lime-elements/p-7476efe0.entry.js +0 -1
  232. package/dist/lime-elements/p-902347b9.js +0 -81
  233. package/dist/lime-elements/p-90f3e17c.entry.js +0 -37
  234. package/dist/lime-elements/p-96e44a1e.entry.js +0 -82
  235. package/dist/lime-elements/p-b2a8cb31.entry.js +0 -59
  236. package/dist/lime-elements/p-bc0dcf01.entry.js +0 -73
  237. package/dist/lime-elements/p-c35874db.entry.js +0 -1
  238. package/dist/lime-elements/p-c8c8a946.entry.js +0 -59
  239. package/dist/lime-elements/p-ca664c9f.entry.js +0 -1
  240. package/dist/lime-elements/p-d2c74396.entry.js +0 -1
  241. package/dist/lime-elements/p-d48ad9f7.entry.js +0 -126
  242. package/dist/lime-elements/p-d93a3b07.entry.js +0 -16
  243. package/dist/lime-elements/p-f2c706b8.entry.js +0 -131
@@ -693,7 +693,7 @@
693
693
  .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {
694
694
  display: inline-block;
695
695
  position: absolute;
696
- top: calc(5px + .4em);
696
+ top: calc(5px + 0.4em);
697
697
  right: 10px;
698
698
  height: 7px;
699
699
  width: 7px;
@@ -935,6 +935,141 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
935
935
  background: #333;
936
936
  }
937
937
 
938
+ :host {
939
+ display: block;
940
+ --table-header-background-color: var(--contrast-500);
941
+ --table-header-background-color--hover: var(--contrast-400);
942
+ --table-header-background-color-when-being-dragged: var(--contrast-100);
943
+ --table-row-background-color--odd: var(--contrast-200);
944
+ --table-row-background-color--even: var(--contrast-100);
945
+ --table-row-background-color--hover: var(--contrast-100);
946
+ --table-row-background-color--active: var(--color-teal-lighter);
947
+ --table-arrow-color: var(--contrast-800);
948
+ --table-arrow-color--active: var(--mdc-theme-primary);
949
+ }
950
+
951
+ #tabulator-container,
952
+ #tabulator-table {
953
+ height: 100%;
954
+ width: 100%;
955
+ }
956
+
957
+ .tabulator {
958
+ display: flex;
959
+ flex-direction: column;
960
+ }
961
+ .tabulator * {
962
+ box-sizing: border-box;
963
+ }
964
+ .tabulator .tabulator-header {
965
+ flex-shrink: 0;
966
+ }
967
+ .tabulator .tabulator-tableHolder {
968
+ isolation: isolate;
969
+ flex-grow: 1;
970
+ height: unset !important;
971
+ max-height: unset !important;
972
+ min-height: unset !important;
973
+ }
974
+ .tabulator .tabulator-footer {
975
+ flex-shrink: 0;
976
+ }
977
+
978
+ #tabulator-container:not(.has-pagination) .tabulator-paginator {
979
+ visibility: hidden;
980
+ display: none !important;
981
+ }
982
+
983
+ #tabulator-container {
984
+ position: relative;
985
+ }
986
+
987
+ #tabulator-container,
988
+ #tabulator-table {
989
+ -moz-osx-font-smoothing: grayscale;
990
+ -webkit-font-smoothing: antialiased;
991
+ font-family: Roboto, sans-serif;
992
+ /* @alternate */
993
+ font-family: var(--mdc-typography-font-family, Roboto, sans-serif);
994
+ background-color: transparent;
995
+ border: none;
996
+ }
997
+
998
+ .tabulator .tabulator-header {
999
+ border-bottom: 0;
1000
+ background-color: rgb(var(--table-header-background-color));
1001
+ }
1002
+ .tabulator .tabulator-header .tabulator-col {
1003
+ transition: background-color 0.2s ease;
1004
+ background-color: rgb(var(--table-header-background-color));
1005
+ border-right-color: rgb(var(--contrast-200));
1006
+ }
1007
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
1008
+ background-color: rgb(var(--table-header-background-color--hover));
1009
+ }
1010
+ .tabulator .tabulator-header .tabulator-col-title {
1011
+ font-weight: 500;
1012
+ padding-left: 0.125rem;
1013
+ line-height: 1.25rem;
1014
+ }
1015
+
1016
+ .tabulator-row.tabulator-selectable {
1017
+ transition: background-color 0.2s ease;
1018
+ }
1019
+ .tabulator-row.tabulator-selectable:not(.active):hover {
1020
+ background-color: rgb(var(--table-header-background-color));
1021
+ }
1022
+ .tabulator-row.tabulator-row-odd {
1023
+ background-color: rgb(var(--table-row-background-color--odd));
1024
+ }
1025
+ .tabulator-row.tabulator-row-even {
1026
+ background-color: rgb(var(--table-row-background-color--even));
1027
+ }
1028
+ .tabulator-row.active, .tabulator-row.active:hover {
1029
+ background-color: rgb(var(--table-row-background-color--active));
1030
+ }
1031
+ .tabulator-row .tabulator-cell {
1032
+ border-right: transparent;
1033
+ padding: 0.5rem;
1034
+ display: inline-flex;
1035
+ align-items: center;
1036
+ }
1037
+ .tabulator-row .tabulator-cell[style*="text-align: right;"] {
1038
+ justify-content: flex-end;
1039
+ }
1040
+ .tabulator-row .tabulator-cell[style*="text-align: center;"] {
1041
+ justify-content: center;
1042
+ }
1043
+
1044
+ .tabulator-col,
1045
+ .tabulator-cell {
1046
+ max-width: 37.5rem;
1047
+ font-size: 0.8125rem;
1048
+ }
1049
+
1050
+ #tabulator-loader,
1051
+ #tabulator-empty-text {
1052
+ position: absolute;
1053
+ width: 100%;
1054
+ height: 100%;
1055
+ z-index: 1;
1056
+ display: flex;
1057
+ align-items: center;
1058
+ justify-content: center;
1059
+ }
1060
+
1061
+ #tabulator-loader {
1062
+ background-color: rgba(var(--contrast-100), 0.6);
1063
+ cursor: wait;
1064
+ }
1065
+
1066
+ #tabulator-empty-text {
1067
+ color: rgb(var(--contrast-800));
1068
+ font-weight: bold;
1069
+ font-size: 1.25rem;
1070
+ pointer-events: none;
1071
+ }
1072
+
938
1073
  /*
939
1074
  * This file is imported into every component!
940
1075
  *
@@ -952,13 +1087,16 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
952
1087
  cursor: pointer;
953
1088
  }
954
1089
  [aria-sort=none] .tabulator-arrow {
955
- border-bottom-color: rgb(var(--contrast-800)) !important;
1090
+ border-bottom-color: rgb(var(--table-arrow-color)) !important;
956
1091
  }
957
1092
  [aria-sort=desc] .tabulator-arrow {
958
- border-top-color: rgb(var(--color-teal-light)) !important;
1093
+ border-top-color: var(--table-arrow-color--active) !important;
959
1094
  }
960
1095
  [aria-sort=asc] .tabulator-arrow {
961
- border-bottom-color: rgb(var(--color-teal-light)) !important;
1096
+ border-bottom-color: var(--table-arrow-color--active) !important;
1097
+ }
1098
+ [aria-sort=desc] .tabulator-arrow:after, [aria-sort=asc] .tabulator-arrow:after {
1099
+ background-color: var(--table-arrow-color--active);
962
1100
  }
963
1101
  .tabulator-arrow:before, .tabulator-arrow:after {
964
1102
  display: block;
@@ -967,16 +1105,19 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
967
1105
  bottom: 0;
968
1106
  }
969
1107
  .tabulator-arrow:before {
970
- background-color: rgb(var(--contrast-500));
1108
+ background-color: rgb(var(--table-header-background-color));
971
1109
  width: 0.5rem;
972
1110
  height: 0.5rem;
973
1111
  transform: rotate(45deg);
974
1112
  left: -0.25rem;
975
1113
  top: 0.25rem;
976
1114
  }
1115
+ .tabulator-col.tabulator-sortable:hover .tabulator-arrow:before {
1116
+ background-color: rgb(var(--table-header-background-color--hover));
1117
+ }
977
1118
  .tabulator-arrow:after {
978
1119
  width: 0.125rem;
979
- background-color: rgb(var(--contrast-800));
1120
+ background-color: rgb(var(--table-arrow-color));
980
1121
  height: 0.5625rem;
981
1122
  top: 0.125rem;
982
1123
  left: -0.0625rem;
@@ -990,9 +1131,6 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
990
1131
  [aria-sort=desc] .tabulator-arrow:after {
991
1132
  top: -0.6875rem;
992
1133
  }
993
- [aria-sort=desc] .tabulator-arrow:after, [aria-sort=asc] .tabulator-arrow:after {
994
- background-color: rgb(var(--color-teal-light));
995
- }
996
1134
 
997
1135
  @keyframes indicate-sortable-column {
998
1136
  0%, 100% {
@@ -1015,13 +1153,13 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1015
1153
  * Nothing in this file may output any CSS
1016
1154
  * without being explicitly called by outside code.
1017
1155
  */
1018
- .tabulator .tabulator-footer {
1019
- transition: transform 0.5s ease-out, opacity 0.35s ease;
1020
- }
1021
1156
  .tabulator .tabulator-footer .tabulator-paginator {
1157
+ box-sizing: border-box;
1022
1158
  display: grid;
1023
1159
  grid-auto-flow: column;
1024
1160
  justify-content: end;
1161
+ padding-top: 0.25rem;
1162
+ padding-bottom: 0.25rem;
1025
1163
  }
1026
1164
  .tabulator .tabulator-footer .tabulator-paginator .tabulator-pages {
1027
1165
  margin: 0 0.5rem;
@@ -1037,7 +1175,7 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1037
1175
  margin: 0;
1038
1176
  border: none;
1039
1177
  border-radius: 2.5rem;
1040
- color: #303042;
1178
+ color: rgb(var(--contrast-1200)) !important;
1041
1179
  background-color: transparent;
1042
1180
  }
1043
1181
  .tabulator .tabulator-footer .tabulator-paginator .tabulator-page:not([disabled]) {
@@ -1051,12 +1189,11 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1051
1189
  transform: translate3d(0, 0.08rem, 0);
1052
1190
  }
1053
1191
  .tabulator .tabulator-footer .tabulator-paginator .tabulator-page:hover {
1054
- color: #303042;
1055
- background-color: rgb(var(--contrast-200));
1192
+ background-color: rgb(var(--contrast-100));
1056
1193
  }
1057
1194
  .tabulator .tabulator-footer .tabulator-paginator .tabulator-page.active {
1195
+ background-color: rgb(var(--contrast-100));
1058
1196
  box-shadow: var(--button-shadow-inset);
1059
- background-color: #fff;
1060
1197
  }
1061
1198
  .tabulator .tabulator-footer .tabulator-paginator .tabulator-page:disabled {
1062
1199
  cursor: not-allowed;
@@ -1065,23 +1202,6 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1065
1202
  background-color: transparent;
1066
1203
  }
1067
1204
 
1068
- .tabulator:not(.has-pagination):not(.has-aggregation) .tabulator-tableHolder {
1069
- height: calc(100% - 2.125rem) !important;
1070
- max-height: calc(100% - 2.125rem) !important;
1071
- }
1072
- .tabulator:not(.has-pagination).has-aggregation .tabulator-tableHolder {
1073
- height: calc( 100% - ( 2.125rem + 2.25rem ) ) !important;
1074
- max-height: calc( 100% - ( 2.125rem + 2.25rem ) ) !important;
1075
- }
1076
- .tabulator:not(.has-pagination) .tabulator-footer {
1077
- pointer-events: none;
1078
- }
1079
- .tabulator:not(.has-pagination) .tabulator-footer .tabulator-paginator {
1080
- visibility: hidden;
1081
- opacity: 0;
1082
- transform: translateY(2.5rem);
1083
- }
1084
-
1085
1205
  .tabulator-page[data-page=first], .tabulator-page[data-page=prev], .tabulator-page[data-page=next], .tabulator-page[data-page=last] {
1086
1206
  font-size: 0;
1087
1207
  color: transparent !important;
@@ -1156,24 +1276,24 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1156
1276
  * Nothing in this file may output any CSS
1157
1277
  * without being explicitly called by outside code.
1158
1278
  */
1159
- :host(.has-interactive-rows) .tabulator-row.tabulator-selectable {
1279
+ :host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable {
1160
1280
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
1161
1281
  }
1162
- :host(.has-interactive-rows) .tabulator-row.tabulator-selectable:hover {
1282
+ :host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:hover {
1163
1283
  box-shadow: var(--button-shadow-hovered);
1164
1284
  }
1165
- :host(.has-interactive-rows) .tabulator-row.tabulator-selectable:active {
1285
+ :host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:active {
1166
1286
  box-shadow: var(--button-shadow-pressed);
1167
1287
  transform: translate3d(0, 0.08rem, 0);
1168
1288
  }
1169
- :host(.has-interactive-rows) .tabulator-row.tabulator-selectable:hover {
1170
- z-index: 1;
1289
+ :host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:hover {
1290
+ z-index: 2;
1171
1291
  }
1172
- :host(.has-interactive-rows) .tabulator-row.tabulator-selectable:not(.active):hover {
1173
- background-color: rgb(var(--contrast-100));
1292
+ :host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:not(.active):hover {
1293
+ background-color: rgb(var(--table-row-background-color--hover));
1174
1294
  }
1175
1295
 
1176
- :host(.has-low-density) #tabulator-table {
1296
+ :host(.has-low-density) #tabulator-container {
1177
1297
  width: max-content;
1178
1298
  max-width: 100%;
1179
1299
  margin: auto;
@@ -1181,25 +1301,19 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1181
1301
  :host(.has-low-density) .tabulator-table {
1182
1302
  background-color: transparent;
1183
1303
  }
1184
- :host(.has-low-density) .tabulator-headers {
1185
- padding: 0 0.5rem;
1186
- }
1187
1304
  :host(.has-low-density) .tabulator-header {
1188
- background-color: transparent;
1305
+ border-radius: 0.375rem;
1189
1306
  }
1190
1307
  :host(.has-low-density) .tabulator-header .tabulator-col-content {
1191
1308
  padding-left: 0.5rem;
1192
1309
  }
1193
- :host(.has-low-density) .tabulator-col:first-child {
1194
- border-radius: 0.375rem 0 0 0.375rem;
1310
+ :host(.has-low-density) .tabulator-footer {
1311
+ border-radius: 0.5rem;
1195
1312
  }
1196
- :host(.has-low-density) .tabulator-col:last-child {
1197
- border-radius: 0 0.375rem 0.375rem 0;
1313
+ :host(.has-low-density) .tabulator-calcs-holder {
1314
+ border-radius: 0.5rem 0.5rem 0 0;
1198
1315
  }
1199
1316
  :host(.has-low-density) .tabulator-row {
1200
- width: calc( 100% - 1rem );
1201
- margin-right: auto;
1202
- margin-left: auto;
1203
1317
  border-radius: 0.5rem;
1204
1318
  }
1205
1319
  :host(.has-low-density) .tabulator-row:not(.tabulator-calcs-bottom) {
@@ -1220,6 +1334,31 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1220
1334
  border-radius: 0 0.5rem 0.5rem 0;
1221
1335
  }
1222
1336
 
1337
+ :host(.has-pagination-on-top) .tabulator .tabulator-header {
1338
+ order: 2;
1339
+ }
1340
+ :host(.has-pagination-on-top) .tabulator .tabulator-tableHolder {
1341
+ order: 3;
1342
+ }
1343
+ :host(.has-pagination-on-top) .tabulator .tabulator-footer {
1344
+ order: 1;
1345
+ background-color: transparent;
1346
+ }
1347
+ :host(.has-pagination-on-top) .tabulator .tabulator-calcs-holder {
1348
+ position: absolute;
1349
+ bottom: 0;
1350
+ }
1351
+ :host(.has-pagination-on-top) .has-aggregation .tabulator-tableHolder {
1352
+ padding-bottom: 1.75rem;
1353
+ }
1354
+ :host(.has-pagination-on-top) .select-all {
1355
+ top: 2.625rem;
1356
+ }
1357
+ :host(.has-pagination-on-top) #tabulator-container:not(.has-pagination) .tabulator-paginator {
1358
+ display: grid !important;
1359
+ opacity: 0;
1360
+ }
1361
+
1223
1362
  /*
1224
1363
  * This file is imported into every component!
1225
1364
  *
@@ -1260,129 +1399,124 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1260
1399
  transform: rotate(-2deg);
1261
1400
  }
1262
1401
  }
1263
- .tabulator.has-movable-columns .tabulator-header {
1402
+ .has-movable-columns .tabulator-header {
1264
1403
  overflow-y: visible;
1265
1404
  }
1266
- .tabulator.has-movable-columns .tabulator-header .tabulator-col {
1405
+ .has-movable-columns .tabulator-header .tabulator-col:not(.tabulator-frozen) {
1267
1406
  cursor: move !important;
1268
1407
  }
1269
- .tabulator.has-movable-columns .tabulator-header .tabulator-col.tabulator-sortable.tabulator-moving {
1408
+ .has-movable-columns .tabulator-header .tabulator-col:not(.tabulator-frozen).tabulator-sortable.tabulator-moving {
1270
1409
  animation: detach-a-column-header 0.2s ease forwards;
1271
1410
  opacity: 0.9;
1272
1411
  border: none;
1273
1412
  border-radius: 0.25rem;
1274
- background-color: rgb(var(--contrast-100));
1413
+ background-color: rgb(var(---table-header-background-color-when-being-dragged));
1275
1414
  box-shadow: var(--shadow-depth-16);
1276
1415
  }
1277
- .tabulator.has-movable-columns .tabulator-header .tabulator-col.tabulator-sortable.tabulator-moving:hover {
1278
- background-color: rgb(var(--contrast-100));
1279
- }
1280
- .tabulator.has-movable-columns .tabulator-header .tabulator-col.tabulator-sortable.tabulator-moving .tabulator-arrow:before {
1281
- background-color: rgb(var(--contrast-100));
1416
+ .has-movable-columns .tabulator-header .tabulator-col:not(.tabulator-frozen).tabulator-sortable.tabulator-moving:hover {
1417
+ background-color: rgb(var(---table-header-background-color-when-being-dragged));
1282
1418
  }
1283
-
1284
- :host {
1285
- display: block;
1419
+ .has-movable-columns .tabulator-header .tabulator-col:not(.tabulator-frozen).tabulator-sortable.tabulator-moving .tabulator-arrow:before {
1420
+ background-color: rgb(var(---table-header-background-color-when-being-dragged));
1286
1421
  }
1287
1422
 
1288
- #tabulator-container {
1289
- position: relative;
1290
- }
1291
-
1292
- #tabulator-container,
1293
- #tabulator-table {
1294
- -moz-osx-font-smoothing: grayscale;
1295
- -webkit-font-smoothing: antialiased;
1296
- font-family: Roboto, sans-serif;
1297
- /* @alternate */
1298
- font-family: var(--mdc-typography-font-family, Roboto, sans-serif);
1299
- height: 100%;
1300
- width: 100%;
1301
- background-color: transparent;
1423
+ .tabulator .tabulator-footer {
1424
+ transition: transform 0.5s ease-out, opacity 0.35s ease;
1425
+ padding-top: 0;
1426
+ padding-bottom: 0;
1427
+ background-color: rgb(var(--table-header-background-color--hover));
1302
1428
  border: none;
1429
+ user-select: auto;
1303
1430
  }
1304
-
1305
- .tabulator .tabulator-header {
1306
- border-bottom: 0;
1307
- background-color: rgb(var(--contrast-500));
1431
+ .tabulator .tabulator-footer .tabulator-calcs-holder {
1432
+ border-color: rgb(var(--contrast-600));
1433
+ margin-top: 0;
1434
+ margin-bottom: 0;
1308
1435
  }
1309
- .tabulator .tabulator-header .tabulator-col {
1310
- transition: background-color 0.2s ease;
1311
- background-color: rgb(var(--contrast-500));
1312
- border-right-color: rgb(var(--contrast-200));
1436
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-calcs {
1437
+ cursor: default;
1313
1438
  }
1314
- .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
1315
- padding-top: 0.5rem;
1316
- padding-bottom: 0.5rem;
1439
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-cell {
1440
+ padding-top: 0.1875rem;
1441
+ padding-bottom: 0.1875rem;
1317
1442
  }
1318
- .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
1319
- background-color: rgb(var(--contrast-400));
1443
+
1444
+ /*
1445
+ * This file is imported into every component!
1446
+ *
1447
+ * Nothing in this file may output any CSS
1448
+ * without being explicitly called by outside code.
1449
+ */
1450
+ .select-all,
1451
+ .limel-table--row-selector {
1452
+ --mdc-checkbox-touch-target-size: 1rem;
1320
1453
  }
1321
- .tabulator .tabulator-header .tabulator-col-title {
1322
- font-weight: 500;
1323
- padding-left: 0.125rem;
1454
+
1455
+ .select-all {
1456
+ position: absolute;
1457
+ z-index: 1;
1458
+ left: 0;
1459
+ top: 0.375rem;
1460
+ width: 2.5625rem;
1461
+ display: flex !important;
1462
+ align-items: center;
1463
+ justify-content: center;
1324
1464
  }
1325
- .tabulator .tabulator-footer {
1326
- background-color: rgb(var(--contrast-500));
1327
- border: none;
1465
+ .select-all limel-checkbox {
1466
+ transform: translate(-0.25rem, 0);
1328
1467
  }
1329
- .tabulator .tabulator-footer .tabulator-calcs-holder {
1330
- border-color: rgb(var(--contrast-600));
1468
+ :host(.has-low-density) .select-all limel-checkbox {
1469
+ transform: translate(-0.15rem, 0);
1331
1470
  }
1332
1471
 
1333
- .tabulator-row.tabulator-selectable {
1334
- transition: background-color 0.2s ease;
1472
+ .limel-table--row-selector {
1473
+ position: sticky !important;
1474
+ left: 0;
1475
+ border-width: 0;
1476
+ justify-content: center;
1477
+ z-index: 1;
1335
1478
  }
1336
- .tabulator-row.tabulator-selectable:not(.active):hover {
1337
- background-color: rgb(var(--contrast-500));
1479
+ .tabulator-row-odd .limel-table--row-selector {
1480
+ background-image: linear-gradient(to right, rgb(var(--table-row-background-color--odd)) 70%, rgb(var(--table-row-background-color--odd), 0));
1338
1481
  }
1339
- .tabulator-row.tabulator-row-odd {
1340
- background-color: rgb(var(--contrast-200));
1482
+ .tabulator-row-even .limel-table--row-selector {
1483
+ background-image: linear-gradient(to right, rgb(var(--table-row-background-color--even)) 70%, rgb(var(--table-row-background-color--even), 0));
1341
1484
  }
1342
- .tabulator-row.tabulator-row-even {
1343
- background-color: rgb(var(--contrast-100));
1485
+ .tabulator-row:not(.tabulator-calcs):hover .limel-table--row-selector {
1486
+ will-change: background-image;
1487
+ background-image: linear-gradient(to right, rgb(var(--table-row-background-color--hover)) 70%, rgb(var(--table-row-background-color--hover), 0));
1344
1488
  }
1345
- .tabulator-row.active, .tabulator-row.active:hover {
1346
- background-color: rgba(var(--color-teal-light), 0.16);
1489
+ .tabulator-row.active .limel-table--row-selector, .tabulator-row.active:hover .limel-table--row-selector {
1490
+ background-image: linear-gradient(to right, rgb(var(--table-row-background-color--active)) 70%, rgb(var(--table-row-background-color--active), 0));
1347
1491
  }
1348
- .tabulator-row .tabulator-cell {
1349
- border-right: transparent;
1350
- padding: 0.5rem;
1351
- display: inline-flex;
1352
- align-items: center;
1492
+ .limel-table--row-selector limel-checkbox {
1493
+ transition: opacity 0.2s ease;
1494
+ align-self: center;
1495
+ opacity: 0.3;
1496
+ transform: translate(-0.25rem, 0);
1353
1497
  }
1354
- .tabulator-row .tabulator-cell[style*="text-align: right;"] {
1355
- justify-content: flex-end;
1498
+ .tabulator-row:hover .limel-table--row-selector limel-checkbox {
1499
+ opacity: 1;
1356
1500
  }
1357
- .tabulator-row .tabulator-cell[style*="text-align: center;"] {
1358
- justify-content: center;
1501
+ .has-selection .limel-table--row-selector limel-checkbox {
1502
+ opacity: 1;
1359
1503
  }
1360
-
1361
- .tabulator-col,
1362
- .tabulator-cell {
1363
- max-width: 37.5rem;
1364
- font-size: 0.8125rem;
1504
+ .limel-table--row-selector .tabulator-col-resize-handle {
1505
+ display: none;
1365
1506
  }
1366
-
1367
- #tabulator-loader,
1368
- #tabulator-empty-text {
1369
- position: absolute;
1370
- width: 100%;
1371
- height: 100%;
1372
- z-index: 1;
1373
- display: flex;
1374
- align-items: center;
1375
- justify-content: center;
1507
+ .limel-table--row-selector + .tabulator-col .tabulator-col-resize-handle.prev, .limel-table--row-selector + .tabulator-cell .tabulator-col-resize-handle.prev {
1508
+ display: none;
1376
1509
  }
1377
1510
 
1378
- #tabulator-loader {
1379
- background-color: rgba(var(--contrast-100), 0.6);
1380
- cursor: wait;
1511
+ .has-movable-columns .tabulator-header .tabulator-col.limel-table--row-selector {
1512
+ border: none;
1513
+ cursor: default !important;
1514
+ pointer-events: none;
1515
+ background-color: transparent;
1516
+ background-image: linear-gradient(to right, rgb(var(--table-header-background-color--hover)) 70%, rgb(var(--table-header-background-color--hover), 0));
1517
+ left: 0;
1381
1518
  }
1382
1519
 
1383
- #tabulator-empty-text {
1384
- color: rgb(var(--contrast-800));
1385
- font-weight: bold;
1386
- font-size: 1.25rem;
1387
- pointer-events: none;
1520
+ .has-selection .tabulator-calcs .tabulator-cell {
1521
+ color: var(--table-arrow-color--active);
1388
1522
  }