mirror of
https://github.com/documize/community.git
synced 2025-07-23 07:09:43 +02:00
Per space label, icon, description
Labels introduce visual grouping and filtering of spaces.
This commit is contained in:
parent
fe8068965c
commit
a211ba051a
106 changed files with 3280 additions and 1008 deletions
|
@ -210,12 +210,12 @@ let constants = EmberObject.extend({
|
|||
Attachment: 'dicon-attachment',
|
||||
BarChart: 'dicon-chart-bar-33',
|
||||
Blocks: 'dicon-menu-6',
|
||||
Bookmark: 'dicon-bookmark',
|
||||
BookmarkSolid: 'dicon-bookmark-2',
|
||||
BookmarkAdd: 'dicon-bookmark-add',
|
||||
BookmarkDelete: 'dicon-bookmark-delete',
|
||||
ButtonAction: 'dicon-button-2',
|
||||
Category: 'dicon-flag',
|
||||
Chat: 'dicon-b-chat',
|
||||
Checkbox: 'dicon-shape-rectangle',
|
||||
CheckboxChecked: 'dicon-i-check',
|
||||
Copy: 'dicon-copy',
|
||||
|
@ -228,28 +228,29 @@ let constants = EmberObject.extend({
|
|||
Export: 'dicon-data-upload',
|
||||
Export2: 'dicon-upload',
|
||||
Filter: 'dicon-sort-tool',
|
||||
Grid1: 'dicon-grid-interface',
|
||||
Grid: 'dicon-grid-interface',
|
||||
Handshake: 'dicon-handshake',
|
||||
Index: 'dicon-align-justify',
|
||||
Index: 'dicon-menu-8',
|
||||
Integrations: 'dicon-geometry',
|
||||
Link: 'dicon-link',
|
||||
ListBullet: 'dicon-list-bullet-2',
|
||||
Locked: 'dicon-lock',
|
||||
NotAllowed: 'dicon-ban',
|
||||
PDF: 'dicon-pdf',
|
||||
Print: 'dicon-print',
|
||||
Pulse: 'dicon-pulse',
|
||||
Plus: 'dicon-e-add',
|
||||
Person: 'dicon-single-01',
|
||||
People: 'dicon-multiple-19',
|
||||
Preview: 'dicon-preview',
|
||||
Remove: 'dicon-i-remove',
|
||||
Read: 'dicon-menu-7',
|
||||
RemoveUser: 'dicon-delete-28',
|
||||
Search: 'dicon-magnifier',
|
||||
Send: 'dicon-send',
|
||||
Settings: 'dicon-settings-gear',
|
||||
Share: 'dicon-network-connection',
|
||||
Split: 'dicon-split-37',
|
||||
Tag: 'dicon-delete-key',
|
||||
TickSmall: 'dicon-d-check',
|
||||
Tick: 'dicon-check',
|
||||
TickSingle: 'dicon-check-single',
|
||||
TickDouble: 'dicon-check-double',
|
||||
|
@ -260,9 +261,59 @@ let constants = EmberObject.extend({
|
|||
TriangleSmallRight: 'dicon-small-triangle-right',
|
||||
Unarchive: 'dicon-download',
|
||||
Unlocked: 'dicon-unlocked',
|
||||
UserAssign: 'dicon-b-check',
|
||||
World: 'dicon-globe',
|
||||
},
|
||||
|
||||
IconMeta: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Star: 'dmeta-meta-star',
|
||||
Support: 'dmeta-meta-support',
|
||||
Message: 'dmeta-meta-message',
|
||||
Apps: 'dmeta-meta-apps',
|
||||
Box: 'dmeta-meta-box',
|
||||
Gift: 'dmeta-meta-gift',
|
||||
Design: 'dmeta-meta-design',
|
||||
Bulb: 'dmeta-meta-bulb',
|
||||
Metrics: 'dmeta-meta-metrics',
|
||||
PieChart: 'dmeta-meta-piechart',
|
||||
BarChart: 'dmeta-meta-barchart',
|
||||
Finance: 'dmeta-meta-finance',
|
||||
Lab: 'dmeta-meta-lab',
|
||||
Code: 'dmeta-meta-code',
|
||||
Help: 'dmeta-meta-help',
|
||||
Manuals: 'dmeta-meta-manuals',
|
||||
Flow: 'dmeta-meta-flow',
|
||||
Out: 'dmeta-meta-out',
|
||||
In: 'dmeta-meta-in',
|
||||
Partner: 'dmeta-meta-partner',
|
||||
Org: 'dmeta-meta-org',
|
||||
Home: 'dmeta-meta-home',
|
||||
Infinite: 'dmeta-meta-infinite',
|
||||
Todo: 'dmeta-meta-todo',
|
||||
Procedure: 'dmeta-meta-procedure',
|
||||
Outgoing: 'dmeta-meta-outgoing',
|
||||
Incoming: 'dmeta-meta-incoming',
|
||||
Travel: 'dmeta-meta-travel',
|
||||
Winner: 'dmeta-meta-winner',
|
||||
Roadmap: 'dmeta-meta-roadmap',
|
||||
Money: 'dmeta-meta-money',
|
||||
Security: 'dmeta-meta-security',
|
||||
Tune: 'dmeta-meta-tune',
|
||||
Guide: 'dmeta-meta-guide',
|
||||
Smile: 'dmeta-meta-smile',
|
||||
Rocket: 'dmeta-meta-rocket',
|
||||
Time: 'dmeta-meta-time',
|
||||
Cup: 'dmeta-meta-sales',
|
||||
Marketing: 'dmeta-meta-marketing',
|
||||
Announce: 'dmeta-meta-announce',
|
||||
Devops: 'dmeta-meta-devops',
|
||||
World: 'dmeta-meta-world',
|
||||
Plan: 'dmeta-meta-plan',
|
||||
Components: 'dmeta-meta-components',
|
||||
People: 'dmeta-meta-people',
|
||||
Checklist: 'dmeta-meta-checklist'
|
||||
},
|
||||
|
||||
Color: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
Red: 'red',
|
||||
Green: 'green',
|
||||
|
@ -279,6 +330,7 @@ let constants = EmberObject.extend({
|
|||
Close: 'Close',
|
||||
Copy: 'Copy',
|
||||
Delete: 'Delete',
|
||||
Edit: 'Edit',
|
||||
Export: 'Export',
|
||||
File: 'File',
|
||||
Insert: 'Insert',
|
||||
|
@ -292,8 +344,11 @@ let constants = EmberObject.extend({
|
|||
Remove: 'Remove',
|
||||
Reset: 'Reset',
|
||||
Restore: 'Restore',
|
||||
Request: 'Request',
|
||||
Save: 'Save',
|
||||
Search: 'Search',
|
||||
Send: 'Send',
|
||||
Share: 'Share',
|
||||
SignIn: 'Sign In',
|
||||
Unassigned: 'Unassigned',
|
||||
Update: 'Update',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue