mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
🔧 Move index to the source root directory
This commit is contained in:
parent
75c7283604
commit
dc7ff2610a
2 changed files with 53 additions and 53 deletions
|
@ -1,53 +0,0 @@
|
||||||
export {Ruby} from "./annotations/Ruby"
|
|
||||||
|
|
||||||
export {Chapter} from "./chapters/Chapter"
|
|
||||||
|
|
||||||
export {Anchor} from "./common/Anchor"
|
|
||||||
export {Heading} from "./common/Heading"
|
|
||||||
|
|
||||||
export {Form} from "./forms/Form"
|
|
||||||
|
|
||||||
export {Image} from "./images/Image"
|
|
||||||
|
|
||||||
export {Area} from "./inputs/Area"
|
|
||||||
export {Button} from "./inputs/Button"
|
|
||||||
export {Checkbox} from "./inputs/Checkbox"
|
|
||||||
export {Field} from "./inputs/Field"
|
|
||||||
export {Multiselect} from "./inputs/Multiselect"
|
|
||||||
export {Radio} from "./inputs/Radio"
|
|
||||||
export {Select} from "./inputs/Select"
|
|
||||||
|
|
||||||
export {LayoutFill} from "./layouts/LayoutFill"
|
|
||||||
export {LayoutThreeCol} from "./layouts/LayoutThreeCol"
|
|
||||||
export {Footer} from "./layouts/Footer"
|
|
||||||
|
|
||||||
export {ListDescription} from "./lists/ListDescription"
|
|
||||||
export {ListOrdered} from "./lists/ListOrdered"
|
|
||||||
export {ListUnordered} from "./lists/ListUnordered"
|
|
||||||
|
|
||||||
export {Box} from "./panels/Box"
|
|
||||||
export {Dialog} from "./panels/Dialog"
|
|
||||||
export {Panel} from "./panels/Panel"
|
|
||||||
export {Parenthesis} from "./panels/Parenthesis"
|
|
||||||
|
|
||||||
export {Abbreviation} from "./semantics/Abbreviation"
|
|
||||||
export {BringAttention} from "./semantics/BringAttention"
|
|
||||||
export {Cite} from "./semantics/Cite"
|
|
||||||
export {Code} from "./semantics/Code"
|
|
||||||
export {Definition} from "./semantics/Definition"
|
|
||||||
export {Emphasis} from "./semantics/Emphasis"
|
|
||||||
export {Idiomatic} from "./semantics/Idiomatic"
|
|
||||||
export {Mark} from "./semantics/Mark"
|
|
||||||
export {Quote} from "./semantics/Quote"
|
|
||||||
export {Sample} from "./semantics/Sample"
|
|
||||||
export {Strikethrough} from "./semantics/Strikethrough"
|
|
||||||
export {Strong} from "./semantics/Strong"
|
|
||||||
export {UAnnotation} from "./semantics/UAnnotation"
|
|
||||||
export {Variable} from "./semantics/Variable"
|
|
||||||
|
|
||||||
export {Separator} from "./separators/Separator"
|
|
||||||
|
|
||||||
export {Table} from "./tables/Table"
|
|
||||||
|
|
||||||
export {Bluelib} from "./Bluelib"
|
|
||||||
export {Bluelib as default} from "./Bluelib"
|
|
53
src/index.ts
Normal file
53
src/index.ts
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
export {Ruby} from "./components/annotations/Ruby"
|
||||||
|
|
||||||
|
export {Chapter} from "./components/chapters/Chapter"
|
||||||
|
|
||||||
|
export {Anchor} from "./components/common/Anchor"
|
||||||
|
export {Heading} from "./components/common/Heading"
|
||||||
|
|
||||||
|
export {Form} from "./components/forms/Form"
|
||||||
|
|
||||||
|
export {Image} from "./components/images/Image"
|
||||||
|
|
||||||
|
export {Area} from "./components/inputs/Area"
|
||||||
|
export {Button} from "./components/inputs/Button"
|
||||||
|
export {Checkbox} from "./components/inputs/Checkbox"
|
||||||
|
export {Field} from "./components/inputs/Field"
|
||||||
|
export {Multiselect} from "./components/inputs/Multiselect"
|
||||||
|
export {Radio} from "./components/inputs/Radio"
|
||||||
|
export {Select} from "./components/inputs/Select"
|
||||||
|
|
||||||
|
export {LayoutFill} from "./components/layouts/LayoutFill"
|
||||||
|
export {LayoutThreeCol} from "./components/layouts/LayoutThreeCol"
|
||||||
|
export {Footer} from "./components/layouts/Footer"
|
||||||
|
|
||||||
|
export {ListDescription} from "./components/lists/ListDescription"
|
||||||
|
export {ListOrdered} from "./components/lists/ListOrdered"
|
||||||
|
export {ListUnordered} from "./components/lists/ListUnordered"
|
||||||
|
|
||||||
|
export {Box} from "./components/panels/Box"
|
||||||
|
export {Dialog} from "./components/panels/Dialog"
|
||||||
|
export {Panel} from "./components/panels/Panel"
|
||||||
|
export {Parenthesis} from "./components/panels/Parenthesis"
|
||||||
|
|
||||||
|
export {Abbreviation} from "./components/semantics/Abbreviation"
|
||||||
|
export {BringAttention} from "./components/semantics/BringAttention"
|
||||||
|
export {Cite} from "./components/semantics/Cite"
|
||||||
|
export {Code} from "./components/semantics/Code"
|
||||||
|
export {Definition} from "./components/semantics/Definition"
|
||||||
|
export {Emphasis} from "./components/semantics/Emphasis"
|
||||||
|
export {Idiomatic} from "./components/semantics/Idiomatic"
|
||||||
|
export {Mark} from "./components/semantics/Mark"
|
||||||
|
export {Quote} from "./components/semantics/Quote"
|
||||||
|
export {Sample} from "./components/semantics/Sample"
|
||||||
|
export {Strikethrough} from "./components/semantics/Strikethrough"
|
||||||
|
export {Strong} from "./components/semantics/Strong"
|
||||||
|
export {UAnnotation} from "./components/semantics/UAnnotation"
|
||||||
|
export {Variable} from "./components/semantics/Variable"
|
||||||
|
|
||||||
|
export {Separator} from "./components/separators/Separator"
|
||||||
|
|
||||||
|
export {Table} from "./components/tables/Table"
|
||||||
|
|
||||||
|
export {Bluelib} from "./components/Bluelib"
|
||||||
|
export {Bluelib as default} from "./components/Bluelib"
|
Loading…
Reference in a new issue