@cocreate/unique 1.6.26 → 1.6.27
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 +7 -0
- package/docs/index.html +22 -24
- package/package.json +4 -4
- package/webpack.config.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.6.27](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.6.26...v1.6.27) (2022-12-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update demos and bump dependencies ([8dc1044](https://github.com/CoCreate-app/CoCreate-unique/commit/8dc1044d81677c5730315dbb228df6ee2b5139c5))
|
|
7
|
+
|
|
1
8
|
## [1.6.26](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.6.25...v1.6.26) (2022-12-21)
|
|
2
9
|
|
|
3
10
|
|
package/docs/index.html
CHANGED
|
@@ -95,30 +95,28 @@
|
|
|
95
95
|
</span>
|
|
96
96
|
</div>
|
|
97
97
|
<div class="position:sticky top:0 padding:15px_0px height:100vh">
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
</div>
|
|
121
|
-
<!-- End SandBox -->
|
|
98
|
+
<!-- SandBox -->
|
|
99
|
+
<div class="position:relative overflow:hidden card border-radius:2px width:auto height:600px margin-top:20px" id="playground">
|
|
100
|
+
|
|
101
|
+
<div id="demo-code" resizable class="position:relative height:50%">
|
|
102
|
+
<textarea type="code" lang="html" collection="demos" document_id="" name="demo" save="false" id="demo" class="height:100% width:100% outline:none border:none resize:none padding:5px"></textarea>
|
|
103
|
+
<div resize="bottom" class="background:lightgrey"></div>
|
|
104
|
+
</div>
|
|
105
|
+
|
|
106
|
+
<div id="demo-preview" class="position:relative display:flex height:100% background-color:white">
|
|
107
|
+
<div get-value="#demo" class="padding:20px"></div>
|
|
108
|
+
</div>
|
|
109
|
+
|
|
110
|
+
<div class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
|
|
111
|
+
<a class="margin-right:10px" id="eye" show="#eye-slash" hide="#eye, #demo-preview" toggle="code-height" toggle-target="#demo-code"><i class="far fa-eye"></i></a>
|
|
112
|
+
<a class="margin-right:10px" hidden id="eye-slash" show="#eye, #demo-preview" hide="#eye-slash" toggle="code-height" toggle-target="#demo-code"><i class="fas fa-eye-slash"></i></a>
|
|
113
|
+
<a class="margin-right:10px" id="code" show="#code-slash" hide="#code, #demo-code"><i class="fa fa-code"></i></a>
|
|
114
|
+
<a class="margin-right:10px" hidden id="code-slash" show="#code, #demo-code" hide="#code-slash"><i class="fas fa-code"></i></a>
|
|
115
|
+
<a class="margin-right:5px" fullscreen target="#playground"><i class="fas fa-expand"></i></a>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
</div>
|
|
119
|
+
<!-- End SandBox -->
|
|
122
120
|
</div>
|
|
123
121
|
</div>
|
|
124
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/unique",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.27",
|
|
4
4
|
"description": "A simple unique component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unique",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"webpack-log": "^3.0.1"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@cocreate/crud-client": "^1.16.
|
|
64
|
-
"@cocreate/docs": "^1.4.
|
|
65
|
-
"@cocreate/uuid": "^1.2.
|
|
63
|
+
"@cocreate/crud-client": "^1.16.19",
|
|
64
|
+
"@cocreate/docs": "^1.4.22",
|
|
65
|
+
"@cocreate/uuid": "^1.2.43"
|
|
66
66
|
}
|
|
67
67
|
}
|