@stoker-platform/types 0.5.72 → 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 +1 -1
- package/src/types/app.ts +1 -1
- package/src/types/schema.ts +1 -1
package/package.json
CHANGED
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 */
|
package/src/types/schema.ts
CHANGED
|
@@ -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 */
|