8000 web 10.3.0 by adumesny · Pull Request #2724 · gridstack/gridstack.js · GitHub
[go: up one dir, main page]

Skip to content

web 10.3.0 #2724

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions demo/two.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
<body>
<div class="container-fluid">
<h1>Two grids demo</h1>
<p>Two grids, one floating one not, showing drag&drop from sidebar and between grids.
<br>New v10.2: use 'Esc' to cancel any move/resize. Use 'r' to rotate as you drag.</p>

<div class="row">
<div class="col-md-3">
Expand Down Expand Up @@ -71,11 +73,13 @@ <h1>Two grids demo</h1>

let items = [
{x: 0, y: 0, w: 2, h: 2},
{x: 3, y: 1, h: 2},
{x: 4, y: 1},
{x: 2, y: 3, w: 3, maxW: 3, id: 'special', content: 'has maxW=3'},
{x: 1, y: 1, h: 2}, // intentional overlap to test collision on load
{x: 1, y: 1}, // intentional overlap to test collision on load
{x: 3, y: 1},
{x: 2, y: 3, w: 3, maxW: 3, content: 'has maxW=3'},
{x: 2, y: 5}
];
items.forEach((item, i) => item.content = item.content || String(i));

grids.forEach(function (grid, i) {
addEvents(grid, i);
Expand Down
2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/es5/gridstack-all.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/es5/gridstack-all.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/es5/gridstack-poly.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/gridstack-all.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/gridstack-all.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/gridstack/dist/gridstack.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"homepage": "http://gridstackjs.com",
"dependencies": {
"gridstack": "10.2.1"
"gridstack": "10.3.0"
},
"devDependencies": {
"prettier": "3.2.5"
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# yarn lockfile v1


gridstack@10.2.1:
version "10.2.1"
resolved "https://registry.yarnpkg.com/gridstack/-/gridstack-10.2.1.tgz#3ce6119ae86cfb0a533c5f0d15b03777a55384ca"
integrity sha512-UAPKnIvd9sIqPDFMtKMqj0G5GDj8MUFPcelRJq7FzQFSxSYBblKts/Gd52iEJg0EvTFP51t6ZuMWGx0pSSFBdw==
gridstack@10.3.0:
version "10.3.0"
resolved "https://registry.yarnpkg.com/gridstack/-/gridstack-10.3.0.tgz#8fa065f896d0a880c5c54c24d189f3197184488a"
integrity sha512-eGKsmU2TppV4coyDu9IIdIkm4qjgLLdjlEOFwQyQMuSwfOpzSfLdPc8du0HuebGr7CvAIrJxN4lBOmGrWSBg9g==

prettier@3.2.5:
version "3.2.5"
Expand Down
0