Skip to content

Commit

Permalink
Merge pull request #441 from Lemoncode/feature/#227-add-icons
Browse files Browse the repository at this point in the history
[UPDATE]feature/#227 Add set of icons (read carefully steps)
  • Loading branch information
brauliodiez authored Oct 15, 2024
2 parents d991a4a + aeea51d commit 0c8e0d5
Show file tree
Hide file tree
Showing 15 changed files with 102 additions and 4 deletions.
1 change: 1 addition & 0 deletions public/icons/arrowout.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowrightdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowupleft.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowupright.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/bluetooth.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/bluetoothslash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/cogwheel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/filter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/handsclapping.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/mouse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/pencil.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/rocket.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/sortascending.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/sortdescending.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 88 additions & 4 deletions src/pods/properties/components/icon-selector/modal/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ export const iconCollection: IconInfo[] = [
categories: ['IT'],
},
{
name: 'Disconected wifi',
name: 'Disconnected wifi',
filename: 'nowifi.svg',
searchTerms: ['disconnected', 'wifi', 'disconnection', 'network'],
categories: ['IT'],
Expand Down Expand Up @@ -1215,9 +1215,9 @@ export const iconCollection: IconInfo[] = [
categories: ['IT'],
},
{
name: 'Cloud slash',
name: 'Disconnected cloud',
filename: 'cloudslash.svg',
searchTerms: ['cloud', 'slash', 'disconnected', 'lost conection'],
searchTerms: ['cloud', 'slash', 'disconnected', 'lost connection'],
categories: ['IT'],
},
{
Expand All @@ -1235,7 +1235,91 @@ export const iconCollection: IconInfo[] = [
{
name: 'Arrow down left',
filename: 'arrowdownleft.svg',
searchTerms: ['arrow', 'down', 'left', 'move', 'go'],
searchTerms: ['arrow', 'down', 'left', 'move'],
categories: ['IT'],
},
{
name: 'Arrow down right',
filename: 'arrowrightdown.svg',
searchTerms: ['arrow', 'down', 'right', 'move'],
categories: ['IT'],
},
{
name: 'Arrow up left',
filename: 'arrowupleft.svg',
searchTerms: ['arrow', 'up', 'left', 'move'],
categories: ['IT'],
},
{
name: 'Arrow up right',
filename: 'arrowupright.svg',
searchTerms: ['arrow', 'up', 'right', 'move'],
categories: ['IT'],
},
{
name: 'Arrow out',
filename: 'arrowout.svg',
searchTerms: ['arrow', 'out', 'spread', 'expand'],
categories: ['IT'],
},
{
name: 'Bluetooth',
filename: 'bluetooth.svg',
searchTerms: ['bluetooth', 'connection', 'wireless', 'technology'],
categories: ['IT'],
},
{
name: 'Disconnected bluetooth',
filename: 'bluetoothslash.svg',
searchTerms: ['bluetooth', 'off', 'disconnected', 'lost connection'],
categories: ['IT'],
},
{
name: 'Hands clapping',
filename: 'handsclapping.svg',
searchTerms: ['hand', 'clapping', 'applause', 'celebration'],
categories: ['IT'],
},
{
name: 'Mouse',
filename: 'mouse.svg',
searchTerms: ['mouse', 'device', 'computer', 'click'],
categories: ['IT'],
},
{
name: 'Filter',
filename: 'filter.svg',
searchTerms: ['filter', 'seep', 'select', 'find'],
categories: ['IT'],
},
{
name: 'Sort ascending',
filename: 'sortascending.svg',
searchTerms: ['sort', 'ascending', 'order', 'arrange'],
categories: ['IT'],
},
{
name: 'Sort descending',
filename: 'sortdescending.svg',
searchTerms: ['sort', 'descending', 'order', 'arrange'],
categories: ['IT'],
},
{
name: 'Cog wheel',
filename: 'cogwheel.svg',
searchTerms: ['settings', 'configuration', 'options', 'preferences'],
categories: ['IT'],
},
{
name: 'Rocket',
filename: 'rocket.svg',
searchTerms: ['rocket', 'launch', 'space', 'fly'],
categories: ['IT'],
},
{
name: 'Pencil',
filename: 'pencil.svg',
searchTerms: ['pencil', 'edit', 'editing', 'edition'],
categories: ['IT'],
},
];

0 comments on commit 0c8e0d5

Please sign in to comment.