Skip to content

Commit da66083

Browse files
committed
refactor: stable renaming
1 parent a064214 commit da66083

26 files changed

+125
-125
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ jobs:
2222
uses: ./.github/workflows/99-dependency-review.yml
2323

2424
labeler:
25-
if: github.event.pull_request.head.repo.owner.login == 'db-ui'
25+
if: github.event.pull_request.head.repo.owner.login == 'db-ux-design-system'
2626
uses: ./.github/workflows/99-labeler.yml

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for your interest in our project. Contributions are welcome. Feel free to [open an issue](https://github.com/db-ui/examples/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ui/base/compare) to contribute code.
3+
Thanks for your interest in our project. Contributions are welcome. Feel free to [open an issue](https://github.com/db-ux-design-system/examples/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ux-design-system/examples/compare) to contribute code.
44

55
We are committed to fostering a welcoming, respectful, and harassment-free environment. Be kind!
66

@@ -12,4 +12,4 @@ Moreover, you need to duplicate `.env.template` as `.env` and type your own emai
1212

1313
### Conventions
1414

15-
Please be aware that we have some [code and git commit (message and branch naming) conventions](https://github.com/db-ui/core/blob/main/docs/conventions.adoc), that we ensure with some linting tools.
15+
Please be aware that we have some [code and git commit (message and branch naming) conventions](https://github.com/db-ux-design-system/examples/blob/main/docs/conventions.adoc), that we ensure with some linting tools.

angular17-example/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@
77
3. Which stylesheet format would you like to use? `SCSS`
88
4. Do you want to enable Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering)? No
99
5. `$ cd angular-example`
10-
6. `$ npm i @db-ui/ngx-components`
10+
6. `$ npm i @db-ux/ngx-core-components`
1111
7. Add `"outputHashing": "media"` to the `angular.json` file under `projects/angular-example/architect/build/configurations/development`
1212
8. Add this to `src/styles.scss`:
1313

1414
```scss
1515
// Combined dependencies like variables, colors and tonality and all components
16-
@forward "@db-ui/components/build/styles/db-ui-42-rollup";
16+
@forward "@db-ux/core-components/build/styles/db-ux-42-rollup";
1717
```
1818

1919
7. Goto `src/app/app.component.html` and replace content with:
2020

2121
```html
2222
<main>
2323
<div>
24-
<h1>db-ui-functional</h1>
24+
<h1>db-ux-functional</h1>
2525
<p>Use this as default for enterprise apps</p>
2626
</div>
2727
<div>
28-
<h1>db-ui-regular</h1>
28+
<h1>db-ux-regular</h1>
2929
<p>Use this as default for consumer apps</p>
3030
</div>
3131
<div>
32-
<h1>db-ui-expressive</h1>
32+
<h1>db-ux-expressive</h1>
3333
<p>Use this as default for marketing apps</p>
3434
</div>
3535
</main>

angular17-example/package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular17-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@angular/platform-browser": "^17.3.0",
2020
"@angular/platform-browser-dynamic": "^17.3.0",
2121
"@angular/router": "^17.3.0",
22-
"@db-ui/ngx-components": "^0.5.7",
22+
"@db-ux/ngx-core-components": "^0.5.7",
2323
"rxjs": "~7.8.0",
2424
"tslib": "^2.3.0",
2525
"zone.js": "~0.14.3"

angular17-example/src/app/app.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
data-density="functional"
44
class="db-informational-bg-basic-level-1 container-with-padding"
55
>
6-
<h1>db-ui-functional</h1>
6+
<h1>db-ux-functional</h1>
77
<p>Use this as default for enterprise apps</p>
88
<db-button icon="person">Test</db-button>
99
</div>
1010
<div
1111
data-density="regular"
1212
class="db-successful-bg-basic-level-1 container-with-padding"
1313
>
14-
<h1>db-ui-regular</h1>
14+
<h1>db-ux-regular</h1>
1515
<p>Use this as default for consumer apps</p>
1616
<db-button icon="person">Test</db-button>
1717
</div>
1818
<div
1919
data-density="expressive"
2020
class="db-successful-bg-basic-level-2 container-with-padding"
2121
>
22-
<h1>db-ui-expressive</h1>
22+
<h1>db-ux-expressive</h1>
2323
<p>Use this as default for marketing apps</p>
2424
<db-button icon="person">Test</db-button>
2525
</div>

angular17-example/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component } from '@angular/core';
22
import { RouterOutlet } from '@angular/router';
3-
import { DBButton } from '@db-ui/ngx-components';
3+
import { DBButton } from '@db-ux/ngx-core-components';
44

55
@Component({
66
selector: 'app-root',

angular17-example/src/styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Combined dependencies like variables, colors and tonality and all components
2-
@forward "@db-ui/components/build/styles/db-ui-42-rollup";
2+
@forward "@db-ux/core-components/build/styles/db-ux-42-rollup";
33
// We use $db-spacing-fixed-md variable so we need to import the file where the variable is defined
4-
@use "@db-ui/foundations/build/scss/variables";
4+
@use "@db-ux/core-foundations/build/scss/variables";
55

66
.container-with-padding {
77
padding: variables.$db-spacing-fixed-md;

e2e/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@db-ui/mono-e2e",
2+
"name": "@db-ux/e2e",
33
"version": "0.0.0",
44
"type": "module",
55
"description": "",

0 commit comments

Comments
 (0)