solid-ui 2.4.28-b99176c4 → 2.4.28-cd2c84aa
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 +11 -11
- 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 +4 -4
- 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
|
@@ -9688,7 +9688,7 @@ var store = _solidLogic.solidLogicSingleton.store;
|
|
|
9688
9688
|
* @param {NamedNode} unused1/document - the document to render (this argument is no longer used, but left in for backwards compatibility)
|
|
9689
9689
|
* @param {NamedNode} subject - the thing in which the participation is happening
|
|
9690
9690
|
* @param {NamedNode} unused2/me - user that is logged into the pod (this argument is no longer used, but left in for backwards compatibility)
|
|
9691
|
-
* @param {ParticipationOptions} options - the options that can be passed in are deleteFunction, link, and draggable these are used by the personTR button
|
|
9691
|
+
* @param {ParticipationOptions} options - the options that can be passed in are deleteFunction, link, and draggable; these are used by the personTR button
|
|
9692
9692
|
*/
|
|
9693
9693
|
function renderParticipants(dom, table, unused1, subject, unused2, options) {
|
|
9694
9694
|
table.setAttribute('style', style.participantsStyle);
|
|
@@ -10415,7 +10415,7 @@ var _default = {
|
|
|
10415
10415
|
mediaModuleCanvasWidth: '640',
|
|
10416
10416
|
mediaModuleCanvasHeight: '480',
|
|
10417
10417
|
textInputSize: 20,
|
|
10418
|
-
//
|
|
10418
|
+
// Rough default text input size, in characters
|
|
10419
10419
|
tabBorderRadius: '0.2em',
|
|
10420
10420
|
textInputBackgroundColor: '#eef',
|
|
10421
10421
|
textInputBackgroundColorUneditable: '#fff',
|
|
@@ -13706,12 +13706,12 @@ 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:06:29Z',
|
|
13710
|
+
commit: 'cd2c84aaa20e814eda579b51a8951292b29bdd84',
|
|
13711
13711
|
npmInfo: {
|
|
13712
13712
|
'solid-ui': '2.4.28',
|
|
13713
13713
|
npm: '8.19.4',
|
|
13714
|
-
node: '16.20.
|
|
13714
|
+
node: '16.20.1',
|
|
13715
13715
|
v8: '9.4.146.26-node.26',
|
|
13716
13716
|
uv: '1.43.0',
|
|
13717
13717
|
zlib: '1.2.11',
|
|
@@ -13721,7 +13721,7 @@ var versionInfo = {
|
|
|
13721
13721
|
nghttp2: '1.47.0',
|
|
13722
13722
|
napi: '8',
|
|
13723
13723
|
llhttp: '6.0.11',
|
|
13724
|
-
openssl: '1.1.
|
|
13724
|
+
openssl: '1.1.1u+quic',
|
|
13725
13725
|
cldr: '41.0',
|
|
13726
13726
|
icu: '71.1',
|
|
13727
13727
|
tz: '2022f',
|
|
@@ -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
|
+
* represents 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 uploadFiles is provided as often as someone drags a file from the computer
|
|
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 this; otherwise, drop does not work.
|
|
15168
15168
|
e.dataTransfer.dropEffect = 'copy';
|
|
15169
15169
|
};
|
|
15170
15170
|
var dragenterListener = function dragenterListener(e) {
|