-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #384 from OHDSI/error_messages
Custom error messages depending on the context
- Loading branch information
Showing
7 changed files
with
371 additions
and
252 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 |
---|---|---|
@@ -0,0 +1,86 @@ | ||
export default { | ||
accordiontab: { | ||
root: { | ||
class: "mb-1", | ||
}, | ||
header: ({ props }) => ({ | ||
class: [ | ||
// State | ||
{ | ||
"select-none pointer-events-none cursor-default opacity-60": | ||
props?.disabled, | ||
}, | ||
], | ||
}), | ||
headerAction: ({ context }) => ({ | ||
class: [ | ||
//Font | ||
"font-bold", | ||
"leading-none", | ||
|
||
// Alignments | ||
"flex items-center", | ||
"relative", | ||
|
||
// Sizing | ||
"p-5", | ||
|
||
// Shape | ||
"rounded-t-md", | ||
{ | ||
"rounded-br-md rounded-bl-md": !context.active, | ||
"rounded-br-0 rounded-bl-0": context.active, | ||
}, | ||
|
||
// Color | ||
"border border-surface-200 dark:border-surface-700", | ||
"bg-surface-50 dark:bg-surface-800", | ||
"text-surface-600 dark:text-surface-0/80", | ||
{ "text-surface-900": context.active }, | ||
|
||
// Transition | ||
"transition duration-200 ease-in-out", | ||
"transition-shadow duration-200", | ||
|
||
// States | ||
"hover:bg-surface-100 dark:hover:bg-surface-700", | ||
"hover:text-surface-900", | ||
"focus:outline-none focus:outline-offset-0 focus-visible:ring focus-visible:ring-primary-400/50 ring-inset dark:focus-visible:ring-primary-300/50", // Focus | ||
|
||
// Misc | ||
"cursor-pointer no-underline select-none", | ||
], | ||
}), | ||
headerIcon: { | ||
class: "inline-block mr-2", | ||
}, | ||
headerTitle: { | ||
class: "leading-none", | ||
}, | ||
content: { | ||
class: [ | ||
// Spacing | ||
"p-5", | ||
|
||
//Shape | ||
"rounded-tl-none rounded-tr-none rounded-br-lg rounded-bl-lg", | ||
"border-t-0", | ||
|
||
// Color | ||
"bg-surface-0 dark:bg-surface-800", | ||
"border border-surface-200 dark:border-surface-700", | ||
"text-surface-700 dark:text-surface-0/80", | ||
], | ||
}, | ||
transition: { | ||
enterFromClass: "max-h-0", | ||
enterActiveClass: | ||
"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]", | ||
enterToClass: "max-h-[1000px]", | ||
leaveFromClass: "max-h-[1000px]", | ||
leaveActiveClass: | ||
"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]", | ||
leaveToClass: "max-h-0", | ||
}, | ||
}, | ||
}; |
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
Oops, something went wrong.