feat(ui): add Button, Modal, Spinner, Toast, and Tooltip components with styles
All checks were successful
Build and Release / build-and-release (push) Successful in 13m12s

- Implemented Button component with various props for customization.
- Created Modal component with header, content, and footer subcomponents.
- Added Spinner component for loading indicators.
- Developed Toast component for displaying notifications.
- Introduced Tooltip component for contextual hints with keyboard shortcuts.
- Added corresponding CSS modules for styling each component.
- Updated index file to export new components.
- Configured TypeScript settings for the UI package.
This commit is contained in:
Bryan1029384756
2026-04-14 09:02:14 -05:00
parent 9ef839938e
commit b7a4cf4ce8
376 changed files with 52619 additions and 167641 deletions

View File

@@ -0,0 +1,202 @@
/* ── GifPicker ─────────────────────────────────────────────────
Klipy-backed GIF browser embedded in the EmojiPicker's GIFs tab.
Search bar at the top, optional featured tile row + grid below. */
.root {
display: flex;
flex-direction: column;
height: 100%;
min-height: 0;
gap: 10px;
padding: 10px 12px;
box-sizing: border-box;
}
.searchBar {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
background: var(--background-tertiary);
border: 1px solid var(--background-modifier-accent);
border-radius: 8px;
flex-shrink: 0;
}
.searchIcon {
color: var(--text-tertiary);
flex-shrink: 0;
}
.searchInput {
flex: 1;
background: transparent;
border: none;
outline: none;
color: var(--text-primary);
font: inherit;
font-size: 14px;
min-width: 0;
}
.featuredRow {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
flex-shrink: 0;
}
.featuredTile {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
padding: 14px;
height: 96px;
border-radius: 8px;
border: none;
cursor: pointer;
color: #ffffff;
overflow: hidden;
transition: transform 0.12s ease;
}
.featuredTile:hover {
transform: translateY(-1px);
}
.featuredFavorites {
background: linear-gradient(135deg, #4641d9 0%, #7b5ce7 100%);
}
.featuredTrending {
background: linear-gradient(135deg, #f04f88 0%, #ff7c5c 100%);
}
.featuredIcon {
position: absolute;
top: 12px;
right: 12px;
opacity: 0.85;
}
.featuredLabel {
font-size: 14px;
font-weight: 700;
letter-spacing: 0.01em;
}
.subHeaderRow {
display: flex;
align-items: center;
gap: 12px;
padding: 0 4px;
flex-shrink: 0;
}
.backLink {
background: none;
border: none;
color: var(--brand-primary, #5865f2);
font: inherit;
font-size: 12px;
font-weight: 600;
cursor: pointer;
padding: 0;
}
.subHeaderTitle {
font-size: 13px;
font-weight: 700;
color: var(--text-primary);
letter-spacing: 0.02em;
text-transform: uppercase;
}
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-auto-rows: max-content;
gap: 8px;
overflow-y: auto;
min-height: 0;
flex: 1;
padding-bottom: 4px;
scrollbar-width: none;
-ms-overflow-style: none;
}
.grid::-webkit-scrollbar {
display: none;
}
.tile {
position: relative;
border: none;
padding: 0;
margin: 0;
cursor: pointer;
border-radius: 8px;
overflow: hidden;
background: var(--background-tertiary);
aspect-ratio: 16 / 9;
width: 100%;
min-width: 0;
min-height: 0;
transition: transform 0.12s ease;
}
.tile:hover {
transform: scale(1.02);
}
.tileImage {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.favoriteButton {
position: absolute;
top: 6px;
right: 6px;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: none;
background: rgba(0, 0, 0, 0.55);
color: #ffffff;
cursor: pointer;
opacity: 0;
transition: opacity 0.12s ease, background-color 0.12s ease;
}
.tile:hover .favoriteButton {
opacity: 1;
}
.favoriteButton:hover {
background: rgba(0, 0, 0, 0.75);
}
.favoriteButtonActive {
opacity: 1;
color: var(--brand-primary, #5865f2);
}
.statusMessage,
.statusMessageError {
padding: 24px 12px;
text-align: center;
color: var(--text-tertiary);
font-size: 13px;
}
.statusMessageError {
color: var(--status-danger, #ed4245);
}