linkmore-design 1.1.28 → 1.1.30

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 (266) hide show
  1. package/dist/Form/FormItem/index.d.ts +1 -0
  2. package/dist/LmEditTable/DndContainer.d.ts +6 -3
  3. package/dist/LmEditTable/EditTable.d.ts +16 -5
  4. package/dist/LmEditTable/components/DraggableContainer.d.ts +10 -0
  5. package/dist/LmEditTable/components/QuickOpetate.d.ts +12 -0
  6. package/dist/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
  7. package/dist/LmEditTable/components/customRenderEmpty.d.ts +2 -0
  8. package/dist/LmEditTable/components/index.d.ts +17 -0
  9. package/dist/LmEditTable/hooks/useForkRef.d.ts +2 -0
  10. package/dist/LmEditTable/rowSort/DndContainerRow.d.ts +10 -0
  11. package/dist/LmEditTable/sortableItem.d.ts +3 -2
  12. package/dist/LmEditTable/util.d.ts +10 -0
  13. package/dist/LmEditTable/virtual/VirtualRow.d.ts +7 -0
  14. package/dist/LmEditTable/virtual/VirtualRow2.d.ts +7 -0
  15. package/dist/LmEditTable/virtual/VirtualTable.d.ts +3 -0
  16. package/dist/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
  17. package/dist/LmEditTable/virtual/context.d.ts +13 -0
  18. package/dist/LmEditTable/virtual/index.d.ts +4 -0
  19. package/dist/LmTable/common/index.d.ts +10 -0
  20. package/dist/LmTable/components/CalcExpression.d.ts +9 -0
  21. package/dist/LmTable/components/Container/Container.d.ts +20 -0
  22. package/dist/LmTable/components/Container/index.d.ts +2 -0
  23. package/dist/LmTable/components/DndContainer.d.ts +37 -5
  24. package/dist/LmTable/components/HeaderCol.d.ts +1 -0
  25. package/dist/LmTable/components/Item/Item.d.ts +37 -0
  26. package/dist/LmTable/components/Item/components/Action/Action.d.ts +10 -0
  27. package/dist/LmTable/components/Item/components/Action/index.d.ts +2 -0
  28. package/dist/LmTable/components/Item/components/Handle/index.d.ts +4 -0
  29. package/dist/LmTable/components/Item/components/Remove/index.d.ts +2 -0
  30. package/dist/LmTable/components/Item/components/index.d.ts +3 -0
  31. package/dist/LmTable/components/Item/index.d.ts +2 -0
  32. package/dist/LmTable/components/{sortableBoxCol.d.ts → SortableBox.d.ts} +0 -0
  33. package/dist/LmTable/demos/{excelGroup.d.ts → draggable.d.ts} +0 -0
  34. package/dist/LmTable/demos/resize.d.ts +2 -0
  35. package/dist/LmTable/expression.d.ts +2 -1
  36. package/dist/LmTable/hooks/useDndItems.d.ts +13 -0
  37. package/dist/LmTable/hooks/useGroupDataSource.d.ts +1 -2
  38. package/dist/LmTable/hooks/useResizeObserver.d.ts +13 -0
  39. package/dist/LmTable/multipleContainersKeyboardCoordinates.d.ts +3 -0
  40. package/dist/LmTable/testDemos/group.d.ts +2 -0
  41. package/dist/LmTable/util.d.ts +1 -1
  42. package/dist/LmTable/virTual/VirtualRow.d.ts +1 -1
  43. package/dist/index.d.ts +1 -2
  44. package/dist/index.umd.css +367 -0
  45. package/dist/index.umd.js +4362 -52840
  46. package/dist/index.umd.min.css +1 -1
  47. package/dist/index.umd.min.js +23 -47
  48. package/dist/variables.css +129 -6
  49. package/es/CardTable/style/index.css +3 -2
  50. package/es/CardTable/style/variables.css +3 -2
  51. package/es/CustomTableOption/columnsSort.js +41 -19
  52. package/es/CustomTableOption/filterSort.js +14 -6
  53. package/es/CustomTableOption/style/index.css +3 -0
  54. package/es/CustomTableOption/style/variables.css +3 -0
  55. package/es/Dropdown/style/index.css +1 -1
  56. package/es/Dropdown/style/variables.css +1 -1
  57. package/es/Empty/index.js +0 -1
  58. package/es/Form/FormItem/index.d.ts +1 -0
  59. package/es/Form/FormItem/index.js +31 -17
  60. package/es/Form/style/index.css +4 -0
  61. package/es/Form/style/variables.css +4 -0
  62. package/es/InputNumber/index.js +7 -9
  63. package/es/LmEditTable/DndContainer.d.ts +6 -3
  64. package/es/LmEditTable/DndContainer.js +70 -10
  65. package/es/LmEditTable/DragHandle.js +1 -1
  66. package/es/LmEditTable/EditTable.d.ts +16 -5
  67. package/es/LmEditTable/EditTable.js +855 -436
  68. package/es/LmEditTable/components/DraggableContainer.d.ts +10 -0
  69. package/es/LmEditTable/components/DraggableContainer.js +39 -0
  70. package/es/LmEditTable/components/QuickOpetate.d.ts +12 -0
  71. package/es/LmEditTable/components/QuickOpetate.js +82 -0
  72. package/es/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
  73. package/es/LmEditTable/components/bottomOpetateComponent.js +23 -0
  74. package/es/LmEditTable/components/customRenderEmpty.d.ts +2 -0
  75. package/es/LmEditTable/components/customRenderEmpty.js +20 -0
  76. package/es/LmEditTable/components/index.d.ts +17 -0
  77. package/es/LmEditTable/components/index.js +8 -0
  78. package/es/LmEditTable/hooks/useForkRef.d.ts +2 -0
  79. package/es/LmEditTable/hooks/useForkRef.js +22 -0
  80. package/es/LmEditTable/rowSort/DndContainerRow.d.ts +10 -0
  81. package/es/LmEditTable/rowSort/DndContainerRow.js +83 -0
  82. package/es/LmEditTable/sortableItem.d.ts +3 -2
  83. package/es/LmEditTable/sortableItem.js +16 -4
  84. package/es/LmEditTable/sortableItemCol.js +40 -10
  85. package/es/LmEditTable/style/index.css +105 -1
  86. package/es/LmEditTable/style/variables.css +105 -1
  87. package/es/LmEditTable/util.d.ts +10 -0
  88. package/es/LmEditTable/util.js +162 -9
  89. package/es/LmEditTable/virtual/VirtualRow.d.ts +7 -0
  90. package/es/LmEditTable/virtual/VirtualRow.js +148 -0
  91. package/es/LmEditTable/virtual/VirtualRow2.d.ts +7 -0
  92. package/es/LmEditTable/virtual/VirtualRow2.js +62 -0
  93. package/es/LmEditTable/virtual/VirtualTable.d.ts +3 -0
  94. package/es/LmEditTable/virtual/VirtualTable.js +64 -0
  95. package/es/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
  96. package/es/LmEditTable/virtual/VirtualWrapper.js +60 -0
  97. package/es/LmEditTable/virtual/context.d.ts +13 -0
  98. package/es/LmEditTable/virtual/context.js +66 -0
  99. package/es/LmEditTable/virtual/index.d.ts +4 -0
  100. package/es/LmEditTable/virtual/index.js +4 -0
  101. package/es/LmTable/Table.js +269 -163
  102. package/es/LmTable/common/index.d.ts +10 -0
  103. package/es/LmTable/common/index.js +38 -0
  104. package/es/LmTable/components/CalcExpression.d.ts +9 -0
  105. package/es/LmTable/components/CalcExpression.js +150 -0
  106. package/es/LmTable/components/Container/Container.css +94 -0
  107. package/es/LmTable/components/Container/Container.d.ts +20 -0
  108. package/es/LmTable/components/Container/Container.js +52 -0
  109. package/es/LmTable/components/Container/index.d.ts +2 -0
  110. package/es/LmTable/components/Container/index.js +1 -0
  111. package/es/LmTable/components/DndContainer.d.ts +37 -5
  112. package/es/LmTable/components/DndContainer.js +704 -24
  113. package/es/LmTable/components/HeaderCol.js +61 -0
  114. package/es/LmTable/components/Item/Item.css +113 -0
  115. package/es/LmTable/components/Item/Item.d.ts +37 -0
  116. package/es/LmTable/components/Item/Item.js +88 -0
  117. package/es/LmTable/components/Item/components/Action/Action.css +41 -0
  118. package/es/LmTable/components/Item/components/Action/Action.d.ts +10 -0
  119. package/es/LmTable/components/Item/components/Action/Action.js +35 -0
  120. package/es/LmTable/components/Item/components/Action/index.d.ts +2 -0
  121. package/es/LmTable/components/Item/components/Action/index.js +1 -0
  122. package/es/LmTable/components/Item/components/Handle/index.d.ts +4 -0
  123. package/es/LmTable/components/Item/components/Handle/index.js +15 -0
  124. package/es/LmTable/components/Item/components/Remove/index.d.ts +2 -0
  125. package/es/LmTable/components/Item/components/Remove/index.js +16 -0
  126. package/es/LmTable/components/Item/components/index.d.ts +3 -0
  127. package/es/LmTable/components/Item/components/index.js +3 -0
  128. package/es/LmTable/components/Item/index.d.ts +2 -0
  129. package/es/LmTable/components/Item/index.js +2 -0
  130. package/es/LmTable/components/{sortableBoxCol.js → SortableBox.js} +0 -0
  131. package/es/LmTable/expression.d.ts +2 -1
  132. package/es/LmTable/expression.js +92 -16
  133. package/es/LmTable/hooks/useDndItems.d.ts +13 -0
  134. package/es/LmTable/hooks/useDndItems.js +234 -0
  135. package/es/LmTable/hooks/useGroupDataSource.js +2 -24
  136. package/es/LmTable/hooks/useResizeObserver.d.ts +13 -0
  137. package/es/LmTable/hooks/useResizeObserver.js +49 -0
  138. package/es/LmTable/multipleContainersKeyboardCoordinates.d.ts +3 -0
  139. package/es/LmTable/multipleContainersKeyboardCoordinates.js +117 -0
  140. package/es/LmTable/style/index.css +13 -2
  141. package/es/LmTable/style/variables.css +13 -2
  142. package/es/LmTable/testDemos/group.js +131 -0
  143. package/es/LmTable/util.js +22 -2
  144. package/es/LmTable/virTual/VirtualRow.d.ts +1 -1
  145. package/es/LmTable/virTual/VirtualRow.js +82 -48
  146. package/es/LmTable/virTual/VirtualTable.js +43 -11
  147. package/es/LmTable/virTual/context.js +14 -2
  148. package/es/LmUpload/fns/index.js +1 -1
  149. package/es/Modal/index.js +10 -3
  150. package/es/Radio/index.js +9 -1
  151. package/es/Switch/index.js +7 -2
  152. package/es/hooks/useEvent/index.js +1 -1
  153. package/es/index.d.ts +1 -2
  154. package/es/locale-provider/index.js +1 -1
  155. package/es/styles/variables.css +129 -6
  156. package/lib/CardTable/style/index.css +3 -2
  157. package/lib/CardTable/style/variables.css +3 -2
  158. package/lib/CustomTableOption/columnsSort.js +48 -23
  159. package/lib/CustomTableOption/filterSort.js +19 -10
  160. package/lib/CustomTableOption/style/index.css +3 -0
  161. package/lib/CustomTableOption/style/variables.css +3 -0
  162. package/lib/Dropdown/style/index.css +1 -1
  163. package/lib/Dropdown/style/variables.css +1 -1
  164. package/lib/Empty/index.js +0 -1
  165. package/lib/Form/FormItem/index.d.ts +1 -0
  166. package/lib/Form/FormItem/index.js +32 -17
  167. package/lib/Form/style/index.css +4 -0
  168. package/lib/Form/style/variables.css +4 -0
  169. package/lib/InputNumber/index.js +9 -9
  170. package/lib/LmEditTable/DndContainer.d.ts +6 -3
  171. package/lib/LmEditTable/DndContainer.js +74 -9
  172. package/lib/LmEditTable/DragHandle.js +1 -1
  173. package/lib/LmEditTable/EditTable.d.ts +16 -5
  174. package/lib/LmEditTable/EditTable.js +853 -433
  175. package/lib/LmEditTable/components/DraggableContainer.d.ts +10 -0
  176. package/lib/LmEditTable/components/DraggableContainer.js +52 -0
  177. package/lib/LmEditTable/components/QuickOpetate.d.ts +12 -0
  178. package/lib/LmEditTable/components/QuickOpetate.js +96 -0
  179. package/lib/LmEditTable/components/bottomOpetateComponent.d.ts +13 -0
  180. package/lib/LmEditTable/components/bottomOpetateComponent.js +34 -0
  181. package/lib/LmEditTable/components/customRenderEmpty.d.ts +2 -0
  182. package/lib/LmEditTable/components/customRenderEmpty.js +32 -0
  183. package/lib/LmEditTable/components/index.d.ts +17 -0
  184. package/lib/LmEditTable/components/index.js +45 -0
  185. package/lib/LmEditTable/hooks/useForkRef.d.ts +2 -0
  186. package/lib/LmEditTable/hooks/useForkRef.js +29 -0
  187. package/lib/LmEditTable/rowSort/DndContainerRow.d.ts +10 -0
  188. package/lib/LmEditTable/rowSort/DndContainerRow.js +100 -0
  189. package/lib/LmEditTable/sortableItem.d.ts +3 -2
  190. package/lib/LmEditTable/sortableItem.js +19 -5
  191. package/lib/LmEditTable/sortableItemCol.js +37 -8
  192. package/lib/LmEditTable/style/index.css +105 -1
  193. package/lib/LmEditTable/style/variables.css +105 -1
  194. package/lib/LmEditTable/util.d.ts +10 -0
  195. package/lib/LmEditTable/util.js +171 -8
  196. package/lib/LmEditTable/virtual/VirtualRow.d.ts +7 -0
  197. package/lib/LmEditTable/virtual/VirtualRow.js +164 -0
  198. package/lib/LmEditTable/virtual/VirtualRow2.d.ts +7 -0
  199. package/lib/LmEditTable/virtual/VirtualRow2.js +78 -0
  200. package/lib/LmEditTable/virtual/VirtualTable.d.ts +3 -0
  201. package/lib/LmEditTable/virtual/VirtualTable.js +81 -0
  202. package/lib/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
  203. package/lib/LmEditTable/virtual/VirtualWrapper.js +73 -0
  204. package/lib/LmEditTable/virtual/context.d.ts +13 -0
  205. package/lib/LmEditTable/virtual/context.js +76 -0
  206. package/lib/LmEditTable/virtual/index.d.ts +4 -0
  207. package/lib/LmEditTable/virtual/index.js +31 -0
  208. package/lib/LmTable/Table.js +269 -163
  209. package/lib/LmTable/common/index.d.ts +10 -0
  210. package/lib/LmTable/common/index.js +48 -0
  211. package/lib/LmTable/components/CalcExpression.d.ts +9 -0
  212. package/lib/LmTable/components/CalcExpression.js +166 -0
  213. package/lib/LmTable/components/Container/Container.css +94 -0
  214. package/lib/LmTable/components/Container/Container.d.ts +20 -0
  215. package/lib/LmTable/components/Container/Container.js +66 -0
  216. package/lib/LmTable/components/Container/index.d.ts +2 -0
  217. package/lib/LmTable/components/Container/index.js +13 -0
  218. package/lib/LmTable/components/DndContainer.d.ts +37 -5
  219. package/lib/LmTable/components/DndContainer.js +714 -26
  220. package/lib/LmTable/components/HeaderCol.js +61 -0
  221. package/lib/LmTable/components/Item/Item.css +113 -0
  222. package/lib/LmTable/components/Item/Item.d.ts +37 -0
  223. package/lib/LmTable/components/Item/Item.js +104 -0
  224. package/lib/LmTable/components/Item/components/Action/Action.css +41 -0
  225. package/lib/LmTable/components/Item/components/Action/Action.d.ts +10 -0
  226. package/lib/LmTable/components/Item/components/Action/Action.js +50 -0
  227. package/lib/LmTable/components/Item/components/Action/index.d.ts +2 -0
  228. package/lib/LmTable/components/Item/components/Action/index.js +13 -0
  229. package/lib/LmTable/components/Item/components/Handle/index.d.ts +4 -0
  230. package/lib/LmTable/components/Item/components/Handle/index.js +27 -0
  231. package/lib/LmTable/components/Item/components/Remove/index.d.ts +2 -0
  232. package/lib/LmTable/components/Item/components/Remove/index.js +27 -0
  233. package/lib/LmTable/components/Item/components/index.d.ts +3 -0
  234. package/lib/LmTable/components/Item/components/index.js +31 -0
  235. package/lib/LmTable/components/Item/index.d.ts +2 -0
  236. package/lib/LmTable/components/Item/index.js +33 -0
  237. package/lib/LmTable/components/{sortableBoxCol.js → SortableBox.js} +0 -0
  238. package/lib/LmTable/expression.d.ts +2 -1
  239. package/lib/LmTable/expression.js +96 -17
  240. package/lib/LmTable/hooks/useDndItems.d.ts +13 -0
  241. package/lib/LmTable/hooks/useDndItems.js +247 -0
  242. package/lib/LmTable/hooks/useGroupDataSource.js +2 -24
  243. package/lib/LmTable/hooks/useResizeObserver.d.ts +13 -0
  244. package/lib/LmTable/hooks/useResizeObserver.js +61 -0
  245. package/lib/LmTable/multipleContainersKeyboardCoordinates.d.ts +3 -0
  246. package/lib/LmTable/multipleContainersKeyboardCoordinates.js +126 -0
  247. package/lib/LmTable/style/index.css +13 -2
  248. package/lib/LmTable/style/variables.css +13 -2
  249. package/lib/LmTable/testDemos/group.js +131 -0
  250. package/lib/LmTable/util.js +22 -2
  251. package/lib/LmTable/virTual/VirtualRow.d.ts +1 -1
  252. package/lib/LmTable/virTual/VirtualRow.js +81 -48
  253. package/lib/LmTable/virTual/VirtualTable.js +43 -10
  254. package/lib/LmTable/virTual/context.js +14 -2
  255. package/lib/LmUpload/fns/index.js +1 -1
  256. package/lib/Modal/index.js +10 -3
  257. package/lib/Radio/index.js +9 -1
  258. package/lib/Switch/index.js +9 -2
  259. package/lib/hooks/useEvent/index.js +1 -1
  260. package/lib/index.d.ts +1 -2
  261. package/lib/locale-provider/index.js +1 -1
  262. package/lib/styles/variables.css +129 -6
  263. package/package.json +3 -5
  264. package/dist/LmTable/components/sortableItemCol.d.ts +0 -1
  265. package/es/LmTable/components/sortableItemCol.js +0 -56
  266. package/lib/LmTable/components/sortableItemCol.js +0 -56
