datastake-daf 0.6.820 → 0.6.821
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/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +25 -0
- package/build/robots.txt +3 -0
- package/dist/components/index.js +1800 -1696
- package/dist/pages/index.js +2 -4
- package/package.json +1 -1
- package/src/@daf/pages/View/index.jsx +1 -1
package/dist/pages/index.js
CHANGED
|
@@ -62175,9 +62175,7 @@ const View = ({
|
|
|
62175
62175
|
children: /*#__PURE__*/jsxRuntime.jsx(Multiselect, {
|
|
62176
62176
|
options: [...sourceOptions],
|
|
62177
62177
|
isAvatarGroup: true,
|
|
62178
|
-
selectionType: "checkbox"
|
|
62179
|
-
// key={partners?.length}
|
|
62180
|
-
,
|
|
62178
|
+
selectionType: "checkbox",
|
|
62181
62179
|
canUnselectLast: false,
|
|
62182
62180
|
isSingle: true,
|
|
62183
62181
|
onChange: selected => {
|
|
@@ -62189,7 +62187,7 @@ const View = ({
|
|
|
62189
62187
|
},
|
|
62190
62188
|
dropDownWidth: 200,
|
|
62191
62189
|
defaultSelected: (partners || []).map(p => p.id) || []
|
|
62192
|
-
})
|
|
62190
|
+
}, partners?.length)
|
|
62193
62191
|
})
|
|
62194
62192
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
62195
62193
|
className: "view-content",
|
package/package.json
CHANGED