@dataloop-ai/components 0.13.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 (294) hide show
  1. package/.eslintrc.js +154 -0
  2. package/.prettierrc.json +7 -0
  3. package/Dockerfile +12 -0
  4. package/LICENSE +201 -0
  5. package/README.md +43 -0
  6. package/favicon.ico +0 -0
  7. package/index.html +13 -0
  8. package/index.ts +1 -0
  9. package/jest.config.js +16 -0
  10. package/jest.setup.js +59 -0
  11. package/models.ts +1 -0
  12. package/package.json +109 -0
  13. package/src/App.vue +201 -0
  14. package/src/assets/globals.scss +253 -0
  15. package/src/assets/globalsKeys.ts +28 -0
  16. package/src/components/DlAccordion/AccordionHeader.vue +148 -0
  17. package/src/components/DlAccordion/DlAccordion.vue +108 -0
  18. package/src/components/DlAccordion/index.ts +2 -0
  19. package/src/components/DlAlert.vue +227 -0
  20. package/src/components/DlAvatar.vue +99 -0
  21. package/src/components/DlBadge.vue +127 -0
  22. package/src/components/DlButton/DlButton.vue +370 -0
  23. package/src/components/DlButton/index.ts +4 -0
  24. package/src/components/DlButton/utils.ts +169 -0
  25. package/src/components/DlButtonGroup.vue +122 -0
  26. package/src/components/DlCheckbox.vue +298 -0
  27. package/src/components/DlChip/DlChip.vue +244 -0
  28. package/src/components/DlChip/index.ts +4 -0
  29. package/src/components/DlChip/utils.ts +100 -0
  30. package/src/components/DlColorPicker/DlAlpha.vue +142 -0
  31. package/src/components/DlColorPicker/DlBox.vue +75 -0
  32. package/src/components/DlColorPicker/DlColorPicker.vue +306 -0
  33. package/src/components/DlColorPicker/DlColors.vue +139 -0
  34. package/src/components/DlColorPicker/DlHue.vue +135 -0
  35. package/src/components/DlColorPicker/DlPreview.vue +61 -0
  36. package/src/components/DlColorPicker/DlSaturation.vue +152 -0
  37. package/src/components/DlColorPicker/constants.ts +16 -0
  38. package/src/components/DlColorPicker/index.ts +20 -0
  39. package/src/components/DlColorPicker/types.ts +11 -0
  40. package/src/components/DlColorPicker/utils.ts +128 -0
  41. package/src/components/DlCounters.vue +173 -0
  42. package/src/components/DlDatePicker/DlCalendar.vue +332 -0
  43. package/src/components/DlDatePicker/DlDatePicker.vue +315 -0
  44. package/src/components/DlDatePicker/DlMonthCalendar.vue +282 -0
  45. package/src/components/DlDatePicker/classes/Calendar.ts +110 -0
  46. package/src/components/DlDatePicker/classes/CalendarDate.ts +12 -0
  47. package/src/components/DlDatePicker/classes/CustomDate.ts +218 -0
  48. package/src/components/DlDatePicker/index.ts +3 -0
  49. package/src/components/DlDatePicker/isInRange.ts +44 -0
  50. package/src/components/DlDatePicker/types.ts +4 -0
  51. package/src/components/DlDatePicker/utils.ts +39 -0
  52. package/src/components/DlDateTimeRange/DlCardSidebar.vue +109 -0
  53. package/src/components/DlDateTimeRange/DlDateInput.vue +105 -0
  54. package/src/components/DlDateTimeRange/DlDateTimeRange.vue +468 -0
  55. package/src/components/DlDateTimeRange/index.ts +3 -0
  56. package/src/components/DlDateTimeRange/types.ts +42 -0
  57. package/src/components/DlDialogBox/DlDialogBox.vue +196 -0
  58. package/src/components/DlDialogBox/DlDialogBoxFooter.vue +22 -0
  59. package/src/components/DlDialogBox/DlDialogBoxHeader.vue +75 -0
  60. package/src/components/DlDialogBox/index.ts +5 -0
  61. package/src/components/DlDropdownButton.vue +463 -0
  62. package/src/components/DlIcon.vue +147 -0
  63. package/src/components/DlInfoErrorMessage.vue +91 -0
  64. package/src/components/DlItem/DlItem.vue +35 -0
  65. package/src/components/DlItem/index.ts +2 -0
  66. package/src/components/DlItemSection.vue +88 -0
  67. package/src/components/DlLink/DlLink.vue +76 -0
  68. package/src/components/DlLink/index.ts +4 -0
  69. package/src/components/DlLink/utils.ts +4 -0
  70. package/src/components/DlList.vue +61 -0
  71. package/src/components/DlListItem/DlListItem.vue +205 -0
  72. package/src/components/DlListItem/index.ts +3 -0
  73. package/src/components/DlListItem/utils.ts +14 -0
  74. package/src/components/DlMenu/DlMenu.vue +438 -0
  75. package/src/components/DlMenu/index.ts +3 -0
  76. package/src/components/DlMenu/utils.ts +138 -0
  77. package/src/components/DlOptionGroup/DlOptionGroup.vue +201 -0
  78. package/src/components/DlOptionGroup/MenuItemWrapper.vue +48 -0
  79. package/src/components/DlOptionGroup/OptionGroup.types.ts +36 -0
  80. package/src/components/DlOptionGroup/SimpleWrapper.vue +28 -0
  81. package/src/components/DlOptionGroup/index.ts +4 -0
  82. package/src/components/DlOptionGroup/utils.ts +40 -0
  83. package/src/components/DlPagination/DlPagination.vue +184 -0
  84. package/src/components/DlPagination/PageNavigation.vue +350 -0
  85. package/src/components/DlPagination/PaginationLegend.vue +41 -0
  86. package/src/components/DlPagination/QuickNavigation.vue +146 -0
  87. package/src/components/DlPagination/RowsSelector.vue +74 -0
  88. package/src/components/DlPagination/index.ts +3 -0
  89. package/src/components/DlPanelContainer/DlPanel.vue +213 -0
  90. package/src/components/DlPanelContainer/DlPanelContainer.vue +527 -0
  91. package/src/components/DlPanelContainer/index.ts +4 -0
  92. package/src/components/DlPopup/DlPopup.vue +478 -0
  93. package/src/components/DlPopup/DraggableUpper.vue +64 -0
  94. package/src/components/DlPopup/PopupHeader.vue +129 -0
  95. package/src/components/DlPopup/index.ts +1 -0
  96. package/src/components/DlProgressBar.vue +159 -0
  97. package/src/components/DlProgressChart.vue +299 -0
  98. package/src/components/DlRadio.vue +218 -0
  99. package/src/components/DlRange/DlRange.vue +439 -0
  100. package/src/components/DlRange/utils.ts +209 -0
  101. package/src/components/DlSearch.vue +155 -0
  102. package/src/components/DlSelect/DlSelect.vue +992 -0
  103. package/src/components/DlSelect/SelectOption.vue +261 -0
  104. package/src/components/DlSelect/index.ts +4 -0
  105. package/src/components/DlSelect/utils.ts +43 -0
  106. package/src/components/DlSkeleton.vue +72 -0
  107. package/src/components/DlSlider/DlSlider.vue +243 -0
  108. package/src/components/DlSlider/components/DlSliderBase.vue +380 -0
  109. package/src/components/DlSlider/components/DlSliderInput.vue +123 -0
  110. package/src/components/DlSlider/components/index.ts +4 -0
  111. package/src/components/DlSlider/index.ts +3 -0
  112. package/src/components/DlSlider/sliderStyles.scss +109 -0
  113. package/src/components/DlSlider/useSlider.ts +277 -0
  114. package/src/components/DlSlider/utils.ts +7 -0
  115. package/src/components/DlSmartSearch/DlJsonEditor.vue +309 -0
  116. package/src/components/DlSmartSearch/DlSmartSearch.vue +333 -0
  117. package/src/components/DlSmartSearch/DlSmartSearchInput.vue +741 -0
  118. package/src/components/DlSmartSearch/DlSuggestionsDropdown.vue +73 -0
  119. package/src/components/DlSmartSearch/highlightSyntax.ts +169 -0
  120. package/src/components/DlSmartSearch/index.ts +4 -0
  121. package/src/components/DlSmartSearch/types.ts +36 -0
  122. package/src/components/DlSmartSearch/utils.ts +45 -0
  123. package/src/components/DlStepper/DlStepper.vue +196 -0
  124. package/src/components/DlStepper/DlStepperContainer.vue +55 -0
  125. package/src/components/DlStepper/DlStepperContent.vue +101 -0
  126. package/src/components/DlStepper/DlStepperFooter.vue +133 -0
  127. package/src/components/DlStepper/DlStepperHeader.vue +49 -0
  128. package/src/components/DlStepper/DlStepperSidebar.vue +167 -0
  129. package/src/components/DlStepper/Step.ts +101 -0
  130. package/src/components/DlStepper/Stepper.ts +107 -0
  131. package/src/components/DlStepper/index.ts +7 -0
  132. package/src/components/DlStepper/interfaces.ts +11 -0
  133. package/src/components/DlSwitch.vue +280 -0
  134. package/src/components/DlTabPanels/DlTabPanel.vue +22 -0
  135. package/src/components/DlTabPanels/DlTabPanels.vue +41 -0
  136. package/src/components/DlTabPanels/index.ts +4 -0
  137. package/src/components/DlTabPanels/utils.ts +19 -0
  138. package/src/components/DlTable/DlTable.vue +1264 -0
  139. package/src/components/DlTable/DlTd.vue +109 -0
  140. package/src/components/DlTable/DlTh.vue +126 -0
  141. package/src/components/DlTable/DlTr.vue +44 -0
  142. package/src/components/DlTable/ResizableManager.ts +233 -0
  143. package/src/components/DlTable/dl-table-styles.scss +466 -0
  144. package/src/components/DlTable/hooks/tableActions.ts +64 -0
  145. package/src/components/DlTable/hooks/tableColumnSelection.ts +112 -0
  146. package/src/components/DlTable/hooks/tableFilter.ts +42 -0
  147. package/src/components/DlTable/hooks/tablePagination.ts +197 -0
  148. package/src/components/DlTable/hooks/tableRowExpand.ts +55 -0
  149. package/src/components/DlTable/hooks/tableRowSelection.ts +106 -0
  150. package/src/components/DlTable/hooks/tableSort.ts +125 -0
  151. package/src/components/DlTable/index.ts +6 -0
  152. package/src/components/DlTable/types.ts +96 -0
  153. package/src/components/DlTabs/DlTab.vue +146 -0
  154. package/src/components/DlTabs/DlTabs.vue +192 -0
  155. package/src/components/DlTabs/TabsWrapper.vue +104 -0
  156. package/src/components/DlTabs/index.ts +4 -0
  157. package/src/components/DlTabs/types.ts +8 -0
  158. package/src/components/DlTextArea.vue +151 -0
  159. package/src/components/DlTextHolder.vue +65 -0
  160. package/src/components/DlTextInput.vue +753 -0
  161. package/src/components/DlThemeProvider.vue +41 -0
  162. package/src/components/DlTimePicker/DlTimeCounter.vue +81 -0
  163. package/src/components/DlTimePicker/DlTimePicker.vue +151 -0
  164. package/src/components/DlTimePicker/DlTimePickerInput.vue +311 -0
  165. package/src/components/DlTimePicker/index.ts +3 -0
  166. package/src/components/DlTimePicker/types.ts +4 -0
  167. package/src/components/DlTooltip.vue +456 -0
  168. package/src/components/DlTrend.vue +97 -0
  169. package/src/components/DlTypography.vue +87 -0
  170. package/src/components/DlVirtualScroll/DlVirtualScroll.vue +290 -0
  171. package/src/components/DlVirtualScroll/index.ts +3 -0
  172. package/src/components/DlVirtualScroll/useVirtualScroll.ts +833 -0
  173. package/src/components/DlWidget/DlWidget.vue +50 -0
  174. package/src/components/DlWidget/DlWidgetGrid.vue +360 -0
  175. package/src/components/DlWidget/index.ts +4 -0
  176. package/src/components/DlWidget/types.ts +6 -0
  177. package/src/components/DlWidget/utils.ts +30 -0
  178. package/src/components/index.ts +118 -0
  179. package/src/demo/DlAccordionDemo.vue +60 -0
  180. package/src/demo/DlAlertDemo.vue +54 -0
  181. package/src/demo/DlAvatarDemo.vue +43 -0
  182. package/src/demo/DlBadgeDemo.vue +65 -0
  183. package/src/demo/DlButtonDemo.vue +266 -0
  184. package/src/demo/DlCheckboxDemo.vue +50 -0
  185. package/src/demo/DlChipDemo.vue +181 -0
  186. package/src/demo/DlColorPickerDemo.vue +43 -0
  187. package/src/demo/DlCounterDemo.vue +53 -0
  188. package/src/demo/DlDateTimeRangeDemo.vue +217 -0
  189. package/src/demo/DlDialogBoxDemo.vue +175 -0
  190. package/src/demo/DlDropdownButtonDemo.vue +260 -0
  191. package/src/demo/DlIconDemo.vue +47 -0
  192. package/src/demo/DlLinkDemo.vue +23 -0
  193. package/src/demo/DlListDemo.vue +177 -0
  194. package/src/demo/DlMenuDemo.vue +524 -0
  195. package/src/demo/DlOptionGroupDemo.vue +79 -0
  196. package/src/demo/DlPaginationDemo.vue +44 -0
  197. package/src/demo/DlPanelContainerDemo.vue +221 -0
  198. package/src/demo/DlPopupDemo.vue +58 -0
  199. package/src/demo/DlProgressBarDemo.vue +22 -0
  200. package/src/demo/DlProgressChartDemo.vue +71 -0
  201. package/src/demo/DlRadioDemo.vue +35 -0
  202. package/src/demo/DlRangeDemo.vue +44 -0
  203. package/src/demo/DlSearchDemo.vue +27 -0
  204. package/src/demo/DlSelectDemo.vue +355 -0
  205. package/src/demo/DlSkeletonDemo.vue +20 -0
  206. package/src/demo/DlSliderDemo.vue +47 -0
  207. package/src/demo/DlStepperDemo/CenteredStepperInDialogBox.vue +260 -0
  208. package/src/demo/DlStepperDemo/SimpleStepper.vue +202 -0
  209. package/src/demo/DlStepperDemo/StepperInDialogBox.vue +261 -0
  210. package/src/demo/DlStepperDemo/index.ts +5 -0
  211. package/src/demo/DlStepperDemo/steps/AssignmentsStep.vue +97 -0
  212. package/src/demo/DlStepperDemo/steps/DataStep.vue +158 -0
  213. package/src/demo/DlStepperDemo/steps/GeneralStep.vue +106 -0
  214. package/src/demo/DlStepperDemo/steps/InstructionStep.vue +176 -0
  215. package/src/demo/DlStepperDemo/steps/QualityStep.vue +65 -0
  216. package/src/demo/DlSwitchDemo.vue +49 -0
  217. package/src/demo/DlTableDemo.vue +475 -0
  218. package/src/demo/DlTabsDemo.vue +67 -0
  219. package/src/demo/DlTdDemo.vue +19 -0
  220. package/src/demo/DlTextAreaDemo.vue +37 -0
  221. package/src/demo/DlTextHolderDemo.vue +42 -0
  222. package/src/demo/DlTextInputDemo.vue +89 -0
  223. package/src/demo/DlThDemo.vue +32 -0
  224. package/src/demo/DlTooltipDemo.vue +60 -0
  225. package/src/demo/DlTrDemo.vue +18 -0
  226. package/src/demo/DlTrendDemo.vue +25 -0
  227. package/src/demo/DlTypographyDemo.vue +93 -0
  228. package/src/demo/DlWidgetDemo.vue +157 -0
  229. package/src/demo/SmartSearchDemo/DlSmartSearchDemo.vue +202 -0
  230. package/src/demo/SmartSearchDemo/schema.ts +44 -0
  231. package/src/demo/index.ts +141 -0
  232. package/src/directives/TouchPan.ts +525 -0
  233. package/src/env.d.ts +8 -0
  234. package/src/hooks/use-anchor.ts +223 -0
  235. package/src/hooks/use-model-toggle.ts +181 -0
  236. package/src/hooks/use-portal.ts +104 -0
  237. package/src/hooks/use-scroll-target.ts +53 -0
  238. package/src/hooks/use-size-observer.ts +24 -0
  239. package/src/hooks/use-suggestions.ts +355 -0
  240. package/src/hooks/use-tick.ts +32 -0
  241. package/src/hooks/use-timeout.ts +20 -0
  242. package/src/hooks/use-transition.ts +32 -0
  243. package/src/hooks/use-window-size.ts +25 -0
  244. package/src/hooks/useForm.ts +12 -0
  245. package/src/index.ts +7 -0
  246. package/src/main.ts +4 -0
  247. package/src/models.ts +4 -0
  248. package/src/types.ts +6 -0
  249. package/src/utils/calcs.ts +18 -0
  250. package/src/utils/click-outside.ts +108 -0
  251. package/src/utils/component-name-parser.ts +1 -0
  252. package/src/utils/css-color-names.ts +150 -0
  253. package/src/utils/dom.ts +55 -0
  254. package/src/utils/draggable-table.ts +416 -0
  255. package/src/utils/escape-key.ts +54 -0
  256. package/src/utils/events.ts +67 -0
  257. package/src/utils/focus-manager.ts +33 -0
  258. package/src/utils/focusout.ts +29 -0
  259. package/src/utils/format.ts +3 -0
  260. package/src/utils/getColor.ts +17 -0
  261. package/src/utils/getLighterGradient.ts +36 -0
  262. package/src/utils/getRootStyles.ts +52 -0
  263. package/src/utils/global-config.ts +6 -0
  264. package/src/utils/global-nodes.ts +42 -0
  265. package/src/utils/includes.ts +3 -0
  266. package/src/utils/index.ts +29 -0
  267. package/src/utils/inject-object-prop.ts +21 -0
  268. package/src/utils/input-sizes.ts +7 -0
  269. package/src/utils/is-ellipsis-active.ts +3 -0
  270. package/src/utils/is-in-viewport.ts +13 -0
  271. package/src/utils/is.ts +15 -0
  272. package/src/utils/key-composition.ts +17 -0
  273. package/src/utils/keyCodes.ts +12 -0
  274. package/src/utils/logger/ConsoleLogger.ts +65 -0
  275. package/src/utils/logger/ILogger.ts +8 -0
  276. package/src/utils/logger/index.ts +8 -0
  277. package/src/utils/nav-keys-constants.ts +1 -0
  278. package/src/utils/portal.ts +55 -0
  279. package/src/utils/position-engine.ts +381 -0
  280. package/src/utils/render.ts +36 -0
  281. package/src/utils/ripple.ts +7 -0
  282. package/src/utils/scroll.ts +73 -0
  283. package/src/utils/selection.ts +15 -0
  284. package/src/utils/sort.ts +7 -0
  285. package/src/utils/splitByQuotes.ts +32 -0
  286. package/src/utils/string.ts +6 -0
  287. package/src/utils/teleport.ts +14 -0
  288. package/src/utils/theme.ts +2 -0
  289. package/src/utils/vm.ts +16 -0
  290. package/storybook.js +8 -0
  291. package/tsconfig.json +44 -0
  292. package/tsconfig.node.json +8 -0
  293. package/types.ts +1 -0
  294. package/vite.config.ts +13 -0
