Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-ui-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-ui-common
Commits
7512991d
Commit
7512991d
authored
3 weeks ago
by
Max Frederiksen
Browse files
Options
Downloads
Patches
Plain Diff
CE-3627
: Add AlertType enum
parent
88204db6
No related branches found
No related tags found
1 merge request
!220
CE-3627: Migrate alertbanner
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/common/AlertBanner/AlertBanner.tsx
+6
-1
6 additions, 1 deletion
src/components/common/AlertBanner/AlertBanner.tsx
with
6 additions
and
1 deletion
src/components/common/AlertBanner/AlertBanner.tsx
+
6
−
1
View file @
7512991d
import
{
Alert
,
Button
,
Grid
}
from
"
@mui/material
"
;
import
{
Alert
,
Button
,
Grid
}
from
"
@mui/material
"
;
import
{
useUniqueKeys
}
from
"
../../../hooks/useUniqueKeys
"
;
import
{
useUniqueKeys
}
from
"
../../../hooks/useUniqueKeys
"
;
export
type
AlertTypes
=
"
ERROR
"
|
"
WARNING
"
|
"
INFO
"
|
"
SUCCESS
"
;
enum
AlertTypes
{
INFO
=
"
INFO
"
,
SUCCESS
=
"
SUCCESS
"
,
WARNING
=
"
WARNING
"
,
ERROR
=
"
ERROR
"
}
type
LowercaseAlertTypes
=
Lowercase
<
AlertTypes
>
;
type
LowercaseAlertTypes
=
Lowercase
<
AlertTypes
>
;
export
interface
AlertBannerProps
{
export
interface
AlertBannerProps
{
type
?:
AlertTypes
;
type
?:
AlertTypes
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment