solid-ui 3.0.0 → 3.0.1-27039d9
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/README.md +302 -288
- package/dist/header/index.d.ts.map +1 -1
- package/dist/header/index.js +52 -0
- package/dist/header/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/solid-ui.esm.js +25557 -23665
- package/dist/solid-ui.esm.js.map +1 -1
- package/dist/solid-ui.esm.min.js +27 -28
- package/dist/solid-ui.esm.min.js.map +1 -1
- package/dist/solid-ui.js +831 -500
- package/dist/solid-ui.js.map +1 -1
- package/dist/solid-ui.min.js +12 -12
- package/dist/solid-ui.min.js.map +1 -1
- package/dist/theme-accessibility.css +147 -0
- package/dist/theme-classic.css +70 -0
- package/dist/theme-default.css +65 -0
- package/dist/theme-signal.css +65 -0
- package/dist/theme-telegram.css +65 -0
- package/dist/theme-variables.css +163 -0
- package/dist/theme-wave.css +65 -0
- package/dist/themes-README.md +254 -0
- package/dist/versionInfo.js +8 -8
- package/dist/widgets/buttons.js +20 -20
- package/dist/widgets/buttons.js.map +1 -1
- package/package.json +133 -133
package/package.json
CHANGED
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "solid-ui",
|
|
3
|
-
"version": "3.0.
|
|
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.
|
|
72
|
-
"pane-registry": "^3.0.0",
|
|
73
|
-
"solid-namespace": "^0.5.4",
|
|
74
|
-
"uuid": "^11.1.0"
|
|
75
|
-
},
|
|
76
|
-
"peerDependencies": {
|
|
77
|
-
"rdflib": "^2.3.
|
|
78
|
-
"solid-logic": "^4.0.
|
|
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/
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
90
|
-
"@storybook/addon-
|
|
91
|
-
"@storybook/addon-
|
|
92
|
-
"@storybook/addon-
|
|
93
|
-
"@storybook/
|
|
94
|
-
"@storybook/html": "^7.6.20",
|
|
95
|
-
"@
|
|
96
|
-
"@testing-library/
|
|
97
|
-
"@
|
|
98
|
-
"@types/
|
|
99
|
-
"@types/
|
|
100
|
-
"@
|
|
101
|
-
"
|
|
102
|
-
"babel-
|
|
103
|
-
"
|
|
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.
|
|
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": "^
|
|
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.
|
|
119
|
-
"react": "^17.0.2",
|
|
120
|
-
"react-dom": "^17.0.2",
|
|
121
|
-
"react-is": "^17.0.2",
|
|
122
|
-
"solid-logic": "^4.0.
|
|
123
|
-
"storybook": "^7.6.20",
|
|
124
|
-
"terser-webpack-plugin": "^5.3.
|
|
125
|
-
"typedoc": "^0.28.9",
|
|
126
|
-
"typescript": "^5.9.2",
|
|
127
|
-
"webpack": "^5.
|
|
128
|
-
"webpack-cli": "^6.0.1"
|
|
129
|
-
},
|
|
130
|
-
"optionalDependencies": {
|
|
131
|
-
"fsevents": "*"
|
|
132
|
-
}
|
|
133
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "solid-ui",
|
|
3
|
+
"version": "3.0.1-27039d9",
|
|
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
|
+
}
|