solid-ui 3.0.1-11be53b → 3.0.1-3f71940

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,6 +1,6 @@
1
1
  export default {
2
- buildTime: '2026-01-18T18:10:44Z',
3
- commit: '11be53b5ffaa1d5ea2f7083ff5ed02b00e62415e',
2
+ buildTime: '2026-01-20T18:04:03Z',
3
+ commit: '3f7194026c22fecc8fa3e88a0852acca3de68108',
4
4
  npmInfo: {
5
5
  'solid-ui': '3.0.1',
6
6
  npm: '10.8.2',
@@ -1147,18 +1147,18 @@ function twoLineTransaction(dom, x) {
1147
1147
  return y ? utils.escapeForXML(y.value) : '?'; // @@@@
1148
1148
  };
1149
1149
  const box = dom.createElement('table');
1150
- box.innerHTML = `
1151
- <tr>
1152
- <td colspan="2"> ${enc('payee')}</td>
1153
- < /tr>
1154
- < tr >
1155
- <td>${enc('date').slice(0, 10)}</td>
1156
- <td style = "text-align: right;">${enc('amount')}</td>
1150
+ box.innerHTML = `
1151
+ <tr>
1152
+ <td colspan="2"> ${enc('payee')}</td>
1153
+ < /tr>
1154
+ < tr >
1155
+ <td>${enc('date').slice(0, 10)}</td>
1156
+ <td style = "text-align: right;">${enc('amount')}</td>
1157
1157
  </tr>`;
1158
1158
  if (failed) {
1159
- box.innerHTML = `
1160
- <tr>
1161
- <td><a href="${utils.escapeForXML(x.uri)}">${utils.escapeForXML(failed)}</a></td>
1159
+ box.innerHTML = `
1160
+ <tr>
1161
+ <td><a href="${utils.escapeForXML(x.uri)}">${utils.escapeForXML(failed)}</a></td>
1162
1162
  </tr>`;
1163
1163
  }
1164
1164
  return box;
@@ -1176,13 +1176,13 @@ function twoLineTrip(dom, x) {
1176
1176
  return y ? utils.escapeForXML(y.value) : '?';
1177
1177
  };
1178
1178
  const box = dom.createElement('table');
1179
- box.innerHTML = `
1180
- <tr>
1181
- <td colspan="2">${enc(ns.dc('title'))}</td>
1182
- </tr>
1183
- <tr style="color: #777">
1184
- <td>${enc(ns.cal('dtstart'))}</td>
1185
- <td>${enc(ns.cal('dtend'))}</td>
1179
+ box.innerHTML = `
1180
+ <tr>
1181
+ <td colspan="2">${enc(ns.dc('title'))}</td>
1182
+ </tr>
1183
+ <tr style="color: #777">
1184
+ <td>${enc(ns.cal('dtstart'))}</td>
1185
+ <td>${enc(ns.cal('dtend'))}</td>
1186
1186
  </tr>`;
1187
1187
  return box;
1188
1188
  }
package/package.json CHANGED
@@ -1,133 +1,133 @@
1
- {
2
- "name": "solid-ui",
3
- "version": "3.0.1-11be53b",
4
- "description": "UI library for Solid applications",
5
- "main": "dist/solid-ui.js",
6
- "types": "dist/index.d.ts",
7
- "sideEffects": false,
8
- "exports": {
9
- ".": {
10
- "import": "./dist/solid-ui.esm.js",
11
- "require": "./dist/solid-ui.js",
12
- "types": "./dist/index.d.ts"
13
- }
14
- },
15
- "files": [
16
- "dist/",
17
- "README.md",
18
- "LICENSE"
19
- ],
20
- "scripts": {
21
- "clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api",
22
- "build": "npm run clean && npm run typecheck && npm run build-version && npm run build-dist && npm run build-js && npm run postbuild-js && npm run build-storybook",
23
- "build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
24
- "build-js": "tsc",
25
- "postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
26
- "build-dist": "webpack --progress",
27
- "build-form-examples": "npm run build-js && npm run build-version && npm run build-dist && cp ./dist/solid-ui.js ./docs/form-examples/",
28
- "lint": "eslint",
29
- "lint-fix": "eslint --fix",
30
- "typecheck": "tsc --noEmit",
31
- "typecheck-test": "tsc --noEmit -p tsconfig.test.json",
32
- "test": "jest --no-coverage",
33
- "test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
34
- "test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
35
- "watch": "npm run build-version && babel src --out-dir dist --watch --source-maps --extensions '.ts,.js'",
36
- "doc": "typedoc --out ./docs/api/ ./src/ --excludeInternal",
37
- "ignore:prepublishOnly": "npm run build && npm run lint && npm test && npm run doc",
38
- "preversion": "npm run lint && npm run typecheck && npm test",
39
- "ignore:postpublish": "git push origin main --follow-tags",
40
- "storybook": "storybook dev -p 6006",
41
- "build-storybook": "storybook build --output-dir ./examples/storybook"
42
- },
43
- "repository": {
44
- "type": "git",
45
- "url": "git+https://github.com/solidos/solid-ui.git"
46
- },
47
- "keywords": [
48
- "solid",
49
- "decentralized",
50
- "widgets",
51
- "ui",
52
- "web",
53
- "rdf",
54
- "ldp",
55
- "linked",
56
- "data"
57
- ],
58
- "author": "Tim Berners-Lee <timbl@mit.edu>",
59
- "contributors": [
60
- "Daniel Friedman <danielf@mit.edu>"
61
- ],
62
- "license": "MIT",
63
- "bugs": {
64
- "url": "https://github.com/solidos/solid-ui/issues"
65
- },
66
- "homepage": "https://github.com/solidos/solid-ui",
67
- "dependencies": {
68
- "@noble/curves": "^1.9.6",
69
- "@noble/hashes": "^1.8.0",
70
- "escape-html": "^1.0.3",
71
- "mime-types": "^3.0.2",
72
- "pane-registry": "^3.0.0",
73
- "solid-namespace": "^0.5.4",
74
- "uuid": "^11.1.0"
75
- },
76
- "peerDependencies": {
77
- "rdflib": "^2.3.0",
78
- "solid-logic": "^4.0.1"
79
- },
80
- "devDependencies": {
81
- "@babel/cli": "^7.28.3",
82
- "@babel/core": "^7.28.3",
83
- "@babel/plugin-transform-runtime": "^7.28.3",
84
- "@babel/preset-env": "^7.28.0",
85
- "@babel/preset-typescript": "^7.27.1",
86
- "@babel/runtime": "^7.28.2",
87
- "@eslint/js": "^9.32.0",
88
- "@mdx-js/react": "^3.1.0",
89
- "@storybook/addon-actions": "7.6.20",
90
- "@storybook/addon-docs": "^7.6.20",
91
- "@storybook/addon-essentials": "^7.6.20",
92
- "@storybook/addon-links": "7.6.20",
93
- "@storybook/html": "^7.6.20",
94
- "@storybook/html-webpack5": "^7.6.20",
95
- "@testing-library/dom": "^10.4.1",
96
- "@testing-library/user-event": "^13.5.0",
97
- "@types/jest": "^30.0.0",
98
- "@types/jsdom": "^21.1.7",
99
- "@types/node": "^25.0.3",
100
- "@typescript-eslint/parser": "^8.48.1",
101
- "babel-jest": "^30.1.2",
102
- "babel-loader": "^10.0.0",
103
- "copy-webpack-plugin": "^13.0.1",
104
- "eslint": "^9.32.0",
105
- "eslint-import-resolver-typescript": "^4.4.4",
106
- "eslint-plugin-import": "^2.32.0",
107
- "eslint-plugin-jest": "^29.2.1",
108
- "eslint-plugin-n": "^17.21.3",
109
- "eslint-plugin-promise": "^7.2.1",
110
- "get-random-values": "^4.0.0",
111
- "globals": "^16.3.0",
112
- "isomorphic-fetch": "^3.0.0",
113
- "jest": "^30.2.0",
114
- "jest-environment-jsdom": "^30.0.5",
115
- "jsdom": "^26.1.0",
116
- "neostandard": "^0.12.2",
117
- "nock": "^13.5.6",
118
- "rdflib": "^2.3.0",
119
- "react": "^17.0.2",
120
- "react-dom": "^17.0.2",
121
- "react-is": "^17.0.2",
122
- "solid-logic": "^4.0.1",
123
- "storybook": "^7.6.20",
124
- "terser-webpack-plugin": "^5.3.15",
125
- "typedoc": "^0.28.9",
126
- "typescript": "^5.9.2",
127
- "webpack": "^5.103.0",
128
- "webpack-cli": "^6.0.1"
129
- },
130
- "optionalDependencies": {
131
- "fsevents": "*"
132
- }
133
- }
1
+ {
2
+ "name": "solid-ui",
3
+ "version": "3.0.1-3f71940",
4
+ "description": "UI library for Solid applications",
5
+ "main": "dist/solid-ui.js",
6
+ "types": "dist/index.d.ts",
7
+ "sideEffects": false,
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/solid-ui.esm.js",
11
+ "require": "./dist/solid-ui.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api",
22
+ "build": "npm run clean && npm run typecheck && npm run build-version && npm run build-dist && npm run build-js && npm run postbuild-js && npm run build-storybook",
23
+ "build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
24
+ "build-js": "tsc",
25
+ "postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
26
+ "build-dist": "webpack --progress",
27
+ "build-form-examples": "npm run build-js && npm run build-version && npm run build-dist && cp ./dist/solid-ui.js ./docs/form-examples/",
28
+ "lint": "eslint",
29
+ "lint-fix": "eslint --fix",
30
+ "typecheck": "tsc --noEmit",
31
+ "typecheck-test": "tsc --noEmit -p tsconfig.test.json",
32
+ "test": "jest --no-coverage",
33
+ "test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
34
+ "test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
35
+ "watch": "npm run build-version && babel src --out-dir dist --watch --source-maps --extensions '.ts,.js'",
36
+ "doc": "typedoc --out ./docs/api/ ./src/ --excludeInternal",
37
+ "ignore:prepublishOnly": "npm run build && npm run lint && npm test && npm run doc",
38
+ "preversion": "npm run lint && npm run typecheck && npm test",
39
+ "ignore:postpublish": "git push origin main --follow-tags",
40
+ "storybook": "storybook dev -p 6006",
41
+ "build-storybook": "storybook build --output-dir ./examples/storybook"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/solidos/solid-ui.git"
46
+ },
47
+ "keywords": [
48
+ "solid",
49
+ "decentralized",
50
+ "widgets",
51
+ "ui",
52
+ "web",
53
+ "rdf",
54
+ "ldp",
55
+ "linked",
56
+ "data"
57
+ ],
58
+ "author": "Tim Berners-Lee <timbl@mit.edu>",
59
+ "contributors": [
60
+ "Daniel Friedman <danielf@mit.edu>"
61
+ ],
62
+ "license": "MIT",
63
+ "bugs": {
64
+ "url": "https://github.com/solidos/solid-ui/issues"
65
+ },
66
+ "homepage": "https://github.com/solidos/solid-ui",
67
+ "dependencies": {
68
+ "@noble/curves": "^1.9.6",
69
+ "@noble/hashes": "^1.8.0",
70
+ "escape-html": "^1.0.3",
71
+ "mime-types": "^3.0.2",
72
+ "pane-registry": "^3.0.0",
73
+ "solid-namespace": "^0.5.4",
74
+ "uuid": "^11.1.0"
75
+ },
76
+ "peerDependencies": {
77
+ "rdflib": "^2.3.5",
78
+ "solid-logic": "^4.0.1"
79
+ },
80
+ "devDependencies": {
81
+ "@babel/cli": "^7.28.3",
82
+ "@babel/core": "^7.28.3",
83
+ "@babel/plugin-transform-runtime": "^7.28.3",
84
+ "@babel/preset-env": "^7.28.0",
85
+ "@babel/preset-typescript": "^7.27.1",
86
+ "@babel/runtime": "^7.28.2",
87
+ "@eslint/js": "^9.32.0",
88
+ "@mdx-js/react": "^3.1.0",
89
+ "@storybook/addon-actions": "7.6.20",
90
+ "@storybook/addon-docs": "^7.6.20",
91
+ "@storybook/addon-essentials": "^7.6.20",
92
+ "@storybook/addon-links": "7.6.20",
93
+ "@storybook/html": "^7.6.20",
94
+ "@storybook/html-webpack5": "^7.6.20",
95
+ "@testing-library/dom": "^10.4.1",
96
+ "@testing-library/user-event": "^13.5.0",
97
+ "@types/jest": "^30.0.0",
98
+ "@types/jsdom": "^21.1.7",
99
+ "@types/node": "^25.0.3",
100
+ "@typescript-eslint/parser": "^8.48.1",
101
+ "babel-jest": "^30.1.2",
102
+ "babel-loader": "^10.0.0",
103
+ "copy-webpack-plugin": "^13.0.1",
104
+ "eslint": "^9.32.0",
105
+ "eslint-import-resolver-typescript": "^4.4.4",
106
+ "eslint-plugin-import": "^2.32.0",
107
+ "eslint-plugin-jest": "^29.2.1",
108
+ "eslint-plugin-n": "^17.21.3",
109
+ "eslint-plugin-promise": "^7.2.1",
110
+ "get-random-values": "^4.0.0",
111
+ "globals": "^16.3.0",
112
+ "isomorphic-fetch": "^3.0.0",
113
+ "jest": "^30.2.0",
114
+ "jest-environment-jsdom": "^30.0.5",
115
+ "jsdom": "^26.1.0",
116
+ "neostandard": "^0.12.2",
117
+ "nock": "^13.5.6",
118
+ "rdflib": "^2.3.5",
119
+ "react": "^17.0.2",
120
+ "react-dom": "^17.0.2",
121
+ "react-is": "^17.0.2",
122
+ "solid-logic": "^4.0.1",
123
+ "storybook": "^7.6.20",
124
+ "terser-webpack-plugin": "^5.3.15",
125
+ "typedoc": "^0.28.9",
126
+ "typescript": "^5.9.2",
127
+ "webpack": "^5.103.0",
128
+ "webpack-cli": "^6.0.1"
129
+ },
130
+ "optionalDependencies": {
131
+ "fsevents": "*"
132
+ }
133
+ }
File without changes