Andrew Wallo 9 месяцев назад
Родитель
Сommit
f1df2cb659

+ 19
- 0
app/Filament/Company/Resources/Sales/InvoiceResource.php Просмотреть файл

@@ -315,6 +315,9 @@ class InvoiceResource extends Resource
315 315
                 Tables\Columns\TextColumn::make('invoice_number')
316 316
                     ->label('Number')
317 317
                     ->searchable()
318
+                    ->description(function (Invoice $record) {
319
+                        return $record->source_type?->getLabel();
320
+                    })
318 321
                     ->sortable(),
319 322
                 Tables\Columns\TextColumn::make('client.name')
320 323
                     ->sortable()
@@ -347,6 +350,22 @@ class InvoiceResource extends Resource
347 350
                         true: fn (Builder $query) => $query->whereHas('payments'),
348 351
                         false: fn (Builder $query) => $query->whereDoesntHave('payments'),
349 352
                     ),
353
+                Tables\Filters\SelectFilter::make('source_type')
354
+                    ->label('Source Type')
355
+                    ->options([
356
+                        DocumentType::Estimate->value => DocumentType::Estimate->getLabel(),
357
+                        DocumentType::RecurringInvoice->value => DocumentType::RecurringInvoice->getLabel(),
358
+                    ])
359
+                    ->native(false)
360
+                    ->query(function (Builder $query, array $data) {
361
+                        $sourceType = $data['value'];
362
+
363
+                        return match ($sourceType) {
364
+                            DocumentType::Estimate->value => $query->whereNotNull('estimate_id'),
365
+                            DocumentType::RecurringInvoice->value => $query->whereNotNull('recurring_invoice_id'),
366
+                            default => $query,
367
+                        };
368
+                    }),
350 369
                 DateRangeFilter::make('date')
351 370
                     ->fromLabel('From Date')
352 371
                     ->untilLabel('To Date')

+ 11
- 2
app/Filament/Company/Resources/Sales/RecurringInvoiceResource/Pages/ViewRecurringInvoice.php Просмотреть файл

@@ -4,7 +4,7 @@ namespace App\Filament\Company\Resources\Sales\RecurringInvoiceResource\Pages;
4 4
 
5 5
 use App\Enums\Accounting\DocumentType;
6 6
 use App\Filament\Company\Resources\Sales\ClientResource;
7
-use App\Filament\Company\Resources\Sales\InvoiceResource;
7
+use App\Filament\Company\Resources\Sales\InvoiceResource\Pages\ListInvoices;
8 8
 use App\Filament\Company\Resources\Sales\RecurringInvoiceResource;
9 9
 use App\Filament\Infolists\Components\DocumentPreview;
10 10
 use App\Models\Accounting\RecurringInvoice;
@@ -108,7 +108,16 @@ class ViewRecurringInvoice extends ViewRecord
108 108
                                     ->color('primary')
109 109
                                     ->weight(FontWeight::SemiBold)
110 110
                                     ->suffix(fn (RecurringInvoice $record) => Str::of(' invoice')->plural($record->occurrences_count))
111
-                                    ->url(static fn (RecurringInvoice $record) => InvoiceResource::getUrl()),
111
+                                    ->url(static fn (RecurringInvoice $record) => ListInvoices::getUrl([
112
+                                        'tableFilters' => [
113
+                                            'client' => [
114
+                                                'value' => $record->client_id,
115
+                                            ],
116
+                                            'source_type' => [
117
+                                                'value' => DocumentType::RecurringInvoice->value,
118
+                                            ],
119
+                                        ],
120
+                                    ]), true),
112 121
                                 TextEntry::make('end_date')
113 122
                                     ->label('Ends On')
114 123
                                     ->date()

+ 11
- 0
app/Models/Accounting/Invoice.php Просмотреть файл

@@ -129,6 +129,17 @@ class Invoice extends Document
129 129
             ->where('type', TransactionType::Journal);
130 130
     }
131 131
 
132
+    protected function sourceType(): Attribute
133
+    {
134
+        return Attribute::get(function () {
135
+            return match (true) {
136
+                $this->estimate_id !== null => DocumentType::Estimate,
137
+                $this->recurring_invoice_id !== null => DocumentType::RecurringInvoice,
138
+                default => null,
139
+            };
140
+        });
141
+    }
142
+
132 143
     public function documentType(): DocumentType
133 144
     {
134 145
         return DocumentType::Invoice;

+ 65
- 65
composer.lock Просмотреть файл

@@ -497,16 +497,16 @@
497 497
         },
