@stoker-platform/types 0.5.71 → 0.5.73

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": "@stoker-platform/types",
3
- "version": "0.5.71",
3
+ "version": "0.5.73",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "src/main.ts",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "engines": {
21
21
  "node": ">=22",
22
- "npm": "11"
22
+ "npm": ">=12"
23
23
  },
24
24
  "dependencies": {
25
25
  "@fullcalendar/core": "^6.1.21",
package/src/types/app.ts CHANGED
@@ -195,7 +195,7 @@ export interface DashboardMetric {
195
195
  /** Suffix text, for example units */
196
196
  suffix?: string
197
197
  /** Tailwind text size for the metric value */
198
- textSize?: "text-xl" | "text-2xl" | "text-3xl"
198
+ textSize?: "text-xs" | "text-sm" | "text-base" | "text-lg" | "text-xl" | "text-2xl" | "text-3xl"
199
199
  /** Firestore constraints to apply to the metric query */
200
200
  constraints?: [string, WhereFilterOp, unknown][]
201
201
  /** Force metric data to be loaded from the server */
@@ -951,7 +951,7 @@ export interface Metric {
951
951
  /** Suffix text, for example units */
952
952
  suffix?: string
953
953
  /** Tailwind text size for the metric value */
954
- textSize?: "text-xl" | "text-2xl" | "text-3xl"
954
+ textSize?: "text-xs" | "text-sm" | "text-base" | "text-lg" | "text-xl" | "text-2xl" | "text-3xl"
955
955
  /** Compact the metric vertically */
956
956
  compact?: boolean
957
957
  /** Custom metric calculation */