lighthouse 10.4.0-dev.20230725 → 10.4.0-dev.20230727

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.
Files changed (74) hide show
  1. package/cli/test/smokehouse/lighthouse-runners/bundle.js +1 -1
  2. package/core/audits/accessibility/aria-allowed-role.d.ts +10 -0
  3. package/core/audits/accessibility/aria-allowed-role.js +46 -0
  4. package/core/audits/accessibility/image-redundant-alt.d.ts +10 -0
  5. package/core/audits/accessibility/image-redundant-alt.js +45 -0
  6. package/core/audits/accessibility/label-content-name-mismatch.d.ts +10 -0
  7. package/core/audits/accessibility/label-content-name-mismatch.js +44 -0
  8. package/core/audits/accessibility/skip-link.d.ts +10 -0
  9. package/core/audits/accessibility/skip-link.js +43 -0
  10. package/core/audits/accessibility/table-duplicate-name.d.ts +10 -0
  11. package/core/audits/accessibility/table-duplicate-name.js +44 -0
  12. package/core/audits/accessibility/target-size.js +1 -1
  13. package/core/audits/metrics/{experimental-interaction-to-next-paint.d.ts → interaction-to-next-paint.d.ts} +3 -3
  14. package/core/audits/metrics/{experimental-interaction-to-next-paint.js → interaction-to-next-paint.js} +3 -3
  15. package/core/audits/work-during-interaction.js +2 -2
  16. package/core/config/default-config.js +49 -39
  17. package/core/config/validation.d.ts +2 -2
  18. package/core/config/validation.js +4 -4
  19. package/core/gather/driver/network-monitor.js +0 -1
  20. package/core/gather/gatherers/accessibility.js +5 -0
  21. package/core/lib/stack-packs.js +4 -0
  22. package/package.json +5 -5
  23. package/readme.md +1 -1
  24. package/shared/localization/locales/ar-XB.json +0 -3
  25. package/shared/localization/locales/ar.json +0 -3
  26. package/shared/localization/locales/bg.json +0 -3
  27. package/shared/localization/locales/ca.json +0 -3
  28. package/shared/localization/locales/cs.json +0 -3
  29. package/shared/localization/locales/da.json +0 -3
  30. package/shared/localization/locales/de.json +0 -3
  31. package/shared/localization/locales/el.json +0 -3
  32. package/shared/localization/locales/en-GB.json +0 -3
  33. package/shared/localization/locales/en-US.json +94 -7
  34. package/shared/localization/locales/en-XA.json +0 -3
  35. package/shared/localization/locales/en-XL.json +94 -7
  36. package/shared/localization/locales/es-419.json +0 -3
  37. package/shared/localization/locales/es.json +0 -3
  38. package/shared/localization/locales/fi.json +0 -3
  39. package/shared/localization/locales/fil.json +0 -3
  40. package/shared/localization/locales/fr.json +0 -3
  41. package/shared/localization/locales/he.json +0 -3
  42. package/shared/localization/locales/hi.json +0 -3
  43. package/shared/localization/locales/hr.json +0 -3
  44. package/shared/localization/locales/hu.json +0 -3
  45. package/shared/localization/locales/id.json +0 -3
  46. package/shared/localization/locales/it.json +0 -3
  47. package/shared/localization/locales/ja.json +0 -3
  48. package/shared/localization/locales/ko.json +0 -3
  49. package/shared/localization/locales/lt.json +0 -3
  50. package/shared/localization/locales/lv.json +0 -3
  51. package/shared/localization/locales/nl.json +0 -3
  52. package/shared/localization/locales/no.json +0 -3
  53. package/shared/localization/locales/pl.json +0 -3
  54. package/shared/localization/locales/pt-PT.json +0 -3
  55. package/shared/localization/locales/pt.json +0 -3
  56. package/shared/localization/locales/ro.json +0 -3
  57. package/shared/localization/locales/ru.json +0 -3
  58. package/shared/localization/locales/sk.json +0 -3
  59. package/shared/localization/locales/sl.json +0 -3
  60. package/shared/localization/locales/sr-Latn.json +0 -3
  61. package/shared/localization/locales/sr.json +0 -3
  62. package/shared/localization/locales/sv.json +0 -3
  63. package/shared/localization/locales/ta.json +0 -3
  64. package/shared/localization/locales/te.json +0 -3
  65. package/shared/localization/locales/th.json +0 -3
  66. package/shared/localization/locales/tr.json +0 -3
  67. package/shared/localization/locales/uk.json +0 -3
  68. package/shared/localization/locales/vi.json +0 -3
  69. package/shared/localization/locales/zh-HK.json +0 -3
  70. package/shared/localization/locales/zh-TW.json +0 -3
  71. package/shared/localization/locales/zh.json +0 -3
  72. package/tsconfig.json +0 -1
  73. package/types/gatherer.d.ts +2 -2
  74. package/types/lhr/settings.d.ts +1 -1
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Los cambios de diseño acumulados miden el movimiento de los elementos visibles dentro del viewport. [Más información sobre la métrica Cambios de diseño acumulados](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interacción con el siguiente renderizado mide la capacidad de respuesta de la página, es decir, el tiempo que tarda la página en responder de forma visible a la entrada del usuario. [Más información sobre la métrica Interacción con el siguiente renderizado](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "El primer renderizado con contenido indica el momento en el que se renderiza el primer texto o la primera imagen. [Más información sobre la métrica Primer renderizado con contenido](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulatiivinen asettelumuutos mittaa näkymässä olevien elementtien liikettä. [Lue lisää Kumulatiivinen asettelumuutos ‐mittarista](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaktiosta seuraavaan renderöintiin ‐mittari mittaa sivun responsiivisuutta eli sitä, kuinka pian sivu vastaa näkyvästi käyttäjän palautteeseen. [Lue lisää Interaktiosta seuraavaan renderöintiin ‐mittarista](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Ensimmäinen sisällön renderöinti kertoo, milloin ensimmäinen tekstikohde tai kuva renderöidään. [Lue lisää Ensimmäinen sisällön renderöinti ‐mittarista](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Sinusukat ng Cumulative Layout Shift ang paggalaw ng mga nakikitang element sa loob ng viewport. [Matuto pa tungkol sa sukatang Cumulative Layout Shift](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Sinusukat ng Interaction to Next Paint ang pagiging responsive ng page, kung gaano katagal bago makitang tumutugon ang page sa input ng user. [Matuto pa tungkol sa sukatang Interaction to Next Paint](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Minamarkahan ng First Contentful Paint ang tagal bago ma-paint ang unang text o larawan. [Matuto pa tungkol sa sukatang First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift mesure le mouvement des éléments visibles dans la fenêtre d'affichage. [En savoir plus sur cette métrique](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "La métrique \"Interaction to Next Paint\" mesure la réactivité de la page, c'est-à-dire le temps que celle-ci met à répondre de manière visible à l'entrée utilisateur. [En savoir plus sur cette métrique](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "La métrique \"First Contentful Paint\" indique le moment où le premier texte ou la première image sont affichés. [En savoir plus sur cette métrique](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "המדד Cumulative Layout Shift ‏(CLS) מודד את התנועה של הרכיבים הגלויים בתוך אזור התצוגה. [מידע נוסף על המדד Cumulative Layout Shift ‏(CLS)](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "המדד 'מאינטראקציה ועד הצגת התגובה' מודד את רמת הרספונסיביות של הדף – כמה זמן נדרש עד להצגת תגובה בדף לקלט של משתמש. [מידע נוסף על המדד 'מאינטראקציה ועד הצגת התגובה'](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "המדד 'הצגת תוכן ראשוני (FCP)' מציין את הזמן שבו הטקסט או התמונה הראשונים מוצגים. [מידע נוסף על המדד 'הצגת תוכן ראשוני (FCP)'](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "कुल लेआउट शिफ़्ट, व्यूपोर्ट में दिखने वाले एलिमेंट की हलचल बताता है. [कुल लेआउट शिफ़्ट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक, पेज पर रिस्पॉन्स मिलने में लगने वाले समय को मापती है. इससे पता चलता है कि उपयोगकर्ता के इनपुट का जवाब देने में पेज को कितना समय लगता है. [इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "फ़र्स्ट कॉन्टेंटफ़ुल पेंट से, यह पता चलता है कि आपकी वेबसाइट का जो टेक्स्ट या इमेज किसी उपयोगकर्ता को सबसे पहले दिखा उसे दिखने में कितना समय लगा. [फ़र्स्ट कॉन्टेंटफ़ुल पेंट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulativni pomak izgleda mjeri kretanje vidljivih elemenata u vidljivom dijelu. [Saznajte više o mjernom podatku Kumulativni pomak izgleda](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interakcija do sljedećeg renderiranja mjeri responzivnost stranice, koliko je vremena potrebno da stranica vidljivo reagira na korisnički unos. [Saznajte više o mjernom podatku Interakcija do sljedećeg renderiranja](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Prvo renderiranje sadržaja označava vrijeme renderiranja prvog teksta ili slike. [Saznajte više o mjernom podatku Prvo renderiranje sadržaja](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Az Elrendezés összmozgása mutató az oldal megjelenítési területén látható elemek mozgását méri. [További információ az Elrendezés összmozgása mutatóról](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Az interakciótól a következő vizuális válaszig eltelt idő az oldal válaszadási hajlandóságát méri, vagyis azt, hogy az oldal mennyi idő alatt reagál láthatóan a felhasználói bevitelre. [További információ Az interakciótól a következő vizuális válaszig eltelt idő mutatóról](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Az első vizuális tartalomválasz azt az időpontot jelöli, amikor a rendszer megkezdi az első szöveg vagy kép megjelenítését. [További információ az Első vizuális tartalomválasz mutatóról](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Pergeseran Tata Letak Kumulatif (CLS) mengukur perpindahan elemen yang terlihat dalam area pandang. [Pelajari lebih lanjut metrik Pergeseran Tata Letak Kumulatif](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint mengukur responsivitas halaman, yaitu waktu yang diperlukan halaman untuk merespons input pengguna secara jelas. [Pelajari lebih lanjut metrik Interaction to Next Paint](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint menandai waktu saat teks atau gambar pertama di-paint. [Pelajari lebih lanjut metrik First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "La metrica Cumulative Layout Shift misura lo spostamento degli elementi visibili all'interno dell'area visibile. [Scopri di più sulla metrica Cumulative Layout Shift](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "L'interazione con Next Paint misura l'adattabilità della pagina, il tempo necessario alla pagina per rispondere in modo visibile all'input utente. [Scopri di più sulla metrica Interaction to Next Paint](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint indica il momento in cui vengono visualizzati il primo testo o la prima immagine. [Scopri di più sulla metrica First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift はビューポート内の視覚要素がどのくらい移動しているかを測定する指標です。[Cumulative Layout Shift 指標の詳細](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint は、ページの応答性、ユーザーの入力に対してページが視覚的に応答するまでの時間を測定します。[Interaction to Next Paint 指標の詳細](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint は、テキストまたは画像が初めてペイントされるまでにかかった時間です。[First Contentful Paint の指標の詳細](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "레이아웃 변경 횟수는 표시 영역 안에 보이는 요소의 이동을 측정합니다. [레이아웃 변경 횟수 측정항목에 관해 자세히 알아보기](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint(다음 페인트와의 상호작용)은 페이지 응답성, 즉 페이지가 사용자 입력에 시각적으로 반응하는 데 걸리는 시간을 측정합니다. [Interaction to Next Paint(다음 페인트와의 상호작용) 측정항목에 관해 자세히 알아보기](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "콘텐츠가 포함된 첫 페인트는 첫 번째 텍스트 또는 이미지가 표시되는 시간을 나타냅니다. [콘텐츠가 포함된 첫 페인트 측정항목에 관해 자세히 알아보기](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Nustatant kaupiamąjį išdėstymo poslinkį įvertinamas peržiūros srityje matomų elementų judėjimas. [Sužinokite daugiau apie kaupiamojo išdėstymo poslinkio metriką](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Laikas nuo sąveikos iki kito žymėjimo įvertina puslapio atsako laiką: kiek laiko praeina, kol matomas puslapio atsakas į naudotojo įvestį. [Sužinokite daugiau apie laiką nuo sąveikos iki kito žymėjimo](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Pirmas turiningas žymėjimas nurodo laiką, kada pažymimas pirmasis tekstas ar vaizdas. [Sužinokite daugiau apie pirmo turiningo žymėjimo metriką](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift norāda redzamo elementu kustību skatvietā. [Uzziniet vairāk par rādītāju “Cumulative Layout Shift”](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint nosaka lapas atbildi — laiku, kas lapai nepieciešams, lai redzami reaģētu uz lietotāja ievadi. [Uzziniet vairāk par rādītāju “Interaction to Next Paint”](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Rādītājs “First Contentful Paint” ataino laiku, kad tiek atveidots pirmais teksts vai attēls. [Uzziniet vairāk par rādītāju “First Contentful Paint”](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulatieve indelingsverschuiving (CLS) meet de beweging van zichtbare elementen binnen de viewport. [Meer informatie over de statistiek Cumulatieve indelingsverschuiving (CLS)](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interactie tot Volgende weergave meet de responsiviteit van de pagina, dat wil zeggen hoelang het duurt voordat de pagina zichtbaar reageert op gebruikersinvoer. [Meer informatie over de statistiek Interactie tot Volgende weergave](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Eerste weergave met content (FCP) geeft de tijd aan waarbinnen de eerste tekst of afbeelding wordt weergegeven. [Meer informatie over de statistiek Eerste weergave met content (LCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Akkumulert utseendeforskyvning (CLS) måler bevegelsene til synlige elementer i det synlige området. [Finn ut mer om beregningen Akkumulert utseendeforskyvning (CLS)](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Tid fra interaksjon til neste opptegning måler hvor responsiv siden er, altså hvor lang tid siden bruker på å gi en synlig respons på inndata fra brukerne. [Finn ut mer om beregningen Tid fra interaksjon til neste opptegning](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Den første innholdsrike opptegningen (FCP) markerer den første gangen tekst eller bilder tegnes opp. [Finn ut mer om beregningen Første innholdsrike opptegning (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Zbiorcze przesunięcie układu to miara ruchu elementów w widocznym obszarze. [Więcej informacji o danych dotyczących zbiorczego przesunięcia układu](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Czas od interakcji do kolejnego wyrenderowania określa responsywność strony, czyli czas potrzebny do widocznej reakcji na dane wprowadzone przez użytkownika. [Więcej informacji o czasie od interakcji do kolejnego wyrenderowania](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Pierwsze wyrenderowanie treści oznacza czas wyrenderowania pierwszego tekstu lub obrazu. [Więcej informacji o danych pierwszego wyrenderowania treści](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "A Mudança de esquema cumulativo mede o movimento dos elementos visíveis na área visível. [Saiba mais acerca da métrica Mudança de esquema cumulativo](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "A interação até ao preenchimento seguinte mede a capacidade de resposta da página, bem como o tempo que esta demora a responder visivelmente à introdução do utilizador. [Saiba mais acerca da métrica Interação até ao preenchimento seguinte](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "O Primeiro preenchimento com conteúdo assinala o momento de preenchimento com o primeiro texto ou imagem. [Saiba mais acerca da métrica Primeiro preenchimento com conteúdo](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "\"Mudança de layout cumulativa\" mede o movimento de elementos visíveis na janela de visualização. [Saiba mais sobre a métrica \"Mudança de layout cumulativa\"](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "A métrica \"Interação com a próxima exibição\" mede a capacidade de resposta da página, ou seja, quanto tempo a página leva para responder de maneira visível à entrada do usuário. [Saiba mais sobre a métrica \"Interação com a próxima exibição\"](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "\"Primeira exibição de conteúdo\" marca o momento em que o primeiro texto ou imagem é disponibilizado. [Saiba mais sobre a métrica \"Primeira exibição de conteúdo\"](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift măsoară deplasarea elementelor vizibile în aria vizibilă. [Află mai multe despre valoarea Cumulative Layout Shift](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interacțiunea cu următoarea reprezentare măsoară receptivitatea paginii, adică timpul necesar pentru ca pagina să răspundă în mod vizibil la comanda utilizatorului. [Află mai multe despre valoarea Interacțiunea cu următoarea reprezentare](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint arată momentul când se redă primul text sau prima imagine. [Află mai multe despre valoarea First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Совокупное смещение макета – это величина, на которую смещаются видимые элементы области просмотра при загрузке. Подробнее о [совокупном смещении макета](https://web.dev/cls/)…"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Взаимодействие до следующей отрисовки – показатель скорости отклика страницы. Он отражает, через какое время становится виден ответ страницы на ввод данных пользователем. Подробнее [о взаимодействии до следующей отрисовки](https://web.dev/inp/)…"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Первая отрисовка контента – показатель, который отражает время между началом загрузки страницы и появлением первого изображения или блока текста. Подробнее [о первой отрисовке контента](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)…"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulatívna zmena rozloženia meria pohyb viditeľných prvkov v rámci oblasti zobrazenia. [Ďalšie informácie o metrike Kumulatívna zmena rozloženia](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Čas od interakcie do ďalšieho vykreslenia meria responzívnosť stránky, teda ako dlho jej trvá viditeľne odpovedať na vstup používateľa. [Ďalšie informácie o metrike Čas od interakcie do ďalšieho vykreslenia](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Prvé vykreslenie obsahu označuje čas, za ktorý je vykreslený prvý text alebo obrázok. [Ďalšie informácie o metrike Prvé vykreslenie obsahu](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulativna sprememba postavitve meri premikanje vidnih elementov znotraj vidnega območja. [Preberite več o meritvi »Kumulativna sprememba postavitve«](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interakcija do naslednjega izrisa meri odzivnost strani, kako dolgo traja, da se stran vidno odzove na vnos uporabnika. [Preberite več o meritvi interakcije do naslednjega izrisa](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Prvi vsebinski izris označuje čas, ko je izrisano prvo besedilo oziroma je izrisana prva slika. [Preberite več o meritvi prvega vsebinskega izrisa](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulativni pomak sadržaja stranice meri kretanje vidljivih elemenata unutar oblasti prikaza. [Saznajte više o pokazatelju Kumulativni pomak sadržaja stranice](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interakcija do sledećeg prikazivanja meri brzinu odgovora stranice, koliko dugo stranici treba da vidljivo odgovori na unos korisnika. [Saznajte više o pokazatelju Interakcija do sledećeg prikazivanja](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Prvo prikazivanje sadržaja označava vreme kada se prikazuju prvi tekst ili slika. [Saznajte više o pokazatelju Prvo prikazivanje sadržaja](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Кумулативни помак садржаја странице мери кретање видљивих елемената унутар области приказа. [Сазнајте више о показатељу Кумулативни помак садржаја странице](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Интеракција до следећег приказивања мери брзину одговора странице, колико дуго страници треба да видљиво одговори на унос корисника. [Сазнајте више о показатељу Интеракција до следећег приказивања](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Прво приказивање садржаја означава време када се приказују први текст или слика. [Сазнајте више о показатељу Прво приказивање садржаја](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Kumulativ layoutförskjutning mäter rörelsen hos synliga element inom visningsområdet. [Läs mer om mätvärdet Kumulativ layoutförskjutning](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaktion till nästa uppritning mäter sidans responsivitet, hur lång tid det tar innan det syns att en sida svarar på indata från användare. [Läs mer om mätvärdet Interakation till nästa uppritning](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Första innehållsrenderingen anger när den första texten eller bilden ritades upp. [Läs mer om mätvärdet Första innehållsrenderingen](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "காட்சிப் பகுதிக்குள் தெரியக்கூடிய கூறுகளின் நகர்வை கியூமுலேட்டிவ் லேஅவுட் ஷிஃப்ட் அளவிடுகிறது. [கியூமுலேட்டிவ் லேஅவுட் ஷிஃப்ட் அளவீடு குறித்து மேலும் அறிக](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "செயல்-காட்சி நேரம் என்பது பக்கத்தின் பதிலளிக்கும் தன்மையை அளவிடுகிறது, அதாவது பயனர் உள்ளீட்டிற்குப் பக்கத்தின் தெரிவுநிலை எந்த அளவிற்கு உள்ளது என்பதை அளவிடுவது. [செயல்-காட்சி நேர அளவீடு குறித்து மேலும் அறிக](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "'உள்ளடக்கத்துடன் முதல் தோற்றம்' என்பது வார்த்தைகளோ படமோ முதலில் தோன்றும் நேரத்தைக் குறிக்கிறது. ['உள்ளடக்கத்துடன் முதல் தோற்றம்' அளவீடு குறித்து மேலும் அறிக](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "వీక్షణ పోర్ట్‌లో కనిపించే ఎలిమెంట్‌ల కదలికను క్యుములేటివ్ లేఅవుట్ షిఫ్ట్ కొలుస్తుంది. [క్యుములేటివ్ లేఅవుట్ షిఫ్ట్ కొలమానం గురించి మరింత తెలుసుకోండి](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint పేజీ ప్రతిస్పందనా తీరును కొలుస్తుంది, అంటే యూజర్ ఇన్‌పుట్‌కు ప్రత్యక్షంగా ప్రతిస్పందించడానికి పేజీకి ఎంత సమయం పడుతుందో కొలుస్తుంది. [Interaction to Next Paint కొలమానం గురించి మరింత తెలుసుకోండి](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "ఫస్ట్ కంటెంట్‌ఫుల్ పెయింట్ అనేది, మొదటి టెక్స్ట్ లేదా ఇమేజ్ పెయింట్ చేయబడిన సమయాన్ని గుర్తిస్తుంది. [ఫస్ట్ కంటెంట్‌ఫుల్ పెయింట్ కొలమానం గురించి మరింత తెలుసుకోండి](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "การเปลี่ยนเลย์เอาต์สะสมจะวัดการเคลื่อนไหวขององค์ประกอบที่มองเห็นได้ภายในวิวพอร์ต [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก Cumulative Layout Shift](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "การโต้ตอบกับ Next Paint จะวัดการตอบสนองของหน้าเว็บ ซึ่งเป็นระยะเวลาที่หน้าเว็บใช้ในการตอบสนองต่ออินพุตของผู้ใช้ [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก การโต้ตอบกับ Next Paint](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint ระบุเวลาที่มีการแสดงผลข้อความหรือรูปภาพครั้งแรก [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift, görüntü alanı içindeki görünür öğelerin hareketini ölçer. [Cumulative Layout Shift metriği hakkında daha fazla bilgi edinin](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Sonraki Boyamayla Etkileşim, sayfanın tepkisini ve kullanıcı girişine görünür şekilde yanıt vermesinin ne kadar sürdüğünü ölçer. [Sonraki Boyamayla Etkileşim metriği hakkında daha fazla bilgi edinin](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "İlk Zengin İçerikli Boyama, ilk metnin veya resmin boyandığı zamanı işaret eder. [İlk zengin içerikli boyama metriği hakkında daha fazla bilgi edinin](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Сукупне зміщення макета вимірює рух видимих елементів у межах області перегляду. [Докладніше про показник \"Сукупне зміщення макета\".](https://web.dev/cls/)"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Показник Interaction to Next Paint вимірює, наскільки швидко сторінка може відповідати на ввід користувача. [Докладніше про показник Interaction to Next Paint.](https://web.dev/inp/)"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Перша візуалізація контенту показує, коли з’являється текст чи зображення. [Докладніше про показник \"Перша візуалізація контенту\".](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Điểm số tổng hợp về mức thay đổi bố cục đo lường mức độ dịch chuyển của các phần tử hiển thị trong khung nhìn. [Tìm hiểu thêm về chỉ số Điểm số tổng hợp về mức thay đổi bố cục](https://web.dev/cls/)."
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Hoạt động tương tác với thời gian hiển thị tiếp theo đo lường khả năng phản hồi của trang, thời gian trang cần để phản hồi hoạt động đầu vào của người dùng một cách rõ ràng. [Tìm hiểu thêm về chỉ số Hoạt động tương tác với thời gian hiển thị tiếp theo](https://web.dev/inp/)."
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "Chỉ số Hiển thị nội dung đầu tiên đánh dấu thời điểm hiển thị văn bản hoặc hình ảnh đầu tiên. [Tìm hiểu thêm về chỉ số Hiển thị nội dung đầu tiên](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "「累計版面配置轉移」會測量檢視區內可見元素的移動。[進一步瞭解「累計版面配置轉移」數據](https://web.dev/cls/)。"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "「互動至下一個繪製」會測量網頁回應速度,亦即網頁明顯回應使用者輸入內容所需的時間。[進一步瞭解「互動至下一個繪製」數據](https://web.dev/inp/)。"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "「首次內容繪製時間」標示繪製首個文字/首張圖片的時間。[進一步瞭解「首次內容繪製時間」數據](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "「累計版面配置轉移」指標是用於測量可見元素在可視區域內的移動情形。[進一步瞭解「累計版面配置位移」指標](https://web.dev/cls/)。"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "「與下一個顯示的內容互動」指標的用途是測量網頁回應,也就是網頁明顯回應使用者輸入內容所需的時間。[進一步瞭解「與下一個顯示的內容互動」指標](https://web.dev/inp/)。"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "首次顯示內容所需時間是指瀏覽器首次顯示文字或圖片的時間。[進一步瞭解「首次顯示內容所需時間」指標](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
1117
1114
  },
@@ -1109,9 +1109,6 @@
1109
1109
  "core/audits/metrics/cumulative-layout-shift.js | description": {
1110
1110
  "message": "Cumulative Layout Shift 旨在衡量可见元素在视口内的移动情况。[详细了解 Cumulative Layout Shift 指标](https://web.dev/cls/)。"
1111
1111
  },
1112
- "core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
1113
- "message": "Interaction to Next Paint 用于衡量网页响应速度,即网页需要多久才会明显响应用户输入。[详细了解 Interaction to Next Paint 指标](https://web.dev/inp/)。"
1114
- },
1115
1112
  "core/audits/metrics/first-contentful-paint.js | description": {
1116
1113
  "message": "First Contentful Paint 标记了绘制出首个文本或首张图片的时间。[详细了解 First Contentful Paint 指标](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
1117
1114
  },
package/tsconfig.json CHANGED
@@ -41,7 +41,6 @@
41
41
  "core/test/config/budget-test.js",
42
42
  "core/test/config/config-helpers-test.js",
43
43
  "core/test/config/config-plugin-test.js",
44
- "core/test/legacy/config/config-test.js",
45
44
  "core/test/config/default-config-test.js",
46
45
  "core/test/gather/driver/wait-for-condition-test.js",
47
46
  "core/test/gather/gatherers/accessibility-test.js",
@@ -57,8 +57,8 @@ declare module Gatherer {
57
57
  gatherMode: GatherMode;
58
58
  /** The connection to the page being analyzed. */
59
59
  driver: Driver;
60
- /** The Puppeteer page handle. Will be undefined in legacy navigation mode. */
61
- page?: Puppeteer.Page;
60
+ /** The Puppeteer page handle. */
61
+ page: Puppeteer.Page;
62
62
  /** The set of base artifacts that are always collected. */
63
63
  baseArtifacts: BaseArtifacts;
64
64
  /** The cached results of computed artifacts. */
@@ -71,7 +71,7 @@ export type ScreenEmulationSettings = {
71
71
  disableStorageReset?: boolean;
72
72
  /** Flag indicating that Lighthouse should pause after page load to wait for the user's permission to continue the audit. */
73
73
  debugNavigation?: boolean;
74
- /** If set to true, will skip the initial navigation to about:blank. This option is ignored when using the legacy navigation runner. */
74
+ /** If set to true, will skip the initial navigation to about:blank. */
75
75
  skipAboutBlank?: boolean;
76
76
  /** If set to true, gatherers should avoid any behavior that may be destructive to the page state. (e.g. extra navigations, resizing the viewport) */
77
77
  usePassiveGathering?: boolean;