solid-ui 2.4.27-80358ddf → 2.4.27-94bb2a59
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/index.html +1 -9
- package/dist/{main.js → solid-ui.js} +1860 -1061
- package/dist/solid-ui.js.map +1 -0
- package/dist/solid-ui.min.js +3 -0
- package/dist/solid-ui.min.js.LICENSE.txt +109 -0
- package/dist/solid-ui.min.js.map +1 -0
- package/lib/chat/bookmarks.js +6 -7
- package/lib/chat/bookmarks.js.map +1 -1
- package/lib/chat/chatLogic.js +250 -61
- package/lib/chat/chatLogic.js.map +1 -1
- package/lib/chat/infinite.js +604 -426
- package/lib/chat/infinite.js.map +1 -1
- package/lib/chat/message.js +286 -158
- package/lib/chat/message.js.map +1 -1
- package/lib/chat/messageTools.js +464 -276
- package/lib/chat/messageTools.js.map +1 -1
- package/lib/chat/thread.js +166 -144
- package/lib/chat/thread.js.map +1 -1
- package/lib/header/index.d.ts.map +1 -1
- package/lib/header/index.js +13 -5
- package/lib/header/index.js.map +1 -1
- package/lib/login/login.d.ts.map +1 -1
- package/lib/login/login.js +28 -26
- package/lib/login/login.js.map +1 -1
- package/lib/preferences.js +4 -0
- package/lib/preferences.js.map +1 -1
- package/lib/style.js +30 -27
- package/lib/style.js.map +1 -1
- package/lib/versionInfo.js +5 -5
- package/lib/versionInfo.js.map +1 -1
- package/lib/widgets/forms.js +8 -4
- package/lib/widgets/forms.js.map +1 -1
- package/package.json +8 -6
- package/dist/main.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-ui",
|
|
3
|
-
"version": "2.4.27-
|
|
3
|
+
"version": "2.4.27-94bb2a59",
|
|
4
4
|
"description": "UI library for writing Solid read-write-web applications",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
|
-
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-
|
|
12
|
+
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-dev && npm run build-dist && npm run build-storybook",
|
|
13
13
|
"build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"",
|
|
14
14
|
"build-types": "tsc --emitDeclarationOnly",
|
|
15
15
|
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint \"src/versionInfo.ts\" --fix",
|
|
16
|
-
"build-
|
|
17
|
-
"build-
|
|
16
|
+
"build-dev": "webpack --progress",
|
|
17
|
+
"build-dist": "webpack --progress --mode=production",
|
|
18
|
+
"build-form-examples": "npm run build-lib && npm run build-dev && cp ./dist/*.js ./Documentation/form-examples/",
|
|
18
19
|
"watch": "npm run build-version && babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"",
|
|
19
20
|
"clean": "rm -rf lib dist ./Documentation/form-examples/main.js",
|
|
20
21
|
"coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
},
|
|
55
56
|
"homepage": "https://github.com/solidos/solid-ui",
|
|
56
57
|
"dependencies": {
|
|
58
|
+
"16": "^0.0.2",
|
|
57
59
|
"acorn": "^7.4.1",
|
|
58
60
|
"escape-html": "^1.0.3",
|
|
59
61
|
"eslint-plugin-n": "^15.6.1",
|
|
@@ -61,7 +63,7 @@
|
|
|
61
63
|
"mime-types": "^2.1.35",
|
|
62
64
|
"npm": "^8.19.4",
|
|
63
65
|
"pane-registry": "^2.4.21",
|
|
64
|
-
"rdflib": "^2.2.
|
|
66
|
+
"rdflib": "^2.2.31",
|
|
65
67
|
"solid-logic": "^3.0.2",
|
|
66
68
|
"solid-namespace": "^0.5.2",
|
|
67
69
|
"uuid": "^8.3.2"
|
|
@@ -103,7 +105,7 @@
|
|
|
103
105
|
"html-webpack-plugin": "^5.5.0",
|
|
104
106
|
"husky": "^7.0.4",
|
|
105
107
|
"jest": "^27.5.1",
|
|
106
|
-
"jsdom": "^
|
|
108
|
+
"jsdom": "^16.7.0",
|
|
107
109
|
"lint-staged": "^12.5.0",
|
|
108
110
|
"nock": "^13.3.0",
|
|
109
111
|
"react": "^17.0.2",
|