@onehat/ui 0.3.217 → 0.3.219
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -115,7 +115,7 @@ function GridComponent(props) {
|
|
|
115
115
|
canRowsReorder = false,
|
|
116
116
|
areRowsDragSource = false,
|
|
117
117
|
rowDragSourceType,
|
|
118
|
-
|
|
118
|
+
getRowDragSourceItem,
|
|
119
119
|
areRowsDropTarget = false,
|
|
120
120
|
dropTargetAccept,
|
|
121
121
|
onRowDrop,
|
|
@@ -458,12 +458,14 @@ function GridComponent(props) {
|
|
|
458
458
|
if (areRowsDragSource) {
|
|
459
459
|
rowDragProps.isDragSource = true;
|
|
460
460
|
rowDragProps.dragSourceType = rowDragSourceType;
|
|
461
|
-
rowDragProps.dragSourceItem =
|
|
461
|
+
rowDragProps.dragSourceItem = getRowDragSourceItem ? getRowDragSourceItem(item) : { id: item.id };
|
|
462
462
|
}
|
|
463
463
|
if (areRowsDropTarget) {
|
|
464
464
|
rowDragProps.isDropTarget = true;
|
|
465
465
|
rowDragProps.dropTargetAccept = dropTargetAccept;
|
|
466
466
|
rowDragProps.onDrop = (droppedItem) => {
|
|
467
|
+
// TODO: the item is somehow getting stale
|
|
468
|
+
// might have something to do with memoization
|
|
467
469
|
onRowDrop(item, droppedItem);
|
|
468
470
|
};
|
|
469
471
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.
|
|
2
|
+
import * as React from "react"
|
|
3
|
+
import Svg, { Path } from "react-native-svg"
|
|
4
|
+
|
|
5
|
+
function SvgComponent(props) {
|
|
6
|
+
return (
|
|
7
|
+
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" {...props}>
|
|
8
|
+
<Path d="M579.8 267.7c56.5-56.5 56.5-148 0-204.5-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6 31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0l112.3-112.3zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5 50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l112.2-112.3c31.5-31.5 82.5-31.5 114 0 27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z" />
|
|
9
|
+
</Svg>
|
|
10
|
+
)
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default SvgComponent
|
package/src/Components/index.js
CHANGED
|
@@ -93,6 +93,7 @@ import Info from '../Components/Icons/Info.js';
|
|
|
93
93
|
import ItunesNote from '../Components/Icons/ItunesNote.js';
|
|
94
94
|
import Js from '../Components/Icons/Js.js';
|
|
95
95
|
import Leaf from '../Components/Icons/Leaf.js';
|
|
96
|
+
import Link from '../Components/Icons/Link.js';
|
|
96
97
|
import List from '../Components/Icons/List.js';
|
|
97
98
|
import ListCheck from '../Components/Icons/ListCheck.js';
|
|
98
99
|
import LocationDot from '../Components/Icons/LocationDot.js';
|
|
@@ -326,6 +327,7 @@ const components = {
|
|
|
326
327
|
ItunesNote,
|
|
327
328
|
Js,
|
|
328
329
|
Leaf,
|
|
330
|
+
Link,
|
|
329
331
|
List,
|
|
330
332
|
ListCheck,
|
|
331
333
|
LocationDot,
|