Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lenadax committed Feb 25, 2025
1 parent 8c10db8 commit bae67b6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ Changes
2.0a2 (unreleased)
------------------

- Nothing changed yet.
- Update jQuery to version ``4.0.0-beta.2``.
[lenadax]

- Use ``bootstrap-icons`` font instead of glyphicons.
[lenadax]

- Add visual effects to distinguish rows that have been moved or created.
[lenadax]

- Implement dark theme for ``Bootstrap5`` dark theme mode.
[lenadax]

- Use rollup for bundling scss. Use ``make rollup`` to compile js and scss.
[lenadax]

- Create Bootstrap5 widget version.
[lenadax]


2.0a1 (2023-05-15)
Expand Down
2 changes: 1 addition & 1 deletion js/src/default/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function on_array_event(event, subscriber) {
}

export function inside_template(elem) {
return elem.parents('.arraytemplate').length > 0
return elem.parents('.arraytemplate').length > 0;
}

export class ArrayWidget extends ArrayBase {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@web/test-runner": "^0.18.3",
"@web/test-runner-core": "^0.13.2",
"install": "^0.13.0",
"jquery": "^4.0.0-beta",
"jquery": "^4.0.0-beta.2",
"qunit": "^2.20.1",
"rollup": "^2.79.2",
"rollup-plugin-cleanup": "^3.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/yafowil/widget/array/resources/default/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ var yafowil_array = (function (exports, $) {
_array_subscribers[event].push(subscriber);
}
function inside_template(elem) {
return elem.parents('.arraytemplate').length > 0
return elem.parents('.arraytemplate').length > 0;
}
class ArrayWidget extends ArrayBase {
static initialize(context) {
Expand Down

0 comments on commit bae67b6

Please sign in to comment.