pxengine 0.1.98 → 0.1.99
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/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +246 -63
- package/dist/index.d.ts +246 -63
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +893 -7
- package/package.json +16 -6
package/dist/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxengine/ui",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"lastUpdated": "2026-06-
|
|
4
|
+
"lastUpdated": "2026-06-24T11:38:07.492Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -13275,37 +13275,37 @@
|
|
|
13275
13275
|
"headerTextColor": {
|
|
13276
13276
|
"type": "string",
|
|
13277
13277
|
"required": false,
|
|
13278
|
-
"defaultValue": "#9ca3af",
|
|
13278
|
+
"defaultValue": "var(--muted-foreground-color, #9ca3af)",
|
|
13279
13279
|
"description": ""
|
|
13280
13280
|
},
|
|
13281
13281
|
"headerBgColor": {
|
|
13282
13282
|
"type": "string",
|
|
13283
13283
|
"required": false,
|
|
13284
|
-
"defaultValue": "#f9fafb",
|
|
13284
|
+
"defaultValue": "var(--card-background, #f9fafb)",
|
|
13285
13285
|
"description": ""
|
|
13286
13286
|
},
|
|
13287
13287
|
"rowTextColor": {
|
|
13288
13288
|
"type": "string",
|
|
13289
13289
|
"required": false,
|
|
13290
|
-
"defaultValue": "#374151",
|
|
13290
|
+
"defaultValue": "var(--card-foreground-color, #374151)",
|
|
13291
13291
|
"description": ""
|
|
13292
13292
|
},
|
|
13293
13293
|
"rowBgColor": {
|
|
13294
13294
|
"type": "string",
|
|
13295
13295
|
"required": false,
|
|
13296
|
-
"defaultValue": "#ffffff",
|
|
13296
|
+
"defaultValue": "var(--card-background, #ffffff)",
|
|
13297
13297
|
"description": ""
|
|
13298
13298
|
},
|
|
13299
13299
|
"hoverBgColor": {
|
|
13300
13300
|
"type": "string",
|
|
13301
13301
|
"required": false,
|
|
13302
|
-
"defaultValue": "
|
|
13302
|
+
"defaultValue": "rgba(127, 127, 127, 0.18)",
|
|
13303
13303
|
"description": ""
|
|
13304
13304
|
},
|
|
13305
13305
|
"borderColor": {
|
|
13306
13306
|
"type": "string",
|
|
13307
13307
|
"required": false,
|
|
13308
|
-
"defaultValue": "#f3f4f6",
|
|
13308
|
+
"defaultValue": "var(--border-color, #f3f4f6)",
|
|
13309
13309
|
"description": ""
|
|
13310
13310
|
},
|
|
13311
13311
|
"id": {
|
|
@@ -13912,6 +13912,892 @@
|
|
|
13912
13912
|
"preview": null,
|
|
13913
13913
|
"layoutHints": null
|
|
13914
13914
|
},
|
|
13915
|
+
"TrendIndicator": {
|
|
13916
|
+
"name": "TrendIndicator",
|
|
13917
|
+
"type": "molecule",
|
|
13918
|
+
"isBuilderComponent": true,
|
|
13919
|
+
"description": "Compact directional delta badge (arrow + value), semantically colored.",
|
|
13920
|
+
"props": {
|
|
13921
|
+
"value": {
|
|
13922
|
+
"type": "enum",
|
|
13923
|
+
"required": true,
|
|
13924
|
+
"description": "Magnitude shown next to the arrow, e.g. \"+12.4%\".",
|
|
13925
|
+
"enums": [
|
|
13926
|
+
"string",
|
|
13927
|
+
"number"
|
|
13928
|
+
]
|
|
13929
|
+
},
|
|
13930
|
+
"trend": {
|
|
13931
|
+
"type": "enum",
|
|
13932
|
+
"required": false,
|
|
13933
|
+
"defaultValue": "neutral",
|
|
13934
|
+
"description": "",
|
|
13935
|
+
"enums": [
|
|
13936
|
+
"up",
|
|
13937
|
+
"down",
|
|
13938
|
+
"neutral"
|
|
13939
|
+
]
|
|
13940
|
+
},
|
|
13941
|
+
"invertColors": {
|
|
13942
|
+
"type": "boolean",
|
|
13943
|
+
"required": false,
|
|
13944
|
+
"defaultValue": "false",
|
|
13945
|
+
"description": "Treat a \"down\" trend as positive (e.g. CPA decreasing is good)."
|
|
13946
|
+
},
|
|
13947
|
+
"label": {
|
|
13948
|
+
"type": "string",
|
|
13949
|
+
"required": false,
|
|
13950
|
+
"description": ""
|
|
13951
|
+
},
|
|
13952
|
+
"className": {
|
|
13953
|
+
"type": "string",
|
|
13954
|
+
"required": false,
|
|
13955
|
+
"description": ""
|
|
13956
|
+
},
|
|
13957
|
+
"theme": {
|
|
13958
|
+
"type": "widgettheme",
|
|
13959
|
+
"required": false,
|
|
13960
|
+
"description": ""
|
|
13961
|
+
},
|
|
13962
|
+
"onAction": {
|
|
13963
|
+
"type": "(action: unknown) => void",
|
|
13964
|
+
"required": false,
|
|
13965
|
+
"description": ""
|
|
13966
|
+
}
|
|
13967
|
+
},
|
|
13968
|
+
"preview": null,
|
|
13969
|
+
"layoutHints": null
|
|
13970
|
+
},
|
|
13971
|
+
"KPIMetricCard": {
|
|
13972
|
+
"name": "KPIMetricCard",
|
|
13973
|
+
"type": "molecule",
|
|
13974
|
+
"isBuilderComponent": true,
|
|
13975
|
+
"description": "Single headline metric with delta, trend, and optional sparkline.",
|
|
13976
|
+
"props": {
|
|
13977
|
+
"label": {
|
|
13978
|
+
"type": "string",
|
|
13979
|
+
"required": true,
|
|
13980
|
+
"description": ""
|
|
13981
|
+
},
|
|
13982
|
+
"value": {
|
|
13983
|
+
"type": "enum",
|
|
13984
|
+
"required": true,
|
|
13985
|
+
"description": "",
|
|
13986
|
+
"enums": [
|
|
13987
|
+
"string",
|
|
13988
|
+
"number"
|
|
13989
|
+
]
|
|
13990
|
+
},
|
|
13991
|
+
"unit": {
|
|
13992
|
+
"type": "string",
|
|
13993
|
+
"required": false,
|
|
13994
|
+
"description": ""
|
|
13995
|
+
},
|
|
13996
|
+
"delta": {
|
|
13997
|
+
"type": "string",
|
|
13998
|
+
"required": false,
|
|
13999
|
+
"description": "Delta text, e.g. \"+8.2%\"."
|
|
14000
|
+
},
|
|
14001
|
+
"trend": {
|
|
14002
|
+
"type": "enum",
|
|
14003
|
+
"required": false,
|
|
14004
|
+
"defaultValue": "neutral",
|
|
14005
|
+
"description": "",
|
|
14006
|
+
"enums": [
|
|
14007
|
+
"up",
|
|
14008
|
+
"down",
|
|
14009
|
+
"neutral"
|
|
14010
|
+
]
|
|
14011
|
+
},
|
|
14012
|
+
"invertTrendColors": {
|
|
14013
|
+
"type": "boolean",
|
|
14014
|
+
"required": false,
|
|
14015
|
+
"description": ""
|
|
14016
|
+
},
|
|
14017
|
+
"icon": {
|
|
14018
|
+
"type": "string",
|
|
14019
|
+
"required": false,
|
|
14020
|
+
"description": "lucide-react icon name."
|
|
14021
|
+
},
|
|
14022
|
+
"sparkline": {
|
|
14023
|
+
"type": "number[]",
|
|
14024
|
+
"required": false,
|
|
14025
|
+
"description": "Optional sparkline values (or a full series) rendered behind the metric."
|
|
14026
|
+
},
|
|
14027
|
+
"sparklineColor": {
|
|
14028
|
+
"type": "string",
|
|
14029
|
+
"required": false,
|
|
14030
|
+
"description": "Sparkline color (defaults to the brand accent / indigo)."
|
|
14031
|
+
},
|
|
14032
|
+
"theme": {
|
|
14033
|
+
"type": "widgettheme",
|
|
14034
|
+
"required": false,
|
|
14035
|
+
"description": ""
|
|
14036
|
+
},
|
|
14037
|
+
"mode": {
|
|
14038
|
+
"type": "enum",
|
|
14039
|
+
"required": false,
|
|
14040
|
+
"defaultValue": "auto",
|
|
14041
|
+
"description": "",
|
|
14042
|
+
"enums": [
|
|
14043
|
+
"auto",
|
|
14044
|
+
"light",
|
|
14045
|
+
"dark"
|
|
14046
|
+
]
|
|
14047
|
+
},
|
|
14048
|
+
"loading": {
|
|
14049
|
+
"type": "boolean",
|
|
14050
|
+
"required": false,
|
|
14051
|
+
"description": ""
|
|
14052
|
+
},
|
|
14053
|
+
"className": {
|
|
14054
|
+
"type": "string",
|
|
14055
|
+
"required": false,
|
|
14056
|
+
"description": ""
|
|
14057
|
+
},
|
|
14058
|
+
"onAction": {
|
|
14059
|
+
"type": "(action: unknown) => void",
|
|
14060
|
+
"required": false,
|
|
14061
|
+
"description": ""
|
|
14062
|
+
}
|
|
14063
|
+
},
|
|
14064
|
+
"preview": null,
|
|
14065
|
+
"layoutHints": null
|
|
14066
|
+
},
|
|
14067
|
+
"AnalyticsSummaryCard": {
|
|
14068
|
+
"name": "AnalyticsSummaryCard",
|
|
14069
|
+
"type": "molecule",
|
|
14070
|
+
"isBuilderComponent": true,
|
|
14071
|
+
"description": "Dashboard-style summary: header, a grid of KPI metrics, and an optional chart.",
|
|
14072
|
+
"props": {
|
|
14073
|
+
"title": {
|
|
14074
|
+
"type": "string",
|
|
14075
|
+
"required": false,
|
|
14076
|
+
"description": ""
|
|
14077
|
+
},
|
|
14078
|
+
"subtitle": {
|
|
14079
|
+
"type": "string",
|
|
14080
|
+
"required": false,
|
|
14081
|
+
"description": ""
|
|
14082
|
+
},
|
|
14083
|
+
"metrics": {
|
|
14084
|
+
"type": "analyticssummarymetric[]",
|
|
14085
|
+
"required": true,
|
|
14086
|
+
"description": ""
|
|
14087
|
+
},
|
|
14088
|
+
"chart": {
|
|
14089
|
+
"type": "analyticschartconfig",
|
|
14090
|
+
"required": false,
|
|
14091
|
+
"description": "Optional chart rendered beneath the metric grid."
|
|
14092
|
+
},
|
|
14093
|
+
"columns": {
|
|
14094
|
+
"type": "enum",
|
|
14095
|
+
"required": false,
|
|
14096
|
+
"defaultValue": "4",
|
|
14097
|
+
"description": "Columns in the metric grid (responsive default: 2 → up to 4).",
|
|
14098
|
+
"enums": [
|
|
14099
|
+
"2",
|
|
14100
|
+
"3",
|
|
14101
|
+
"4"
|
|
14102
|
+
]
|
|
14103
|
+
},
|
|
14104
|
+
"theme": {
|
|
14105
|
+
"type": "widgettheme",
|
|
14106
|
+
"required": false,
|
|
14107
|
+
"description": ""
|
|
14108
|
+
},
|
|
14109
|
+
"mode": {
|
|
14110
|
+
"type": "enum",
|
|
14111
|
+
"required": false,
|
|
14112
|
+
"defaultValue": "auto",
|
|
14113
|
+
"description": "",
|
|
14114
|
+
"enums": [
|
|
14115
|
+
"auto",
|
|
14116
|
+
"light",
|
|
14117
|
+
"dark"
|
|
14118
|
+
]
|
|
14119
|
+
},
|
|
14120
|
+
"loading": {
|
|
14121
|
+
"type": "boolean",
|
|
14122
|
+
"required": false,
|
|
14123
|
+
"description": ""
|
|
14124
|
+
},
|
|
14125
|
+
"className": {
|
|
14126
|
+
"type": "string",
|
|
14127
|
+
"required": false,
|
|
14128
|
+
"description": ""
|
|
14129
|
+
},
|
|
14130
|
+
"onAction": {
|
|
14131
|
+
"type": "(action: unknown) => void",
|
|
14132
|
+
"required": false,
|
|
14133
|
+
"description": ""
|
|
14134
|
+
}
|
|
14135
|
+
},
|
|
14136
|
+
"preview": null,
|
|
14137
|
+
"layoutHints": null
|
|
14138
|
+
},
|
|
14139
|
+
"ChartFrame": {
|
|
14140
|
+
"name": "ChartFrame",
|
|
14141
|
+
"type": "molecule",
|
|
14142
|
+
"isBuilderComponent": true,
|
|
14143
|
+
"description": "Shared card chrome for every analytics chart: themed surface, optional\nheader, and consistent loading / empty / error states. Keeps state styling\ncentralized so all charts behave identically.",
|
|
14144
|
+
"props": {
|
|
14145
|
+
"title": {
|
|
14146
|
+
"type": "string",
|
|
14147
|
+
"required": false,
|
|
14148
|
+
"description": ""
|
|
14149
|
+
},
|
|
14150
|
+
"subtitle": {
|
|
14151
|
+
"type": "string",
|
|
14152
|
+
"required": false,
|
|
14153
|
+
"description": ""
|
|
14154
|
+
},
|
|
14155
|
+
"theme": {
|
|
14156
|
+
"type": "widgettheme",
|
|
14157
|
+
"required": false,
|
|
14158
|
+
"description": ""
|
|
14159
|
+
},
|
|
14160
|
+
"className": {
|
|
14161
|
+
"type": "string",
|
|
14162
|
+
"required": false,
|
|
14163
|
+
"description": ""
|
|
14164
|
+
},
|
|
14165
|
+
"height": {
|
|
14166
|
+
"type": "number",
|
|
14167
|
+
"required": false,
|
|
14168
|
+
"defaultValue": "300",
|
|
14169
|
+
"description": "Min height for the plotting area / state placeholders."
|
|
14170
|
+
},
|
|
14171
|
+
"loading": {
|
|
14172
|
+
"type": "boolean",
|
|
14173
|
+
"required": false,
|
|
14174
|
+
"description": ""
|
|
14175
|
+
},
|
|
14176
|
+
"error": {
|
|
14177
|
+
"type": "string",
|
|
14178
|
+
"required": false,
|
|
14179
|
+
"description": ""
|
|
14180
|
+
},
|
|
14181
|
+
"empty": {
|
|
14182
|
+
"type": "boolean",
|
|
14183
|
+
"required": false,
|
|
14184
|
+
"description": "When true, renders the empty state instead of children."
|
|
14185
|
+
},
|
|
14186
|
+
"emptyMessage": {
|
|
14187
|
+
"type": "string",
|
|
14188
|
+
"required": false,
|
|
14189
|
+
"defaultValue": "No data to display",
|
|
14190
|
+
"description": ""
|
|
14191
|
+
},
|
|
14192
|
+
"actions": {
|
|
14193
|
+
"type": "reactnode",
|
|
14194
|
+
"required": false,
|
|
14195
|
+
"description": "Optional toolbar rendered on the right of the header."
|
|
14196
|
+
}
|
|
14197
|
+
},
|
|
14198
|
+
"preview": null,
|
|
14199
|
+
"layoutHints": null
|
|
14200
|
+
},
|
|
14201
|
+
"LineChart": {
|
|
14202
|
+
"name": "LineChart",
|
|
14203
|
+
"type": "molecule",
|
|
14204
|
+
"isBuilderComponent": true,
|
|
14205
|
+
"description": "Line chart — trends and continuous series.",
|
|
14206
|
+
"props": {
|
|
14207
|
+
"className": {
|
|
14208
|
+
"type": "string",
|
|
14209
|
+
"required": false,
|
|
14210
|
+
"description": ""
|
|
14211
|
+
},
|
|
14212
|
+
"height": {
|
|
14213
|
+
"type": "number",
|
|
14214
|
+
"required": false,
|
|
14215
|
+
"description": ""
|
|
14216
|
+
},
|
|
14217
|
+
"config": {
|
|
14218
|
+
"type": "record<string, any>",
|
|
14219
|
+
"required": false,
|
|
14220
|
+
"description": ""
|
|
14221
|
+
},
|
|
14222
|
+
"chartId": {
|
|
14223
|
+
"type": "string",
|
|
14224
|
+
"required": false,
|
|
14225
|
+
"description": ""
|
|
14226
|
+
},
|
|
14227
|
+
"apiBase": {
|
|
14228
|
+
"type": "string",
|
|
14229
|
+
"required": false,
|
|
14230
|
+
"description": ""
|
|
14231
|
+
},
|
|
14232
|
+
"authToken": {
|
|
14233
|
+
"type": "string",
|
|
14234
|
+
"required": false,
|
|
14235
|
+
"description": ""
|
|
14236
|
+
},
|
|
14237
|
+
"loading": {
|
|
14238
|
+
"type": "boolean",
|
|
14239
|
+
"required": false,
|
|
14240
|
+
"description": ""
|
|
14241
|
+
},
|
|
14242
|
+
"error": {
|
|
14243
|
+
"type": "string",
|
|
14244
|
+
"required": false,
|
|
14245
|
+
"description": ""
|
|
14246
|
+
}
|
|
14247
|
+
},
|
|
14248
|
+
"preview": null,
|
|
14249
|
+
"layoutHints": null
|
|
14250
|
+
},
|
|
14251
|
+
"AreaChart": {
|
|
14252
|
+
"name": "AreaChart",
|
|
14253
|
+
"type": "molecule",
|
|
14254
|
+
"isBuilderComponent": true,
|
|
14255
|
+
"description": "Area chart — magnitude over a continuous axis.",
|
|
14256
|
+
"props": {
|
|
14257
|
+
"className": {
|
|
14258
|
+
"type": "string",
|
|
14259
|
+
"required": false,
|
|
14260
|
+
"description": ""
|
|
14261
|
+
},
|
|
14262
|
+
"height": {
|
|
14263
|
+
"type": "number",
|
|
14264
|
+
"required": false,
|
|
14265
|
+
"description": ""
|
|
14266
|
+
},
|
|
14267
|
+
"config": {
|
|
14268
|
+
"type": "record<string, any>",
|
|
14269
|
+
"required": false,
|
|
14270
|
+
"description": ""
|
|
14271
|
+
},
|
|
14272
|
+
"chartId": {
|
|
14273
|
+
"type": "string",
|
|
14274
|
+
"required": false,
|
|
14275
|
+
"description": ""
|
|
14276
|
+
},
|
|
14277
|
+
"apiBase": {
|
|
14278
|
+
"type": "string",
|
|
14279
|
+
"required": false,
|
|
14280
|
+
"description": ""
|
|
14281
|
+
},
|
|
14282
|
+
"authToken": {
|
|
14283
|
+
"type": "string",
|
|
14284
|
+
"required": false,
|
|
14285
|
+
"description": ""
|
|
14286
|
+
},
|
|
14287
|
+
"loading": {
|
|
14288
|
+
"type": "boolean",
|
|
14289
|
+
"required": false,
|
|
14290
|
+
"description": ""
|
|
14291
|
+
},
|
|
14292
|
+
"error": {
|
|
14293
|
+
"type": "string",
|
|
14294
|
+
"required": false,
|
|
14295
|
+
"description": ""
|
|
14296
|
+
}
|
|
14297
|
+
},
|
|
14298
|
+
"preview": null,
|
|
14299
|
+
"layoutHints": null
|
|
14300
|
+
},
|
|
14301
|
+
"BarChart": {
|
|
14302
|
+
"name": "BarChart",
|
|
14303
|
+
"type": "molecule",
|
|
14304
|
+
"isBuilderComponent": true,
|
|
14305
|
+
"description": "Bar chart — horizontal categorical comparison.",
|
|
14306
|
+
"props": {
|
|
14307
|
+
"className": {
|
|
14308
|
+
"type": "string",
|
|
14309
|
+
"required": false,
|
|
14310
|
+
"description": ""
|
|
14311
|
+
},
|
|
14312
|
+
"height": {
|
|
14313
|
+
"type": "number",
|
|
14314
|
+
"required": false,
|
|
14315
|
+
"description": ""
|
|
14316
|
+
},
|
|
14317
|
+
"config": {
|
|
14318
|
+
"type": "record<string, any>",
|
|
14319
|
+
"required": false,
|
|
14320
|
+
"description": ""
|
|
14321
|
+
},
|
|
14322
|
+
"chartId": {
|
|
14323
|
+
"type": "string",
|
|
14324
|
+
"required": false,
|
|
14325
|
+
"description": ""
|
|
14326
|
+
},
|
|
14327
|
+
"apiBase": {
|
|
14328
|
+
"type": "string",
|
|
14329
|
+
"required": false,
|
|
14330
|
+
"description": ""
|
|
14331
|
+
},
|
|
14332
|
+
"authToken": {
|
|
14333
|
+
"type": "string",
|
|
14334
|
+
"required": false,
|
|
14335
|
+
"description": ""
|
|
14336
|
+
},
|
|
14337
|
+
"loading": {
|
|
14338
|
+
"type": "boolean",
|
|
14339
|
+
"required": false,
|
|
14340
|
+
"description": ""
|
|
14341
|
+
},
|
|
14342
|
+
"error": {
|
|
14343
|
+
"type": "string",
|
|
14344
|
+
"required": false,
|
|
14345
|
+
"description": ""
|
|
14346
|
+
}
|
|
14347
|
+
},
|
|
14348
|
+
"preview": null,
|
|
14349
|
+
"layoutHints": null
|
|
14350
|
+
},
|
|
14351
|
+
"StackedBarChart": {
|
|
14352
|
+
"name": "StackedBarChart",
|
|
14353
|
+
"type": "molecule",
|
|
14354
|
+
"isBuilderComponent": true,
|
|
14355
|
+
"description": "Stacked bar chart — part-to-whole across categories (horizontal).",
|
|
14356
|
+
"props": {
|
|
14357
|
+
"className": {
|
|
14358
|
+
"type": "string",
|
|
14359
|
+
"required": false,
|
|
14360
|
+
"description": ""
|
|
14361
|
+
},
|
|
14362
|
+
"height": {
|
|
14363
|
+
"type": "number",
|
|
14364
|
+
"required": false,
|
|
14365
|
+
"description": ""
|
|
14366
|
+
},
|
|
14367
|
+
"config": {
|
|
14368
|
+
"type": "record<string, any>",
|
|
14369
|
+
"required": false,
|
|
14370
|
+
"description": ""
|
|
14371
|
+
},
|
|
14372
|
+
"chartId": {
|
|
14373
|
+
"type": "string",
|
|
14374
|
+
"required": false,
|
|
14375
|
+
"description": ""
|
|
14376
|
+
},
|
|
14377
|
+
"apiBase": {
|
|
14378
|
+
"type": "string",
|
|
14379
|
+
"required": false,
|
|
14380
|
+
"description": ""
|
|
14381
|
+
},
|
|
14382
|
+
"authToken": {
|
|
14383
|
+
"type": "string",
|
|
14384
|
+
"required": false,
|
|
14385
|
+
"description": ""
|
|
14386
|
+
},
|
|
14387
|
+
"loading": {
|
|
14388
|
+
"type": "boolean",
|
|
14389
|
+
"required": false,
|
|
14390
|
+
"description": ""
|
|
14391
|
+
},
|
|
14392
|
+
"error": {
|
|
14393
|
+
"type": "string",
|
|
14394
|
+
"required": false,
|
|
14395
|
+
"description": ""
|
|
14396
|
+
}
|
|
14397
|
+
},
|
|
14398
|
+
"preview": null,
|
|
14399
|
+
"layoutHints": null
|
|
14400
|
+
},
|
|
14401
|
+
"ColumnChart": {
|
|
14402
|
+
"name": "ColumnChart",
|
|
14403
|
+
"type": "molecule",
|
|
14404
|
+
"isBuilderComponent": true,
|
|
14405
|
+
"description": "Column chart — vertical categorical comparison.",
|
|
14406
|
+
"props": {
|
|
14407
|
+
"className": {
|
|
14408
|
+
"type": "string",
|
|
14409
|
+
"required": false,
|
|
14410
|
+
"description": ""
|
|
14411
|
+
},
|
|
14412
|
+
"height": {
|
|
14413
|
+
"type": "number",
|
|
14414
|
+
"required": false,
|
|
14415
|
+
"description": ""
|
|
14416
|
+
},
|
|
14417
|
+
"config": {
|
|
14418
|
+
"type": "record<string, any>",
|
|
14419
|
+
"required": false,
|
|
14420
|
+
"description": ""
|
|
14421
|
+
},
|
|
14422
|
+
"chartId": {
|
|
14423
|
+
"type": "string",
|
|
14424
|
+
"required": false,
|
|
14425
|
+
"description": ""
|
|
14426
|
+
},
|
|
14427
|
+
"apiBase": {
|
|
14428
|
+
"type": "string",
|
|
14429
|
+
"required": false,
|
|
14430
|
+
"description": ""
|
|
14431
|
+
},
|
|
14432
|
+
"authToken": {
|
|
14433
|
+
"type": "string",
|
|
14434
|
+
"required": false,
|
|
14435
|
+
"description": ""
|
|
14436
|
+
},
|
|
14437
|
+
"loading": {
|
|
14438
|
+
"type": "boolean",
|
|
14439
|
+
"required": false,
|
|
14440
|
+
"description": ""
|
|
14441
|
+
},
|
|
14442
|
+
"error": {
|
|
14443
|
+
"type": "string",
|
|
14444
|
+
"required": false,
|
|
14445
|
+
"description": ""
|
|
14446
|
+
}
|
|
14447
|
+
},
|
|
14448
|
+
"preview": null,
|
|
14449
|
+
"layoutHints": null
|
|
14450
|
+
},
|
|
14451
|
+
"StackedColumnChart": {
|
|
14452
|
+
"name": "StackedColumnChart",
|
|
14453
|
+
"type": "molecule",
|
|
14454
|
+
"isBuilderComponent": true,
|
|
14455
|
+
"description": "Stacked column chart — part-to-whole across categories (vertical).",
|
|
14456
|
+
"props": {
|
|
14457
|
+
"className": {
|
|
14458
|
+
"type": "string",
|
|
14459
|
+
"required": false,
|
|
14460
|
+
"description": ""
|
|
14461
|
+
},
|
|
14462
|
+
"height": {
|
|
14463
|
+
"type": "number",
|
|
14464
|
+
"required": false,
|
|
14465
|
+
"description": ""
|
|
14466
|
+
},
|
|
14467
|
+
"config": {
|
|
14468
|
+
"type": "record<string, any>",
|
|
14469
|
+
"required": false,
|
|
14470
|
+
"description": ""
|
|
14471
|
+
},
|
|
14472
|
+
"chartId": {
|
|
14473
|
+
"type": "string",
|
|
14474
|
+
"required": false,
|
|
14475
|
+
"description": ""
|
|
14476
|
+
},
|
|
14477
|
+
"apiBase": {
|
|
14478
|
+
"type": "string",
|
|
14479
|
+
"required": false,
|
|
14480
|
+
"description": ""
|
|
14481
|
+
},
|
|
14482
|
+
"authToken": {
|
|
14483
|
+
"type": "string",
|
|
14484
|
+
"required": false,
|
|
14485
|
+
"description": ""
|
|
14486
|
+
},
|
|
14487
|
+
"loading": {
|
|
14488
|
+
"type": "boolean",
|
|
14489
|
+
"required": false,
|
|
14490
|
+
"description": ""
|
|
14491
|
+
},
|
|
14492
|
+
"error": {
|
|
14493
|
+
"type": "string",
|
|
14494
|
+
"required": false,
|
|
14495
|
+
"description": ""
|
|
14496
|
+
}
|
|
14497
|
+
},
|
|
14498
|
+
"preview": null,
|
|
14499
|
+
"layoutHints": null
|
|
14500
|
+
},
|
|
14501
|
+
"PieChart": {
|
|
14502
|
+
"name": "PieChart",
|
|
14503
|
+
"type": "molecule",
|
|
14504
|
+
"isBuilderComponent": true,
|
|
14505
|
+
"description": "Pie chart — composition / share of total.",
|
|
14506
|
+
"props": {
|
|
14507
|
+
"className": {
|
|
14508
|
+
"type": "string",
|
|
14509
|
+
"required": false,
|
|
14510
|
+
"description": ""
|
|
14511
|
+
},
|
|
14512
|
+
"height": {
|
|
14513
|
+
"type": "number",
|
|
14514
|
+
"required": false,
|
|
14515
|
+
"description": ""
|
|
14516
|
+
},
|
|
14517
|
+
"config": {
|
|
14518
|
+
"type": "record<string, any>",
|
|
14519
|
+
"required": false,
|
|
14520
|
+
"description": ""
|
|
14521
|
+
},
|
|
14522
|
+
"chartId": {
|
|
14523
|
+
"type": "string",
|
|
14524
|
+
"required": false,
|
|
14525
|
+
"description": ""
|
|
14526
|
+
},
|
|
14527
|
+
"apiBase": {
|
|
14528
|
+
"type": "string",
|
|
14529
|
+
"required": false,
|
|
14530
|
+
"description": ""
|
|
14531
|
+
},
|
|
14532
|
+
"authToken": {
|
|
14533
|
+
"type": "string",
|
|
14534
|
+
"required": false,
|
|
14535
|
+
"description": ""
|
|
14536
|
+
},
|
|
14537
|
+
"loading": {
|
|
14538
|
+
"type": "boolean",
|
|
14539
|
+
"required": false,
|
|
14540
|
+
"description": ""
|
|
14541
|
+
},
|
|
14542
|
+
"error": {
|
|
14543
|
+
"type": "string",
|
|
14544
|
+
"required": false,
|
|
14545
|
+
"description": ""
|
|
14546
|
+
}
|
|
14547
|
+
},
|
|
14548
|
+
"preview": null,
|
|
14549
|
+
"layoutHints": null
|
|
14550
|
+
},
|
|
14551
|
+
"DonutChart": {
|
|
14552
|
+
"name": "DonutChart",
|
|
14553
|
+
"type": "molecule",
|
|
14554
|
+
"isBuilderComponent": true,
|
|
14555
|
+
"description": "Donut chart — composition with a center hole.",
|
|
14556
|
+
"props": {
|
|
14557
|
+
"className": {
|
|
14558
|
+
"type": "string",
|
|
14559
|
+
"required": false,
|
|
14560
|
+
"description": ""
|
|
14561
|
+
},
|
|
14562
|
+
"height": {
|
|
14563
|
+
"type": "number",
|
|
14564
|
+
"required": false,
|
|
14565
|
+
"description": ""
|
|
14566
|
+
},
|
|
14567
|
+
"config": {
|
|
14568
|
+
"type": "record<string, any>",
|
|
14569
|
+
"required": false,
|
|
14570
|
+
"description": ""
|
|
14571
|
+
},
|
|
14572
|
+
"chartId": {
|
|
14573
|
+
"type": "string",
|
|
14574
|
+
"required": false,
|
|
14575
|
+
"description": ""
|
|
14576
|
+
},
|
|
14577
|
+
"apiBase": {
|
|
14578
|
+
"type": "string",
|
|
14579
|
+
"required": false,
|
|
14580
|
+
"description": ""
|
|
14581
|
+
},
|
|
14582
|
+
"authToken": {
|
|
14583
|
+
"type": "string",
|
|
14584
|
+
"required": false,
|
|
14585
|
+
"description": ""
|
|
14586
|
+
},
|
|
14587
|
+
"loading": {
|
|
14588
|
+
"type": "boolean",
|
|
14589
|
+
"required": false,
|
|
14590
|
+
"description": ""
|
|
14591
|
+
},
|
|
14592
|
+
"error": {
|
|
14593
|
+
"type": "string",
|
|
14594
|
+
"required": false,
|
|
14595
|
+
"description": ""
|
|
14596
|
+
}
|
|
14597
|
+
},
|
|
14598
|
+
"preview": null,
|
|
14599
|
+
"layoutHints": null
|
|
14600
|
+
},
|
|
14601
|
+
"FunnelChart": {
|
|
14602
|
+
"name": "FunnelChart",
|
|
14603
|
+
"type": "molecule",
|
|
14604
|
+
"isBuilderComponent": true,
|
|
14605
|
+
"description": "Funnel chart — sequential stage drop-off.",
|
|
14606
|
+
"props": {
|
|
14607
|
+
"className": {
|
|
14608
|
+
"type": "string",
|
|
14609
|
+
"required": false,
|
|
14610
|
+
"description": ""
|
|
14611
|
+
},
|
|
14612
|
+
"height": {
|
|
14613
|
+
"type": "number",
|
|
14614
|
+
"required": false,
|
|
14615
|
+
"description": ""
|
|
14616
|
+
},
|
|
14617
|
+
"config": {
|
|
14618
|
+
"type": "record<string, any>",
|
|
14619
|
+
"required": false,
|
|
14620
|
+
"description": ""
|
|
14621
|
+
},
|
|
14622
|
+
"chartId": {
|
|
14623
|
+
"type": "string",
|
|
14624
|
+
"required": false,
|
|
14625
|
+
"description": ""
|
|
14626
|
+
},
|
|
14627
|
+
"apiBase": {
|
|
14628
|
+
"type": "string",
|
|
14629
|
+
"required": false,
|
|
14630
|
+
"description": ""
|
|
14631
|
+
},
|
|
14632
|
+
"authToken": {
|
|
14633
|
+
"type": "string",
|
|
14634
|
+
"required": false,
|
|
14635
|
+
"description": ""
|
|
14636
|
+
},
|
|
14637
|
+
"loading": {
|
|
14638
|
+
"type": "boolean",
|
|
14639
|
+
"required": false,
|
|
14640
|
+
"description": ""
|
|
14641
|
+
},
|
|
14642
|
+
"error": {
|
|
14643
|
+
"type": "string",
|
|
14644
|
+
"required": false,
|
|
14645
|
+
"description": ""
|
|
14646
|
+
}
|
|
14647
|
+
},
|
|
14648
|
+
"preview": null,
|
|
14649
|
+
"layoutHints": null
|
|
14650
|
+
},
|
|
14651
|
+
"HeatmapChart": {
|
|
14652
|
+
"name": "HeatmapChart",
|
|
14653
|
+
"type": "molecule",
|
|
14654
|
+
"isBuilderComponent": true,
|
|
14655
|
+
"description": "Heatmap — matrix of values across two categorical axes. Series data points\nare `[xIndex, yIndex, value]`. Injects a themed colorAxis by default.",
|
|
14656
|
+
"props": {
|
|
14657
|
+
"className": {
|
|
14658
|
+
"type": "string",
|
|
14659
|
+
"required": false,
|
|
14660
|
+
"description": ""
|
|
14661
|
+
},
|
|
14662
|
+
"height": {
|
|
14663
|
+
"type": "number",
|
|
14664
|
+
"required": false,
|
|
14665
|
+
"description": ""
|
|
14666
|
+
},
|
|
14667
|
+
"config": {
|
|
14668
|
+
"type": "record<string, any>",
|
|
14669
|
+
"required": false,
|
|
14670
|
+
"description": ""
|
|
14671
|
+
},
|
|
14672
|
+
"chartId": {
|
|
14673
|
+
"type": "string",
|
|
14674
|
+
"required": false,
|
|
14675
|
+
"description": ""
|
|
14676
|
+
},
|
|
14677
|
+
"apiBase": {
|
|
14678
|
+
"type": "string",
|
|
14679
|
+
"required": false,
|
|
14680
|
+
"description": ""
|
|
14681
|
+
},
|
|
14682
|
+
"authToken": {
|
|
14683
|
+
"type": "string",
|
|
14684
|
+
"required": false,
|
|
14685
|
+
"description": ""
|
|
14686
|
+
},
|
|
14687
|
+
"loading": {
|
|
14688
|
+
"type": "boolean",
|
|
14689
|
+
"required": false,
|
|
14690
|
+
"description": ""
|
|
14691
|
+
},
|
|
14692
|
+
"error": {
|
|
14693
|
+
"type": "string",
|
|
14694
|
+
"required": false,
|
|
14695
|
+
"description": ""
|
|
14696
|
+
}
|
|
14697
|
+
},
|
|
14698
|
+
"preview": null,
|
|
14699
|
+
"layoutHints": null
|
|
14700
|
+
},
|
|
14701
|
+
"TimeSeriesChart": {
|
|
14702
|
+
"name": "TimeSeriesChart",
|
|
14703
|
+
"type": "molecule",
|
|
14704
|
+
"isBuilderComponent": true,
|
|
14705
|
+
"description": "Time-series chart — line over a datetime x-axis. Defaults the x-axis to\n`datetime` so epoch-ms / ISO points render with time scaling.",
|
|
14706
|
+
"props": {
|
|
14707
|
+
"className": {
|
|
14708
|
+
"type": "string",
|
|
14709
|
+
"required": false,
|
|
14710
|
+
"description": ""
|
|
14711
|
+
},
|
|
14712
|
+
"height": {
|
|
14713
|
+
"type": "number",
|
|
14714
|
+
"required": false,
|
|
14715
|
+
"description": ""
|
|
14716
|
+
},
|
|
14717
|
+
"config": {
|
|
14718
|
+
"type": "record<string, any>",
|
|
14719
|
+
"required": false,
|
|
14720
|
+
"description": ""
|
|
14721
|
+
},
|
|
14722
|
+
"chartId": {
|
|
14723
|
+
"type": "string",
|
|
14724
|
+
"required": false,
|
|
14725
|
+
"description": ""
|
|
14726
|
+
},
|
|
14727
|
+
"apiBase": {
|
|
14728
|
+
"type": "string",
|
|
14729
|
+
"required": false,
|
|
14730
|
+
"description": ""
|
|
14731
|
+
},
|
|
14732
|
+
"authToken": {
|
|
14733
|
+
"type": "string",
|
|
14734
|
+
"required": false,
|
|
14735
|
+
"description": ""
|
|
14736
|
+
},
|
|
14737
|
+
"loading": {
|
|
14738
|
+
"type": "boolean",
|
|
14739
|
+
"required": false,
|
|
14740
|
+
"description": ""
|
|
14741
|
+
},
|
|
14742
|
+
"error": {
|
|
14743
|
+
"type": "string",
|
|
14744
|
+
"required": false,
|
|
14745
|
+
"description": ""
|
|
14746
|
+
}
|
|
14747
|
+
},
|
|
14748
|
+
"preview": null,
|
|
14749
|
+
"layoutHints": null
|
|
14750
|
+
},
|
|
14751
|
+
"ComparativeChart": {
|
|
14752
|
+
"name": "ComparativeChart",
|
|
14753
|
+
"type": "molecule",
|
|
14754
|
+
"isBuilderComponent": true,
|
|
14755
|
+
"description": "Comparative analytics — multi-series grouped columns for comparing metrics\nacross categories (e.g. channels, campaigns). Legend on by default.",
|
|
14756
|
+
"props": {
|
|
14757
|
+
"className": {
|
|
14758
|
+
"type": "string",
|
|
14759
|
+
"required": false,
|
|
14760
|
+
"description": ""
|
|
14761
|
+
},
|
|
14762
|
+
"height": {
|
|
14763
|
+
"type": "number",
|
|
14764
|
+
"required": false,
|
|
14765
|
+
"description": ""
|
|
14766
|
+
},
|
|
14767
|
+
"config": {
|
|
14768
|
+
"type": "record<string, any>",
|
|
14769
|
+
"required": false,
|
|
14770
|
+
"description": ""
|
|
14771
|
+
},
|
|
14772
|
+
"chartId": {
|
|
14773
|
+
"type": "string",
|
|
14774
|
+
"required": false,
|
|
14775
|
+
"description": ""
|
|
14776
|
+
},
|
|
14777
|
+
"apiBase": {
|
|
14778
|
+
"type": "string",
|
|
14779
|
+
"required": false,
|
|
14780
|
+
"description": ""
|
|
14781
|
+
},
|
|
14782
|
+
"authToken": {
|
|
14783
|
+
"type": "string",
|
|
14784
|
+
"required": false,
|
|
14785
|
+
"description": ""
|
|
14786
|
+
},
|
|
14787
|
+
"loading": {
|
|
14788
|
+
"type": "boolean",
|
|
14789
|
+
"required": false,
|
|
14790
|
+
"description": ""
|
|
14791
|
+
},
|
|
14792
|
+
"error": {
|
|
14793
|
+
"type": "string",
|
|
14794
|
+
"required": false,
|
|
14795
|
+
"description": ""
|
|
14796
|
+
}
|
|
14797
|
+
},
|
|
14798
|
+
"preview": null,
|
|
14799
|
+
"layoutHints": null
|
|
14800
|
+
},
|
|
13915
14801
|
"AudienceDemographicsCard": {
|
|
13916
14802
|
"name": "AudienceDemographicsCard",
|
|
13917
14803
|
"type": "molecule",
|