@limetech/lime-elements 39.44.2 → 39.44.4

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.
@@ -58,7 +58,7 @@ export class Checkbox {
58
58
  this.readonlyLabels = [];
59
59
  this.modified = false;
60
60
  this.shouldReinitialize = false;
61
- this.id = createRandomString();
61
+ this.inputId = createRandomString();
62
62
  this.helperTextId = createRandomString();
63
63
  this.destroyMDCInstances = () => {
64
64
  const input = this.getCheckboxElement();
@@ -131,7 +131,7 @@ export class Checkbox {
131
131
  this.destroyMDCInstances();
132
132
  }
133
133
  render() {
134
- return (h(CheckboxTemplate, { key: 'f01c9a3786bfb88bbf4450fc4b96f48385e50cc2', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.id }));
134
+ return (h(CheckboxTemplate, { key: '2193fb569354ec8ef9effbeaa5d600c9fde9686f', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.inputId }));
135
135
  }
136
136
  static get is() { return "limel-checkbox"; }
137
137
  static get encapsulation() { return "shadow"; }
@@ -376,6 +376,21 @@ export const topLevelStringCustomComponentSchema = {
376
376
  },
377
377
  },
378
378
  };
379
+ export const stringWithDefaultCustomComponentSchema = {
380
+ type: 'object',
381
+ properties: {
382
+ icon: {
383
+ type: 'string',
384
+ title: 'Icon',
385
+ default: 'decision',
386
+ lime: { component: { name: 'limel-input-field' } },
387
+ },
388
+ name: {
389
+ type: 'string',
390
+ title: 'Name',
391
+ },
392
+ },
393
+ };
379
394
  export const arrayItemWithDependenciesSchema = {
380
395
  type: 'object',
381
396
  properties: {
@@ -701,6 +701,12 @@
701
701
  text-overflow: ellipsis;
702
702
  outline: none;
703
703
  }
704
+ .tabulator-row .tabulator-cell .tabulator-tick {
705
+ fill: #2DC214;
706
+ }
707
+ .tabulator-row .tabulator-cell .tabulator-cross {
708
+ fill: #CE1515;
709
+ }
704
710
  .tabulator-row .tabulator-cell.tabulator-row-header {
705
711
  border-right: 1px solid #999;
706
712
  border-bottom: 1px solid #aaa;
@@ -38,7 +38,7 @@ const Checkbox = class {
38
38
  this.readonlyLabels = [];
39
39
  this.modified = false;
40
40
  this.shouldReinitialize = false;
41
- this.id = createRandomString();
41
+ this.inputId = createRandomString();
42
42
  this.helperTextId = createRandomString();
43
43
  this.destroyMDCInstances = () => {
44
44
  const input = this.getCheckboxElement();
@@ -111,7 +111,7 @@ const Checkbox = class {
111
111
  this.destroyMDCInstances();
112
112
  }
113
113
  render() {
114
- return (h(CheckboxTemplate, { key: 'f01c9a3786bfb88bbf4450fc4b96f48385e50cc2', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.id }));
114
+ return (h(CheckboxTemplate, { key: '2193fb569354ec8ef9effbeaa5d600c9fde9686f', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.inputId }));
115
115
  }
116
116
  get limelCheckbox() { return getElement(this); }
117
117
  static get watchers() { return {