@salesforce/templates 66.11.0 → 66.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +361 -332
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +354 -325
- package/lib/templates/uiBundles/angularbasic/angular.json +11 -7
- package/lib/templates/uiBundles/angularbasic/eslint.config.js +4 -0
- package/lib/templates/uiBundles/angularbasic/package-lock.json +292 -239
- package/lib/templates/uiBundles/angularbasic/package.json +4 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/{graphql-client.service.spec.ts → data-client.service.spec.ts} +36 -6
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +15 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +6 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.ts +7 -2
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.html +2 -1
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.ts +9 -3
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.html +31 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.ts +53 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.html +18 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.scss +112 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.ts +57 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.scss +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.ts +110 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.ts +26 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.html +25 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.scss +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.ts +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.html +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.scss +33 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.ts +66 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.html +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.ts +55 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.html +21 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.html +19 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.html +3 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.ts +17 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.ts +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.html +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.ts +40 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.html +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.ts +72 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.scss +23 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.ts +56 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.scss +28 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.ts +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/spinner/spinner.component.ts +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/utils/async-data.ts +99 -0
- package/lib/templates/uiBundles/angularbasic/src/index.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.scss +170 -0
- package/lib/templates/uiBundles/angularbasic/src/theme.scss +39 -0
- package/lib/templates/uiBundles/reactbasic/package-lock.json +354 -325
- package/package.json +3 -3
- package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +0 -48
- package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.css +0 -12
- /package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.spec.ts +0 -0
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
"name": "base-angular-app",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
+
"@angular/animations": "^21.2.0",
|
|
12
|
+
"@angular/cdk": "^21.2.0",
|
|
11
13
|
"@angular/common": "^21.2.0",
|
|
12
14
|
"@angular/compiler": "^21.2.0",
|
|
13
15
|
"@angular/core": "^21.2.0",
|
|
14
16
|
"@angular/forms": "^21.2.0",
|
|
17
|
+
"@angular/material": "^21.2.0",
|
|
15
18
|
"@angular/platform-browser": "^21.2.0",
|
|
16
19
|
"@angular/router": "^21.2.0",
|
|
17
20
|
"@salesforce/angular-plugin-ui-bundle": "^11.4.4",
|
|
@@ -319,12 +322,12 @@
|
|
|
319
322
|
}
|
|
320
323
|
},
|
|
321
324
|
"node_modules/@angular-devkit/architect": {
|
|
322
|
-
"version": "0.2102.
|
|
323
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.
|
|
324
|
-
"integrity": "sha512-
|
|
325
|
+
"version": "0.2102.19",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2102.19.tgz",
|
|
327
|
+
"integrity": "sha512-cj4tzUMiloLTg5rNf17E8MsvIxCWYoBiBsaj7ns6dgXqT9XCeG+J0TA2t1M+N9uuqfeLd22U/rYoCkADmcircQ==",
|
|
325
328
|
"license": "MIT",
|
|
326
329
|
"dependencies": {
|
|
327
|
-
"@angular-devkit/core": "21.2.
|
|
330
|
+
"@angular-devkit/core": "21.2.19",
|
|
328
331
|
"rxjs": "7.8.2"
|
|
329
332
|
},
|
|
330
333
|
"bin": {
|
|
@@ -337,9 +340,9 @@
|
|
|
337
340
|
}
|
|
338
341
|
},
|
|
339
342
|
"node_modules/@angular-devkit/core": {
|
|
340
|
-
"version": "21.2.
|
|
341
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.
|
|
342
|
-
"integrity": "sha512-
|
|
343
|
+
"version": "21.2.19",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.2.19.tgz",
|
|
345
|
+
"integrity": "sha512-dtpJMQBz5nhkcIogPmXP/aT2Ak8m/wLRPOSTI/g4vSJSuGiI53PgtWq4/wfQga6E6wdM2XWsblAE89d8w5heQQ==",
|
|
343
346
|
"license": "MIT",
|
|
344
347
|
"dependencies": {
|
|
345
348
|
"ajv": "8.18.0",
|
|
@@ -364,13 +367,13 @@
|
|
|
364
367
|
}
|
|
365
368
|
},
|
|
366
369
|
"node_modules/@angular-devkit/schematics": {
|
|
367
|
-
"version": "21.2.
|
|
368
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.
|
|
369
|
-
"integrity": "sha512-
|
|
370
|
+
"version": "21.2.19",
|
|
371
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.2.19.tgz",
|
|
372
|
+
"integrity": "sha512-AG3Fzh9wJCmKBfxUQOUWaEHMj5Gq2O+Msf1z52aDSxbVhs5/iSQcXGPv/DLdAXu7d4xmQhLouNe9Glaq2omDyw==",
|
|
370
373
|
"dev": true,
|
|
371
374
|
"license": "MIT",
|
|
372
375
|
"dependencies": {
|
|
373
|
-
"@angular-devkit/core": "21.2.
|
|
376
|
+
"@angular-devkit/core": "21.2.19",
|
|
374
377
|
"jsonc-parser": "3.3.1",
|
|
375
378
|
"magic-string": "0.30.21",
|
|
376
379
|
"ora": "9.3.0",
|
|
@@ -491,14 +494,30 @@
|
|
|
491
494
|
"typescript": "*"
|
|
492
495
|
}
|
|
493
496
|
},
|
|
494
|
-
"node_modules/@angular/
|
|
497
|
+
"node_modules/@angular/animations": {
|
|
495
498
|
"version": "21.2.18",
|
|
496
|
-
"resolved": "https://registry.npmjs.org/@angular/
|
|
497
|
-
"integrity": "sha512-
|
|
499
|
+
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-21.2.18.tgz",
|
|
500
|
+
"integrity": "sha512-zN++Qb4Oz4x/5LYHuW9FItm7aHsV4HBz518GT25QusMvGymh+4io2TWhPYB0C9jx+g5q8GeQLd3c8r42yLrRxw==",
|
|
501
|
+
"deprecated": "@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations.",
|
|
502
|
+
"license": "MIT",
|
|
503
|
+
"dependencies": {
|
|
504
|
+
"tslib": "^2.3.0"
|
|
505
|
+
},
|
|
506
|
+
"engines": {
|
|
507
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
508
|
+
},
|
|
509
|
+
"peerDependencies": {
|
|
510
|
+
"@angular/core": "21.2.18"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"node_modules/@angular/build": {
|
|
514
|
+
"version": "21.2.19",
|
|
515
|
+
"resolved": "https://registry.npmjs.org/@angular/build/-/build-21.2.19.tgz",
|
|
516
|
+
"integrity": "sha512-emy9mqrTXAwhZzcvx8MaHyz+cUR06PVGxnqy91+bpDxPP9S5x67sPoOkY9y/ETFFhRpB5ULlUxyq0eN/pi6QOg==",
|
|
498
517
|
"license": "MIT",
|
|
499
518
|
"dependencies": {
|
|
500
519
|
"@ampproject/remapping": "2.3.0",
|
|
501
|
-
"@angular-devkit/architect": "0.2102.
|
|
520
|
+
"@angular-devkit/architect": "0.2102.19",
|
|
502
521
|
"@babel/core": "7.29.7",
|
|
503
522
|
"@babel/helper-annotate-as-pure": "7.27.3",
|
|
504
523
|
"@babel/helper-split-export-declaration": "7.24.7",
|
|
@@ -541,7 +560,7 @@
|
|
|
541
560
|
"@angular/platform-browser": "^21.0.0",
|
|
542
561
|
"@angular/platform-server": "^21.0.0",
|
|
543
562
|
"@angular/service-worker": "^21.0.0",
|
|
544
|
-
"@angular/ssr": "^21.2.
|
|
563
|
+
"@angular/ssr": "^21.2.19",
|
|
545
564
|
"karma": "^6.4.0",
|
|
546
565
|
"less": "^4.2.0",
|
|
547
566
|
"ng-packagr": "^21.0.0",
|
|
@@ -590,20 +609,36 @@
|
|
|
590
609
|
}
|
|
591
610
|
}
|
|
592
611
|
},
|
|
612
|
+
"node_modules/@angular/cdk": {
|
|
613
|
+
"version": "21.2.14",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-21.2.14.tgz",
|
|
615
|
+
"integrity": "sha512-806REq/CLf37nEhmmd8Q+ILN8z/RVG2vk2n8YZ/4TdHpcBCi5ux4AxLbpMmduLwGPOzPagJ6ggRzE5fnX0rmcQ==",
|
|
616
|
+
"license": "MIT",
|
|
617
|
+
"dependencies": {
|
|
618
|
+
"parse5": "^8.0.0",
|
|
619
|
+
"tslib": "^2.3.0"
|
|
620
|
+
},
|
|
621
|
+
"peerDependencies": {
|
|
622
|
+
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
623
|
+
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
624
|
+
"@angular/platform-browser": "^21.0.0 || ^22.0.0",
|
|
625
|
+
"rxjs": "^6.5.3 || ^7.4.0"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
593
628
|
"node_modules/@angular/cli": {
|
|
594
|
-
"version": "21.2.
|
|
595
|
-
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.
|
|
596
|
-
"integrity": "sha512-
|
|
629
|
+
"version": "21.2.19",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.2.19.tgz",
|
|
631
|
+
"integrity": "sha512-i78NzvoNonAY17QgzSmqrYnXHmEfraLv4wZ/o/m3efxuz61ZJ+5X/PsCeAhbwBvQfRrPRQaJV2tK9vGjHa+U6w==",
|
|
597
632
|
"dev": true,
|
|
598
633
|
"license": "MIT",
|
|
599
634
|
"dependencies": {
|
|
600
|
-
"@angular-devkit/architect": "0.2102.
|
|
601
|
-
"@angular-devkit/core": "21.2.
|
|
602
|
-
"@angular-devkit/schematics": "21.2.
|
|
635
|
+
"@angular-devkit/architect": "0.2102.19",
|
|
636
|
+
"@angular-devkit/core": "21.2.19",
|
|
637
|
+
"@angular-devkit/schematics": "21.2.19",
|
|
603
638
|
"@inquirer/prompts": "7.10.1",
|
|
604
639
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
605
640
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
606
|
-
"@schematics/angular": "21.2.
|
|
641
|
+
"@schematics/angular": "21.2.19",
|
|
607
642
|
"@yarnpkg/lockfile": "1.1.0",
|
|
608
643
|
"algoliasearch": "5.48.1",
|
|
609
644
|
"ini": "6.0.0",
|
|
@@ -729,6 +764,23 @@
|
|
|
729
764
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
730
765
|
}
|
|
731
766
|
},
|
|
767
|
+
"node_modules/@angular/material": {
|
|
768
|
+
"version": "21.2.14",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/@angular/material/-/material-21.2.14.tgz",
|
|
770
|
+
"integrity": "sha512-fMQca8VRtei93JRRG9qQ+u08DCb0nga59Esoakq5yx3+A1NfdpFeUS1tBns56U04o8KAaIAwZK3NBqXz8ZKNqg==",
|
|
771
|
+
"license": "MIT",
|
|
772
|
+
"dependencies": {
|
|
773
|
+
"tslib": "^2.3.0"
|
|
774
|
+
},
|
|
775
|
+
"peerDependencies": {
|
|
776
|
+
"@angular/cdk": "21.2.14",
|
|
777
|
+
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
778
|
+
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
779
|
+
"@angular/forms": "^21.0.0 || ^22.0.0",
|
|
780
|
+
"@angular/platform-browser": "^21.0.0 || ^22.0.0",
|
|
781
|
+
"rxjs": "^6.5.3 || ^7.4.0"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
732
784
|
"node_modules/@angular/platform-browser": {
|
|
733
785
|
"version": "21.2.18",
|
|
734
786
|
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-21.2.18.tgz",
|
|
@@ -2096,9 +2148,9 @@
|
|
|
2096
2148
|
}
|
|
2097
2149
|
},
|
|
2098
2150
|
"node_modules/@eslint/eslintrc": {
|
|
2099
|
-
"version": "3.3.
|
|
2100
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
2101
|
-
"integrity": "sha512-
|
|
2151
|
+
"version": "3.3.6",
|
|
2152
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
|
|
2153
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
2102
2154
|
"dev": true,
|
|
2103
2155
|
"license": "MIT",
|
|
2104
2156
|
"dependencies": {
|
|
@@ -2108,7 +2160,7 @@
|
|
|
2108
2160
|
"globals": "^14.0.0",
|
|
2109
2161
|
"ignore": "^5.2.0",
|
|
2110
2162
|
"import-fresh": "^3.2.1",
|
|
2111
|
-
"js-yaml": "^4.
|
|
2163
|
+
"js-yaml": "^4.3.0",
|
|
2112
2164
|
"minimatch": "^3.1.5",
|
|
2113
2165
|
"strip-json-comments": "^3.1.1"
|
|
2114
2166
|
},
|
|
@@ -2185,9 +2237,9 @@
|
|
|
2185
2237
|
}
|
|
2186
2238
|
},
|
|
2187
2239
|
"node_modules/@eslint/js": {
|
|
2188
|
-
"version": "9.39.
|
|
2189
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
2190
|
-
"integrity": "sha512-
|
|
2240
|
+
"version": "9.39.5",
|
|
2241
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
|
|
2242
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
2191
2243
|
"dev": true,
|
|
2192
2244
|
"license": "MIT",
|
|
2193
2245
|
"engines": {
|
|
@@ -4676,12 +4728,12 @@
|
|
|
4676
4728
|
]
|
|
4677
4729
|
},
|
|
4678
4730
|
"node_modules/@salesforce/angular-plugin-ui-bundle": {
|
|
4679
|
-
"version": "11.
|
|
4680
|
-
"resolved": "https://registry.npmjs.org/@salesforce/angular-plugin-ui-bundle/-/angular-plugin-ui-bundle-11.
|
|
4681
|
-
"integrity": "sha512-
|
|
4731
|
+
"version": "11.31.9",
|
|
4732
|
+
"resolved": "https://registry.npmjs.org/@salesforce/angular-plugin-ui-bundle/-/angular-plugin-ui-bundle-11.31.9.tgz",
|
|
4733
|
+
"integrity": "sha512-6OD2GHCuo7rg9gqi5YnQGSR7HHFLIaFhiITESFgPVyHapaUx64+ypsV9npJLHqsyugol65t0FxYCjWS8fI2aEA==",
|
|
4682
4734
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4683
4735
|
"dependencies": {
|
|
4684
|
-
"@salesforce/ui-bundle": "^11.
|
|
4736
|
+
"@salesforce/ui-bundle": "^11.31.9",
|
|
4685
4737
|
"chokidar": "^4.0.0"
|
|
4686
4738
|
},
|
|
4687
4739
|
"bin": {
|
|
@@ -4723,9 +4775,9 @@
|
|
|
4723
4775
|
}
|
|
4724
4776
|
},
|
|
4725
4777
|
"node_modules/@salesforce/core": {
|
|
4726
|
-
"version": "8.32.
|
|
4727
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.
|
|
4728
|
-
"integrity": "sha512-
|
|
4778
|
+
"version": "8.32.4",
|
|
4779
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.4.tgz",
|
|
4780
|
+
"integrity": "sha512-0p/nQ24nfPGD0ERp/NHAccgo+66+rDx6c9M88wItDYAMu9+CHcW+FHOLNDAAUsYwinHHVsqVSL8Eyag7gvitqA==",
|
|
4729
4781
|
"license": "BSD-3-Clause",
|
|
4730
4782
|
"dependencies": {
|
|
4731
4783
|
"@jsforce/jsforce-node": "^3.10.17",
|
|
@@ -4765,9 +4817,9 @@
|
|
|
4765
4817
|
}
|
|
4766
4818
|
},
|
|
4767
4819
|
"node_modules/@salesforce/jsonrpc": {
|
|
4768
|
-
"version": "11.
|
|
4769
|
-
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-11.
|
|
4770
|
-
"integrity": "sha512
|
|
4820
|
+
"version": "11.31.9",
|
|
4821
|
+
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-11.31.9.tgz",
|
|
4822
|
+
"integrity": "sha512-/pIXFKvgDMSOaAA3Qo0+fAhb+9k71MpVwodF1wJjvksc5y3Xf51bTh0oBoVn/Rw+YzGNXPP0S/zsKoAeWiW4yA==",
|
|
4771
4823
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
4772
4824
|
},
|
|
4773
4825
|
"node_modules/@salesforce/kit": {
|
|
@@ -4780,9 +4832,9 @@
|
|
|
4780
4832
|
}
|
|
4781
4833
|
},
|
|
4782
4834
|
"node_modules/@salesforce/platform-sdk": {
|
|
4783
|
-
"version": "11.
|
|
4784
|
-
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-11.
|
|
4785
|
-
"integrity": "sha512-
|
|
4835
|
+
"version": "11.31.9",
|
|
4836
|
+
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-11.31.9.tgz",
|
|
4837
|
+
"integrity": "sha512-eDsLbvwt5ED5XNbwoo2tcjGYfX6mG/peYHcIxCl0ArDGhTG9eTc+FHOfdZ/NEdPUCvY+Wa03nbmuMqEyJQKjuw==",
|
|
4786
4838
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4787
4839
|
"dependencies": {
|
|
4788
4840
|
"@conduit-client/command-http-cache-control": "3.19.6",
|
|
@@ -4794,8 +4846,8 @@
|
|
|
4794
4846
|
"@conduit-client/service-pubsub": "3.19.6",
|
|
4795
4847
|
"@conduit-client/service-retry": "3.19.6",
|
|
4796
4848
|
"@conduit-client/utils": "3.19.6",
|
|
4797
|
-
"@salesforce/jsonrpc": "^11.
|
|
4798
|
-
"@salesforce/sf-embedding-bridge": "2.2.
|
|
4849
|
+
"@salesforce/jsonrpc": "^11.31.9",
|
|
4850
|
+
"@salesforce/sf-embedding-bridge": "2.2.5-rc.2"
|
|
4799
4851
|
},
|
|
4800
4852
|
"peerDependencies": {
|
|
4801
4853
|
"o11y": ">=260.0.0",
|
|
@@ -4803,9 +4855,9 @@
|
|
|
4803
4855
|
}
|
|
4804
4856
|
},
|
|
4805
4857
|
"node_modules/@salesforce/sf-embedding-bridge": {
|
|
4806
|
-
"version": "2.2.
|
|
4807
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-embedding-bridge/-/sf-embedding-bridge-2.2.
|
|
4808
|
-
"integrity": "sha512-
|
|
4858
|
+
"version": "2.2.5-rc.2",
|
|
4859
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-embedding-bridge/-/sf-embedding-bridge-2.2.5-rc.2.tgz",
|
|
4860
|
+
"integrity": "sha512-aK9YDDMrzwEEUk27orpTMMcDEvO9FeYRIPNQ0cYAfdi0AgxeYtgjlEHM6nbtGBvkSN3sZhWcVJq9VsyiXCHWkQ==",
|
|
4809
4861
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4810
4862
|
"dependencies": {
|
|
4811
4863
|
"@salesforce/jsonrpc": "^10.12.3"
|
|
@@ -4827,29 +4879,29 @@
|
|
|
4827
4879
|
}
|
|
4828
4880
|
},
|
|
4829
4881
|
"node_modules/@salesforce/ui-bundle": {
|
|
4830
|
-
"version": "11.
|
|
4831
|
-
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-11.
|
|
4832
|
-
"integrity": "sha512-
|
|
4882
|
+
"version": "11.31.9",
|
|
4883
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-11.31.9.tgz",
|
|
4884
|
+
"integrity": "sha512-6iTMDctAqXwV7CvmRxC+st8X4+dHc0oUCi+pwsL5XVyK7eBeFvhfc82f4+c0J3Kd1if9oH5fCJenMl+SOCuX/Q==",
|
|
4833
4885
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4834
4886
|
"dependencies": {
|
|
4835
4887
|
"@salesforce/core": "^8.23.4",
|
|
4836
|
-
"@salesforce/platform-sdk": "^11.
|
|
4888
|
+
"@salesforce/platform-sdk": "^11.31.9",
|
|
4837
4889
|
"micromatch": "^4.0.8",
|
|
4838
|
-
"path-to-regexp": "^8.
|
|
4890
|
+
"path-to-regexp": "^8.4.2"
|
|
4839
4891
|
},
|
|
4840
4892
|
"engines": {
|
|
4841
4893
|
"node": ">=20.0.0"
|
|
4842
4894
|
}
|
|
4843
4895
|
},
|
|
4844
4896
|
"node_modules/@schematics/angular": {
|
|
4845
|
-
"version": "21.2.
|
|
4846
|
-
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.
|
|
4847
|
-
"integrity": "sha512-
|
|
4897
|
+
"version": "21.2.19",
|
|
4898
|
+
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.2.19.tgz",
|
|
4899
|
+
"integrity": "sha512-eL+UU9eizoadhDB4YEctRmmo0A5iwrSmGzeuEa6akrq8nLGVWM8zO91HTJutkPqGQjelF+UOiOShsQSZAU9SIQ==",
|
|
4848
4900
|
"dev": true,
|
|
4849
4901
|
"license": "MIT",
|
|
4850
4902
|
"dependencies": {
|
|
4851
|
-
"@angular-devkit/core": "21.2.
|
|
4852
|
-
"@angular-devkit/schematics": "21.2.
|
|
4903
|
+
"@angular-devkit/core": "21.2.19",
|
|
4904
|
+
"@angular-devkit/schematics": "21.2.19",
|
|
4853
4905
|
"jsonc-parser": "3.3.1"
|
|
4854
4906
|
},
|
|
4855
4907
|
"engines": {
|
|
@@ -4957,49 +5009,49 @@
|
|
|
4957
5009
|
"license": "MIT"
|
|
4958
5010
|
},
|
|
4959
5011
|
"node_modules/@tailwindcss/node": {
|
|
4960
|
-
"version": "4.3.
|
|
4961
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
4962
|
-
"integrity": "sha512
|
|
5012
|
+
"version": "4.3.3",
|
|
5013
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
|
|
5014
|
+
"integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
|
|
4963
5015
|
"dev": true,
|
|
4964
5016
|
"license": "MIT",
|
|
4965
5017
|
"dependencies": {
|
|
4966
5018
|
"@jridgewell/remapping": "^2.3.5",
|
|
4967
|
-
"enhanced-resolve": "5.
|
|
5019
|
+
"enhanced-resolve": "^5.24.1",
|
|
4968
5020
|
"jiti": "^2.7.0",
|
|
4969
5021
|
"lightningcss": "1.32.0",
|
|
4970
5022
|
"magic-string": "^0.30.21",
|
|
4971
5023
|
"source-map-js": "^1.2.1",
|
|
4972
|
-
"tailwindcss": "4.3.
|
|
5024
|
+
"tailwindcss": "4.3.3"
|
|
4973
5025
|
}
|
|
4974
5026
|
},
|
|
4975
5027
|
"node_modules/@tailwindcss/oxide": {
|
|
4976
|
-
"version": "4.3.
|
|
4977
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
4978
|
-
"integrity": "sha512-
|
|
5028
|
+
"version": "4.3.3",
|
|
5029
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
|
|
5030
|
+
"integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
|
|
4979
5031
|
"dev": true,
|
|
4980
5032
|
"license": "MIT",
|
|
4981
5033
|
"engines": {
|
|
4982
5034
|
"node": ">= 20"
|
|
4983
5035
|
},
|
|
4984
5036
|
"optionalDependencies": {
|
|
4985
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
4986
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
4987
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
4988
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
4989
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
4990
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
4991
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
4992
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
4993
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
4994
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
4995
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
4996
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
5037
|
+
"@tailwindcss/oxide-android-arm64": "4.3.3",
|
|
5038
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.3",
|
|
5039
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.3",
|
|
5040
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.3",
|
|
5041
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
|
|
5042
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
|
|
5043
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
|
|
5044
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
|
|
5045
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.3",
|
|
5046
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.3",
|
|
5047
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
|
|
5048
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
|
|
4997
5049
|
}
|
|
4998
5050
|
},
|
|
4999
5051
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
5000
|
-
"version": "4.3.
|
|
5001
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
5002
|
-
"integrity": "sha512-
|
|
5052
|
+
"version": "4.3.3",
|
|
5053
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
|
|
5054
|
+
"integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
|
|
5003
5055
|
"cpu": [
|
|
5004
5056
|
"arm64"
|
|
5005
5057
|
],
|
|
@@ -5014,9 +5066,9 @@
|
|
|
5014
5066
|
}
|
|
5015
5067
|
},
|
|
5016
5068
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
5017
|
-
"version": "4.3.
|
|
5018
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
5019
|
-
"integrity": "sha512-
|
|
5069
|
+
"version": "4.3.3",
|
|
5070
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
|
|
5071
|
+
"integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
|
|
5020
5072
|
"cpu": [
|
|
5021
5073
|
"arm64"
|
|
5022
5074
|
],
|
|
@@ -5031,9 +5083,9 @@
|
|
|
5031
5083
|
}
|
|
5032
5084
|
},
|
|
5033
5085
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
5034
|
-
"version": "4.3.
|
|
5035
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
5036
|
-
"integrity": "sha512-
|
|
5086
|
+
"version": "4.3.3",
|
|
5087
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
|
|
5088
|
+
"integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
|
|
5037
5089
|
"cpu": [
|
|
5038
5090
|
"x64"
|
|
5039
5091
|
],
|
|
@@ -5048,9 +5100,9 @@
|
|
|
5048
5100
|
}
|
|
5049
5101
|
},
|
|
5050
5102
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
5051
|
-
"version": "4.3.
|
|
5052
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
5053
|
-
"integrity": "sha512-
|
|
5103
|
+
"version": "4.3.3",
|
|
5104
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
|
|
5105
|
+
"integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
|
|
5054
5106
|
"cpu": [
|
|
5055
5107
|
"x64"
|
|
5056
5108
|
],
|
|
@@ -5065,9 +5117,9 @@
|
|
|
5065
5117
|
}
|
|
5066
5118
|
},
|
|
5067
5119
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
5068
|
-
"version": "4.3.
|
|
5069
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
5070
|
-
"integrity": "sha512-
|
|
5120
|
+
"version": "4.3.3",
|
|
5121
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
|
|
5122
|
+
"integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
|
|
5071
5123
|
"cpu": [
|
|
5072
5124
|
"arm"
|
|
5073
5125
|
],
|
|
@@ -5082,9 +5134,9 @@
|
|
|
5082
5134
|
}
|
|
5083
5135
|
},
|
|
5084
5136
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
5085
|
-
"version": "4.3.
|
|
5086
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
5087
|
-
"integrity": "sha512-
|
|
5137
|
+
"version": "4.3.3",
|
|
5138
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
|
|
5139
|
+
"integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
|
|
5088
5140
|
"cpu": [
|
|
5089
5141
|
"arm64"
|
|
5090
5142
|
],
|
|
@@ -5102,9 +5154,9 @@
|
|
|
5102
5154
|
}
|
|
5103
5155
|
},
|
|
5104
5156
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
5105
|
-
"version": "4.3.
|
|
5106
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
5107
|
-
"integrity": "sha512-
|
|
5157
|
+
"version": "4.3.3",
|
|
5158
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
|
|
5159
|
+
"integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
|
|
5108
5160
|
"cpu": [
|
|
5109
5161
|
"arm64"
|
|
5110
5162
|
],
|
|
@@ -5122,9 +5174,9 @@
|
|
|
5122
5174
|
}
|
|
5123
5175
|
},
|
|
5124
5176
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
5125
|
-
"version": "4.3.
|
|
5126
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
5127
|
-
"integrity": "sha512-
|
|
5177
|
+
"version": "4.3.3",
|
|
5178
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
|
|
5179
|
+
"integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
|
|
5128
5180
|
"cpu": [
|
|
5129
5181
|
"x64"
|
|
5130
5182
|
],
|
|
@@ -5142,9 +5194,9 @@
|
|
|
5142
5194
|
}
|
|
5143
5195
|
},
|
|
5144
5196
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
5145
|
-
"version": "4.3.
|
|
5146
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
5147
|
-
"integrity": "sha512-
|
|
5197
|
+
"version": "4.3.3",
|
|
5198
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
|
|
5199
|
+
"integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
|
|
5148
5200
|
"cpu": [
|
|
5149
5201
|
"x64"
|
|
5150
5202
|
],
|
|
@@ -5162,9 +5214,9 @@
|
|
|
5162
5214
|
}
|
|
5163
5215
|
},
|
|
5164
5216
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
5165
|
-
"version": "4.3.
|
|
5166
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
5167
|
-
"integrity": "sha512-
|
|
5217
|
+
"version": "4.3.3",
|
|
5218
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
|
|
5219
|
+
"integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
|
|
5168
5220
|
"bundleDependencies": [
|
|
5169
5221
|
"@napi-rs/wasm-runtime",
|
|
5170
5222
|
"@emnapi/core",
|
|
@@ -5258,9 +5310,9 @@
|
|
|
5258
5310
|
"optional": true
|
|
5259
5311
|
},
|
|
5260
5312
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
5261
|
-
"version": "4.3.
|
|
5262
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
5263
|
-
"integrity": "sha512-
|
|
5313
|
+
"version": "4.3.3",
|
|
5314
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
|
|
5315
|
+
"integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
|
|
5264
5316
|
"cpu": [
|
|
5265
5317
|
"arm64"
|
|
5266
5318
|
],
|
|
@@ -5275,9 +5327,9 @@
|
|
|
5275
5327
|
}
|
|
5276
5328
|
},
|
|
5277
5329
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
5278
|
-
"version": "4.3.
|
|
5279
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
5280
|
-
"integrity": "sha512-
|
|
5330
|
+
"version": "4.3.3",
|
|
5331
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
|
|
5332
|
+
"integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
|
|
5281
5333
|
"cpu": [
|
|
5282
5334
|
"x64"
|
|
5283
5335
|
],
|
|
@@ -5292,17 +5344,17 @@
|
|
|
5292
5344
|
}
|
|
5293
5345
|
},
|
|
5294
5346
|
"node_modules/@tailwindcss/postcss": {
|
|
5295
|
-
"version": "4.3.
|
|
5296
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.
|
|
5297
|
-
"integrity": "sha512-
|
|
5347
|
+
"version": "4.3.3",
|
|
5348
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.3.tgz",
|
|
5349
|
+
"integrity": "sha512-JTSZZGQi1AyKirbLN3azmjVzef92tcX7h+iSqPdaeStyFpGpDlKvvpxeOE8njhbUanbRwr3z8DyzhICWnMtQeg==",
|
|
5298
5350
|
"dev": true,
|
|
5299
5351
|
"license": "MIT",
|
|
5300
5352
|
"dependencies": {
|
|
5301
5353
|
"@alloc/quick-lru": "^5.2.0",
|
|
5302
|
-
"@tailwindcss/node": "4.3.
|
|
5303
|
-
"@tailwindcss/oxide": "4.3.
|
|
5304
|
-
"postcss": "^8.5.
|
|
5305
|
-
"tailwindcss": "4.3.
|
|
5354
|
+
"@tailwindcss/node": "4.3.3",
|
|
5355
|
+
"@tailwindcss/oxide": "4.3.3",
|
|
5356
|
+
"postcss": "^8.5.16",
|
|
5357
|
+
"tailwindcss": "4.3.3"
|
|
5306
5358
|
}
|
|
5307
5359
|
},
|
|
5308
5360
|
"node_modules/@tsconfig/node10": {
|
|
@@ -5409,17 +5461,17 @@
|
|
|
5409
5461
|
}
|
|
5410
5462
|
},
|
|
5411
5463
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5412
|
-
"version": "8.
|
|
5413
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
5414
|
-
"integrity": "sha512-
|
|
5464
|
+
"version": "8.64.0",
|
|
5465
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.64.0.tgz",
|
|
5466
|
+
"integrity": "sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==",
|
|
5415
5467
|
"dev": true,
|
|
5416
5468
|
"license": "MIT",
|
|
5417
5469
|
"dependencies": {
|
|
5418
5470
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5419
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5420
|
-
"@typescript-eslint/type-utils": "8.
|
|
5421
|
-
"@typescript-eslint/utils": "8.
|
|
5422
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5471
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
5472
|
+
"@typescript-eslint/type-utils": "8.64.0",
|
|
5473
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
5474
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
5423
5475
|
"ignore": "^7.0.5",
|
|
5424
5476
|
"natural-compare": "^1.4.0",
|
|
5425
5477
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5432,22 +5484,22 @@
|
|
|
5432
5484
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5433
5485
|
},
|
|
5434
5486
|
"peerDependencies": {
|
|
5435
|
-
"@typescript-eslint/parser": "^8.
|
|
5487
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
5436
5488
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5437
5489
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5438
5490
|
}
|
|
5439
5491
|
},
|
|
5440
5492
|
"node_modules/@typescript-eslint/parser": {
|
|
5441
|
-
"version": "8.
|
|
5442
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
5443
|
-
"integrity": "sha512-
|
|
5493
|
+
"version": "8.64.0",
|
|
5494
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.64.0.tgz",
|
|
5495
|
+
"integrity": "sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==",
|
|
5444
5496
|
"dev": true,
|
|
5445
5497
|
"license": "MIT",
|
|
5446
5498
|
"dependencies": {
|
|
5447
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5448
|
-
"@typescript-eslint/types": "8.
|
|
5449
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5450
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5499
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
5500
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5501
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
5502
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
5451
5503
|
"debug": "^4.4.3"
|
|
5452
5504
|
},
|
|
5453
5505
|
"engines": {
|
|
@@ -5463,14 +5515,14 @@
|
|
|
5463
5515
|
}
|
|
5464
5516
|
},
|
|
5465
5517
|
"node_modules/@typescript-eslint/project-service": {
|
|
5466
|
-
"version": "8.
|
|
5467
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
5468
|
-
"integrity": "sha512-
|
|
5518
|
+
"version": "8.64.0",
|
|
5519
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.64.0.tgz",
|
|
5520
|
+
"integrity": "sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==",
|
|
5469
5521
|
"dev": true,
|
|
5470
5522
|
"license": "MIT",
|
|
5471
5523
|
"dependencies": {
|
|
5472
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
5473
|
-
"@typescript-eslint/types": "^8.
|
|
5524
|
+
"@typescript-eslint/tsconfig-utils": "^8.64.0",
|
|
5525
|
+
"@typescript-eslint/types": "^8.64.0",
|
|
5474
5526
|
"debug": "^4.4.3"
|
|
5475
5527
|
},
|
|
5476
5528
|
"engines": {
|
|
@@ -5485,14 +5537,14 @@
|
|
|
5485
5537
|
}
|
|
5486
5538
|
},
|
|
5487
5539
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
5488
|
-
"version": "8.
|
|
5489
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
5490
|
-
"integrity": "sha512-
|
|
5540
|
+
"version": "8.64.0",
|
|
5541
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.64.0.tgz",
|
|
5542
|
+
"integrity": "sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==",
|
|
5491
5543
|
"dev": true,
|
|
5492
5544
|
"license": "MIT",
|
|
5493
5545
|
"dependencies": {
|
|
5494
|
-
"@typescript-eslint/types": "8.
|
|
5495
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5546
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5547
|
+
"@typescript-eslint/visitor-keys": "8.64.0"
|
|
5496
5548
|
},
|
|
5497
5549
|
"engines": {
|
|
5498
5550
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5503,9 +5555,9 @@
|
|
|
5503
5555
|
}
|
|
5504
5556
|
},
|
|
5505
5557
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
5506
|
-
"version": "8.
|
|
5507
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
5508
|
-
"integrity": "sha512-
|
|
5558
|
+
"version": "8.64.0",
|
|
5559
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.64.0.tgz",
|
|
5560
|
+
"integrity": "sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==",
|
|
5509
5561
|
"dev": true,
|
|
5510
5562
|
"license": "MIT",
|
|
5511
5563
|
"engines": {
|
|
@@ -5520,15 +5572,15 @@
|
|
|
5520
5572
|
}
|
|
5521
5573
|
},
|
|
5522
5574
|
"node_modules/@typescript-eslint/type-utils": {
|
|
5523
|
-
"version": "8.
|
|
5524
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
5525
|
-
"integrity": "sha512-
|
|
5575
|
+
"version": "8.64.0",
|
|
5576
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.64.0.tgz",
|
|
5577
|
+
"integrity": "sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==",
|
|
5526
5578
|
"dev": true,
|
|
5527
5579
|
"license": "MIT",
|
|
5528
5580
|
"dependencies": {
|
|
5529
|
-
"@typescript-eslint/types": "8.
|
|
5530
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5531
|
-
"@typescript-eslint/utils": "8.
|
|
5581
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5582
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
5583
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
5532
5584
|
"debug": "^4.4.3",
|
|
5533
5585
|
"ts-api-utils": "^2.5.0"
|
|
5534
5586
|
},
|
|
@@ -5545,9 +5597,9 @@
|
|
|
5545
5597
|
}
|
|
5546
5598
|
},
|
|
5547
5599
|
"node_modules/@typescript-eslint/types": {
|
|
5548
|
-
"version": "8.
|
|
5549
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
5550
|
-
"integrity": "sha512-
|
|
5600
|
+
"version": "8.64.0",
|
|
5601
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.64.0.tgz",
|
|
5602
|
+
"integrity": "sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==",
|
|
5551
5603
|
"dev": true,
|
|
5552
5604
|
"license": "MIT",
|
|
5553
5605
|
"engines": {
|
|
@@ -5559,16 +5611,16 @@
|
|
|
5559
5611
|
}
|
|
5560
5612
|
},
|
|
5561
5613
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
5562
|
-
"version": "8.
|
|
5563
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
5564
|
-
"integrity": "sha512-
|
|
5614
|
+
"version": "8.64.0",
|
|
5615
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.64.0.tgz",
|
|
5616
|
+
"integrity": "sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==",
|
|
5565
5617
|
"dev": true,
|
|
5566
5618
|
"license": "MIT",
|
|
5567
5619
|
"dependencies": {
|
|
5568
|
-
"@typescript-eslint/project-service": "8.
|
|
5569
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
5570
|
-
"@typescript-eslint/types": "8.
|
|
5571
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
5620
|
+
"@typescript-eslint/project-service": "8.64.0",
|
|
5621
|
+
"@typescript-eslint/tsconfig-utils": "8.64.0",
|
|
5622
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5623
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
5572
5624
|
"debug": "^4.4.3",
|
|
5573
5625
|
"minimatch": "^10.2.2",
|
|
5574
5626
|
"semver": "^7.7.3",
|
|
@@ -5587,16 +5639,16 @@
|
|
|
5587
5639
|
}
|
|
5588
5640
|
},
|
|
5589
5641
|
"node_modules/@typescript-eslint/utils": {
|
|
5590
|
-
"version": "8.
|
|
5591
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
5592
|
-
"integrity": "sha512-
|
|
5642
|
+
"version": "8.64.0",
|
|
5643
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.64.0.tgz",
|
|
5644
|
+
"integrity": "sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==",
|
|
5593
5645
|
"dev": true,
|
|
5594
5646
|
"license": "MIT",
|
|
5595
5647
|
"dependencies": {
|
|
5596
5648
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
5597
|
-
"@typescript-eslint/scope-manager": "8.
|
|
5598
|
-
"@typescript-eslint/types": "8.
|
|
5599
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
5649
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
5650
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5651
|
+
"@typescript-eslint/typescript-estree": "8.64.0"
|
|
5600
5652
|
},
|
|
5601
5653
|
"engines": {
|
|
5602
5654
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5611,13 +5663,13 @@
|
|
|
5611
5663
|
}
|
|
5612
5664
|
},
|
|
5613
5665
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
5614
|
-
"version": "8.
|
|
5615
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
5616
|
-
"integrity": "sha512-
|
|
5666
|
+
"version": "8.64.0",
|
|
5667
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.64.0.tgz",
|
|
5668
|
+
"integrity": "sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==",
|
|
5617
5669
|
"dev": true,
|
|
5618
5670
|
"license": "MIT",
|
|
5619
5671
|
"dependencies": {
|
|
5620
|
-
"@typescript-eslint/types": "8.
|
|
5672
|
+
"@typescript-eslint/types": "8.64.0",
|
|
5621
5673
|
"eslint-visitor-keys": "^5.0.0"
|
|
5622
5674
|
},
|
|
5623
5675
|
"engines": {
|
|
@@ -6166,9 +6218,9 @@
|
|
|
6166
6218
|
}
|
|
6167
6219
|
},
|
|
6168
6220
|
"node_modules/baseline-browser-mapping": {
|
|
6169
|
-
"version": "2.10.
|
|
6170
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
6171
|
-
"integrity": "sha512-
|
|
6221
|
+
"version": "2.10.43",
|
|
6222
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz",
|
|
6223
|
+
"integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==",
|
|
6172
6224
|
"license": "Apache-2.0",
|
|
6173
6225
|
"bin": {
|
|
6174
6226
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -6370,9 +6422,9 @@
|
|
|
6370
6422
|
}
|
|
6371
6423
|
},
|
|
6372
6424
|
"node_modules/browserslist": {
|
|
6373
|
-
"version": "4.28.
|
|
6374
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
6375
|
-
"integrity": "sha512-
|
|
6425
|
+
"version": "4.28.6",
|
|
6426
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
|
|
6427
|
+
"integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
|
|
6376
6428
|
"funding": [
|
|
6377
6429
|
{
|
|
6378
6430
|
"type": "opencollective",
|
|
@@ -6390,9 +6442,9 @@
|
|
|
6390
6442
|
"license": "MIT",
|
|
6391
6443
|
"dependencies": {
|
|
6392
6444
|
"baseline-browser-mapping": "^2.10.42",
|
|
6393
|
-
"caniuse-lite": "^1.0.
|
|
6394
|
-
"electron-to-chromium": "^1.5.
|
|
6395
|
-
"node-releases": "^2.0.
|
|
6445
|
+
"caniuse-lite": "^1.0.30001803",
|
|
6446
|
+
"electron-to-chromium": "^1.5.389",
|
|
6447
|
+
"node-releases": "^2.0.51",
|
|
6396
6448
|
"update-browserslist-db": "^1.2.3"
|
|
6397
6449
|
},
|
|
6398
6450
|
"bin": {
|
|
@@ -6544,9 +6596,9 @@
|
|
|
6544
6596
|
}
|
|
6545
6597
|
},
|
|
6546
6598
|
"node_modules/caniuse-lite": {
|
|
6547
|
-
"version": "1.0.
|
|
6548
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
6549
|
-
"integrity": "sha512-
|
|
6599
|
+
"version": "1.0.30001806",
|
|
6600
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
|
|
6601
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
6550
6602
|
"funding": [
|
|
6551
6603
|
{
|
|
6552
6604
|
"type": "opencollective",
|
|
@@ -7323,9 +7375,9 @@
|
|
|
7323
7375
|
"license": "MIT"
|
|
7324
7376
|
},
|
|
7325
7377
|
"node_modules/electron-to-chromium": {
|
|
7326
|
-
"version": "1.5.
|
|
7327
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
7328
|
-
"integrity": "sha512-
|
|
7378
|
+
"version": "1.5.393",
|
|
7379
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz",
|
|
7380
|
+
"integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==",
|
|
7329
7381
|
"license": "ISC"
|
|
7330
7382
|
},
|
|
7331
7383
|
"node_modules/emoji-regex": {
|
|
@@ -7354,9 +7406,9 @@
|
|
|
7354
7406
|
}
|
|
7355
7407
|
},
|
|
7356
7408
|
"node_modules/enhanced-resolve": {
|
|
7357
|
-
"version": "5.
|
|
7358
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
7359
|
-
"integrity": "sha512-
|
|
7409
|
+
"version": "5.24.2",
|
|
7410
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz",
|
|
7411
|
+
"integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==",
|
|
7360
7412
|
"dev": true,
|
|
7361
7413
|
"license": "MIT",
|
|
7362
7414
|
"dependencies": {
|
|
@@ -7420,9 +7472,9 @@
|
|
|
7420
7472
|
}
|
|
7421
7473
|
},
|
|
7422
7474
|
"node_modules/es-module-lexer": {
|
|
7423
|
-
"version": "2.3.
|
|
7424
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.
|
|
7425
|
-
"integrity": "sha512-
|
|
7475
|
+
"version": "2.3.1",
|
|
7476
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
7477
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
7426
7478
|
"license": "MIT"
|
|
7427
7479
|
},
|
|
7428
7480
|
"node_modules/es-object-atoms": {
|
|
@@ -7523,9 +7575,9 @@
|
|
|
7523
7575
|
}
|
|
7524
7576
|
},
|
|
7525
7577
|
"node_modules/eslint": {
|
|
7526
|
-
"version": "9.39.
|
|
7527
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
7528
|
-
"integrity": "sha512-
|
|
7578
|
+
"version": "9.39.5",
|
|
7579
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
|
|
7580
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7529
7581
|
"dev": true,
|
|
7530
7582
|
"license": "MIT",
|
|
7531
7583
|
"dependencies": {
|
|
@@ -7534,8 +7586,8 @@
|
|
|
7534
7586
|
"@eslint/config-array": "^0.21.2",
|
|
7535
7587
|
"@eslint/config-helpers": "^0.4.2",
|
|
7536
7588
|
"@eslint/core": "^0.17.0",
|
|
7537
|
-
"@eslint/eslintrc": "^3.3.
|
|
7538
|
-
"@eslint/js": "9.39.
|
|
7589
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
7590
|
+
"@eslint/js": "9.39.5",
|
|
7539
7591
|
"@eslint/plugin-kit": "^0.4.1",
|
|
7540
7592
|
"@humanfs/node": "^0.16.6",
|
|
7541
7593
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -7960,12 +8012,13 @@
|
|
|
7960
8012
|
}
|
|
7961
8013
|
},
|
|
7962
8014
|
"node_modules/express-rate-limit": {
|
|
7963
|
-
"version": "8.
|
|
7964
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
7965
|
-
"integrity": "sha512-
|
|
8015
|
+
"version": "8.6.0",
|
|
8016
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
8017
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
7966
8018
|
"dev": true,
|
|
7967
8019
|
"license": "MIT",
|
|
7968
8020
|
"dependencies": {
|
|
8021
|
+
"debug": "^4.4.3",
|
|
7969
8022
|
"ip-address": "^10.2.0"
|
|
7970
8023
|
},
|
|
7971
8024
|
"engines": {
|
|
@@ -8500,9 +8553,9 @@
|
|
|
8500
8553
|
"license": "MIT"
|
|
8501
8554
|
},
|
|
8502
8555
|
"node_modules/hono": {
|
|
8503
|
-
"version": "4.12.
|
|
8504
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
8505
|
-
"integrity": "sha512-
|
|
8556
|
+
"version": "4.12.31",
|
|
8557
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
|
|
8558
|
+
"integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
|
|
8506
8559
|
"dev": true,
|
|
8507
8560
|
"license": "MIT",
|
|
8508
8561
|
"engines": {
|
|
@@ -10221,9 +10274,9 @@
|
|
|
10221
10274
|
}
|
|
10222
10275
|
},
|
|
10223
10276
|
"node_modules/nanoid": {
|
|
10224
|
-
"version": "3.3.
|
|
10225
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
10226
|
-
"integrity": "sha512-
|
|
10277
|
+
"version": "3.3.16",
|
|
10278
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
10279
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
10227
10280
|
"funding": [
|
|
10228
10281
|
{
|
|
10229
10282
|
"type": "github",
|
|
@@ -10503,9 +10556,9 @@
|
|
|
10503
10556
|
}
|
|
10504
10557
|
},
|
|
10505
10558
|
"node_modules/o11y_schema": {
|
|
10506
|
-
"version": "264.
|
|
10507
|
-
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.
|
|
10508
|
-
"integrity": "sha512-
|
|
10559
|
+
"version": "264.97.0",
|
|
10560
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.97.0.tgz",
|
|
10561
|
+
"integrity": "sha512-UMDNXEJy3ABnSXMFRVp0dPiXKuldkfQvt1EMWh/M7wWObJH8hDYK2dmn8oAAqVowD/OdtSiXmHLmSuUFSWlsVw==",
|
|
10509
10562
|
"license": "BSD-3-Clause",
|
|
10510
10563
|
"peer": true
|
|
10511
10564
|
},
|
|
@@ -10540,9 +10593,9 @@
|
|
|
10540
10593
|
}
|
|
10541
10594
|
},
|
|
10542
10595
|
"node_modules/obug": {
|
|
10543
|
-
"version": "2.1.
|
|
10544
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.
|
|
10545
|
-
"integrity": "sha512-
|
|
10596
|
+
"version": "2.1.4",
|
|
10597
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
|
|
10598
|
+
"integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
|
|
10546
10599
|
"funding": [
|
|
10547
10600
|
"https://github.com/sponsors/sxzz",
|
|
10548
10601
|
"https://opencollective.com/debug"
|
|
@@ -11148,9 +11201,9 @@
|
|
|
11148
11201
|
}
|
|
11149
11202
|
},
|
|
11150
11203
|
"node_modules/postcss": {
|
|
11151
|
-
"version": "8.5.
|
|
11152
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
11153
|
-
"integrity": "sha512-
|
|
11204
|
+
"version": "8.5.19",
|
|
11205
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
|
|
11206
|
+
"integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
|
|
11154
11207
|
"funding": [
|
|
11155
11208
|
{
|
|
11156
11209
|
"type": "opencollective",
|
|
@@ -12434,9 +12487,9 @@
|
|
|
12434
12487
|
"license": "MIT"
|
|
12435
12488
|
},
|
|
12436
12489
|
"node_modules/tailwindcss": {
|
|
12437
|
-
"version": "4.3.
|
|
12438
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
12439
|
-
"integrity": "sha512-
|
|
12490
|
+
"version": "4.3.3",
|
|
12491
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
12492
|
+
"integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
|
|
12440
12493
|
"devOptional": true,
|
|
12441
12494
|
"license": "MIT"
|
|
12442
12495
|
},
|
|
@@ -12455,9 +12508,9 @@
|
|
|
12455
12508
|
}
|
|
12456
12509
|
},
|
|
12457
12510
|
"node_modules/tar": {
|
|
12458
|
-
"version": "7.5.
|
|
12459
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
12460
|
-
"integrity": "sha512-
|
|
12511
|
+
"version": "7.5.20",
|
|
12512
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.20.tgz",
|
|
12513
|
+
"integrity": "sha512-9FcyK4PA6+WbzlTM9WhQm6vB5W7cP7dUiPsv1g7YDwEQnQ1CGpK3MGlKk/ITVWMk05kHZuBhmVhiv8LZoy/PFQ==",
|
|
12461
12514
|
"dev": true,
|
|
12462
12515
|
"license": "BlueOak-1.0.0",
|
|
12463
12516
|
"dependencies": {
|
|
@@ -12547,21 +12600,21 @@
|
|
|
12547
12600
|
}
|
|
12548
12601
|
},
|
|
12549
12602
|
"node_modules/tldts": {
|
|
12550
|
-
"version": "7.4.
|
|
12551
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
12552
|
-
"integrity": "sha512-
|
|
12603
|
+
"version": "7.4.9",
|
|
12604
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz",
|
|
12605
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
12553
12606
|
"license": "MIT",
|
|
12554
12607
|
"dependencies": {
|
|
12555
|
-
"tldts-core": "^7.4.
|
|
12608
|
+
"tldts-core": "^7.4.9"
|
|
12556
12609
|
},
|
|
12557
12610
|
"bin": {
|
|
12558
12611
|
"tldts": "bin/cli.js"
|
|
12559
12612
|
}
|
|
12560
12613
|
},
|
|
12561
12614
|
"node_modules/tldts-core": {
|
|
12562
|
-
"version": "7.4.
|
|
12563
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
12564
|
-
"integrity": "sha512-
|
|
12615
|
+
"version": "7.4.9",
|
|
12616
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz",
|
|
12617
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
12565
12618
|
"license": "MIT"
|
|
12566
12619
|
},
|
|
12567
12620
|
"node_modules/to-regex-range": {
|
|
@@ -12818,16 +12871,16 @@
|
|
|
12818
12871
|
}
|
|
12819
12872
|
},
|
|
12820
12873
|
"node_modules/typescript-eslint": {
|
|
12821
|
-
"version": "8.
|
|
12822
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
12823
|
-
"integrity": "sha512-
|
|
12874
|
+
"version": "8.64.0",
|
|
12875
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.64.0.tgz",
|
|
12876
|
+
"integrity": "sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==",
|
|
12824
12877
|
"dev": true,
|
|
12825
12878
|
"license": "MIT",
|
|
12826
12879
|
"dependencies": {
|
|
12827
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
12828
|
-
"@typescript-eslint/parser": "8.
|
|
12829
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
12830
|
-
"@typescript-eslint/utils": "8.
|
|
12880
|
+
"@typescript-eslint/eslint-plugin": "8.64.0",
|
|
12881
|
+
"@typescript-eslint/parser": "8.64.0",
|
|
12882
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
12883
|
+
"@typescript-eslint/utils": "8.64.0"
|
|
12831
12884
|
},
|
|
12832
12885
|
"engines": {
|
|
12833
12886
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|