@masterteam/client-components 0.0.93 → 0.0.94

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": "@masterteam/client-components",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
4
4
  "publishConfig": {
5
5
  "directory": "../../../dist/masterteam/client-components",
6
6
  "linkDirectory": true,
@@ -16,10 +16,10 @@
16
16
  "rxjs": "^7.8.2",
17
17
  "tailwindcss": "^4.2.2",
18
18
  "tailwindcss-primeui": "^0.6.1",
19
- "@masterteam/forms": "^0.0.141",
19
+ "@masterteam/dashboard-builder": "^0.0.88",
20
+ "@masterteam/components": "^0.0.292",
20
21
  "@masterteam/icons": "^0.0.17",
21
- "@masterteam/components": "^0.0.287",
22
- "@masterteam/dashboard-builder": "^0.0.89"
22
+ "@masterteam/forms": "^0.0.152"
23
23
  },
24
24
  "dependencies": {
25
25
  "tslib": "^2.8.1"
@@ -43,6 +43,14 @@ interface PreviewFetchValueCell {
43
43
  raw: unknown;
44
44
  value: unknown;
45
45
  display?: string | null;
46
+ /**
47
+ * The colour the backend resolved for this value. See `EntityData.color`.
48
+ *
49
+ * Declared explicitly even though the index signature below would admit it:
50
+ * left undeclared it was silently dropped by the mapper, and nothing could
51
+ * flag that because `unknown` is assignable from anything.
52
+ */
53
+ color?: string | null;
46
54
  comparison?: _masterteam_components_entities.PropertyValueComparison;
47
55
  [key: string]: unknown;
48
56
  }
@@ -409,6 +409,16 @@ interface ClientListFetchValueCell {
409
409
  raw: unknown;
410
410
  value: unknown;
411
411
  display?: string | null;
412
+ /**
413
+ * The colour the backend resolved for this value — a Percentage's band
414
+ * colour, or the colour its `colorSource: 'property'` configuration took
415
+ * from a sibling property on this record.
416
+ *
417
+ * Declared explicitly even though the index signature below would admit it:
418
+ * left undeclared it was silently dropped by every mapper, and nothing could
419
+ * flag that because `unknown` is assignable from anything.
420
+ */
421
+ color?: string | null;
412
422
  comparison?: _masterteam_components_entities.PropertyValueComparison;
413
423
  [key: string]: unknown;
414
424
  }