Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
527a71b
refactor: replace angular with astro in stencil-showcase
nmerget Jan 9, 2026
d99dff8
chore: add gitignore for astro
nmerget Jan 9, 2026
3ab695d
refactor: add all components as astro pages
nmerget Jan 10, 2026
92b81b7
fix: some issues with stencil "boolean" attributes
nmerget Jan 12, 2026
b8937a2
fix: issues with components to use them in Astro
nmerget Jan 13, 2026
0740016
chore: update astro showcase
nmerget Jan 20, 2026
c161791
fix: remaining issues with components
nmerget Jan 20, 2026
8e80344
fix: remaining issues with astro and stencil build
nmerget Jan 22, 2026
f9d4677
chore: update from main
nmerget Jan 22, 2026
fb3c6a8
fix: issues from PR
nmerget Jan 23, 2026
59bad84
fix: remaining issues for showcases
nmerget Jan 23, 2026
af07f13
Merge branch 'main' into refactor-astro-stencil-showcase
nmerget Jan 23, 2026
f619e2c
fix: remaining issues for showcases
nmerget Jan 25, 2026
bc264ff
Merge remote-tracking branch 'origin/refactor-astro-stencil-showcase'…
nmerget Jan 25, 2026
29bbb10
Merge remote-tracking branch 'origin/main' into refactor-astro-stenci…
nmerget Jan 26, 2026
3472178
auto update snapshots (#5905)
github-actions[bot] Jan 26, 2026
7386264
Merge remote-tracking branch 'refs/remotes/origin/main' into refactor…
nmerget Jan 26, 2026
034d94c
chore: update from main
nmerget Jan 26, 2026
d2feab2
Merge branch 'main' into refactor-astro-stencil-showcase
nmerget Jan 26, 2026
5ad077f
auto update snapshots (#5915)
github-actions[bot] Jan 26, 2026
21b1a3f
fix: issues with aria-snapshots
nmerget Jan 26, 2026
ef4b919
fix: issues with aria-snapshots
nmerget Jan 26, 2026
6741d59
Merge remote-tracking branch 'origin/main' into refactor-astro-stenci…
nmerget Feb 10, 2026
e13d20f
fix: issues with some components for stencil
nmerget Feb 10, 2026
6a531e5
auto update snapshots (#6029)
github-actions[bot] Feb 10, 2026
db0617e
fix: remaining issues for astro components
nmerget Feb 12, 2026
2f45023
auto update snapshots (#6049)
github-actions[bot] Feb 12, 2026
9c659d1
chore: exclude tabs for stencil
nmerget Feb 14, 2026
c88158a
Merge remote-tracking branch 'origin/main' into refactor-astro-stenci…
nmerget Feb 17, 2026
a51bcc6
chore: update examples for astro
nmerget Feb 18, 2026
fd2bd24
auto update snapshots (#6074)
github-actions[bot] Feb 18, 2026
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
3 changes: 2 additions & 1 deletion .config/cspell.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ export default defineConfig({
// Examples
'showcases/react-showcase/src/components/form/index.tsx',
'showcases/patternhub/pages/foundations/densities/examples.tsx',
'showcases/angular-showcase/src/app/components/form/form.component.ts'
'showcases/angular-showcase/src/app/components/form/form.component.ts',
'showcases/stencil-showcase/src/components/form/Form.astro'
],
dictionaries: [
'custom-words',
Expand Down
2 changes: 2 additions & 0 deletions .config/cspellignorewords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ amazonq
Edgi
dbtabpanel
dbtablist
fadein
stylelints
unstarted
publishpackages
cooldown
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,5 @@ showcases/patternhub/public/iframe-resizer/*
/core-web.iml
/build-storybooks/
**/blob-report
/output/stencil/bundle/
/output/astro/styles/
1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ showcases/patternhub/**
showcases/**/public/**
packages/foundations/scripts/generate-icon-fonts/styles/**
packages/foundations/scss/_normalize.scss
packages/foundations/assets/icons/fonts/**
packages/stylelint/test/**
.stylelintrc.json
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions output/stencil/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@
".": {
"types": "./dist/loader/index.d.ts",
"import": "./dist/loader/index.js"
},
"./bundle": {
"types": "./bundle/index.d.ts",
"import": "./bundle/index.js"
}
},
"files": [
"bundle/",
"dist/",
"agent",
"CHANGELOG.md"
Expand All @@ -28,6 +33,7 @@
"dev-build": "stencil build --config stencil.config.dev.ts",
"mv:agent": "cpr agent ../../build-outputs/wc-core-components/agent --overwrite",
"mv:changelog": "cpr CHANGELOG.md ../../build-outputs/wc-core-components/CHANGELOG.md --overwrite",
"mv:bundle": "cpr bundle ../../build-outputs/wc-core-components/bundle -o",
"mv:dist": "cpr dist ../../build-outputs/wc-core-components/dist -o",
"mv:package.json": "cpr package.json ../../build-outputs/wc-core-components/package.json -o",
"mv:readme": "cpr README.md ../../build-outputs/wc-core-components/README.md -o",
Expand Down
6 changes: 6 additions & 0 deletions output/stencil/stencil.config.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ export const config: Config = {
srcDir: 'src',
tsconfig: "./tsconfig.dev.json",
outputTargets: [
{
type: 'dist-custom-elements',
"dir": 'bundle',
externalRuntime: false,
customElementsExportBehavior: "bundle"
},
{
type: 'dist'
}
Expand Down
6 changes: 6 additions & 0 deletions output/stencil/stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ export const config: Config = {
namespace: 'DB-UX',
srcDir: 'src',
outputTargets: [
{
type: 'dist-custom-elements',
"dir": 'bundle',
externalRuntime: false,
customElementsExportBehavior: "bundle"
},
{
type: 'dist'
}
Expand Down
Loading
Loading