498 498
         {
499 499
             "name": "aws/aws-sdk-php",
500
-            "version": "3.336.9",
500
+            "version": "3.336.13",
501 501
             "source": {
502 502
                 "type": "git",
503 503
                 "url": "https://github.com/aws/aws-sdk-php.git",
504
-                "reference": "bbc76138ed66f593dc2ae529c95fe1f794e6d77f"
504
+                "reference": "dcb43c029ca74c52fa03a739341cc77086296a83"
505 505
             },
506 506
             "dist": {
507 507
                 "type": "zip",
508
-                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bbc76138ed66f593dc2ae529c95fe1f794e6d77f",
509
-                "reference": "bbc76138ed66f593dc2ae529c95fe1f794e6d77f",
508
+                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/dcb43c029ca74c52fa03a739341cc77086296a83",
509
+                "reference": "dcb43c029ca74c52fa03a739341cc77086296a83",
510 510
                 "shasum": ""
511 511
             },
512 512
             "require": {
@@ -589,9 +589,9 @@
589 589
             "support": {
590 590
                 "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
591 591
                 "issues": "https://github.com/aws/aws-sdk-php/issues",
592
-                "source": "https://github.com/aws/aws-sdk-php/tree/3.336.9"
592
+                "source": "https://github.com/aws/aws-sdk-php/tree/3.336.13"
593 593
             },
594
-            "time": "2025-01-06T19:06:42+00:00"
594
+            "time": "2025-01-10T19:04:25+00:00"
595 595
         },
596 596
         {
597 597
             "name": "aws/aws-sdk-php-laravel",
@@ -1735,16 +1735,16 @@
1735 1735
         },
1736 1736
         {
1737 1737
             "name": "filament/actions",
1738
-            "version": "v3.2.132",
1738
+            "version": "v3.2.133",
1739 1739
             "source": {
1740 1740
                 "type": "git",
1741 1741
                 "url": "https://github.com/filamentphp/actions.git",
1742
-                "reference": "887b9e5552658a37098e7a279196a4d188d94f50"
1742
+                "reference": "33464f1583217b5eb12364b617b27abe5315eb88"
1743 1743
             },
1744 1744
             "dist": {
1745 1745
                 "type": "zip",
1746
-                "url": "https://api.github.com/repos/filamentphp/actions/zipball/887b9e5552658a37098e7a279196a4d188d94f50",
1747
-                "reference": "887b9e5552658a37098e7a279196a4d188d94f50",
1746
+                "url": "https://api.github.com/repos/filamentphp/actions/zipball/33464f1583217b5eb12364b617b27abe5315eb88",
1747
+                "reference": "33464f1583217b5eb12364b617b27abe5315eb88",
1748 1748
                 "shasum": ""
1749 1749
             },
1750 1750
             "require": {
@@ -1756,7 +1756,7 @@
1756 1756
                 "illuminate/contracts": "^10.45|^11.0",
1757 1757
                 "illuminate/database": "^10.45|^11.0",
1758 1758
                 "illuminate/support": "^10.45|^11.0",
1759
-                "league/csv": "^9.14",
1759
+                "league/csv": "^9.16",
1760 1760
                 "openspout/openspout": "^4.23",
1761 1761
                 "php": "^8.1",
1762 1762
                 "spatie/laravel-package-tools": "^1.9"
@@ -1784,20 +1784,20 @@
1784 1784
                 "issues": "https://github.com/filamentphp/filament/issues",
1785 1785
                 "source": "https://github.com/filamentphp/filament"
1786 1786
             },
1787
-            "time": "2024-12-31T13:16:04+00:00"
1787
+            "time": "2025-01-10T12:47:49+00:00"
1788 1788
         },
1789 1789
         {
1790 1790
             "name": "filament/filament",
1791
-            "version": "v3.2.132",
1791
+            "version": "v3.2.133",
1792 1792
             "source": {
1793 1793
                 "type": "git",
1794 1794
                 "url": "https://github.com/filamentphp/panels.git",
1795
-                "reference": "54fcc0b883cc6622d1d9322d28c823ba6172f9ef"
1795
+                "reference": "74550888c1c79761218aece3c339ca0e0cc260e8"
1796 1796
             },
1797 1797
             "dist": {
1798 1798
                 "type": "zip",
1799
-                "url": "https://api.github.com/repos/filamentphp/panels/zipball/54fcc0b883cc6622d1d9322d28c823ba6172f9ef",
1800
-                "reference": "54fcc0b883cc6622d1d9322d28c823ba6172f9ef",
1799
+                "url": "https://api.github.com/repos/filamentphp/panels/zipball/74550888c1c79761218aece3c339ca0e0cc260e8",
1800
+                "reference": "74550888c1c79761218aece3c339ca0e0cc260e8",
1801 1801
                 "shasum": ""
1802 1802
             },
1803 1803
             "require": {
@@ -1849,20 +1849,20 @@
1849 1849
                 "issues": "https://github.com/filamentphp/filament/issues",
1850 1850
                 "source": "https://github.com/filamentphp/filament"
1851 1851
             },
1852
-            "time": "2024-12-31T13:16:24+00:00"
1852
+            "time": "2025-01-10T12:48:32+00:00"
1853 1853
         },
1854 1854
         {
1855 1855
             "name": "filament/forms",
1856
-            "version": "v3.2.132",
1856
+            "version": "v3.2.133",
1857 1857
             "source": {
1858 1858
                 "type": "git",
1859 1859
                 "url": "https://github.com/filamentphp/forms.git",
1860
-                "reference": "4abbf867f060483699f3cb8e1c1c8f4469b7980f"
1860
+                "reference": "20473c9eec7afa3ee618d2f86c7c449b3723d9fb"
1861 1861
             },
1862 1862
             "dist": {
1863 1863
                 "type": "zip",
1864
-                "url": "https://api.github.com/repos/filamentphp/forms/zipball/4abbf867f060483699f3cb8e1c1c8f4469b7980f",
1865
-                "reference": "4abbf867f060483699f3cb8e1c1c8f4469b7980f",
1864
+                "url": "https://api.github.com/repos/filamentphp/forms/zipball/20473c9eec7afa3ee618d2f86c7c449b3723d9fb",
1865
+                "reference": "20473c9eec7afa3ee618d2f86c7c449b3723d9fb",
1866 1866
                 "shasum": ""
1867 1867
             },
1868 1868
             "require": {
@@ -1905,20 +1905,20 @@
1905 1905
                 "issues": "https://github.com/filamentphp/filament/issues",
1906 1906
                 "source": "https://github.com/filamentphp/filament"
1907 1907
             },
1908
-            "time": "2024-12-31T13:16:06+00:00"
1908
+            "time": "2025-01-10T12:47:50+00:00"
1909 1909
         },
1910 1910
         {
1911 1911
             "name": "filament/infolists",
1912
-            "version": "v3.2.132",
1912
+            "version": "v3.2.133",
1913 1913
             "source": {
1914 1914
                 "type": "git",
1915 1915
                 "url": "https://github.com/filamentphp/infolists.git",
1916
-                "reference": "8c0344fc603085da8f385ed6a022aacbe3aa49fb"
1916
+                "reference": "d3ee1eb508561f2b101c69cdb45c309539948d86"
1917 1917
             },
1918 1918
             "dist": {
1919 1919
                 "type": "zip",
1920
-                "url": "https://api.github.com/repos/filamentphp/infolists/zipball/8c0344fc603085da8f385ed6a022aacbe3aa49fb",
1921
-                "reference": "8c0344fc603085da8f385ed6a022aacbe3aa49fb",
1920
+                "url": "https://api.github.com/repos/filamentphp/infolists/zipball/d3ee1eb508561f2b101c69cdb45c309539948d86",
1921
+                "reference": "d3ee1eb508561f2b101c69cdb45c309539948d86",
1922 1922
                 "shasum": ""
1923 1923
             },
1924 1924
             "require": {
@@ -1956,20 +1956,20 @@
1956 1956
                 "issues": "https://github.com/filamentphp/filament/issues",
1957 1957
                 "source": "https://github.com/filamentphp/filament"
1958 1958
             },
1959
-            "time": "2024-12-31T13:16:16+00:00"
1959
+            "time": "2025-01-10T12:48:11+00:00"
1960 1960
         },
1961 1961
         {
1962 1962
             "name": "filament/notifications",
1963
-            "version": "v3.2.132",
1963
+            "version": "v3.2.133",
1964 1964
             "source": {
1965 1965
                 "type": "git",
1966 1966
                 "url": "https://github.com/filamentphp/notifications.git",
1967
-                "reference": "c19df07c801c5550de0d30957c5a316f53019533"
1967
+                "reference": "16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64"
1968 1968
             },
1969 1969
             "dist": {
1970 1970
                 "type": "zip",
1971
-                "url": "https://api.github.com/repos/filamentphp/notifications/zipball/c19df07c801c5550de0d30957c5a316f53019533",
1972
-                "reference": "c19df07c801c5550de0d30957c5a316f53019533",
1971
+                "url": "https://api.github.com/repos/filamentphp/notifications/zipball/16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64",
1972
+                "reference": "16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64",
1973 1973
                 "shasum": ""
1974 1974
             },
1975 1975
             "require": {
@@ -2008,20 +2008,20 @@
2008 2008
                 "issues": "https://github.com/filamentphp/filament/issues",
2009 2009
                 "source": "https://github.com/filamentphp/filament"
2010 2010
             },
2011
-            "time": "2024-10-23T07:36:14+00:00"
2011
+            "time": "2025-01-10T12:48:23+00:00"
2012 2012
         },
2013 2013
         {
2014 2014
             "name": "filament/support",
2015
-            "version": "v3.2.132",
2015
+            "version": "v3.2.133",
2016 2016
             "source": {
2017 2017
                 "type": "git",
2018 2018
                 "url": "https://github.com/filamentphp/support.git",
2019
-                "reference": "0bd91d5b937b0ae50394a976ba5fed9506581943"
2019
+                "reference": "38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee"
2020 2020
             },
2021 2021
             "dist": {
2022 2022
                 "type": "zip",
2023
-                "url": "https://api.github.com/repos/filamentphp/support/zipball/0bd91d5b937b0ae50394a976ba5fed9506581943",
2024
-                "reference": "0bd91d5b937b0ae50394a976ba5fed9506581943",
2023
+                "url": "https://api.github.com/repos/filamentphp/support/zipball/38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee",
2024
+                "reference": "38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee",
2025 2025
                 "shasum": ""
2026 2026
             },
2027 2027
             "require": {
@@ -2067,20 +2067,20 @@
2067 2067
                 "issues": "https://github.com/filamentphp/filament/issues",
2068 2068
                 "source": "https://github.com/filamentphp/filament"
2069 2069
             },
2070
-            "time": "2024-12-31T13:16:28+00:00"
2070
+            "time": "2025-01-10T12:48:52+00:00"
2071 2071
         },
2072 2072
         {
2073 2073
             "name": "filament/tables",
2074
-            "version": "v3.2.132",
2074
+            "version": "v3.2.133",
2075 2075
             "source": {
2076 2076
                 "type": "git",
2077 2077
                 "url": "https://github.com/filamentphp/tables.git",
2078
-                "reference": "e34f63f89ef672f8e810c2e181665d718e84ff37"
2078
+                "reference": "6cbbea0bfd966ca2f26988c0fac4e02caebddf4a"
2079 2079
             },
2080 2080
             "dist": {
2081 2081
                 "type": "zip",
2082
-                "url": "https://api.github.com/repos/filamentphp/tables/zipball/e34f63f89ef672f8e810c2e181665d718e84ff37",
2083
-                "reference": "e34f63f89ef672f8e810c2e181665d718e84ff37",
2082
+                "url": "https://api.github.com/repos/filamentphp/tables/zipball/6cbbea0bfd966ca2f26988c0fac4e02caebddf4a",
2083
+                "reference": "6cbbea0bfd966ca2f26988c0fac4e02caebddf4a",
2084 2084
                 "shasum": ""
2085 2085
             },
2086 2086
             "require": {
@@ -2119,20 +2119,20 @@
2119 2119
                 "issues": "https://github.com/filamentphp/filament/issues",
2120 2120
                 "source": "https://github.com/filamentphp/filament"
2121 2121
             },
2122
-            "time": "2024-12-31T13:16:31+00:00"
2122
+            "time": "2025-01-10T12:48:48+00:00"
2123 2123
         },
2124 2124
         {
2125 2125
             "name": "filament/widgets",
2126
-            "version": "v3.2.132",
2126
+            "version": "v3.2.133",
2127 2127
             "source": {
2128 2128
                 "type": "git",
2129 2129
                 "url": "https://github.com/filamentphp/widgets.git",
2130
-                "reference": "869a419fe42e2cf1b9461f2d1e702e2fcad030ae"
2130
+                "reference": "9f6674daceced7d5045494d0bf7e1d2908ea439d"
2131 2131
             },
2132 2132
             "dist": {
2133 2133
                 "type": "zip",
2134
-                "url": "https://api.github.com/repos/filamentphp/widgets/zipball/869a419fe42e2cf1b9461f2d1e702e2fcad030ae",
2135
-                "reference": "869a419fe42e2cf1b9461f2d1e702e2fcad030ae",
2134
+                "url": "https://api.github.com/repos/filamentphp/widgets/zipball/9f6674daceced7d5045494d0bf7e1d2908ea439d",
2135
+                "reference": "9f6674daceced7d5045494d0bf7e1d2908ea439d",
2136 2136
                 "shasum": ""
2137 2137
             },
2138 2138
             "require": {
@@ -2163,7 +2163,7 @@
2163 2163
                 "issues": "https://github.com/filamentphp/filament/issues",
2164 2164
                 "source": "https://github.com/filamentphp/filament"
2165 2165
             },
2166
-            "time": "2024-12-17T13:03:07+00:00"
2166
+            "time": "2025-01-10T12:48:52+00:00"
2167 2167
         },
2168 2168
         {
2169 2169
             "name": "firebase/php-jwt",
@@ -3778,16 +3778,16 @@
3778 3778
         },
3779 3779
         {
3780 3780
             "name": "league/csv",
3781
-            "version": "9.20.1",
3781
+            "version": "9.21.0",
3782 3782
             "source": {
3783 3783
                 "type": "git",
3784 3784
                 "url": "https://github.com/thephpleague/csv.git",
3785
-                "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee"
3785
+                "reference": "72196d11ebba22d868954cb39c0c7346207430cc"
3786 3786
             },
3787 3787
             "dist": {
3788 3788
                 "type": "zip",
3789
-                "url": "https://api.github.com/repos/thephpleague/csv/zipball/491d1e79e973a7370c7571dc0fe4a7241f4936ee",
3790
-                "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee",
3789
+                "url": "https://api.github.com/repos/thephpleague/csv/zipball/72196d11ebba22d868954cb39c0c7346207430cc",
3790
+                "reference": "72196d11ebba22d868954cb39c0c7346207430cc",
3791 3791
                 "shasum": ""
3792 3792
             },
3793 3793
             "require": {
@@ -3861,7 +3861,7 @@
3861 3861
                     "type": "github"
3862 3862
                 }
3863 3863
             ],
3864
-            "time": "2024-12-18T10:11:15+00:00"
3864
+            "time": "2025-01-08T19:27:58+00:00"
3865 3865
         },
