Skip to content

Commit 80ebb4e

Browse files
miltonbsndependabot[bot]idmarjr
authored
Release/v0.1.8 (#461)
* Add documentation link at models workspace * Add colors.scss - Define color variables - brand-primary - gray scale - Pure black & white - Accent color - Meaning related (Dnager, highlight - Theme colors - Gray - Green - Purple * Update brand primary color variables - Update it on .scss files - Update it on .svg files * Update color brand-primary color at react theme file * Update brand-primary color at templateLoader.js Not sure what's the purpose of this file but I'm updating it anyways to keep consistency * Use --brand-default color variabloe accross the border This way we have more control to change all colors in a central place if needed * Migrate border color to color variables - Create color variables values for borders (light, default, dark) - Over write some Bootstrap border values * Remove duplicated <statur-bar> element - Also organize the bottom of each file (Keep consistency in the comments and spaces) * Remove Fira Sans as default font - Use default system font instead - Arguably better legibility - Save extra request to get fonts from Google Fonts servers * Remove duplicated ";" from some files * Font-color legibility + .model-properties improv - Use color variables to improve font-legibility .model-properties improvements: - Increase size of clickable element to show/hide .model-properties - Add cursor icon at the empty-state message * Replace multiple hard coded color values - Use variables instead - Change .warning button color from orange to default gray - Change validation error "red" to use --danger-default color - Relave multiple HEX white and black and use --white --black instead " * Use --brand-primary-30 as default color for links * Update BRMW logo - Add SVG with (not that) new logo; - Replace logo at login page - Update favicon * Fix typo in --black color variable * Small padding adjustment at model-properties sidebar * Adjust .navbar-default colors for better contrast * Update --border-default value * Remove old logo assets * Bump mongodb from 4.8.1 to 4.17.0 (#451) Bumps [mongodb](https://github.com/mongodb/node-mongodb-native) from 4.8.1 to 4.17.0. - [Release notes](https://github.com/mongodb/node-mongodb-native/releases) - [Changelog](https://github.com/mongodb/node-mongodb-native/blob/v4.17.0/HISTORY.md) - [Commits](mongodb/node-mongodb-native@v4.8.1...v4.17.0) --- updated-dependencies: - dependency-name: mongodb dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Idmar Ramos Jr. (Id) <idmarjr@gmail.com>
1 parent 3a1f7b5 commit 80ebb4e

42 files changed

Lines changed: 3309 additions & 3383 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/angular/components/queryExpressionModal/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
.condition-label {
99
padding: 6px;
10-
background: #3d9970;
10+
background: hsl(170, 100%, 20%);
1111
color: white;
1212
border-radius: 4px;
1313
margin-right: 8px;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.status-bar {
22
font-size: 0.9em;
3-
font-style: italic;
43
font-weight: 300;
5-
color: rgba(#000, 1);
4+
color: var(--black);
65
}

app/angular/conceptual/conceptual.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ <h2 class="h4">{{ 'Conceptual model of:' | translate }} {{$ctrl.model.name}}</h2
3535
<status-bar updated-at="$ctrl.modelState.updatedAt"></status-bar>
3636
</div>
3737
<aside class="header-actions pull-right">
38+
<a class="docs-icon" href="https://docs.brmodeloweb.com" target="_blank" rel="noopener noreferrer" title="{{ 'Documentation' | translate }}"><i class="fa fa-book"></i></a>
3839
<a class="br-button" data-ng-click="$ctrl.saveModel()" title="{{ 'Save (CTRL S)' | translate }}">{{ 'Save' | translate }}</a>
3940
</aside>
4041
</div>
@@ -54,10 +55,8 @@ <h2 class="h4">{{ 'Conceptual model of:' | translate }} {{$ctrl.model.name}}</h2
5455
</div>
5556
</aside>
5657
</header><!-- End .workspace-header -->
57-
</section>
58-
<sidebar-control-conceptual selected="$ctrl.selectedElement" on-update="$ctrl.onUpdate(event)"></sidebar-control-conceptual>
58+
</section><!-- End .model-area -->
59+
<sidebar-control-conceptual selected="$ctrl.selectedElement" on-update="$ctrl.onUpdate(event)"></sidebar-control-conceptual>
5960
<bug-report-button></bug-report-button>
60-
</div>
61-
<!-- End .mainContent -->
62-
</section>
63-
<!-- End .view -->
61+
</div><!-- End .mainContent -->
62+
</section><!-- End .view -->

app/angular/conceptual/sidebarControl.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<aside class="model-properties" data-ng-class="{'active': $ctrl.visible}">
22

33
<span class="action" data-ng-click="$ctrl.changeVisible()">
4-
<i class="fa angle-double-icon"
5-
data-ng-class="!$ctrl.visible ? 'fa-angle-double-left' : 'fa-angle-double-right'"></i>
4+
<i class="fa angle-double-icon" data-ng-class="!$ctrl.visible ? 'fa-angle-double-left' : 'fa-angle-double-right'"></i>
65
</span>
76

87
<div class="properties-content old">
98

109
<div class="form-group" ng-if="$ctrl.configuration.emptyState">
1110
<div class="empty-state">
11+
<i class="fa fa-mouse-pointer" aria-hidden="true"></i>
1212
<p>{{ 'Select an element to edit' | translate }}</p>
1313
</div>
1414
</div><!-- End .form-group -->

app/angular/editor/editorActions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ joint.ui.EditorActions = Backbone.Model.extend({
8080
runningCommand.action = commandAction;
8181
runningCommand.data.id = cellView.id;
8282
runningCommand.data.type = cellView.attributes.type;
83-
runningCommand.data.attributes = { ...cellView.toJSON() };;
83+
runningCommand.data.attributes = { ...cellView.toJSON() };
8484
runningCommand.options = d || {};
8585
runningCommand.data.view = cellView;
8686
this.saveCommand(runningCommand);

app/angular/logic/logic.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ <h2 class="h4 pull-left">{{ 'Logical model of:' | translate }} {{$ctrl.model.nam
3232
<status-bar updated-at="$ctrl.modelState.updatedAt"></status-bar>
3333
</div>
3434
<aside class="header-actions pull-right">
35+
<a class="docs-icon" href="https://docs.brmodeloweb.com" target="_blank" rel="noopener noreferrer" title="{{ 'Documentation' | translate }}"><i class="fa fa-book"></i></a>
3536
<a class="br-button" data-ng-click="$ctrl.saveModel()" title="{{ 'Save (CTRL S)' | translate }}">{{ 'Save' | translate }}</a>
3637
</aside>
3738
</div>
@@ -52,12 +53,7 @@ <h2 class="h4 pull-left">{{ 'Logical model of:' | translate }} {{$ctrl.model.nam
5253
</aside>
5354
</header><!-- End .workspace-header -->
5455
</section><!-- End .model-area -->
55-
5656
<sidebar-control-logical selected="$ctrl.selectedElement" show-feedback="$ctrl.showFeedback"></sidebar-control-logical>
57-
58-
<status-bar updated-at="$ctrl.modelState.updatedAt"></status-bar>
59-
6057
<bug-report-button></bug-report-button>
61-
6258
</section><!-- End .mainContent -->
6359
</section><!-- End .view -->

app/angular/logic/sidebarControl.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<div class="properties-content old" ng-if="$ctrl.selectedElement == null">
88
<div class="form-group">
99
<div class="empty-state">
10+
<i class="fa fa-mouse-pointer" aria-hidden="true"></i>
1011
<p>{{ 'Select an element to edit' | translate }}</p>
1112
</div>
1213
</div><!-- End .form-group -->

app/angular/login/login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/>
99
<section class="login-page">
1010
<header class="public-logo">
11-
<img src="../../img/brmodelo-logo-square.svg" alt="BR Modelo Web logo" height="42" width="42" />
11+
<img src="../../img/brmw-logo.svg" alt="BR Modelo Web logo" height="42" width="42" />
1212
<h1>BR Modelo Web</h1>
1313
</header>
1414
<div class="alert alert-danger" role="alert" data-ng-class="{'hide': !$ctrl.feedback.showing}">

app/angular/preferences/preferences.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h2 class="h2 pull-left">{{ 'Preferences' | translate }}</h2>
3636

3737
<!-- User information -->
3838
<form class="form-horizontal" role="form" name="userPreferencesForm">
39-
39+
4040
<section class="form-section deleteAccount">
4141
<header>
4242
<h3>{{ 'Delete account' | translate }}</h3>
@@ -46,7 +46,7 @@ <h3>{{ 'Delete account' | translate }}</h3>
4646
</section>
4747

4848
</form>
49-
</div><!-- End .container.projectsList -->
49+
</div><!-- End .container -->
5050

5151
<bug-report-button></bug-report-button>
5252
</section><!-- End .mainContent -->

app/favicon.ico

-1.12 KB
Binary file not shown.

0 commit comments

Comments
 (0)