@pushword/js-helper 0.0.84 → 0.0.86
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/LICENSE +0 -0
- package/README.md +1 -1
- package/package.json +10 -7
- package/src/app.css +0 -0
- package/src/app.js +2 -0
- package/src/clickable.js +0 -0
- package/src/encore.js +0 -0
- package/src/helpers.js +0 -0
- package/src/tailwind.config.js +0 -0
- package/src/tailwind.helpers.js +0 -0
- package/src/tailwind.prose.scss +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Some js helpers for Pushword front end.
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/Pushword/Pushword/tags)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](https://github.com/Pushword/Pushword/actions)
|
|
8
8
|
[](https://scrutinizer-ci.com/g/pushword/pushword)
|
|
9
9
|
[](https://codecov.io/gh/Pushword/Pushword/branch/main)
|
|
10
10
|
[](https://shepherd.dev/github/pushword/pushword)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pushword/js-helper",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.86",
|
|
4
4
|
"description": "Pushword front end helpers. ",
|
|
5
5
|
"author": "Robin@PiedWeb <contact@piedweb.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,22 +10,25 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"140.css": "^1.0.1",
|
|
12
12
|
"@symfony/webpack-encore": "^4.1",
|
|
13
|
-
"@
|
|
14
|
-
"
|
|
13
|
+
"@babel/core": "^7.20",
|
|
14
|
+
"webpack": "^5.75",
|
|
15
|
+
"webpack-cli": "^5.0",
|
|
16
|
+
"@tailwindcss/aspect-ratio": "^0.4",
|
|
17
|
+
"@tailwindcss/forms": "^0.5",
|
|
15
18
|
"@tailwindcss/line-clamp": "^0.4",
|
|
16
19
|
"@tailwindcss/typography": "^0.5",
|
|
17
20
|
"ace-builds": "^1.13",
|
|
18
21
|
"autoprefixer": "^10.1.0",
|
|
19
22
|
"babel-preset-stage-2": "^6.24.1",
|
|
20
|
-
"codemirror": "^
|
|
23
|
+
"codemirror": "^6.0",
|
|
21
24
|
"core-js": "^3.8.1",
|
|
22
25
|
"easymde": "^2.13.0",
|
|
23
26
|
"file-loader": "^6.0",
|
|
24
27
|
"fslightbox": "^3.2.2",
|
|
25
28
|
"sass": "^1.56",
|
|
26
|
-
"postcss": "^8.
|
|
27
|
-
"postcss-import": "^
|
|
28
|
-
"postcss-loader": "^
|
|
29
|
+
"postcss": "^8.4",
|
|
30
|
+
"postcss-import": "^15.0",
|
|
31
|
+
"postcss-loader": "^7.0",
|
|
29
32
|
"simple-jekyll-search": "^1.9.1",
|
|
30
33
|
"tailwindcss": "^3",
|
|
31
34
|
"tailwindcss-hero-patterns": "^0.0.1",
|
package/src/app.css
CHANGED
|
File without changes
|
package/src/app.js
CHANGED
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
convertImageLinkToWebPLink,
|
|
7
7
|
replaceOn,
|
|
8
8
|
liveBlock,
|
|
9
|
+
convertFormFromRot13,
|
|
9
10
|
} from '@pushword/js-helper/src/helpers.js';
|
|
10
11
|
import { allClickable } from '@pushword/js-helper/src/clickable.js';
|
|
11
12
|
|
|
@@ -18,6 +19,7 @@ function onDomChanged() {
|
|
|
18
19
|
refreshFsLightbox();
|
|
19
20
|
allClickable('.clickable');
|
|
20
21
|
addClassForNormalUser();
|
|
22
|
+
convertFormFromRot13();
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
function onPageLoaded() {
|
package/src/clickable.js
CHANGED
|
File without changes
|
package/src/encore.js
CHANGED
|
File without changes
|
package/src/helpers.js
CHANGED
|
File without changes
|
package/src/tailwind.config.js
CHANGED
|
File without changes
|
package/src/tailwind.helpers.js
CHANGED
|
File without changes
|
package/src/tailwind.prose.scss
CHANGED
|
File without changes
|