3866 3866
         {
3867 3867
             "name": "league/flysystem",
@@ -4741,12 +4741,12 @@
4741 4741
             "version": "3.8.4",
4742 4742
             "source": {
4743 4743
                 "type": "git",
4744
-                "url": "https://github.com/briannesbitt/Carbon.git",
4744
+                "url": "https://github.com/CarbonPHP/carbon.git",
4745 4745
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
4746 4746
             },
4747 4747
             "dist": {
4748 4748
                 "type": "zip",
4749
-                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58",
4749
+                "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58",
4750 4750
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
4751 4751
                 "shasum": ""
4752 4752
             },
@@ -5137,16 +5137,16 @@
5137 5137
         },
5138 5138
         {
5139 5139
             "name": "openspout/openspout",
5140
-            "version": "v4.28.3",
5140
+            "version": "v4.28.4",
5141 5141
             "source": {
5142 5142
                 "type": "git",
5143 5143
                 "url": "https://github.com/openspout/openspout.git",
5144
-                "reference": "12b5eddcc230a97a9a67a722ad75c247e1a16750"
5144
+                "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15"
5145 5145
             },
5146 5146
             "dist": {
5147 5147
                 "type": "zip",
5148
-                "url": "https://api.github.com/repos/openspout/openspout/zipball/12b5eddcc230a97a9a67a722ad75c247e1a16750",
5149
-                "reference": "12b5eddcc230a97a9a67a722ad75c247e1a16750",
5148
+                "url": "https://api.github.com/repos/openspout/openspout/zipball/68d58235c7c1164b3d231b798975b9b0b2b79b15",
5149
+                "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15",
5150 5150
                 "shasum": ""
5151 5151
             },
5152 5152
             "require": {
@@ -5160,13 +5160,13 @@
5160 5160
             },
5161 5161
             "require-dev": {
5162 5162
                 "ext-zlib": "*",
5163
-                "friendsofphp/php-cs-fixer": "^3.65.0",
5164
-                "infection/infection": "^0.29.8",
5163
+                "friendsofphp/php-cs-fixer": "^3.66.1",
5164
+                "infection/infection": "^0.29.10",
5165 5165
                 "phpbench/phpbench": "^1.3.1",
5166
-                "phpstan/phpstan": "^2.0.3",
5167
-                "phpstan/phpstan-phpunit": "^2.0.1",
5166
+                "phpstan/phpstan": "^2.1.1",
5167
+                "phpstan/phpstan-phpunit": "^2.0.3",
5168 5168
                 "phpstan/phpstan-strict-rules": "^2",
5169
-                "phpunit/phpunit": "^11.5.0"
5169
+                "phpunit/phpunit": "^11.5.2"
5170 5170
             },
5171 5171
             "suggest": {
5172 5172
                 "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
@@ -5214,7 +5214,7 @@
5214 5214
             ],
5215 5215
             "support": {
5216 5216
                 "issues": "https://github.com/openspout/openspout/issues",
5217
-                "source": "https://github.com/openspout/openspout/tree/v4.28.3"
5217
+                "source": "https://github.com/openspout/openspout/tree/v4.28.4"
5218 5218
             },
5219 5219
             "funding": [
5220 5220
                 {
@@ -5226,7 +5226,7 @@
5226 5226
                     "type": "github"
5227 5227
                 }
5228 5228
             ],
5229
-            "time": "2024-12-17T11:28:11+00:00"
5229
+            "time": "2025-01-07T11:48:34+00:00"
5230 5230
         },
