Andrew Wallo 9 months ago
parent
commit
f1df2cb659

+ 19
- 0
app/Filament/Company/Resources/Sales/InvoiceResource.php View File

315
                 Tables\Columns\TextColumn::make('invoice_number')
315
                 Tables\Columns\TextColumn::make('invoice_number')
316
                     ->label('Number')
316
                     ->label('Number')
317
                     ->searchable()
317
                     ->searchable()
318
+                    ->description(function (Invoice $record) {
319
+                        return $record->source_type?->getLabel();
320
+                    })
318
                     ->sortable(),
321
                     ->sortable(),
319
                 Tables\Columns\TextColumn::make('client.name')
322
                 Tables\Columns\TextColumn::make('client.name')
320
                     ->sortable()
323
                     ->sortable()
347
                         true: fn (Builder $query) => $query->whereHas('payments'),
350
                         true: fn (Builder $query) => $query->whereHas('payments'),
348
                         false: fn (Builder $query) => $query->whereDoesntHave('payments'),
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
                 DateRangeFilter::make('date')
369
                 DateRangeFilter::make('date')
351
                     ->fromLabel('From Date')
370
                     ->fromLabel('From Date')
352
                     ->untilLabel('To Date')
371
                     ->untilLabel('To Date')

+ 11
- 2
app/Filament/Company/Resources/Sales/RecurringInvoiceResource/Pages/ViewRecurringInvoice.php View File

4
 
4
 
5
 use App\Enums\Accounting\DocumentType;
5
 use App\Enums\Accounting\DocumentType;
6
 use App\Filament\Company\Resources\Sales\ClientResource;
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
 use App\Filament\Company\Resources\Sales\RecurringInvoiceResource;
8
 use App\Filament\Company\Resources\Sales\RecurringInvoiceResource;
9
 use App\Filament\Infolists\Components\DocumentPreview;
9
 use App\Filament\Infolists\Components\DocumentPreview;
10
 use App\Models\Accounting\RecurringInvoice;
10
 use App\Models\Accounting\RecurringInvoice;
108
                                     ->color('primary')
108
                                     ->color('primary')
109
                                     ->weight(FontWeight::SemiBold)
109
                                     ->weight(FontWeight::SemiBold)
110
                                     ->suffix(fn (RecurringInvoice $record) => Str::of(' invoice')->plural($record->occurrences_count))
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
                                 TextEntry::make('end_date')
121
                                 TextEntry::make('end_date')
113
                                     ->label('Ends On')
122
                                     ->label('Ends On')
114
                                     ->date()
123
                                     ->date()

+ 11
- 0
app/Models/Accounting/Invoice.php View File

129
             ->where('type', TransactionType::Journal);
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
     public function documentType(): DocumentType
143
     public function documentType(): DocumentType
133
     {
144
     {
134
         return DocumentType::Invoice;
145
         return DocumentType::Invoice;

+ 65
- 65
composer.lock View File

497
         },
497
         },
