Skip to content

Commit 83ed30c

Browse files
semantic-release-botFrank Pagan
authored and
Frank Pagan
committed
feat: replaced get-value and set-value with a super charged version of CoCreate-events
1 parent 59a5b45 commit 83ed30c

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.4.8](https://github.com/CoCreate-app/CoCreate-kanban/compare/v1.4.7...v1.4.8) (2023-02-01)
2+
3+
4+
### Bug Fixes
5+
6+
* bump dependencies ([59a5b45](https://github.com/CoCreate-app/CoCreate-kanban/commit/59a5b454b96e8f5a67eb4264c4bce196353abb2a))
7+
18
## [1.4.7](https://github.com/CoCreate-app/CoCreate-kanban/compare/v1.4.6...v1.4.7) (2023-01-31)
29

310

docs/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ <h2 class="padding:5px_0px">Demo</h2>
100100
<div class="display:flex flex-direction:column position:relative overflow:hidden card border-radius:2px width:auto height:600px margin-top:20px" id="playground">
101101

102102
<div id="demo-code" resizable class="position:relative height:50%">
103-
<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+
<textarea type="code" lang="html" collection="demos" document_id="" name="demo" save="false" id="demo" input-target=".demopreview" input-attribute="value" input-events="input, onload" class="height:100% width:100% outline:none border:none resize:none padding:5px"></textarea>
104104
<div resize="bottom" class="background:lightgrey"></div>
105105
</div>
106106

107107
<div id="demo-preview" class="position:relative overflow:auto background-color:white">
108-
<div get-value="#demo" class="padding:20px"></div>
108+
<div class="demopreview" class="padding:20px"></div>
109109
</div>
110110

111111
<div class="font-size:20px position:absolute top:10px right:10px opacity:0.6">

package.json

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cocreate/kanban",
3-
"version": "1.4.7",
3+
"version": "1.4.8",
44
"description": "A simple kanban component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
55
"keywords": [
66
"kanban",
@@ -20,7 +20,9 @@
2020
"html5-framework",
2121
"javascript-framework"
2222
],
23-
"publishConfig": { "access": "public" },
23+
"publishConfig": {
24+
"access": "public"
25+
},
2426
"scripts": {
2527
"start": "npx webpack --config webpack.config.js",
2628
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
@@ -33,7 +35,9 @@
3335
},
3436
"author": "CoCreate LLC",
3537
"license": "MIT",
36-
"bugs": { "url": "https://github.com/CoCreate-app/CoCreate-kanban/issues" },
38+
"bugs": {
39+
"url": "https://github.com/CoCreate-app/CoCreate-kanban/issues"
40+
},
3741
"homepage": "https://cocreate.app/docs/kanban",
3842
"funding": {
3943
"type": "GitHub Sponsors ❤",
@@ -53,5 +57,7 @@
5357
"webpack-cli": "^4.5.0",
5458
"webpack-log": "^3.0.1"
5559
},
56-
"dependencies": { "@cocreate/docs": "^1.5.13" }
60+
"dependencies": {
61+
"@cocreate/docs": "^1.5.13"
62+
}
5763
}

0 commit comments

Comments
 (0)