@cocreate/server-side-render 1.6.6 → 1.6.8
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/CHANGELOG.md +16 -0
- package/demo/index.html +3 -3
- package/docs/index.html +2 -2
- package/package.json +2 -2
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [1.6.8](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.6.7...v1.6.8) (2023-11-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* meta name typo ([0cf6cc2](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/0cf6cc2b4353036a5aba5e851c631aa6028a75c9))
|
|
7
|
+
|
|
8
|
+
## [1.6.7](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.6.6...v1.6.7) (2023-11-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* favicon.ico path ([b0cd0f3](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/b0cd0f3a81a0f2a972ca82f7117a53fb47bc7181))
|
|
14
|
+
* update dependencies to the lates versions ([8940cf1](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/8940cf17ad7fad6ef8a02a4e73fbb0d49f5bb56a))
|
|
15
|
+
* update method to use object.update etc ([6ea6ea2](https://github.com/CoCreate-app/CoCreate-server-side-render/commit/6ea6ea24fe17fa1c083ad4a00422bf82b4d764e3))
|
|
16
|
+
|
|
1
17
|
## [1.6.6](https://github.com/CoCreate-app/CoCreate-server-side-render/compare/v1.6.5...v1.6.6) (2023-10-25)
|
|
2
18
|
|
|
3
19
|
|
package/demo/index.html
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
7
|
<link
|
|
8
8
|
rel="icon"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
type="image/png"
|
|
10
|
+
sizes="32x32"
|
|
11
|
+
href="../assets/favicon.ico" />
|
|
12
12
|
<title>server-side-render | CoCreateJS</title>
|
|
13
13
|
</head>
|
|
14
14
|
|
package/docs/index.html
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
sizes="32x32"
|
|
12
12
|
href="https://cocreate.app/images/favicon.ico" />
|
|
13
13
|
<meta
|
|
14
|
-
|
|
14
|
+
name="description"
|
|
15
15
|
content="A simple HTML5 and pure javascript component. Easy configuration using data-attributes and highly styleable." />
|
|
16
16
|
<meta
|
|
17
|
-
|
|
17
|
+
name="keywords"
|
|
18
18
|
content="helper classes, utility classes, css framework, css library, inline style classes" />
|
|
19
19
|
<meta name="robots" content="index,follow" />
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/server-side-render",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.8",
|
|
4
4
|
"description": "A simple server-side-render component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"server-side-render",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"main": "./src/index.js",
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@cocreate/utils": "^1.26.
|
|
48
|
+
"@cocreate/utils": "^1.26.2",
|
|
49
49
|
"node-html-parser": "^6.1.4"
|
|
50
50
|
}
|
|
51
51
|
}
|