solid-ui 2.4.28-6acecd56 → 2.4.28-6cc5d71e
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/solid-ui.js +9 -9
- package/dist/solid-ui.js.map +1 -1
- package/dist/solid-ui.min.js +1 -1
- package/dist/solid-ui.min.js.map +1 -1
- package/lib/participation.d.ts +1 -1
- package/lib/participation.js +1 -1
- package/lib/participation.js.map +1 -1
- package/lib/styleConstants.js +1 -1
- package/lib/styleConstants.js.map +1 -1
- package/lib/versionInfo.js +2 -2
- package/lib/versionInfo.js.map +1 -1
- package/lib/widgets/dragAndDrop.js +5 -5
- package/lib/widgets/dragAndDrop.js.map +1 -1
- package/package.json +1 -1
package/dist/solid-ui.js
CHANGED
|
@@ -9834,7 +9834,7 @@ function recordParticipation(subject, padDoc, refreshable) {
|
|
|
9834
9834
|
* @param {NamedNode} document - the document into which the participation should be shown
|
|
9835
9835
|
* @param {NamedNode} subject - the thing in which participation is happening
|
|
9836
9836
|
* @param {NamedNode} me - the logged in user
|
|
9837
|
-
* @param {ParticipationOptions} options - the options that can be passed in are deleteFunction, link, and draggable
|
|
9837
|
+
* @param {ParticipationOptions} options - the options that can be passed in are deleteFunction, link, and draggable these are used by the personTR button
|
|
9838
9838
|
*
|
|
9839
9839
|
*/
|
|
9840
9840
|
function manageParticipation(dom, container, padDoc, subject, me, options) {
|
|
@@ -10415,7 +10415,7 @@ var _default = {
|
|
|
10415
10415
|
mediaModuleCanvasWidth: '640',
|
|
10416
10416
|
mediaModuleCanvasHeight: '480',
|
|
10417
10417
|
textInputSize: 20,
|
|
10418
|
-
//
|
|
10418
|
+
// Default text input size in characters roughly
|
|
10419
10419
|
tabBorderRadius: '0.2em',
|
|
10420
10420
|
textInputBackgroundColor: '#eef',
|
|
10421
10421
|
textInputBackgroundColorUneditable: '#fff',
|
|
@@ -13706,8 +13706,8 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
13706
13706
|
}));
|
|
13707
13707
|
exports.versionInfo = void 0;
|
|
13708
13708
|
var versionInfo = {
|
|
13709
|
-
buildTime: '2023-08-16T08:
|
|
13710
|
-
commit: '
|
|
13709
|
+
buildTime: '2023-08-16T08:00:33Z',
|
|
13710
|
+
commit: '6cc5d71e99d33decdc216401ea81ddfe01c2b086',
|
|
13711
13711
|
npmInfo: {
|
|
13712
13712
|
'solid-ui': '2.4.28',
|
|
13713
13713
|
npm: '8.19.4',
|
|
@@ -15152,19 +15152,19 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
15152
15152
|
/* Drag and drop common functionality
|
|
15153
15153
|
*
|
|
15154
15154
|
* It is easy to make something draggable, or to make it a drag target!
|
|
15155
|
-
* Just call the functions below. In a
|
|
15156
|
-
*
|
|
15155
|
+
* Just call the functions below. In a solid world, any part of the UI which
|
|
15156
|
+
* represent one thing which has a URI, should be made draggable using makeDraggable
|
|
15157
15157
|
* Any list of things should typically allow you to drag new members of the list
|
|
15158
15158
|
* onto it.
|
|
15159
|
-
* The file upload function
|
|
15160
|
-
* desktop
|
|
15159
|
+
* The file upload function uploadFiles is provided as often as someone drags a file from the computer
|
|
15160
|
+
* desktop, you may want to upload it into the pod.
|
|
15161
15161
|
*/
|
|
15162
15162
|
|
|
15163
15163
|
/* global FileReader alert */
|
|
15164
15164
|
|
|
15165
15165
|
function makeDropTarget(ele, droppedURIHandler, droppedFileHandler) {
|
|
15166
15166
|
var dragoverListener = function dragoverListener(e) {
|
|
15167
|
-
e.preventDefault(); // Need
|
|
15167
|
+
e.preventDefault(); // Need else drop does not work [sic]
|
|
15168
15168
|
e.dataTransfer.dropEffect = 'copy';
|
|
15169
15169
|
};
|
|
15170
15170
|
var dragenterListener = function dragenterListener(e) {
|