solid-ui 2.4.28-b8b4cdaf → 2.4.28-b99176c4
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 +6 -6
- 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 +2 -2
- 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
|
|
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
|
+
// 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:13Z',
|
|
13710
|
+
commit: 'b99176c4b9983e73540ac99821945ab149f6317a',
|
|
13711
13711
|
npmInfo: {
|
|
13712
13712
|
'solid-ui': '2.4.28',
|
|
13713
13713
|
npm: '8.19.4',
|
|
@@ -15152,8 +15152,8 @@ 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
15159
|
* The file upload function uploadFiles is provided as often as someone drags a file from the computer
|