Andrew Wallo 10 ay önce
ebeveyn
işleme
aa9a2887ec

+ 31
- 20
app/Filament/Company/Resources/Common/OfferingResource.php Dosyayı Görüntüle

@@ -15,6 +15,7 @@ use Filament\Resources\Resource;
15 15
 use Filament\Tables;
16 16
 use Filament\Tables\Table;
17 17
 use Illuminate\Database\Eloquent\Builder;
18
+use Illuminate\Support\Str;
18 19
 use JaOcero\RadioDeck\Forms\Components\RadioDeck;
19 20
 
20 21
 class OfferingResource extends Resource
@@ -50,21 +51,18 @@ class OfferingResource extends Resource
50 51
                             ->label('Description')
51 52
                             ->columnSpan(2)
52 53
                             ->rows(3),
53
-                        Forms\Components\Checkbox::make('sellable')
54
-                            ->label('Sellable')
55
-                            ->live()
56
-                            ->columnStart(1)
57
-                            ->accepted(fn (Forms\Get $get) => ! $get('purchasable'))
58
-                            ->validationMessages([
59
-                                'accepted' => 'The offering must be either sellable or purchasable.',
60
-                            ]),
61
-                        Forms\Components\Checkbox::make('purchasable')
62
-                            ->label('Purchasable')
54
+                        Forms\Components\CheckboxList::make('attributes')
55
+                            ->options([
56
+                                'Sellable' => 'Sellable',
57
+                                'Purchasable' => 'Purchasable',
58
+                            ])
59
+                            ->hiddenLabel()
60
+                            ->required()
63 61
                             ->live()
64
-                            ->columnStart(1)
65
-                            ->accepted(fn (Forms\Get $get) => ! $get('sellable'))
62
+                            ->columnSpan(2)
63
+                            ->bulkToggleable()
66 64
                             ->validationMessages([
67
-                                'accepted' => 'The offering must be either sellable or purchasable.',
65
+                                'required' => 'The offering must be either sellable or purchasable.',
68 66
                             ]),
69 67
                     ])->columns(),
70 68
                 // Sellable Section
@@ -79,9 +77,9 @@ class OfferingResource extends Resource
79 77
                                 ->toArray())
80 78
                             ->searchable()
81 79
                             ->preload()
82
-                            ->requiredIfAccepted('sellable')
80
+                            ->required(fn (Forms\Get $get) => in_array('Sellable', $get('attributes') ?? []))
83 81
                             ->validationMessages([
84
-                                'required_if_accepted' => 'The income account is required for sellable offerings.',
82
+                                'required' => 'The income account is required for sellable offerings.',
85 83
                             ]),
86 84
                         Forms\Components\Select::make('salesTaxes')
87 85
                             ->label('Sales Tax')
@@ -95,7 +93,7 @@ class OfferingResource extends Resource
95 93
                             ->multiple(),
96 94
                     ])
97 95
                     ->columns()
98
-                    ->visible(fn (Forms\Get $get) => $get('sellable')),
96
+                    ->visible(fn (Forms\Get $get) => in_array('Sellable', $get('attributes') ?? [])),
99 97
 
100 98
                 // Purchasable Section
101 99
                 Forms\Components\Section::make('Purchase Information')
@@ -110,9 +108,9 @@ class OfferingResource extends Resource
110 108
                                 ->toArray())
111 109
                             ->searchable()
112 110
                             ->preload()
113
-                            ->requiredIfAccepted('purchasable')
111
+                            ->required(fn (Forms\Get $get) => in_array('Purchasable', $get('attributes') ?? []))
114 112
                             ->validationMessages([
115
-                                'required_if_accepted' => 'The expense account is required for purchasable offerings.',
113
+                                'required' => 'The expense account is required for purchasable offerings.',
116 114
                             ]),
117 115
                         Forms\Components\Select::make('purchaseTaxes')
118 116
                             ->label('Purchase Tax')
@@ -126,7 +124,7 @@ class OfferingResource extends Resource
126 124
                             ->multiple(),
127 125
                     ])
128 126
                     ->columns()
129
-                    ->visible(fn (Forms\Get $get) => $get('purchasable')),
127
+                    ->visible(fn (Forms\Get $get) => in_array('Purchasable', $get('attributes') ?? [])),
130 128
             ])->columns();
131 129
     }
