easy-file-system 2.1.10 → 2.1.12
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/README.md +2 -2
- package/example.js +250 -473
- package/lib/constants.js +15 -7
- package/lib/div/item/entry/drag/directoryName.js +4 -4
- package/lib/div/item/entry/drag/fileName.js +3 -4
- package/lib/div/item/entry/drag.js +3 -3
- package/lib/div/item/entry.js +2 -2
- package/lib/explorer.js +3 -3
- package/lib/index.js +3 -7
- package/lib/item/entry/drag/directoryName.js +5 -6
- package/lib/item/entry/drag/fileName.js +3 -4
- package/lib/item/entry/drag.js +26 -38
- package/lib/mixins/nameSpan.js +52 -0
- package/lib/span/name.js +291 -0
- package/lib/utilities/pathMap.js +4 -4
- package/package.json +1 -1
- package/src/constants.js +4 -2
- package/src/div/item/entry/drag/directoryName.js +5 -6
- package/src/div/item/entry/drag/fileName.js +3 -6
- package/src/div/item/entry/drag.js +3 -2
- package/src/div/item/entry.js +0 -1
- package/src/explorer.js +2 -2
- package/src/index.js +1 -2
- package/src/item/entry/drag/directoryName.js +4 -5
- package/src/item/entry/drag/fileName.js +4 -4
- package/src/item/entry/drag.js +35 -49
- package/src/mixins/{nameInput.js → nameSpan.js} +2 -2
- package/src/{input → span}/name.js +52 -43
- package/src/utilities/pathMap.js +3 -3
- package/lib/button/name.js +0 -199
- package/lib/input/name.js +0 -294
- package/lib/mixins/nameInput.js +0 -52
- package/src/button/name.js +0 -72
package/README.md
CHANGED
|
@@ -179,13 +179,13 @@ The list of elements that can be attached to the rubbish bin is:
|
|
|
179
179
|
|
|
180
180
|
Similarly for the directory name drag entry item, ...
|
|
181
181
|
|
|
182
|
-
* `
|
|
182
|
+
* `NameSpan`
|
|
183
183
|
* `ToggleButton`
|
|
184
184
|
* `DirectoryNameSVG`
|
|
185
185
|
|
|
186
186
|
...the file name drag entry item...
|
|
187
187
|
|
|
188
|
-
* `
|
|
188
|
+
* `NameSpan`
|
|
189
189
|
* `FileNameSVG`
|
|
190
190
|
|
|
191
191
|
...and the marker entry item:
|