498
         {
498
         {
499
             "name": "aws/aws-sdk-php",
499
             "name": "aws/aws-sdk-php",
500
-            "version": "3.336.9",
500
+            "version": "3.336.13",
501
             "source": {
501
             "source": {
502
                 "type": "git",
502
                 "type": "git",
503
                 "url": "https://github.com/aws/aws-sdk-php.git",
503
                 "url": "https://github.com/aws/aws-sdk-php.git",
504
-                "reference": "bbc76138ed66f593dc2ae529c95fe1f794e6d77f"
504
+                "reference": "dcb43c029ca74c52fa03a739341cc77086296a83"
505
             },
505
             },
506
             "dist": {
506
             "dist": {
507
                 "type": "zip",
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
                 "shasum": ""
510
                 "shasum": ""
511
             },
511
             },
512
             "require": {
512
             "require": {
589
             "support": {
589
             "support": {
590
                 "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
590
                 "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
591
                 "issues": "https://github.com/aws/aws-sdk-php/issues",
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
             "name": "aws/aws-sdk-php-laravel",
597
             "name": "aws/aws-sdk-php-laravel",
1735
         },
1735
         },
1736
         {
1736
         {
1737
             "name": "filament/actions",
1737
             "name": "filament/actions",
1738
-            "version": "v3.2.132",
1738
+            "version": "v3.2.133",
1739
             "source": {
1739
             "source": {
1740
                 "type": "git",
1740
                 "type": "git",
1741
                 "url": "https://github.com/filamentphp/actions.git",
1741
                 "url": "https://github.com/filamentphp/actions.git",
1742
-                "reference": "887b9e5552658a37098e7a279196a4d188d94f50"
1742
+                "reference": "33464f1583217b5eb12364b617b27abe5315eb88"
1743
             },
1743
             },
1744
             "dist": {
1744
             "dist": {
1745
                 "type": "zip",
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
                 "shasum": ""
1748
                 "shasum": ""
1749
             },
1749
             },
1750
             "require": {
1750
             "require": {
1756
                 "illuminate/contracts": "^10.45|^11.0",
1756
                 "illuminate/contracts": "^10.45|^11.0",
1757
                 "illuminate/database": "^10.45|^11.0",
1757
                 "illuminate/database": "^10.45|^11.0",
1758
                 "illuminate/support": "^10.45|^11.0",
1758
                 "illuminate/support": "^10.45|^11.0",
1759
-                "league/csv": "^9.14",
1759
+                "league/csv": "^9.16",
1760
                 "openspout/openspout": "^4.23",
1760
                 "openspout/openspout": "^4.23",
1761
                 "php": "^8.1",
1761
                 "php": "^8.1",
1762
                 "spatie/laravel-package-tools": "^1.9"
1762
                 "spatie/laravel-package-tools": "^1.9"
1784
                 "issues": "https://github.com/filamentphp/filament/issues",
1784
                 "issues": "https://github.com/filamentphp/filament/issues",
1785
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/filament",
1790
             "name": "filament/filament",
1791
-            "version": "v3.2.132",
1791
+            "version": "v3.2.133",
1792
             "source": {
1792
             "source": {
1793
                 "type": "git",
1793
                 "type": "git",
1794
                 "url": "https://github.com/filamentphp/panels.git",
1794
                 "url": "https://github.com/filamentphp/panels.git",
1795
-                "reference": "54fcc0b883cc6622d1d9322d28c823ba6172f9ef"
1795
+                "reference": "74550888c1c79761218aece3c339ca0e0cc260e8"
1796
             },
1796
             },
1797
             "dist": {
1797
             "dist": {
1798
                 "type": "zip",
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
                 "shasum": ""
1801
                 "shasum": ""
1802
             },
1802
             },
1803
             "require": {
1803
             "require": {
1849
                 "issues": "https://github.com/filamentphp/filament/issues",
1849
                 "issues": "https://github.com/filamentphp/filament/issues",
1850
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/forms",
1855
             "name": "filament/forms",
1856
-            "version": "v3.2.132",
1856
+            "version": "v3.2.133",
1857
             "source": {
1857
             "source": {
1858
                 "type": "git",
1858
                 "type": "git",
1859
                 "url": "https://github.com/filamentphp/forms.git",
1859
                 "url": "https://github.com/filamentphp/forms.git",
1860
-                "reference": "4abbf867f060483699f3cb8e1c1c8f4469b7980f"
1860
+                "reference": "20473c9eec7afa3ee618d2f86c7c449b3723d9fb"
1861
             },
1861
             },
1862
             "dist": {
1862
             "dist": {
1863
                 "type": "zip",
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
                 "shasum": ""
1866
                 "shasum": ""
1867
             },
1867
             },
1868
             "require": {
1868
             "require": {
1905
                 "issues": "https://github.com/filamentphp/filament/issues",
1905
                 "issues": "https://github.com/filamentphp/filament/issues",
1906
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/infolists",
1911
             "name": "filament/infolists",
1912
-            "version": "v3.2.132",
1912
+            "version": "v3.2.133",
1913
             "source": {
1913
             "source": {
1914
                 "type": "git",
1914
                 "type": "git",
1915
                 "url": "https://github.com/filamentphp/infolists.git",
1915
                 "url": "https://github.com/filamentphp/infolists.git",
1916
-                "reference": "8c0344fc603085da8f385ed6a022aacbe3aa49fb"
1916
+                "reference": "d3ee1eb508561f2b101c69cdb45c309539948d86"
1917
             },
1917
             },
1918
             "dist": {
1918
             "dist": {
1919
                 "type": "zip",
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
                 "shasum": ""
1922
                 "shasum": ""
1923
             },
1923
             },
1924
             "require": {
1924
             "require": {
1956
                 "issues": "https://github.com/filamentphp/filament/issues",
1956
                 "issues": "https://github.com/filamentphp/filament/issues",
1957
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/notifications",
1962
             "name": "filament/notifications",
1963
-            "version": "v3.2.132",
1963
+            "version": "v3.2.133",
1964
             "source": {
1964
             "source": {
1965
                 "type": "git",
1965
                 "type": "git",
1966
                 "url": "https://github.com/filamentphp/notifications.git",
1966
                 "url": "https://github.com/filamentphp/notifications.git",
1967
-                "reference": "c19df07c801c5550de0d30957c5a316f53019533"
1967
+                "reference": "16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64"
1968
             },
1968
             },
1969
             "dist": {
1969
             "dist": {
1970
                 "type": "zip",
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
                 "shasum": ""
1973
                 "shasum": ""
1974
             },
1974
             },
1975
             "require": {
1975
             "require": {
2008
                 "issues": "https://github.com/filamentphp/filament/issues",
2008
                 "issues": "https://github.com/filamentphp/filament/issues",
2009
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/support",
2014
             "name": "filament/support",
2015
-            "version": "v3.2.132",
2015
+            "version": "v3.2.133",
2016
             "source": {
2016
             "source": {
2017
                 "type": "git",
2017
                 "type": "git",
2018
                 "url": "https://github.com/filamentphp/support.git",
2018
                 "url": "https://github.com/filamentphp/support.git",
2019
-                "reference": "0bd91d5b937b0ae50394a976ba5fed9506581943"
2019
+                "reference": "38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee"
2020
             },
2020
             },
2021
             "dist": {
2021
             "dist": {
2022
                 "type": "zip",
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
                 "shasum": ""
2025
                 "shasum": ""
2026
             },
2026
             },
2027
             "require": {
2027
             "require": {
2067
                 "issues": "https://github.com/filamentphp/filament/issues",
2067
                 "issues": "https://github.com/filamentphp/filament/issues",
2068
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/tables",
2073
             "name": "filament/tables",
2074
-            "version": "v3.2.132",
2074
+            "version": "v3.2.133",
2075
             "source": {
2075
             "source": {
2076
                 "type": "git",
2076
                 "type": "git",
2077
                 "url": "https://github.com/filamentphp/tables.git",
2077
                 "url": "https://github.com/filamentphp/tables.git",
2078
-                "reference": "e34f63f89ef672f8e810c2e181665d718e84ff37"
2078
+                "reference": "6cbbea0bfd966ca2f26988c0fac4e02caebddf4a"
2079
             },
2079
             },
2080
             "dist": {
2080
             "dist": {
2081
                 "type": "zip",
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
                 "shasum": ""
2084
                 "shasum": ""
2085
             },
2085
             },
2086
             "require": {
2086
             "require": {
2119
                 "issues": "https://github.com/filamentphp/filament/issues",
2119
                 "issues": "https://github.com/filamentphp/filament/issues",
2120
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "filament/widgets",
2125
             "name": "filament/widgets",
2126
-            "version": "v3.2.132",
2126
+            "version": "v3.2.133",
2127
             "source": {
2127
             "source": {
2128
                 "type": "git",
2128
                 "type": "git",
2129
                 "url": "https://github.com/filamentphp/widgets.git",
2129
                 "url": "https://github.com/filamentphp/widgets.git",
2130
-                "reference": "869a419fe42e2cf1b9461f2d1e702e2fcad030ae"
2130
+                "reference": "9f6674daceced7d5045494d0bf7e1d2908ea439d"
2131
             },
2131
             },
2132
             "dist": {
2132
             "dist": {
2133
                 "type": "zip",
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
                 "shasum": ""
2136
                 "shasum": ""
2137
             },
2137
             },
2138
             "require": {
2138
             "require": {
2163
                 "issues": "https://github.com/filamentphp/filament/issues",
2163
                 "issues": "https://github.com/filamentphp/filament/issues",
2164
                 "source": "https://github.com/filamentphp/filament"
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
             "name": "firebase/php-jwt",
2169
             "name": "firebase/php-jwt",
3778
         },
3778
         },
3779
         {
3779
         {
3780
             "name": "league/csv",
3780
             "name": "league/csv",
3781
-            "version": "9.20.1",
3781
+            "version": "9.21.0",
3782
             "source": {
3782
             "source": {
3783
                 "type": "git",
3783
                 "type": "git",
3784
                 "url": "https://github.com/thephpleague/csv.git",
3784
                 "url": "https://github.com/thephpleague/csv.git",
3785
-                "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee"
3785
+                "reference": "72196d11ebba22d868954cb39c0c7346207430cc"
3786
             },
3786
             },
3787
             "dist": {
3787
             "dist": {
3788
                 "type": "zip",
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
                 "shasum": ""
3791
                 "shasum": ""
3792
             },
3792
             },
3793
             "require": {
3793
             "require": {
3861
                     "type": "github"
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
             "name": "league/flysystem",
3867
             "name": "league/flysystem",
4741
             "version": "3.8.4",
4741
             "version": "3.8.4",
4742
             "source": {
4742
             "source": {
4743
                 "type": "git",
4743
                 "type": "git",
4744
-                "url": "https://github.com/briannesbitt/Carbon.git",
4744
+                "url": "https://github.com/CarbonPHP/carbon.git",
4745
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
4745
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
4746
             },
4746
             },
4747
             "dist": {
4747
             "dist": {
4748
                 "type": "zip",
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
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
4750
                 "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
4751
                 "shasum": ""
4751
                 "shasum": ""
4752
             },
4752
             },
5137
         },
5137
         },
5138
         {
5138
         {
5139
             "name": "openspout/openspout",
5139
             "name": "openspout/openspout",
5140
-            "version": "v4.28.3",
5140
+            "version": "v4.28.4",
5141
             "source": {
5141
             "source": {
5142
                 "type": "git",
5142
                 "type": "git",
5143
                 "url": "https://github.com/openspout/openspout.git",
5143
                 "url": "https://github.com/openspout/openspout.git",
5144
-                "reference": "12b5eddcc230a97a9a67a722ad75c247e1a16750"
5144
+                "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15"
5145
             },
5145
             },
5146
             "dist": {
5146
             "dist": {
5147
                 "type": "zip",
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
                 "shasum": ""
5150
                 "shasum": ""
5151
             },
5151
             },
5152
             "require": {
5152
             "require": {
5160
             },
5160
             },
5161
             "require-dev": {
5161
             "require-dev": {
5162
                 "ext-zlib": "*",
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
                 "phpbench/phpbench": "^1.3.1",
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
                 "phpstan/phpstan-strict-rules": "^2",
5168
                 "phpstan/phpstan-strict-rules": "^2",
5169
-                "phpunit/phpunit": "^11.5.0"
5169
+                "phpunit/phpunit": "^11.5.2"
5170
             },
5170
             },
5171
             "suggest": {
5171
             "suggest": {
5172
                 "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
5172
                 "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
5214
             ],
5214
             ],
5215
             "support": {
5215
             "support": {
5216
                 "issues": "https://github.com/openspout/openspout/issues",
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
             "funding": [
5219
             "funding": [
5220
                 {
5220
                 {
5226
                     "type": "github"
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
             "name": "paragonie/constant_time_encoding",
5232
             "name": "paragonie/constant_time_encoding",

+ 100
- 100
package-lock.json View File

575
             }
575
             }
576
         },
576
         },
577
         "node_modules/@rollup/rollup-android-arm-eabi": {
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
             "cpu": [
581
             "cpu": [
582
                 "arm"
582
                 "arm"
583
             ],
583
             ],
589
             ]
589
             ]
590
         },
590
         },
591
         "node_modules/@rollup/rollup-android-arm64": {
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
             "cpu": [
595
             "cpu": [
596
                 "arm64"
596
                 "arm64"
597
             ],
597
             ],
603
             ]
603
             ]
604
         },
604
         },
605
         "node_modules/@rollup/rollup-darwin-arm64": {
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
             "cpu": [
609
             "cpu": [
610
                 "arm64"
610
                 "arm64"
611
             ],
611
             ],
617
             ]
617
             ]
618
         },
618
         },
619
         "node_modules/@rollup/rollup-darwin-x64": {
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
             "cpu": [
623
             "cpu": [
624
                 "x64"
624
                 "x64"
625
             ],
625
             ],
631
             ]
631
             ]
632
         },
632
         },
633
         "node_modules/@rollup/rollup-freebsd-arm64": {
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
             "cpu": [
637
             "cpu": [
638
                 "arm64"
638
                 "arm64"
639
             ],
639
             ],
645
             ]
645
             ]
646
         },
646
         },
647
         "node_modules/@rollup/rollup-freebsd-x64": {
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
             "cpu": [
651
             "cpu": [
652
                 "x64"
652
                 "x64"
653
             ],
653
             ],
659
             ]
659
             ]
660
         },
660
         },
661
         "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
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
             "cpu": [
665
             "cpu": [
666
                 "arm"
666
                 "arm"
667
             ],
667
             ],
673
             ]
673
             ]
674
         },
674
         },
675
         "node_modules/@rollup/rollup-linux-arm-musleabihf": {
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
             "cpu": [
679
             "cpu": [
680
                 "arm"
680
                 "arm"
681
             ],
681
             ],
687
             ]
687
             ]
688
         },
688
         },
689
         "node_modules/@rollup/rollup-linux-arm64-gnu": {
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
             "cpu": [
693
             "cpu": [
694
                 "arm64"
694
                 "arm64"
695
             ],
695
             ],
701
             ]
701
             ]