@@ -0,0 +1,466 @@
1
+ .dl-table {
2
+ width: 100%;
3
+ max-width: 100%;
4
+ border-collapse: separate;
5
+ border-spacing: 0;
6
+
7
+ .dl-table__top,
8
+ .dl-table__bottom,
9
+ thead tr:first-child th {
10
+ /* bg color is important for th; just specify one */
11
+ background-color: var(--dl-color-panel-background);
12
+ }
13
+
14
+ thead tr th {
15
+ position: sticky !important;
16
+ z-index: 1;
17
+ }
18
+
19
+ thead tr:first-child th {
20
+ top: 0;
21
+ }
22
+
23
+ /* this is when the loading indicator appears */
24
+ &.dl-table--loading thead tr:last-child th {
25
+ /* height of all previous header rows */
26
+ top: 40px;
27
+ }
28
+
29
+ th:first-child,
30
+ td:first-child {
31
+ padding-left: 16px;
32
+ }
33
+
34
+ th:last-child,
35
+ td:last-child {
36
+ padding-right: 16px;
37
+ }
38
+
39
+ thead tr {
40
+ height: 34px;
41
+ }
42
+
43
+ tbody tr {
44
+ height: 40px;
45
+
46
+ &:not(.dl-tr--no-hover):hover {
47
+ td:not(.dl-td--no-hover) {
48
+ background-color: var(--dl-color-fill-hover);
49
+ }
50
+ }
51
+ }
52
+
53
+
54
+ .dl-table-cell-inner-div {
55
+ text-overflow: ellipsis;
56
+ white-space: nowrap;
57
+ overflow: hidden;
58
+ padding: 10px 16px;
59
+ }
60
+
61
+ th {
62
+ font-family: 'Roboto', sans-serif;
63
+ font-weight: 400;
64
+ font-size: 14px;
65
+ line-height: 14px;
66
+ color: var(--dl-color-medium);
67
+ background-color: inherit;
68
+ user-select: none;
69
+
70
+ &.empty-col {
71
+ cursor: default !important;
72
+
73
+ &:active {
74
+ cursor: default !important
75
+ }
76
+ }
77
+
78
+ &.sortable {
79
+ cursor: pointer;
80
+
81
+ &:hover .dl-table__sort-icon {
82
+ opacity: .64 !important;
83
+ }
84
+ }
85
+
86
+ &.sorted .dl-table__sort-icon {
87
+ opacity: .86 !important;
88
+ }
89
+
90
+ &.sort-desc .dl-table__sort-icon {
91
+ &::v-deep .dl-icon {
92
+ transform: rotate(180deg) !important;
93
+ }
94
+ }
95
+ }
96
+
97
+ thead,
98
+ td,
99
+ th {
100
+ border-style: solid;
101
+ border-width: 0;
102
+ }
103
+
104
+ .dl-tr {
105
+ &--no-hover {
106
+ &:hover {
107
+ td {
108
+ background-color: none !important;
109
+ }
110
+ }
111
+ }
112
+ }
113
+
114
+ .dl-td {
115
+ &--no-hover {
116
+ &:hover {
117
+ background-color: none !important;
118
+ }
119
+ }
120
+ }
121
+
122
+ tbody>tr:not(.dl-tr--no-hover):hover>td:not(.dl-td--no-hover):before {
123
+ content: '';
124
+ }
125
+
126
+ tbody {
127
+ tr.selected {
128
+ background-color: var(--dl-color-fill);
129
+ }
130
+
131
+ tr.selected td:after {
132
+ content: '';
133
+ }
134
+ }
135
+
136
+ &--draggable-columns {
137
+ th {
138
+ cursor: grab;
139
+
140
+ &:active {
141
+ cursor: grabbing !important;
142
+ }
143
+ }
144
+ }
145
+
146
+ &--no-wrap {
147
+
148
+ th,
149
+ td {
150
+ white-space: nowrap;
151
+ }
152
+ }
153
+
154
+ &__container {
155
+ position: relative;
156
+
157
+ *>div:first-child {
158
+ border-top-left-radius: inherit;
159
+ border-top-right-radius: inherit;
160
+ }
161
+
162
+ *>div:last-child {
163
+ border-bottom-left-radius: inherit;
164
+ border-bottom-right-radius: inherit;
165
+ }
166
+
167
+ }
168
+
169
+ &__separator {
170
+ min-width: 8px !important;
171
+ }
172
+
173
+ &__title {
174
+ font-size: 20px;
175
+ letter-spacing: .005em;
176
+ font-weight: 400;
177
+ color: var(--dl-color-darker);
178
+ }
179
+
180
+ &--bordered {
181
+ border: 1px solid var(--dl-color-separator);
182
+ border-radius: 2px;
183
+ }
184
+
185
+ &__control {
186
+ display: flex;
187
+ align-items: center;
188
+ }
189
+
190
+ &__sort-icon {
191
+ transition: transform .3s cubic-bezier(.25, .8, .5, 1);
192
+ opacity: 0;
193
+
194
+ &--left,
195
+ &--center {
196
+ margin-left: 4px;
197
+ }
198
+
199
+ &--right {
200
+ margin-right: 4px;
201
+ }
202
+ }
203
+
204
+ &__middle {
205
+ max-width: 100%;
206
+ }
207
+
208
+ &__progress {
209
+ height: 0 !important;
210
+
211
+ th {
212
+ padding: 0 !important;
213
+ border: 0 !important;
214
+ }
215
+
216
+ .dl-progress-wrapper {
217
+ position: absolute !important;
218
+ bottom: 0 !important;
219
+
220
+ &::v-deep .progress-container {
221
+ .dl-progress-bar {
222
+ height: 2px !important;
223
+ margin: 0;
224
+ }
225
+ }
226
+ }
227
+ }
228
+
229
+
230
+ &__bottom {
231
+ border-top: 1px solid var(--dl-color-separator);
232
+ min-height: 50px;
233
+ padding: 4px 14px 4px 16px;
234
+ font-size: 12px;
235
+ line-height: 14px;
236
+
237
+ .dl-table__control {
238
+ width: 100%;
239
+ min-height: 24px;
240
+ }
241
+ }
242
+
243
+ &__bottom--nodata {
244
+ color: var(--dl-color-lighter);
245
+
246
+ .dl-table__control {
247
+ justify-content: center;
248
+ }
249
+ }
250
+
251
+ &--col-auto-width {
252
+ width: 1px;
253
+ }
254
+
255
+ &--col-checkbox-wrapper {
256
+ text-align: left;
257
+ }
258
+
259
+ &__top {
260
+ position: relative;
261
+ padding: 12px 16px;
262
+
263
+ .dl-table__control {
264
+ flex-wrap: wrap;
265
+ }
266
+ }
267
+
268
+ thead,
269
+ tr,
270
+ th,
271
+ td {
272
+ border-color: var(--dl-color-separator);
273
+
274
+
275
+ &>label {
276
+ padding: 0;
277
+ }
278
+ }
279
+
280
+ tbody {
281
+ td {
282
+ position: relative;
283
+ text-transform: capitalize;
284
+ font-size: 12px;
285
+ line-height: 12px;
286
+ background-color: inherit;
287
+ color: var(--dl-color-darker);
288
+
289
+ .dl-table-cell-inner-div {
290
+ text-overflow: ellipsis;
291
+ white-space: nowrap;
292
+ overflow: hidden;
293
+ }
294
+
295
+ &:before,
296
+ &:after {
297
+ position: absolute;
298
+ top: 0;
299
+ left: 0;
300
+ right: 0;
301
+ bottom: 0;
302
+ pointer-events: none;
303
+ }
304
+
305
+ &:before {
306
+ // background-color: var(--dl-color-fill-hover);
307
+ }
308
+
309
+ &:after {
310
+ // background-color: var(--dl-color-fill);
311
+ }
312
+ }
313
+
314
+ tr.selected td:after {
315
+ content: '';
316
+ }
317
+ }
318
+
319
+ &__is-dragging {
320
+ background-color: var(--dl-color-fill);
321
+ }
322
+
323
+ &__selected {
324
+ background-color: var(--dl-color-fill) !important;
325
+ color: var(--dl-color-fill) !important;
326
+ border-color: var(--dl-color-fill) !important;
327
+ }
328
+
329
+ &__drag {
330
+ position: absolute;
331
+ top: -99999px;
332
+ left: -99999px;
333
+ z-index: 10000;
334
+ overflow: visible;
335
+ opacity: 1;
336
+ box-shadow: 0px 3px 6px rgba(16, 30, 115, 0.15);
337
+ border-radius: 2px;
338
+ font-size: 12px;
339
+ background-color: var(--dl-color-panel-background);
340
+
341
+ & th {
342
+ cursor: grabbing !important;
343
+ }
344
+
345
+ & td {
346
+ border-color: transparent;
347
+ }
348
+
349
+ &--col {
350
+ display: flex;
351
+ flex-direction: column;
352
+
353
+ & td {
354
+ text-align: center;
355
+ height: 40px;
356
+ }
357
+ }
358
+ }
359
+ }
360
+
361
+ .draggable-icon {
362
+ cursor: grab;
363
+
364
+ &:active {
365
+ cursor: grabbing !important
366
+ }
367
+ }
368
+
369
+ /*
370
+ * dense size
371
+ */
372
+
373
+ .dl-table--dense {
374
+ .dl-table__top {
375
+ position: relative;
376
+ padding: 5px 16px;
377
+ }
378
+
379
+ .dl-table__bottom {
380
+ min-height: 33px;
381
+ }
382
+
383
+ .dl-table__sort-icon {
384
+ // font-size: 110%;
385
+ font-size: 80%;
386
+ }
387
+
388
+ .dl-table {
389
+
390
+ th {
391
+ font-size: 12px;
392
+ line-height: 12px;
393
+ }
394
+
395
+ thead tr {
396
+ height: 24px;
397
+ }
398
+
399
+ tbody tr {
400
+ height: 28px;
401
+ }
402
+
403
+ .dl-table-cell-inner-div {
404
+ padding: 7px 16px;
405
+ }
406
+ }
407
+
408
+ .dl-table__bottom-item {
409
+ margin-right: 8px;
410
+ }
411
+
412
+ .dl-table__select {
413
+
414
+ .dl-field__control,
415
+ .dl-field__native {
416
+ min-height: 24px;
417
+ padding: 0;
418
+ }
419
+
420
+ .dl-field__marginal {
421
+ height: 24px;
422
+ }
423
+ }
424
+ }
425
+
426
+ /*
427
+ * Separators
428
+ */
429
+ .dl-table--none-separator {
430
+ thead th {
431
+ border-bottom-width: 1px;
432
+ }
433
+ }
434
+
435
+ .dl-table--horizontal-separator,
436
+ .dl-table--cell-separator {
437
+
438
+ thead th,
439
+ tbody tr:not(:last-child)>td {
440
+ border-bottom-width: 1px;
441
+ }
442
+ }
443
+
444
+ .dl-table--vertical-separator,
445
+ .dl-table--cell-separator {
446
+
447
+ td,
448
+ th {
449
+ border-left-width: 1px;
450
+ }
451
+
452
+ thead tr:last-child th,
453
+ &.dl-table--loading tr:nth-last-child(2) th {
454
+ border-bottom-width: 1px;
455
+ }
456
+
457
+ td:first-child,
458
+ th:first-child {
459
+ border-left: 0;
460
+ }
461
+
462
+ .dl-table__top {
463
+ position: relative;
464
+ border-bottom: 1px solid var(--dl-color-separator);
465
+ }
466
+ }
@@ -0,0 +1,64 @@
1
+ import { isVue2, computed } from 'vue-demi'
2
+
3
+ export const useTableActionsV2Props = {
4
+ rowClick: {
5
+ type: Function,
6
+ default: null as Function | null
7
+ },
8
+ rowDblclick: {
9
+ type: Function,
10
+ default: null as Function | null
11
+ },
12
+ rowContextmenu: {
13
+ type: Function,
14
+ default: null as Function | null
15
+ }
16
+ }
17
+
18
+ export const useTableActionsV3Props = {
19
+ onRowClick: {
20
+ type: Function,
21
+ default: null as Function | null
22
+ },
23
+ onRowDblclick: {
24
+ type: Function,
25
+ default: null as Function | null
26
+ },
27
+ onRowContextmenu: {
28
+ type: Function,
29
+ default: null as Function | null
30
+ }
31
+ }
32
+
33
+ export const useTableActionsProps = isVue2
34
+ ? useTableActionsV2Props
35
+ : useTableActionsV3Props
36
+
37
+ export function useTableActions(props: any) {
38
+ const hasClickEvent = computed(() =>
39
+ Boolean(props.onRowClick || props.rowClick)
40
+ )
41
+
42
+ const hasDblClickEvent = computed(() =>
43
+ Boolean(props.onRowDblclick || props.rowDblclick)
44
+ )
45
+
46
+ const hasContextMenuEvent = computed(() =>
47
+ Boolean(props.onRowContextmenu || props.rowContextmenu)
48
+ )
49
+
50
+ const hasAnyAction = computed(() =>
51
+ [
52
+ hasClickEvent.value,
53
+ hasDblClickEvent.value,
54
+ hasContextMenuEvent.value
55
+ ].some((item) => item === true)
56
+ )
57
+
58
+ return {
59
+ hasClickEvent,
60
+ hasDblClickEvent,
61
+ hasContextMenuEvent,
62
+ hasAnyAction
63
+ }
64
+ }
@@ -0,0 +1,112 @@
1
+ import { computed, ComputedRef } from 'vue-demi'
2
+
3
+ import { isNumber } from '../../../utils/is'
4
+ import { TableProps, TableColumn, TableRow } from '../types'
5
+ import { TablePagination } from './tablePagination'
6
+
7
+ export const useTableColumnSelectionProps = {
8
+ visibleColumns: Array
9
+ }
10
+
11
+ export function useTableColumnSelection(
12
+ props: TableProps,
13
+ computedPagination: ComputedRef<TablePagination>,
14
+ hasSelectionMode: ComputedRef<boolean>,
15
+ hasDraggableRows: ComputedRef<boolean>
16
+ ) {
17
+ const colList = computed(() => {
18
+ if (props.columns !== void 0) {
19
+ return props.columns
20
+ }
21
+
22
+ // we infer columns from first row
23
+ const row = props.rows[0]
24
+
25
+ return (
26
+ row !== void 0
27
+ ? Object.keys(row).map((name) => ({
28
+ name,
29
+ label: name.toUpperCase(),
30
+ field: name,
31
+ align: isNumber(row[name]) ? 'right' : 'left',
32
+ sortable: true
33
+ }))
34
+ : []
35
+ ) as TableColumn[]
36
+ })
37
+
38
+ const computedCols = computed(() => {
39
+ const { sortBy, descending } = computedPagination.value
40
+
41
+ const cols =
42
+ props.visibleColumns !== void 0
43
+ ? colList.value.filter(
44
+ (col) =>
45
+ col.required === true ||
46
+ props.visibleColumns.includes(col.name) === true
47
+ )
48
+ : colList.value
49
+
50
+ const updatedCols = cols.map((col) => {
51
+ const align = col.align || 'right'
52
+ const alignClass = `text-${align}`
53
+
54
+ return {
55
+ ...col,
56
+ align,
57
+ iconClass: `dl-table__sort-icon dl-table__sort-icon--${align}`,
58
+ thClass:
59
+ alignClass +
60
+ (col.headerClasses !== void 0
61
+ ? ' ' + col.headerClasses
62
+ : '') +
63
+ (col.sortable === true ? ' sortable' : '') +
64
+ (col.name === sortBy
65
+ ? ` sorted ${descending === true ? 'sort-desc' : ''}`
66
+ : ''),
67
+
68
+ tdStyle:
69
+ col.style !== void 0
70
+ ? typeof col.style !== 'function'
71
+ ? () => col.style
72
+ : col.style
73
+ : () => '',
74
+
75
+ tdClass:
76
+ col.classes !== void 0
77
+ ? typeof col.classes !== 'function'
78
+ ? () => alignClass + ' ' + col.classes
79
+ : (row: TableRow) =>
80
+ alignClass +
81
+ ' ' +
82
+ (col.classes as Function)(row)
83
+ : () => alignClass
84
+ }
85
+ })
86
+
87
+ return updatedCols
88
+ })
89
+
90
+ const computedColsMap = computed(() => {
91
+ const names: Record<string, TableColumn> = {}
92
+ computedCols.value.forEach((col) => {
93
+ names[col.name] = col
94
+ })
95
+ return names
96
+ })
97
+
98
+ const computedColspan = computed(() => {
99
+ return props.tableColspan !== void 0
100
+ ? props.tableColspan
101
+ : computedCols.value.length +
102
+ (hasSelectionMode.value === true ? 1 : 0) +
103
+ (hasDraggableRows.value === true ? 1 : 0)
104
+ })
105
+
106
+ return {
107
+ colList,
108
+ computedCols,
109
+ computedColsMap,
110
+ computedColspan
111
+ }
112
+ }
@@ -0,0 +1,42 @@
1
+ import { computed, watch, nextTick } from 'vue-demi'
2
+ import { TableProps, FilterMethod } from '../types'
3
+
4
+ export const useTableFilterProps = {
5
+ filter: [String, Object],
6
+ filterMethod: Function
7
+ }
8
+
9
+ export function useTableFilter(props: any, setPagination: Function) {
10
+ const computedFilterMethod = computed(
11
+ () =>
12
+ (props.filterMethod !== void 0
13
+ ? props.filterMethod
14
+ : (rows, filterTerms, cols, cellValue) => {
15
+ const lowerTerms = filterTerms
16
+ ? filterTerms.toLowerCase()
17
+ : ''
18
+ return rows.filter((row) =>
19
+ cols.some((col) => {
20
+ const val = cellValue(col, row) + ''
21
+ const haystack =
22
+ val === 'undefined' || val === 'null'
23
+ ? ''
24
+ : val.toLowerCase()
25
+ return haystack.indexOf(lowerTerms) !== -1
26
+ })
27
+ )
28
+ }) as FilterMethod
29
+ )
30
+
31
+ watch(
32
+ () => props.filter,
33
+ () => {
34
+ nextTick(() => {
35
+ setPagination({ page: 1 }, true)
36
+ })
37
+ },
38
+ { deep: true }
39
+ )
40
+
41
+ return { computedFilterMethod }
42
+ }