solid-panes 4.4.0 → 4.4.1-test.0

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.
Files changed (75) hide show
  1. package/README.md +4 -2
  2. package/dist/RDFXMLPane.css +70 -0
  3. package/dist/RDFXMLPane.d.ts +13 -0
  4. package/dist/RDFXMLPane.d.ts.map +1 -0
  5. package/dist/RDFXMLPane.js +46 -5
  6. package/dist/dataContentPane.css +271 -0
  7. package/dist/dataContentPane.d.ts +14 -0
  8. package/dist/dataContentPane.d.ts.map +1 -0
  9. package/dist/dataContentPane.js +68 -101
  10. package/dist/defaultPane.css +97 -0
  11. package/dist/defaultPane.d.ts +14 -0
  12. package/dist/defaultPane.d.ts.map +1 -0
  13. package/dist/defaultPane.js +9 -2
  14. package/dist/form/formPane.css +120 -0
  15. package/dist/form/pane.d.ts +4 -0
  16. package/dist/form/pane.d.ts.map +1 -0
  17. package/dist/form/pane.js +120 -54
  18. package/dist/humanReadablePane.css +129 -0
  19. package/dist/humanReadablePane.d.ts +13 -0
  20. package/dist/humanReadablePane.d.ts.map +1 -0
  21. package/dist/humanReadablePane.js +29 -18
  22. package/dist/icons/signUp.svg +9 -0
  23. package/dist/imagePane.css +4 -0
  24. package/dist/imagePane.d.ts +12 -0
  25. package/dist/imagePane.d.ts.map +1 -0
  26. package/dist/imagePane.js +19 -21
  27. package/dist/internal/internalPane.css +14 -0
  28. package/dist/internal/internalPane.d.ts +1 -0
  29. package/dist/internal/internalPane.d.ts.map +1 -1
  30. package/dist/internal/internalPane.js +5 -6
  31. package/dist/mainPage/header.js +2 -2
  32. package/dist/mainPage/index.d.ts +2 -1
  33. package/dist/mainPage/index.d.ts.map +1 -1
  34. package/dist/mainPage/index.js +23 -0
  35. package/dist/mainPage/menu.d.ts.map +1 -1
  36. package/dist/mainPage/menu.js +29 -2
  37. package/dist/n3Pane.css +49 -0
  38. package/dist/n3Pane.d.ts +13 -0
  39. package/dist/n3Pane.d.ts.map +1 -0
  40. package/dist/n3Pane.js +36 -5
  41. package/dist/outline/manager.js +20 -1
  42. package/dist/pad/padPane.css +6 -2
  43. package/dist/pad/padPane.js +1 -1
  44. package/dist/registerPanes.js +8 -8
  45. package/dist/schedule/schedulePane.css +294 -0
  46. package/dist/schedule/schedulePane.d.ts +23 -0
  47. package/dist/schedule/schedulePane.d.ts.map +1 -0
  48. package/dist/schedule/schedulePane.js +161 -61
  49. package/dist/social/editProfileDetails.d.ts +3 -3
  50. package/dist/social/editProfileDetails.d.ts.map +1 -1
  51. package/dist/social/editProfileDetails.js +222 -127
  52. package/dist/social/icons.d.ts +2 -0
  53. package/dist/social/icons.d.ts.map +1 -1
  54. package/dist/social/icons.js +39 -4
  55. package/dist/social/socialPane.css +838 -178
  56. package/dist/social/socialPane.d.ts.map +1 -1
  57. package/dist/social/socialPane.js +136 -43
  58. package/dist/social/socialSections.d.ts +11 -0
  59. package/dist/social/socialSections.d.ts.map +1 -1
  60. package/dist/social/socialSections.js +138 -62
  61. package/dist/social/spinner.d.ts +3 -0
  62. package/dist/social/spinner.d.ts.map +1 -0
  63. package/dist/social/spinner.js +13 -0
  64. package/dist/social/triage.d.ts +17 -0
  65. package/dist/social/triage.d.ts.map +1 -0
  66. package/dist/social/triage.js +79 -0
  67. package/dist/solid-panes.js +25772 -9576
  68. package/dist/solid-panes.js.map +1 -1
  69. package/dist/solid-panes.min.js +2583 -927
  70. package/dist/solid-panes.min.js.map +1 -1
  71. package/dist/{style → styles}/tabbedtab.css +0 -157
  72. package/dist/styles/utilities.css +5 -0
  73. package/dist/versionInfo.js +13 -13
  74. package/package.json +27 -26
  75. package/dist/icons/signup.png +0 -0
