-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first draft of the documentation * first pass of documentation * add change the import paths * remove comments from .mdx * fix documentation styles * fix highlight * added typo and textarea tests * highlight in text * Box * Dot * Card * added tag * removed unnecessary file * Form * Link * Address * Anchor * Article * Aside * added Tabs * HTMLButton * Div * reworked Switch * converted Menu * added select * added illustratedMessage and RAdio * removed unnecessary mdx imports / added missing filed * Footer * Header * Img * Input * List * Main * Nav * converted Tile * added alert/badge/image * Section * Span * Table * Flex * Renaming some nodes we see in the doc * Grid * Field * Avatar * Button * added Modal / Disclosure-Arrow / CrossButton * Autocomplete * Counter * added inputGroup / Transition * Content / Footer / Header * added Lozenge/Popover * update doc features * added loader and tooltip * convert some files to ts * remove yarn lock * removed unnecessary sample * removed unnecessary sample * added checkboxgroup * checkbox fixes * added toolbar / nunberInput * Divider/Listbox * Illustration * ThemeProvider * added dateInput and dateRangeInput * fix build * fix source * fix part of the linting * fix a couple of errors * fix fit property * update select issues * fix doc example * woops * lint * fixed typing issue * fix linting * fix prop table * fix 4 stories that were broken * Feature/ds 414 styling orbiter (#177) Fix styling * Table * Fix code blocks styling * Fix lint --------- Co-authored-by: Francis Thibault <[email protected]> Co-authored-by: Victor Trinh <[email protected]> Co-authored-by: victortrinh2 <[email protected]>
- Loading branch information
1 parent
6a68f07
commit 4dbc30a
Showing
395 changed files
with
13,403 additions
and
33,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ dist | |
*.svg | ||
package.json | ||
*.css | ||
!/.storybook | ||
!/**/.storybook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 0 additions & 33 deletions
33
.storybook/components/package-installation-snippet/PackageInstallationSnippet.tsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export * from "./Snippet"; | ||
export * from "./useFormattedCode"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React, { ComponentProps } from "react"; | ||
import { Source as StorybookSource } from "@storybook/addon-docs"; | ||
|
||
type SourceProps = ComponentProps<typeof StorybookSource>; | ||
|
||
export const Source = (props: SourceProps) => { | ||
const { language = "tsx", ...otherProps } = props; | ||
|
||
return <StorybookSource language={language} dark {...otherProps} />; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./Source"; |
Oops, something went wrong.