@itfin/components 2.0.54 → 2.0.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "2.0.54",
3
+ "version": "2.0.55",
4
4
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -53,7 +53,7 @@
53
53
  clickable
54
54
  column-sorting
55
55
  column-resizing
56
- indicator-type="checkbox"
56
+ :indicator-type="indicatorType"
57
57
  class="permanent-checkboxes"
58
58
  :state-name="stateName"
59
59
  id-property="id"
@@ -131,6 +131,7 @@ class itfView extends Vue {
131
131
  @Prop(String) itemsKey;
132
132
  @Prop(String) panelKey;
133
133
  @Prop(String) stateName;
134
+ @Prop({ type: String, default: 'checkbox' }) indicatorType;
134
135
  @Prop({ type: String, default () { return this.$t('components.table.search'); } }) searchPlaceholder;
135
136
  @Prop() panel;
136
137
  @Prop(Boolean) showActions;