@@ -345,10 +345,6 @@ div.exceptionPane pre {
345
345
  display: none;
346
346
  }
347
347
 
348
- .active {
349
- /* display: visible; */
350
- }
351
-
352
348
  .submitRow {
353
349
  clear: both;
354
350
  height: 5em;
@@ -367,126 +363,11 @@ div.exceptionPane pre {
367
363
  display: inline;
368
364
  }
369
365
 
370
- /******************* CV Pane *****************/
371
-
372
- .CVclass {
373
- background-color: LightSkyBlue;
374
- }
375
-
376
- /******************* Data Content Pane *****************/
377
-
378
- div.dataContentPane {
379
- border-top: solid 1px black;
380
- border-left: solid 1px black;
381
- border-bottom: solid 1px #777;
382
- border-right: solid 1px #777;
383
- padding: 0.5em; /* color: #404; */
384
- margin-top: 0.5em;
385
- margin-bottom: 0.5em;
386
- }
387
-
388
- .nestedFormula {
389
- border-top: solid 1px black;
390
- border-left: solid 1px black;
391
- border-bottom: solid 1px #777;
392
- border-right: solid 1px #777;
393
- padding: 0.5em;
394
- border-radius: 0.5em;
395
- }
396
-
397
- div.dataContentPane td {
398
- padding-left: 0.2em;
399
- padding-top: 0.1em;
400
- padding-right: 0.2em;
401
- padding-bottom: 0.05em;
402
- /* vertical-align: middle; /*@@ Lalana's request*/
403
- vertical-align: top; /*@@ Tims's request*/
404
- /* With middel, you can't tell what is with what */
405
- /* background-color: white; */
406
- }
407
-
408
- div.dataContentPane tr {
409
- margin-bottom: 0.6em;
410
- padding-top: 1em;
411
- padding-bottom: 1em;
412
- }
413
-
414
- .dataContentPane a {
415
- color: #3b5998;
416
- text-decoration: none;
417
- font-weight: bold;
418
- }
419
- .dataContentPane a:link {
420
- color: #3b5998;
421
- text-decoration: none;
422
- font-weight: bold;
423
- }
424
- .dataContentPane a:visited {
425
- color: #3b5998;
426
- text-decoration: none;
427
- font-weight: bold;
428
- }
429
- .dataContentPane a:hover {
430
- color: #3b5998;
431
- text-decoration: underline;
432
- font-weight: bold;
433
- }
434
- .dataContentPane a:active {
435
- color: #888;
436
- text-decoration: none;
437
- }
438
-
439
- .dataContentPane.embeddedText {
440
- white-space: pre-wrap;
441
- }
442
- .dataContentPane.embeddedXHTML {
443
- }
444
-
445
- /* div.dataContentPane a { text-decoration: none; color: #006} /* Only very slightly blue */
446
- div.dataContentPane td.pred {
447
- min-width: 12em;
448
- } /* Keep aligned with others better */
449
- div.dataContentPane td.pred a {
450
- color: #444;
451
- } /* Greyish as form field names have less info value */
452
-
453
- /* .collectionAsTables {border-right: green 1px; margin: 0.2em;} */
454
-
455
- div.n3Pane {
456
- padding: 1em;
457
- border-top: solid 1px black;
458
- border-left: solid 1px black;
459
- border-bottom: solid 1px #777;
460
- border-right: solid 1px #777;
461
- color: #004;
462
- }
463
-
464
366
  .imageView {
465
367
  border: 1em white;
466
368
  margin: 1em;
467
369
  }
468
370
 
469
- .n3Pane pre {
470
- font-size: 120%;
471
- }
472
- div.n3Pane {
473
- }
474
-
475
- .RDFXMLPane pre {
476
- font-size: 120%;
477
- }
478
- div.RDFXMLPane {
479
- }
480
-
481
- div.RDFXMLPane {
482
- padding: 1em;
483
- border-top: solid 2px black;
484
- border-left: solid 2px black;
485
- border-bottom: solid 2px #777;
486
- border-right: solid 2px #777;
487
- color: #440;
488
- }
489
-
490
371
  /* Generic things useful anywhere */
491
372
 
492
373
  img.hideTillHover {
@@ -893,17 +774,6 @@ td.undetermined table {
893
774
  margin: 0.2em;
894
775
  }
895
776
 
896
- div.bottom-border {
897
- border: 0.2em solid transparent;
898
- width: 100%;
899
- }
900
-
901
- div.bottom-border-active {
902
- cursor: copy;
903
- border: 0.2em solid;
904
- border-color: rgb(100%, 65%, 0%);
905
- }
906
-
907
777
  /* The thing below was for the kenny's orange bar*/
908
778
  /* @@@ This is not specific enough
909
779
  td{
@@ -1194,30 +1064,3 @@ Styles for tableViewPane
1194
1064
  End of styles for tableViewPane
1195
1065
  */
1196
1066
 
1197
- /* Styles for FORM PANE
1198
- **
1199
- ** Colors from data cotent pane
1200
- */
1201
-
1202
- .formPane a {
1203
- color: #3b5998;
1204
- text-decoration: none;
1205
- }
1206
- .formPane a:link {
1207
- color: #3b5998;
1208
- text-decoration: none;
1209
- }
1210
- .formPane a:visited {
1211
- color: #3b5998;
1212
- text-decoration: none;
1213
- }
1214
- .formPane a:hover {
1215
- color: #3b5998;
1216
- font-weight: bold;
1217
- } /* was text-decoration: underline; */
1218
- .formPane a:active {
1219
- color: #888;
1220
- text-decoration: none;
1221
- }
1222
-
1223
- /* ends */
@@ -0,0 +1,5 @@
1
+ :root {
2
+ --icon-sm: 1.8em;
3
+ --color-background-row-default: white;
4
+ --color-background-row-alternate: #f0f0f0;
5
+ }
@@ -5,36 +5,36 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _default = exports.default = {
8
- buildTime: '2026-04-24T13:13:17Z',
9
- commit: '462cb784e8920dea6ca5d7abfbba0e478338a13d',
8
+ buildTime: '2026-05-26T17:40:49Z',
9
+ commit: '790b892b1daceb4e881a9081ebddaaf95bf92371',
10
10
  npmInfo: {
11
11
  'solid-panes': '4.4.0',
12
- npm: '10.9.7',
13
- node: '22.22.2',
14
- acorn: '8.15.0',
12
+ npm: '10.9.8',
13
+ node: '22.22.3',
14
+ acorn: '8.16.0',
15
15
  ada: '2.9.2',
16
- amaro: '1.1.5',
16
+ amaro: '1.1.8',
17
17
  ares: '1.34.6',
18
18
  brotli: '1.1.0',
19
19
  cjs_module_lexer: '2.2.0',
20
20
  cldr: '48.0',
21
21
  icu: '78.2',
22
- llhttp: '9.3.0',
22
+ llhttp: '9.3.1',
23
23
  modules: '127',
24
24
  napi: '10',
25
- nbytes: '0.1.1',
25
+ nbytes: '0.1.3',
26
26
  ncrypto: '0.0.1',
27
27
  nghttp2: '1.64.0',
28
- openssl: '3.5.5',
29
- simdjson: '4.2.4',
28
+ openssl: '3.5.6',
29
+ simdjson: '4.5.0',
30
30
  simdutf: '6.4.2',
31
- sqlite: '3.51.2',
32
- tz: '2025c',
31
+ sqlite: '3.51.3',
32
+ tz: '2026a',
33
33
  undici: '6.24.1',
34
34
  unicode: '17.0',
35
35
  uv: '1.51.0',
36
36
  uvwasi: '0.0.23',
37
- v8: '12.4.254.21-node.39',
37
+ v8: '12.4.254.21-node.56',
38
38
  zlib: '1.3.1-e00f703',
39
39
  zstd: '1.5.7'
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-panes",
3
- "version": "4.4.0",
3
+ "version": "4.4.1-test.0",
4
4
  "description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "test-watch": "npm run lint && jest --onlyChanged --watch",
31
31
  "test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
32
32
  "test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
33
- "ignore:prepublishOnly": "npm run build && npm run lint && npm test",
33
+ "prepublishOnly": "npm run build && npm run lint && npm test",
34
34
  "preversion": "npm run lint && npm run typecheck && npm test",
35
35
  "postversion": "git push origin main --follow-tags",
36
36
  "watch": "npm run build-version && concurrently -k -n babel,types,webpack \"npm:watch-js\" \"npm:watch-types\" \"npm:watch-dist\"",
@@ -64,16 +64,17 @@
64
64
  "activitystreams-pane": "^1.0.2",
65
65
  "chat-pane": "^3.0.3",
66
66
  "contacts-pane": "^3.2.0",
67
- "dompurify": "^3.3.1",
67
+ "dompurify": "^3.4.4",
68
68
  "folder-pane": "^3.1.0",
69
69
  "issue-pane": "^3.0.2",
70
- "marked": "^17.0.3",
70
+ "lit-html": "^3.3.2",
71
+ "marked": "^18.0.3",
71
72
  "meeting-pane": "^3.0.2",
72
73
  "mime-types": "^3.0.2",
73
- "pane-registry": "^3.1.0",
74
- "profile-pane": "^3.2.1",
74
+ "pane-registry": "^3.1.1",
75
+ "profile-pane": "^3.2.2-test.0",
75
76
  "solid-namespace": "^0.5.4",
76
- "solid-ui": "^3.1.0",
77
+ "solid-ui": "^3.1.1-test.0",
77
78
  "source-pane": "^3.1.0"
78
79
  },
79
80
  "overrides": {
@@ -85,42 +86,42 @@
85
86
  "devDependencies": {
86
87
  "@babel/cli": "^7.28.6",
87
88
  "@babel/core": "^7.29.0",
88
- "@babel/preset-env": "^7.29.0",
89
+ "@babel/preset-env": "^7.29.5",
89
90
  "@babel/preset-typescript": "^7.28.5",
90
91
  "@testing-library/dom": "^10.4.1",
91
92
  "@testing-library/jest-dom": "^6.9.1",
92
93
  "@types/jest": "^30.0.0",
93
94
  "@types/webpack-env": "^1.18.8",
94
- "@typescript-eslint/parser": "^8.56.0",
95
+ "@typescript-eslint/parser": "^8.59.3",
95
96
  "@webpack-cli/serve": "^3.0.1",
96
- "babel-jest": "^30.2.0",
97
- "babel-loader": "^10.0.0",
97
+ "babel-jest": "^30.4.1",
98
+ "babel-loader": "^10.1.1",
98
99
  "babel-plugin-inline-import": "^3.0.0",
99
100
  "buffer": "^6.0.3",
100
101
  "concurrently": "^9.2.1",
101
102
  "copy-webpack-plugin": "^14.0.0",
102
103
  "css-loader": "^7.1.4",
103
- "eslint": "^9.39.3",
104
- "globals": "^17.3.0",
105
- "html-webpack-plugin": "^5.6.6",
106
- "jest": "^30.2.0",
107
- "jest-environment-jsdom": "^30.2.0",
104
+ "eslint": "^9.39.4",
105
+ "globals": "^17.6.0",
106
+ "html-webpack-plugin": "^5.6.7",
107
+ "jest": "^30.4.2",
108
+ "jest-environment-jsdom": "^30.4.1",
108
109
  "jest-fetch-mock": "^3.0.3",
109
110
  "neostandard": "^0.13.0",
110
111
  "node-polyfill-webpack-plugin": "^4.1.0",
111
112
  "path-browserify": "^1.0.1",
112
113
  "raw-loader": "^4.0.2",
113
- "rdflib": "^2.3.6",
114
- "react": "^19.2.4",
115
- "react-dom": "^19.2.4",
116
- "solid-logic": "^4.0.6",
114
+ "rdflib": "^2.3.9",
115
+ "react": "^19.2.6",
116
+ "react-dom": "^19.2.6",
117
+ "solid-logic": "^4.0.7",
117
118
  "style-loader": "^4.0.0",
118
- "terser-webpack-plugin": "^5.3.16",
119
- "ts-jest": "^29.4.6",
120
- "ts-loader": "^9.5.4",
121
- "typescript": "^5.9.3",
122
- "webpack": "^5.105.2",
119
+ "terser-webpack-plugin": "^5.6.0",
120
+ "ts-jest": "^29.4.9",
121
+ "ts-loader": "^9.5.7",
122
+ "typescript": "^6.0.3",
123
+ "webpack": "^5.106.2",
123
124
  "webpack-cli": "^6.0.1",
124
- "webpack-dev-server": "^5.2.3"
125
+ "webpack-dev-server": "^5.2.4"
125
126
  }
126
127
  }
Binary file