@@ -27470,6 +27470,373 @@ div.ant-typography-edit-content.ant-typography-rtl {
27470
27470
  width: auto;
27471
27471
  }
27472
27472
 
27473
+ .dnd_item_actions {
27474
+ display: -webkit-box;
27475
+ display: -ms-flexbox;
27476
+ display: -webkit-flex;
27477
+ display: flex;
27478
+ width: 12px;
27479
+ margin-left: 6px;
27480
+ -webkit-box-align: center;
27481
+ -ms-flex-align: center;
27482
+ align-items: center;
27483
+ -webkit-box-pack: center;
27484
+ -ms-flex-pack: center;
27485
+ justify-content: center;
27486
+ -webkit-box-flex: 0;
27487
+ -ms-flex: 0 0 auto;
27488
+ flex: 0 0 auto;
27489
+ -ms-touch-action: none;
27490
+ touch-action: none;
27491
+ cursor: var(--cursor, pointer);
27492
+ border-radius: 5px;
27493
+ border: none;
27494
+ outline: none;
27495
+ -webkit-appearance: none;
27496
+ -moz-appearance: none;
27497
+ appearance: none;
27498
+ background-color: transparent;
27499
+ -webkit-tap-highlight-color: transparent;
27500
+ }
27501
+ @media (hover: hover) {
27502
+ .dnd_item_actions:hover {
27503
+ background-color: var(--action-background, rgba(0, 0, 0, 0.05));
27504
+ }
27505
+ .dnd_item_actions:hover svg {
27506
+ fill: #6f7b88;
27507
+ }
27508
+ }
27509
+ .dnd_item_actions svg {
27510
+ -webkit-box-flex: 0;
27511
+ -ms-flex: 0 0 auto;
27512
+ flex: 0 0 auto;
27513
+ margin: auto;
27514
+ height: 100%;
27515
+ overflow: visible;
27516
+ fill: #919eab;
27517
+ }
27518
+ .dnd_item_actions:active {
27519
+ background-color: var(--background, rgba(0, 0, 0, 0.05));
27520
+ }
27521
+ .dnd_item_actions:active svg {
27522
+ fill: var(--fill, #788491);
27523
+ }
27524
+ .dnd_item_actions:focus-visible {
27525
+ outline: none;
27526
+ -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0px 0px 2px #4c9ffe;
27527
+ box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0px 0px 2px #4c9ffe;
27528
+ }
27529
+
27530
+ @-webkit-keyframes pop {
27531
+ 0% {
27532
+ -webkit-transform: scale(1);
27533
+ transform: scale(1);
27534
+ -webkit-box-shadow: var(--box-shadow);
27535
+ box-shadow: var(--box-shadow);
27536
+ }
27537
+ 100% {
27538
+ -webkit-transform: scale(var(--scale));
27539
+ transform: scale(var(--scale));
27540
+ -webkit-box-shadow: var(--box-shadow-picked-up);
27541
+ box-shadow: var(--box-shadow-picked-up);
27542
+ }
27543
+ }
27544
+ @keyframes pop {
27545
+ 0% {
27546
+ -webkit-transform: scale(1);
27547
+ transform: scale(1);
27548
+ -webkit-box-shadow: var(--box-shadow);
27549
+ box-shadow: var(--box-shadow);
27550
+ }
27551
+ 100% {
27552
+ -webkit-transform: scale(var(--scale));
27553
+ transform: scale(var(--scale));
27554
+ -webkit-box-shadow: var(--box-shadow-picked-up);
27555
+ box-shadow: var(--box-shadow-picked-up);
27556
+ }
27557
+ }
27558
+ @-webkit-keyframes fadeIn {
27559
+ 0% {
27560
+ opacity: 0;
27561
+ }
27562
+ 100% {
27563
+ opacity: 1;
27564
+ }
27565
+ }
27566
+ @keyframes fadeIn {
27567
+ 0% {
27568
+ opacity: 0;
27569
+ }
27570
+ 100% {
27571
+ opacity: 1;
27572
+ }
27573
+ }
27574
+ .dnd_com_item_Wrapper {
27575
+ display: -webkit-box;
27576
+ display: -ms-flexbox;
27577
+ display: -webkit-flex;
27578
+ display: flex;
27579
+ -webkit-box-sizing: border-box;
27580
+ box-sizing: border-box;
27581
+ -webkit-transform: translate3d(var(--translate-x, 0), var(--translate-y, 0), 0) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1));
27582
+ transform: translate3d(var(--translate-x, 0), var(--translate-y, 0), 0) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1));
27583
+ -webkit-transform-origin: 0 0;
27584
+ transform-origin: 0 0;
27585
+ -ms-touch-action: manipulation;
27586
+ touch-action: manipulation;
27587
+ margin-right: 6px;
27588
+ margin-bottom: 6px;
27589
+ }
27590
+ .dnd_com_item_Wrapper.fadeIn {
27591
+ -webkit-animation: fadeIn 500ms ease;
27592
+ animation: fadeIn 500ms ease;
27593
+ }
27594
+ .dnd_com_item_Wrapper.dragOverlay {
27595
+ --scale: 1.05;
27596
+ --box-shadow: 0 0 0 -webkit-calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px -webkit-calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27597
+ --box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27598
+ --box-shadow-picked-up: 0 0 0 -webkit-calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05),
27599
+ -1px 0 15px 0 rgba(1, 1, 1, 0.01),
27600
+ 0px 15px 15px 0 rgba(34, 33, 81, 0.25);
27601
+ --box-shadow-picked-up: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05),
27602
+ -1px 0 15px 0 rgba(1, 1, 1, 0.01),
27603
+ 0px 15px 15px 0 rgba(34, 33, 81, 0.25);
27604
+ z-index: 999;
27605
+ }
27606
+ .dnd_com_Item {
27607
+ position: relative;
27608
+ display: -webkit-box;
27609
+ display: -ms-flexbox;
27610
+ display: -webkit-flex;
27611
+ display: flex;
27612
+ -webkit-box-flex: 1;
27613
+ -ms-flex-positive: 1;
27614
+ flex-grow: 1;
27615
+ -webkit-box-align: center;
27616
+ -ms-flex-align: center;
27617
+ align-items: center;
27618
+ padding: 6px;
27619
+ background-color: #fff;
27620
+ -webkit-box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27621
+ box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27622
+ outline: none;
27623
+ border-radius: -webkit-calc(4px / var(--scale-x, 1));
27624
+ border-radius: calc(4px / var(--scale-x, 1));
27625
+ -webkit-box-sizing: border-box;
27626
+ box-sizing: border-box;
27627
+ list-style: none;
27628
+ -webkit-transform-origin: 50% 50%;
27629
+ transform-origin: 50% 50%;
27630
+ -webkit-tap-highlight-color: transparent;
27631
+ color: #333;
27632
+ font-weight: 400;
27633
+ font-size: 12px;
27634
+ white-space: nowrap;
27635
+ -webkit-transform: scale(var(--scale, 1));
27636
+ transform: scale(var(--scale, 1));
27637
+ -webkit-transition: box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27638
+ -webkit-transition: -webkit-box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27639
+ transition: -webkit-box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27640
+ transition: box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27641
+ transition: box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22), -webkit-box-shadow 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27642
+ }
27643
+ .dnd_com_Item:focus-visible {
27644
+ -webkit-box-shadow: 0 0px 4px 1px #4c9ffe, 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27645
+ box-shadow: 0 0px 4px 1px #4c9ffe, 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27646
+ }
27647
+ .dnd_com_Item:not(.withHandle) {
27648
+ -ms-touch-action: manipulation;
27649
+ touch-action: manipulation;
27650
+ cursor: -webkit-grab;
27651
+ cursor: grab;
27652
+ }
27653
+ .dnd_com_Item.dragging:not(.dragOverlay) {
27654
+ opacity: var(--dragging-opacity, 0.5);
27655
+ z-index: 0;
27656
+ }
27657
+ .dnd_com_Item.dragging:not(.dragOverlay):focus {
27658
+ -webkit-box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27659
+ box-shadow: 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27660
+ }
27661
+ .dnd_com_Item.disabled {
27662
+ color: #999;
27663
+ background-color: #f1f1f1;
27664
+ cursor: not-allowed;
27665
+ }
27666
+ .dnd_com_Item.disabled:focus {
27667
+ -webkit-box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.1), 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27668
+ box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.1), 0 0 0 calc(1px / var(--scale-x, 1)) rgba(63, 63, 68, 0.05), 0 1px calc(3px / var(--scale-x, 1)) 0 rgba(34, 33, 81, 0.15);
27669
+ }
27670
+ .dnd_com_Item.dragOverlay {
27671
+ cursor: inherit;
27672
+ /* box-shadow: 0 0px 6px 2px @focused-outline-color; */
27673
+ -webkit-animation: pop 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27674
+ animation: pop 200ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
27675
+ -webkit-transform: scale(var(--scale));
27676
+ transform: scale(var(--scale));
27677
+ -webkit-box-shadow: var(--box-shadow-picked-up);
27678
+ box-shadow: var(--box-shadow-picked-up);
27679
+ opacity: 1;
27680
+ }
27681
+ .dnd_com_Item.color:before {
27682
+ content: '';
27683
+ position: absolute;
27684
+ top: 50%;
27685
+ -webkit-transform: translateY(-50%);
27686
+ transform: translateY(-50%);
27687
+ left: 0;
27688
+ height: 100%;
27689
+ width: 3px;
27690
+ display: block;
27691
+ border-top-left-radius: 3px;
27692
+ border-bottom-left-radius: 3px;
27693
+ background-color: var(--color);
27694
+ }
27695
+ .dnd_com_Item:hover .dnd_com_Remove {
27696
+ visibility: visible;
27697
+ }
27698
+ .dnd_com_Remove {
27699
+ margin-left: 6px;
27700
+ color: #666;
27701
+ }
27702
+ .dnd_com_Actions {
27703
+ display: -webkit-box;
27704
+ display: -ms-flexbox;
27705
+ display: -webkit-flex;
27706
+ display: flex;
27707
+ -webkit-box-align: center;
27708
+ -ms-flex-align: center;
27709
+ align-items: center;
27710
+ }
27711
+
27712
+ .dnd_container {
27713
+ display: -webkit-box;
27714
+ display: -ms-flexbox;
27715
+ display: -webkit-flex;
27716
+ display: flex;
27717
+ -webkit-box-orient: vertical;
27718
+ -webkit-box-direction: normal;
27719
+ -ms-flex-direction: column;
27720
+ flex-direction: column;
27721
+ grid-auto-rows: -webkit-max-content;
27722
+ grid-auto-rows: max-content;
27723
+ overflow: hidden;
27724
+ -webkit-box-sizing: border-box;
27725
+ box-sizing: border-box;
27726
+ -webkit-appearance: none;
27727
+ -moz-appearance: none;
27728
+ appearance: none;
27729
+ outline: none;
27730
+ -webkit-box-flex: 1;
27731
+ -ms-flex: 1;
27732
+ flex: 1;
27733
+ border-radius: 5px;
27734
+ margin-bottom: 10px;
27735
+ margin-right: 10px;
27736
+ -webkit-transition: background-color 350ms ease;
27737
+ transition: background-color 350ms ease;
27738
+ background-color: #fff;
27739
+ border: 1px solid rgba(0, 0, 0, 0.05);
27740
+ font-size: 1em;
27741
+ }
27742
+ .dnd_container:last-child {
27743
+ margin-right: 0;
27744
+ }
27745
+ .dnd_container.isNoneBorder {
27746
+ border: 0 !important;
27747
+ margin: 0;
27748
+ }
27749
+ .dnd_container ul {
27750
+ display: -webkit-box;
27751
+ display: -ms-flexbox;
27752
+ display: -webkit-flex;
27753
+ display: flex;
27754
+ -ms-flex-wrap: wrap;
27755
+ flex-wrap: wrap;
27756
+ list-style: none;
27757
+ padding: 10px;
27758
+ margin: 0;
27759
+ min-height: 57px;
27760
+ }
27761
+ .dnd_container ul.ulClassName {
27762
+ padding: 0px;
27763
+ }
27764
+ .dnd_container.scrollable ul {
27765
+ overflow-y: auto;
27766
+ }
27767
+ .dnd_container.placeholder {
27768
+ -webkit-box-pack: center;
27769
+ -ms-flex-pack: center;
27770
+ justify-content: center;
27771
+ -webkit-box-align: center;
27772
+ -ms-flex-align: center;
27773
+ align-items: center;
27774
+ cursor: pointer;
27775
+ color: rgba(0, 0, 0, 0.5);
27776
+ background-color: transparent;
27777
+ border-style: dashed;
27778
+ border-color: rgba(0, 0, 0, 0.08);
27779
+ }
27780
+ .dnd_container.placeholder:hover {
27781
+ border-color: rgba(0, 0, 0, 0.15);
27782
+ }
27783
+ .dnd_container.hover {
27784
+ background-color: #ebebeb;
27785
+ }
27786
+ .dnd_container.unstyled {
27787
+ overflow: visible;
27788
+ background-color: transparent !important;
27789
+ border: none !important;
27790
+ }
27791
+ .dnd_container.horizontal {
27792
+ width: 100%;
27793
+ }
27794
+ .dnd_container.horizontal ul {
27795
+ grid-auto-flow: column;
27796
+ }
27797
+ .dnd_container.shadow {
27798
+ -webkit-box-shadow: 0 1px 10px 0 rgba(34, 33, 81, 0.1);
27799
+ box-shadow: 0 1px 10px 0 rgba(34, 33, 81, 0.1);
27800
+ }
27801
+ .dnd_container:focus-visible {
27802
+ border-color: transparent;
27803
+ -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0px 0px 2px #4c9ffe;
27804
+ box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0px 0px 2px #4c9ffe;
27805
+ }
27806
+ .dnd_header {
27807
+ display: -webkit-box;
27808
+ display: -ms-flexbox;
27809
+ display: -webkit-flex;
27810
+ display: flex;
27811
+ padding: 5px 20px;
27812
+ padding-right: 8px;
27813
+ -webkit-box-align: center;
27814
+ -ms-flex-align: center;
27815
+ align-items: center;
27816
+ -webkit-box-pack: justify;
27817
+ -ms-flex-pack: justify;
27818
+ justify-content: space-between;
27819
+ background-color: #fff;
27820
+ border-top-left-radius: 5px;
27821
+ border-top-right-radius: 5px;
27822
+ border-bottom: 1px solid rgba(0, 0, 0, 0.08);
27823
+ }
27824
+ .dnd_header:hover .Actions > * {
27825
+ opacity: 1 !important;
27826
+ }
27827
+ .dnd_actions {
27828
+ display: -webkit-box;
27829
+ display: -ms-flexbox;
27830
+ display: -webkit-flex;
27831
+ display: flex;
27832
+ }
27833
+ .dnd_actions > *:first-child:not(:last-child) {
27834
+ opacity: 0;
27835
+ }
27836
+ .dnd_actions > *:first-child:not(:last-child):focus-visible {
27837
+ opacity: 1;
27838
+ }
27839
+
27473
27840
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
27474
27841
  /* stylelint-disable no-duplicate-selectors */
27475
27842
  /* stylelint-disable */