mirror of
https://github.com/documize/community.git
synced 2025-07-21 22:29:41 +02:00
Introduce modular UI framework
1. Modals wrapped 2. Toolbar icon actions: click and link-to navigation 3. Moved components into sub-folders 4. Replaced Bootstrap Tooltip and Dropdown libs with Ember specific add-ons And more. Co-Authored-By: Saul S <sauls8t@users.noreply.github.com> Co-Authored-By: McMatts <matt@documize.com>
This commit is contained in:
parent
f140e7ef77
commit
6eb68f84e0
48 changed files with 330 additions and 240 deletions
|
@ -192,6 +192,31 @@ let constants = EmberObject.extend({
|
|||
|
||||
// Seats6 is unlimited.
|
||||
Seats6: 9999
|
||||
},
|
||||
|
||||
Icon: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Delete: 'dicon-bin',
|
||||
Print: 'dicon-print',
|
||||
Plus: 'dicon-e-add',
|
||||
Person: 'dicon-single-01',
|
||||
Settings: 'dicon-settings-gear',
|
||||
},
|
||||
|
||||
Color: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Red: 'red',
|
||||
Green: 'green',
|
||||
Yellow: 'yellow',
|
||||
Gray: 'gray'
|
||||
},
|
||||
|
||||
Label: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Add: 'Add',
|
||||
Cancel: 'Cancel',
|
||||
Close: 'Close',
|
||||
Delete: 'Delete',
|
||||
Insert: 'Insert',
|
||||
Save: 'Save',
|
||||
Update: 'Update',
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue