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: replace DB icons with whitelabel open source icons #3653

Merged
merged 25 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
030b822
feat: replace DB icons with whitelabel open source icons
nmerget Jan 8, 2025
78d59a2
Merge branch 'main' into feat-whitelabel-icons
nmerget Jan 8, 2025
4db6830
fix: linting issues
nmerget Jan 8, 2025
676c8c2
Update packages/components/src/styles/_button-components.scss
nmerget Jan 9, 2025
8e25a54
chore: update .gitignore
nmerget Jan 9, 2025
d55ea15
fix: linting issues
nmerget Jan 9, 2025
11b89ec
fix: linting issues
nmerget Jan 9, 2025
6702139
chore: update to icon-font-tools
nmerget Jan 9, 2025
d56a849
Merge remote-tracking branch 'origin/main' into feat-whitelabel-icons
nmerget Jan 9, 2025
fa97c44
feat: add db-theme and replace default icons
nmerget Jan 13, 2025
2f66ccc
Merge remote-tracking branch 'origin/main' into feat-whitelabel-icons
nmerget Jan 13, 2025
71733c5
chore: update from main
nmerget Jan 13, 2025
f79be49
chore: update github workflows to use secrets
nmerget Jan 13, 2025
433b456
chore: update github workflows to use secrets
nmerget Jan 13, 2025
4ec3958
chore: update snapshots
nmerget Jan 13, 2025
66390e6
fix: issue with filled icons
nmerget Jan 13, 2025
696e79b
chore: update snapshots
nmerget Jan 13, 2025
7842fbb
chore: update snapshots
nmerget Jan 13, 2025
b4948ff
fix: issue with switch for stencil
nmerget Jan 14, 2025
d065c82
Merge remote-tracking branch 'origin/main' into feat-whitelabel-icons
nmerget Jan 14, 2025
b17e975
chore: update from main
nmerget Jan 14, 2025
8e76826
Merge branch 'main' into feat-whitelabel-icons
mfranzke Jan 15, 2025
cb07f93
Merge remote-tracking branch 'origin/main' into feat-whitelabel-icons
nmerget Jan 17, 2025
cb6eae4
chore: update from main
nmerget Jan 17, 2025
ba1aa13
Merge branch 'main' into feat-whitelabel-icons
nmerget Jan 17, 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 .config/.jscpd.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"packages/components/src/components/radio/radio.lite.tsx",
"packages/components/src/components/tag/tag.spec.tsx",
"packages/foundations/assets/icons/functional/fonts/**",
"packages/foundations/assets/icons/fonts/**",
"packages/foundations/src",
"showcases/**/results/**",
"showcases/angular-showcase/.angular/cache",
Expand Down
22 changes: 11 additions & 11 deletions .gitignore
nmerget marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ showcases/patternhub/public/iframe-resizer/*
**/recordings/

/__snapshots__/**/*-win32.png
/packages/foundations/assets/icons/functional/tmp/
/packages/foundations/assets/icons/functional/fonts/**/index.html
/packages/foundations/assets/icons/functional/fonts/**/index.css
/packages/foundations/assets/icons/functional/fonts/**/font-face.css
/packages/foundations/assets/icons/functional/fonts/**/info.json
/packages/foundations/scss/_normalize.scss

/packages/foundations/assets/icons/functional/fonts/**/*.eot
/packages/foundations/assets/icons/functional/fonts/**/*.svg
/packages/foundations/assets/icons/functional/fonts/**/*.ttf
/packages/foundations/assets/icons/functional/fonts/**/*.woff
/packages/foundations/assets/icons/functional/fonts/**/*.json
/packages/foundations/assets/icons/tmp/
/packages/foundations/assets/icons/fonts/**/index.html
/packages/foundations/assets/icons/fonts/**/index.css
/packages/foundations/assets/icons/fonts/**/font-face.css
/packages/foundations/assets/icons/fonts/**/info.json
/packages/foundations/assets/icons/fonts/**/*.eot
/packages/foundations/assets/icons/fonts/**/*.svg
/packages/foundations/assets/icons/fonts/**/*.ttf
/packages/foundations/assets/icons/fonts/**/*.woff
/packages/foundations/assets/icons/fonts/**/*.json
/packages/foundations/assets/icons/functional/**

/output/stencil/.stencil
/output/stencil/loader
Expand Down
2 changes: 1 addition & 1 deletion output/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import "@db-ui/components/build/styles/db-ui-42-rollup.css";
```tsx
import { DBButton } from '@db-ui/react-components';
...
<DBButton icon="person" onClick={()=>{console.log("Test")}}>Test</DBButton>
<DBButton icon="x_placeholder" onClick={()=>{console.log("Test")}}>Test</DBButton>
...
```

Expand Down
2 changes: 1 addition & 1 deletion output/stencil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ defineCustomElements();

```html
...
<db-button icon="person">Test</db-button>
<db-button icon="x_placeholder">Test</db-button>
...
```

Expand Down
2 changes: 1 addition & 1 deletion output/vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import { DBButton } from "@db-ui/v-components";
</script>

<template>
<DBButton icon="person">Test</DBButton>
<DBButton icon="x_placeholder">Test</DBButton>
</template>
```

Expand Down
Loading
Loading