Skip to content

Commit

Permalink
Remove old sheet component (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-andrey authored and DubrovinPavel committed Nov 7, 2019
1 parent c619da9 commit 5da8563
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 217 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.10.0] - 2019-11-07
### Added
* Add audit and authority in class settings.
* Add readonly mode.
* Add sort data by name in list.
* Add style for base modal window.
* Add share button.
* Add print diagrams.

### Fixed
* Fix diagram toolbar hidden.
* Fix toggle sidebar button.
* Remove round buttons.
* Fix modal window styles.

## [0.9.2] - 2019-10-08
### Added
* Add connection points for links.
Expand Down
2 changes: 1 addition & 1 deletion addon/components/fd-modal-message-box.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { computed } from '@ember/object';
export default FlexberryDialogComponent.extend({
layout,

/**
/**
See [EmberJS API](https://emberjs.com/api/).
@property classNames
Expand Down
152 changes: 0 additions & 152 deletions addon/components/fd-sheet.js

This file was deleted.

5 changes: 0 additions & 5 deletions addon/locales/en/components/fd-sheet.js

This file was deleted.

1 change: 1 addition & 0 deletions addon/locales/en/components/fd-sheets-tool-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default {
'expand-button-title': 'Expand',
'delete-button-title': 'Delete',
'share-button-title': 'Copy link',
'print-button-title': 'Print',
'share-button-data-content': 'Copied!'
};
2 changes: 0 additions & 2 deletions addon/locales/en/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ import FdGeolayerstyleFormEditingPanel from './components/fd-geolayerstyle-editi
import FdCreateView from './components/fd-create-view';
import FdCreateEntity from './components/fd-create-entity';
import FdCreateDiagrams from './components/fd-create-diagrams';
import FdSheet from './components/fd-sheet';
import FdSheetToolBar from './components/fd-sheets-tool-bar';
import FdCreateNodeEditingPanel from './components/fd-create-node-editing-panel';
import FdFolderEditingPanel from './components/fd-folder-editing-panel';
Expand Down Expand Up @@ -451,7 +450,6 @@ $.extend(true, translations, {
'fd-geolayer-editing-panel': FdGeolayerFormEditingPanel,
'fd-geolayerstyle-editing-panel': FdGeolayerstyleFormEditingPanel,
'fd-create-view': FdCreateView,
'fd-sheet': FdSheet,
'fd-sheets-tool-bar': FdSheetToolBar,
'fd-create-node-editing-panel': FdCreateNodeEditingPanel,
'fd-folder-editing-panel': FdFolderEditingPanel,
Expand Down
5 changes: 0 additions & 5 deletions addon/locales/ru/components/fd-sheet.js

This file was deleted.

1 change: 1 addition & 0 deletions addon/locales/ru/components/fd-sheets-tool-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default {
'expand-button-title': 'Развернуть',
'delete-button-title': 'Удалить',
'share-button-title': 'Копировать ссылку',
'print-button-title': 'Печать',
'share-button-data-content': 'Скопировано!'
};
2 changes: 0 additions & 2 deletions addon/locales/ru/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ import FdGeolayerstyleFormEditingPanel from './components/fd-geolayerstyle-editi
import FdCreateView from './components/fd-create-view';
import FdCreateEntity from './components/fd-create-entity';
import FdCreateDiagrams from './components/fd-create-diagrams';
import FdSheet from './components/fd-sheet';
import FdSheetToolBar from './components/fd-sheets-tool-bar';
import FdCreateNodeEditingPanel from './components/fd-create-node-editing-panel';
import FdFolderEditingPanel from './components/fd-folder-editing-panel';
Expand Down Expand Up @@ -450,7 +449,6 @@ $.extend(true, translations, {
'fd-geolayer-editing-panel': FdGeolayerFormEditingPanel,
'fd-geolayerstyle-editing-panel': FdGeolayerstyleFormEditingPanel,
'fd-create-view': FdCreateView,
'fd-sheet': FdSheet,
'fd-sheets-tool-bar': FdSheetToolBar,
'fd-create-node-editing-panel': FdCreateNodeEditingPanel,
'fd-folder-editing-panel': FdFolderEditingPanel,
Expand Down
46 changes: 0 additions & 46 deletions addon/templates/components/fd-sheet.hbs

This file was deleted.

4 changes: 2 additions & 2 deletions addon/templates/components/fd-sheets/fd-sheets-tool-bar.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{{/if}}
{{/if}}
{{#if (and (not isNewModel) buttonVisible.print)}}
<button class="ui icon button" {{action 'print'}}>
<button class="ui icon button" {{action 'print'}} title={{t "components.fd-sheets-tool-bar.print-button-title"}}>
<i class="print icon" ></i>
</button>
{{/if}}
Expand All @@ -40,4 +40,4 @@
<button class="ui icon button" {{action 'closeSheet'}} title={{t "components.fd-sheets-tool-bar.close-button-title"}}>
<i class="icon-fd-x-mark icon" ></i>
</button>
</div>
</div>
1 change: 0 additions & 1 deletion app/components/fd-sheet.js

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-flexberry-designer",
"version": "0.9.2",
"version": "0.10.0",
"description": "CASE addon for ember-flexberry applications",
"keywords": [
"ember-addon",
Expand Down

0 comments on commit 5da8563

Please sign in to comment.