132 130
 
@@ -152,7 +150,20 @@ class OfferingResource extends Resource
152 150
                     ->searchable(),
153 151
                 Tables\Columns\TextColumn::make('price')
154 152
                     ->currency(CurrencyAccessor::getDefaultCurrency(), true)
155
-                    ->sortable(),
153
+                    ->sortable()
154
+                    ->description(function (Offering $record) {
155
+                        $adjustments = $record->adjustments()
156
+                            ->pluck('name')
157
+                            ->join(', ');
158
+
159
+                        if (empty($adjustments)) {
160
+                            return null;
161
+                        }
162
+
163
+                        $adjustmentsList = Str::of($adjustments)->limit(40);
164
+
165
+                        return "+ $adjustmentsList";
166
+                    }),
156 167
             ])
157 168
             ->filters([
158 169
                 //

+ 13
- 0
app/Filament/Company/Resources/Common/OfferingResource/Pages/CreateOffering.php Dosyayı Görüntüle

@@ -5,10 +5,23 @@ namespace App\Filament\Company\Resources\Common\OfferingResource\Pages;
5 5
 use App\Concerns\RedirectToListPage;
6 6
 use App\Filament\Company\Resources\Common\OfferingResource;
7 7
 use Filament\Resources\Pages\CreateRecord;
8
+use Illuminate\Database\Eloquent\Model;
8 9
 
9 10
 class CreateOffering extends CreateRecord
10 11
 {
11 12
     use RedirectToListPage;
12 13
 
13 14
     protected static string $resource = OfferingResource::class;
15
+
16
+    protected function handleRecordCreation(array $data): Model
17
+    {
18
+        $attributes = array_flip($data['attributes'] ?? []);
19
+
20
+        $data['sellable'] = isset($attributes['Sellable']);
21
+        $data['purchasable'] = isset($attributes['Purchasable']);
22
+
23
+        unset($data['attributes']);
24
+
25
+        return parent::handleRecordCreation($data); // TODO: Change the autogenerated stub
26
+    }
14 27
 }

+ 23
- 0
app/Filament/Company/Resources/Common/OfferingResource/Pages/EditOffering.php Dosyayı Görüntüle

@@ -6,6 +6,7 @@ use App\Concerns\RedirectToListPage;
6 6
 use App\Filament\Company\Resources\Common\OfferingResource;
7 7
 use Filament\Actions;
8 8
 use Filament\Resources\Pages\EditRecord;
9
+use Illuminate\Database\Eloquent\Model;
9 10
 
10 11
 class EditOffering extends EditRecord
11 12
 {
@@ -19,4 +20,26 @@ class EditOffering extends EditRecord
19 20
             Actions\DeleteAction::make(),
20 21
         ];
21 22
     }
23
+
24
+    protected function mutateFormDataBeforeFill(array $data): array
25
+    {
26
+        $data['attributes'] = array_filter([
27
+            $data['sellable'] ? 'Sellable' : null,
28
+            $data['purchasable'] ? 'Purchasable' : null,
29
+        ]);
30
+
31
+        return parent::mutateFormDataBeforeFill($data); // TODO: Change the autogenerated stub
32
+    }
33
+
34
+    protected function handleRecordUpdate(Model $record, array $data): Model
35
+    {
36
+        $attributes = array_flip($data['attributes'] ?? []);
37
+
38
+        $data['sellable'] = isset($attributes['Sellable']);
39
+        $data['purchasable'] = isset($attributes['Purchasable']);
40
+
41
+        unset($data['attributes']);
42
+
43
+        return parent::handleRecordUpdate($record, $data); // TODO: Change the autogenerated stub
44
+    }
22 45
 }

+ 40
- 40
composer.lock Dosyayı Görüntüle

@@ -497,16 +497,16 @@
497 497
         },
