@oat-sa/tao-core-ui 3.7.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/datatable.js CHANGED
@@ -426,6 +426,8 @@ define(['jquery', 'lodash', 'i18n', 'core/pluginifier', 'handlebars', 'lib/handl
426
426
 
427
427
  var buffer = "", stack1;
428
428
  buffer += "\n <button class=\"btn-info small "
429
+ + escapeExpression(((stack1 = (depth2 && depth2.cls)),typeof stack1 === functionType ? stack1.apply(depth0) : stack1))
430
+ + " "
429
431
  + escapeExpression(((stack1 = (depth2 && depth2.id)),typeof stack1 === functionType ? stack1.apply(depth0) : stack1))
430
432
  + "\"\n ";
431
433
  stack1 = helpers['if'].call(depth0, (depth2 && depth2.title), {hash:{},inverse:self.noop,fn:self.programWithDepth(71, program71, data, depth2),data:data});
@@ -549,6 +551,8 @@ define(['jquery', 'lodash', 'i18n', 'core/pluginifier', 'handlebars', 'lib/handl
549
551
 
550
552
  var buffer = "", stack1;
551
553
  buffer += "\n <button class=\"btn-info small "
554
+ + escapeExpression(((stack1 = (depth2 && depth2.cls)),typeof stack1 === functionType ? stack1.apply(depth0) : stack1))
555
+ + " "
552
556
  + escapeExpression(((stack1 = (depth2 && depth2.id)),typeof stack1 === functionType ? stack1.apply(depth0) : stack1))
553
557
  + "\"\n ";
554
558
  stack1 = helpers['if'].call(depth0, (depth2 && depth2.title), {hash:{},inverse:self.noop,fn:self.programWithDepth(71, program71, data, depth2),data:data});
@@ -686,6 +690,10 @@ define(['jquery', 'lodash', 'i18n', 'core/pluginifier', 'handlebars', 'lib/handl
686
690
  }
687
691
 
688
692
  buffer += "<button class=\"btn-info small ";
693
+ if (helper = helpers.cls) { stack1 = helper.call(depth0, {hash:{},data:data}); }
694
+ else { helper = (depth0 && depth0.cls); stack1 = typeof helper === functionType ? helper.call(depth0, {hash:{},data:data}) : helper; }
695
+ buffer += escapeExpression(stack1)
696
+ + " ";
689
697
  if (helper = helpers.id) { stack1 = helper.call(depth0, {hash:{},data:data}); }
690
698
  else { helper = (depth0 && depth0.id); stack1 = typeof helper === functionType ? helper.call(depth0, {hash:{},data:data}) : helper; }
691
699
  buffer += escapeExpression(stack1)
@@ -1486,12 +1494,14 @@ define(['jquery', 'lodash', 'i18n', 'core/pluginifier', 'handlebars', 'lib/handl
1486
1494
  const disabled = getPropertyValue('disabled', action, nextData);
1487
1495
  const icon = getPropertyValue('icon', action, nextData);
1488
1496
  const label = getPropertyValue('label', action, nextData);
1497
+ const cls = getPropertyValue('cls', action, nextData);
1489
1498
  const $actionButton = $$1(buttonTpl({
1490
1499
  id,
1491
1500
  icon,
1492
1501
  label,
1493
1502
  title,
1494
- disabled
1503
+ disabled,
1504
+ cls
1495
1505
  }));
1496
1506
  if (!hidden) {
1497
1507
  $actionCell.append('\n').append($actionButton);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oat-sa/tao-core-ui",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "displayName": "TAO Core UI",
5
5
  "description": "UI libraries of TAO",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
- <button class="btn-info small {{id}}"
1
+ <button class="btn-info small {{cls}} {{id}}"
2
2
  {{#if title}} title="{{title}}"{{/if}}
3
3
  {{#if disabled}} disabled="disabled"{{/if}}>
4
4
  {{#if icon}}<span class="icon-{{icon}}"></span>{{/if}}
@@ -97,7 +97,7 @@
97
97
  {{#if id}}
98
98
  {{#with ../../../../this}}
99
99
  {{#unless ../hidden}}
100
- <button class="btn-info small {{../../id}}"
100
+ <button class="btn-info small {{../../cls}} {{../../id}}"
101
101
  {{#if ../../title}} title="{{../../../title}}"{{/if}}
102
102
  {{#if ../../disabled}} disabled="disabled"{{/if}}>
103
103
  {{#if ../../icon}}<span class="icon-{{../../../icon}}"></span>{{/if}}
@@ -128,7 +128,7 @@
128
128
  {{#if id}}
129
129
  {{#with ../../../this}}
130
130
  {{#unless ../hidden}}
131
- <button class="btn-info small {{../../id}}"
131
+ <button class="btn-info small {{../../cls}} {{../../id}}"
132
132
  {{#if ../../title}} title="{{../../../title}}"{{/if}}
133
133
  {{#if ../../disabled}} disabled="disabled"{{/if}}>
134
134
  {{#if ../../icon}}<span class="icon-{{../../../icon}}"></span>{{/if}}
package/src/datatable.js CHANGED
@@ -887,7 +887,8 @@ const dataTable = {
887
887
  const disabled = getPropertyValue('disabled', action, nextData);
888
888
  const icon = getPropertyValue('icon', action, nextData);
889
889
  const label = getPropertyValue('label', action, nextData);
890
- const $actionButton = $(buttonTpl({ id, icon, label, title, disabled }));
890
+ const cls = getPropertyValue('cls', action, nextData);
891
+ const $actionButton = $(buttonTpl({ id, icon, label, title, disabled, cls }));
891
892
 
892
893
  if (!hidden) {
893
894
  $actionCell.append('\n').append($actionButton);