Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(block-group, block): add block-group component #11319

Merged
merged 35 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
86d44fd
feat(block-group, block): add new block-group component for sorting b…
driskull Jan 16, 2025
0cbea75
cleanup
driskull Jan 16, 2025
df632a5
cleanup
driskull Jan 16, 2025
a04d78f
test wip
driskull Jan 16, 2025
b091e8c
wip tests
driskull Jan 16, 2025
7319082
tests
driskull Jan 16, 2025
43a3898
cleanup
driskull Jan 16, 2025
04121a4
imports are already imported
driskull Jan 16, 2025
7aecd89
cleanup
driskull Jan 16, 2025
351bfe2
wip, add stories
driskull Jan 16, 2025
cc3bf75
Merge branch 'dev' into dris0000/block-group
driskull Jan 16, 2025
8d876d9
stories
driskull Jan 16, 2025
5e70f2e
cleanup
driskull Jan 16, 2025
e5c9237
cleanup
driskull Jan 17, 2025
2d2d4e0
additional stories
driskull Jan 17, 2025
026ea73
cleanup
driskull Jan 17, 2025
c7fee0c
stories
driskull Jan 17, 2025
93c37d6
fix test
driskull Jan 17, 2025
e4f0ab4
Merge branch 'dev' into dris0000/block-group
driskull Jan 17, 2025
d182516
Update packages/calcite-components/src/components/block-group/block-g…
driskull Jan 24, 2025
14d8eed
Update packages/calcite-components/src/components/block-group/block-g…
driskull Jan 24, 2025
adde2f2
Update packages/calcite-components/src/components/block-group/block-g…
driskull Jan 24, 2025
bdf408d
review fixes
driskull Jan 28, 2025
222a625
cleanup
driskull Jan 29, 2025
5fc4430
cleanup
driskull Jan 29, 2025
bde2e54
fix move
driskull Jan 29, 2025
c87e1df
Merge branch 'dev' into dris0000/block-group
driskull Jan 29, 2025
15c405c
review cleanup
driskull Jan 30, 2025
09a1b7d
review fixes
driskull Feb 3, 2025
d98663f
Merge branch 'dev' into dris0000/block-group
driskull Feb 3, 2025
17edf86
review fixes
driskull Feb 3, 2025
2d2f8df
review fixes
driskull Feb 3, 2025
3e9ded7
cleanup
driskull Feb 3, 2025
2d8c4aa
fix space in documentation
driskull Feb 3, 2025
ad97896
fix test
driskull Feb 3, 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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* CSS Custom Properties
*
* These properties can be overridden using the component's tag as selector.
*
* @prop --calcite-block-group-background-color: Specifies the component's background color.
*/

:host {
@apply block;
}

@include disabled();
driskull marked this conversation as resolved.
Show resolved Hide resolved

.container {
position: relative;
background-color: var(--calcite-block-group-background-color, var(--calcite-color-foreground-1));
driskull marked this conversation as resolved.
Show resolved Hide resolved
}

.assistive-text {
@apply sr-only;
}

@include base-component();
Loading
Loading