498 498
         {
499 499
             "name": "aws/aws-sdk-php",
500
-            "version": "3.328.0",
500
+            "version": "3.328.1",
501 501
             "source": {
502 502
                 "type": "git",
503 503
                 "url": "https://github.com/aws/aws-sdk-php.git",
504
-                "reference": "a99b58e166ae367f2b067937afb04e843e900745"
504
+                "reference": "52d8219935146c3261181de2da4d36bf04c76298"
505 505
             },
506 506
             "dist": {
507 507
                 "type": "zip",
508
-                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a99b58e166ae367f2b067937afb04e843e900745",
509
-                "reference": "a99b58e166ae367f2b067937afb04e843e900745",
508
+                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/52d8219935146c3261181de2da4d36bf04c76298",
509
+                "reference": "52d8219935146c3261181de2da4d36bf04c76298",
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.328.0"
592
+                "source": "https://github.com/aws/aws-sdk-php/tree/3.328.1"
593 593
             },
594
-            "time": "2024-11-15T19:06:57+00:00"
594
+            "time": "2024-11-18T19:13:28+00:00"
595 595
         },
596 596
         {
597 597
             "name": "aws/aws-sdk-php-laravel",
@@ -750,16 +750,16 @@
750 750
         },
751 751
         {
752 752
             "name": "blade-ui-kit/blade-heroicons",
753
-            "version": "2.4.0",
753
+            "version": "2.5.0",
754 754
             "source": {
755 755
                 "type": "git",
756 756
                 "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
757
-                "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b"
757
+                "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48"
758 758
             },
759 759
             "dist": {
760 760
                 "type": "zip",
761
-                "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a7c377a4ef88cd54712e3e15cbed30446820da0b",
762
-                "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b",
761
+                "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
762
+                "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
763 763
                 "shasum": ""
764 764
             },
765 765
             "require": {
@@ -803,7 +803,7 @@
803 803
             ],
804 804
             "support": {
805 805
                 "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
806
-                "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.4.0"
806
+                "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.5.0"
807 807
             },
808 808
             "funding": [
809 809
                 {
@@ -815,7 +815,7 @@
815 815
                     "type": "paypal"
816 816
                 }
817 817
             ],
818
-            "time": "2024-07-16T07:00:01+00:00"
818
+            "time": "2024-11-18T19:59:07+00:00"
819 819
         },
820 820
         {
821 821
             "name": "blade-ui-kit/blade-icons",
@@ -6298,16 +6298,16 @@
6298 6298
         },
6299 6299
         {
6300 6300
             "name": "spatie/color",
6301
-            "version": "1.6.0",
6301
+            "version": "1.6.1",
6302 6302
             "source": {
6303 6303
                 "type": "git",
6304 6304
                 "url": "https://github.com/spatie/color.git",
6305
-                "reference": "02ce48c480f86d65702188f738f4e8ccad1b999a"
6305
+                "reference": "4c540ffbef68a3df3d209718ae06deaab081e708"
6306 6306
             },
6307 6307
             "dist": {
6308 6308
                 "type": "zip",
6309
-                "url": "https://api.github.com/repos/spatie/color/zipball/02ce48c480f86d65702188f738f4e8ccad1b999a",
6310
-                "reference": "02ce48c480f86d65702188f738f4e8ccad1b999a",
6309
+                "url": "https://api.github.com/repos/spatie/color/zipball/4c540ffbef68a3df3d209718ae06deaab081e708",
6310
+                "reference": "4c540ffbef68a3df3d209718ae06deaab081e708",
6311 6311
                 "shasum": ""
6312 6312
             },
6313 6313
             "require": {
@@ -6345,7 +6345,7 @@
6345 6345
             ],
6346 6346
             "support": {
6347 6347
                 "issues": "https://github.com/spatie/color/issues",
6348
-                "source": "https://github.com/spatie/color/tree/1.6.0"
6348
+                "source": "https://github.com/spatie/color/tree/1.6.1"
6349 6349
             },
6350 6350
             "funding": [
6351 6351
                 {
@@ -6353,7 +6353,7 @@
6353 6353
                     "type": "github"
6354 6354
                 }
6355 6355
             ],
6356
-            "time": "2024-09-20T14:00:15+00:00"
6356
+            "time": "2024-11-18T15:00:47+00:00"
6357 6357
         },
6358 6358
         {
6359 6359
             "name": "spatie/invade",
@@ -6416,16 +6416,16 @@
6416 6416
         },
