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

Refactor/2318/migrate download button #2973

Merged
merged 15 commits into from
Aug 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/)

## [unreleased] (Added 🚀 | Changed | Removed 🗑 | Fixed 🐞 | Chore 👨‍💻 👩‍💻)

### Chore 👨‍💻 👩‍💻

- Migrate download button to Angular [#2973](https://github.com/MaibornWolff/codecharta/pull/2973)

## [1.103.3] - 2022-08-10

### Fixed 🐞
Expand Down
4 changes: 3 additions & 1 deletion visualization/app/app.module.ts
Expand Up @@ -58,6 +58,7 @@ import { ActionIconModule } from "./codeCharta/ui/actionIcon/actionIcon.module"
import { ColorSettingsPanelModule } from "./codeCharta/ui/ribbonBar/colorSettingsPanel/colorSettingsPanel.module"
import { ScreenshotButtonModule } from "./codeCharta/ui/screenshotButton/screenshotButton.module"
import { SplitStateActionsEffect } from "./codeCharta/state/effects/splitStateActionsEffect/splitStateActions.effect"
import { DownloadButtonModule } from "./codeCharta/ui/toolBar/downloadButton/downloadButton.module"

@NgModule({
imports: [
Expand Down Expand Up @@ -99,7 +100,8 @@ import { SplitStateActionsEffect } from "./codeCharta/state/effects/splitStateAc
HoveredNodePathPanelModule,
ActionIconModule,
ColorSettingsPanelModule,
ScreenshotButtonModule
ScreenshotButtonModule,
DownloadButtonModule
],
providers: [
threeSceneServiceProvider,
Expand Down
20 changes: 0 additions & 20 deletions visualization/app/codeCharta/ui/dialog/dialog.component.scss
Expand Up @@ -27,26 +27,6 @@ cc-reset-settings-button {
min-width: 50%;
}

.download-dialog {
.dialog-list {
margin: 5px 0 5px 0;

&.md-block {
display: block;
margin-top: 8px;
}
}

.filename-input {
width: 80%;
}

.cc-file-extension {
color: grey;
vertical-align: -webkit-baseline-middle;
}
}

.custom-config-dialog {
.warning {
color: #ff6161;
Expand Down

This file was deleted.

This file was deleted.