@dile/ui 2.1.29 → 2.1.31

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.
@@ -16,13 +16,13 @@ export class DileButtonIcon extends DileButton {
16
16
  button {
17
17
  display: flex;
18
18
  align-items: center;
19
- --dile-icon-color: var(--dile-on-primary-color, #ffffff);
19
+ --dile-icon-color: var(--dile-icon-button-color, var(--dile-on-primary-color, #ffffff));
20
20
  }
21
21
  dile-icon {
22
22
  margin-right: var(--dile-button-icon-separation, 0.3rem);
23
23
  }
24
24
  button:hover {
25
- --dile-icon-color: var(--dile-button-icon-hover-color, #303030);
25
+ --dile-icon-color: var(--dile-button-icon-hover-color, var(--dile-on-primary-light-color, #888));
26
26
  }
27
27
  :host([no-wrap]) {
28
28
  white-space: nowrap;
@@ -88,7 +88,7 @@ export class DileSelectAjax extends DileEmmitChange(LitElement) {
88
88
  state: true,
89
89
  },
90
90
  isSelected: {
91
- type: Object,
91
+ type: Boolean,
92
92
  state: true,
93
93
  },
94
94
  /* When static is true there is no posibility to search, then all the options are displayed on the select on initialization */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/ui",
3
- "version": "2.1.29",
3
+ "version": "2.1.31",
4
4
  "description": "UI Core components from dile-components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "ae6bb276e5139b7924bb81e4235d0745a59057b8"
29
+ "gitHead": "65ffbb1743178dcdcda4f7ab2a89d33ca11852f2"
30
30
  }