6417 6417
         {
6418 6418
             "name": "spatie/laravel-package-tools",
6419
-            "version": "1.16.5",
6419
+            "version": "1.16.6",
6420 6420
             "source": {
6421 6421
                 "type": "git",
6422 6422
                 "url": "https://github.com/spatie/laravel-package-tools.git",
6423
-                "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2"
6423
+                "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3"
6424 6424
             },
6425 6425
             "dist": {
6426 6426
                 "type": "zip",
6427
-                "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c7413972cf22ffdff97b68499c22baa04eddb6a2",
6428
-                "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2",
6427
+                "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
6428
+                "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
6429 6429
                 "shasum": ""
6430 6430
             },
6431 6431
             "require": {
@@ -6464,7 +6464,7 @@
6464 6464
             ],
6465 6465
             "support": {
6466 6466
                 "issues": "https://github.com/spatie/laravel-package-tools/issues",
6467
-                "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.5"
6467
+                "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.6"
6468 6468
             },
6469 6469
             "funding": [
6470 6470
                 {
@@ -6472,7 +6472,7 @@
6472 6472
                     "type": "github"
6473 6473
                 }
6474 6474
             ],
6475
-            "time": "2024-08-27T18:56:10+00:00"
6475
+            "time": "2024-11-18T15:02:02+00:00"
6476 6476
         },
6477 6477
         {
6478 6478
             "name": "squirephp/model",
@@ -9573,28 +9573,28 @@
9573 9573
         },
9574 9574
         {
9575 9575
             "name": "jean85/pretty-package-versions",
9576
-            "version": "2.0.6",
9576
+            "version": "2.1.0",
9577 9577
             "source": {
9578 9578
                 "type": "git",
9579 9579
                 "url": "https://github.com/Jean85/pretty-package-versions.git",
9580
-                "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4"
9580
+                "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
9581 9581
             },
9582 9582
             "dist": {
9583 9583
                 "type": "zip",
9584
-                "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4",
9585
-                "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4",
9584
+                "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
9585
+                "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
9586 9586
                 "shasum": ""
9587 9587
             },
9588 9588
             "require": {
9589
-                "composer-runtime-api": "^2.0.0",
9590
-                "php": "^7.1|^8.0"
9589
+                "composer-runtime-api": "^2.1.0",
9590
+                "php": "^7.4|^8.0"
9591 9591
             },
9592 9592
             "require-dev": {
9593 9593
                 "friendsofphp/php-cs-fixer": "^3.2",
9594 9594
                 "jean85/composer-provided-replaced-stub-package": "^1.0",
9595 9595
                 "phpstan/phpstan": "^1.4",
9596
-                "phpunit/phpunit": "^7.5|^8.5|^9.4",
9597
-                "vimeo/psalm": "^4.3"
9596
+                "phpunit/phpunit": "^7.5|^8.5|^9.6",
9597
+                "vimeo/psalm": "^4.3 || ^5.0"
9598 9598
             },
9599 9599
             "type": "library",
9600 9600
             "extra": {
@@ -9626,9 +9626,9 @@
9626 9626
             ],
9627 9627
             "support": {
9628 9628
                 "issues": "https://github.com/Jean85/pretty-package-versions/issues",
9629
-                "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6"
9629
+                "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
9630 9630
             },
9631
-            "time": "2024-03-08T09:58:59+00:00"
9631
+            "time": "2024-11-18T16:19:46+00:00"
9632 9632
         },
9633 9633
         {
9634 9634
             "name": "laravel/pint",
@@ -12322,16 +12322,16 @@
12322 12322
         },
12323 12323
         {
12324 12324
             "name": "spatie/backtrace",
12325
-            "version": "1.6.2",
12325
+            "version": "1.6.3",
12326 12326
             "source": {
12327 12327
                 "type": "git",
12328 12328
                 "url": "https://github.com/spatie/backtrace.git",
12329
-                "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9"
12329
+                "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838"
12330 12330
             },
12331 12331
             "dist": {
12332 12332
                 "type": "zip",
12333
-                "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9",
12334
-                "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
12333
+                "url": "https://api.github.com/repos/spatie/backtrace/zipball/7c18db2bc667ac84e5d7c18e33f16c38ff2d8838",
12334
+                "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838",
12335 12335
                 "shasum": ""
12336 12336
             },
12337 12337
             "require": {
@@ -12369,7 +12369,7 @@
12369 12369
                 "spatie"
12370 12370
             ],
12371 12371
             "support": {
12372
-                "source": "https://github.com/spatie/backtrace/tree/1.6.2"
12372
+                "source": "https://github.com/spatie/backtrace/tree/1.6.3"
12373 12373
             },
12374 12374
             "funding": [
12375 12375
                 {
@@ -12381,7 +12381,7 @@
12381 12381
                     "type": "other"
12382 12382
                 }
12383 12383
             ],
12384
-            "time": "2024-07-22T08:21:24+00:00"
12384
+            "time": "2024-11-18T14:58:58+00:00"
12385 12385
         },
