Skip to content

Commit

Permalink
Replace blade icons (#214)
Browse files Browse the repository at this point in the history
* 🐛 Fix Authentication process with Pipeline

* Replace heroicons by untitledui icons

* Fix analytics

* fix code formatting

---------

Co-authored-by: mckenziearts <[email protected]>
  • Loading branch information
mckenziearts and mckenziearts authored Jul 23, 2023
1 parent 02d50be commit a0997fb
Show file tree
Hide file tree
Showing 115 changed files with 1,180 additions and 545 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"laravel/helpers": "^1.4.1",
"livewire/livewire": "^2.10",
"maatwebsite/excel": "^3.1",
"mckenziearts/blade-untitledui-icons": "^1.2",
"milon/barcode": "^9.0|^10.0",
"moneyphp/money": "^3.3",
"pragmarx/google2fa": "^8.0",
Expand Down
67 changes: 66 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/admin/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"php": "^8.1",
"danharrin/livewire-rate-limiting": "^0.3|^1.0",
"bacon/bacon-qr-code": "^2.0",
"blade-ui-kit/blade-heroicons": "^1.2",
"filament/notifications": "^2.17",
"illuminate/console": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
Expand All @@ -26,6 +25,7 @@
"laravel/helpers": "^1.4.1",
"livewire/livewire": "^2.10",
"maatwebsite/excel": "^3.1",
"mckenziearts/blade-untitledui-icons": "^1.2",
"milon/barcode": "^9.0|^10.0",
"moneyphp/money": "^3.3",
"pragmarx/google2fa": "^8.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/admin/config/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,42 +18,42 @@
[
'name' => 'General',
'description' => 'View and update your store information.',
'icon' => 'heroicon-o-cog',
'icon' => 'untitledui-sliders',
'route' => 'shopper.settings.shop',
'permission' => null,
],
[
'name' => 'Staff & permissions',
'description' => 'View and manage what staff can see or do in your store.',
'icon' => 'heroicon-o-users',
'icon' => 'untitledui-shield-separator',
'route' => 'shopper.settings.users',
'permission' => null,
],
[
'name' => 'Locations',
'description' => 'Manage the places you stock inventory and sell products.',
'icon' => 'heroicon-o-location-marker',
'icon' => 'untitledui-marker-pin-flag',
'route' => 'shopper.settings.inventories',
'permission' => null,
],
[
'name' => 'Analytics',
'description' => 'Get a better understanding of where your traffic is coming from.',
'icon' => 'heroicon-o-chart-bar',
'icon' => 'untitledui-pie-chart',
'route' => 'shopper.settings.analytics',
'permission' => null,
],
[
'name' => 'Payment methods',
'description' => 'Add different payment methods for your customers.',
'icon' => 'heroicon-o-credit-card',
'icon' => 'untitledui-coins-hand',
'route' => 'shopper.settings.payments',
'permission' => null,
],
[
'name' => 'Legal',
'description' => 'Manage your store\'s legal pages such as privacy, terms.',
'icon' => 'heroicon-o-lock-closed',
'icon' => 'untitledui-file-lock-02',
'route' => 'shopper.settings.legal',
'permission' => null,
],
Expand Down
1 change: 1 addition & 0 deletions packages/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "shopper",
"license": "MIT",
"scripts": {
"dev": "npm run development",
"development": "mix",
Expand Down
Loading

0 comments on commit a0997fb

Please sign in to comment.