702
         },
702
         },
703
         "node_modules/@rollup/rollup-linux-arm64-musl": {
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
             "cpu": [
707
             "cpu": [
708
                 "arm64"
708
                 "arm64"
709
             ],
709
             ],
715
             ]
715
             ]
716
         },
716
         },
717
         "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
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
             "cpu": [
721
             "cpu": [
722
                 "loong64"
722
                 "loong64"
723
             ],
723
             ],
729
             ]
729
             ]
730
         },
730
         },
731
         "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
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
             "cpu": [
735
             "cpu": [
736
                 "ppc64"
736
                 "ppc64"
737
             ],
737
             ],
743
             ]
743
             ]
744
         },
744
         },
745
         "node_modules/@rollup/rollup-linux-riscv64-gnu": {
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
             "cpu": [
749
             "cpu": [
750
                 "riscv64"
750
                 "riscv64"
751
             ],
751
             ],
757
             ]
757
             ]
758
         },
758
         },
759
         "node_modules/@rollup/rollup-linux-s390x-gnu": {
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
             "cpu": [
763
             "cpu": [
764
                 "s390x"
764
                 "s390x"
765
             ],
765
             ],
771
             ]
771
             ]
772
         },
772
         },
773
         "node_modules/@rollup/rollup-linux-x64-gnu": {
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
             "cpu": [
777
             "cpu": [
778
                 "x64"
778
                 "x64"
779
             ],
779
             ],
785
             ]