5231 5231
         {
5232 5232
             "name": "paragonie/constant_time_encoding",

+ 100
- 100
package-lock.json Просмотреть файл

@@ -575,9 +575,9 @@
575 575
             }
576 576
         },
577 577
         "node_modules/@rollup/rollup-android-arm-eabi": {
578
-            "version": "4.30.0",
579
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.30.0.tgz",
580
-            "integrity": "sha512-qFcFto9figFLz2g25DxJ1WWL9+c91fTxnGuwhToCl8BaqDsDYMl/kOnBXAyAqkkzAWimYMSWNPWEjt+ADAHuoQ==",
578
+            "version": "4.30.1",
579
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.30.1.tgz",
580
+            "integrity": "sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==",
581 581
             "cpu": [
582 582
                 "arm"
583 583
             ],
@@ -589,9 +589,9 @@
589 589
             ]
590 590
         },
591 591
         "node_modules/@rollup/rollup-android-arm64": {
592
-            "version": "4.30.0",
593
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.30.0.tgz",
594
-            "integrity": "sha512-vqrQdusvVl7dthqNjWCL043qelBK+gv9v3ZiqdxgaJvmZyIAAXMjeGVSqZynKq69T7062T5VrVTuikKSAAVP6A==",
592
+            "version": "4.30.1",
593
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.30.1.tgz",
594
+            "integrity": "sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==",
595 595
             "cpu": [
596 596
                 "arm64"
597 597
             ],
@@ -603,9 +603,9 @@
603 603
             ]
