Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed May 13, 2021
1 parent 1783fc4 commit 628b449
Show file tree
Hide file tree
Showing 277 changed files with 4,943 additions and 438 deletions.
Binary file modified media/PepiconSvgs.zip
Binary file not shown.
Binary file modified packages/pepicons.com/dist/spa/PepiconSvgs.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/pepicons.com/dist/spa/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
<body>
<!-- DO NOT touch the following DIV -->
<div id="q-app"></div>
<script src="/js/vendor.98bedefb.js"></script><script src="/js/app.ca1c3be1.js"></script></body>
<script src="/js/vendor.d469e8cf.js"></script><script src="/js/app.ca1c3be1.js"></script></body>
</html>
1 change: 0 additions & 1 deletion packages/pepicons.com/dist/spa/js/vendor.98bedefb.js.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/pepicons.com/dist/spa/js/vendor.d469e8cf.js.map

Large diffs are not rendered by default.

Binary file modified packages/pepicons.com/public/PepiconSvgs.zip
Binary file not shown.
1,098 changes: 1,014 additions & 84 deletions packages/pepicons/dist/index.cjs.js

Large diffs are not rendered by default.

1,098 changes: 1,014 additions & 84 deletions packages/pepicons/dist/index.esm.js

Large diffs are not rendered by default.

47 changes: 38 additions & 9 deletions packages/pepicons/src/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@

import { Pepicon } from './types'

export const categories: string[] = ['ui', 'transport', 'time', 'text', 'sound', 'social', 'shape', 'nature', 'location', 'leisure', 'item', 'food-drinks', 'device']
export const categories: string[] = ['ui', 'transport', 'time', 'text', 'sound', 'social', 'shape', 'nature', 'location', 'leisure', 'item', 'food-drinks', 'device', 'arrows']

export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'airplane': 'transport',
'angle-down': 'ui',
'angle-left': 'ui',
'angle-right': 'ui',
'angle-up': 'ui',
'angle-down': 'arrows',
'angle-left': 'arrows',
'angle-right': 'arrows',
'angle-up': 'arrows',
'arrow-down': 'arrows',
'arrow-down-left': 'arrows',
'arrow-down-right': 'arrows',
'arrow-left': 'arrows',
'arrow-right': 'arrows',
'arrow-up': 'arrows',
'arrow-up-left': 'arrows',
'arrow-up-right': 'arrows',
'battery': 'device',
'bell': 'sound',
'bell-off': 'sound',
Expand All @@ -25,6 +33,7 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'can': 'food-drinks',
'car': 'transport',
'cart': 'leisure',
'chain': 'ui',
'checkmark': 'ui',
'circle': 'shape',
'circle-filled': 'shape',
Expand All @@ -38,19 +47,21 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'cloud-up-filled': 'ui',
'coctail': 'food-drinks',
'color-picker': 'ui',
'contract': 'ui',
'contract': 'arrows',
'controller': 'leisure',
'credit-card': 'item',
'crown': 'item',
'cup': 'food-drinks',
'division': 'shape',
'dots-x': 'ui',
'dots-y': 'ui',
'dress': 'item',
'duplicate': 'ui',
'electricity': 'nature',
'enter': 'ui',
'exclamation': 'text',
'exclamation-filled': 'text',
'expand': 'ui',
'expand': 'arrows',
'eye': 'ui',
'eye-closed': 'ui',
'eye-off': 'ui',
Expand All @@ -64,37 +75,50 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'gift': 'social',
'grab': 'ui',
'hamburger': 'food-drinks',
'hash': 'ui',
'headphone': 'sound',
'heart': 'social',
'house': 'location',
'identification': 'item',
'info': 'text',
'info-filled': 'text',
'internet': 'location',
'key': 'item',
'knive-fork': 'food-drinks',
'label': 'ui',
'leave': 'ui',
'letter': 'social',
'list': 'ui',
'lock-closed': 'item',
'lock-open': 'item',
'loop': 'ui',
'loop-minus': 'ui',
'loop-plus': 'ui',
'magnet': 'item',
'map': 'transport',
'megaphone': 'item',
'microphone': 'sound',
'minus': 'shape',
'monitor': 'device',
'monitor2': 'device',
'moon': 'nature',
'moon-filled': 'nature',
'motorcycle': 'transport',
'move-x': 'arrows',
'move-y': 'arrows',
'music-note-double': 'sound',
'music-note-single': 'sound',
'open': 'ui',
'paint-pallet': 'leisure',
'pen': 'text',
'people': 'social',
'person': 'social',
'person-checkmark': 'social',
'person-filled': 'social',
'person-plus': 'social',
'persons': 'social',
'phone': 'social',
'photo': 'item',
'photo-camera': 'device',
'pill': 'item',
'pinpoint': 'location',
Expand All @@ -104,8 +128,9 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'plus': 'shape',
'power': 'ui',
'printer': 'device',
'refresh': 'ui',
'reload': 'ui',
'qr-code': 'ui',
'refresh': 'arrows',
'reload': 'arrows',
'scissors': 'item',
'send': 'social',
'share-android': 'social',
Expand All @@ -114,6 +139,7 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'smartphone-notch': 'device',
'smartphone2': 'device',
'soft-drink': 'food-drinks',
'sort': 'arrows',
'speaker-high': 'sound',
'speaker-low': 'sound',
'speaker-off': 'sound',
Expand All @@ -128,6 +154,8 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'taxi': 'transport',
'television': 'device',
'text-bubble': 'social',
'thumbs-down': 'social',
'thumbs-up': 'social',
'times': 'shape',
'tool': 'ui',
'train': 'transport',
Expand All @@ -140,6 +168,7 @@ export const pepiconCategoryDic: { [name in Pepicon]: string } = {
'triangle-right-filled': 'shape',
'triangle-up': 'shape',
'triangle-up-filled': 'shape',
'trophy': 'item',
'truck': 'transport',
'umbrella': 'item',
'wifi': 'ui',
Expand Down
Loading

0 comments on commit 628b449

Please sign in to comment.