Skip to content

Commit

Permalink
feat: replaced get-value and set-value with a super charged version o…
Browse files Browse the repository at this point in the history
…f CoCreate-events
  • Loading branch information
semantic-release-bot authored and Frank Pagan committed Mar 16, 2023
1 parent 59a5b45 commit 83ed30c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.4.8](https://github.com/CoCreate-app/CoCreate-kanban/compare/v1.4.7...v1.4.8) (2023-02-01)


### Bug Fixes

* bump dependencies ([59a5b45](https://github.com/CoCreate-app/CoCreate-kanban/commit/59a5b454b96e8f5a67eb4264c4bce196353abb2a))

## [1.4.7](https://github.com/CoCreate-app/CoCreate-kanban/compare/v1.4.6...v1.4.7) (2023-01-31)


Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ <h2 class="padding:5px_0px">Demo</h2>
<div class="display:flex flex-direction:column position:relative overflow:hidden card border-radius:2px width:auto height:600px margin-top:20px" id="playground">

<div id="demo-code" resizable class="position:relative height:50%">
<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>
<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>
<div resize="bottom" class="background:lightgrey"></div>
</div>

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

<div class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
Expand Down
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cocreate/kanban",
"version": "1.4.7",
"version": "1.4.8",
"description": "A simple kanban component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
"keywords": [
"kanban",
Expand All @@ -20,7 +20,9 @@
"html5-framework",
"javascript-framework"
],
"publishConfig": { "access": "public" },
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npx webpack --config webpack.config.js",
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
Expand All @@ -33,7 +35,9 @@
},
"author": "CoCreate LLC",
"license": "MIT",
"bugs": { "url": "https://github.com/CoCreate-app/CoCreate-kanban/issues" },
"bugs": {
"url": "https://github.com/CoCreate-app/CoCreate-kanban/issues"
},
"homepage": "https://cocreate.app/docs/kanban",
"funding": {
"type": "GitHub Sponsors ❤",
Expand All @@ -53,5 +57,7 @@
"webpack-cli": "^4.5.0",
"webpack-log": "^3.0.1"
},
"dependencies": { "@cocreate/docs": "^1.5.13" }
"dependencies": {
"@cocreate/docs": "^1.5.13"
}
}

0 comments on commit 83ed30c

Please sign in to comment.