604 604
         },
605 605
         "node_modules/@rollup/rollup-darwin-arm64": {
606
-            "version": "4.30.0",
607
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.30.0.tgz",
608
-            "integrity": "sha512-617pd92LhdA9+wpixnzsyhVft3szYiN16aNUMzVkf2N+yAk8UXY226Bfp36LvxYTUt7MO/ycqGFjQgJ0wlMaWQ==",
606
+            "version": "4.30.1",
607
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.30.1.tgz",
608
+            "integrity": "sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==",
609 609
             "cpu": [
610 610
                 "arm64"
611 611
             ],
@@ -617,9 +617,9 @@
617 617
             ]
618 618
         },
619 619
         "node_modules/@rollup/rollup-darwin-x64": {
620
-            "version": "4.30.0",
621
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.30.0.tgz",
622
-            "integrity": "sha512-Y3b4oDoaEhCypg8ajPqigKDcpi5ZZovemQl9Edpem0uNv6UUjXv7iySBpGIUTSs2ovWOzYpfw9EbFJXF/fJHWw==",
620
+            "version": "4.30.1",
621
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.30.1.tgz",
622
+            "integrity": "sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==",
623 623
             "cpu": [
624 624
                 "x64"
625 625
             ],
@@ -631,9 +631,9 @@
631 631
             ]
632 632
         },
633 633
         "node_modules/@rollup/rollup-freebsd-arm64": {
634
-            "version": "4.30.0",
635
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.30.0.tgz",
636
-            "integrity": "sha512-3REQJ4f90sFIBfa0BUokiCdrV/E4uIjhkWe1bMgCkhFXbf4D8YN6C4zwJL881GM818qVYE9BO3dGwjKhpo2ABA==",
634
+            "version": "4.30.1",
635
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.30.1.tgz",
636
+            "integrity": "sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==",
637 637
             "cpu": [
638 638
                 "arm64"
639 639
             ],
@@ -645,9 +645,9 @@
645 645
             ]
646 646
         },
647 647
         "node_modules/@rollup/rollup-freebsd-x64": {
648
-            "version": "4.30.0",
649
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.30.0.tgz",
650
-            "integrity": "sha512-ZtY3Y8icbe3Cc+uQicsXG5L+CRGUfLZjW6j2gn5ikpltt3Whqjfo5mkyZ86UiuHF9Q3ZsaQeW7YswlHnN+lAcg==",
648
+            "version": "4.30.1",
649
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.30.1.tgz",
650
+            "integrity": "sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==",
651 651
             "cpu": [
652 652
                 "x64"
653 653
             ],
@@ -659,9 +659,9 @@
659 659
             ]