12386 12386
         {
12387 12387
             "name": "spatie/error-solutions",

+ 81
- 81
package-lock.json Dosyayı Görüntüle

@@ -541,9 +541,9 @@
541 541
             }
542 542
         },
543 543
         "node_modules/@rollup/rollup-android-arm-eabi": {
544
-            "version": "4.27.2",
545
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.2.tgz",
546
-            "integrity": "sha512-Tj+j7Pyzd15wAdSJswvs5CJzJNV+qqSUcr/aCD+jpQSBtXvGnV0pnrjoc8zFTe9fcKCatkpFpOO7yAzpO998HA==",
544
+            "version": "4.27.3",
545
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.3.tgz",
546
+            "integrity": "sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==",
547 547
             "cpu": [
548 548
                 "arm"
549 549
             ],
@@ -555,9 +555,9 @@
555 555
             ]
556 556
         },
557 557
         "node_modules/@rollup/rollup-android-arm64": {
558
-            "version": "4.27.2",
559
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.2.tgz",
560
-            "integrity": "sha512-xsPeJgh2ThBpUqlLgRfiVYBEf/P1nWlWvReG+aBWfNv3XEBpa6ZCmxSVnxJgLgkNz4IbxpLy64h2gCmAAQLneQ==",
558
+            "version": "4.27.3",
559
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.3.tgz",
560
+            "integrity": "sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==",
561 561
             "cpu": [
562 562
                 "arm64"
563 563
             ],
@@ -569,9 +569,9 @@
569 569
             ]
570 570
         },
571 571
         "node_modules/@rollup/rollup-darwin-arm64": {
572
-            "version": "4.27.2",
573
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.2.tgz",
574
-            "integrity": "sha512-KnXU4m9MywuZFedL35Z3PuwiTSn/yqRIhrEA9j+7OSkji39NzVkgxuxTYg5F8ryGysq4iFADaU5osSizMXhU2A==",
572
+            "version": "4.27.3",
573
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.3.tgz",
574
+            "integrity": "sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==",
575 575
             "cpu": [
576 576
                 "arm64"
577 577
             ],
@@ -583,9 +583,9 @@
583 583
             ]
584 584
         },
585 585
         "node_modules/@rollup/rollup-darwin-x64": {
586
-            "version": "4.27.2",
587
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.2.tgz",
588
-            "integrity": "sha512-Hj77A3yTvUeCIx/Vi+4d4IbYhyTwtHj07lVzUgpUq9YpJSEiGJj4vXMKwzJ3w5zp5v3PFvpJNgc/J31smZey6g==",
586
+            "version": "4.27.3",
587
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.3.tgz",
588
+            "integrity": "sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==",
589 589
             "cpu": [
590 590
                 "x64"
591 591
             ],
@@ -597,9 +597,9 @@
597 597
             ]
598 598
         },
599 599
         "node_modules/@rollup/rollup-freebsd-arm64": {
600
-            "version": "4.27.2",
601
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.2.tgz",
602
-            "integrity": "sha512-RjgKf5C3xbn8gxvCm5VgKZ4nn0pRAIe90J0/fdHUsgztd3+Zesb2lm2+r6uX4prV2eUByuxJNdt647/1KPRq5g==",
600
+            "version": "4.27.3",
601
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.3.tgz",
602
+            "integrity": "sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==",
603 603
             "cpu": [
604 604
                 "arm64"
605 605
             ],
@@ -611,9 +611,9 @@
611 611
             ]
612 612
         },
613 613
         "node_modules/@rollup/rollup-freebsd-x64": {
614
-            "version": "4.27.2",
615
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.2.tgz",
616
-            "integrity": "sha512-duq21FoXwQtuws+V9H6UZ+eCBc7fxSpMK1GQINKn3fAyd9DFYKPJNcUhdIKOrMFjLEJgQskoMoiuizMt+dl20g==",
614
+            "version": "4.27.3",
615
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.3.tgz",
616
+            "integrity": "sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==",
617 617
             "cpu": [
618 618
                 "x64"
619 619
             ],
@@ -625,9 +625,9 @@
625 625
             ]
