solid-panes 4.2.4 → 4.2.5-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.
@@ -1 +1 @@
1
- {"version":3,"file":"tabbedPane.d.ts","sourceRoot":"","sources":["../../src/tabbed/tabbedPane.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAG9C,QAAA,MAAM,UAAU,EAAE,cAgDjB,CAAA;AAED,eAAe,UAAU,CAAA"}
1
+ {"version":3,"file":"tabbedPane.d.ts","sourceRoot":"","sources":["../../src/tabbed/tabbedPane.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAG9C,QAAA,MAAM,UAAU,EAAE,cAkDjB,CAAA;AAED,eAAe,UAAU,CAAA"}
@@ -17,6 +17,7 @@ const TabbedPane = {
17
17
  audience: [_solidUi.ns.solid('PowerUser')],
18
18
  // Does the subject deserve this pane?
19
19
  label: (subject, context) => {
20
+ // @ts-ignore
20
21
  const kb = context.session.store;
21
22
  const typeURIs = kb.findTypeURIs(subject);
22
23
  if (_solidUi.ns.meeting('Cluster').uri in typeURIs) {
@@ -26,6 +27,7 @@ const TabbedPane = {
26
27
  },
27
28
  render: (subject, context) => {
28
29
  const dom = context.dom;
30
+ // @ts-ignore
29
31
  const store = context.session.store;
30
32
  const div = dom.createElement('div');
31
33
  (async () => {
@@ -5,11 +5,11 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _default = exports.default = {
8
- buildTime: '2026-03-23T14:31:09Z',
9
- commit: 'bced9969943d3ef2701e66051be109ba49afdaf9',
8
+ buildTime: '2026-03-25T13:46:21Z',
9
+ commit: '4f2c7e026a8c722404afb6c153f227d8362e4eb6',
10
10
  npmInfo: {
11
- 'solid-panes': '4.2.4',
12
- npm: '10.9.4',
11
+ 'solid-panes': '4.2.3',
12
+ npm: '11.12.0',
13
13
  node: '22.22.1',
14
14
  acorn: '8.15.0',
15
15
  ada: '2.9.2',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-panes",
3
- "version": "4.2.4",
3
+ "version": "4.2.5-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",
@@ -27,7 +27,7 @@
27
27
  "test-watch": "npm run lint && jest --onlyChanged --watch",
28
28
  "test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
29
29
  "test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
30
- "ignore:prepublishOnly": "npm run build && npm run lint && npm test",
30
+ "prepublishOnly": "npm run build && npm run lint && npm test",
31
31
  "preversion": "npm run lint && npm run typecheck && npm test",
32
32
  "postversion": "git push origin main --follow-tags",
33
33
  "watch": "npm run build-version && babel src -d dist --source-maps --extensions '.ts,.js' --watch",