660 660
         },
661 661
         "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
662
-            "version": "4.30.0",
663
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.30.0.tgz",
664
-            "integrity": "sha512-bsPGGzfiHXMhQGuFGpmo2PyTwcrh2otL6ycSZAFTESviUoBOuxF7iBbAL5IJXc/69peXl5rAtbewBFeASZ9O0g==",
662
+            "version": "4.30.1",
663
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.30.1.tgz",
664
+            "integrity": "sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==",
665 665
             "cpu": [
666 666
                 "arm"
667 667
             ],
@@ -673,9 +673,9 @@
673 673
             ]
674 674
         },
675 675
         "node_modules/@rollup/rollup-linux-arm-musleabihf": {
676
-            "version": "4.30.0",
677
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.30.0.tgz",
678
-            "integrity": "sha512-kvyIECEhs2DrrdfQf++maCWJIQ974EI4txlz1nNSBaCdtf7i5Xf1AQCEJWOC5rEBisdaMFFnOWNLYt7KpFqy5A==",
676
+            "version": "4.30.1",
677
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.30.1.tgz",
678
+            "integrity": "sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==",
679 679
             "cpu": [
680 680
                 "arm"
681 681
             ],
@@ -687,9 +687,9 @@
687 687
             ]
688 688
         },
689 689
         "node_modules/@rollup/rollup-linux-arm64-gnu": {
690
-            "version": "4.30.0",
691
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.30.0.tgz",
692
-            "integrity": "sha512-CFE7zDNrokaotXu+shwIrmWrFxllg79vciH4E/zeK7NitVuWEaXRzS0mFfFvyhZfn8WfVOG/1E9u8/DFEgK7WQ==",
690
+            "version": "4.30.1",
691
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.30.1.tgz",
692
+            "integrity": "sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==",
693 693
             "cpu": [
694 694
                 "arm64"
695 695
             ],
@@ -701,9 +701,9 @@
701 701
             ]
702 702
         },
703 703
         "node_modules/@rollup/rollup-linux-arm64-musl": {
704
-            "version": "4.30.0",
705
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.30.0.tgz",
706
-            "integrity": "sha512-MctNTBlvMcIBP0t8lV/NXiUwFg9oK5F79CxLU+a3xgrdJjfBLVIEHSAjQ9+ipofN2GKaMLnFFXLltg1HEEPaGQ==",
704
+            "version": "4.30.1",
705
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.30.1.tgz",
706
+            "integrity": "sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==",
707 707
             "cpu": [
708 708
                 "arm64"
709 709
             ],
@@ -715,9 +715,9 @@
715 715
             ]
716 716
         },
717 717
         "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
718
-            "version": "4.30.0",
719
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.30.0.tgz",
720
-            "integrity": "sha512-fBpoYwLEPivL3q368+gwn4qnYnr7GVwM6NnMo8rJ4wb0p/Y5lg88vQRRP077gf+tc25akuqd+1Sxbn9meODhwA==",
718
+            "version": "4.30.1",
719
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.30.1.tgz",
720
+            "integrity": "sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==",
721 721
             "cpu": [
722 722
                 "loong64"
723 723
             ],
@@ -729,9 +729,9 @@
729 729
             ]
730 730
         },
731 731
         "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
732
-            "version": "4.30.0",
733
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.30.0.tgz",
734
-            "integrity": "sha512-1hiHPV6dUaqIMXrIjN+vgJqtfkLpqHS1Xsg0oUfUVD98xGp1wX89PIXgDF2DWra1nxAd8dfE0Dk59MyeKaBVAw==",
732
+            "version": "4.30.1",
733
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.30.1.tgz",
734
+            "integrity": "sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==",
735 735
             "cpu": [
736 736
                 "ppc64"
737 737
             ],
@@ -743,9 +743,9 @@
743 743
             ]
744 744
         },
745 745
         "node_modules/@rollup/rollup-linux-riscv64-gnu": {
746
-            "version": "4.30.0",
747
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.30.0.tgz",
748
-            "integrity": "sha512-U0xcC80SMpEbvvLw92emHrNjlS3OXjAM0aVzlWfar6PR0ODWCTQtKeeB+tlAPGfZQXicv1SpWwRz9Hyzq3Jx3g==",
746
+            "version": "4.30.1",
747
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.30.1.tgz",
748
+            "integrity": "sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==",
749 749
             "cpu": [
750 750
                 "riscv64"
751 751
             ],
@@ -757,9 +757,9 @@
757 757
             ]
758 758
         },
759 759
         "node_modules/@rollup/rollup-linux-s390x-gnu": {
760
-            "version": "4.30.0",
761
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.30.0.tgz",
762
-            "integrity": "sha512-VU/P/IODrNPasgZDLIFJmMiLGez+BN11DQWfTVlViJVabyF3JaeaJkP6teI8760f18BMGCQOW9gOmuzFaI1pUw==",
760
+            "version": "4.30.1",
761
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.30.1.tgz",
762
+            "integrity": "sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==",
763 763
             "cpu": [
764 764
                 "s390x"
765 765
             ],
@@ -771,9 +771,9 @@
771 771
             ]
772 772
         },