626 626
         },
627 627
         "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
628
-            "version": "4.27.2",
629
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.2.tgz",
630
-            "integrity": "sha512-6npqOKEPRZkLrMcvyC/32OzJ2srdPzCylJjiTJT2c0bwwSGm7nz2F9mNQ1WrAqCBZROcQn91Fno+khFhVijmFA==",
628
+            "version": "4.27.3",
629
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.3.tgz",
630
+            "integrity": "sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==",
631 631
             "cpu": [
632 632
                 "arm"
633 633
             ],
@@ -639,9 +639,9 @@
639 639
             ]
640 640
         },
641 641
         "node_modules/@rollup/rollup-linux-arm-musleabihf": {
642
-            "version": "4.27.2",
643
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.2.tgz",
644
-            "integrity": "sha512-V9Xg6eXtgBtHq2jnuQwM/jr2mwe2EycnopO8cbOvpzFuySCGtKlPCI3Hj9xup/pJK5Q0388qfZZy2DqV2J8ftw==",
642
+            "version": "4.27.3",
643
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.3.tgz",
644
+            "integrity": "sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==",
645 645
             "cpu": [
646 646
                 "arm"
647 647
             ],
@@ -653,9 +653,9 @@
653 653
             ]
654 654
         },
655 655
         "node_modules/@rollup/rollup-linux-arm64-gnu": {
656
-            "version": "4.27.2",
657
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.2.tgz",
658
-            "integrity": "sha512-uCFX9gtZJoQl2xDTpRdseYuNqyKkuMDtH6zSrBTA28yTfKyjN9hQ2B04N5ynR8ILCoSDOrG/Eg+J2TtJ1e/CSA==",
656
+            "version": "4.27.3",
657
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.3.tgz",
658
+            "integrity": "sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==",
659 659
             "cpu": [
660 660
                 "arm64"
661 661
             ],
@@ -667,9 +667,9 @@
667 667
             ]
668 668
         },
669 669
         "node_modules/@rollup/rollup-linux-arm64-musl": {
670
-            "version": "4.27.2",
671
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.2.tgz",
672
-            "integrity": "sha512-/PU9P+7Rkz8JFYDHIi+xzHabOu9qEWR07L5nWLIUsvserrxegZExKCi2jhMZRd0ATdboKylu/K5yAXbp7fYFvA==",
670
+            "version": "4.27.3",
671
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.3.tgz",
672
+            "integrity": "sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==",
673 673
             "cpu": [
674 674
                 "arm64"
675 675
             ],
@@ -681,9 +681,9 @@
681 681
             ]
682 682
         },
683 683
         "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
684
-            "version": "4.27.2",
685
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.2.tgz",
686
-            "integrity": "sha512-eCHmol/dT5odMYi/N0R0HC8V8QE40rEpkyje/ZAXJYNNoSfrObOvG/Mn+s1F/FJyB7co7UQZZf6FuWnN6a7f4g==",
684
+            "version": "4.27.3",
685
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.3.tgz",
686
+            "integrity": "sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==",
687 687
             "cpu": [
688 688
                 "ppc64"
689 689
             ],
@@ -695,9 +695,9 @@
695 695
             ]
696 696
         },
697 697
         "node_modules/@rollup/rollup-linux-riscv64-gnu": {
698
-            "version": "4.27.2",
699
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.2.tgz",
700
-            "integrity": "sha512-DEP3Njr9/ADDln3kNi76PXonLMSSMiCir0VHXxmGSHxCxDfQ70oWjHcJGfiBugzaqmYdTC7Y+8Int6qbnxPBIQ==",
698
+            "version": "4.27.3",
699
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.3.tgz",
700
+            "integrity": "sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==",
701 701
             "cpu": [
702 702
                 "riscv64"
703 703
             ],
@@ -709,9 +709,9 @@
709 709
             ]
710 710
         },
711 711
         "node_modules/@rollup/rollup-linux-s390x-gnu": {
712
-            "version": "4.27.2",
713
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.2.tgz",
714
-            "integrity": "sha512-NHGo5i6IE/PtEPh5m0yw5OmPMpesFnzMIS/lzvN5vknnC1sXM5Z/id5VgcNPgpD+wHmIcuYYgW+Q53v+9s96lQ==",
712
+            "version": "4.27.3",
713
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.3.tgz",
714
+            "integrity": "sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==",
715 715
             "cpu": [
716 716
                 "s390x"
717 717
             ],
@@ -723,9 +723,9 @@
723 723
             ]
