From b98c61cd0b1d2495160556eb39cab2e8052a7375 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 16 Oct 2024 17:04:41 +0200 Subject: [PATCH] Add moped, plate-utensils, receipt, shopiing-cart, wallet --- docs/public/data/icons/moped.json | 7 ++++ docs/public/data/icons/plate-utensils.json | 7 ++++ docs/public/data/icons/receipt.json | 7 ++++ docs/public/data/icons/shopping-cart.json | 7 ++++ docs/public/data/icons/wallet.json | 7 ++++ docs/src/app/Docs/pages/Changelog.tsx | 4 +- docs/src/data/icons.ts | 37 +++++++++++++++++- icons/moped.svg | 1 + icons/plate-utensils.svg | 1 + icons/receipt.svg | 1 + icons/shopping-cart.svg | 1 + icons/wallet.svg | 1 + src/Valkyrie.ts | 45 ++++++++++++++++++++++ 13 files changed, 123 insertions(+), 3 deletions(-) create mode 100644 docs/public/data/icons/moped.json create mode 100644 docs/public/data/icons/plate-utensils.json create mode 100644 docs/public/data/icons/receipt.json create mode 100644 docs/public/data/icons/shopping-cart.json create mode 100644 docs/public/data/icons/wallet.json create mode 100644 icons/moped.svg create mode 100644 icons/plate-utensils.svg create mode 100644 icons/receipt.svg create mode 100644 icons/shopping-cart.svg create mode 100644 icons/wallet.svg diff --git a/docs/public/data/icons/moped.json b/docs/public/data/icons/moped.json new file mode 100644 index 00000000..430d4565 --- /dev/null +++ b/docs/public/data/icons/moped.json @@ -0,0 +1,7 @@ +{ + "title": "Moped", + "categories": ["transportation", "maps"], + "tags": ["bike", "drive", "driving", "delivery"], + "created": "1.0.0", + "updated": "1.0.0" +} diff --git a/docs/public/data/icons/plate-utensils.json b/docs/public/data/icons/plate-utensils.json new file mode 100644 index 00000000..16b90f35 --- /dev/null +++ b/docs/public/data/icons/plate-utensils.json @@ -0,0 +1,7 @@ +{ + "title": "Plate utensils", + "categories": ["maps", "food-beverage"], + "tags": ["food", "eat", "restaurant"], + "created": "1.0.0", + "updated": "1.0.0" +} diff --git a/docs/public/data/icons/receipt.json b/docs/public/data/icons/receipt.json new file mode 100644 index 00000000..d254f918 --- /dev/null +++ b/docs/public/data/icons/receipt.json @@ -0,0 +1,7 @@ +{ + "title": "Receipt", + "categories": ["money"], + "tags": ["price"], + "created": "1.0.0", + "updated": "1.0.0" +} diff --git a/docs/public/data/icons/shopping-cart.json b/docs/public/data/icons/shopping-cart.json new file mode 100644 index 00000000..1bb445e8 --- /dev/null +++ b/docs/public/data/icons/shopping-cart.json @@ -0,0 +1,7 @@ +{ + "title": "Shopping cart", + "categories": ["shopping", "maps"], + "tags": ["checkout", "cart", "basket"], + "created": "1.0.0", + "updated": "1.0.0" +} diff --git a/docs/public/data/icons/wallet.json b/docs/public/data/icons/wallet.json new file mode 100644 index 00000000..2f616532 --- /dev/null +++ b/docs/public/data/icons/wallet.json @@ -0,0 +1,7 @@ +{ + "title": "Wallet", + "categories": ["business", "money", "shopping"], + "tags": [], + "created": "1.0.0", + "updated": "1.0.0" +} diff --git a/docs/src/app/Docs/pages/Changelog.tsx b/docs/src/app/Docs/pages/Changelog.tsx index d146dccd..2500fc9c 100644 --- a/docs/src/app/Docs/pages/Changelog.tsx +++ b/docs/src/app/Docs/pages/Changelog.tsx @@ -10,8 +10,8 @@ export default function Changelog() { \ No newline at end of file diff --git a/icons/plate-utensils.svg b/icons/plate-utensils.svg new file mode 100644 index 00000000..9cbaaf41 --- /dev/null +++ b/icons/plate-utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/receipt.svg b/icons/receipt.svg new file mode 100644 index 00000000..21ee89a7 --- /dev/null +++ b/icons/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/shopping-cart.svg b/icons/shopping-cart.svg new file mode 100644 index 00000000..be4f5a82 --- /dev/null +++ b/icons/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/wallet.svg b/icons/wallet.svg new file mode 100644 index 00000000..6bc9dccf --- /dev/null +++ b/icons/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/Valkyrie.ts b/src/Valkyrie.ts index 04558842..87d0bb50 100644 --- a/src/Valkyrie.ts +++ b/src/Valkyrie.ts @@ -1322,6 +1322,13 @@ export const viMoon: { name: 'moon', data: ``, }; +export const viMoped: { + name: 'moped'; + data: string; +} = { + name: 'moped', + data: ``, +}; export const viMusicPause: { name: 'music_pause'; data: string; @@ -1581,6 +1588,13 @@ export const viPhone: { name: 'phone', data: ``, }; +export const viPlateUtensils: { + name: 'plate_utensils'; + data: string; +} = { + name: 'plate_utensils', + data: ``, +}; export const viPlayPause: { name: 'play_pause'; data: string; @@ -1637,6 +1651,13 @@ export const viQuote: { name: 'quote', data: ``, }; +export const viReceipt: { + name: 'receipt'; + data: string; +} = { + name: 'receipt', + data: ``, +}; export const viRectangleP: { name: 'rectangle_p'; data: string; @@ -1714,6 +1735,13 @@ export const viShield: { name: 'shield', data: ``, }; +export const viShoppingCart: { + name: 'shopping_cart'; + data: string; +} = { + name: 'shopping_cart', + data: ``, +}; export const viShuffle: { name: 'shuffle'; data: string; @@ -2022,6 +2050,13 @@ export const viVolumeSlash: { name: 'volume_slash', data: ``, }; +export const viWallet: { + name: 'wallet'; + data: string; +} = { + name: 'wallet', + data: ``, +}; export const viWallpaper: { name: 'wallpaper'; data: string; @@ -2268,6 +2303,7 @@ export type Valkyrie = | 'microphone' | 'min' | 'moon' + | 'moped' | 'music_pause' | 'music' | 'network' @@ -2305,6 +2341,7 @@ export type Valkyrie = | 'phone_office' | 'phone_volume' | 'phone' + | 'plate_utensils' | 'play_pause' | 'play' | 'plus' @@ -2313,6 +2350,7 @@ export type Valkyrie = | 'prohibited' | 'puzzle_piece' | 'quote' + | 'receipt' | 'rectangle_p' | 'redo' | 'repeat_once' @@ -2324,6 +2362,7 @@ export type Valkyrie = | 'shield_plus' | 'shield_xmark' | 'shield' + | 'shopping_cart' | 'shuffle' | 'sidebar_left' | 'sidebar_right' @@ -2368,6 +2407,7 @@ export type Valkyrie = | 'volume_2' | 'volume_3' | 'volume_slash' + | 'wallet' | 'wallpaper' | 'waveform' | 'webhooks_clock' @@ -2572,6 +2612,7 @@ export const valkyrieSet = [ viMicrophone, viMin, viMoon, + viMoped, viMusicPause, viMusic, viNetwork, @@ -2609,6 +2650,7 @@ export const valkyrieSet = [ viPhoneOffice, viPhoneVolume, viPhone, + viPlateUtensils, viPlayPause, viPlay, viPlus, @@ -2617,6 +2659,7 @@ export const valkyrieSet = [ viProhibited, viPuzzlePiece, viQuote, + viReceipt, viRectangleP, viRedo, viRepeatOnce, @@ -2628,6 +2671,7 @@ export const valkyrieSet = [ viShieldPlus, viShieldXmark, viShield, + viShoppingCart, viShuffle, viSidebarLeft, viSidebarRight, @@ -2672,6 +2716,7 @@ export const valkyrieSet = [ viVolume2, viVolume3, viVolumeSlash, + viWallet, viWallpaper, viWaveform, viWebhooksClock,