@theroutingcompany/components 0.0.30-alpha.1 → 0.0.30-alpha.10
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/README.md +3 -3
- package/dist/trc-components.es.js +22563 -21406
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +1275 -1218
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/ComboBox/ComboBox.d.ts +10 -4
- package/types/components/ComboBox/index.d.ts +2 -0
- package/types/components/Connect/Connect.d.ts +2 -2
- package/types/components/Dialog/Dialog.d.ts +1 -1
- package/types/components/Drawer/Drawer.d.ts +2 -1
- package/types/components/Drawer/styles.d.ts +1 -0
- package/types/components/IconButton/IconButton.d.ts +1 -1
- package/types/components/Input/InlineEdit/InlineEdit.d.ts +3 -1
- package/types/components/Label/Label.d.ts +7 -3
- package/types/components/LabeledText/LabeledText.d.ts +7 -0
- package/types/components/LabeledText/index.d.ts +2 -0
- package/types/components/MultiSelect/MultiSelect.d.ts +2 -2
- package/types/components/Text/Text.d.ts +7 -15
- package/types/components/Title/Title.d.ts +7 -2
- package/types/components/index.d.ts +2 -0
- package/types/components/Select/Select.d.ts +0 -22
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TRC TREX Component Library
|
|
2
2
|
|
|
3
|
-
View the [StoryBook](https://6392297e45ccab79e466ee19-
|
|
3
|
+
View the [StoryBook](https://6392297e45ccab79e466ee19-arctrrrjiq.chromatic.com).
|
|
4
4
|
|
|
5
5
|
## Developing Locally
|
|
6
6
|
|
|
@@ -71,7 +71,7 @@ Similar to last point. Compound components scale better.
|
|
|
71
71
|
onDelete={() => {}}
|
|
72
72
|
// ... and so on
|
|
73
73
|
>
|
|
74
|
-
<Text
|
|
74
|
+
<Text>
|
|
75
75
|
Powering the next generation of transit We help build more sustainable
|
|
76
76
|
cities with convenient and reliable transit for all
|
|
77
77
|
</Text>
|
|
@@ -88,7 +88,7 @@ Similar to last point. Compound components scale better.
|
|
|
88
88
|
<AlertDialogContent size={size}>
|
|
89
89
|
<AlertDialogTitle>Header</AlertDialogTitle>
|
|
90
90
|
<AlertDialogDescription>Optional description</AlertDialogDescription>
|
|
91
|
-
<Text
|
|
91
|
+
<Text>
|
|
92
92
|
Powering the next generation of transit We help build more sustainable
|
|
93
93
|
cities with convenient and reliable transit for all
|
|
94
94
|
</Text>
|