724 724
         },
725 725
         "node_modules/@rollup/rollup-linux-x64-gnu": {
726
-            "version": "4.27.2",
727
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.2.tgz",
728
-            "integrity": "sha512-PaW2DY5Tan+IFvNJGHDmUrORadbe/Ceh8tQxi8cmdQVCCYsLoQo2cuaSj+AU+YRX8M4ivS2vJ9UGaxfuNN7gmg==",
726
+            "version": "4.27.3",
727
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.3.tgz",
728
+            "integrity": "sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==",
729 729
             "cpu": [
730 730
                 "x64"
731 731
             ],
@@ -737,9 +737,9 @@
737 737
             ]
738 738
         },
739 739
         "node_modules/@rollup/rollup-linux-x64-musl": {
740
-            "version": "4.27.2",
741
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.2.tgz",
742
-            "integrity": "sha512-dOlWEMg2gI91Qx5I/HYqOD6iqlJspxLcS4Zlg3vjk1srE67z5T2Uz91yg/qA8sY0XcwQrFzWWiZhMNERylLrpQ==",
740
+            "version": "4.27.3",
741
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.3.tgz",
742
+            "integrity": "sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==",
743 743
             "cpu": [
744 744
                 "x64"
745 745
             ],
@@ -751,9 +751,9 @@
751 751
             ]
752 752
         },
753 753
         "node_modules/@rollup/rollup-win32-arm64-msvc": {
754
-            "version": "4.27.2",
755
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.2.tgz",
756
-            "integrity": "sha512-euMIv/4x5Y2/ImlbGl88mwKNXDsvzbWUlT7DFky76z2keajCtcbAsN9LUdmk31hAoVmJJYSThgdA0EsPeTr1+w==",
754
+            "version": "4.27.3",
755
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.3.tgz",
756
+            "integrity": "sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==",
757 757
             "cpu": [
758 758
                 "arm64"
759 759
             ],
@@ -765,9 +765,9 @@
765 765
             ]
766 766
         },
767 767
         "node_modules/@rollup/rollup-win32-ia32-msvc": {
768
-            "version": "4.27.2",
769
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.2.tgz",
770
-            "integrity": "sha512-RsnE6LQkUHlkC10RKngtHNLxb7scFykEbEwOFDjr3CeCMG+Rr+cKqlkKc2/wJ1u4u990urRHCbjz31x84PBrSQ==",
768
+            "version": "4.27.3",
769
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.3.tgz",
770
+            "integrity": "sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==",
771 771
             "cpu": [
772 772
                 "ia32"
773 773
             ],
@@ -779,9 +779,9 @@
779 779
             ]
780 780
         },
781 781
         "node_modules/@rollup/rollup-win32-x64-msvc": {
782
-            "version": "4.27.2",
783
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.2.tgz",
784
-            "integrity": "sha512-foJM5vv+z2KQmn7emYdDLyTbkoO5bkHZE1oth2tWbQNGW7mX32d46Hz6T0MqXdWS2vBZhaEtHqdy9WYwGfiliA==",
782
+            "version": "4.27.3",
783
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.3.tgz",
784
+            "integrity": "sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==",
785 785
             "cpu": [
786 786
                 "x64"
787 787
             ],
@@ -1128,9 +1128,9 @@
1128 1128
             }
1129 1129
         },
1130 1130
         "node_modules/cross-spawn": {
1131
-            "version": "7.0.5",
1132
-            "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz",
1133
-            "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==",
1131
+            "version": "7.0.6",
1132
+            "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1133
+            "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1134 1134
             "dev": true,
1135 1135
             "license": "MIT",
1136 1136
             "dependencies": {
@@ -1187,9 +1187,9 @@
1187 1187
             "license": "MIT"
1188 1188
         },
1189 1189
         "node_modules/electron-to-chromium": {
1190
-            "version": "1.5.62",
1191
-            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.62.tgz",
1192
-            "integrity": "sha512-t8c+zLmJHa9dJy96yBZRXGQYoiCEnHYgFwn1asvSPZSUdVxnB62A4RASd7k41ytG3ErFBA0TpHlKg9D9SQBmLg==",
1190
+            "version": "1.5.63",
1191
+            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.63.tgz",
1192
+            "integrity": "sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==",
1193 1193
             "dev": true,
1194 1194
             "license": "ISC"
1195 1195
         },
@@ -2199,9 +2199,9 @@
2199 2199
             }