773 773
         "node_modules/@rollup/rollup-linux-x64-gnu": {
774
-            "version": "4.30.0",
775
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.30.0.tgz",
776
-            "integrity": "sha512-laQVRvdbKmjXuFA3ZiZj7+U24FcmoPlXEi2OyLfbpY2MW1oxLt9Au8q9eHd0x6Pw/Kw4oe9gwVXWwIf2PVqblg==",
774
+            "version": "4.30.1",
775
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.30.1.tgz",
776
+            "integrity": "sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==",
777 777
             "cpu": [
778 778
                 "x64"
779 779
             ],
@@ -785,9 +785,9 @@
785 785
             ]
786 786
         },
787 787
         "node_modules/@rollup/rollup-linux-x64-musl": {
788
-            "version": "4.30.0",
789
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.30.0.tgz",
790
-            "integrity": "sha512-3wzKzduS7jzxqcOvy/ocU/gMR3/QrHEFLge5CD7Si9fyHuoXcidyYZ6jyx8OPYmCcGm3uKTUl+9jUSAY74Ln5A==",
788
+            "version": "4.30.1",
789
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.30.1.tgz",
790
+            "integrity": "sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==",
791 791
             "cpu": [
792 792
                 "x64"
793 793
             ],
@@ -799,9 +799,9 @@
799 799
             ]
800 800
         },
801 801
         "node_modules/@rollup/rollup-win32-arm64-msvc": {
802
-            "version": "4.30.0",
803
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.30.0.tgz",
804
-            "integrity": "sha512-jROwnI1+wPyuv696rAFHp5+6RFhXGGwgmgSfzE8e4xfit6oLRg7GyMArVUoM3ChS045OwWr9aTnU+2c1UdBMyw==",
802
+            "version": "4.30.1",
803
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.30.1.tgz",
804
+            "integrity": "sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==",
805 805
             "cpu": [
806 806
                 "arm64"
807 807
             ],
@@ -813,9 +813,9 @@
813 813
             ]
814 814
         },
815 815
         "node_modules/@rollup/rollup-win32-ia32-msvc": {
816
-            "version": "4.30.0",
817
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.30.0.tgz",
818
-            "integrity": "sha512-duzweyup5WELhcXx5H1jokpr13i3BV9b48FMiikYAwk/MT1LrMYYk2TzenBd0jj4ivQIt58JWSxc19y4SvLP4g==",
816
+            "version": "4.30.1",
817
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.30.1.tgz",
818
+            "integrity": "sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==",
819 819
             "cpu": [
820 820
                 "ia32"
821 821
             ],
@@ -827,9 +827,9 @@
827 827
             ]
828 828
         },
829 829
         "node_modules/@rollup/rollup-win32-x64-msvc": {
830
-            "version": "4.30.0",
831
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.30.0.tgz",
832
-            "integrity": "sha512-DYvxS0M07PvgvavMIybCOBYheyrqlui6ZQBHJs6GqduVzHSZ06TPPvlfvnYstjODHQ8UUXFwt5YE+h0jFI8kwg==",
830
+            "version": "4.30.1",
831
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.30.1.tgz",
832
+            "integrity": "sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==",
833 833
             "cpu": [
834 834
                 "x64"
835 835
             ],
@@ -841,22 +841,22 @@
841 841
             ]
842 842
         },
843 843
         "node_modules/@tailwindcss/forms": {
844
-            "version": "0.5.9",
845
-            "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.9.tgz",
846
-            "integrity": "sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==",
844
+            "version": "0.5.10",
845
+            "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz",
846
+            "integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==",
847 847
             "dev": true,
848 848
             "license": "MIT",
849 849
             "dependencies": {
850 850
                 "mini-svg-data-uri": "^1.2.3"
851 851
             },
852 852
             "peerDependencies": {
853
-                "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20"
853
+                "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1"
854 854
             }
855 855
         },
856 856
         "node_modules/@tailwindcss/typography": {
857
-            "version": "0.5.15",
858
-            "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.15.tgz",
859
-            "integrity": "sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==",
857
+            "version": "0.5.16",
858
+            "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz",
859
+            "integrity": "sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==",
860 860
             "dev": true,
861 861
             "license": "MIT",
862 862
             "dependencies": {
@@ -866,7 +866,7 @@
866 866
                 "postcss-selector-parser": "6.0.10"
867 867
             },
868 868
             "peerDependencies": {
869
-                "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20"
869
+                "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
870 870
             }
871 871
         },
872 872
         "node_modules/@types/estree": {
@@ -1031,9 +1031,9 @@
1031 1031
             }
1032 1032
         },
