mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
51 lines
No EOL
1.3 KiB
JavaScript
51 lines
No EOL
1.3 KiB
JavaScript
import BluelibTheme from "./BluelibTheme"
|
|
|
|
|
|
export const parameters = {
|
|
argTypes: {
|
|
bluelibClassNames: {
|
|
type: "string",
|
|
control: {type: "string"},
|
|
description: "Additional Bluelib classNames to be appended to the element's classNames",
|
|
table: {category: "Global props"}
|
|
},
|
|
customColor: {
|
|
type: "string",
|
|
control: {type: "color"},
|
|
description: "Apply a Bluelib custom color to the element",
|
|
table: {category: "Global props"}
|
|
},
|
|
disabled: {
|
|
type: "boolean",
|
|
control: {type: "boolean"},
|
|
description: "Apply the disabled status to an element",
|
|
table: {category: "Global props"}
|
|
}
|
|
},
|
|
options: {
|
|
storySort: {
|
|
order: [
|
|
"Core",
|
|
"Layouts",
|
|
"Panels",
|
|
"Chapters",
|
|
"Separators",
|
|
"Images",
|
|
"Tables",
|
|
"Lists",
|
|
"Status",
|
|
"Inputs",
|
|
"Forms",
|
|
"Common",
|
|
"Annotations",
|
|
"Semantics",
|
|
"Colors",
|
|
"Internals",
|
|
]
|
|
}
|
|
},
|
|
panelPosition: "right",
|
|
docs: {
|
|
theme: BluelibTheme,
|
|
}
|
|
} |