@cocreate/config 1.6.9 → 1.8.0
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 +19 -0
- package/docs/index.html +10 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [1.8.0](https://github.com/CoCreate-app/CoCreate-config/compare/v1.7.0...v1.8.0) (2023-11-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update nav, edit button and css path ([5bd9a9e](https://github.com/CoCreate-app/CoCreate-config/commit/5bd9a9ee4c64c88841b2c013d9ec3a91a780030d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* upgrade dependencies for latest features and fixes ([16fa474](https://github.com/CoCreate-app/CoCreate-config/commit/16fa4746d8ce145ac82c325652bf6374650c4e85))
|
|
12
|
+
|
|
13
|
+
# [1.7.0](https://github.com/CoCreate-app/CoCreate-config/compare/v1.6.9...v1.7.0) (2023-11-19)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* update dependecies for th latest features and bug fixes ([09c74ee](https://github.com/CoCreate-app/CoCreate-config/commit/09c74ee9197167324361741914fe82a5bb76f52f))
|
|
19
|
+
|
|
1
20
|
## [1.6.9](https://github.com/CoCreate-app/CoCreate-config/compare/v1.6.8...v1.6.9) (2023-11-12)
|
|
2
21
|
|
|
3
22
|
|
package/docs/index.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
type="text/css" />
|
|
29
29
|
<link
|
|
30
30
|
rel="stylesheet"
|
|
31
|
-
href="
|
|
31
|
+
href="../index.css"
|
|
32
32
|
array="files"
|
|
33
33
|
object="60888216117c640e7596303f"
|
|
34
34
|
key="src"
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
</head>
|
|
39
39
|
|
|
40
40
|
<body>
|
|
41
|
+
<!-- Navbar -->
|
|
41
42
|
<nav
|
|
42
|
-
class="
|
|
43
|
+
class="width:100% display:flex align-items:center background:transparent padding-top:10px padding-bottom:10px"
|
|
43
44
|
content_id="content"
|
|
44
|
-
scroll="sticky-nav,
|
|
45
|
-
scroll-up="
|
|
46
|
-
scroll-down="
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
key="src"></nav>
|
|
45
|
+
scroll="sticky-nav,"
|
|
46
|
+
scroll-up="5"
|
|
47
|
+
scroll-down="5"
|
|
48
|
+
path="../"
|
|
49
|
+
src="../components/navbar.html"></nav>
|
|
50
50
|
<sidenav
|
|
51
51
|
id="menuL"
|
|
52
52
|
class="position:fixed top:0px left:0px overflow:hidden background:whitesmoke height:100vh width:0px width:300px@xl"
|
|
@@ -371,10 +371,8 @@
|
|
|
371
371
|
<button
|
|
372
372
|
href="https://github.com/CoCreate-app/CoCreate-config/tree/master/docs/index.html?message=docs%3A%20describe%20your%20change..."
|
|
373
373
|
target="_blank"
|
|
374
|
-
class="position:fixed bottom:15px right:15px
|
|
375
|
-
<i
|
|
376
|
-
class="height:20px fill:#505050"
|
|
377
|
-
src="/assets/svg/pencil-alt.svg"></i>
|
|
374
|
+
class="display:flex justify-content:center align-items:center position:fixed bottom:15px right:15px height:50px width:50px border-radius:50% box-shadow:0px_2px_10px_0px_rgba(0,_0,_0,_0.4)">
|
|
375
|
+
<i class="height:20px" src="../assets/svg/pencil-alt.svg"></i>
|
|
378
376
|
</button>
|
|
379
377
|
</main>
|
|
380
378
|
<script src="https://CoCreate.app/dist/CoCreate.js"></script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "A convenient chain handler allows user to chain multiple CoCreate components together. When one action is complete next one will start. The sequence goes untill all config completed. Grounded on Vanilla javascript, easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"webpack-log": "^3.0.1"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cocreate/utils": "^1.
|
|
62
|
+
"@cocreate/utils": "^1.28.0"
|
|
63
63
|
}
|
|
64
64
|
}
|