Skip to content

Commit

Permalink
Updated build
Browse files Browse the repository at this point in the history
  • Loading branch information
lane-formio committed Oct 8, 2024
1 parent 710ebcd commit d5dfc20
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 13 deletions.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 3.0.0-rc.38
### Changed
- FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in DataTable
- FIO-9169 Fixed missing icon in formbuilder

## 3.0.0-rc.37
### Changed
- FIO-8752: fix tabindex for keyboard actions
Expand Down
2 changes: 1 addition & 1 deletion dist/bootstrap4.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootstrap5.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/cjs/templates/bootstrap4/tbody/html.ejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ __p += '\n ';
row.forEach(function(rowComp) { ;
__p += '\n ';
if (rowComp.component.show) { ;
__p += '\n <td \n ' +
__p += '\n <td\n ' +
((__t = ( ctx.component.cellMaxWidth ? 'style="max-width:'+ ctx.component.cellMaxWidth + ';"' : '')) == null ? '' : __t) +
'\n ' +
((__t = ( ctx.component.clipCells ? 'class="clip"' : '')) == null ? '' : __t) +
'>\n ' +
((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) )) == null ? '' : __t) +
((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue, rowComp.rowIndex) )) == null ? '' : __t) +
'\n </td>\n ';
} ;
__p += '\n ';
Expand All @@ -40,6 +40,6 @@ __p += '\n </ul>\n </div>\n ⋮\n </div>\n </th>\
} ;
__p += '\n </tr>\n ';
}); ;
__p += '\n</tbody>\n</table>';
__p += '\n</tbody>\n</table>\n';
return __p
}
2 changes: 1 addition & 1 deletion lib/cjs/templates/bootstrap5/builderComponent/form.ejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ __p += '\n <div\n role="button"\n aria-label="Copy butt
'"></i>\n </div>\n ';
} ;
__p += '\n <div\n role="button"\n aria-label="Move button"\n tabindex="-1"\n class="btn btn-xxs btn-default component-settings-button component-settings-button-move"\n ref="moveComponent"\n >\n <i class="' +
((__t = (ctx.iconClass('move'))) == null ? '' : __t) +
((__t = (ctx.iconClass('arrows'))) == null ? '' : __t) +
'"></i>\n </div>\n ';
if (!(ctx.design && ctx.childComponent.type === 'reviewpage')) { ;
__p += '\n <div\n role="button"\n aria-label="Edit button. Click to open component settings modal window"\n tabindex="-1"\n class="btn btn-xxs btn-secondary component-settings-button component-settings-button-edit"\n ref="editComponent"\n >\n <i class="' +
Expand Down
2 changes: 1 addition & 1 deletion lib/cjs/templates/bootstrap5/iconClass.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ exports.default = (iconset, name, spinning) => {
case 'new-window':
biName = 'window-plus';
break;
case 'move':
case 'arrows':
biName = 'arrows-move';
break;
case 'edit':
Expand Down
6 changes: 3 additions & 3 deletions lib/mjs/templates/bootstrap4/tbody/html.ejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ __p += '\n ';
row.forEach(function(rowComp) { ;
__p += '\n ';
if (rowComp.component.show) { ;
__p += '\n <td \n ' +
__p += '\n <td\n ' +
((__t = ( ctx.component.cellMaxWidth ? 'style="max-width:'+ ctx.component.cellMaxWidth + ';"' : '')) == null ? '' : __t) +
'\n ' +
((__t = ( ctx.component.clipCells ? 'class="clip"' : '')) == null ? '' : __t) +
'>\n ' +
((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) )) == null ? '' : __t) +
((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue, rowComp.rowIndex) )) == null ? '' : __t) +
'\n </td>\n ';
} ;
__p += '\n ';
Expand All @@ -37,6 +37,6 @@ __p += '\n </ul>\n </div>\n ⋮\n </div>\n </th>\
} ;
__p += '\n </tr>\n ';
}); ;
__p += '\n</tbody>\n</table>';
__p += '\n</tbody>\n</table>\n';
return __p
}
2 changes: 1 addition & 1 deletion lib/mjs/templates/bootstrap5/builderComponent/form.ejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ __p += '\n <div\n role="button"\n aria-label="Copy butt
'"></i>\n </div>\n ';
} ;
__p += '\n <div\n role="button"\n aria-label="Move button"\n tabindex="-1"\n class="btn btn-xxs btn-default component-settings-button component-settings-button-move"\n ref="moveComponent"\n >\n <i class="' +
((__t = (ctx.iconClass('move'))) == null ? '' : __t) +
((__t = (ctx.iconClass('arrows'))) == null ? '' : __t) +
'"></i>\n </div>\n ';
if (!(ctx.design && ctx.childComponent.type === 'reviewpage')) { ;
__p += '\n <div\n role="button"\n aria-label="Edit button. Click to open component settings modal window"\n tabindex="-1"\n class="btn btn-xxs btn-secondary component-settings-button component-settings-button-edit"\n ref="editComponent"\n >\n <i class="' +
Expand Down
2 changes: 1 addition & 1 deletion lib/mjs/templates/bootstrap5/iconClass.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default (iconset, name, spinning) => {
case 'new-window':
biName = 'window-plus';
break;
case 'move':
case 'arrows':
biName = 'arrows-move';
break;
case 'edit':
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formio/bootstrap",
"version": "3.0.0-rc.37",
"version": "3.0.0-rc.38",
"description": "Bootstrap templates for Form.io forms",
"main": "lib/cjs/bootstrap5.js",
"module": "lib/mjs/bootstrap5.js",
Expand Down

0 comments on commit d5dfc20

Please sign in to comment.