@api-client/ui 0.5.49 → 0.5.51

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": "@api-client/ui",
3
- "version": "0.5.49",
3
+ "version": "0.5.51",
4
4
  "description": "Internal UI component library for the API Client ecosystem.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "build/src/index.js",
@@ -16,7 +16,7 @@ export default css`
16
16
  }
17
17
 
18
18
  :host([disabled]) {
19
- cursor: not-allowed;
19
+ pointer-events: none;
20
20
  }
21
21
 
22
22
  :host([hidden]) {
@@ -36,6 +36,16 @@ export default css`
36
36
  height: 56px;
37
37
  }
38
38
 
39
+ :host([disabled]) .surface {
40
+ background-color: color-mix(in srgb, var(--md-sys-color-on-surface), transparent 96%);
41
+ }
42
+
43
+ :host([disabled]) .surface,
44
+ :host([disabled]) .headline,
45
+ :host([disabled]) .supporting-text {
46
+ color: color-mix(in srgb, var(--md-sys-color-on-surface), transparent 36%);
47
+ }
48
+
39
49
  :host([image='image']) .surface,
40
50
  .surface.two-lines {
41
51
  height: 72px;
@@ -11,7 +11,15 @@ export default css`
11
11
  --md-focus-ring-shape-start-start: var(--md-sys-shape-corner-extra-small);
12
12
  }
13
13
 
14
+ .ui-select {
15
+ display: flex;
16
+ flex-direction: row;
17
+ width: 100%;
18
+ box-sizing: border-box;
19
+ }
20
+
14
21
  .input {
15
22
  cursor: default;
23
+ flex: 1;
16
24
  }
17
25
  `