785
             ]
786
         },
786
         },
787
         "node_modules/@rollup/rollup-linux-x64-musl": {
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
             "cpu": [
791
             "cpu": [
792
                 "x64"
792
                 "x64"
793
             ],
793
             ],
799
             ]
799
             ]
800
         },
800
         },
801
         "node_modules/@rollup/rollup-win32-arm64-msvc": {
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
             "cpu": [
805
             "cpu": [
806
                 "arm64"
806
                 "arm64"
807
             ],
807
             ],
813
             ]
813
             ]
814
         },
814
         },
815
         "node_modules/@rollup/rollup-win32-ia32-msvc": {
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
             "cpu": [
819
             "cpu": [
820
                 "ia32"
820
                 "ia32"
821
             ],
821
             ],
827
             ]
827
             ]
828
         },
828
         },
829
         "node_modules/@rollup/rollup-win32-x64-msvc": {
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
             "cpu": [
833
             "cpu": [
834
                 "x64"
834
                 "x64"
835
             ],
835
             ],
841
             ]
841
             ]
842
         },
842
         },
843
         "node_modules/@tailwindcss/forms": {
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
             "dev": true,
847
             "dev": true,
848
             "license": "MIT",
848
             "license": "MIT",
849
             "dependencies": {
849
             "dependencies": {
850
                 "mini-svg-data-uri": "^1.2.3"
850
                 "mini-svg-data-uri": "^1.2.3"
851
             },
851
             },
852
             "peerDependencies": {
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
         "node_modules/@tailwindcss/typography": {
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
             "dev": true,
860
             "dev": true,
861
             "license": "MIT",
861
             "license": "MIT",
862
             "dependencies": {
862
             "dependencies": {
866
                 "postcss-selector-parser": "6.0.10"
866
                 "postcss-selector-parser": "6.0.10"
867
             },
867
             },
868
             "peerDependencies": {
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
         "node_modules/@types/estree": {
872
         "node_modules/@types/estree": {
1031
             }
1031
             }
1032
         },
1032
         },
1033
         "node_modules/browserslist": {
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
             "dev": true,
1037
             "dev": true,
1038
             "funding": [
1038
             "funding": [
1039
                 {
1039
                 {
1074
             }
1074
             }
1075
         },
1075
         },
1076
         "node_modules/caniuse-lite": {
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
             "dev": true,
1080
             "dev": true,
1081
             "funding": [
1081
             "funding": [
1082
                 {
1082
                 {
1235
             "license": "MIT"
1235
             "license": "MIT"
1236
         },
1236
         },
1237
         "node_modules/electron-to-chromium": {
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
             "dev": true,
1241
             "dev": true,
1242
             "license": "ISC"
1242
             "license": "ISC"
1243
         },
1243
         },
2242
             }
2242
             }
2243
         },
2243
         },
2244
         "node_modules/rollup": {
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
             "dev": true,
2248
             "dev": true,
2249
             "license": "MIT",
2249
             "license": "MIT",
2250
             "dependencies": {
2250
             "dependencies": {
2258
                 "npm": ">=8.0.0"
2258
                 "npm": ">=8.0.0"
2259
             },
2259
             },
2260
             "optionalDependencies": {
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
                 "fsevents": "~2.3.2"
2280
                 "fsevents": "~2.3.2"
2281
             }
2281
             }
2282
         },
2282
         },
2586
             "license": "Apache-2.0"
2586
             "license": "Apache-2.0"
2587
         },
2587
         },
2588
         "node_modules/update-browserslist-db": {
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
             "dev": true,
2592
             "dev": true,
2593
             "funding": [
2593
             "funding": [
2594
                 {
2594
                 {
2607
             "license": "MIT",
2607
             "license": "MIT",
2608
             "dependencies": {
2608
             "dependencies": {
2609
                 "escalade": "^3.2.0",
2609
                 "escalade": "^3.2.0",
2610
-                "picocolors": "^1.1.0"
2610
+                "picocolors": "^1.1.1"
2611
             },
2611
             },
2612
             "bin": {
2612
             "bin": {
2613
                 "update-browserslist-db": "cli.js"
2613
                 "update-browserslist-db": "cli.js"

Loading…
Cancel
Save