@texturehq/edges 0.1.8 → 1.0.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/components.manifest.json +548 -7
- package/dist/generated/tailwind-tokens-dark.css +190 -0
- package/dist/generated/tailwind-tokens-light.css +190 -0
- package/dist/index.cjs +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1183 -125
- package/dist/index.d.ts +1183 -125
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/styles/animations.css +132 -0
- package/dist/styles/computed.css +137 -0
- package/dist/styles/utilities.css +13 -0
- package/dist/styles.css +1654 -641
- package/dist/theme.css +26 -1102
- package/package.json +44 -16
- package/scripts/validate-tokens.js +177 -0
|
@@ -1,7 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
3
|
-
"generatedAt": "2025-09-
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"generatedAt": "2025-09-23T14:29:22.998Z",
|
|
4
4
|
"components": [
|
|
5
|
+
{
|
|
6
|
+
"name": "ActionMenu",
|
|
7
|
+
"importRoot": "@texturehq/edges",
|
|
8
|
+
"importPath": "@texturehq/edges/components/ActionMenu",
|
|
9
|
+
"description": "ActionMenu A dropdown menu for actions, typically triggered by a button. Supports icons, destructive actions, and flexible alignment.",
|
|
10
|
+
"props": [
|
|
11
|
+
{
|
|
12
|
+
"name": "items",
|
|
13
|
+
"type": "ActionItem[]"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "children",
|
|
17
|
+
"type": "ReactNode"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "align",
|
|
21
|
+
"type": "\"left\" | \"right\""
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "size",
|
|
25
|
+
"type": "\"sm\" | \"md\""
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "textAlign",
|
|
29
|
+
"type": "\"left\" | \"right\""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "className",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "onAction",
|
|
37
|
+
"type": "(item: ActionItem) => void"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "AreaSeries",
|
|
43
|
+
"importRoot": "@texturehq/edges",
|
|
44
|
+
"importPath": "@texturehq/edges/components/AreaSeries",
|
|
45
|
+
"description": "",
|
|
46
|
+
"props": []
|
|
47
|
+
},
|
|
5
48
|
{
|
|
6
49
|
"name": "Autocomplete",
|
|
7
50
|
"importRoot": "@texturehq/edges",
|
|
@@ -99,15 +142,127 @@
|
|
|
99
142
|
]
|
|
100
143
|
},
|
|
101
144
|
{
|
|
102
|
-
"name": "
|
|
145
|
+
"name": "AutoMobileRenderer",
|
|
103
146
|
"importRoot": "@texturehq/edges",
|
|
104
|
-
"importPath": "@texturehq/edges/components/
|
|
105
|
-
"description": "
|
|
147
|
+
"importPath": "@texturehq/edges/components/AutoMobileRenderer",
|
|
148
|
+
"description": "",
|
|
149
|
+
"props": []
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "Avatar",
|
|
153
|
+
"importRoot": "@texturehq/edges",
|
|
154
|
+
"importPath": "@texturehq/edges/components/Avatar",
|
|
155
|
+
"description": "Avatar Display user, team, or organization avatars with support for images, initials, and fallback icons. Includes optional status indicators.",
|
|
106
156
|
"props": [
|
|
157
|
+
{
|
|
158
|
+
"name": "src",
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "alt",
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "firstName",
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "lastName",
|
|
171
|
+
"type": "string"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "fullName",
|
|
175
|
+
"type": "string"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "onClick",
|
|
179
|
+
"type": "() => void"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "size",
|
|
183
|
+
"type": "\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\""
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "shape",
|
|
187
|
+
"type": "\"circle\" | \"square\""
|
|
188
|
+
},
|
|
107
189
|
{
|
|
108
190
|
"name": "variant",
|
|
109
|
-
"type": "\"
|
|
191
|
+
"type": "\"user\" | \"team\" | \"organization\""
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "className",
|
|
195
|
+
"type": "string"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "status",
|
|
199
|
+
"type": "\"online\" | \"offline\" | \"away\" | \"busy\""
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "bordered",
|
|
203
|
+
"type": "boolean"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "Badge",
|
|
209
|
+
"importRoot": "@texturehq/edges",
|
|
210
|
+
"importPath": "@texturehq/edges/components/Badge",
|
|
211
|
+
"description": "Badge A non-interactive label for displaying status, counts, or categories. Use for read-only indicators. For interactive elements, use Chip instead.",
|
|
212
|
+
"props": [
|
|
213
|
+
{
|
|
214
|
+
"name": "children",
|
|
215
|
+
"type": "React.ReactNode"
|
|
110
216
|
},
|
|
217
|
+
{
|
|
218
|
+
"name": "size",
|
|
219
|
+
"type": "\"sm\" | \"md\" | \"lg\""
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "shape",
|
|
223
|
+
"type": "\"pill\" | \"rounded\" | \"square\""
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "dot",
|
|
227
|
+
"type": "boolean"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "dotPosition",
|
|
231
|
+
"type": "\"left\" | \"right\""
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "className",
|
|
235
|
+
"type": "string"
|
|
236
|
+
}
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "BarSeries",
|
|
241
|
+
"importRoot": "@texturehq/edges",
|
|
242
|
+
"importPath": "@texturehq/edges/components/BarSeries",
|
|
243
|
+
"description": "",
|
|
244
|
+
"props": []
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "Breadcrumb",
|
|
248
|
+
"importRoot": "@texturehq/edges",
|
|
249
|
+
"importPath": "@texturehq/edges/components/Breadcrumb",
|
|
250
|
+
"description": "Breadcrumbs Navigation breadcrumbs that show the user's current location in the hierarchy",
|
|
251
|
+
"props": []
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "Breadcrumbs",
|
|
255
|
+
"importRoot": "@texturehq/edges",
|
|
256
|
+
"importPath": "@texturehq/edges/components/Breadcrumbs",
|
|
257
|
+
"description": "Breadcrumbs Navigation breadcrumbs that show the user's current location in the hierarchy",
|
|
258
|
+
"props": []
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "Button",
|
|
262
|
+
"importRoot": "@texturehq/edges",
|
|
263
|
+
"importPath": "@texturehq/edges/components/Button",
|
|
264
|
+
"description": "Renders an Edges Button. When `href` is provided, renders a link-styled button using the same visual system.",
|
|
265
|
+
"props": [
|
|
111
266
|
{
|
|
112
267
|
"name": "size",
|
|
113
268
|
"type": "Size"
|
|
@@ -217,6 +372,41 @@
|
|
|
217
372
|
}
|
|
218
373
|
]
|
|
219
374
|
},
|
|
375
|
+
{
|
|
376
|
+
"name": "CardMobileRenderer",
|
|
377
|
+
"importRoot": "@texturehq/edges",
|
|
378
|
+
"importPath": "@texturehq/edges/components/CardMobileRenderer",
|
|
379
|
+
"description": "",
|
|
380
|
+
"props": []
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"name": "ChartAxis",
|
|
384
|
+
"importRoot": "@texturehq/edges",
|
|
385
|
+
"importPath": "@texturehq/edges/components/ChartAxis",
|
|
386
|
+
"description": "",
|
|
387
|
+
"props": []
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "ChartBottomBar",
|
|
391
|
+
"importRoot": "@texturehq/edges",
|
|
392
|
+
"importPath": "@texturehq/edges/components/ChartBottomBar",
|
|
393
|
+
"description": "",
|
|
394
|
+
"props": []
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "ChartContainer",
|
|
398
|
+
"importRoot": "@texturehq/edges",
|
|
399
|
+
"importPath": "@texturehq/edges/components/ChartContainer",
|
|
400
|
+
"description": "",
|
|
401
|
+
"props": []
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "ChartTooltip",
|
|
405
|
+
"importRoot": "@texturehq/edges",
|
|
406
|
+
"importPath": "@texturehq/edges/components/ChartTooltip",
|
|
407
|
+
"description": "",
|
|
408
|
+
"props": []
|
|
409
|
+
},
|
|
220
410
|
{
|
|
221
411
|
"name": "Checkbox",
|
|
222
412
|
"importRoot": "@texturehq/edges",
|
|
@@ -269,11 +459,86 @@
|
|
|
269
459
|
}
|
|
270
460
|
]
|
|
271
461
|
},
|
|
462
|
+
{
|
|
463
|
+
"name": "CodeEditor",
|
|
464
|
+
"importRoot": "@texturehq/edges",
|
|
465
|
+
"importPath": "@texturehq/edges/components/CodeEditor",
|
|
466
|
+
"description": "CodeEditor A code editor component with syntax highlighting and various language support. Built on top of Ace Editor.",
|
|
467
|
+
"props": [
|
|
468
|
+
{
|
|
469
|
+
"name": "value",
|
|
470
|
+
"type": "string"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "readOnly",
|
|
474
|
+
"type": "boolean"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "onChange",
|
|
478
|
+
"type": "(value: string) => void"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "language",
|
|
482
|
+
"type": "CodeLanguage"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "theme",
|
|
486
|
+
"type": "CodeTheme"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "height",
|
|
490
|
+
"type": "string"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "width",
|
|
494
|
+
"type": "string"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "className",
|
|
498
|
+
"type": "string"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "lineHeight",
|
|
502
|
+
"type": "number"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "minLines",
|
|
506
|
+
"type": "number"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "maxLines",
|
|
510
|
+
"type": "number"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "showLineNumbers",
|
|
514
|
+
"type": "boolean"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "showGutter",
|
|
518
|
+
"type": "boolean"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "fontSize",
|
|
522
|
+
"type": "number"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "wrapEnabled",
|
|
526
|
+
"type": "boolean"
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "DataTable",
|
|
532
|
+
"importRoot": "@texturehq/edges",
|
|
533
|
+
"importPath": "@texturehq/edges/components/DataTable",
|
|
534
|
+
"description": "",
|
|
535
|
+
"props": []
|
|
536
|
+
},
|
|
272
537
|
{
|
|
273
538
|
"name": "DateField",
|
|
274
539
|
"importRoot": "@texturehq/edges",
|
|
275
540
|
"importPath": "@texturehq/edges/components/DateField",
|
|
276
|
-
"description": "
|
|
541
|
+
"description": "Whether to show a calendar button for date selection @default false",
|
|
277
542
|
"props": []
|
|
278
543
|
},
|
|
279
544
|
{
|
|
@@ -364,6 +629,54 @@
|
|
|
364
629
|
"description": "",
|
|
365
630
|
"props": []
|
|
366
631
|
},
|
|
632
|
+
{
|
|
633
|
+
"name": "FileUpload",
|
|
634
|
+
"importRoot": "@texturehq/edges",
|
|
635
|
+
"importPath": "@texturehq/edges/components/FileUpload",
|
|
636
|
+
"description": "FileUpload A file upload component with drag-and-drop support. Supports image preview, custom upload handlers, and file validation.",
|
|
637
|
+
"props": [
|
|
638
|
+
{
|
|
639
|
+
"name": "value",
|
|
640
|
+
"type": "string"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"name": "onChange",
|
|
644
|
+
"type": "(file: File | null, url?: string) => void"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "onUrlChange",
|
|
648
|
+
"type": "(url: string) => void"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "accept",
|
|
652
|
+
"type": "string"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "maxSize",
|
|
656
|
+
"type": "number"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "isDisabled",
|
|
660
|
+
"type": "boolean"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "onUpload",
|
|
664
|
+
"type": "(file: File) => Promise<string>"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "className",
|
|
668
|
+
"type": "string"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "showPreview",
|
|
672
|
+
"type": "boolean"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "placeholder",
|
|
676
|
+
"type": "string"
|
|
677
|
+
}
|
|
678
|
+
]
|
|
679
|
+
},
|
|
367
680
|
{
|
|
368
681
|
"name": "Form",
|
|
369
682
|
"importRoot": "@texturehq/edges",
|
|
@@ -406,6 +719,20 @@
|
|
|
406
719
|
"description": "",
|
|
407
720
|
"props": []
|
|
408
721
|
},
|
|
722
|
+
{
|
|
723
|
+
"name": "InteractiveMap",
|
|
724
|
+
"importRoot": "@texturehq/edges",
|
|
725
|
+
"importPath": "@texturehq/edges/components/InteractiveMap",
|
|
726
|
+
"description": "",
|
|
727
|
+
"props": []
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"name": "LineSeries",
|
|
731
|
+
"importRoot": "@texturehq/edges",
|
|
732
|
+
"importPath": "@texturehq/edges/components/LineSeries",
|
|
733
|
+
"description": "",
|
|
734
|
+
"props": []
|
|
735
|
+
},
|
|
409
736
|
{
|
|
410
737
|
"name": "ListBox",
|
|
411
738
|
"importRoot": "@texturehq/edges",
|
|
@@ -465,6 +792,153 @@
|
|
|
465
792
|
}
|
|
466
793
|
]
|
|
467
794
|
},
|
|
795
|
+
{
|
|
796
|
+
"name": "MAPBOX_THEMES",
|
|
797
|
+
"importRoot": "@texturehq/edges",
|
|
798
|
+
"importPath": "@texturehq/edges/components/MAPBOX_THEMES",
|
|
799
|
+
"description": "",
|
|
800
|
+
"props": []
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "Meter",
|
|
804
|
+
"importRoot": "@texturehq/edges",
|
|
805
|
+
"importPath": "@texturehq/edges/components/Meter",
|
|
806
|
+
"description": "Meter Displays a measurement within a known range, with visual indicators for different value ranges. Perfect for showing capacity, usage levels, scores, or any bounded measurement.",
|
|
807
|
+
"props": [
|
|
808
|
+
{
|
|
809
|
+
"name": "label",
|
|
810
|
+
"type": "string"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"name": "size",
|
|
814
|
+
"type": "\"sm\" | \"md\" | \"lg\""
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"name": "variant",
|
|
818
|
+
"type": "\"default\" | \"success\" | \"warning\" | \"error\" | \"info\""
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"name": "showWarningIndicator",
|
|
822
|
+
"type": "boolean"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"name": "warningThreshold",
|
|
826
|
+
"type": "number"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"name": "className",
|
|
830
|
+
"type": "string"
|
|
831
|
+
}
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"name": "Notice",
|
|
836
|
+
"importRoot": "@texturehq/edges",
|
|
837
|
+
"importPath": "@texturehq/edges/components/Notice",
|
|
838
|
+
"description": "Notice Individual notification component that displays a message with an icon. Typically used within a NoticeProvider for managing multiple notifications.",
|
|
839
|
+
"props": [
|
|
840
|
+
{
|
|
841
|
+
"name": "id",
|
|
842
|
+
"type": "string"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "message",
|
|
846
|
+
"type": "string"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "variant",
|
|
850
|
+
"type": "NoticeVariant"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "duration",
|
|
854
|
+
"type": "number"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "dismissible",
|
|
858
|
+
"type": "boolean"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "onDismiss",
|
|
862
|
+
"type": "() => void"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "className",
|
|
866
|
+
"type": "string"
|
|
867
|
+
}
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"name": "NoticeContainer",
|
|
872
|
+
"importRoot": "@texturehq/edges",
|
|
873
|
+
"importPath": "@texturehq/edges/components/NoticeContainer",
|
|
874
|
+
"description": "",
|
|
875
|
+
"props": [
|
|
876
|
+
{
|
|
877
|
+
"name": "id",
|
|
878
|
+
"type": "string"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "message",
|
|
882
|
+
"type": "string"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"name": "variant",
|
|
886
|
+
"type": "NoticeVariant"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "duration",
|
|
890
|
+
"type": "number"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "dismissible",
|
|
894
|
+
"type": "boolean"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"name": "onDismiss",
|
|
898
|
+
"type": "() => void"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "className",
|
|
902
|
+
"type": "string"
|
|
903
|
+
}
|
|
904
|
+
]
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"name": "NoticeProvider",
|
|
908
|
+
"importRoot": "@texturehq/edges",
|
|
909
|
+
"importPath": "@texturehq/edges/components/NoticeProvider",
|
|
910
|
+
"description": "",
|
|
911
|
+
"props": [
|
|
912
|
+
{
|
|
913
|
+
"name": "id",
|
|
914
|
+
"type": "string"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "message",
|
|
918
|
+
"type": "string"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "variant",
|
|
922
|
+
"type": "NoticeVariant"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"name": "duration",
|
|
926
|
+
"type": "number"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"name": "dismissible",
|
|
930
|
+
"type": "boolean"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "onDismiss",
|
|
934
|
+
"type": "() => void"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"name": "className",
|
|
938
|
+
"type": "string"
|
|
939
|
+
}
|
|
940
|
+
]
|
|
941
|
+
},
|
|
468
942
|
{
|
|
469
943
|
"name": "NumberField",
|
|
470
944
|
"importRoot": "@texturehq/edges",
|
|
@@ -720,6 +1194,66 @@
|
|
|
720
1194
|
"description": "RangeCalendar Calendar allowing selection of a date range.",
|
|
721
1195
|
"props": []
|
|
722
1196
|
},
|
|
1197
|
+
{
|
|
1198
|
+
"name": "RichTextEditor",
|
|
1199
|
+
"importRoot": "@texturehq/edges",
|
|
1200
|
+
"importPath": "@texturehq/edges/components/RichTextEditor",
|
|
1201
|
+
"description": "RichTextEditor A rich text editor with formatting capabilities including headings, bold, italic, lists, and links. Built on top of TipTap/ProseMirror.",
|
|
1202
|
+
"props": [
|
|
1203
|
+
{
|
|
1204
|
+
"name": "initialContent",
|
|
1205
|
+
"type": "string"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"name": "onChange",
|
|
1209
|
+
"type": "(html: string) => void"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"name": "className",
|
|
1213
|
+
"type": "string"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"name": "isDisabled",
|
|
1217
|
+
"type": "boolean"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "placeholder",
|
|
1221
|
+
"type": "string"
|
|
1222
|
+
}
|
|
1223
|
+
]
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"name": "SegmentedControl",
|
|
1227
|
+
"importRoot": "@texturehq/edges",
|
|
1228
|
+
"importPath": "@texturehq/edges/components/SegmentedControl",
|
|
1229
|
+
"description": "SegmentedControl A segmented control component for selecting between multiple options. Similar to a radio group but with a more compact, button-like appearance.",
|
|
1230
|
+
"props": [
|
|
1231
|
+
{
|
|
1232
|
+
"name": "options",
|
|
1233
|
+
"type": "SegmentOption[]"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"name": "value",
|
|
1237
|
+
"type": "string"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"name": "onChange",
|
|
1241
|
+
"type": "(value: string) => void"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"name": "size",
|
|
1245
|
+
"type": "\"sm\" | \"md\" | \"lg\" | \"xl\""
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"name": "className",
|
|
1249
|
+
"type": "string"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"name": "isDisabled",
|
|
1253
|
+
"type": "boolean"
|
|
1254
|
+
}
|
|
1255
|
+
]
|
|
1256
|
+
},
|
|
723
1257
|
{
|
|
724
1258
|
"name": "Select",
|
|
725
1259
|
"importRoot": "@texturehq/edges",
|
|
@@ -798,6 +1332,13 @@
|
|
|
798
1332
|
}
|
|
799
1333
|
]
|
|
800
1334
|
},
|
|
1335
|
+
{
|
|
1336
|
+
"name": "StaticMap",
|
|
1337
|
+
"importRoot": "@texturehq/edges",
|
|
1338
|
+
"importPath": "@texturehq/edges/components/StaticMap",
|
|
1339
|
+
"description": "",
|
|
1340
|
+
"props": []
|
|
1341
|
+
},
|
|
801
1342
|
{
|
|
802
1343
|
"name": "Switch",
|
|
803
1344
|
"importRoot": "@texturehq/edges",
|