1033 1033
         "node_modules/browserslist": {
1034
-            "version": "4.24.3",
1035
-            "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
1036
-            "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
1034
+            "version": "4.24.4",
1035
+            "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
1036
+            "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
1037 1037
             "dev": true,
1038 1038
             "funding": [
1039 1039
                 {
@@ -1074,9 +1074,9 @@
1074 1074
             }
1075 1075
         },
1076 1076
         "node_modules/caniuse-lite": {
1077
-            "version": "1.0.30001690",
1078
-            "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
1079
-            "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
1077
+            "version": "1.0.30001692",
1078
+            "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz",
1079
+            "integrity": "sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==",
1080 1080
             "dev": true,
1081 1081
             "funding": [
1082 1082
                 {
@@ -1235,9 +1235,9 @@
1235 1235
             "license": "MIT"
1236 1236
         },
1237 1237
         "node_modules/electron-to-chromium": {
1238
-            "version": "1.5.77",
1239
-            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.77.tgz",
1240
-            "integrity": "sha512-AnJSrt5JpRVgY6dgd5yccguLc5A7oMSF0Kt3fcW+Hp5WTuFbl5upeSFZbMZYy2o7jhmIhU8Ekrd82GhyXUqUUg==",
1238
+            "version": "1.5.80",
1239
+            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.80.tgz",
1240
+            "integrity": "sha512-LTrKpW0AqIuHwmlVNV+cjFYTnXtM9K37OGhpe0ZI10ScPSxqVSryZHIY3WnCS5NSYbBODRTZyhRMS2h5FAEqAw==",
1241 1241
             "dev": true,
1242 1242
             "license": "ISC"
1243 1243
         },
@@ -2242,9 +2242,9 @@
2242 2242
             }
2243 2243
         },
2244 2244
         "node_modules/rollup": {
2245
-            "version": "4.30.0",
2246
-            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.30.0.tgz",
2247
-            "integrity": "sha512-sDnr1pcjTgUT69qBksNF1N1anwfbyYG6TBQ22b03bII8EdiUQ7J0TlozVaTMjT/eEJAO49e1ndV7t+UZfL1+vA==",
2245
+            "version": "4.30.1",
2246
+            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.30.1.tgz",
2247
+            "integrity": "sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==",
2248 2248
             "dev": true,
2249 2249
             "license": "MIT",
2250 2250
             "dependencies": {
@@ -2258,25 +2258,25 @@
2258 2258
                 "npm": ">=8.0.0"
2259 2259
             },
2260 2260
             "optionalDependencies": {
2261
-                "@rollup/rollup-android-arm-eabi": "4.30.0",
2262
-                "@rollup/rollup-android-arm64": "4.30.0",
2263
-                "@rollup/rollup-darwin-arm64": "4.30.0",
2264
-                "@rollup/rollup-darwin-x64": "4.30.0",
2265
-                "@rollup/rollup-freebsd-arm64": "4.30.0",
2266
-                "@rollup/rollup-freebsd-x64": "4.30.0",
2267
-                "@rollup/rollup-linux-arm-gnueabihf": "4.30.0",
2268
-                "@rollup/rollup-linux-arm-musleabihf": "4.30.0",
2269
-                "@rollup/rollup-linux-arm64-gnu": "4.30.0",
2270
-                "@rollup/rollup-linux-arm64-musl": "4.30.0",
2271
-                "@rollup/rollup-linux-loongarch64-gnu": "4.30.0",
2272
-                "@rollup/rollup-linux-powerpc64le-gnu": "4.30.0",
2273
-                "@rollup/rollup-linux-riscv64-gnu": "4.30.0",
2274
-                "@rollup/rollup-linux-s390x-gnu": "4.30.0",
2275
-                "@rollup/rollup-linux-x64-gnu": "4.30.0",
2276
-                "@rollup/rollup-linux-x64-musl": "4.30.0",
2277
-                "@rollup/rollup-win32-arm64-msvc": "4.30.0",
2278
-                "@rollup/rollup-win32-ia32-msvc": "4.30.0",
2279
-                "@rollup/rollup-win32-x64-msvc": "4.30.0",
2261
+                "@rollup/rollup-android-arm-eabi": "4.30.1",
2262
+                "@rollup/rollup-android-arm64": "4.30.1",
2263
+                "@rollup/rollup-darwin-arm64": "4.30.1",
2264
+                "@rollup/rollup-darwin-x64": "4.30.1",
2265
+                "@rollup/rollup-freebsd-arm64": "4.30.1",
2266
+                "@rollup/rollup-freebsd-x64": "4.30.1",
2267
+                "@rollup/rollup-linux-arm-gnueabihf": "4.30.1",
2268
+                "@rollup/rollup-linux-arm-musleabihf": "4.30.1",
2269
+                "@rollup/rollup-linux-arm64-gnu": "4.30.1",
2270
+                "@rollup/rollup-linux-arm64-musl": "4.30.1",
2271
+                "@rollup/rollup-linux-loongarch64-gnu": "4.30.1",
2272
+                "@rollup/rollup-linux-powerpc64le-gnu": "4.30.1",
2273
+                "@rollup/rollup-linux-riscv64-gnu": "4.30.1",
2274
+                "@rollup/rollup-linux-s390x-gnu": "4.30.1",
2275
+                "@rollup/rollup-linux-x64-gnu": "4.30.1",
2276
+                "@rollup/rollup-linux-x64-musl": "4.30.1",
2277
+                "@rollup/rollup-win32-arm64-msvc": "4.30.1",
2278
+                "@rollup/rollup-win32-ia32-msvc": "4.30.1",
2279
+                "@rollup/rollup-win32-x64-msvc": "4.30.1",
2280 2280
                 "fsevents": "~2.3.2"
2281 2281
             }
2282 2282
         },
@@ -2586,9 +2586,9 @@
2586 2586
             "license": "Apache-2.0"
2587 2587
         },
2588 2588
         "node_modules/update-browserslist-db": {
2589
-            "version": "1.1.1",
2590
-            "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
2591
-            "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
2589
+            "version": "1.1.2",
2590
+            "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz",
2591
+            "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
2592 2592
             "dev": true,
2593 2593
             "funding": [
2594 2594
                 {
@@ -2607,7 +2607,7 @@
2607 2607
             "license": "MIT",
2608 2608
             "dependencies": {
2609 2609
                 "escalade": "^3.2.0",
2610
-                "picocolors": "^1.1.0"
2610
+                "picocolors": "^1.1.1"
2611 2611
             },
2612 2612
             "bin": {
2613 2613
                 "update-browserslist-db": "cli.js"

Загрузка…
Отмена
Сохранить