2200 2200
         },
2201 2201
         "node_modules/rollup": {
2202
-            "version": "4.27.2",
2203
-            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.2.tgz",
2204
-            "integrity": "sha512-KreA+PzWmk2yaFmZVwe6GB2uBD86nXl86OsDkt1bJS9p3vqWuEQ6HnJJ+j/mZi/q0920P99/MVRlB4L3crpF5w==",
2202
+            "version": "4.27.3",
2203
+            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.27.3.tgz",
2204
+            "integrity": "sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==",
2205 2205
             "dev": true,
2206 2206
             "license": "MIT",
2207 2207
             "dependencies": {
@@ -2215,24 +2215,24 @@
2215 2215
                 "npm": ">=8.0.0"
2216 2216
             },
2217 2217
             "optionalDependencies": {
2218
-                "@rollup/rollup-android-arm-eabi": "4.27.2",
2219
-                "@rollup/rollup-android-arm64": "4.27.2",
2220
-                "@rollup/rollup-darwin-arm64": "4.27.2",
2221
-                "@rollup/rollup-darwin-x64": "4.27.2",
2222
-                "@rollup/rollup-freebsd-arm64": "4.27.2",
2223
-                "@rollup/rollup-freebsd-x64": "4.27.2",
2224
-                "@rollup/rollup-linux-arm-gnueabihf": "4.27.2",
2225
-                "@rollup/rollup-linux-arm-musleabihf": "4.27.2",
2226
-                "@rollup/rollup-linux-arm64-gnu": "4.27.2",
2227
-                "@rollup/rollup-linux-arm64-musl": "4.27.2",
2228
-                "@rollup/rollup-linux-powerpc64le-gnu": "4.27.2",
2229
-                "@rollup/rollup-linux-riscv64-gnu": "4.27.2",
2230
-                "@rollup/rollup-linux-s390x-gnu": "4.27.2",
2231
-                "@rollup/rollup-linux-x64-gnu": "4.27.2",
2232
-                "@rollup/rollup-linux-x64-musl": "4.27.2",
2233
-                "@rollup/rollup-win32-arm64-msvc": "4.27.2",
2234
-                "@rollup/rollup-win32-ia32-msvc": "4.27.2",
2235
-                "@rollup/rollup-win32-x64-msvc": "4.27.2",
2218
+                "@rollup/rollup-android-arm-eabi": "4.27.3",
2219
+                "@rollup/rollup-android-arm64": "4.27.3",
2220
+                "@rollup/rollup-darwin-arm64": "4.27.3",
2221
+                "@rollup/rollup-darwin-x64": "4.27.3",
2222
+                "@rollup/rollup-freebsd-arm64": "4.27.3",
2223
+                "@rollup/rollup-freebsd-x64": "4.27.3",
2224
+                "@rollup/rollup-linux-arm-gnueabihf": "4.27.3",
2225
+                "@rollup/rollup-linux-arm-musleabihf": "4.27.3",
2226
+                "@rollup/rollup-linux-arm64-gnu": "4.27.3",
2227
+                "@rollup/rollup-linux-arm64-musl": "4.27.3",
2228
+                "@rollup/rollup-linux-powerpc64le-gnu": "4.27.3",
2229
+                "@rollup/rollup-linux-riscv64-gnu": "4.27.3",
2230
+                "@rollup/rollup-linux-s390x-gnu": "4.27.3",
2231
+                "@rollup/rollup-linux-x64-gnu": "4.27.3",
2232
+                "@rollup/rollup-linux-x64-musl": "4.27.3",
2233
+                "@rollup/rollup-win32-arm64-msvc": "4.27.3",
2234
+                "@rollup/rollup-win32-ia32-msvc": "4.27.3",
2235
+                "@rollup/rollup-win32-x64-msvc": "4.27.3",
2236 2236
                 "fsevents": "~2.3.2"
2237 2237
             }
2238 2238
         },

Loading…
İptal
Kaydet