@almadar/patterns 2.23.0 → 2.24.0
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/component-mapping.json +101 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +8289 -5877
- package/dist/index.js +2105 -200
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +1806 -1
- package/dist/registry.json +1806 -1
- package/package.json +10 -8
package/dist/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-05-
|
|
3
|
+
"exportedAt": "2026-05-09T16:52:32.798Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -8800,6 +8800,12 @@
|
|
|
8800
8800
|
],
|
|
8801
8801
|
"description": "Custom sidebar footer (optional). When omitted, the sidebar has no footer — apps that need Settings/etc. add them via navItems."
|
|
8802
8802
|
},
|
|
8803
|
+
"currentPath": {
|
|
8804
|
+
"types": [
|
|
8805
|
+
"string"
|
|
8806
|
+
],
|
|
8807
|
+
"description": "Active path used to highlight the matching nav item. Falls back to `useCurrentPagePath()` (set by `CurrentPagePathProvider`), then to `useLocation().pathname`. Production deploys can omit it; the studio preview passes the in-frame `?page=` value so highlighting works inside the embedded playground where `pathname` would be the studio route."
|
|
8808
|
+
},
|
|
8803
8809
|
"onSignOut": {
|
|
8804
8810
|
"types": [
|
|
8805
8811
|
"function"
|
|
@@ -25803,6 +25809,1805 @@
|
|
|
25803
25809
|
}
|
|
25804
25810
|
}
|
|
25805
25811
|
},
|
|
25812
|
+
"filter-pill": {
|
|
25813
|
+
"type": "filter-pill",
|
|
25814
|
+
"category": "filter",
|
|
25815
|
+
"description": "FilterPill component",
|
|
25816
|
+
"suggestedFor": [
|
|
25817
|
+
"filter",
|
|
25818
|
+
"pill",
|
|
25819
|
+
"filter pill"
|
|
25820
|
+
],
|
|
25821
|
+
"typicalSize": "small",
|
|
25822
|
+
"propsSchema": {
|
|
25823
|
+
"variant": {
|
|
25824
|
+
"types": [
|
|
25825
|
+
"string"
|
|
25826
|
+
],
|
|
25827
|
+
"description": "variant prop",
|
|
25828
|
+
"enumValues": [
|
|
25829
|
+
"default",
|
|
25830
|
+
"primary",
|
|
25831
|
+
"secondary",
|
|
25832
|
+
"success",
|
|
25833
|
+
"warning",
|
|
25834
|
+
"danger",
|
|
25835
|
+
"info",
|
|
25836
|
+
"neutral"
|
|
25837
|
+
]
|
|
25838
|
+
},
|
|
25839
|
+
"size": {
|
|
25840
|
+
"types": [
|
|
25841
|
+
"string"
|
|
25842
|
+
],
|
|
25843
|
+
"description": "size prop",
|
|
25844
|
+
"enumValues": [
|
|
25845
|
+
"sm",
|
|
25846
|
+
"md",
|
|
25847
|
+
"lg"
|
|
25848
|
+
]
|
|
25849
|
+
},
|
|
25850
|
+
"label": {
|
|
25851
|
+
"types": [
|
|
25852
|
+
"string",
|
|
25853
|
+
"number"
|
|
25854
|
+
],
|
|
25855
|
+
"description": "Pill label text (alternative to children for schema-driven rendering)."
|
|
25856
|
+
},
|
|
25857
|
+
"icon": {
|
|
25858
|
+
"types": [
|
|
25859
|
+
"node"
|
|
25860
|
+
],
|
|
25861
|
+
"description": "Optional icon name (Lucide icon string) or React node"
|
|
25862
|
+
},
|
|
25863
|
+
"onRemove": {
|
|
25864
|
+
"types": [
|
|
25865
|
+
"function"
|
|
25866
|
+
],
|
|
25867
|
+
"description": "Called when the user clicks the remove (×) button",
|
|
25868
|
+
"kind": "callback",
|
|
25869
|
+
"callbackArgs": []
|
|
25870
|
+
},
|
|
25871
|
+
"removable": {
|
|
25872
|
+
"types": [
|
|
25873
|
+
"boolean"
|
|
25874
|
+
],
|
|
25875
|
+
"description": "Disable the remove button (renders without × control)"
|
|
25876
|
+
},
|
|
25877
|
+
"onClick": {
|
|
25878
|
+
"types": [
|
|
25879
|
+
"function"
|
|
25880
|
+
],
|
|
25881
|
+
"description": "Click handler for the body of the pill (filter toggle)",
|
|
25882
|
+
"kind": "callback",
|
|
25883
|
+
"callbackArgs": []
|
|
25884
|
+
}
|
|
25885
|
+
}
|
|
25886
|
+
},
|
|
25887
|
+
"dunning-banner": {
|
|
25888
|
+
"type": "dunning-banner",
|
|
25889
|
+
"category": "component",
|
|
25890
|
+
"description": "DunningBanner component",
|
|
25891
|
+
"suggestedFor": [
|
|
25892
|
+
"dunning",
|
|
25893
|
+
"banner",
|
|
25894
|
+
"dunning banner"
|
|
25895
|
+
],
|
|
25896
|
+
"typicalSize": "medium",
|
|
25897
|
+
"propsSchema": {
|
|
25898
|
+
"severity": {
|
|
25899
|
+
"types": [
|
|
25900
|
+
"string"
|
|
25901
|
+
],
|
|
25902
|
+
"description": "severity prop",
|
|
25903
|
+
"enumValues": [
|
|
25904
|
+
"soft",
|
|
25905
|
+
"urgent",
|
|
25906
|
+
"final"
|
|
25907
|
+
]
|
|
25908
|
+
},
|
|
25909
|
+
"attemptNumber": {
|
|
25910
|
+
"types": [
|
|
25911
|
+
"number"
|
|
25912
|
+
],
|
|
25913
|
+
"description": "attemptNumber prop"
|
|
25914
|
+
},
|
|
25915
|
+
"attemptsTotal": {
|
|
25916
|
+
"types": [
|
|
25917
|
+
"number"
|
|
25918
|
+
],
|
|
25919
|
+
"description": "attemptsTotal prop"
|
|
25920
|
+
},
|
|
25921
|
+
"failedAt": {
|
|
25922
|
+
"types": [
|
|
25923
|
+
"string"
|
|
25924
|
+
],
|
|
25925
|
+
"description": "failedAt prop"
|
|
25926
|
+
},
|
|
25927
|
+
"nextRetryAt": {
|
|
25928
|
+
"types": [
|
|
25929
|
+
"string"
|
|
25930
|
+
],
|
|
25931
|
+
"description": "nextRetryAt prop"
|
|
25932
|
+
},
|
|
25933
|
+
"amountDue": {
|
|
25934
|
+
"types": [
|
|
25935
|
+
"number"
|
|
25936
|
+
],
|
|
25937
|
+
"description": "amountDue prop"
|
|
25938
|
+
},
|
|
25939
|
+
"currency": {
|
|
25940
|
+
"types": [
|
|
25941
|
+
"string"
|
|
25942
|
+
],
|
|
25943
|
+
"description": "currency prop"
|
|
25944
|
+
},
|
|
25945
|
+
"onUpdatePayment": {
|
|
25946
|
+
"types": [
|
|
25947
|
+
"function"
|
|
25948
|
+
],
|
|
25949
|
+
"description": "onUpdatePayment prop",
|
|
25950
|
+
"kind": "callback",
|
|
25951
|
+
"callbackArgs": []
|
|
25952
|
+
},
|
|
25953
|
+
"onContactSupport": {
|
|
25954
|
+
"types": [
|
|
25955
|
+
"function"
|
|
25956
|
+
],
|
|
25957
|
+
"description": "onContactSupport prop",
|
|
25958
|
+
"kind": "callback",
|
|
25959
|
+
"callbackArgs": []
|
|
25960
|
+
},
|
|
25961
|
+
"onDismiss": {
|
|
25962
|
+
"types": [
|
|
25963
|
+
"function"
|
|
25964
|
+
],
|
|
25965
|
+
"description": "onDismiss prop",
|
|
25966
|
+
"kind": "callback",
|
|
25967
|
+
"callbackArgs": []
|
|
25968
|
+
},
|
|
25969
|
+
"dismissible": {
|
|
25970
|
+
"types": [
|
|
25971
|
+
"boolean"
|
|
25972
|
+
],
|
|
25973
|
+
"description": "dismissible prop"
|
|
25974
|
+
},
|
|
25975
|
+
"className": {
|
|
25976
|
+
"types": [
|
|
25977
|
+
"string"
|
|
25978
|
+
],
|
|
25979
|
+
"description": "className prop"
|
|
25980
|
+
}
|
|
25981
|
+
}
|
|
25982
|
+
},
|
|
25983
|
+
"invoice": {
|
|
25984
|
+
"type": "invoice",
|
|
25985
|
+
"category": "component",
|
|
25986
|
+
"description": "Invoice component",
|
|
25987
|
+
"suggestedFor": [
|
|
25988
|
+
"invoice"
|
|
25989
|
+
],
|
|
25990
|
+
"typicalSize": "medium",
|
|
25991
|
+
"propsSchema": {
|
|
25992
|
+
"invoiceNumber": {
|
|
25993
|
+
"types": [
|
|
25994
|
+
"string"
|
|
25995
|
+
],
|
|
25996
|
+
"description": "invoiceNumber prop",
|
|
25997
|
+
"required": true
|
|
25998
|
+
},
|
|
25999
|
+
"status": {
|
|
26000
|
+
"types": [
|
|
26001
|
+
"string"
|
|
26002
|
+
],
|
|
26003
|
+
"description": "status prop",
|
|
26004
|
+
"enumValues": [
|
|
26005
|
+
"draft",
|
|
26006
|
+
"sent",
|
|
26007
|
+
"paid",
|
|
26008
|
+
"overdue",
|
|
26009
|
+
"void"
|
|
26010
|
+
]
|
|
26011
|
+
},
|
|
26012
|
+
"issuedAt": {
|
|
26013
|
+
"types": [
|
|
26014
|
+
"string"
|
|
26015
|
+
],
|
|
26016
|
+
"description": "issuedAt prop",
|
|
26017
|
+
"required": true
|
|
26018
|
+
},
|
|
26019
|
+
"dueAt": {
|
|
26020
|
+
"types": [
|
|
26021
|
+
"string"
|
|
26022
|
+
],
|
|
26023
|
+
"description": "dueAt prop",
|
|
26024
|
+
"required": true
|
|
26025
|
+
},
|
|
26026
|
+
"from": {
|
|
26027
|
+
"types": [
|
|
26028
|
+
"object"
|
|
26029
|
+
],
|
|
26030
|
+
"description": "from prop",
|
|
26031
|
+
"required": true
|
|
26032
|
+
},
|
|
26033
|
+
"to": {
|
|
26034
|
+
"types": [
|
|
26035
|
+
"object"
|
|
26036
|
+
],
|
|
26037
|
+
"description": "to prop",
|
|
26038
|
+
"required": true
|
|
26039
|
+
},
|
|
26040
|
+
"items": {
|
|
26041
|
+
"types": [
|
|
26042
|
+
"array"
|
|
26043
|
+
],
|
|
26044
|
+
"description": "items prop",
|
|
26045
|
+
"required": true
|
|
26046
|
+
},
|
|
26047
|
+
"currency": {
|
|
26048
|
+
"types": [
|
|
26049
|
+
"string"
|
|
26050
|
+
],
|
|
26051
|
+
"description": "currency prop"
|
|
26052
|
+
},
|
|
26053
|
+
"taxRateDefault": {
|
|
26054
|
+
"types": [
|
|
26055
|
+
"number"
|
|
26056
|
+
],
|
|
26057
|
+
"description": "taxRateDefault prop"
|
|
26058
|
+
},
|
|
26059
|
+
"notes": {
|
|
26060
|
+
"types": [
|
|
26061
|
+
"string"
|
|
26062
|
+
],
|
|
26063
|
+
"description": "notes prop"
|
|
26064
|
+
},
|
|
26065
|
+
"paymentUrl": {
|
|
26066
|
+
"types": [
|
|
26067
|
+
"string"
|
|
26068
|
+
],
|
|
26069
|
+
"description": "paymentUrl prop"
|
|
26070
|
+
},
|
|
26071
|
+
"size": {
|
|
26072
|
+
"types": [
|
|
26073
|
+
"string"
|
|
26074
|
+
],
|
|
26075
|
+
"description": "size prop",
|
|
26076
|
+
"enumValues": [
|
|
26077
|
+
"sm",
|
|
26078
|
+
"md"
|
|
26079
|
+
]
|
|
26080
|
+
},
|
|
26081
|
+
"className": {
|
|
26082
|
+
"types": [
|
|
26083
|
+
"string"
|
|
26084
|
+
],
|
|
26085
|
+
"description": "className prop"
|
|
26086
|
+
}
|
|
26087
|
+
}
|
|
26088
|
+
},
|
|
26089
|
+
"kitchen-display-strip": {
|
|
26090
|
+
"type": "kitchen-display-strip",
|
|
26091
|
+
"category": "component",
|
|
26092
|
+
"description": "KitchenDisplayStrip component",
|
|
26093
|
+
"suggestedFor": [
|
|
26094
|
+
"kitchen",
|
|
26095
|
+
"display",
|
|
26096
|
+
"strip",
|
|
26097
|
+
"kitchen display strip"
|
|
26098
|
+
],
|
|
26099
|
+
"typicalSize": "medium",
|
|
26100
|
+
"propsSchema": {
|
|
26101
|
+
"orderId": {
|
|
26102
|
+
"types": [
|
|
26103
|
+
"string"
|
|
26104
|
+
],
|
|
26105
|
+
"description": "orderId prop",
|
|
26106
|
+
"required": true
|
|
26107
|
+
},
|
|
26108
|
+
"tableLabel": {
|
|
26109
|
+
"types": [
|
|
26110
|
+
"string"
|
|
26111
|
+
],
|
|
26112
|
+
"description": "tableLabel prop"
|
|
26113
|
+
},
|
|
26114
|
+
"serverName": {
|
|
26115
|
+
"types": [
|
|
26116
|
+
"string"
|
|
26117
|
+
],
|
|
26118
|
+
"description": "serverName prop"
|
|
26119
|
+
},
|
|
26120
|
+
"items": {
|
|
26121
|
+
"types": [
|
|
26122
|
+
"array"
|
|
26123
|
+
],
|
|
26124
|
+
"description": "items prop",
|
|
26125
|
+
"required": true
|
|
26126
|
+
},
|
|
26127
|
+
"status": {
|
|
26128
|
+
"types": [
|
|
26129
|
+
"string"
|
|
26130
|
+
],
|
|
26131
|
+
"description": "status prop",
|
|
26132
|
+
"enumValues": [
|
|
26133
|
+
"pending",
|
|
26134
|
+
"preparing",
|
|
26135
|
+
"ready",
|
|
26136
|
+
"served"
|
|
26137
|
+
]
|
|
26138
|
+
},
|
|
26139
|
+
"receivedAt": {
|
|
26140
|
+
"types": [
|
|
26141
|
+
"number"
|
|
26142
|
+
],
|
|
26143
|
+
"description": "receivedAt prop",
|
|
26144
|
+
"required": true
|
|
26145
|
+
},
|
|
26146
|
+
"size": {
|
|
26147
|
+
"types": [
|
|
26148
|
+
"string"
|
|
26149
|
+
],
|
|
26150
|
+
"description": "size prop",
|
|
26151
|
+
"enumValues": [
|
|
26152
|
+
"sm",
|
|
26153
|
+
"md"
|
|
26154
|
+
]
|
|
26155
|
+
},
|
|
26156
|
+
"onMarkReady": {
|
|
26157
|
+
"types": [
|
|
26158
|
+
"function"
|
|
26159
|
+
],
|
|
26160
|
+
"description": "onMarkReady prop",
|
|
26161
|
+
"kind": "callback",
|
|
26162
|
+
"callbackArgs": []
|
|
26163
|
+
},
|
|
26164
|
+
"onMarkServed": {
|
|
26165
|
+
"types": [
|
|
26166
|
+
"function"
|
|
26167
|
+
],
|
|
26168
|
+
"description": "onMarkServed prop",
|
|
26169
|
+
"kind": "callback",
|
|
26170
|
+
"callbackArgs": []
|
|
26171
|
+
},
|
|
26172
|
+
"className": {
|
|
26173
|
+
"types": [
|
|
26174
|
+
"string"
|
|
26175
|
+
],
|
|
26176
|
+
"description": "className prop"
|
|
26177
|
+
}
|
|
26178
|
+
}
|
|
26179
|
+
},
|
|
26180
|
+
"likert-scale": {
|
|
26181
|
+
"type": "likert-scale",
|
|
26182
|
+
"category": "component",
|
|
26183
|
+
"description": "LikertScale component",
|
|
26184
|
+
"suggestedFor": [
|
|
26185
|
+
"likert",
|
|
26186
|
+
"scale",
|
|
26187
|
+
"likert scale"
|
|
26188
|
+
],
|
|
26189
|
+
"typicalSize": "medium",
|
|
26190
|
+
"propsSchema": {
|
|
26191
|
+
"question": {
|
|
26192
|
+
"types": [
|
|
26193
|
+
"string"
|
|
26194
|
+
],
|
|
26195
|
+
"description": "Optional row prompt above the scale"
|
|
26196
|
+
},
|
|
26197
|
+
"options": {
|
|
26198
|
+
"types": [
|
|
26199
|
+
"array"
|
|
26200
|
+
],
|
|
26201
|
+
"description": "Scale points (defaults to a 5-point agree/disagree set)"
|
|
26202
|
+
},
|
|
26203
|
+
"value": {
|
|
26204
|
+
"types": [
|
|
26205
|
+
"number",
|
|
26206
|
+
"string"
|
|
26207
|
+
],
|
|
26208
|
+
"description": "Selected value (controlled)"
|
|
26209
|
+
},
|
|
26210
|
+
"onChange": {
|
|
26211
|
+
"types": [
|
|
26212
|
+
"function"
|
|
26213
|
+
],
|
|
26214
|
+
"description": "Change callback",
|
|
26215
|
+
"kind": "callback",
|
|
26216
|
+
"callbackArgs": [
|
|
26217
|
+
{
|
|
26218
|
+
"name": "value",
|
|
26219
|
+
"type": "number"
|
|
26220
|
+
}
|
|
26221
|
+
]
|
|
26222
|
+
},
|
|
26223
|
+
"disabled": {
|
|
26224
|
+
"types": [
|
|
26225
|
+
"boolean"
|
|
26226
|
+
],
|
|
26227
|
+
"description": "Disabled state"
|
|
26228
|
+
},
|
|
26229
|
+
"size": {
|
|
26230
|
+
"types": [
|
|
26231
|
+
"string"
|
|
26232
|
+
],
|
|
26233
|
+
"description": "Size variant",
|
|
26234
|
+
"enumValues": [
|
|
26235
|
+
"sm",
|
|
26236
|
+
"md",
|
|
26237
|
+
"lg"
|
|
26238
|
+
]
|
|
26239
|
+
},
|
|
26240
|
+
"variant": {
|
|
26241
|
+
"types": [
|
|
26242
|
+
"string"
|
|
26243
|
+
],
|
|
26244
|
+
"description": "Visual variant: classic radios or pill segmented buttons",
|
|
26245
|
+
"enumValues": [
|
|
26246
|
+
"radios",
|
|
26247
|
+
"buttons"
|
|
26248
|
+
]
|
|
26249
|
+
},
|
|
26250
|
+
"className": {
|
|
26251
|
+
"types": [
|
|
26252
|
+
"string"
|
|
26253
|
+
],
|
|
26254
|
+
"description": "Additional CSS classes"
|
|
26255
|
+
}
|
|
26256
|
+
}
|
|
26257
|
+
},
|
|
26258
|
+
"listing-card": {
|
|
26259
|
+
"type": "listing-card",
|
|
26260
|
+
"category": "display",
|
|
26261
|
+
"description": "ListingCard component",
|
|
26262
|
+
"suggestedFor": [
|
|
26263
|
+
"listing",
|
|
26264
|
+
"card",
|
|
26265
|
+
"listing card"
|
|
26266
|
+
],
|
|
26267
|
+
"typicalSize": "medium",
|
|
26268
|
+
"propsSchema": {
|
|
26269
|
+
"title": {
|
|
26270
|
+
"types": [
|
|
26271
|
+
"string"
|
|
26272
|
+
],
|
|
26273
|
+
"description": "title prop",
|
|
26274
|
+
"required": true
|
|
26275
|
+
},
|
|
26276
|
+
"imageUrl": {
|
|
26277
|
+
"types": [
|
|
26278
|
+
"string"
|
|
26279
|
+
],
|
|
26280
|
+
"description": "imageUrl prop",
|
|
26281
|
+
"required": true
|
|
26282
|
+
},
|
|
26283
|
+
"imageAlt": {
|
|
26284
|
+
"types": [
|
|
26285
|
+
"string"
|
|
26286
|
+
],
|
|
26287
|
+
"description": "imageAlt prop"
|
|
26288
|
+
},
|
|
26289
|
+
"price": {
|
|
26290
|
+
"types": [
|
|
26291
|
+
"string"
|
|
26292
|
+
],
|
|
26293
|
+
"description": "Pre-formatted price string (e.g. '$525,000', '$45/hr')"
|
|
26294
|
+
},
|
|
26295
|
+
"location": {
|
|
26296
|
+
"types": [
|
|
26297
|
+
"string"
|
|
26298
|
+
],
|
|
26299
|
+
"description": "location prop"
|
|
26300
|
+
},
|
|
26301
|
+
"rating": {
|
|
26302
|
+
"types": [
|
|
26303
|
+
"number"
|
|
26304
|
+
],
|
|
26305
|
+
"description": "Numeric rating 0-5"
|
|
26306
|
+
},
|
|
26307
|
+
"reviewCount": {
|
|
26308
|
+
"types": [
|
|
26309
|
+
"number"
|
|
26310
|
+
],
|
|
26311
|
+
"description": "reviewCount prop"
|
|
26312
|
+
},
|
|
26313
|
+
"facts": {
|
|
26314
|
+
"types": [
|
|
26315
|
+
"array"
|
|
26316
|
+
],
|
|
26317
|
+
"description": "2-4 quick stats with optional icons"
|
|
26318
|
+
},
|
|
26319
|
+
"badge": {
|
|
26320
|
+
"types": [
|
|
26321
|
+
"string"
|
|
26322
|
+
],
|
|
26323
|
+
"description": "badge prop",
|
|
26324
|
+
"enumValues": [
|
|
26325
|
+
"new",
|
|
26326
|
+
"featured",
|
|
26327
|
+
"price-drop",
|
|
26328
|
+
"sold",
|
|
26329
|
+
"pending"
|
|
26330
|
+
]
|
|
26331
|
+
},
|
|
26332
|
+
"favorite": {
|
|
26333
|
+
"types": [
|
|
26334
|
+
"boolean"
|
|
26335
|
+
],
|
|
26336
|
+
"description": "favorite prop"
|
|
26337
|
+
},
|
|
26338
|
+
"onFavoriteToggle": {
|
|
26339
|
+
"types": [
|
|
26340
|
+
"function"
|
|
26341
|
+
],
|
|
26342
|
+
"description": "onFavoriteToggle prop",
|
|
26343
|
+
"kind": "callback",
|
|
26344
|
+
"callbackArgs": []
|
|
26345
|
+
},
|
|
26346
|
+
"onClick": {
|
|
26347
|
+
"types": [
|
|
26348
|
+
"function"
|
|
26349
|
+
],
|
|
26350
|
+
"description": "onClick prop",
|
|
26351
|
+
"kind": "callback",
|
|
26352
|
+
"callbackArgs": []
|
|
26353
|
+
},
|
|
26354
|
+
"href": {
|
|
26355
|
+
"types": [
|
|
26356
|
+
"string"
|
|
26357
|
+
],
|
|
26358
|
+
"description": "Optional link target. When provided, the card renders as an <a> wrapper."
|
|
26359
|
+
},
|
|
26360
|
+
"size": {
|
|
26361
|
+
"types": [
|
|
26362
|
+
"string"
|
|
26363
|
+
],
|
|
26364
|
+
"description": "size prop",
|
|
26365
|
+
"enumValues": [
|
|
26366
|
+
"sm",
|
|
26367
|
+
"md",
|
|
26368
|
+
"lg"
|
|
26369
|
+
]
|
|
26370
|
+
},
|
|
26371
|
+
"layout": {
|
|
26372
|
+
"types": [
|
|
26373
|
+
"string"
|
|
26374
|
+
],
|
|
26375
|
+
"description": "layout prop",
|
|
26376
|
+
"enumValues": [
|
|
26377
|
+
"vertical",
|
|
26378
|
+
"horizontal"
|
|
26379
|
+
]
|
|
26380
|
+
},
|
|
26381
|
+
"className": {
|
|
26382
|
+
"types": [
|
|
26383
|
+
"string"
|
|
26384
|
+
],
|
|
26385
|
+
"description": "className prop"
|
|
26386
|
+
}
|
|
26387
|
+
}
|
|
26388
|
+
},
|
|
26389
|
+
"matrix-question": {
|
|
26390
|
+
"type": "matrix-question",
|
|
26391
|
+
"category": "component",
|
|
26392
|
+
"description": "MatrixQuestion component",
|
|
26393
|
+
"suggestedFor": [
|
|
26394
|
+
"matrix",
|
|
26395
|
+
"question",
|
|
26396
|
+
"matrix question"
|
|
26397
|
+
],
|
|
26398
|
+
"typicalSize": "medium",
|
|
26399
|
+
"propsSchema": {
|
|
26400
|
+
"title": {
|
|
26401
|
+
"types": [
|
|
26402
|
+
"string"
|
|
26403
|
+
],
|
|
26404
|
+
"description": "Optional title rendered above the matrix"
|
|
26405
|
+
},
|
|
26406
|
+
"rows": {
|
|
26407
|
+
"types": [
|
|
26408
|
+
"array"
|
|
26409
|
+
],
|
|
26410
|
+
"description": "Question rows",
|
|
26411
|
+
"required": true
|
|
26412
|
+
},
|
|
26413
|
+
"columns": {
|
|
26414
|
+
"types": [
|
|
26415
|
+
"array"
|
|
26416
|
+
],
|
|
26417
|
+
"description": "Column definitions; defaults to 5-point Likert"
|
|
26418
|
+
},
|
|
26419
|
+
"values": {
|
|
26420
|
+
"types": [
|
|
26421
|
+
"object"
|
|
26422
|
+
],
|
|
26423
|
+
"description": "Selected value per row, keyed by rowId"
|
|
26424
|
+
},
|
|
26425
|
+
"onChange": {
|
|
26426
|
+
"types": [
|
|
26427
|
+
"function"
|
|
26428
|
+
],
|
|
26429
|
+
"description": "Change handler invoked with rowId and selected column value",
|
|
26430
|
+
"kind": "callback",
|
|
26431
|
+
"callbackArgs": [
|
|
26432
|
+
{
|
|
26433
|
+
"name": "rowId",
|
|
26434
|
+
"type": "string"
|
|
26435
|
+
},
|
|
26436
|
+
{
|
|
26437
|
+
"name": "value",
|
|
26438
|
+
"type": "number"
|
|
26439
|
+
}
|
|
26440
|
+
]
|
|
26441
|
+
},
|
|
26442
|
+
"disabled": {
|
|
26443
|
+
"types": [
|
|
26444
|
+
"boolean"
|
|
26445
|
+
],
|
|
26446
|
+
"description": "Disable all inputs"
|
|
26447
|
+
},
|
|
26448
|
+
"size": {
|
|
26449
|
+
"types": [
|
|
26450
|
+
"string"
|
|
26451
|
+
],
|
|
26452
|
+
"description": "Visual size",
|
|
26453
|
+
"enumValues": [
|
|
26454
|
+
"sm",
|
|
26455
|
+
"md"
|
|
26456
|
+
]
|
|
26457
|
+
},
|
|
26458
|
+
"className": {
|
|
26459
|
+
"types": [
|
|
26460
|
+
"string"
|
|
26461
|
+
],
|
|
26462
|
+
"description": "Additional CSS classes"
|
|
26463
|
+
}
|
|
26464
|
+
}
|
|
26465
|
+
},
|
|
26466
|
+
"moderation-queue-row": {
|
|
26467
|
+
"type": "moderation-queue-row",
|
|
26468
|
+
"category": "component",
|
|
26469
|
+
"description": "ModerationQueueRow component",
|
|
26470
|
+
"suggestedFor": [
|
|
26471
|
+
"moderation",
|
|
26472
|
+
"queue",
|
|
26473
|
+
"row",
|
|
26474
|
+
"moderation queue row"
|
|
26475
|
+
],
|
|
26476
|
+
"typicalSize": "medium",
|
|
26477
|
+
"propsSchema": {
|
|
26478
|
+
"contentId": {
|
|
26479
|
+
"types": [
|
|
26480
|
+
"string"
|
|
26481
|
+
],
|
|
26482
|
+
"description": "contentId prop",
|
|
26483
|
+
"required": true
|
|
26484
|
+
},
|
|
26485
|
+
"authorName": {
|
|
26486
|
+
"types": [
|
|
26487
|
+
"string"
|
|
26488
|
+
],
|
|
26489
|
+
"description": "authorName prop",
|
|
26490
|
+
"required": true
|
|
26491
|
+
},
|
|
26492
|
+
"authorAvatarUrl": {
|
|
26493
|
+
"types": [
|
|
26494
|
+
"string"
|
|
26495
|
+
],
|
|
26496
|
+
"description": "authorAvatarUrl prop"
|
|
26497
|
+
},
|
|
26498
|
+
"contentPreview": {
|
|
26499
|
+
"types": [
|
|
26500
|
+
"string"
|
|
26501
|
+
],
|
|
26502
|
+
"description": "contentPreview prop",
|
|
26503
|
+
"required": true
|
|
26504
|
+
},
|
|
26505
|
+
"contentType": {
|
|
26506
|
+
"types": [
|
|
26507
|
+
"string"
|
|
26508
|
+
],
|
|
26509
|
+
"description": "contentType prop"
|
|
26510
|
+
},
|
|
26511
|
+
"flaggedAt": {
|
|
26512
|
+
"types": [
|
|
26513
|
+
"string"
|
|
26514
|
+
],
|
|
26515
|
+
"description": "flaggedAt prop",
|
|
26516
|
+
"required": true
|
|
26517
|
+
},
|
|
26518
|
+
"flagReason": {
|
|
26519
|
+
"types": [
|
|
26520
|
+
"string"
|
|
26521
|
+
],
|
|
26522
|
+
"description": "flagReason prop",
|
|
26523
|
+
"enumValues": [
|
|
26524
|
+
"spam",
|
|
26525
|
+
"abuse",
|
|
26526
|
+
"off-topic",
|
|
26527
|
+
"misinformation",
|
|
26528
|
+
"nsfw",
|
|
26529
|
+
"other"
|
|
26530
|
+
]
|
|
26531
|
+
},
|
|
26532
|
+
"flagCount": {
|
|
26533
|
+
"types": [
|
|
26534
|
+
"number"
|
|
26535
|
+
],
|
|
26536
|
+
"description": "flagCount prop"
|
|
26537
|
+
},
|
|
26538
|
+
"reportedBy": {
|
|
26539
|
+
"types": [
|
|
26540
|
+
"string"
|
|
26541
|
+
],
|
|
26542
|
+
"description": "reportedBy prop"
|
|
26543
|
+
},
|
|
26544
|
+
"onApprove": {
|
|
26545
|
+
"types": [
|
|
26546
|
+
"function"
|
|
26547
|
+
],
|
|
26548
|
+
"description": "onApprove prop",
|
|
26549
|
+
"kind": "callback",
|
|
26550
|
+
"callbackArgs": []
|
|
26551
|
+
},
|
|
26552
|
+
"onReject": {
|
|
26553
|
+
"types": [
|
|
26554
|
+
"function"
|
|
26555
|
+
],
|
|
26556
|
+
"description": "onReject prop",
|
|
26557
|
+
"kind": "callback",
|
|
26558
|
+
"callbackArgs": []
|
|
26559
|
+
},
|
|
26560
|
+
"onEscalate": {
|
|
26561
|
+
"types": [
|
|
26562
|
+
"function"
|
|
26563
|
+
],
|
|
26564
|
+
"description": "onEscalate prop",
|
|
26565
|
+
"kind": "callback",
|
|
26566
|
+
"callbackArgs": []
|
|
26567
|
+
},
|
|
26568
|
+
"onView": {
|
|
26569
|
+
"types": [
|
|
26570
|
+
"function"
|
|
26571
|
+
],
|
|
26572
|
+
"description": "onView prop",
|
|
26573
|
+
"kind": "callback",
|
|
26574
|
+
"callbackArgs": []
|
|
26575
|
+
},
|
|
26576
|
+
"className": {
|
|
26577
|
+
"types": [
|
|
26578
|
+
"string"
|
|
26579
|
+
],
|
|
26580
|
+
"description": "className prop"
|
|
26581
|
+
}
|
|
26582
|
+
}
|
|
26583
|
+
},
|
|
26584
|
+
"modifier-group": {
|
|
26585
|
+
"type": "modifier-group",
|
|
26586
|
+
"category": "component",
|
|
26587
|
+
"description": "ModifierGroup Molecule Component Restaurant POS item-customization selector with required/optional/multi constraints. Renders radio inputs for `single` constraint and checkboxes for `multi`. Reports validation errors inline when the current selection violates the constraint. **Atomic Design**: Composed using Typography atom and native form controls.",
|
|
26588
|
+
"suggestedFor": [
|
|
26589
|
+
"modifier",
|
|
26590
|
+
"group",
|
|
26591
|
+
"modifier group"
|
|
26592
|
+
],
|
|
26593
|
+
"typicalSize": "medium",
|
|
26594
|
+
"propsSchema": {
|
|
26595
|
+
"groupId": {
|
|
26596
|
+
"types": [
|
|
26597
|
+
"string"
|
|
26598
|
+
],
|
|
26599
|
+
"description": "groupId prop",
|
|
26600
|
+
"required": true
|
|
26601
|
+
},
|
|
26602
|
+
"title": {
|
|
26603
|
+
"types": [
|
|
26604
|
+
"string"
|
|
26605
|
+
],
|
|
26606
|
+
"description": "title prop",
|
|
26607
|
+
"required": true
|
|
26608
|
+
},
|
|
26609
|
+
"description": {
|
|
26610
|
+
"types": [
|
|
26611
|
+
"string"
|
|
26612
|
+
],
|
|
26613
|
+
"description": "description prop"
|
|
26614
|
+
},
|
|
26615
|
+
"options": {
|
|
26616
|
+
"types": [
|
|
26617
|
+
"array"
|
|
26618
|
+
],
|
|
26619
|
+
"description": "options prop",
|
|
26620
|
+
"required": true
|
|
26621
|
+
},
|
|
26622
|
+
"constraint": {
|
|
26623
|
+
"types": [
|
|
26624
|
+
"object"
|
|
26625
|
+
],
|
|
26626
|
+
"description": "constraint prop",
|
|
26627
|
+
"required": true
|
|
26628
|
+
},
|
|
26629
|
+
"selected": {
|
|
26630
|
+
"types": [
|
|
26631
|
+
"array"
|
|
26632
|
+
],
|
|
26633
|
+
"description": "selected prop"
|
|
26634
|
+
},
|
|
26635
|
+
"onChange": {
|
|
26636
|
+
"types": [
|
|
26637
|
+
"function"
|
|
26638
|
+
],
|
|
26639
|
+
"description": "onChange prop",
|
|
26640
|
+
"kind": "callback",
|
|
26641
|
+
"callbackArgs": [
|
|
26642
|
+
{
|
|
26643
|
+
"name": "selected",
|
|
26644
|
+
"type": "array"
|
|
26645
|
+
}
|
|
26646
|
+
]
|
|
26647
|
+
},
|
|
26648
|
+
"size": {
|
|
26649
|
+
"types": [
|
|
26650
|
+
"string"
|
|
26651
|
+
],
|
|
26652
|
+
"description": "size prop",
|
|
26653
|
+
"enumValues": [
|
|
26654
|
+
"sm",
|
|
26655
|
+
"md"
|
|
26656
|
+
]
|
|
26657
|
+
},
|
|
26658
|
+
"className": {
|
|
26659
|
+
"types": [
|
|
26660
|
+
"string"
|
|
26661
|
+
],
|
|
26662
|
+
"description": "className prop"
|
|
26663
|
+
}
|
|
26664
|
+
}
|
|
26665
|
+
},
|
|
26666
|
+
"qr-scanner": {
|
|
26667
|
+
"type": "qr-scanner",
|
|
26668
|
+
"category": "component",
|
|
26669
|
+
"description": "QrScanner component",
|
|
26670
|
+
"suggestedFor": [
|
|
26671
|
+
"scanner",
|
|
26672
|
+
"qr scanner"
|
|
26673
|
+
],
|
|
26674
|
+
"typicalSize": "medium",
|
|
26675
|
+
"propsSchema": {
|
|
26676
|
+
"onScan": {
|
|
26677
|
+
"types": [
|
|
26678
|
+
"function"
|
|
26679
|
+
],
|
|
26680
|
+
"description": "onScan prop",
|
|
26681
|
+
"kind": "callback",
|
|
26682
|
+
"callbackArgs": [
|
|
26683
|
+
{
|
|
26684
|
+
"name": "result",
|
|
26685
|
+
"type": "object"
|
|
26686
|
+
}
|
|
26687
|
+
]
|
|
26688
|
+
},
|
|
26689
|
+
"onError": {
|
|
26690
|
+
"types": [
|
|
26691
|
+
"function"
|
|
26692
|
+
],
|
|
26693
|
+
"description": "onError prop",
|
|
26694
|
+
"kind": "callback",
|
|
26695
|
+
"callbackArgs": [
|
|
26696
|
+
{
|
|
26697
|
+
"name": "error",
|
|
26698
|
+
"type": "object"
|
|
26699
|
+
}
|
|
26700
|
+
]
|
|
26701
|
+
},
|
|
26702
|
+
"facingMode": {
|
|
26703
|
+
"types": [
|
|
26704
|
+
"string"
|
|
26705
|
+
],
|
|
26706
|
+
"description": "facingMode prop",
|
|
26707
|
+
"enumValues": [
|
|
26708
|
+
"environment",
|
|
26709
|
+
"user"
|
|
26710
|
+
]
|
|
26711
|
+
},
|
|
26712
|
+
"paused": {
|
|
26713
|
+
"types": [
|
|
26714
|
+
"boolean"
|
|
26715
|
+
],
|
|
26716
|
+
"description": "paused prop"
|
|
26717
|
+
},
|
|
26718
|
+
"showOverlay": {
|
|
26719
|
+
"types": [
|
|
26720
|
+
"boolean"
|
|
26721
|
+
],
|
|
26722
|
+
"description": "showOverlay prop"
|
|
26723
|
+
},
|
|
26724
|
+
"showCameraControls": {
|
|
26725
|
+
"types": [
|
|
26726
|
+
"boolean"
|
|
26727
|
+
],
|
|
26728
|
+
"description": "showCameraControls prop"
|
|
26729
|
+
},
|
|
26730
|
+
"fallback": {
|
|
26731
|
+
"types": [
|
|
26732
|
+
"node"
|
|
26733
|
+
],
|
|
26734
|
+
"description": "fallback prop"
|
|
26735
|
+
},
|
|
26736
|
+
"className": {
|
|
26737
|
+
"types": [
|
|
26738
|
+
"string"
|
|
26739
|
+
],
|
|
26740
|
+
"description": "className prop"
|
|
26741
|
+
}
|
|
26742
|
+
}
|
|
26743
|
+
},
|
|
26744
|
+
"ticket-stub": {
|
|
26745
|
+
"type": "ticket-stub",
|
|
26746
|
+
"category": "component",
|
|
26747
|
+
"description": "TicketStub component",
|
|
26748
|
+
"suggestedFor": [
|
|
26749
|
+
"ticket",
|
|
26750
|
+
"stub",
|
|
26751
|
+
"ticket stub"
|
|
26752
|
+
],
|
|
26753
|
+
"typicalSize": "medium",
|
|
26754
|
+
"propsSchema": {
|
|
26755
|
+
"eventName": {
|
|
26756
|
+
"types": [
|
|
26757
|
+
"string"
|
|
26758
|
+
],
|
|
26759
|
+
"description": "eventName prop",
|
|
26760
|
+
"required": true
|
|
26761
|
+
},
|
|
26762
|
+
"date": {
|
|
26763
|
+
"types": [
|
|
26764
|
+
"string"
|
|
26765
|
+
],
|
|
26766
|
+
"description": "date prop"
|
|
26767
|
+
},
|
|
26768
|
+
"venue": {
|
|
26769
|
+
"types": [
|
|
26770
|
+
"string"
|
|
26771
|
+
],
|
|
26772
|
+
"description": "venue prop"
|
|
26773
|
+
},
|
|
26774
|
+
"tier": {
|
|
26775
|
+
"types": [
|
|
26776
|
+
"string"
|
|
26777
|
+
],
|
|
26778
|
+
"description": "tier prop",
|
|
26779
|
+
"required": true
|
|
26780
|
+
},
|
|
26781
|
+
"price": {
|
|
26782
|
+
"types": [
|
|
26783
|
+
"string",
|
|
26784
|
+
"number"
|
|
26785
|
+
],
|
|
26786
|
+
"description": "price prop",
|
|
26787
|
+
"required": true
|
|
26788
|
+
},
|
|
26789
|
+
"currency": {
|
|
26790
|
+
"types": [
|
|
26791
|
+
"string"
|
|
26792
|
+
],
|
|
26793
|
+
"description": "currency prop"
|
|
26794
|
+
},
|
|
26795
|
+
"attendeeName": {
|
|
26796
|
+
"types": [
|
|
26797
|
+
"string"
|
|
26798
|
+
],
|
|
26799
|
+
"description": "attendeeName prop"
|
|
26800
|
+
},
|
|
26801
|
+
"ticketCode": {
|
|
26802
|
+
"types": [
|
|
26803
|
+
"string"
|
|
26804
|
+
],
|
|
26805
|
+
"description": "ticketCode prop",
|
|
26806
|
+
"required": true
|
|
26807
|
+
},
|
|
26808
|
+
"qrValue": {
|
|
26809
|
+
"types": [
|
|
26810
|
+
"string"
|
|
26811
|
+
],
|
|
26812
|
+
"description": "qrValue prop"
|
|
26813
|
+
},
|
|
26814
|
+
"variant": {
|
|
26815
|
+
"types": [
|
|
26816
|
+
"string"
|
|
26817
|
+
],
|
|
26818
|
+
"description": "variant prop",
|
|
26819
|
+
"enumValues": [
|
|
26820
|
+
"general",
|
|
26821
|
+
"vip",
|
|
26822
|
+
"early-bird",
|
|
26823
|
+
"student",
|
|
26824
|
+
"custom"
|
|
26825
|
+
]
|
|
26826
|
+
},
|
|
26827
|
+
"size": {
|
|
26828
|
+
"types": [
|
|
26829
|
+
"string"
|
|
26830
|
+
],
|
|
26831
|
+
"description": "size prop",
|
|
26832
|
+
"enumValues": [
|
|
26833
|
+
"sm",
|
|
26834
|
+
"md",
|
|
26835
|
+
"lg"
|
|
26836
|
+
]
|
|
26837
|
+
},
|
|
26838
|
+
"className": {
|
|
26839
|
+
"types": [
|
|
26840
|
+
"string"
|
|
26841
|
+
],
|
|
26842
|
+
"description": "className prop"
|
|
26843
|
+
}
|
|
26844
|
+
}
|
|
26845
|
+
},
|
|
26846
|
+
"vote-stack": {
|
|
26847
|
+
"type": "vote-stack",
|
|
26848
|
+
"category": "component",
|
|
26849
|
+
"description": "VoteStack component",
|
|
26850
|
+
"suggestedFor": [
|
|
26851
|
+
"vote",
|
|
26852
|
+
"stack",
|
|
26853
|
+
"vote stack"
|
|
26854
|
+
],
|
|
26855
|
+
"typicalSize": "medium",
|
|
26856
|
+
"propsSchema": {
|
|
26857
|
+
"count": {
|
|
26858
|
+
"types": [
|
|
26859
|
+
"number"
|
|
26860
|
+
],
|
|
26861
|
+
"description": "Current tally",
|
|
26862
|
+
"required": true
|
|
26863
|
+
},
|
|
26864
|
+
"userVote": {
|
|
26865
|
+
"types": [
|
|
26866
|
+
"string"
|
|
26867
|
+
],
|
|
26868
|
+
"description": "Current user's vote (null = no vote cast)",
|
|
26869
|
+
"enumValues": [
|
|
26870
|
+
"up",
|
|
26871
|
+
"down"
|
|
26872
|
+
]
|
|
26873
|
+
},
|
|
26874
|
+
"onVote": {
|
|
26875
|
+
"types": [
|
|
26876
|
+
"function"
|
|
26877
|
+
],
|
|
26878
|
+
"description": "Toggle handler. Clicking the same arrow clears (emits null).",
|
|
26879
|
+
"kind": "callback",
|
|
26880
|
+
"callbackArgs": [
|
|
26881
|
+
{
|
|
26882
|
+
"name": "next",
|
|
26883
|
+
"type": "string"
|
|
26884
|
+
}
|
|
26885
|
+
]
|
|
26886
|
+
},
|
|
26887
|
+
"disabled": {
|
|
26888
|
+
"types": [
|
|
26889
|
+
"boolean"
|
|
26890
|
+
],
|
|
26891
|
+
"description": "Disabled state"
|
|
26892
|
+
},
|
|
26893
|
+
"size": {
|
|
26894
|
+
"types": [
|
|
26895
|
+
"string"
|
|
26896
|
+
],
|
|
26897
|
+
"description": "Size variant",
|
|
26898
|
+
"enumValues": [
|
|
26899
|
+
"sm",
|
|
26900
|
+
"md",
|
|
26901
|
+
"lg"
|
|
26902
|
+
]
|
|
26903
|
+
},
|
|
26904
|
+
"variant": {
|
|
26905
|
+
"types": [
|
|
26906
|
+
"string"
|
|
26907
|
+
],
|
|
26908
|
+
"description": "Layout orientation. `vertical` = forum/Q&A column; `horizontal` = compact row.",
|
|
26909
|
+
"enumValues": [
|
|
26910
|
+
"vertical",
|
|
26911
|
+
"horizontal"
|
|
26912
|
+
]
|
|
26913
|
+
},
|
|
26914
|
+
"className": {
|
|
26915
|
+
"types": [
|
|
26916
|
+
"string"
|
|
26917
|
+
],
|
|
26918
|
+
"description": "Additional CSS classes"
|
|
26919
|
+
},
|
|
26920
|
+
"label": {
|
|
26921
|
+
"types": [
|
|
26922
|
+
"string"
|
|
26923
|
+
],
|
|
26924
|
+
"description": "Accessible label for the group"
|
|
26925
|
+
}
|
|
26926
|
+
}
|
|
26927
|
+
},
|
|
26928
|
+
"work-order-card": {
|
|
26929
|
+
"type": "work-order-card",
|
|
26930
|
+
"category": "display",
|
|
26931
|
+
"description": "WorkOrderCard component",
|
|
26932
|
+
"suggestedFor": [
|
|
26933
|
+
"work",
|
|
26934
|
+
"order",
|
|
26935
|
+
"card",
|
|
26936
|
+
"work order card"
|
|
26937
|
+
],
|
|
26938
|
+
"typicalSize": "medium",
|
|
26939
|
+
"propsSchema": {
|
|
26940
|
+
"orderId": {
|
|
26941
|
+
"types": [
|
|
26942
|
+
"string"
|
|
26943
|
+
],
|
|
26944
|
+
"description": "Work order identifier (e.g. \"WO-1042\")",
|
|
26945
|
+
"required": true
|
|
26946
|
+
},
|
|
26947
|
+
"customerName": {
|
|
26948
|
+
"types": [
|
|
26949
|
+
"string"
|
|
26950
|
+
],
|
|
26951
|
+
"description": "Customer name",
|
|
26952
|
+
"required": true
|
|
26953
|
+
},
|
|
26954
|
+
"serviceType": {
|
|
26955
|
+
"types": [
|
|
26956
|
+
"string"
|
|
26957
|
+
],
|
|
26958
|
+
"description": "Service type description (e.g. \"Plumbing repair\")",
|
|
26959
|
+
"required": true
|
|
26960
|
+
},
|
|
26961
|
+
"address": {
|
|
26962
|
+
"types": [
|
|
26963
|
+
"string"
|
|
26964
|
+
],
|
|
26965
|
+
"description": "Service address",
|
|
26966
|
+
"required": true
|
|
26967
|
+
},
|
|
26968
|
+
"scheduledAt": {
|
|
26969
|
+
"types": [
|
|
26970
|
+
"string"
|
|
26971
|
+
],
|
|
26972
|
+
"description": "Scheduled date/time, rendered as-is"
|
|
26973
|
+
},
|
|
26974
|
+
"etaMinutes": {
|
|
26975
|
+
"types": [
|
|
26976
|
+
"number"
|
|
26977
|
+
],
|
|
26978
|
+
"description": "ETA in minutes; surfaced only when status is 'en-route'"
|
|
26979
|
+
},
|
|
26980
|
+
"assignedTo": {
|
|
26981
|
+
"types": [
|
|
26982
|
+
"string"
|
|
26983
|
+
],
|
|
26984
|
+
"description": "Assigned technician name; rendered as \"Unassigned\" when omitted"
|
|
26985
|
+
},
|
|
26986
|
+
"status": {
|
|
26987
|
+
"types": [
|
|
26988
|
+
"string"
|
|
26989
|
+
],
|
|
26990
|
+
"description": "Current dispatch status",
|
|
26991
|
+
"enumValues": [
|
|
26992
|
+
"created",
|
|
26993
|
+
"assigned",
|
|
26994
|
+
"en-route",
|
|
26995
|
+
"on-site",
|
|
26996
|
+
"completed",
|
|
26997
|
+
"cancelled"
|
|
26998
|
+
]
|
|
26999
|
+
},
|
|
27000
|
+
"priority": {
|
|
27001
|
+
"types": [
|
|
27002
|
+
"string"
|
|
27003
|
+
],
|
|
27004
|
+
"description": "Priority level",
|
|
27005
|
+
"enumValues": [
|
|
27006
|
+
"low",
|
|
27007
|
+
"normal",
|
|
27008
|
+
"high",
|
|
27009
|
+
"urgent"
|
|
27010
|
+
]
|
|
27011
|
+
},
|
|
27012
|
+
"size": {
|
|
27013
|
+
"types": [
|
|
27014
|
+
"string"
|
|
27015
|
+
],
|
|
27016
|
+
"description": "Card size affecting padding and typography",
|
|
27017
|
+
"enumValues": [
|
|
27018
|
+
"sm",
|
|
27019
|
+
"md",
|
|
27020
|
+
"lg"
|
|
27021
|
+
]
|
|
27022
|
+
},
|
|
27023
|
+
"onAssign": {
|
|
27024
|
+
"types": [
|
|
27025
|
+
"function"
|
|
27026
|
+
],
|
|
27027
|
+
"description": "Handler for the Assign action",
|
|
27028
|
+
"kind": "callback",
|
|
27029
|
+
"callbackArgs": []
|
|
27030
|
+
},
|
|
27031
|
+
"onViewRoute": {
|
|
27032
|
+
"types": [
|
|
27033
|
+
"function"
|
|
27034
|
+
],
|
|
27035
|
+
"description": "Handler for the View Route action",
|
|
27036
|
+
"kind": "callback",
|
|
27037
|
+
"callbackArgs": []
|
|
27038
|
+
},
|
|
27039
|
+
"onMarkCompleted": {
|
|
27040
|
+
"types": [
|
|
27041
|
+
"function"
|
|
27042
|
+
],
|
|
27043
|
+
"description": "Handler for the Mark Completed action",
|
|
27044
|
+
"kind": "callback",
|
|
27045
|
+
"callbackArgs": []
|
|
27046
|
+
},
|
|
27047
|
+
"className": {
|
|
27048
|
+
"types": [
|
|
27049
|
+
"string"
|
|
27050
|
+
],
|
|
27051
|
+
"description": "Additional class names"
|
|
27052
|
+
}
|
|
27053
|
+
}
|
|
27054
|
+
},
|
|
27055
|
+
"branching-logic-builder": {
|
|
27056
|
+
"type": "branching-logic-builder",
|
|
27057
|
+
"category": "display",
|
|
27058
|
+
"description": "BranchingLogicBuilder component",
|
|
27059
|
+
"suggestedFor": [
|
|
27060
|
+
"branching",
|
|
27061
|
+
"logic",
|
|
27062
|
+
"builder",
|
|
27063
|
+
"branching logic builder"
|
|
27064
|
+
],
|
|
27065
|
+
"typicalSize": "large",
|
|
27066
|
+
"propsSchema": {
|
|
27067
|
+
"questions": {
|
|
27068
|
+
"types": [
|
|
27069
|
+
"array"
|
|
27070
|
+
],
|
|
27071
|
+
"description": "questions prop",
|
|
27072
|
+
"required": true
|
|
27073
|
+
},
|
|
27074
|
+
"rules": {
|
|
27075
|
+
"types": [
|
|
27076
|
+
"array"
|
|
27077
|
+
],
|
|
27078
|
+
"description": "rules prop",
|
|
27079
|
+
"required": true
|
|
27080
|
+
},
|
|
27081
|
+
"onRulesChange": {
|
|
27082
|
+
"types": [
|
|
27083
|
+
"function"
|
|
27084
|
+
],
|
|
27085
|
+
"description": "onRulesChange prop",
|
|
27086
|
+
"kind": "callback",
|
|
27087
|
+
"callbackArgs": [
|
|
27088
|
+
{
|
|
27089
|
+
"name": "rules",
|
|
27090
|
+
"type": "array"
|
|
27091
|
+
}
|
|
27092
|
+
]
|
|
27093
|
+
},
|
|
27094
|
+
"readOnly": {
|
|
27095
|
+
"types": [
|
|
27096
|
+
"boolean"
|
|
27097
|
+
],
|
|
27098
|
+
"description": "readOnly prop"
|
|
27099
|
+
},
|
|
27100
|
+
"className": {
|
|
27101
|
+
"types": [
|
|
27102
|
+
"string"
|
|
27103
|
+
],
|
|
27104
|
+
"description": "className prop"
|
|
27105
|
+
}
|
|
27106
|
+
}
|
|
27107
|
+
},
|
|
27108
|
+
"reply-tree": {
|
|
27109
|
+
"type": "reply-tree",
|
|
27110
|
+
"category": "display",
|
|
27111
|
+
"description": "ReplyTree component",
|
|
27112
|
+
"suggestedFor": [
|
|
27113
|
+
"reply",
|
|
27114
|
+
"tree",
|
|
27115
|
+
"reply tree"
|
|
27116
|
+
],
|
|
27117
|
+
"typicalSize": "large",
|
|
27118
|
+
"propsSchema": {
|
|
27119
|
+
"nodes": {
|
|
27120
|
+
"types": [
|
|
27121
|
+
"array"
|
|
27122
|
+
],
|
|
27123
|
+
"description": "nodes prop",
|
|
27124
|
+
"required": true
|
|
27125
|
+
},
|
|
27126
|
+
"maxDepth": {
|
|
27127
|
+
"types": [
|
|
27128
|
+
"number"
|
|
27129
|
+
],
|
|
27130
|
+
"description": "maxDepth prop"
|
|
27131
|
+
},
|
|
27132
|
+
"onVote": {
|
|
27133
|
+
"types": [
|
|
27134
|
+
"function"
|
|
27135
|
+
],
|
|
27136
|
+
"description": "onVote prop",
|
|
27137
|
+
"kind": "callback",
|
|
27138
|
+
"callbackArgs": [
|
|
27139
|
+
{
|
|
27140
|
+
"name": "nodeId",
|
|
27141
|
+
"type": "string"
|
|
27142
|
+
},
|
|
27143
|
+
{
|
|
27144
|
+
"name": "vote",
|
|
27145
|
+
"type": "string"
|
|
27146
|
+
}
|
|
27147
|
+
]
|
|
27148
|
+
},
|
|
27149
|
+
"onReply": {
|
|
27150
|
+
"types": [
|
|
27151
|
+
"function"
|
|
27152
|
+
],
|
|
27153
|
+
"description": "onReply prop",
|
|
27154
|
+
"kind": "callback",
|
|
27155
|
+
"callbackArgs": [
|
|
27156
|
+
{
|
|
27157
|
+
"name": "parentNodeId",
|
|
27158
|
+
"type": "string"
|
|
27159
|
+
}
|
|
27160
|
+
]
|
|
27161
|
+
},
|
|
27162
|
+
"onFlag": {
|
|
27163
|
+
"types": [
|
|
27164
|
+
"function"
|
|
27165
|
+
],
|
|
27166
|
+
"description": "onFlag prop",
|
|
27167
|
+
"kind": "callback",
|
|
27168
|
+
"callbackArgs": [
|
|
27169
|
+
{
|
|
27170
|
+
"name": "nodeId",
|
|
27171
|
+
"type": "string"
|
|
27172
|
+
}
|
|
27173
|
+
]
|
|
27174
|
+
},
|
|
27175
|
+
"onContinueThread": {
|
|
27176
|
+
"types": [
|
|
27177
|
+
"function"
|
|
27178
|
+
],
|
|
27179
|
+
"description": "onContinueThread prop",
|
|
27180
|
+
"kind": "callback",
|
|
27181
|
+
"callbackArgs": [
|
|
27182
|
+
{
|
|
27183
|
+
"name": "nodeId",
|
|
27184
|
+
"type": "string"
|
|
27185
|
+
}
|
|
27186
|
+
]
|
|
27187
|
+
},
|
|
27188
|
+
"showActions": {
|
|
27189
|
+
"types": [
|
|
27190
|
+
"boolean"
|
|
27191
|
+
],
|
|
27192
|
+
"description": "showActions prop"
|
|
27193
|
+
},
|
|
27194
|
+
"className": {
|
|
27195
|
+
"types": [
|
|
27196
|
+
"string"
|
|
27197
|
+
],
|
|
27198
|
+
"description": "className prop"
|
|
27199
|
+
}
|
|
27200
|
+
}
|
|
27201
|
+
},
|
|
27202
|
+
"rich-block-editor": {
|
|
27203
|
+
"type": "rich-block-editor",
|
|
27204
|
+
"category": "display",
|
|
27205
|
+
"description": "RichBlockEditor component",
|
|
27206
|
+
"suggestedFor": [
|
|
27207
|
+
"rich",
|
|
27208
|
+
"block",
|
|
27209
|
+
"editor",
|
|
27210
|
+
"rich block editor"
|
|
27211
|
+
],
|
|
27212
|
+
"typicalSize": "large",
|
|
27213
|
+
"propsSchema": {
|
|
27214
|
+
"initialBlocks": {
|
|
27215
|
+
"types": [
|
|
27216
|
+
"array"
|
|
27217
|
+
],
|
|
27218
|
+
"description": "initialBlocks prop"
|
|
27219
|
+
},
|
|
27220
|
+
"onChange": {
|
|
27221
|
+
"types": [
|
|
27222
|
+
"function"
|
|
27223
|
+
],
|
|
27224
|
+
"description": "onChange prop",
|
|
27225
|
+
"kind": "callback",
|
|
27226
|
+
"callbackArgs": [
|
|
27227
|
+
{
|
|
27228
|
+
"name": "blocks",
|
|
27229
|
+
"type": "array"
|
|
27230
|
+
}
|
|
27231
|
+
]
|
|
27232
|
+
},
|
|
27233
|
+
"readOnly": {
|
|
27234
|
+
"types": [
|
|
27235
|
+
"boolean"
|
|
27236
|
+
],
|
|
27237
|
+
"description": "readOnly prop"
|
|
27238
|
+
},
|
|
27239
|
+
"placeholder": {
|
|
27240
|
+
"types": [
|
|
27241
|
+
"string"
|
|
27242
|
+
],
|
|
27243
|
+
"description": "placeholder prop"
|
|
27244
|
+
},
|
|
27245
|
+
"showToolbar": {
|
|
27246
|
+
"types": [
|
|
27247
|
+
"boolean"
|
|
27248
|
+
],
|
|
27249
|
+
"description": "showToolbar prop"
|
|
27250
|
+
},
|
|
27251
|
+
"className": {
|
|
27252
|
+
"types": [
|
|
27253
|
+
"string"
|
|
27254
|
+
],
|
|
27255
|
+
"description": "className prop"
|
|
27256
|
+
}
|
|
27257
|
+
}
|
|
27258
|
+
},
|
|
27259
|
+
"route-map": {
|
|
27260
|
+
"type": "route-map",
|
|
27261
|
+
"category": "display",
|
|
27262
|
+
"description": "RouteMap component",
|
|
27263
|
+
"suggestedFor": [
|
|
27264
|
+
"route",
|
|
27265
|
+
"map",
|
|
27266
|
+
"route map"
|
|
27267
|
+
],
|
|
27268
|
+
"typicalSize": "large",
|
|
27269
|
+
"propsSchema": {
|
|
27270
|
+
"stops": {
|
|
27271
|
+
"types": [
|
|
27272
|
+
"array"
|
|
27273
|
+
],
|
|
27274
|
+
"description": "stops prop",
|
|
27275
|
+
"required": true
|
|
27276
|
+
},
|
|
27277
|
+
"origin": {
|
|
27278
|
+
"types": [
|
|
27279
|
+
"object"
|
|
27280
|
+
],
|
|
27281
|
+
"description": "origin prop"
|
|
27282
|
+
},
|
|
27283
|
+
"selectedStopId": {
|
|
27284
|
+
"types": [
|
|
27285
|
+
"string"
|
|
27286
|
+
],
|
|
27287
|
+
"description": "selectedStopId prop"
|
|
27288
|
+
},
|
|
27289
|
+
"editable": {
|
|
27290
|
+
"types": [
|
|
27291
|
+
"boolean"
|
|
27292
|
+
],
|
|
27293
|
+
"description": "editable prop"
|
|
27294
|
+
},
|
|
27295
|
+
"onSelectStop": {
|
|
27296
|
+
"types": [
|
|
27297
|
+
"function"
|
|
27298
|
+
],
|
|
27299
|
+
"description": "onSelectStop prop",
|
|
27300
|
+
"kind": "callback",
|
|
27301
|
+
"callbackArgs": [
|
|
27302
|
+
{
|
|
27303
|
+
"name": "id",
|
|
27304
|
+
"type": "string"
|
|
27305
|
+
}
|
|
27306
|
+
]
|
|
27307
|
+
},
|
|
27308
|
+
"onReorderStops": {
|
|
27309
|
+
"types": [
|
|
27310
|
+
"function"
|
|
27311
|
+
],
|
|
27312
|
+
"description": "onReorderStops prop",
|
|
27313
|
+
"kind": "callback",
|
|
27314
|
+
"callbackArgs": [
|
|
27315
|
+
{
|
|
27316
|
+
"name": "newOrder",
|
|
27317
|
+
"type": "array"
|
|
27318
|
+
}
|
|
27319
|
+
]
|
|
27320
|
+
},
|
|
27321
|
+
"onSkipStop": {
|
|
27322
|
+
"types": [
|
|
27323
|
+
"function"
|
|
27324
|
+
],
|
|
27325
|
+
"description": "onSkipStop prop",
|
|
27326
|
+
"kind": "callback",
|
|
27327
|
+
"callbackArgs": [
|
|
27328
|
+
{
|
|
27329
|
+
"name": "id",
|
|
27330
|
+
"type": "string"
|
|
27331
|
+
}
|
|
27332
|
+
]
|
|
27333
|
+
},
|
|
27334
|
+
"totalDistanceKm": {
|
|
27335
|
+
"types": [
|
|
27336
|
+
"number"
|
|
27337
|
+
],
|
|
27338
|
+
"description": "totalDistanceKm prop"
|
|
27339
|
+
},
|
|
27340
|
+
"totalDurationMinutes": {
|
|
27341
|
+
"types": [
|
|
27342
|
+
"number"
|
|
27343
|
+
],
|
|
27344
|
+
"description": "totalDurationMinutes prop"
|
|
27345
|
+
},
|
|
27346
|
+
"className": {
|
|
27347
|
+
"types": [
|
|
27348
|
+
"string"
|
|
27349
|
+
],
|
|
27350
|
+
"description": "className prop"
|
|
27351
|
+
}
|
|
27352
|
+
}
|
|
27353
|
+
},
|
|
27354
|
+
"table-floor-plan": {
|
|
27355
|
+
"type": "table-floor-plan",
|
|
27356
|
+
"category": "display",
|
|
27357
|
+
"description": "TableFloorPlan component",
|
|
27358
|
+
"suggestedFor": [
|
|
27359
|
+
"table",
|
|
27360
|
+
"floor",
|
|
27361
|
+
"plan",
|
|
27362
|
+
"table floor plan"
|
|
27363
|
+
],
|
|
27364
|
+
"typicalSize": "large",
|
|
27365
|
+
"propsSchema": {
|
|
27366
|
+
"tables": {
|
|
27367
|
+
"types": [
|
|
27368
|
+
"array"
|
|
27369
|
+
],
|
|
27370
|
+
"description": "tables prop",
|
|
27371
|
+
"required": true
|
|
27372
|
+
},
|
|
27373
|
+
"width": {
|
|
27374
|
+
"types": [
|
|
27375
|
+
"number"
|
|
27376
|
+
],
|
|
27377
|
+
"description": "width prop"
|
|
27378
|
+
},
|
|
27379
|
+
"height": {
|
|
27380
|
+
"types": [
|
|
27381
|
+
"number"
|
|
27382
|
+
],
|
|
27383
|
+
"description": "height prop"
|
|
27384
|
+
},
|
|
27385
|
+
"selectedId": {
|
|
27386
|
+
"types": [
|
|
27387
|
+
"string"
|
|
27388
|
+
],
|
|
27389
|
+
"description": "selectedId prop"
|
|
27390
|
+
},
|
|
27391
|
+
"editable": {
|
|
27392
|
+
"types": [
|
|
27393
|
+
"boolean"
|
|
27394
|
+
],
|
|
27395
|
+
"description": "editable prop"
|
|
27396
|
+
},
|
|
27397
|
+
"onSelect": {
|
|
27398
|
+
"types": [
|
|
27399
|
+
"function"
|
|
27400
|
+
],
|
|
27401
|
+
"description": "onSelect prop",
|
|
27402
|
+
"kind": "callback",
|
|
27403
|
+
"callbackArgs": [
|
|
27404
|
+
{
|
|
27405
|
+
"name": "id",
|
|
27406
|
+
"type": "string"
|
|
27407
|
+
}
|
|
27408
|
+
]
|
|
27409
|
+
},
|
|
27410
|
+
"onMove": {
|
|
27411
|
+
"types": [
|
|
27412
|
+
"function"
|
|
27413
|
+
],
|
|
27414
|
+
"description": "onMove prop",
|
|
27415
|
+
"kind": "callback",
|
|
27416
|
+
"callbackArgs": [
|
|
27417
|
+
{
|
|
27418
|
+
"name": "id",
|
|
27419
|
+
"type": "string"
|
|
27420
|
+
},
|
|
27421
|
+
{
|
|
27422
|
+
"name": "x",
|
|
27423
|
+
"type": "number"
|
|
27424
|
+
},
|
|
27425
|
+
{
|
|
27426
|
+
"name": "y",
|
|
27427
|
+
"type": "number"
|
|
27428
|
+
}
|
|
27429
|
+
]
|
|
27430
|
+
},
|
|
27431
|
+
"className": {
|
|
27432
|
+
"types": [
|
|
27433
|
+
"string"
|
|
27434
|
+
],
|
|
27435
|
+
"description": "className prop"
|
|
27436
|
+
}
|
|
27437
|
+
}
|
|
27438
|
+
},
|
|
27439
|
+
"vendor-onboarding-stepper": {
|
|
27440
|
+
"type": "vendor-onboarding-stepper",
|
|
27441
|
+
"category": "game",
|
|
27442
|
+
"description": "VendorOnboardingStepper component",
|
|
27443
|
+
"suggestedFor": [
|
|
27444
|
+
"vendor",
|
|
27445
|
+
"onboarding",
|
|
27446
|
+
"stepper",
|
|
27447
|
+
"vendor onboarding stepper"
|
|
27448
|
+
],
|
|
27449
|
+
"typicalSize": "large",
|
|
27450
|
+
"propsSchema": {
|
|
27451
|
+
"initialStep": {
|
|
27452
|
+
"types": [
|
|
27453
|
+
"string"
|
|
27454
|
+
],
|
|
27455
|
+
"description": "initialStep prop",
|
|
27456
|
+
"enumValues": [
|
|
27457
|
+
"business-info",
|
|
27458
|
+
"tax-id",
|
|
27459
|
+
"bank-link",
|
|
27460
|
+
"identity-verify",
|
|
27461
|
+
"review",
|
|
27462
|
+
"submitted"
|
|
27463
|
+
]
|
|
27464
|
+
},
|
|
27465
|
+
"initialState": {
|
|
27466
|
+
"types": [
|
|
27467
|
+
"object"
|
|
27468
|
+
],
|
|
27469
|
+
"description": "initialState prop"
|
|
27470
|
+
},
|
|
27471
|
+
"onSubmit": {
|
|
27472
|
+
"types": [
|
|
27473
|
+
"function"
|
|
27474
|
+
],
|
|
27475
|
+
"description": "onSubmit prop",
|
|
27476
|
+
"kind": "callback",
|
|
27477
|
+
"callbackArgs": [
|
|
27478
|
+
{
|
|
27479
|
+
"name": "state",
|
|
27480
|
+
"type": "object"
|
|
27481
|
+
}
|
|
27482
|
+
]
|
|
27483
|
+
},
|
|
27484
|
+
"onStepChange": {
|
|
27485
|
+
"types": [
|
|
27486
|
+
"function"
|
|
27487
|
+
],
|
|
27488
|
+
"description": "onStepChange prop",
|
|
27489
|
+
"kind": "callback",
|
|
27490
|
+
"callbackArgs": [
|
|
27491
|
+
{
|
|
27492
|
+
"name": "step",
|
|
27493
|
+
"type": "string"
|
|
27494
|
+
}
|
|
27495
|
+
]
|
|
27496
|
+
},
|
|
27497
|
+
"onSaveDraft": {
|
|
27498
|
+
"types": [
|
|
27499
|
+
"function"
|
|
27500
|
+
],
|
|
27501
|
+
"description": "onSaveDraft prop",
|
|
27502
|
+
"kind": "callback",
|
|
27503
|
+
"callbackArgs": [
|
|
27504
|
+
{
|
|
27505
|
+
"name": "state",
|
|
27506
|
+
"type": "object"
|
|
27507
|
+
}
|
|
27508
|
+
]
|
|
27509
|
+
},
|
|
27510
|
+
"className": {
|
|
27511
|
+
"types": [
|
|
27512
|
+
"string"
|
|
27513
|
+
],
|
|
27514
|
+
"description": "className prop"
|
|
27515
|
+
}
|
|
27516
|
+
}
|
|
27517
|
+
},
|
|
27518
|
+
"version-diff": {
|
|
27519
|
+
"type": "version-diff",
|
|
27520
|
+
"category": "display",
|
|
27521
|
+
"description": "VersionDiff component",
|
|
27522
|
+
"suggestedFor": [
|
|
27523
|
+
"version",
|
|
27524
|
+
"diff",
|
|
27525
|
+
"version diff"
|
|
27526
|
+
],
|
|
27527
|
+
"typicalSize": "large",
|
|
27528
|
+
"propsSchema": {
|
|
27529
|
+
"revisions": {
|
|
27530
|
+
"types": [
|
|
27531
|
+
"array"
|
|
27532
|
+
],
|
|
27533
|
+
"description": "All available revisions (at least 2).",
|
|
27534
|
+
"required": true
|
|
27535
|
+
},
|
|
27536
|
+
"beforeId": {
|
|
27537
|
+
"types": [
|
|
27538
|
+
"string"
|
|
27539
|
+
],
|
|
27540
|
+
"description": "Currently selected \"before\" revision id."
|
|
27541
|
+
},
|
|
27542
|
+
"afterId": {
|
|
27543
|
+
"types": [
|
|
27544
|
+
"string"
|
|
27545
|
+
],
|
|
27546
|
+
"description": "Currently selected \"after\" revision id."
|
|
27547
|
+
},
|
|
27548
|
+
"view": {
|
|
27549
|
+
"types": [
|
|
27550
|
+
"string"
|
|
27551
|
+
],
|
|
27552
|
+
"description": "Display mode.",
|
|
27553
|
+
"enumValues": [
|
|
27554
|
+
"side-by-side",
|
|
27555
|
+
"inline"
|
|
27556
|
+
]
|
|
27557
|
+
},
|
|
27558
|
+
"onSelectBefore": {
|
|
27559
|
+
"types": [
|
|
27560
|
+
"function"
|
|
27561
|
+
],
|
|
27562
|
+
"description": "Called when the user picks a different \"before\" revision.",
|
|
27563
|
+
"kind": "callback",
|
|
27564
|
+
"callbackArgs": [
|
|
27565
|
+
{
|
|
27566
|
+
"name": "id",
|
|
27567
|
+
"type": "string"
|
|
27568
|
+
}
|
|
27569
|
+
]
|
|
27570
|
+
},
|
|
27571
|
+
"onSelectAfter": {
|
|
27572
|
+
"types": [
|
|
27573
|
+
"function"
|
|
27574
|
+
],
|
|
27575
|
+
"description": "Called when the user picks a different \"after\" revision.",
|
|
27576
|
+
"kind": "callback",
|
|
27577
|
+
"callbackArgs": [
|
|
27578
|
+
{
|
|
27579
|
+
"name": "id",
|
|
27580
|
+
"type": "string"
|
|
27581
|
+
}
|
|
27582
|
+
]
|
|
27583
|
+
},
|
|
27584
|
+
"onRevert": {
|
|
27585
|
+
"types": [
|
|
27586
|
+
"function"
|
|
27587
|
+
],
|
|
27588
|
+
"description": "Called when the user clicks the revert button (passes the \"before\" id).",
|
|
27589
|
+
"kind": "callback",
|
|
27590
|
+
"callbackArgs": [
|
|
27591
|
+
{
|
|
27592
|
+
"name": "id",
|
|
27593
|
+
"type": "string"
|
|
27594
|
+
}
|
|
27595
|
+
]
|
|
27596
|
+
},
|
|
27597
|
+
"language": {
|
|
27598
|
+
"types": [
|
|
27599
|
+
"string"
|
|
27600
|
+
],
|
|
27601
|
+
"description": "Language label (informational)."
|
|
27602
|
+
},
|
|
27603
|
+
"className": {
|
|
27604
|
+
"types": [
|
|
27605
|
+
"string"
|
|
27606
|
+
],
|
|
27607
|
+
"description": "Additional CSS classes."
|
|
27608
|
+
}
|
|
27609
|
+
}
|
|
27610
|
+
},
|
|
25806
27611
|
"heading": {
|
|
25807
27612
|
"type": "heading",
|
|
25808
27613
|
"category": "component",
|