ywana-core8 0.0.888 → 0.0.889
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/dist/index.cjs +50 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +48 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +50 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/explorer/Explorer.js +3 -3
package/package.json
CHANGED
@@ -5,7 +5,7 @@ import './Explorer.css'
|
|
5
5
|
/**
|
6
6
|
* File Explorer
|
7
7
|
*/
|
8
|
-
const FileExplorer = (props) => {
|
8
|
+
export const FileExplorer = (props) => {
|
9
9
|
|
10
10
|
const [selectedFolder, setSelectedFolder] = useState("10002")
|
11
11
|
const [selectedFile, setSelectedFile] = useState()
|
@@ -131,7 +131,7 @@ export const FilesGridView = (props) => {
|
|
131
131
|
/**
|
132
132
|
* File Grid Item
|
133
133
|
*/
|
134
|
-
const FileGridItem = (props) => {
|
134
|
+
export const FileGridItem = (props) => {
|
135
135
|
|
136
136
|
const { file = {}, selected = false, onSelect } = props
|
137
137
|
const { id, icon, title, subtitle, actions = [], src = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkAPtY9GS4QgwAjRUSvLaa6TP4fSlQkVDqEg&usqp=CAU", footer } = file
|
@@ -154,7 +154,7 @@ const FileGridItem = (props) => {
|
|
154
154
|
)
|
155
155
|
}
|
156
156
|
|
157
|
-
const FilesTableView = (props) => {
|
157
|
+
export const FilesTableView = (props) => {
|
158
158
|
|
159
159
|
const { files = [], selected, onSelect } = props
|
160
160
|
|