Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4798d69
`[showcase][general]` Add "content-slot" class/styles for better disp…
bsastregx Nov 16, 2025
f9ffaba
`[showcase][general]` Add "show-boundary" UI helper class
bsastregx Nov 16, 2025
31807db
`[showcase][tab]` Apply "show-boundary" class on tab cases
bsastregx Nov 16, 2025
2526ebf
`[mercury][tab]` Update spacing-body and reorder selectors
bsastregx Nov 16, 2025
be3fa78
`[mercury][tab]` Format html on save
bsastregx Nov 16, 2025
9e52eda
`[mercury][tab]` Add mixins for "tab-filled-list" and "tab-outlined"
bsastregx Nov 16, 2025
d6fbf54
`[mercury][tab]` Comment out tab-list border
bsastregx Nov 16, 2025
7e1f4cf
`[mercury][showcase][tab]` Add "tab-filled-list" and "tab-outlined"
bsastregx Nov 16, 2025
bd3b5bb
`[mercury][tab]` Rename "extend" to "variant"
bsastregx Nov 17, 2025
be31672
`[mercury][tokens]` Update tab token value
bsastregx Nov 17, 2025
e03ce33
`[mercury][tab]` Comment out "filled-list" and "outlined" cases
bsastregx Nov 17, 2025
d933291
`[showcase][general]` ]Remove border from `.background-color-container`
bsastregx Nov 17, 2025
781066a
`[mercury][tab]` Comment out include's for tab variantants
bsastregx Nov 17, 2025
0efa9fd
`[showcase][general]` Remove ".show-boundary" class selector
bsastregx Nov 17, 2025
c39a274
`[mercury][tab]` Fix elevation cases
bsastregx Nov 17, 2025
6ea3261
`[mercury][tab]` Apply a default surface background on the `tab-list`
bsastregx Nov 17, 2025
f101c17
Merge branch 'main' into mercury/add-tab-surface-style
bsastregx Nov 17, 2025
275ab4d
`[design-systems]` Update bun.lock
bsastregx Nov 18, 2025
b3cedf6
`[showcase]` Update index.html - remove line
bsastregx Nov 18, 2025
d64cdd1
`[showcase][tab]` Update tab showcase metadata/cases
bsastregx Nov 19, 2025
082faa4
`[mercury][tab]` Remove spacing body from host
bsastregx Nov 19, 2025
c999e4a
`[showcase][general]` Make elevation-box padding bigger
bsastregx Nov 19, 2025
6926246
`[showcase][common-snippets]` Format on save
bsastregx Nov 19, 2025
5d27ed6
[showcase][common-snippets]` Fix typo
bsastregx Nov 19, 2025
53fb88d
`[mercury][tab]` Apply "elevation" or "surface" bg-color to sortable…
bsastregx Nov 19, 2025
36f33ae
`[showcase][tab]` Remove since it is not required with new tab style
bsastregx Nov 19, 2025
8fd3566
`[showcase][copy-code-component]` Format on save
bsastregx Nov 19, 2025
89d69f4
`[showcase]` Recover `blockquote-info` inline-start border color
bsastregx Nov 25, 2025
18943a3
`[mercury][tab]` Remove "outlnied" and "filled-list" variants
bsastregx Nov 25, 2025
57f51a1
`[mercury]` Update bundles tests
bsastregx Nov 25, 2025
d0d842f
Update bun.lock
bsastregx Nov 25, 2025
2db32e8
`[mercury][tab]` Fix tab button "selected" background and border colo…
bsastregx Nov 25, 2025
09c33e2
`[mercury][tests]` Update bundles tests
bsastregx Nov 25, 2025
eec51d6
`[mercury][tab]` Refactor: Simplify token system and apply DRY princi…
bsastregx Nov 27, 2025
a22be19
Update bun.lock
bsastregx Nov 27, 2025
01118a4
`[showcase][copy-code]` Fix ch-tab-render elevation color
bsastregx Nov 27, 2025
58844e6
`[mercury][tab][flexible-layout]` Update bundles tests
bsastregx Nov 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"version": "0.1.0",
"dependencies": {
"oxc-resolver": "~11.10.0",
"sass": "~1.86.3",
},
"devDependencies": {
"@eslint/js": "*",
Expand Down
17 changes: 16 additions & 1 deletion packages/common/src/html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ export const CSS_CLASSES = {
},
TAB: {
TAG: "ch-tab-render",
SELECTOR: "tab"
SELECTOR: "tab",
FILLED_LIST_SELECTOR: "tab-filled-list",
OUTLINED_SELECTOR: "tab-outlined"
},
TOOLTIP: {
TAG: "ch-tooltip",
Expand Down Expand Up @@ -134,3 +136,16 @@ export const CUSTOM_CSS_ONLY_FOR_PREVIEW_LAYOUT = `.layout {
font-size: var(--mer-font__size--xs);
justify-content: center;
}`;

export const CONTENT_SLOT = {
/* Diagonal hatch pattern used as a visual placeholder for empty content areas */
SELECTOR: "content-slot",
CSS: `
background-color: transparent;
background-image: var(--content-slot-background-image);
block-size: 200px;
display: grid;
place-content: center;
margin: 0 !important;
`
};
Loading
Loading