_id
stringlengths
21
254
text
stringlengths
1
93.7k
metadata
dict
angular/modules/playground/src/gestures/BUILD.bazel_0_789
load("//tools:defaults.bzl", "app_bundle", "http_server", "ng_module") package(default_visibility = ["//modules/playground:__subpackages__"]) ng_module( name = "gestures", srcs = glob(["**/*.ts"]), assets = ["template.html"], tsconfig = "//modules/playground:tsconfig-build.json", deps = [ "//packages/core", "//packages/platform-browser", "//packages/platform-browser-dynamic", "@npm//@types/hammerjs", ], ) app_bundle( name = "app_bundle", entry_point = ":index.ts", deps = [":gestures"], ) http_server( name = "devserver", srcs = [ "index.html", "@npm//:node_modules/hammerjs/hammer.js", ], deps = [ ":app_bundle", "//packages/zone.js/bundles:zone.umd.js", ], )
{ "end_byte": 789, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/gestures/BUILD.bazel" }
angular/modules/playground/src/gestures/template.html_0_462
<style type="text/css"> .row { height: 33%; text-align: center; border-bottom: 1px solid black; margin: 0; padding: 0; -webkit-user-select: none; } </style> <div class="row" (swipe)="onSwipe($event)">Swipe (direction = {{swipeDirection}})</div> <div class="row" (pinch)="onPinch($event)">pinch (scale = {{pinchScale}})</div> <div class="row" (rotate)="onRotate($event)">Rotate (angle = {{rotateAngle}})</div> <div class="row"></div>
{ "end_byte": 462, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/gestures/template.html" }
angular/modules/playground/src/gestures/index.ts_0_1033
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; @Component({ selector: 'gestures-app', templateUrl: 'template.html', standalone: false, }) class GesturesCmp { swipeDirection: string = '-'; pinchScale: number = 1; rotateAngle: number = 0; onSwipe(event: HammerInput): void { this.swipeDirection = event.deltaX > 0 ? 'right' : 'left'; } onPinch(event: HammerInput): void { this.pinchScale = event.scale; } onRotate(event: HammerInput): void { this.rotateAngle = event.rotation; } } @NgModule({declarations: [GesturesCmp], bootstrap: [GesturesCmp], imports: [BrowserModule]}) class ExampleModule {} platformBrowserDynamic().bootstrapModule(ExampleModule);
{ "end_byte": 1033, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/gestures/index.ts" }
angular/modules/playground/src/jsonp/index.html_0_237
<!DOCTYPE html> <html> <title>Hello Jsonp</title> <body> <jsonp-app> Loading... </jsonp-app> <script src="/angular/packages/zone.js/bundles/zone.umd.js"></script> <script src="/app_bundle.js"></script> </body> </html>
{ "end_byte": 237, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/jsonp/index.html" }
angular/modules/playground/src/jsonp/BUILD.bazel_0_725
load("//tools:defaults.bzl", "app_bundle", "http_server", "ng_module") package(default_visibility = ["//modules/playground:__subpackages__"]) ng_module( name = "jsonp", srcs = glob(["**/*.ts"]), tsconfig = "//modules/playground:tsconfig-build.json", deps = [ "//packages/common/http", "//packages/core", "//packages/platform-browser", "//packages/platform-browser-dynamic", ], ) app_bundle( name = "app_bundle", entry_point = ":index.ts", deps = [":jsonp"], ) http_server( name = "devserver", srcs = [ "index.html", "people.json", ], deps = [ ":app_bundle", "//packages/zone.js/bundles:zone.umd.js", ], )
{ "end_byte": 725, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/jsonp/BUILD.bazel" }
angular/modules/playground/src/jsonp/index.ts_0_723
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {HttpClientJsonpModule, HttpClientModule} from '@angular/common/http'; import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; import {JsonpCmp} from './app/jsonp_comp'; @NgModule({ bootstrap: [JsonpCmp], declarations: [JsonpCmp], imports: [BrowserModule, HttpClientModule, HttpClientJsonpModule], }) export class ExampleModule {} platformBrowserDynamic().bootstrapModule(ExampleModule);
{ "end_byte": 723, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/jsonp/index.ts" }
angular/modules/playground/src/jsonp/app/jsonp_comp.ts_0_683
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {HttpClient} from '@angular/common/http'; import {Component} from '@angular/core'; @Component({ selector: 'jsonp-app', template: ` <h1>people</h1> <ul class="people"> <li *ngFor="let person of people">hello, {{ person.name }}</li> </ul> `, standalone: false, }) export class JsonpCmp { people: Object; constructor(http: HttpClient) { http.jsonp<Object>('./people.json', 'callback').subscribe((res: Object) => (this.people = res)); } }
{ "end_byte": 683, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/jsonp/app/jsonp_comp.ts" }
angular/modules/playground/src/benchpress/index.html_0_294
<!DOCTYPE html> <html> <head> <title>Benchpress test</title> </head> <body> <button onclick="pleaseLog()">Click me</button> <div id="log"></div> <script type="text/javascript"> function pleaseLog() { document.getElementById("log").innerHTML = "hi"; } </script> </body> </html>
{ "end_byte": 294, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/benchpress/index.html" }
angular/modules/playground/src/benchpress/BUILD.bazel_0_183
load("//tools:defaults.bzl", "http_server") package(default_visibility = ["//modules/playground:__subpackages__"]) http_server( name = "devserver", srcs = ["index.html"], )
{ "end_byte": 183, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/benchpress/BUILD.bazel" }
angular/modules/playground/src/routing/index.html_0_405
<!DOCTYPE html> <html> <title>Routing Example</title> <link rel="stylesheet" type="text/css" href="./css/gumby.css" /> <link rel="stylesheet" type="text/css" href="./css/app.css" /> <base href="/" /> <body> <inbox-app> Loading... </inbox-app> </body> <script src="/angular/packages/zone.js/bundles/zone.umd.js"></script> <script type="module" src="bundles/main.js"></script> </html>
{ "end_byte": 405, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/index.html" }
angular/modules/playground/src/routing/main.ts_0_811
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; import {RouterModule} from '@angular/router'; import {DbService, DraftsCmp, InboxApp, InboxCmp, ROUTER_CONFIG} from './app/inbox-app'; @NgModule({ providers: [DbService], declarations: [InboxCmp, DraftsCmp, InboxApp], imports: [RouterModule.forRoot(ROUTER_CONFIG, {useHash: true}), BrowserModule], bootstrap: [InboxApp], }) export class RoutingExampleModule {} platformBrowserDynamic().bootstrapModule(RoutingExampleModule);
{ "end_byte": 811, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/main.ts" }
angular/modules/playground/src/routing/BUILD.bazel_0_915
load("//tools:defaults.bzl", "esbuild", "http_server", "ng_module") package(default_visibility = ["//modules/playground:__subpackages__"]) ng_module( name = "routing", srcs = glob(["**/*.ts"]), assets = glob( ["**/*.html"], exclude = ["index.html"], ), tsconfig = "//modules/playground:tsconfig-build.json", deps = [ "//packages/core", "//packages/platform-browser", "//packages/platform-browser-dynamic", "//packages/router", "@npm//rxjs", ], ) esbuild( name = "bundles", entry_point = ":main.ts", splitting = True, deps = [":routing"], ) http_server( name = "devserver", srcs = [ "css/app.css", "css/gumby.css", "index.html", "//third_party/fonts.google.com/open-sans", ], deps = [ ":bundles", "//packages/zone.js/bundles:zone.umd.js", ], )
{ "end_byte": 915, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/BUILD.bazel" }
angular/modules/playground/src/routing/app/data.ts_0_5747
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ export const data = [ { 'id': '1', 'first-name': 'Montana', 'last-name': 'Prosacco', 'email': 'jairo.bergnaum@bergnaum.org', 'date': '1991-10-12 15:12:46 -0700', 'content': 'Et quisquam veniam voluptatem enim temporibus itaque. Ipsam voluptatem et. Occaecati rerum animi.', 'subject': 'Quidem quo ipsam architecto soluta numquam et', }, { 'id': '2', 'first-name': 'Frances', 'last-name': 'Schaden', 'email': 'pierre_tromp@adams.com', 'date': '2001-05-06 08:22:33 -0700', 'content': 'Porro ea tempore numquam deserunt voluptas qui. Est quis suscipit.', 'subject': 'Voluptatibus dolore porro animi', }, { 'id': '3', 'first-name': 'Jayne', 'last-name': 'Kreiger', 'email': 'breanne@howell.net', 'date': '2001-05-22 14:28:41 -0700', 'content': 'Voluptas et est laborum non ullam.', 'subject': 'Ratione ut illum fuga non', }, { 'id': '4', 'first-name': 'Hester', 'last-name': 'Wyman', 'email': 'fausto@steuber.com', 'date': '1996-07-20 02:13:12 -0700', 'content': 'Iusto enim laborum. Autem sed quas laborum deserunt quibusdam dolorem. Laboriosam nesciunt debitis possimus ut aut quae.', 'subject': 'Ea quas et quia beatae dolores', }, { 'id': '5', 'first-name': 'Alexandre', 'last-name': 'Dietrich', 'email': 'carmella_mante@moendibbert.biz', 'date': '2006-03-20 23:44:38 -0800', 'content': 'Voluptates voluptatem dolorem non quod dolores.', 'subject': 'Nostrum ad modi non consequatur repellendus et harum', }, { 'id': '6', 'first-name': 'Ena', 'last-name': 'Green', 'email': 'jan_koepp@glover.name', 'date': '1988-03-21 02:00:36 -0800', 'content': 'Nam inventore voluptatum eaque ratione nisi nesciunt. Qui ex qui omnis aliquid. Dolorem ipsum expedita.', 'subject': 'Qui sint vero accusamus quam id vitae quis quia', }, { 'id': '7', 'first-name': 'Rebecca', 'last-name': 'Walsh', 'email': 'marta@mueller.biz', 'date': '1974-05-09 02:40:20 -0700', 'content': 'Voluptas vel ut. Rerum vero repellat accusantium earum. Ea atque exercitationem expedita id dolores dolorem.', 'subject': 'Suscipit et inventore exercitationem ut voluptatum esse vero', }, { 'id': '8', 'first-name': 'Jed', 'last-name': 'Rogahn', 'email': 'talia_crist@mertzfadel.info', 'date': '2006-10-17 01:28:46 -0700', 'content': 'Cupiditate nam blanditiis.', 'subject': 'Dolore nulla qui sequi ut enim sed', }, { 'id': '9', 'first-name': 'Fabiola', 'last-name': 'Olson', 'email': 'henderson@casper.org', 'date': '2008-02-29 11:46:44 -0800', 'content': 'Similique nesciunt omnis beatae omnis pariatur quas. Voluptatem eum consequatur id impedit fugit dignissimos ut.', 'subject': 'Sit quasi accusamus aut et eum', }, { 'id': '10', 'first-name': 'Alex', 'last-name': 'Turcotte', 'email': 'mya@stokes.org', 'date': '1974-03-29 12:02:53 -0700', 'content': 'Ut pariatur porro maiores. Saepe soluta aspernatur est sed suscipit. Excepturi incidunt aut atque nostrum cum non.', 'subject': 'Rerum dolore sunt veniam provident', }, { 'id': '11', 'first-name': 'Jerome', 'last-name': 'Greenholt', 'email': 'jazmyne.dibbert@abshire.org', 'date': '1997-01-12 02:48:08 -0800', 'content': 'Natus error id.', 'subject': 'Rerum nemo aperiam veritatis veniam', }, { 'id': '12', 'first-name': 'Antwan', 'last-name': 'Kreiger', 'email': 'delilah@dibbert.name', 'date': '1971-05-08 10:45:01 -0700', 'content': 'Perspiciatis sed quo. Eum dignissimos quia expedita dolorem illum minima enim. Fugiat ducimus nostrum quia reiciendis autem nisi placeat.', 'subject': 'Esse ipsum pariatur voluptatum rerum labore id odit', }, { 'id': '13', 'first-name': 'Kyleigh', 'last-name': 'Rogahn', 'email': 'ralph_ledner@bartolettifay.info', 'date': '2013-11-28 16:10:15 -0800', 'content': 'Molestias repudiandae dicta vel.', 'subject': 'Facilis occaecati pariatur qui incidunt reprehenderit sunt', }, { 'id': '14', 'first-name': 'Henriette', 'last-name': 'Gottlieb', 'email': 'adeline.rowe@lubowitz.net', 'date': '1983-02-11 06:45:49 -0800', 'content': 'Eveniet ut voluptas eos ut rerum voluptatum.', 'subject': 'Natus voluptas voluptatem alias', }, { 'id': '15', 'first-name': 'Jacklyn', 'last-name': 'White', 'email': 'milton_keebler@braun.biz', 'date': '1992-01-07 12:27:59 -0800', 'content': 'Reiciendis et aperiam. Doloremque totam repudiandae velit fuga fugiat.', 'subject': 'Nulla est magnam ducimus porro commodi', }, { 'id': '16', 'first-name': 'Charlotte', 'last-name': 'Ziemann', 'email': 'brett@purdymills.com', 'date': '1972-06-06 02:42:50 -0700', 'content': 'Voluptatem corporis tempore. Consectetur fugit perspiciatis libero dolore consequatur asperiores. Voluptates ea accusamus.', 'subject': 'Ea adipisci reiciendis excepturi suscipit necessitatibus ut sed', }, { 'id': '17', 'first-name': 'Giovanny', 'last-name': 'Runolfsdottir', 'email': 'dustin.sanford@rippin.com', 'date': '1987-04-14 19:29:11 -0700', 'content': 'Dolor consequuntur sed aspernatur qui. Sit cumque id animi ut sed id. Asperiores voluptatem similique voluptas.', 'subject': 'Id ut voluptatum culpa molestiae quo', },
{ "end_byte": 5747, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_5751_11376
{ 'id': '18', 'first-name': 'Savion', 'last-name': 'McCullough', 'email': 'don@gorczanysimonis.name', 'date': '1974-01-18 14:40:40 -0700', 'content': 'Autem voluptatem dignissimos vel debitis ipsum voluptatem consequuntur. Voluptatum et saepe.', 'subject': 'Ipsa similique quo nostrum', }, { 'id': '19', 'first-name': 'Robbie', 'last-name': 'Kohler', 'email': 'haley@waters.biz', 'date': '2002-09-28 08:35:10 -0700', 'content': 'Quo ut accusantium similique necessitatibus. Sunt impedit commodi ut et odit voluptatibus error.', 'subject': 'Voluptate eum quo error', }, { 'id': '20', 'first-name': 'Eulalia', 'last-name': 'Effertz', 'email': 'rodrigo_parisian@bergecartwright.net', 'date': '2006-07-29 21:47:56 -0700', 'content': 'Eum repudiandae rem aliquid dolorum suscipit vel. Autem vel voluptas et iure magni.', 'subject': 'Est dolorum modi et error consequuntur qui', }, { 'id': '21', 'first-name': 'Gregoria', 'last-name': 'Boehm', 'email': 'miles@jerde.org', 'date': '1997-04-11 19:49:38 -0700', 'content': 'Qui necessitatibus veniam. Maiores impedit in natus aspernatur adipisci. Ad sapiente iste.', 'subject': 'Doloribus ipsum a eius voluptatem nulla', }, { 'id': '22', 'first-name': 'Berry', 'last-name': 'Collier', 'email': 'larry_rath@rathbernier.info', 'date': '1981-06-26 05:26:47 -0700', 'content': 'Numquam rerum quia similique enim sequi eos inventore. Numquam inventore aliquam commodi neque maiores. Hic et vel aut velit corrupti.', 'subject': 'Optio ab delectus pariatur vel tempore', }, { 'id': '23', 'first-name': 'Crawford', 'last-name': 'Ryan', 'email': 'cindy_ziemann@harvey.org', 'date': '1997-06-12 07:56:32 -0700', 'content': 'Odio ea nostrum molestiae. Doloribus ducimus occaecati facilis pariatur ut est.', 'subject': 'Quo fugit at totam voluptate est', }, { 'id': '24', 'first-name': 'Kelsie', 'last-name': 'Stokes', 'email': 'jackson_ferry@connelly.name', 'date': '1986-07-30 21:39:50 -0700', 'content': 'Amet voluptatem ea nesciunt sunt. Quidem pariatur sit. Minus aliquam itaque laudantium in quibusdam laboriosam.', 'subject': 'Labore voluptas dolor repellendus accusantium tempora', }, { 'id': '25', 'first-name': 'Josefa', 'last-name': 'Predovic', 'email': 'moises@sauer.info', 'date': '1976-04-09 22:38:31 -0800', 'content': 'Aliquam consectetur et non soluta. Quia dolore molestiae facilis eos nihil vel. Quidem eos et.', 'subject': 'Qui architecto inventore alias non aut dolorum porro', }, { 'id': '26', 'first-name': 'Toby', 'last-name': 'Wehner', 'email': 'janet@mohr.org', 'date': '2003-05-08 07:44:26 -0700', 'content': 'Suscipit cumque alias debitis necessitatibus et qui.', 'subject': 'Possimus laudantium exercitationem ut deleniti similique', }, { 'id': '27', 'first-name': 'Keira', 'last-name': 'Stamm', 'email': 'karlie@witting.info', 'date': '2010-11-11 16:17:29 -0800', 'content': 'Rerum cum at autem repellat quod nihil. Quasi voluptates minus autem accusantium debitis cumque qui.', 'subject': 'Nostrum repudiandae voluptatum adipisci ut error sunt et sint', }, { 'id': '28', 'first-name': 'Clark', 'last-name': 'Predovic', 'email': 'palma@ankundingbednar.biz', 'date': '1978-02-10 16:55:54 -0800', 'content': 'Non ex aperiam porro. At harum vitae ut exercitationem qui qui. Quae sed sapiente sed debitis officiis quis unde.', 'subject': 'Eos eligendi voluptatum consequatur reprehenderit', }, { 'id': '29', 'first-name': 'Colby', 'last-name': 'Jacobson', 'email': 'rozella@spencer.com', 'date': '1978-01-04 00:18:51 -0800', 'content': 'Molestiae laudantium voluptas ipsa est laborum vel. Dolorem et est nihil distinctio numquam.', 'subject': 'Aut et sint deleniti mollitia debitis', }, { 'id': '30', 'first-name': 'Kayley', 'last-name': 'Connelly', 'email': 'rowland.thiel@gutmannorn.info', 'date': '2012-12-10 09:59:08 -0800', 'content': 'Eligendi quia repellat distinctio eum voluptas debitis. Totam a alias qui voluptates dolor.', 'subject': 'Ipsum consequatur culpa repellat quae mollitia quia unde', }, { 'id': '31', 'first-name': 'Kay', 'last-name': 'Reynolds', 'email': 'lexie.frami@beattyschoen.info', 'date': '1991-05-27 22:37:41 -0700', 'content': 'Laborum quod iusto in voluptas et adipisci dolor. Totam et voluptatibus id tempora. Asperiores magnam dolorem quo iste sapiente.', 'subject': 'Tempora et eligendi quia dolorem alias ullam maiores doloremque', }, { 'id': '32', 'first-name': 'Ellsworth', 'last-name': 'Veum', 'email': 'estefania_hermann@murray.biz', 'date': '1974-12-07 03:43:52 -0800', 'content': 'Et commodi molestiae hic distinctio et iusto. Quod illo natus unde est aut. Laborum rem rerum totam.', 'subject': 'Expedita nostrum consectetur sint velit modi maxime quisquam', }, { 'id': '33', 'first-name': 'Adeline', 'last-name': 'Altenwerth', 'email': 'francesco@weberstroman.com', 'date': '1988-03-25 22:52:39 -0800', 'content': 'Quod deserunt eum dignissimos eius et veniam. Non exercitationem omnis molestiae corrupti aliquid commodi repudiandae.', 'subject': 'Dolor incidunt debitis possimus temporibus rerum quibusdam eaque', },
{ "end_byte": 11376, "start_byte": 5751, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_11380_17079
{ 'id': '34', 'first-name': 'River', 'last-name': 'Roob', 'email': 'lester.hodkiewicz@hoppemcglynn.name', 'date': '1981-01-03 06:04:53 -0800', 'content': 'Sed dolorem et laborum voluptate perspiciatis doloremque aliquam. Recusandae et odit. Sit esse consequatur occaecati fuga sed.', 'subject': 'Dolorem ut quia repudiandae accusamus reprehenderit dignissimos iste cupiditate', }, { 'id': '35', 'first-name': 'Chaya', 'last-name': 'Stokes', 'email': 'rebekah.baumbach@toy.org', 'date': '1979-09-03 07:52:52 -0700', 'content': 'Ea voluptas minus hic omnis.', 'subject': 'Ab repellendus quia eos eius', }, { 'id': '36', 'first-name': 'Cara', 'last-name': 'Brown', 'email': 'natasha_gibson@bins.name', 'date': '1985-12-19 03:29:37 -0800', 'content': 'Numquam nobis consectetur modi eligendi. Facere adipisci aut velit quis dolor quidem totam. Consequatur qui placeat aut molestiae dignissimos.', 'subject': 'Est quia reiciendis enim et totam temporibus', }, { 'id': '37', 'first-name': 'Laron', 'last-name': 'Wunsch', 'email': 'erna@heathcote.com', 'date': '2004-06-28 16:53:07 -0700', 'content': 'Quisquam maxime nostrum explicabo corrupti ut. Et accusantium culpa occaecati officiis quo.', 'subject': 'Et et nulla aspernatur quas distinctio', }, { 'id': '38', 'first-name': 'Lessie', 'last-name': 'Roob', 'email': 'ona_olson@dicki.biz', 'date': '1980-02-10 00:18:48 -0800', 'content': 'Facere veritatis aut quam praesentium ut. Consectetur praesentium explicabo consequuntur quia vel rem.', 'subject': 'Tenetur ducimus mollitia consequatur dicta', }, { 'id': '39', 'first-name': 'Felton', 'last-name': 'Labadie', 'email': 'stone.kihn@vonruedenbartoletti.biz', 'date': '2002-04-04 17:29:31 -0800', 'content': 'Iure ad nesciunt. Excepturi impedit eum suscipit dignissimos est. Corrupti accusamus sapiente ratione eaque iure aut mollitia.', 'subject': 'Sunt et eius et iusto accusamus voluptas eum', }, { 'id': '40', 'first-name': 'Verna', 'last-name': 'Hoppe', 'email': 'arthur_schiller@daniel.org', 'date': '2013-05-15 16:04:25 -0700', 'content': 'Veniam quia omnis at sapiente. Est est fugit eum. Impedit suscipit hic similique eum quibusdam.', 'subject': 'Voluptatum ipsum libero et vitae odio dolore tenetur perspiciatis', }, { 'id': '41', 'first-name': 'Velda', 'last-name': 'Veum', 'email': 'christy@feil.org', 'date': '1988-10-24 12:42:25 -0700', 'content': 'Rem inventore necessitatibus iste et quia vero laudantium.', 'subject': 'Suscipit similique provident officia est explicabo sed', }, { 'id': '42', 'first-name': 'Mackenzie', 'last-name': 'Schroeder', 'email': 'miles.dietrich@stehrkuhic.org', 'date': '1990-01-07 22:38:09 -0800', 'content': 'Non autem delectus. Architecto recusandae unde quia rerum inventore repudiandae.', 'subject': 'Molestiae odio et repudiandae ut', }, { 'id': '43', 'first-name': 'Natalie', 'last-name': 'Hoeger', 'email': 'gregorio_mosciski@schneiderframi.net', 'date': '1976-04-06 06:23:07 -0800', 'content': 'Iste id illo cupiditate enim aut quo. Vel ut eos qui. Aut at in eum maiores voluptatem quidem.', 'subject': 'Quia officiis sit sint aliquid ad quibusdam et', }, { 'id': '44', 'first-name': 'Joan', 'last-name': 'Mosciski', 'email': 'thad@dickivolkman.info', 'date': '1990-12-26 15:04:40 -0800', 'content': 'Culpa est officia veritatis esse.', 'subject': 'Est eum ullam quo', }, { 'id': '45', 'first-name': 'Emmitt', 'last-name': 'Keeling', 'email': 'cali@ferry.info', 'date': '2009-04-10 10:14:57 -0700', 'content': 'Numquam velit sunt sed et ut. Laudantium qui laboriosam quibusdam qui. Odio non maxime soluta vero qui.', 'subject': 'Accusantium saepe id totam aut reiciendis at esse magnam', }, { 'id': '46', 'first-name': 'Guy', 'last-name': 'Renner', 'email': 'naomie_klein@streich.name', 'date': '1970-12-18 13:09:51 -0800', 'content': 'Iure quia at excepturi sit consequatur.', 'subject': 'Commodi aut ipsa accusantium dolor repudiandae in', }, { 'id': '47', 'first-name': 'Eric', 'last-name': 'Kihn', 'email': 'dock.schmeler@langworth.biz', 'date': '1993-12-17 11:17:07 -0800', 'content': 'Facere voluptate omnis qui officia dicta.', 'subject': 'Incidunt a libero ab asperiores fuga ut quo illum', }, { 'id': '48', 'first-name': 'Kraig', 'last-name': 'Keeling', 'email': 'alejandrin@streichwiegand.org', 'date': '1977-12-09 14:54:22 -0800', 'content': 'Asperiores expedita incidunt in cum ex vel hic.', 'subject': 'In illum quisquam ut est eligendi aut', }, { 'id': '49', 'first-name': 'Justice', 'last-name': 'Leuschke', 'email': 'florencio@conn.info', 'date': '1991-12-14 09:38:08 -0800', 'content': 'Aspernatur nesciunt voluptas sit. Cum architecto enim et blanditiis soluta dolor. Recusandae numquam occaecati esse animi et aut.', 'subject': 'Quaerat voluptatibus eum sapiente iure deserunt', }, { 'id': '50', 'first-name': 'Jodie', 'last-name': "O'Hara", 'email': 'rick@stehrboehm.info', 'date': '2000-07-21 05:34:03 -0700', 'content': 'Labore repudiandae dolor nostrum quo tempora eos. Natus ea fugit voluptas doloremque distinctio quaerat unde. Ut aut nostrum.', 'subject': 'Tempore in quam id aliquam fuga eos dolor', },
{ "end_byte": 17079, "start_byte": 11380, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_17083_22608
{ 'id': '51', 'first-name': 'Dannie', 'last-name': 'Vandervort', 'email': 'mariana@abbottruecker.biz', 'date': '2001-09-15 19:00:54 -0700', 'content': 'Consectetur dolore voluptas.', 'subject': 'Tenetur possimus et fuga mollitia perferendis omnis corporis', }, { 'id': '52', 'first-name': 'Delaney', 'last-name': 'Champlin', 'email': 'kyler_welch@krisrowe.biz', 'date': '2014-07-22 07:09:07 -0700', 'content': 'Voluptates qui aut.', 'subject': 'Quam eos laborum nisi delectus', }, { 'id': '53', 'first-name': 'Barbara', 'last-name': 'Kihn', 'email': 'tyrese.casper@keebler.net', 'date': '1996-02-29 20:04:40 -0800', 'content': 'Totam labore voluptatem eos qui temporibus velit.', 'subject': 'Eum neque sed aut sunt', }, { 'id': '54', 'first-name': 'Jarred', 'last-name': 'Shanahan', 'email': 'coralie@weinat.net', 'date': '1977-06-08 01:46:22 -0700', 'content': 'Sed et voluptatum ut est quo et aut.', 'subject': 'Aut eligendi voluptas mollitia et accusamus sint nemo', }, { 'id': '55', 'first-name': 'Llewellyn', 'last-name': 'Bechtelar', 'email': 'kaci@jast.com', 'date': '1998-12-01 21:14:32 -0800', 'content': 'Architecto eligendi et ut occaecati temporibus voluptas quia.', 'subject': 'Sint quis vitae voluptatem dolor aut quo maiores quas', }, { 'id': '56', 'first-name': 'Albertha', 'last-name': 'Upton', 'email': 'august@bradtkemiller.net', 'date': '2006-11-16 14:38:45 -0800', 'content': 'Voluptas perspiciatis recusandae et. Sequi eum eius dicta dolorem. Alias reprehenderit explicabo doloribus exercitationem sint.', 'subject': 'Quo nihil fuga dolores cumque rerum eos asperiores', }, { 'id': '57', 'first-name': 'Christy', 'last-name': 'Considine', 'email': 'eliseo@veum.com', 'date': '1997-05-17 13:54:41 -0700', 'content': 'Consequatur rerum laudantium distinctio magni. Iusto ullam et suscipit nemo ex velit voluptatem.', 'subject': 'Ut ea quisquam libero qui repudiandae aut officia', }, { 'id': '58', 'first-name': 'Jessica', 'last-name': 'Simonis', 'email': 'rickey@mertz.info', 'date': '2012-10-04 00:32:34 -0700', 'content': 'Neque tenetur sunt sunt ratione. Rerum dolorem illo ab blanditiis quisquam architecto. Quidem ea exercitationem enim eos.', 'subject': 'Atque quo nemo explicabo voluptas blanditiis accusantium et', }, { 'id': '59', 'first-name': 'Justen', 'last-name': 'Davis', 'email': 'karen@jaskolskigleason.org', 'date': '1994-08-10 02:33:43 -0700', 'content': 'Eius tenetur mollitia ad alias ab.', 'subject': 'Ut accusantium sunt qui nostrum eligendi', }, { 'id': '60', 'first-name': 'Elwin', 'last-name': 'Daugherty', 'email': 'milo@ko.net', 'date': '1976-06-30 05:16:38 -0700', 'content': 'Sit necessitatibus minus.', 'subject': 'A molestiae voluptates ducimus id est recusandae', }, { 'id': '61', 'first-name': 'Clair', 'last-name': 'Raynor', 'email': 'zella.hermiston@batz.org', 'date': '1985-12-18 14:30:18 -0800', 'content': 'Aut aliquid est sit pariatur voluptatem dolorum.', 'subject': 'Consectetur reprehenderit temporibus vel voluptatem voluptatem et rem fuga', }, { 'id': '62', 'first-name': 'Hilario', 'last-name': 'Klein', 'email': 'adrain@stark.biz', 'date': '1980-09-08 18:06:43 -0700', 'content': 'Eum dolore optio quos animi.', 'subject': 'Illum nihil vitae molestiae laboriosam beatae modi', }, { 'id': '63', 'first-name': 'Greta', 'last-name': 'Murray', 'email': 'ethelyn@fritsch.org', 'date': '1970-05-23 02:27:54 -0700', 'content': 'Quisquam animi et recusandae rem modi eos ipsa. Eaque et expedita qui animi veritatis temporibus.', 'subject': 'Repellendus fuga sint nemo', }, { 'id': '64', 'first-name': 'Anissa', 'last-name': 'Adams', 'email': 'edward@armstrong.com', 'date': '1997-01-26 22:21:57 -0800', 'content': 'Laudantium culpa rem voluptas tempore. Sit modi dolor est sunt rem.', 'subject': 'Autem unde minima quia beatae totam', }, { 'id': '65', 'first-name': 'Kaylah', 'last-name': 'Conroy', 'email': 'brian.cormier@hyatt.org', 'date': '2015-02-02 07:44:37 -0800', 'content': 'Voluptates vitae nulla expedita. Possimus et quo aut eum.', 'subject': 'Molestiae minus enim adipisci et', }, { 'id': '66', 'first-name': 'Jamey', 'last-name': 'Ebert', 'email': 'seth@pfannerstillrodriguez.name', 'date': '1987-09-29 09:40:59 -0700', 'content': 'Voluptatem est quae.', 'subject': 'Similique nemo placeat id tempore dolorum', }, { 'id': '67', 'first-name': 'Johnson', 'last-name': 'Mosciski', 'email': 'morton@littel.net', 'date': '1989-02-14 11:15:10 -0800', 'content': 'Molestias expedita exercitationem et praesentium et vel delectus. Qui fuga molestias porro.', 'subject': 'Aut rerum quidem est iste in blanditiis sit', }, { 'id': '68', 'first-name': 'Ellis', 'last-name': "O'Keefe", 'email': 'taurean@ullrich.biz', 'date': '1987-03-09 11:29:05 -0800', 'content': 'Facere sint doloribus qui illo autem consequatur culpa. Est quisquam enim accusantium praesentium.', 'subject': 'Quis beatae quia velit deserunt est sit odit quisquam', },
{ "end_byte": 22608, "start_byte": 17083, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_22612_28163
{ 'id': '69', 'first-name': 'Marlen', 'last-name': 'Ritchie', 'email': 'rodger_schamberger@thiel.net', 'date': '1989-07-23 03:03:52 -0700', 'content': 'Doloribus porro hic quis explicabo fuga veritatis vero.', 'subject': 'Et doloribus est consequatur unde', }, { 'id': '70', 'first-name': 'Maddison', 'last-name': 'Kuhic', 'email': 'rosetta@von.biz', 'date': '1975-06-22 10:34:58 -0700', 'content': 'Sit ut eos libero error sapiente veritatis. Est dolore qui impedit recusandae quas animi rerum.', 'subject': 'Quos culpa assumenda enim eius aliquid dolorum', }, { 'id': '71', 'first-name': 'Whitney', 'last-name': 'Parisian', 'email': 'everardo@langworth.name', 'date': '1970-11-04 01:17:28 -0800', 'content': 'Quam dolores pariatur ut possimus. Alias tenetur ex accusantium quasi. Nihil dolorem mollitia quidem.', 'subject': 'Officia totam excepturi sed illum et tempore commodi sit', }, { 'id': '72', 'first-name': 'Madyson', 'last-name': 'Streich', 'email': 'imani@murray.biz', 'date': '1983-07-16 11:27:34 -0700', 'content': 'Veritatis molestiae id placeat dolorem consectetur a est. Est enim aut. Magnam aut distinctio quo sapiente ea est accusantium.', 'subject': 'Aut sunt esse eligendi et qui ut sed', }, { 'id': '73', 'first-name': 'Laurie', 'last-name': 'Purdy', 'email': 'jarrell@paucek.biz', 'date': '1992-10-18 12:48:31 -0700', 'content': 'Saepe facilis est repellendus praesentium autem. Qui soluta voluptas ullam sequi. Molestias aut quibusdam.', 'subject': 'Quo ullam totam sit dolores', }, { 'id': '74', 'first-name': 'Ollie', 'last-name': 'Lowe', 'email': 'corene@kris.info', 'date': '1976-08-24 16:28:46 -0700', 'content': 'Nostrum qui eaque aperiam possimus libero non. Quae aut enim non.', 'subject': 'Optio minus aut officiis voluptates reiciendis sit dicta', }, { 'id': '75', 'first-name': 'Ian', 'last-name': 'Murray', 'email': 'adelia_bernhard@maggio.com', 'date': '1982-04-08 00:25:22 -0800', 'content': 'Quod dolores quibusdam nihil aut vel. Sit ab vitae necessitatibus eum.', 'subject': 'Quia praesentium nam debitis nulla repellendus quos', }, { 'id': '76', 'first-name': 'Bernard', 'last-name': 'Zieme', 'email': 'kaelyn.johnson@markswalsh.net', 'date': '2014-01-17 03:47:35 -0800', 'content': 'Repellendus qui reiciendis quibusdam voluptatum voluptate omnis.', 'subject': 'Mollitia ut omnis tempore aut debitis ratione alias illum', }, { 'id': '77', 'first-name': 'Megane', 'last-name': 'Kuvalis', 'email': 'otis@donnellypouros.name', 'date': '1987-09-29 22:10:00 -0700', 'content': 'Explicabo repellat qui placeat inventore velit. Tempora accusamus minima facilis dicta architecto unde. Excepturi enim eos.', 'subject': 'Quam molestias amet officiis', }, { 'id': '78', 'first-name': 'Freeman', 'last-name': 'Nader', 'email': 'samara_hoppe@dachcorkery.info', 'date': '2009-02-02 12:08:30 -0800', 'content': 'Perferendis aut minus in.', 'subject': 'Voluptates odio neque laudantium accusamus ipsa accusantium', }, { 'id': '79', 'first-name': 'Margarita', 'last-name': 'Heller', 'email': 'heloise@rogahn.name', 'date': '1984-01-04 10:41:32 -0800', 'content': 'Officiis voluptas omnis. Nihil consectetur id reiciendis qui nemo est.', 'subject': 'Velit in molestias quo repudiandae accusamus et excepturi et', }, { 'id': '80', 'first-name': 'Lonny', 'last-name': 'Goodwin', 'email': 'darian@kundebernier.info', 'date': '1999-02-08 07:00:38 -0800', 'content': 'Earum provident et minima aliquam iusto sint. Sed numquam ducimus voluptatem quos enim.', 'subject': 'Commodi beatae vitae aut quos dolor consequatur', }, { 'id': '81', 'first-name': 'Jazlyn', 'last-name': 'Bayer', 'email': 'harvey@rempel.org', 'date': '2009-09-28 16:50:32 -0700', 'content': 'Ipsum voluptas perferendis aperiam dolor.', 'subject': 'Omnis inventore nobis cupiditate quas quis tenetur', }, { 'id': '82', 'first-name': 'Jakob', 'last-name': 'Conn', 'email': 'rylee@vandervort.net', 'date': '2008-11-12 17:22:34 -0800', 'content': 'Aut temporibus perferendis neque nulla et. Totam ab neque inventore et facere eligendi.', 'subject': 'A optio ut molestiae iste et nam', }, { 'id': '83', 'first-name': 'Mikayla', 'last-name': 'Romaguera', 'email': 'rebecca_moriette@stracke.net', 'date': '1986-08-09 12:39:31 -0700', 'content': 'Dicta et reiciendis corrupti.', 'subject': 'Neque odio voluptates aut quam', }, { 'id': '84', 'first-name': 'Brianne', 'last-name': 'West', 'email': 'sheila@terry.com', 'date': '1972-04-25 22:32:20 -0800', 'content': 'Nulla sit mollitia qui odit sit corrupti repudiandae. Voluptas consequuntur voluptatibus molestiae. Illo quidem nostrum odio et.', 'subject': 'Deserunt voluptas et accusamus', }, { 'id': '85', 'first-name': 'Destiny', 'last-name': 'Mohr', 'email': 'ernestine.waters@connellypfannerstill.com', 'date': '2012-10-30 15:02:35 -0700', 'content': 'Eveniet voluptatem molestias dolores aut voluptates. Quisquam nemo ipsam dicta numquam aut temporibus.', 'subject': 'Pariatur nisi facilis tempora', },
{ "end_byte": 28163, "start_byte": 22612, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_28167_33950
{ 'id': '86', 'first-name': 'Brooks', 'last-name': 'Herman', 'email': 'brendan_smith@treutel.info', 'date': '1972-04-01 17:10:07 -0800', 'content': 'Qui sunt dolore molestiae minima. Suscipit ea quia a aut sunt et.', 'subject': 'Magni quia perferendis possimus ipsam', }, { 'id': '87', 'first-name': 'Celestino', 'last-name': 'Dickens', 'email': 'cruz.mcdermott@ziemann.org', 'date': '2007-08-14 14:55:17 -0700', 'content': 'Saepe libero tenetur.', 'subject': 'Molestiae nulla aut laborum placeat perferendis aliquam', }, { 'id': '88', 'first-name': 'Angel', 'last-name': 'Tillman', 'email': 'shayna_baumbach@durgan.biz', 'date': '1978-08-31 01:02:14 -0700', 'content': 'Libero sequi ea dolore. Numquam quia temporibus voluptatum rerum. Deserunt tenetur nesciunt veritatis debitis.', 'subject': 'Occaecati quo omnis adipisci sit perspiciatis aut modi cum', }, { 'id': '89', 'first-name': 'Verlie', 'last-name': 'Tillman', 'email': 'aurelia@gorczany.name', 'date': '1995-07-27 01:25:55 -0700', 'content': 'Iure est veritatis qui et. Sit tempore ducimus repellat cupiditate.', 'subject': 'Dolorum similique expedita praesentium quisquam quasi dolorem eligendi', }, { 'id': '90', 'first-name': 'Cornell', 'last-name': 'Padberg', 'email': 'rhianna@thiel.name', 'date': '2009-12-14 14:21:13 -0800', 'content': 'Ea modi consequatur. Necessitatibus sit qui voluptatem et accusantium. Cumque rerum omnis.', 'subject': 'Molestiae nostrum aut officiis porro tempore', }, { 'id': '91', 'first-name': 'Carmelo', 'last-name': 'Kunde', 'email': 'beulah@rolfsonschaefer.info', 'date': '2010-08-14 23:10:58 -0700', 'content': 'Ut molestiae dolorem fuga in aliquam est provident.', 'subject': 'Atque occaecati temporibus et autem est', }, { 'id': '92', 'first-name': 'Jess', 'last-name': 'Corwin', 'email': 'korey.barrows@reillyankunding.com', 'date': '1976-11-13 05:09:16 -0800', 'content': 'Commodi eveniet aspernatur earum nisi aut sit dolor. Odio vero facilis reprehenderit dolore. Provident voluptatibus atque qui assumenda quaerat.', 'subject': 'Commodi laboriosam accusamus quis dolores tempora eos', }, { 'id': '93', 'first-name': 'Hugh', 'last-name': 'Hirthe', 'email': 'verla.dickens@keeling.name', 'date': '1971-03-17 23:51:15 -0800', 'content': 'Voluptatibus saepe dolor voluptas sed cupiditate incidunt. Magni velit ut beatae minus. Consequatur recusandae voluptas ad ex dolores modi quos.', 'subject': 'Ut pariatur odit mollitia soluta eaque magnam', }, { 'id': '94', 'first-name': 'Elsa', 'last-name': 'Morissette', 'email': 'otto@ohara.org', 'date': '2006-11-27 01:10:16 -0800', 'content': 'Et architecto ipsam asperiores vitae quo. Fugiat error quidem facilis. Eaque officiis est veniam.', 'subject': 'Autem rerum consequatur suscipit veritatis', }, { 'id': '95', 'first-name': 'Gianni', 'last-name': 'Nitzsche', 'email': 'maxine.carter@schimmelfritsch.com', 'date': '2006-02-22 21:52:15 -0800', 'content': 'Nam aut at esse. Adipisci tenetur in voluptas. Dolore quia nobis voluptatibus iure sit eaque fugit.', 'subject': 'Et est rerum non aut eum', }, { 'id': '96', 'first-name': 'Reed', 'last-name': 'Kirlin', 'email': 'keaton@gutmann.net', 'date': '2001-08-15 19:41:38 -0700', 'content': 'Mollitia hic numquam dicta.', 'subject': 'Est accusantium et nam dolores aliquam', }, { 'id': '97', 'first-name': 'Thelma', 'last-name': 'Labadie', 'email': 'leonor@bahringer.biz', 'date': '1993-01-04 20:38:12 -0800', 'content': 'Porro rerum ea similique. Vel qui est. Temporibus a distinctio dolor doloremque eos beatae.', 'subject': 'Aut et quasi aut', }, { 'id': '98', 'first-name': 'Neva', 'last-name': 'Stehr', 'email': 'clifton.turner@beeroconnell.name', 'date': '1983-03-21 03:23:41 -0800', 'content': 'Voluptatem impedit sed minus. Incidunt ad est consequatur rerum mollitia.', 'subject': 'Eum sapiente quis placeat', }, { 'id': '99', 'first-name': 'Jovan', 'last-name': 'Kunze', 'email': 'grady_keler@casper.net', 'date': '1985-11-17 01:24:57 -0800', 'content': 'Molestiae laboriosam quia adipisci delectus praesentium nam. Dolorum repudiandae delectus esse quis voluptatem similique. Illum tempore vitae quia minus.', 'subject': 'Nihil qui repellendus animi nostrum voluptas quisquam aut minima', }, { 'id': '100', 'first-name': 'Agustin', 'last-name': 'Rowe', 'email': 'roderick@cartermckenzie.name', 'date': '2013-08-15 06:42:43 -0700', 'content': 'Quo eaque non laboriosam sunt. Ad aliquid laudantium quia. Aut nisi magnam.', 'subject': 'Aut hic iste maiores sit', }, { 'id': '101', 'first-name': 'Lennie', 'last-name': 'Pacocha', 'email': 'valentine@goldnerryan.com', 'date': '1995-11-23 15:07:48 -0800', 'content': 'Provident sit voluptate odio qui. Est consequatur nobis. Quibusdam exercitationem ducimus aspernatur.', 'subject': 'Perferendis adipisci necessitatibus qui similique', }, { 'id': '102', 'first-name': 'Brionna', 'last-name': 'Brown', 'email': 'jesus@gusikowski.info', 'date': '2007-12-21 20:22:44 -0800', 'content': 'Qui deleniti quaerat ratione doloremque ea quod consequatur. Illo consequatur nisi eos molestiae quos ullam. Enim neque rerum perspiciatis inventore consectetur.', 'subject': 'Perferendis ratione voluptatem quae non magnam', },
{ "end_byte": 33950, "start_byte": 28167, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_33954_39475
{ 'id': '103', 'first-name': 'Ceasar', 'last-name': 'Becker', 'email': 'barney@conn.biz', 'date': '1991-03-31 18:06:07 -0800', 'content': 'Cupiditate ipsa minus. Recusandae consequatur aperiam ab ut sint expedita.', 'subject': 'Dolore voluptatum maiores repudiandae ipsam qui consectetur veniam et', }, { 'id': '104', 'first-name': 'Jadon', 'last-name': 'Walker', 'email': 'alexie@brownspencer.biz', 'date': '2014-05-05 03:04:04 -0700', 'content': 'Ipsam ut molestias necessitatibus consequatur eligendi adipisci nihil. Nemo voluptatem dolores iure enim fuga.', 'subject': 'Sunt officia voluptas porro et voluptatum exercitationem aut id', }, { 'id': '105', 'first-name': 'Harvey', 'last-name': 'Little', 'email': 'dell_reichel@mayert.name', 'date': '1997-05-17 16:09:39 -0700', 'content': 'Saepe et voluptate enim facere. Nihil est et sint odit aut quae. Deserunt molestiae explicabo impedit iure quod ratione.', 'subject': 'Veniam ipsum est eum dolorem neque aut', }, { 'id': '106', 'first-name': 'Kailey', 'last-name': 'Doyle', 'email': 'golda@hayesdavis.name', 'date': '1992-07-01 10:53:52 -0700', 'content': 'Necessitatibus aspernatur nesciunt rerum nam. Qui quaerat modi. Et voluptatem ut quod perspiciatis quo eligendi.', 'subject': 'Exercitationem voluptatem sunt hic debitis', }, { 'id': '107', 'first-name': 'Emily', 'last-name': 'Gutmann', 'email': 'mazie@bashirian.biz', 'date': '1999-12-26 09:22:07 -0800', 'content': 'Rem debitis qui quia. Nihil quis quia omnis et ea aliquid. Quam praesentium commodi itaque.', 'subject': 'Maiores ea alias fuga', }, { 'id': '108', 'first-name': 'Jack', 'last-name': "O'Keefe", 'email': 'carlos@wilkinson.biz', 'date': '1988-04-28 18:31:09 -0700', 'content': 'Ab aspernatur vel et. Architecto occaecati qui. Adipisci ut sequi culpa.', 'subject': 'Qui fuga rerum quo', }, { 'id': '109', 'first-name': 'Mylene', 'last-name': 'Barton', 'email': 'sherman.kunde@block.info', 'date': '1996-04-16 20:06:02 -0700', 'content': 'Nostrum iste laboriosam corporis omnis.', 'subject': 'Nihil et minima odit iste et beatae', }, { 'id': '110', 'first-name': 'Cristopher', 'last-name': 'Krajcik', 'email': 'levi@oconnell.com', 'date': '1989-11-08 03:06:37 -0800', 'content': 'Assumenda qui et accusamus magnam deserunt ut nobis.', 'subject': 'Aut numquam saepe placeat facilis at', }, { 'id': '111', 'first-name': 'Amya', 'last-name': 'Anderson', 'email': 'travis@waelchigottlieb.biz', 'date': '1986-12-25 15:27:02 -0800', 'content': 'Iure numquam ea omnis nemo illo.', 'subject': 'Labore sit aut ea in nemo et deleniti', }, { 'id': '112', 'first-name': 'Alphonso', 'last-name': 'Buckridge', 'email': 'duncan@barton.name', 'date': '1991-02-27 01:09:28 -0800', 'content': 'Sint ducimus sed temporibus quo. Voluptas possimus eaque earum aut.', 'subject': 'Quidem aliquid blanditiis quasi', }, { 'id': '113', 'first-name': 'Jovani', 'last-name': 'Thompson', 'email': 'lewis.greenfelder@stark.biz', 'date': '1970-10-29 18:08:36 -0800', 'content': 'Modi aut ut amet ut qui.', 'subject': 'Deserunt est autem sed dicta qui', }, { 'id': '114', 'first-name': 'Roosevelt', 'last-name': 'Blick', 'email': 'sophie_kaulke@kunze.biz', 'date': '2001-11-11 17:45:44 -0800', 'content': 'Debitis non exercitationem vero nostrum dignissimos. Et voluptates ad nulla.', 'subject': 'Quasi est ipsam accusantium sint', }, { 'id': '115', 'first-name': 'Darren', 'last-name': 'Brown', 'email': 'jammie@hickle.net', 'date': '2007-10-05 11:14:49 -0700', 'content': 'Quas ut odio blanditiis corrupti quia dolor. Id enim in veniam voluptatem. Laborum delectus quidem voluptatem beatae facilis ut.', 'subject': 'Fugiat totam dolores harum soluta iusto et', }, { 'id': '116', 'first-name': 'Dexter', 'last-name': 'Schroeder', 'email': 'efrain.corwin@hane.name', 'date': '1973-09-30 19:52:23 -0700', 'content': 'Debitis assumenda fugit. Sunt omnis in quod aut quibusdam qui.', 'subject': 'Aut iure molestias suscipit laboriosam dolores', }, { 'id': '117', 'first-name': 'Mellie', 'last-name': 'Hilpert', 'email': 'amiya_haley@douglasbins.org', 'date': '1992-05-14 20:52:23 -0700', 'content': 'Vero aut perferendis commodi. Quod dolorem distinctio sint. Error nostrum reprehenderit aut quaerat officiis eaque.', 'subject': 'Omnis aliquid rerum fuga vero molestiae quidem eveniet', }, { 'id': '118', 'first-name': 'Laura', 'last-name': 'Koepp', 'email': 'gus@hagenes.biz', 'date': '2007-08-04 22:19:10 -0700', 'content': 'Quibusdam fugiat quasi consequatur. Ipsam corporis nesciunt quae ipsa aliquid hic eius.', 'subject': 'Asperiores quisquam voluptatem aut quam dolores', }, { 'id': '119', 'first-name': 'Amara', 'last-name': 'Jerde', 'email': 'estelle@marksdonnelly.info', 'date': '1989-08-19 01:24:43 -0700', 'content': 'Architecto voluptatum quas pariatur expedita exercitationem quo. Sint eum perferendis a. Et similique est amet dolores.', 'subject': 'Id consequuntur nesciunt tenetur impedit sit voluptas', },
{ "end_byte": 39475, "start_byte": 33954, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_39479_45102
{ 'id': '120', 'first-name': 'Jacquelyn', 'last-name': 'Barton', 'email': 'antwon_mayer@kshleringibson.info', 'date': '1989-08-19 13:07:02 -0700', 'content': 'Quos enim repellendus praesentium sit rerum deserunt.', 'subject': 'Et omnis hic autem ipsa tempora impedit perspiciatis', }, { 'id': '121', 'first-name': 'Micaela', 'last-name': 'Runte', 'email': 'vivianne.graham@vonrueden.org', 'date': '1986-09-27 01:16:29 -0700', 'content': 'Et neque rem.', 'subject': 'Enim facere corrupti accusamus quam consequatur beatae aspernatur vero', }, { 'id': '122', 'first-name': 'Millie', 'last-name': 'Flatley', 'email': 'gino@kihn.biz', 'date': '1980-02-09 01:35:05 -0800', 'content': 'Rerum sint quis esse minus. Aut at asperiores. Amet magni beatae atque.', 'subject': 'Illo vitae blanditiis et impedit in dolor', }, { 'id': '123', 'first-name': 'Sincere', 'last-name': 'Rohan', 'email': 'zora@beattyerdman.org', 'date': '2002-11-11 22:02:22 -0800', 'content': 'Ut error voluptatem aut ratione molestiae. Omnis qui rem delectus.', 'subject': 'Unde sed voluptas assumenda non animi quo', }, { 'id': '124', 'first-name': 'Vicky', 'last-name': 'Kautzer', 'email': 'mustafa.lueilwitz@tremblay.name', 'date': '2014-08-15 11:18:05 -0700', 'content': 'Nostrum quis et et molestiae molestiae. Corporis corrupti deleniti qui fugiat eos. Porro qui quis mollitia.', 'subject': 'Quisquam ex esse dolore', }, { 'id': '125', 'first-name': 'Lavon', 'last-name': 'Padberg', 'email': 'destin_sanford@reynolds.net', 'date': '2005-07-11 21:24:34 -0700', 'content': 'Officia dolorem autem beatae soluta numquam aperiam et.', 'subject': 'Ad labore aut corporis', }, { 'id': '126', 'first-name': 'Shaina', 'last-name': 'Dare', 'email': 'carrie_sawayn@buckridge.net', 'date': '2001-10-12 08:02:09 -0700', 'content': 'Ex doloremque dolor deleniti.', 'subject': 'Asperiores recusandae reprehenderit quia tempore qui ipsam sit', }, { 'id': '127', 'first-name': 'Sigrid', 'last-name': 'Farrell', 'email': 'soledad_abshire@miller.net', 'date': '2003-03-24 17:55:50 -0800', 'content': 'Debitis ea soluta eos ut omnis. Ut et laboriosam. Quaerat sit velit impedit.', 'subject': 'Eum et nesciunt quidem quo repudiandae rerum doloremque beatae', }, { 'id': '128', 'first-name': 'Viola', 'last-name': 'Dooley', 'email': 'myrtice_grant@zemlakbashirian.com', 'date': '2006-06-01 21:17:02 -0700', 'content': 'Sit doloremque est aut voluptatem.', 'subject': 'Aut accusamus consectetur nihil iusto', }, { 'id': '129', 'first-name': 'Davion', 'last-name': 'Conn', 'email': 'travis@bins.biz', 'date': '1993-11-26 09:03:37 -0800', 'content': 'Voluptatibus ipsum mollitia fugit aspernatur enim sint. Laudantium exercitationem sed voluptas consequatur quis.', 'subject': 'Illum aspernatur tempora amet itaque ipsam distinctio aliquid', }, { 'id': '130', 'first-name': 'Hobart', 'last-name': 'Oberbrunner', 'email': 'eric@wisozk.net', 'date': '2000-02-11 07:40:02 -0800', 'content': 'Quis aut sint officia sunt.', 'subject': 'Ut pariatur explicabo consequatur libero distinctio nulla consequatur placeat', }, { 'id': '131', 'first-name': 'Raleigh', 'last-name': 'Hegmann', 'email': 'jasen.koepp@hickle.name', 'date': '1993-03-01 22:48:23 -0800', 'content': 'Delectus aut quod maxime incidunt et consequatur. Nihil eos et eveniet quo iure. Alias facilis earum dicta nulla quo sed.', 'subject': 'Aliquam eos aliquid dolor', }, { 'id': '132', 'first-name': 'Hector', 'last-name': 'Denesik', 'email': 'bernice@leuschke.biz', 'date': '2013-08-03 14:45:55 -0700', 'content': 'Et ut dicta. Qui sunt vel et voluptas hic suscipit.', 'subject': 'Ipsum quo est consequatur', }, { 'id': '133', 'first-name': 'Nikko', 'last-name': 'Rolfson', 'email': 'crystel@upton.net', 'date': '1977-02-19 16:22:15 -0800', 'content': 'Velit quo repellendus consequatur.', 'subject': 'Exercitationem omnis aut id deserunt nihil et inventore', }, { 'id': '134', 'first-name': 'Jovany', 'last-name': 'Nienow', 'email': 'neil.muller@lakin.info', 'date': '2004-09-28 21:55:43 -0700', 'content': 'Voluptatibus numquam blanditiis quibusdam. Illum suscipit dolorum. Sunt amet est sint.', 'subject': 'Esse nihil est voluptas rerum ea', }, { 'id': '135', 'first-name': 'Ellis', 'last-name': 'Kohler', 'email': 'cordie_bartoletti@barrows.net', 'date': '1989-09-19 13:57:30 -0700', 'content': 'Eum corporis nobis laborum fugiat amet alias. Voluptatum quasi ducimus fuga corrupti. Mollitia modi laborum.', 'subject': 'Ipsum modi nulla et', }, { 'id': '136', 'first-name': 'Marley', 'last-name': 'Runolfsson', 'email': 'kian_vonrueden@collier.info', 'date': '2003-01-17 06:33:04 -0800', 'content': 'Et rerum explicabo iusto ipsa ipsum. Quia ipsa ab sed perspiciatis.', 'subject': 'Voluptas esse iure quia hic dolor eligendi velit maiores', }, { 'id': '137', 'first-name': 'Grant', 'last-name': 'Jenkins', 'email': 'hayden.altenwerth@corkeryankunding.net', 'date': '1970-03-24 13:04:46 -0800', 'content': 'Tenetur odit ratione voluptatum dolore qui.', 'subject': 'Tempore est molestiae id', },
{ "end_byte": 45102, "start_byte": 39479, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_45106_50736
{ 'id': '138', 'first-name': 'Deangelo', 'last-name': 'Koss', 'email': 'reba.skiles@bruen.com', 'date': '1999-10-16 20:28:42 -0700', 'content': 'Sit vero sint ut beatae iure. Minima harum tempora sit rerum aut.', 'subject': 'Aspernatur cumque non consequatur blanditiis enim quas quam', }, { 'id': '139', 'first-name': 'Mariana', 'last-name': 'Jakubowski', 'email': 'brett@swift.biz', 'date': '1970-07-04 08:54:29 -0700', 'content': 'Beatae expedita praesentium ea corrupti. Aut sint ad et sunt.', 'subject': 'Dolore distinctio consequatur aut laudantium officiis aliquid soluta', }, { 'id': '140', 'first-name': 'Leonard', 'last-name': 'Kovacek', 'email': 'jermain@dachbruen.biz', 'date': '1981-10-15 00:39:10 -0700', 'content': 'Deserunt cupiditate modi. Eius consequatur aut dolor nostrum porro dignissimos. Labore consequatur quod est et distinctio possimus ducimus.', 'subject': 'Et rerum id voluptates et iure eligendi rerum', }, { 'id': '141', 'first-name': 'Etha', 'last-name': 'Ondricka', 'email': 'noemy@okuneva.org', 'date': '1994-04-29 12:19:51 -0700', 'content': 'Velit fuga quasi pariatur consectetur est nihil. Dolore nisi dolores quia qui voluptatem inventore provident.', 'subject': 'Enim est commodi nisi autem asperiores molestiae minima', }, { 'id': '142', 'first-name': 'Nannie', 'last-name': 'Fadel', 'email': 'frida.streich@prosacco.org', 'date': '2012-12-15 16:56:24 -0800', 'content': 'Rerum id quo. Recusandae aut optio voluptate perspiciatis tempore sed nemo.', 'subject': 'Pariatur soluta praesentium enim quo quam alias consequuntur in', }, { 'id': '143', 'first-name': 'Shyanne', 'last-name': 'Kunze', 'email': 'annabel@littel.net', 'date': '1992-12-09 23:41:23 -0800', 'content': 'Dolores iure iste unde. Illo esse autem harum perspiciatis.', 'subject': 'Atque illum et qui', }, { 'id': '144', 'first-name': 'Eloy', 'last-name': 'Barton', 'email': 'leonie_gulgowski@skiles.com', 'date': '2013-01-12 20:05:57 -0800', 'content': 'Cumque id sapiente explicabo. Voluptas pariatur quibusdam dolores et.', 'subject': 'Ut dolore velit qui omnis', }, { 'id': '145', 'first-name': 'Rosalinda', 'last-name': 'Pfeffer', 'email': 'anabelle@langworth.com', 'date': '2001-05-17 05:43:52 -0700', 'content': 'Et voluptatem quasi voluptatum.', 'subject': 'Voluptatum quia incidunt ut repudiandae blanditiis', }, { 'id': '146', 'first-name': 'William', 'last-name': 'Bogisich', 'email': 'bertha@gibsonrohan.info', 'date': '2009-11-01 04:28:13 -0800', 'content': 'Quaerat dolorem odio et dolor saepe quia odit. Corporis molestiae ab ipsa occaecati autem fuga dicta. Voluptate ratione sunt.', 'subject': 'Ipsam quidem mollitia blanditiis magnam ut et', }, { 'id': '147', 'first-name': 'Laurianne', 'last-name': 'Bergstrom', 'email': 'brisa_howe@dare.net', 'date': '2003-03-23 21:58:11 -0800', 'content': 'Et porro recusandae aut. Tenetur voluptas aperiam ut vitae.', 'subject': 'Molestias autem qui nisi mollitia nulla dolorum repudiandae hic', }, { 'id': '148', 'first-name': 'Carroll', 'last-name': 'Hickle', 'email': 'noemi.grady@grimesritchie.com', 'date': '1996-07-15 02:55:52 -0700', 'content': 'Quia voluptas assumenda. Numquam inventore facilis dicta qui ipsa reiciendis.', 'subject': 'Perferendis rerum vel incidunt molestias recusandae', }, { 'id': '149', 'first-name': 'Jasen', 'last-name': 'Romaguera', 'email': 'jayce@berge.name', 'date': '1984-04-12 11:56:39 -0800', 'content': 'Consectetur molestias perspiciatis ut omnis aliquid.', 'subject': 'Hic optio accusamus qui adipisci repellendus ipsa in', }, { 'id': '150', 'first-name': 'Heaven', 'last-name': 'Fay', 'email': 'enola@sanfordsteuber.net', 'date': '2000-11-23 00:18:07 -0800', 'content': 'Quia itaque temporibus. Provident ducimus quidem consectetur qui voluptatum. Sunt cum quis dolorum hic.', 'subject': 'Ad excepturi illum doloremque ducimus corporis ut qui omnis', }, { 'id': '151', 'first-name': 'Wilburn', 'last-name': 'Cartwright', 'email': 'jaida_erdman@nitzsche.com', 'date': '2011-09-19 01:58:53 -0700', 'content': 'Autem iure magni ut odio amet et.', 'subject': 'Fuga quis quidem sint laborum et delectus iste', }, { 'id': '152', 'first-name': 'Concepcion', 'last-name': 'McLaughlin', 'email': 'bernardo_langworth@jakubowski.org', 'date': '1992-08-20 13:35:09 -0700', 'content': 'Rerum laboriosam omnis nobis eaque odit sequi dicta.', 'subject': 'Sint accusantium ab quis sed ipsa', }, { 'id': '153', 'first-name': 'Vita', 'last-name': 'Fisher', 'email': 'chanelle_gulgowski@roob.info', 'date': '2005-09-21 12:09:45 -0700', 'content': 'Sunt quibusdam adipisci accusantium laborum distinctio voluptate autem. Quis pariatur culpa ut et. Fuga similique dignissimos culpa dolorum neque reiciendis.', 'subject': 'Nulla enim et fugiat eveniet ducimus delectus', }, { 'id': '154', 'first-name': 'Elliott', 'last-name': 'Champlin', 'email': 'kamille@kulascain.biz', 'date': '2003-05-20 15:42:54 -0700', 'content': 'Eos quisquam et voluptates rerum vel. Consectetur veniam voluptatem minus totam numquam in.', 'subject': 'Deleniti ipsum et odio', },
{ "end_byte": 50736, "start_byte": 45106, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_50740_56415
{ 'id': '155', 'first-name': 'Heidi', 'last-name': 'Macejkovic', 'email': 'stefanie@barrowshagenes.info', 'date': '1983-06-02 17:59:14 -0700', 'content': 'Ut officiis animi exercitationem delectus suscipit qui voluptatibus.', 'subject': 'Eveniet ipsam asperiores qui aut consectetur vel provident', }, { 'id': '156', 'first-name': 'Janae', 'last-name': 'Pollich', 'email': 'brianne.sauer@marquardtsteuber.com', 'date': '2000-05-14 07:13:30 -0700', 'content': 'Facilis sit ut odit.', 'subject': 'Sapiente explicabo sequi molestias illo saepe', }, { 'id': '157', 'first-name': 'Kaylin', 'last-name': 'Lindgren', 'email': 'urban.franecki@wilkinsonwilderman.org', 'date': '2014-09-09 00:48:38 -0700', 'content': 'Eaque ad repellendus est nihil iste vero.', 'subject': 'Deserunt qui dolor rerum ut beatae aut', }, { 'id': '158', 'first-name': 'Garland', 'last-name': 'Nienow', 'email': 'ellen.schultz@kihn.org', 'date': '2013-10-27 00:18:14 -0700', 'content': 'Quam voluptatem nam est.', 'subject': 'Et occaecati quisquam impedit dolore quod', }, { 'id': '159', 'first-name': 'Lilly', 'last-name': 'Hills', 'email': 'macey@labadie.biz', 'date': '1981-02-23 03:46:55 -0800', 'content': 'Quia perferendis est consequuntur voluptates cumque commodi. Laboriosam expedita sit excepturi.', 'subject': 'Eos doloribus repellendus provident', }, { 'id': '160', 'first-name': 'Lilla', 'last-name': 'Abshire', 'email': 'roselyn@rippin.org', 'date': '1998-05-16 00:55:49 -0700', 'content': 'Ratione deserunt ut ut beatae praesentium qui. Nulla ut ipsam tempore.', 'subject': 'Autem nostrum tempora iure laborum', }, { 'id': '161', 'first-name': 'Alessandro', 'last-name': 'Hayes', 'email': 'gia_bradtke@schimmelwalsh.biz', 'date': '2001-11-28 23:52:57 -0800', 'content': 'Quasi perspiciatis tenetur dolorum. Quae cupiditate fuga molestiae et tempore soluta.', 'subject': 'Non ipsam quis soluta', }, { 'id': '162', 'first-name': 'Sharon', 'last-name': 'Goodwin', 'email': 'ulices.schimmel@oreillyabshire.name', 'date': '2010-03-12 00:46:00 -0800', 'content': 'Neque omnis in. Qui ad sint. Velit voluptatibus repellat esse at.', 'subject': 'Magni exercitationem quas consectetur qui quia id', }, { 'id': '163', 'first-name': 'Claude', 'last-name': 'Gleason', 'email': 'ken.gulgowski@labadie.net', 'date': '2003-05-30 14:58:54 -0700', 'content': 'Et sit non harum quo sunt. Odio beatae voluptatem ad. Nemo in hic nulla.', 'subject': 'Nobis consequatur non sunt sequi ex nihil', }, { 'id': '164', 'first-name': 'Maximilian', 'last-name': 'Mann', 'email': 'samir@stehr.biz', 'date': '1993-08-21 15:54:18 -0700', 'content': 'Minus quae voluptatem sequi. Distinctio voluptatem amet iusto velit et praesentium. Distinctio ipsum voluptas voluptas.', 'subject': 'Facere voluptatem laudantium laboriosam omnis', }, { 'id': '165', 'first-name': 'Jennyfer', 'last-name': 'Satterfield', 'email': 'janiya_senger@olson.info', 'date': '2006-09-21 00:36:50 -0700', 'content': 'Doloribus praesentium excepturi omnis.', 'subject': 'Non fuga unde incidunt ad exercitationem maxime laboriosam qui', }, { 'id': '166', 'first-name': 'Robin', 'last-name': 'Murray', 'email': 'alycia@cruickshank.name', 'date': '1985-10-04 03:44:39 -0700', 'content': 'Repudiandae dolorem ut. Possimus earum dignissimos temporibus amet vel eum.', 'subject': 'Vel culpa debitis quam', }, { 'id': '167', 'first-name': 'Albina', 'last-name': 'Reinger', 'email': 'guie.gleason@gorczany.info', 'date': '1985-10-02 08:07:53 -0700', 'content': 'Natus rerum repellat voluptas. Distinctio dolor est in dolores.', 'subject': 'Modi perspiciatis iure odio hic et dignissimos rem qui', }, { 'id': '168', 'first-name': 'Eloisa', 'last-name': 'Wolf', 'email': 'leopold@jenkins.info', 'date': '2007-02-19 09:25:29 -0800', 'content': 'Corporis ut dolorem ullam quidem ratione. Nam eveniet dicta autem eum.', 'subject': 'Facilis voluptas vel repellat et aut amet est', }, { 'id': '169', 'first-name': 'Caden', 'last-name': 'Cartwright', 'email': 'mohammad_lockman@okoncrooks.net', 'date': '1974-11-14 03:12:44 -0800', 'content': 'Sunt nobis voluptate quasi sapiente magni a officia. Laudantium perspiciatis quod quis quidem voluptatum pariatur. Sit ut optio tempora.', 'subject': 'Nihil maxime officia et repellat', }, { 'id': '170', 'first-name': 'Raul', 'last-name': 'Sipes', 'email': 'danial.miller@kulas.info', 'date': '1996-12-11 14:14:16 -0800', 'content': 'Ea rerum quo id omnis. Hic est voluptate voluptatem ut. Rerum eos ipsa laboriosam et ut expedita.', 'subject': 'Aliquam reiciendis quam expedita sed ad neque voluptas', }, { 'id': '171', 'first-name': 'Allie', 'last-name': 'Runolfsson', 'email': 'skye@marvin.com', 'date': '2011-07-31 19:37:22 -0700', 'content': 'Perspiciatis mollitia fugit sunt et.', 'subject': 'Nihil expedita neque reprehenderit', }, { 'id': '172', 'first-name': 'Belle', 'last-name': 'Nader', 'email': 'eugenia@mante.info', 'date': '1995-09-06 05:30:08 -0700', 'content': 'Expedita delectus quis ipsa dolore voluptatum.', 'subject': 'Recusandae quasi ullam consequatur assumenda aliquid unde', },
{ "end_byte": 56415, "start_byte": 50740, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_56419_62006
{ 'id': '173', 'first-name': 'Clemens', 'last-name': 'Tromp', 'email': 'geovanny@kilback.org', 'date': '1980-11-28 08:48:35 -0800', 'content': 'Sint eos ea quidem tempora.', 'subject': 'Velit aperiam consequatur ut et aliquam at', }, { 'id': '174', 'first-name': 'Bettie', 'last-name': 'Mueller', 'email': 'edgardo@little.net', 'date': '1983-06-26 14:10:56 -0700', 'content': 'Dolore tempore accusamus.', 'subject': 'Autem tempore et ut', }, { 'id': '175', 'first-name': 'Guy', 'last-name': 'King', 'email': 'macie@schmeler.info', 'date': '1999-03-28 22:34:59 -0800', 'content': 'Recusandae laborum ut et eaque eum.', 'subject': 'Dolor ullam totam consequatur eos fuga', }, { 'id': '176', 'first-name': 'Cydney', 'last-name': 'Cronin', 'email': 'camren@thompson.org', 'date': '1993-10-23 02:50:41 -0700', 'content': 'Exercitationem modi eos sint vero. Iste possimus quis. Non est voluptas.', 'subject': 'Tempora ipsum soluta ut corrupti omnis in', }, { 'id': '177', 'first-name': 'Ludwig', 'last-name': 'Hoeger', 'email': 'javon@torpolson.info', 'date': '2007-12-20 19:09:13 -0800', 'content': 'Architecto ut optio tempore pariatur itaque saepe.', 'subject': 'Earum unde quis officiis doloremque et animi qui', }, { 'id': '178', 'first-name': 'Travon', 'last-name': 'Jacobi', 'email': 'jameson_streich@hansen.org', 'date': '2013-02-03 09:53:51 -0800', 'content': 'Autem dolorem totam atque id sit. Consectetur dolor maiores.', 'subject': 'Quia autem deleniti ullam neque odio', }, { 'id': '179', 'first-name': 'Brennan', 'last-name': 'Jaskolski', 'email': 'harold_thompson@schaefer.info', 'date': '2004-01-13 10:53:47 -0800', 'content': 'Libero et dolorem nihil. Omnis consequuntur possimus ut.', 'subject': 'Eum labore omnis ipsa doloremque consequuntur soluta esse fuga', }, { 'id': '180', 'first-name': 'Clifton', 'last-name': 'Boyer', 'email': 'justine@skiles.biz', 'date': '2000-01-28 22:33:14 -0800', 'content': 'Nobis recusandae fugiat quibusdam doloribus. Aut praesentium corrupti tenetur ullam quia.', 'subject': 'Ea dolorem voluptas aut cumque inventore delectus non molestiae', }, { 'id': '181', 'first-name': 'Walker', 'last-name': 'Rogahn', 'email': 'stanton@rempel.net', 'date': '2012-04-02 20:05:38 -0700', 'content': 'Consectetur et soluta. Minus voluptatem quod aut vitae praesentium.', 'subject': 'Tenetur architecto reprehenderit corporis fuga et rerum vel', }, { 'id': '182', 'first-name': 'Jennings', 'last-name': 'Hills', 'email': 'kenton@murrayharvey.biz', 'date': '2007-09-24 22:09:51 -0700', 'content': 'Velit porro quidem nostrum. Perspiciatis consequatur consectetur reiciendis sunt cupiditate quae. Vitae et ut autem iure.', 'subject': 'Cupiditate quis maiores omnis', }, { 'id': '183', 'first-name': 'Julianne', 'last-name': "O'Kon", 'email': 'helene@abshire.com', 'date': '1987-02-09 22:56:12 -0800', 'content': 'Voluptas voluptatem veniam porro dolorem maxime. Itaque eveniet laborum optio sed aspernatur omnis. Veritatis enim itaque sint illo ipsam eius.', 'subject': 'Corporis et laboriosam aspernatur aut', }, { 'id': '184', 'first-name': 'Raymond', 'last-name': 'Orn', 'email': 'cloyd@rempel.biz', 'date': '2014-02-04 04:33:02 -0800', 'content': 'Eum voluptatibus accusantium rem. Deleniti harum eum. Illo est facere illum saepe voluptas.', 'subject': 'Eveniet est architecto id ut rerum nam quidem', }, { 'id': '185', 'first-name': 'Johan', 'last-name': 'Legros', 'email': 'rosie_ernser@wolf.com', 'date': '1989-03-02 11:17:10 -0800', 'content': 'Architecto explicabo praesentium amet eaque quibusdam.', 'subject': 'Consectetur fugiat iusto omnis aspernatur ut', }, { 'id': '186', 'first-name': 'Daryl', 'last-name': 'Labadie', 'email': 'ashly_thompson@casper.net', 'date': '2003-01-28 00:02:56 -0800', 'content': 'Et est doloribus. Fuga hic sed voluptatibus ullam officia aspernatur.', 'subject': 'A sunt eum quas accusamus', }, { 'id': '187', 'first-name': 'Gavin', 'last-name': 'Moore', 'email': 'dahlia@leffleroberbrunner.biz', 'date': '1970-10-15 07:36:57 -0700', 'content': 'Sapiente ipsum magni dolore est dolor.', 'subject': 'Est maxime consequatur esse qui dicta aut quaerat', }, { 'id': '188', 'first-name': 'Coby', 'last-name': 'Swaniawski', 'email': 'millie.labadie@wuckert.name', 'date': '2012-09-14 00:25:46 -0700', 'content': 'Magni qui molestias debitis reprehenderit vel quo est. Blanditiis debitis autem neque non illo.', 'subject': 'Rerum accusantium magni dolorem in reprehenderit et voluptas', }, { 'id': '189', 'first-name': 'Luis', 'last-name': 'Stracke', 'email': 'merle@mrazswaniawski.biz', 'date': '2007-11-11 05:28:46 -0800', 'content': 'Neque magnam sint porro reprehenderit quo. In et reiciendis non velit et eum quos.', 'subject': 'Sit voluptates nulla perspiciatis debitis dolor eaque a', }, { 'id': '190', 'first-name': 'Leone', 'last-name': 'Huel', 'email': 'emil@botsford.biz', 'date': '2004-03-16 23:46:45 -0800', 'content': 'Vitae amet et quae ullam.', 'subject': 'Rerum enim voluptate qui', },
{ "end_byte": 62006, "start_byte": 56419, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/data.ts_62010_65994
{ 'id': '191', 'first-name': 'Aylin', 'last-name': 'Kling', 'email': 'anderson_jast@kozeyparisian.com', 'date': '1979-06-17 04:05:50 -0700', 'content': 'Quam eligendi numquam sint. Non ipsa et qui error dolor velit.', 'subject': 'Culpa iste rerum facere praesentium deleniti sequi', }, { 'id': '192', 'first-name': 'Junior', 'last-name': 'Bartoletti', 'email': 'te@kuvalis.net', 'date': '1994-12-09 11:00:34 -0800', 'content': 'Velit eos et nemo dolore eum necessitatibus. Ea inventore adipisci.', 'subject': 'Velit dolorem cumque ipsa', }, { 'id': '193', 'first-name': 'Nathanael', 'last-name': 'Hermiston', 'email': 'macy.cole@wittingcasper.info', 'date': '2002-01-06 17:45:52 -0800', 'content': 'Corporis occaecati quidem quia repudiandae repellendus beatae similique. Inventore quo ullam.', 'subject': 'Quidem expedita quia inventore dolores ratione totam et dignissimos', }, { 'id': '194', 'first-name': 'Hal', 'last-name': 'Bruen', 'email': 'nathen.ziemann@gerlachko.name', 'date': '1996-03-01 01:35:30 -0800', 'content': 'Qui eius aspernatur et aut et vel in. Adipisci aliquid consequatur dolores et ut. Est aut temporibus.', 'subject': 'Voluptas placeat eveniet non quas assumenda quam minus', }, { 'id': '195', 'first-name': 'Freddie', 'last-name': 'Thompson', 'email': 'elia@aufderharbrown.org', 'date': '2005-03-20 05:07:30 -0800', 'content': 'Dolor nemo sed molestiae quae quia.', 'subject': 'Quam sint et voluptatem et fuga sint ut saepe', }, { 'id': '196', 'first-name': 'Aida', 'last-name': 'Gorczany', 'email': 'olga.labadie@abshire.name', 'date': '1989-07-26 04:26:19 -0700', 'content': 'Sit qui voluptatem facere. Similique alias quia sit ipsum. Ut corrupti tempore molestiae.', 'subject': 'Qui veniam blanditiis nesciunt beatae tempore aut fugiat maiores', }, { 'id': '197', 'first-name': 'Isabelle', 'last-name': 'Collier', 'email': 'christiana_gottlieb@borer.biz', 'date': '1978-05-15 13:13:34 -0700', 'content': 'Aliquam earum velit ut.', 'subject': 'Neque et voluptate ratione totam voluptas est nulla ipsum', }, { 'id': '198', 'first-name': 'Ida', 'last-name': 'Reichert', 'email': 'mervin@keeling.com', 'date': '1991-02-06 05:02:15 -0800', 'content': 'Velit in at et dicta tenetur. Doloremque cupiditate est. Excepturi non minus aspernatur dolores qui quaerat architecto.', 'subject': 'Ut voluptas qui ad minus', }, { 'id': '199', 'first-name': 'Angelina', 'last-name': 'Mueller', 'email': 'leonel@purdyschroeder.org', 'date': '2008-06-17 01:01:57 -0700', 'content': 'Recusandae eius non necessitatibus. Quisquam qui quo. Voluptas dolorem dolorem sit repellat laudantium ducimus qui.', 'subject': 'Dolorem atque impedit qui soluta', }, { 'id': '200', 'first-name': 'Marcelle', 'last-name': 'Connelly', 'email': 'heath@leuschke.net', 'date': '1983-10-02 18:32:18 -0700', 'content': 'Debitis quasi voluptates et voluptatibus rerum. Et explicabo quia qui qui voluptate dolor.', 'subject': 'Rem molestiae nobis consequatur eligendi ut', }, { 'id': '201', 'first-name': 'Bob', 'last-name': 'Brown', 'email': 'bob@brown.net', 'date': '1983-10-02 18:32:18 -0700', 'content': 'Debitis quasi voluptates et voluptatibus rerum. Et explicabo quia qui qui voluptate dolor.', 'subject': 'Urgent question about whipped cream', 'draft': true, }, { 'id': '202', 'first-name': 'Mary', 'last-name': 'Jones', 'email': 'mary@jones.net', 'date': '1983-10-02 18:32:18 -0700', 'content': 'Debitis quasi voluptates et voluptatibus rerum. Et explicabo quia qui qui voluptate dolor.', 'subject': 'Fwd: wedding photos', 'draft': true, }, ];
{ "end_byte": 65994, "start_byte": 62010, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/data.ts" }
angular/modules/playground/src/routing/app/inbox-app.ts_0_3599
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, Injectable} from '@angular/core'; import {ActivatedRoute, Router, Routes} from '@angular/router'; import * as db from './data'; export class InboxRecord { id: string = ''; subject: string = ''; content: string = ''; email: string = ''; firstName: string = ''; lastName: string = ''; date: string; draft: boolean = false; constructor( data: { id: string; subject: string; content: string; email: string; firstName: string; lastName: string; date: string; draft?: boolean; } = null, ) { if (data) { this.setData(data); } } setData(record: { id: string; subject: string; content: string; email: string; firstName: string; lastName: string; date: string; draft?: boolean; }) { this.id = record.id; this.subject = record.subject; this.content = record.content; this.email = record.email; this.firstName = record.firstName; this.lastName = record.lastName; this.date = record.date; this.draft = record.draft === true; } } @Injectable() export class DbService { getData(): Promise<InboxRecord[]> { return Promise.resolve( db.data.map( (entry: {[key: string]: any}) => new InboxRecord({ id: entry['id'], subject: entry['subject'], content: entry['content'], email: entry['email'], firstName: entry['first-name'], lastName: entry['last-name'], date: entry['date'], draft: entry['draft'], }), ), ); } drafts(): Promise<InboxRecord[]> { return this.getData().then((data) => data.filter((record) => record.draft)); } emails(): Promise<InboxRecord[]> { return this.getData().then((data) => data.filter((record) => !record.draft)); } email(id: string): Promise<InboxRecord> { return this.getData().then((data) => data.find((entry) => entry.id == id)); } } @Component({ selector: 'inbox', templateUrl: './inbox.html', standalone: false, }) export class InboxCmp { items: InboxRecord[] = []; private ready: boolean = false; constructor( public router: Router, db: DbService, route: ActivatedRoute, ) { route.params.forEach((p) => { const sortEmailsByDate = p['sort'] === 'date'; db.emails().then((emails) => { this.ready = true; this.items = emails; if (sortEmailsByDate) { this.items.sort((a, b) => new Date(a.date).getTime() < new Date(b.date).getTime() ? -1 : 1, ); } }); }); } } @Component({ selector: 'drafts', templateUrl: './drafts.html', standalone: false, }) export class DraftsCmp { items: InboxRecord[] = []; private ready: boolean = false; constructor( private router: Router, db: DbService, ) { db.drafts().then((drafts) => { this.ready = true; this.items = drafts; }); } } export const ROUTER_CONFIG: Routes = [ {path: '', pathMatch: 'full', redirectTo: 'inbox'}, {path: 'inbox', component: InboxCmp}, {path: 'drafts', component: DraftsCmp}, {path: 'detail', loadChildren: () => import('./inbox-detail').then((mod) => mod.default)}, ]; @Component({ selector: 'inbox-app', templateUrl: './inbox-app.html', standalone: false, }) export class InboxApp {}
{ "end_byte": 3599, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/inbox-app.ts" }
angular/modules/playground/src/routing/app/inbox-detail.ts_0_948
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {ActivatedRoute, RouterModule} from '@angular/router'; import {DbService, InboxRecord} from './inbox-app'; @Component({ selector: 'inbox-detail', templateUrl: './inbox-detail.html', standalone: false, }) export class InboxDetailCmp { record: InboxRecord = new InboxRecord(); private ready: boolean = false; constructor(db: DbService, route: ActivatedRoute) { route.paramMap.forEach((p) => { db.email(p.get('id')).then((data) => { this.record.setData(data); }); }); } } @NgModule({ declarations: [InboxDetailCmp], imports: [RouterModule.forChild([{path: ':id', component: InboxDetailCmp}])], }) export default class InboxDetailModule {}
{ "end_byte": 948, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/inbox-detail.ts" }
angular/modules/playground/src/routing/app/inbox-app.html_0_243
<div class="inbox-aside inbox-side-menu"> <a [routerLink]="['/inbox']" class="link" routerLinkActive="active">Inbox</a> <a [routerLink]="['/drafts']" class="link" routerLinkActive="active">Drafts</a> </div> <router-outlet></router-outlet>
{ "end_byte": 243, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/inbox-app.html" }
angular/modules/playground/src/routing/app/inbox-detail.html_0_610
<div> <h2 class="page-title">{{ record.subject }}</h2> <ul> <li id="record-id">ID: {{ record.id }}</li> <li id="record-name">Name: {{ record.firstName }} {{ record.lastName }}</li> <li id="record-email">Email: {{ record.email }}</li> <li id="record-date">Date: {{ record.date }}</li> </ul> <p> {{ record.content }} </p> <span class="btn medium primary"> <a [routerLink]="record.draft ? ['/drafts'] : ['/inbox']" class="back-button">Back</a> </span> <hr /> <a [routerLink]="['/inbox', { sort: 'date'} ]" class="sort-button"> View Latest Messages </a> </div>
{ "end_byte": 610, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/inbox-detail.html" }
angular/modules/playground/src/routing/app/inbox.html_0_257
<div> <h2 class="page-title">Inbox</h2> <ol class="inbox-list"> <li *ngFor="let item of items" class="inbox-item-record"> <a id="item-{{ item.id }}" [routerLink]="['/detail', item.id]">{{ item.subject }}</a> </li> </ol> </div>
{ "end_byte": 257, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/inbox.html" }
angular/modules/playground/src/routing/app/drafts.html_0_267
<div> <h2 class="page-title">Drafts</h2> <ol class="inbox-list"> <li *ngFor="let item of items" class="inbox-item-record"> <a id="item-{{ item.id }}" [routerLink]="['/detail', item.id]"> {{ item.subject }}</a> </li> </ol> </div>
{ "end_byte": 267, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/app/drafts.html" }
angular/modules/playground/src/routing/css/app.css_0_686
body { background:#eee; color:black; } .inbox-list, .inbox-list li { list-style:none; padding:0; margin:0; } .inbox-list a { padding:5px; display:block; } inbox, drafts, .inbox-side-menu { display:block; } .inbox-side-menu .link { display:block; text-align:center; padding:1em; } .inbox-side-menu .link.active { background:white; } .inbox-side-menu .link:hover { background:#eee; } .inbox-side-menu { position:fixed; left:0; top:0; bottom:0; width:200px; background:#ddd; } .inbox-side-menu a { display: block; } inbox, drafts, inbox-detail { padding:1em; margin-left:200px; } inbox-detail { display:block; margin-left:200px; }
{ "end_byte": 686, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/app.css" }
angular/modules/playground/src/routing/css/gumby.css_0_7082
@charset "UTF-8"; @import url("/angular/third_party/fonts.google.com/open-sans/open-sans.css"); /** * Gumby Framework * --------------- * * Follow @gumbycss on twitter and spread the love. * We worked super hard on making this awesome and released it to the web. * All we ask is you leave this intact. #gumbyisawesome * * Gumby Framework * http://gumbyframework.com * * Built with love by your friends @digitalsurgeons * http://www.digitalsurgeons.com * * Free to use under the MIT license. * http://www.opensource.org/licenses/mit-license.php */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; } html { line-height: 1; } ol, ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; } caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } q, blockquote { quotes: none; } q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } a img { border: none; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } .pull_right { float: right; } .pull_left { float: left; } /* Base Styles */ * html { font-size: 100%; } html { font-size: 16px; line-height: 1.625em; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { background: white; font-family: "Open Sans"; font-weight: 400; color: #555555; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; } } html, body { height: 100%; } .hide { display: none; } .hide.active, .show { display: block; } .icon-note.icon-left a:before, .icon-note.icon-right a:after, i.icon-note:before { content: "\266a"; height: inherit; } .icon-note-beamed.icon-left a:before, .icon-note-beamed.icon-right a:after, i.icon-note-beamed:before { content: "\266b"; height: inherit; } .icon-music.icon-left a:before, .icon-music.icon-right a:after, i.icon-music:before { content: "🎵"; height: inherit; } .icon-search.icon-left a:before, .icon-search.icon-right a:after, i.icon-search:before { content: "🔍"; height: inherit; } .icon-flashlight.icon-left a:before, .icon-flashlight.icon-right a:after, i.icon-flashlight:before { content: "🔦"; height: inherit; } .icon-mail.icon-left a:before, .icon-mail.icon-right a:after, i.icon-mail:before { content: "\2709"; height: inherit; } .icon-heart.icon-left a:before, .icon-heart.icon-right a:after, i.icon-heart:before { content: "\2665"; height: inherit; } .icon-heart-empty.icon-left a:before, .icon-heart-empty.icon-right a:after, i.icon-heart-empty:before { content: "\2661"; height: inherit; } .icon-star.icon-left a:before, .icon-star.icon-right a:after, i.icon-star:before { content: "\2605"; height: inherit; } .icon-star-empty.icon-left a:before, .icon-star-empty.icon-right a:after, i.icon-star-empty:before { content: "\2606"; height: inherit; } .icon-user.icon-left a:before, .icon-user.icon-right a:after, i.icon-user:before { content: "👤"; height: inherit; } .icon-users.icon-left a:before, .icon-users.icon-right a:after, i.icon-users:before { content: "👥"; height: inherit; } .icon-user-add.icon-left a:before, .icon-user-add.icon-right a:after, i.icon-user-add:before { content: "\e700"; height: inherit; } .icon-video.icon-left a:before, .icon-video.icon-right a:after, i.icon-video:before { content: "🎬"; height: inherit; } .icon-picture.icon-left a:before, .icon-picture.icon-right a:after, i.icon-picture:before { content: "🌄"; height: inherit; } .icon-camera.icon-left a:before, .icon-camera.icon-right a:after, i.icon-camera:before { content: "📷"; height: inherit; } .icon-layout.icon-left a:before, .icon-layout.icon-right a:after, i.icon-layout:before { content: "\268f"; height: inherit; } .icon-menu.icon-left a:before, .icon-menu.icon-right a:after, i.icon-menu:before { content: "\2630"; height: inherit; } .icon-check.icon-left a:before, .icon-check.icon-right a:after, i.icon-check:before { content: "\2713"; height: inherit; } .icon-cancel.icon-left a:before, .icon-cancel.icon-right a:after, i.icon-cancel:before { content: "\2715"; height: inherit; } .icon-cancel-circled.icon-left a:before, .icon-cancel-circled.icon-right a:after, i.icon-cancel-circled:before { content: "\2716"; height: inherit; } .icon-cancel-squared.icon-left a:before, .icon-cancel-squared.icon-right a:after, i.icon-cancel-squared:before { content: "\274e"; height: inherit; } .icon-plus.icon-left a:before, .icon-plus.icon-right a:after, i.icon-plus:before { content: "\2b"; height: inherit; } .icon-plus-circled.icon-left a:before, .icon-plus-circled.icon-right a:after, i.icon-plus-circled:before { content: "\2795"; height: inherit; } .icon-plus-squared.icon-left a:before, .icon-plus-squared.icon-right a:after, i.icon-plus-squared:before { content: "\229e"; height: inherit; } .icon-minus.icon-left a:before, .icon-minus.icon-right a:after, i.icon-minus:before { content: "\2d"; height: inherit; } .icon-minus-circled.icon-left a:before, .icon-minus-circled.icon-right a:after, i.icon-minus-circled:before { content: "\2796"; height: inherit; } .icon-minus-squared.icon-left a:before, .icon-minus-squared.icon-right a:after, i.icon-minus-squared:before { content: "\229f"; height: inherit; } .icon-help.icon-left a:before, .icon-help.icon-right a:after, i.icon-help:before { content: "\2753"; height: inherit; } .icon-help-circled.icon-left a:before, .icon-help-circled.icon-right a:after, i.icon-help-circled:before { content: "\e704"; height: inherit; } .icon-info.icon-left a:before, .icon-info.icon-right a:after, i.icon-info:before { content: "\2139"; height: inherit; } .icon-info-circled.icon-left a:before, .icon-info-circled.icon-right a:after, i.icon-info-circled:before { content: "\e705"; height: inherit; } .icon-back.icon-left a:before, .icon-back.icon-right a:after, i.icon-back:before { content: "🔙"; height: inherit; } .icon-home.icon-left a:before, .icon-home.icon-right a:after, i.icon-home:before { content: "\2302"; height: inherit; } .icon-link.icon-left a:before, .icon-link.icon-right a:after, i.icon-link:before { content: "🔗"; height: inherit; } .icon-attach.icon-left a:before, .icon-attach.icon-right a:after, i.icon-attach:before { content: "📎"; height: inherit; } .icon-lock.icon-left a:before, .icon-lock.icon-right a:after, i.icon-lock:before { content: "🔒"; height: inherit; } .icon-lock-open.icon-left a:before
{ "end_byte": 7082, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_7084_14366
.icon-lock-open.icon-right a:after, i.icon-lock-open:before { content: "🔓"; height: inherit; } .icon-eye.icon-left a:before, .icon-eye.icon-right a:after, i.icon-eye:before { content: "\e70a"; height: inherit; } .icon-tag.icon-left a:before, .icon-tag.icon-right a:after, i.icon-tag:before { content: "\e70c"; height: inherit; } .icon-bookmark.icon-left a:before, .icon-bookmark.icon-right a:after, i.icon-bookmark:before { content: "🔖"; height: inherit; } .icon-bookmarks.icon-left a:before, .icon-bookmarks.icon-right a:after, i.icon-bookmarks:before { content: "📑"; height: inherit; } .icon-flag.icon-left a:before, .icon-flag.icon-right a:after, i.icon-flag:before { content: "\2691"; height: inherit; } .icon-thumbs-up.icon-left a:before, .icon-thumbs-up.icon-right a:after, i.icon-thumbs-up:before { content: "👍"; height: inherit; } .icon-thumbs-down.icon-left a:before, .icon-thumbs-down.icon-right a:after, i.icon-thumbs-down:before { content: "👎"; height: inherit; } .icon-download.icon-left a:before, .icon-download.icon-right a:after, i.icon-download:before { content: "📥"; height: inherit; } .icon-upload.icon-left a:before, .icon-upload.icon-right a:after, i.icon-upload:before { content: "📤"; height: inherit; } .icon-upload-cloud.icon-left a:before, .icon-upload-cloud.icon-right a:after, i.icon-upload-cloud:before { content: "\e711"; height: inherit; } .icon-reply.icon-left a:before, .icon-reply.icon-right a:after, i.icon-reply:before { content: "\e712"; height: inherit; } .icon-reply-all.icon-left a:before, .icon-reply-all.icon-right a:after, i.icon-reply-all:before { content: "\e713"; height: inherit; } .icon-forward.icon-left a:before, .icon-forward.icon-right a:after, i.icon-forward:before { content: "\27a6"; height: inherit; } .icon-quote.icon-left a:before, .icon-quote.icon-right a:after, i.icon-quote:before { content: "\275e"; height: inherit; } .icon-code.icon-left a:before, .icon-code.icon-right a:after, i.icon-code:before { content: "\e714"; height: inherit; } .icon-export.icon-left a:before, .icon-export.icon-right a:after, i.icon-export:before { content: "\e715"; height: inherit; } .icon-pencil.icon-left a:before, .icon-pencil.icon-right a:after, i.icon-pencil:before { content: "\270e"; height: inherit; } .icon-feather.icon-left a:before, .icon-feather.icon-right a:after, i.icon-feather:before { content: "\2712"; height: inherit; } .icon-print.icon-left a:before, .icon-print.icon-right a:after, i.icon-print:before { content: "\e716"; height: inherit; } .icon-retweet.icon-left a:before, .icon-retweet.icon-right a:after, i.icon-retweet:before { content: "\e717"; height: inherit; } .icon-keyboard.icon-left a:before, .icon-keyboard.icon-right a:after, i.icon-keyboard:before { content: "\2328"; height: inherit; } .icon-comment.icon-left a:before, .icon-comment.icon-right a:after, i.icon-comment:before { content: "\e718"; height: inherit; } .icon-chat.icon-left a:before, .icon-chat.icon-right a:after, i.icon-chat:before { content: "\e720"; height: inherit; } .icon-bell.icon-left a:before, .icon-bell.icon-right a:after, i.icon-bell:before { content: "🔔"; height: inherit; } .icon-attention.icon-left a:before, .icon-attention.icon-right a:after, i.icon-attention:before { content: "\26a0"; height: inherit; } .icon-alert.icon-left a:before, .icon-alert.icon-right a:after, i.icon-alert:before { content: "💥"; height: inherit; } .icon-vcard.icon-left a:before, .icon-vcard.icon-right a:after, i.icon-vcard:before { content: "\e722"; height: inherit; } .icon-address.icon-left a:before, .icon-address.icon-right a:after, i.icon-address:before { content: "\e723"; height: inherit; } .icon-location.icon-left a:before, .icon-location.icon-right a:after, i.icon-location:before { content: "\e724"; height: inherit; } .icon-map.icon-left a:before, .icon-map.icon-right a:after, i.icon-map:before { content: "\e727"; height: inherit; } .icon-direction.icon-left a:before, .icon-direction.icon-right a:after, i.icon-direction:before { content: "\27a2"; height: inherit; } .icon-compass.icon-left a:before, .icon-compass.icon-right a:after, i.icon-compass:before { content: "\e728"; height: inherit; } .icon-cup.icon-left a:before, .icon-cup.icon-right a:after, i.icon-cup:before { content: "\2615"; height: inherit; } .icon-trash.icon-left a:before, .icon-trash.icon-right a:after, i.icon-trash:before { content: "\e729"; height: inherit; } .icon-doc.icon-left a:before, .icon-doc.icon-right a:after, i.icon-doc:before { content: "\e730"; height: inherit; } .icon-docs.icon-left a:before, .icon-docs.icon-right a:after, i.icon-docs:before { content: "\e736"; height: inherit; } .icon-doc-landscape.icon-left a:before, .icon-doc-landscape.icon-right a:after, i.icon-doc-landscape:before { content: "\e737"; height: inherit; } .icon-doc-text.icon-left a:before, .icon-doc-text.icon-right a:after, i.icon-doc-text:before { content: "📄"; height: inherit; } .icon-doc-text-inv.icon-left a:before, .icon-doc-text-inv.icon-right a:after, i.icon-doc-text-inv:before { content: "\e731"; height: inherit; } .icon-newspaper.icon-left a:before, .icon-newspaper.icon-right a:after, i.icon-newspaper:before { content: "📰"; height: inherit; } .icon-book-open.icon-left a:before, .icon-book-open.icon-right a:after, i.icon-book-open:before { content: "📖"; height: inherit; } .icon-book.icon-left a:before, .icon-book.icon-right a:after, i.icon-book:before { content: "📕"; height: inherit; } .icon-folder.icon-left a:before, .icon-folder.icon-right a:after, i.icon-folder:before { content: "📁"; height: inherit; } .icon-archive.icon-left a:before, .icon-archive.icon-right a:after, i.icon-archive:before { content: "\e738"; height: inherit; } .icon-box.icon-left a:before, .icon-box.icon-right a:after, i.icon-box:before { content: "📦"; height: inherit; } .icon-rss.icon-left a:before, .icon-rss.icon-right a:after, i.icon-rss:before { content: "\e73a"; height: inherit; } .icon-phone.icon-left a:before, .icon-phone.icon-right a:after, i.icon-phone:before { content: "📞"; height: inherit; } .icon-cog.icon-left a:before, .icon-cog.icon-right a:after, i.icon-cog:before { content: "\2699"; height: inherit; } .icon-tools.icon-left a:before, .icon-tools.icon-right a:after, i.icon-tools:before { content: "\2692"; height: inherit; } .icon-share.icon-left a:before, .icon-share.icon-right a:after, i.icon-share:before { content: "\e73c"; height: inherit; } .icon-shareable.icon-left a:before, .icon-shareable.icon-right a:after, i.icon-shareable:before { content: "\e73e"; height: inherit; } .icon-basket.icon-left a:before, .icon-basket.icon-right a:after, i.icon-basket:before { content: "\e73d"; height: inherit; } .icon-bag.icon-left a:before, .icon-bag.icon-right a:after, i.icon-bag:before { content: "👜"; height: inherit; } .icon-calendar.icon-left a:before, .icon-calendar.icon-right a:after, i.icon-calendar:before { content: "📅"; height: inherit; } .icon-login.icon-left a:before, .icon-login.icon-right a:after, i.icon-login:before { content: "\e740"; height: inherit; } .icon-logout.icon-left a:before, .icon-logout.icon-right a:after, i.icon-logout:before { content: "\e741"; height: inherit; } .icon-mic.icon-left a:before, .icon-mic.icon-right a:after, i.icon-mic:before { content:
{ "end_byte": 14366, "start_byte": 7084, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_14368_21508
🎤"; height: inherit; } .icon-mute.icon-left a:before, .icon-mute.icon-right a:after, i.icon-mute:before { content: "🔇"; height: inherit; } .icon-sound.icon-left a:before, .icon-sound.icon-right a:after, i.icon-sound:before { content: "🔊"; height: inherit; } .icon-volume.icon-left a:before, .icon-volume.icon-right a:after, i.icon-volume:before { content: "\e742"; height: inherit; } .icon-clock.icon-left a:before, .icon-clock.icon-right a:after, i.icon-clock:before { content: "🕔"; height: inherit; } .icon-hourglass.icon-left a:before, .icon-hourglass.icon-right a:after, i.icon-hourglass:before { content: "\23f3"; height: inherit; } .icon-lamp.icon-left a:before, .icon-lamp.icon-right a:after, i.icon-lamp:before { content: "💡"; height: inherit; } .icon-light-down.icon-left a:before, .icon-light-down.icon-right a:after, i.icon-light-down:before { content: "🔅"; height: inherit; } .icon-light-up.icon-left a:before, .icon-light-up.icon-right a:after, i.icon-light-up:before { content: "🔆"; height: inherit; } .icon-adjust.icon-left a:before, .icon-adjust.icon-right a:after, i.icon-adjust:before { content: "\25d1"; height: inherit; } .icon-block.icon-left a:before, .icon-block.icon-right a:after, i.icon-block:before { content: "🚫"; height: inherit; } .icon-resize-full.icon-left a:before, .icon-resize-full.icon-right a:after, i.icon-resize-full:before { content: "\e744"; height: inherit; } .icon-resize-small.icon-left a:before, .icon-resize-small.icon-right a:after, i.icon-resize-small:before { content: "\e746"; height: inherit; } .icon-popup.icon-left a:before, .icon-popup.icon-right a:after, i.icon-popup:before { content: "\e74c"; height: inherit; } .icon-publish.icon-left a:before, .icon-publish.icon-right a:after, i.icon-publish:before { content: "\e74d"; height: inherit; } .icon-window.icon-left a:before, .icon-window.icon-right a:after, i.icon-window:before { content: "\e74e"; height: inherit; } .icon-arrow-combo.icon-left a:before, .icon-arrow-combo.icon-right a:after, i.icon-arrow-combo:before { content: "\e74f"; height: inherit; } .icon-down-circled.icon-left a:before, .icon-down-circled.icon-right a:after, i.icon-down-circled:before { content: "\e758"; height: inherit; } .icon-left-circled.icon-left a:before, .icon-left-circled.icon-right a:after, i.icon-left-circled:before { content: "\e759"; height: inherit; } .icon-right-circled.icon-left a:before, .icon-right-circled.icon-right a:after, i.icon-right-circled:before { content: "\e75a"; height: inherit; } .icon-up-circled.icon-left a:before, .icon-up-circled.icon-right a:after, i.icon-up-circled:before { content: "\e75b"; height: inherit; } .icon-down-open.icon-left a:before, .icon-down-open.icon-right a:after, i.icon-down-open:before { content: "\e75c"; height: inherit; } .icon-left-open.icon-left a:before, .icon-left-open.icon-right a:after, i.icon-left-open:before { content: "\e75d"; height: inherit; } .icon-right-open.icon-left a:before, .icon-right-open.icon-right a:after, i.icon-right-open:before { content: "\e75e"; height: inherit; } .icon-up-open.icon-left a:before, .icon-up-open.icon-right a:after, i.icon-up-open:before { content: "\e75f"; height: inherit; } .icon-down-open-mini.icon-left a:before, .icon-down-open-mini.icon-right a:after, i.icon-down-open-mini:before { content: "\e760"; height: inherit; } .icon-left-open-mini.icon-left a:before, .icon-left-open-mini.icon-right a:after, i.icon-left-open-mini:before { content: "\e761"; height: inherit; } .icon-right-open-mini.icon-left a:before, .icon-right-open-mini.icon-right a:after, i.icon-right-open-mini:before { content: "\e762"; height: inherit; } .icon-up-open-mini.icon-left a:before, .icon-up-open-mini.icon-right a:after, i.icon-up-open-mini:before { content: "\e763"; height: inherit; } .icon-down-open-big.icon-left a:before, .icon-down-open-big.icon-right a:after, i.icon-down-open-big:before { content: "\e764"; height: inherit; } .icon-left-open-big.icon-left a:before, .icon-left-open-big.icon-right a:after, i.icon-left-open-big:before { content: "\e765"; height: inherit; } .icon-right-open-big.icon-left a:before, .icon-right-open-big.icon-right a:after, i.icon-right-open-big:before { content: "\e766"; height: inherit; } .icon-up-open-big.icon-left a:before, .icon-up-open-big.icon-right a:after, i.icon-up-open-big:before { content: "\e767"; height: inherit; } .icon-down.icon-left a:before, .icon-down.icon-right a:after, i.icon-down:before { content: "\2b07"; height: inherit; } .icon-arrow-left.icon-left a:before, .icon-arrow-left.icon-right a:after, i.icon-arrow-left:before { content: "\2b05"; height: inherit; } .icon-arrow-right.icon-left a:before, .icon-arrow-right.icon-right a:after, i.icon-arrow-right:before { content: "\27a1"; height: inherit; } .icon-up.icon-left a:before, .icon-up.icon-right a:after, i.icon-up:before { content: "\2b06"; height: inherit; } .icon-down-dir.icon-left a:before, .icon-down-dir.icon-right a:after, i.icon-down-dir:before { content: "\25be"; height: inherit; } .icon-left-dir.icon-left a:before, .icon-left-dir.icon-right a:after, i.icon-left-dir:before { content: "\25c2"; height: inherit; } .icon-right-dir.icon-left a:before, .icon-right-dir.icon-right a:after, i.icon-right-dir:before { content: "\25b8"; height: inherit; } .icon-up-dir.icon-left a:before, .icon-up-dir.icon-right a:after, i.icon-up-dir:before { content: "\25b4"; height: inherit; } .icon-down-bold.icon-left a:before, .icon-down-bold.icon-right a:after, i.icon-down-bold:before { content: "\e4b0"; height: inherit; } .icon-left-bold.icon-left a:before, .icon-left-bold.icon-right a:after, i.icon-left-bold:before { content: "\e4ad"; height: inherit; } .icon-right-bold.icon-left a:before, .icon-right-bold.icon-right a:after, i.icon-right-bold:before { content: "\e4ae"; height: inherit; } .icon-up-bold.icon-left a:before, .icon-up-bold.icon-right a:after, i.icon-up-bold:before { content: "\e4af"; height: inherit; } .icon-down-thin.icon-left a:before, .icon-down-thin.icon-right a:after, i.icon-down-thin:before { content: "\2193"; height: inherit; } .icon-left-thin.icon-left a:before, .icon-left-thin.icon-right a:after, i.icon-left-thin:before { content: "\2190"; height: inherit; } .icon-right-thin.icon-left a:before, .icon-right-thin.icon-right a:after, i.icon-right-thin:before { content: "\2192"; height: inherit; } .icon-up-thin.icon-left a:before, .icon-up-thin.icon-right a:after, i.icon-up-thin:before { content: "\2191"; height: inherit; } .icon-ccw.icon-left a:before, .icon-ccw.icon-right a:after, i.icon-ccw:before { content: "\27f2"; height: inherit; } .icon-cw.icon-left a:before, .icon-cw.icon-right a:after, i.icon-cw:before { content: "\27f3"; height: inherit; } .icon-arrows-ccw.icon-left a:before, .icon-arrows-ccw.icon-right a:after, i.icon-arrows-ccw:before { content: "🔄"; height: inherit; } .icon-level-down.icon-left a:before, .icon-level-down.icon-right a:after, i.icon-level-down:before { content: "\21b3"; height: inherit; } .icon-level-up.icon-left a:before, .icon-level-up.icon-right a:after, i.icon-level-up:before { content: "\21b0"; he
{ "end_byte": 21508, "start_byte": 14368, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_21510_28653
ht: inherit; } .icon-shuffle.icon-left a:before, .icon-shuffle.icon-right a:after, i.icon-shuffle:before { content: "🔀"; height: inherit; } .icon-loop.icon-left a:before, .icon-loop.icon-right a:after, i.icon-loop:before { content: "🔁"; height: inherit; } .icon-switch.icon-left a:before, .icon-switch.icon-right a:after, i.icon-switch:before { content: "\21c6"; height: inherit; } .icon-play.icon-left a:before, .icon-play.icon-right a:after, i.icon-play:before { content: "\25b6"; height: inherit; } .icon-stop.icon-left a:before, .icon-stop.icon-right a:after, i.icon-stop:before { content: "\25a0"; height: inherit; } .icon-pause.icon-left a:before, .icon-pause.icon-right a:after, i.icon-pause:before { content: "\2389"; height: inherit; } .icon-record.icon-left a:before, .icon-record.icon-right a:after, i.icon-record:before { content: "\26ab"; height: inherit; } .icon-to-end.icon-left a:before, .icon-to-end.icon-right a:after, i.icon-to-end:before { content: "\23ed"; height: inherit; } .icon-to-start.icon-left a:before, .icon-to-start.icon-right a:after, i.icon-to-start:before { content: "\23ee"; height: inherit; } .icon-fast-forward.icon-left a:before, .icon-fast-forward.icon-right a:after, i.icon-fast-forward:before { content: "\23e9"; height: inherit; } .icon-fast-backward.icon-left a:before, .icon-fast-backward.icon-right a:after, i.icon-fast-backward:before { content: "\23ea"; height: inherit; } .icon-progress-0.icon-left a:before, .icon-progress-0.icon-right a:after, i.icon-progress-0:before { content: "\e768"; height: inherit; } .icon-progress-1.icon-left a:before, .icon-progress-1.icon-right a:after, i.icon-progress-1:before { content: "\e769"; height: inherit; } .icon-progress-2.icon-left a:before, .icon-progress-2.icon-right a:after, i.icon-progress-2:before { content: "\e76a"; height: inherit; } .icon-progress-3.icon-left a:before, .icon-progress-3.icon-right a:after, i.icon-progress-3:before { content: "\e76b"; height: inherit; } .icon-target.icon-left a:before, .icon-target.icon-right a:after, i.icon-target:before { content: "🎯"; height: inherit; } .icon-palette.icon-left a:before, .icon-palette.icon-right a:after, i.icon-palette:before { content: "🎨"; height: inherit; } .icon-list.icon-left a:before, .icon-list.icon-right a:after, i.icon-list:before { content: "\e005"; height: inherit; } .icon-list-add.icon-left a:before, .icon-list-add.icon-right a:after, i.icon-list-add:before { content: "\e003"; height: inherit; } .icon-signal.icon-left a:before, .icon-signal.icon-right a:after, i.icon-signal:before { content: "📶"; height: inherit; } .icon-trophy.icon-left a:before, .icon-trophy.icon-right a:after, i.icon-trophy:before { content: "🏆"; height: inherit; } .icon-battery.icon-left a:before, .icon-battery.icon-right a:after, i.icon-battery:before { content: "🔋"; height: inherit; } .icon-back-in-time.icon-left a:before, .icon-back-in-time.icon-right a:after, i.icon-back-in-time:before { content: "\e771"; height: inherit; } .icon-monitor.icon-left a:before, .icon-monitor.icon-right a:after, i.icon-monitor:before { content: "💻"; height: inherit; } .icon-mobile.icon-left a:before, .icon-mobile.icon-right a:after, i.icon-mobile:before { content: "📱"; height: inherit; } .icon-network.icon-left a:before, .icon-network.icon-right a:after, i.icon-network:before { content: "\e776"; height: inherit; } .icon-cd.icon-left a:before, .icon-cd.icon-right a:after, i.icon-cd:before { content: "💿"; height: inherit; } .icon-inbox.icon-left a:before, .icon-inbox.icon-right a:after, i.icon-inbox:before { content: "\e777"; height: inherit; } .icon-install.icon-left a:before, .icon-install.icon-right a:after, i.icon-install:before { content: "\e778"; height: inherit; } .icon-globe.icon-left a:before, .icon-globe.icon-right a:after, i.icon-globe:before { content: "🌎"; height: inherit; } .icon-cloud.icon-left a:before, .icon-cloud.icon-right a:after, i.icon-cloud:before { content: "\2601"; height: inherit; } .icon-cloud-thunder.icon-left a:before, .icon-cloud-thunder.icon-right a:after, i.icon-cloud-thunder:before { content: "\26c8"; height: inherit; } .icon-flash.icon-left a:before, .icon-flash.icon-right a:after, i.icon-flash:before { content: "\26a1"; height: inherit; } .icon-moon.icon-left a:before, .icon-moon.icon-right a:after, i.icon-moon:before { content: "\263d"; height: inherit; } .icon-flight.icon-left a:before, .icon-flight.icon-right a:after, i.icon-flight:before { content: "\2708"; height: inherit; } .icon-paper-plane.icon-left a:before, .icon-paper-plane.icon-right a:after, i.icon-paper-plane:before { content: "\e79b"; height: inherit; } .icon-leaf.icon-left a:before, .icon-leaf.icon-right a:after, i.icon-leaf:before { content: "🍂"; height: inherit; } .icon-lifebuoy.icon-left a:before, .icon-lifebuoy.icon-right a:after, i.icon-lifebuoy:before { content: "\e788"; height: inherit; } .icon-mouse.icon-left a:before, .icon-mouse.icon-right a:after, i.icon-mouse:before { content: "\e789"; height: inherit; } .icon-briefcase.icon-left a:before, .icon-briefcase.icon-right a:after, i.icon-briefcase:before { content: "💼"; height: inherit; } .icon-suitcase.icon-left a:before, .icon-suitcase.icon-right a:after, i.icon-suitcase:before { content: "\e78e"; height: inherit; } .icon-dot.icon-left a:before, .icon-dot.icon-right a:after, i.icon-dot:before { content: "\e78b"; height: inherit; } .icon-dot-2.icon-left a:before, .icon-dot-2.icon-right a:after, i.icon-dot-2:before { content: "\e78c"; height: inherit; } .icon-dot-3.icon-left a:before, .icon-dot-3.icon-right a:after, i.icon-dot-3:before { content: "\e78d"; height: inherit; } .icon-brush.icon-left a:before, .icon-brush.icon-right a:after, i.icon-brush:before { content: "\e79a"; height: inherit; } .icon-magnet.icon-left a:before, .icon-magnet.icon-right a:after, i.icon-magnet:before { content: "\e7a1"; height: inherit; } .icon-infinity.icon-left a:before, .icon-infinity.icon-right a:after, i.icon-infinity:before { content: "\221e"; height: inherit; } .icon-erase.icon-left a:before, .icon-erase.icon-right a:after, i.icon-erase:before { content: "\232b"; height: inherit; } .icon-chart-pie.icon-left a:before, .icon-chart-pie.icon-right a:after, i.icon-chart-pie:before { content: "\e751"; height: inherit; } .icon-chart-line.icon-left a:before, .icon-chart-line.icon-right a:after, i.icon-chart-line:before { content: "📈"; height: inherit; } .icon-chart-bar.icon-left a:before, .icon-chart-bar.icon-right a:after, i.icon-chart-bar:before { content: "📊"; height: inherit; } .icon-chart-area.icon-left a:before, .icon-chart-area.icon-right a:after, i.icon-chart-area:before { content: "🔾"; height: inherit; } .icon-tape.icon-left a:before, .icon-tape.icon-right a:after, i.icon-tape:before { content: "\2707"; height: inherit; } .icon-graduation-cap.icon-left a:before, .icon-graduation-cap.icon-right a:after, i.icon-graduation-cap:before { content: "🎓"; height: inherit; } .icon-language.icon-left a:before, .icon-language.icon-right a:after, i.icon-language:before { content: "\e752"; height: inherit; } .icon-ticket.icon-left a:before,
{ "end_byte": 28653, "start_byte": 21510, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_28655_35366
con-ticket.icon-right a:after, i.icon-ticket:before { content: "🎫"; height: inherit; } .icon-water.icon-left a:before, .icon-water.icon-right a:after, i.icon-water:before { content: "💦"; height: inherit; } .icon-droplet.icon-left a:before, .icon-droplet.icon-right a:after, i.icon-droplet:before { content: "💧"; height: inherit; } .icon-air.icon-left a:before, .icon-air.icon-right a:after, i.icon-air:before { content: "\e753"; height: inherit; } .icon-credit-card.icon-left a:before, .icon-credit-card.icon-right a:after, i.icon-credit-card:before { content: "💳"; height: inherit; } .icon-floppy.icon-left a:before, .icon-floppy.icon-right a:after, i.icon-floppy:before { content: "💾"; height: inherit; } .icon-clipboard.icon-left a:before, .icon-clipboard.icon-right a:after, i.icon-clipboard:before { content: "📋"; height: inherit; } .icon-megaphone.icon-left a:before, .icon-megaphone.icon-right a:after, i.icon-megaphone:before { content: "📣"; height: inherit; } .icon-database.icon-left a:before, .icon-database.icon-right a:after, i.icon-database:before { content: "\e754"; height: inherit; } .icon-drive.icon-left a:before, .icon-drive.icon-right a:after, i.icon-drive:before { content: "\e755"; height: inherit; } .icon-bucket.icon-left a:before, .icon-bucket.icon-right a:after, i.icon-bucket:before { content: "\e756"; height: inherit; } .icon-thermometer.icon-left a:before, .icon-thermometer.icon-right a:after, i.icon-thermometer:before { content: "\e757"; height: inherit; } .icon-key.icon-left a:before, .icon-key.icon-right a:after, i.icon-key:before { content: "🔑"; height: inherit; } .icon-flow-cascade.icon-left a:before, .icon-flow-cascade.icon-right a:after, i.icon-flow-cascade:before { content: "\e790"; height: inherit; } .icon-flow-branch.icon-left a:before, .icon-flow-branch.icon-right a:after, i.icon-flow-branch:before { content: "\e791"; height: inherit; } .icon-flow-tree.icon-left a:before, .icon-flow-tree.icon-right a:after, i.icon-flow-tree:before { content: "\e792"; height: inherit; } .icon-flow-line.icon-left a:before, .icon-flow-line.icon-right a:after, i.icon-flow-line:before { content: "\e793"; height: inherit; } .icon-flow-parallel.icon-left a:before, .icon-flow-parallel.icon-right a:after, i.icon-flow-parallel:before { content: "\e794"; height: inherit; } .icon-rocket.icon-left a:before, .icon-rocket.icon-right a:after, i.icon-rocket:before { content: "🚀"; height: inherit; } .icon-gauge.icon-left a:before, .icon-gauge.icon-right a:after, i.icon-gauge:before { content: "\e7a2"; height: inherit; } .icon-traffic-cone.icon-left a:before, .icon-traffic-cone.icon-right a:after, i.icon-traffic-cone:before { content: "\e7a3"; height: inherit; } .icon-cc.icon-left a:before, .icon-cc.icon-right a:after, i.icon-cc:before { content: "\e7a5"; height: inherit; } .icon-cc-by.icon-left a:before, .icon-cc-by.icon-right a:after, i.icon-cc-by:before { content: "\e7a6"; height: inherit; } .icon-cc-nc.icon-left a:before, .icon-cc-nc.icon-right a:after, i.icon-cc-nc:before { content: "\e7a7"; height: inherit; } .icon-cc-nc-eu.icon-left a:before, .icon-cc-nc-eu.icon-right a:after, i.icon-cc-nc-eu:before { content: "\e7a8"; height: inherit; } .icon-cc-nc-jp.icon-left a:before, .icon-cc-nc-jp.icon-right a:after, i.icon-cc-nc-jp:before { content: "\e7a9"; height: inherit; } .icon-cc-sa.icon-left a:before, .icon-cc-sa.icon-right a:after, i.icon-cc-sa:before { content: "\e7aa"; height: inherit; } .icon-cc-nd.icon-left a:before, .icon-cc-nd.icon-right a:after, i.icon-cc-nd:before { content: "\e7ab"; height: inherit; } .icon-cc-pd.icon-left a:before, .icon-cc-pd.icon-right a:after, i.icon-cc-pd:before { content: "\e7ac"; height: inherit; } .icon-cc-zero.icon-left a:before, .icon-cc-zero.icon-right a:after, i.icon-cc-zero:before { content: "\e7ad"; height: inherit; } .icon-cc-share.icon-left a:before, .icon-cc-share.icon-right a:after, i.icon-cc-share:before { content: "\e7ae"; height: inherit; } .icon-cc-remix.icon-left a:before, .icon-cc-remix.icon-right a:after, i.icon-cc-remix:before { content: "\e7af"; height: inherit; } .icon-github.icon-left a:before, .icon-github.icon-right a:after, i.icon-github:before { content: "\f300"; height: inherit; } .icon-github-circled.icon-left a:before, .icon-github-circled.icon-right a:after, i.icon-github-circled:before { content: "\f301"; height: inherit; } .icon-flickr.icon-left a:before, .icon-flickr.icon-right a:after, i.icon-flickr:before { content: "\f303"; height: inherit; } .icon-flickr-circled.icon-left a:before, .icon-flickr-circled.icon-right a:after, i.icon-flickr-circled:before { content: "\f304"; height: inherit; } .icon-vimeo.icon-left a:before, .icon-vimeo.icon-right a:after, i.icon-vimeo:before { content: "\f306"; height: inherit; } .icon-vimeo-circled.icon-left a:before, .icon-vimeo-circled.icon-right a:after, i.icon-vimeo-circled:before { content: "\f307"; height: inherit; } .icon-twitter.icon-left a:before, .icon-twitter.icon-right a:after, i.icon-twitter:before { content: "\f309"; height: inherit; } .icon-twitter-circled.icon-left a:before, .icon-twitter-circled.icon-right a:after, i.icon-twitter-circled:before { content: "\f30a"; height: inherit; } .icon-facebook.icon-left a:before, .icon-facebook.icon-right a:after, i.icon-facebook:before { content: "\f30c"; height: inherit; } .icon-facebook-circled.icon-left a:before, .icon-facebook-circled.icon-right a:after, i.icon-facebook-circled:before { content: "\f30d"; height: inherit; } .icon-facebook-squared.icon-left a:before, .icon-facebook-squared.icon-right a:after, i.icon-facebook-squared:before { content: "\f30e"; height: inherit; } .icon-gplus.icon-left a:before, .icon-gplus.icon-right a:after, i.icon-gplus:before { content: "\f30f"; height: inherit; } .icon-gplus-circled.icon-left a:before, .icon-gplus-circled.icon-right a:after, i.icon-gplus-circled:before { content: "\f310"; height: inherit; } .icon-pinterest.icon-left a:before, .icon-pinterest.icon-right a:after, i.icon-pinterest:before { content: "\f312"; height: inherit; } .icon-pinterest-circled.icon-left a:before, .icon-pinterest-circled.icon-right a:after, i.icon-pinterest-circled:before { content: "\f313"; height: inherit; } .icon-tumblr.icon-left a:before, .icon-tumblr.icon-right a:after, i.icon-tumblr:before { content: "\f315"; height: inherit; } .icon-tumblr-circled.icon-left a:before, .icon-tumblr-circled.icon-right a:after, i.icon-tumblr-circled:before { content: "\f316"; height: inherit; } .icon-linkedin.icon-left a:before, .icon-linkedin.icon-right a:after, i.icon-linkedin:before { content: "\f318"; height: inherit; } .icon-linkedin-circled.icon-left a:before, .icon-linkedin-ci
{ "end_byte": 35366, "start_byte": 28655, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_35368_41862
led.icon-right a:after, i.icon-linkedin-circled:before { content: "\f319"; height: inherit; } .icon-dribbble.icon-left a:before, .icon-dribbble.icon-right a:after, i.icon-dribbble:before { content: "\f31b"; height: inherit; } .icon-dribbble-circled.icon-left a:before, .icon-dribbble-circled.icon-right a:after, i.icon-dribbble-circled:before { content: "\f31c"; height: inherit; } .icon-stumbleupon.icon-left a:before, .icon-stumbleupon.icon-right a:after, i.icon-stumbleupon:before { content: "\f31e"; height: inherit; } .icon-stumbleupon-circled.icon-left a:before, .icon-stumbleupon-circled.icon-right a:after, i.icon-stumbleupon-circled:before { content: "\f31f"; height: inherit; } .icon-lastfm.icon-left a:before, .icon-lastfm.icon-right a:after, i.icon-lastfm:before { content: "\f321"; height: inherit; } .icon-lastfm-circled.icon-left a:before, .icon-lastfm-circled.icon-right a:after, i.icon-lastfm-circled:before { content: "\f322"; height: inherit; } .icon-rdio.icon-left a:before, .icon-rdio.icon-right a:after, i.icon-rdio:before { content: "\f324"; height: inherit; } .icon-rdio-circled.icon-left a:before, .icon-rdio-circled.icon-right a:after, i.icon-rdio-circled:before { content: "\f325"; height: inherit; } .icon-spotify.icon-left a:before, .icon-spotify.icon-right a:after, i.icon-spotify:before { content: "\f327"; height: inherit; } .icon-spotify-circled.icon-left a:before, .icon-spotify-circled.icon-right a:after, i.icon-spotify-circled:before { content: "\f328"; height: inherit; } .icon-qq.icon-left a:before, .icon-qq.icon-right a:after, i.icon-qq:before { content: "\f32a"; height: inherit; } .icon-instagram.icon-left a:before, .icon-instagram.icon-right a:after, i.icon-instagram:before { content: "\f32d"; height: inherit; } .icon-dropbox.icon-left a:before, .icon-dropbox.icon-right a:after, i.icon-dropbox:before { content: "\f330"; height: inherit; } .icon-evernote.icon-left a:before, .icon-evernote.icon-right a:after, i.icon-evernote:before { content: "\f333"; height: inherit; } .icon-flattr.icon-left a:before, .icon-flattr.icon-right a:after, i.icon-flattr:before { content: "\f336"; height: inherit; } .icon-skype.icon-left a:before, .icon-skype.icon-right a:after, i.icon-skype:before { content: "\f339"; height: inherit; } .icon-skype-circled.icon-left a:before, .icon-skype-circled.icon-right a:after, i.icon-skype-circled:before { content: "\f33a"; height: inherit; } .icon-renren.icon-left a:before, .icon-renren.icon-right a:after, i.icon-renren:before { content: "\f33c"; height: inherit; } .icon-sina-weibo.icon-left a:before, .icon-sina-weibo.icon-right a:after, i.icon-sina-weibo:before { content: "\f33f"; height: inherit; } .icon-paypal.icon-left a:before, .icon-paypal.icon-right a:after, i.icon-paypal:before { content: "\f342"; height: inherit; } .icon-picasa.icon-left a:before, .icon-picasa.icon-right a:after, i.icon-picasa:before { content: "\f345"; height: inherit; } .icon-soundcloud.icon-left a:before, .icon-soundcloud.icon-right a:after, i.icon-soundcloud:before { content: "\f348"; height: inherit; } .icon-mixi.icon-left a:before, .icon-mixi.icon-right a:after, i.icon-mixi:before { content: "\f34b"; height: inherit; } .icon-behance.icon-left a:before, .icon-behance.icon-right a:after, i.icon-behance:before { content: "\f34e"; height: inherit; } .icon-google-circles.icon-left a:before, .icon-google-circles.icon-right a:after, i.icon-google-circles:before { content: "\f351"; height: inherit; } .icon-vkontakte.icon-left a:before, .icon-vkontakte.icon-right a:after, i.icon-vkontakte:before { content: "\f354"; height: inherit; } .icon-smashing.icon-left a:before, .icon-smashing.icon-right a:after, i.icon-smashing:before { content: "\f357"; height: inherit; } .icon-sweden.icon-left a:before, .icon-sweden.icon-right a:after, i.icon-sweden:before { content: "\f601"; height: inherit; } .icon-db-shape.icon-left a:before, .icon-db-shape.icon-right a:after, i.icon-db-shape:before { content: "\f600"; height: inherit; } .icon-logo-db.icon-left a:before, .icon-logo-db.icon-right a:after, i.icon-logo-db:before { content: "\f603"; height: inherit; } .fixed { position: fixed; } .fixed.pinned { position: absolute; } @media only screen and (max-width: 768px) { .fixed { position: relative !important; top: auto !important; left: auto !important; } } .unfixed { position: relative !important; top: auto !important; left: auto !important; } .text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; } /* Fonts */ @font-face { font-family: "entypo"; font-style: normal; font-weight: 400; src: url(../fonts/icons/entypo.eot); src: url("../fonts/icons/entypo.eot?#iefix") format("ie9-skip-eot"), url("../fonts/icons/entypo.woff") format("woff"), url("../fonts/icons/entypo.ttf") format("truetype"); } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: "Open Sans"; font-weight: 300; color: #444444; text-rendering: optimizeLegibility; padding-top: 0.273em; line-height: 1.15538em; padding-bottom: 0.273em; } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #d04526; } @media only screen and (max-width: 767px) { h1, h2, h3, h4, h5, h6 { word-wrap: break-word; } } h1 { font-size: 68px; font-size: 4.25rem; } h1.xlarge { font-size: 110px; font-size: 6.875rem; } h1.xxlarge { font-size: 126px; font-size: 7.875rem; } h1.absurd { font-size: 177px; font-size: 11.0625rem; } h2 { font-size: 42px; font-size: 2.625rem; } h3 { font-size: 30px; font-size: 1.875rem; } h4 { font-size: 26px; font-size: 1.625rem; } h5 { font-size: 18px; font-size: 1.125rem; } h6 { font-size: 16px; font-size: 1rem; } @media only screen and (max-width: 767px) { h1 { font-size: 42px; font-size: 2.625rem; } h2 { font-size: 36px; font-size: 2.25rem; } } .subhead { color: #777; font-weight: normal; margin-bottom: 20px; } /*===================================================== Links & Paragraph styles ======================================================*/ p { font-family: "Open Sans"; font-weight: 400; font-size: 16px; font-size: 1rem; margin-bottom: 13px; line-height: 1.625em; } p.lead { font-size: 20px; font-size: 1.25rem; margin-bottom: 18px; } @media only screen and (max-width: 768px) { p { font-size: 17.6px; font-size: 1.1rem; line-height: 1.625em; } } a { color: #d04526; text-decoration: none; outline: 0; line-height: inherit; } a:hover { color: #c03d20; } /*===================================================== Lists =====================
{ "end_byte": 41862, "start_byte": 35368, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_41864_44642
===============================*/ ul, ol { margin-bottom: 0.273em; } ul { list-style: none outside; } ol { list-style: decimal; margin-left: 30px; } ul.square, ul.circle, ul.disc { margin-left: 25px; } ul.square { list-style: square outside; } ul.circle { list-style: circle outside; } ul.disc { list-style: disc outside; } ul ul { margin: 4px 0 5px 25px; } ol ol { margin: 4px 0 5px 30px; } li { padding-bottom: 0.273em; } ul.large li { line-height: 21px; } dl dt { font-weight: bold; font-size: 16px; font-size: 1rem; } @media only screen and (max-width: 768px) { ul, ol, dl, p { text-align: left; } } /* Mobile */ em { font-style: italic; line-height: inherit; } strong { font-weight: 700; line-height: inherit; } small { font-size: 56.4%; line-height: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small { color: #777; } /* Blockquotes */ blockquote { line-height: 20px; color: #777; margin: 0 0 18px; padding: 9px 20px 0 19px; border-left: 5px solid #cccccc; } blockquote p { line-height: 20px; color: #777; } blockquote cite { display: block; font-size: 12px; font-size: 1.2rem; color: #555555; } blockquote cite:before { content: "\2014 \0020"; } blockquote cite a { color: #555555; } blockquote cite a:visited { color: #555555; } hr { border: 1px solid #cccccc; clear: both; margin: 16px 0 18px; height: 0; } abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222; border-bottom: 1px solid #cccccc; cursor: help; } abbr { text-transform: none; } /** Print styles. Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) */ @media print { * { background: transparent !important; color: black !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */ p a { color: #555555 !important; text-decoration: underline; } p a:visited { color: #555555 !important; text-decoration: underline; } p a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ tr, img { page-break-inside: avoid; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .row .pull_one.one.column:first-child, .row .pull_one.two.columns:first-child, .row .pull_one.three.columns:first-child, .row .pull_one.four.columns:first-child, .row .pull_one.five.columns:firs
{ "end_byte": 44642, "start_byte": 41864, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_44643_51879
-child, .row .pull_one.six.columns:first-child, .row .pull_one.seven.columns:first-child, .row .pull_one.eight.columns:first-child, .row .pull_one.nine.columns:first-child, .row .pull_one.ten.columns:first-child, .row .pull_two.one.column:first-child, .row .pull_two.two.columns:first-child, .row .pull_two.three.columns:first-child, .row .pull_two.four.columns:first-child, .row .pull_two.five.columns:first-child, .row .pull_two.six.columns:first-child, .row .pull_two.seven.columns:first-child, .row .pull_two.eight.columns:first-child, .row .pull_two.nine.columns:first-child, .row .pull_two.eleven.columns:first-child, .row .pull_three.one.column:first-child, .row .pull_three.two.columns:first-child, .row .pull_three.three.columns:first-child, .row .pull_three.four.columns:first-child, .row .pull_three.five.columns:first-child, .row .pull_three.six.columns:first-child, .row .pull_three.seven.columns:first-child, .row .pull_three.eight.columns:first-child, .row .pull_three.ten.columns:first-child, .row .pull_three.eleven.columns:first-child, .row .pull_four.one.column:first-child, .row .pull_four.two.columns:first-child, .row .pull_four.three.columns:first-child, .row .pull_four.four.columns:first-child, .row .pull_four.five.columns:first-child, .row .pull_four.six.columns:first-child, .row .pull_four.seven.columns:first-child, .row .pull_four.nine.columns:first-child, .row .pull_four.ten.columns:first-child, .row .pull_four.eleven.columns:first-child, .row .pull_five.one.column:first-child, .row .pull_five.two.columns:first-child, .row .pull_five.three.columns:first-child, .row .pull_five.four.columns:first-child, .row .pull_five.five.columns:first-child, .row .pull_five.six.columns:first-child, .row .pull_five.eight.columns:first-child, .row .pull_five.nine.columns:first-child, .row .pull_five.ten.columns:first-child, .row .pull_five.eleven.columns:first-child, .row .pull_six.one.column:first-child, .row .pull_six.two.columns:first-child, .row .pull_six.three.columns:first-child, .row .pull_six.four.columns:first-child, .row .pull_six.five.columns:first-child, .row .pull_six.seven.columns:first-child, .row .pull_six.eight.columns:first-child, .row .pull_six.nine.columns:first-child, .row .pull_six.ten.columns:first-child, .row .pull_six.eleven.columns:first-child, .row .pull_seven.one.column:first-child, .row .pull_seven.two.columns:first-child, .row .pull_seven.three.columns:first-child, .row .pull_seven.four.columns:first-child, .row .pull_seven.six.columns:first-child, .row .pull_seven.seven.columns:first-child, .row .pull_seven.eight.columns:first-child, .row .pull_seven.nine.columns:first-child, .row .pull_seven.ten.columns:first-child, .row .pull_seven.eleven.columns:first-child, .row .pull_eight.one.column:first-child, .row .pull_eight.two.columns:first-child, .row .pull_eight.three.columns:first-child, .row .pull_eight.five.columns:first-child, .row .pull_eight.six.columns:first-child, .row .pull_eight.seven.columns:first-child, .row .pull_eight.eight.columns:first-child, .row .pull_eight.nine.columns:first-child, .row .pull_eight.ten.columns:first-child, .row .pull_eight.eleven.columns:first-child, .row .pull_nine.one.column:first-child, .row .pull_nine.two.columns:first-child, .row .pull_nine.four.columns:first-child, .row .pull_nine.five.columns:first-child, .row .pull_nine.six.columns:first-child, .row .pull_nine.seven.columns:first-child, .row .pull_nine.eight.columns:first-child, .row .pull_nine.nine.columns:first-child, .row .pull_nine.ten.columns:first-child, .row .pull_nine.eleven.columns:first-child, .row .pull_ten.one.column:first-child, .row .pull_ten.three.columns:first-child, .row .pull_ten.four.columns:first-child, .row .pull_ten.five.columns:first-child, .row .pull_ten.six.columns:first-child, .row .pull_ten.seven.columns:first-child, .row .pull_ten.eight.columns:first-child, .row .pull_ten.nine.columns:first-child, .row .pull_ten.ten.columns:first-child, .row .pull_ten.eleven.columns:first-child, .row .pull_eleven.two.columns:first-child, .row .pull_eleven.three.columns:first-child, .row .pull_eleven.four.columns:first-child, .row .pull_eleven.five.columns:first-child, .row .pull_eleven.six.columns:first-child, .row .pull_eleven.seven.columns:first-child, .row .pull_eleven.eight.columns:first-child, .row .pull_eleven.nine.columns:first-child, .row .pull_eleven.ten.columns:first-child, .row .pull_eleven.eleven.columns:first-child, .sixteen.colgrid .row .pull_one.one.column:first-child, .sixteen.colgrid .row .pull_one.two.columns:first-child, .sixteen.colgrid .row .pull_one.three.columns:first-child, .sixteen.colgrid .row .pull_one.four.columns:first-child, .sixteen.colgrid .row .pull_one.five.columns:first-child, .sixteen.colgrid .row .pull_one.six.columns:first-child, .sixteen.colgrid .row .pull_one.seven.columns:first-child, .sixteen.colgrid .row .pull_one.eight.columns:first-child, .sixteen.colgrid .row .pull_one.nine.columns:first-child, .sixteen.colgrid .row .pull_one.ten.columns:first-child, .sixteen.colgrid .row .pull_one.eleven.columns:first-child, .sixteen.colgrid .row .pull_one.twelve.columns:first-child, .sixteen.colgrid .row .pull_one.thirteen.columns:first-child, .sixteen.colgrid .row .pull_one.fourteen.columns:first-child, .sixteen.colgrid .row .pull_two.one.column:first-child, .sixteen.colgrid .row .pull_two.two.columns:first-child, .sixteen.colgrid .row .pull_two.three.columns:first-child, .sixteen.colgrid .row .pull_two.four.columns:first-child, .sixteen.colgrid .row .pull_two.five.columns:first-child, .sixteen.colgrid .row .pull_two.six.columns:first-child, .sixteen.colgrid .row .pull_two.seven.columns:first-child, .sixteen.colgrid .row .pull_two.eight.columns:first-child, .sixteen.colgrid .row .pull_two.nine.columns:first-child, .sixteen.colgrid .row .pull_two.ten.columns:first-child, .sixteen.colgrid .row .pull_two.eleven.columns:first-child, .sixteen.colgrid .row .pull_two.twelve.columns:first-child, .sixteen.colgrid .row .pull_two.thirteen.columns:first-child, .sixteen.colgrid .row .pull_two.fifteen.columns:first-child, .sixteen.colgrid .row .pull_three.one.column:first-child, .sixteen.colgrid .row .pull_three.two.columns:first-child, .sixteen.colgrid .row .pull_three.three.columns:first-child, .sixteen.colgrid .row .pull_three.four.columns:first-child, .sixteen.colgrid .row .pull_three.five.columns:first-child, .sixteen.colgrid .row .pull_three.six.columns:first-child, .sixteen.colgrid .row .pull_three.seven.columns:first-child, .sixteen.colgrid .row .pull_three.eight.columns:first-child, .sixteen.colgrid .row .pull_three.nine.columns:first-child, .sixteen.colgrid .row .pull_three.ten.columns:first-child, .sixteen.colgrid .row .pull_three.eleven.columns:first-child, .sixteen.colgrid .row .pull_three.twelve.columns:first-child, .sixteen.colgrid .row .pull_three.fourteen.columns:first-child, .sixteen.colgrid .row .pull_three.fifteen.columns:first-child, .sixteen.colgrid .row .pull_four.one.column:first-child, .sixteen.colgrid .row .pull_four.two.columns:first-child, .sixteen.colgrid .row .pull_four.three.columns:first-child, .sixteen.colgrid .row .pull_four.four.columns:first-child, .sixteen.colgrid .row .pull_four.five.columns:first-child, .sixteen.colgrid
{ "end_byte": 51879, "start_byte": 44643, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_51880_58926
.row .pull_four.six.columns:first-child, .sixteen.colgrid .row .pull_four.seven.columns:first-child, .sixteen.colgrid .row .pull_four.eight.columns:first-child, .sixteen.colgrid .row .pull_four.nine.columns:first-child, .sixteen.colgrid .row .pull_four.ten.columns:first-child, .sixteen.colgrid .row .pull_four.eleven.columns:first-child, .sixteen.colgrid .row .pull_four.thirteen.columns:first-child, .sixteen.colgrid .row .pull_four.fourteen.columns:first-child, .sixteen.colgrid .row .pull_four.fifteen.columns:first-child, .sixteen.colgrid .row .pull_five.one.column:first-child, .sixteen.colgrid .row .pull_five.two.columns:first-child, .sixteen.colgrid .row .pull_five.three.columns:first-child, .sixteen.colgrid .row .pull_five.four.columns:first-child, .sixteen.colgrid .row .pull_five.five.columns:first-child, .sixteen.colgrid .row .pull_five.six.columns:first-child, .sixteen.colgrid .row .pull_five.seven.columns:first-child, .sixteen.colgrid .row .pull_five.eight.columns:first-child, .sixteen.colgrid .row .pull_five.nine.columns:first-child, .sixteen.colgrid .row .pull_five.ten.columns:first-child, .sixteen.colgrid .row .pull_five.twelve.columns:first-child, .sixteen.colgrid .row .pull_five.thirteen.columns:first-child, .sixteen.colgrid .row .pull_five.fourteen.columns:first-child, .sixteen.colgrid .row .pull_five.fifteen.columns:first-child, .sixteen.colgrid .row .pull_six.one.column:first-child, .sixteen.colgrid .row .pull_six.two.columns:first-child, .sixteen.colgrid .row .pull_six.three.columns:first-child, .sixteen.colgrid .row .pull_six.four.columns:first-child, .sixteen.colgrid .row .pull_six.five.columns:first-child, .sixteen.colgrid .row .pull_six.six.columns:first-child, .sixteen.colgrid .row .pull_six.seven.columns:first-child, .sixteen.colgrid .row .pull_six.eight.columns:first-child, .sixteen.colgrid .row .pull_six.nine.columns:first-child, .sixteen.colgrid .row .pull_six.eleven.columns:first-child, .sixteen.colgrid .row .pull_six.twelve.columns:first-child, .sixteen.colgrid .row .pull_six.thirteen.columns:first-child, .sixteen.colgrid .row .pull_six.fourteen.columns:first-child, .sixteen.colgrid .row .pull_six.fifteen.columns:first-child, .sixteen.colgrid .row .pull_seven.one.column:first-child, .sixteen.colgrid .row .pull_seven.two.columns:first-child, .sixteen.colgrid .row .pull_seven.three.columns:first-child, .sixteen.colgrid .row .pull_seven.four.columns:first-child, .sixteen.colgrid .row .pull_seven.five.columns:first-child, .sixteen.colgrid .row .pull_seven.six.columns:first-child, .sixteen.colgrid .row .pull_seven.seven.columns:first-child, .sixteen.colgrid .row .pull_seven.eight.columns:first-child, .sixteen.colgrid .row .pull_seven.ten.columns:first-child, .sixteen.colgrid .row .pull_seven.eleven.columns:first-child, .sixteen.colgrid .row .pull_seven.twelve.columns:first-child, .sixteen.colgrid .row .pull_seven.thirteen.columns:first-child, .sixteen.colgrid .row .pull_seven.fourteen.columns:first-child, .sixteen.colgrid .row .pull_seven.fifteen.columns:first-child, .sixteen.colgrid .row .pull_eight.one.column:first-child, .sixteen.colgrid .row .pull_eight.two.columns:first-child, .sixteen.colgrid .row .pull_eight.three.columns:first-child, .sixteen.colgrid .row .pull_eight.four.columns:first-child, .sixteen.colgrid .row .pull_eight.five.columns:first-child, .sixteen.colgrid .row .pull_eight.six.columns:first-child, .sixteen.colgrid .row .pull_eight.seven.columns:first-child, .sixteen.colgrid .row .pull_eight.nine.columns:first-child, .sixteen.colgrid .row .pull_eight.ten.columns:first-child, .sixteen.colgrid .row .pull_eight.eleven.columns:first-child, .sixteen.colgrid .row .pull_eight.twelve.columns:first-child, .sixteen.colgrid .row .pull_eight.thirteen.columns:first-child, .sixteen.colgrid .row .pull_eight.fourteen.columns:first-child, .sixteen.colgrid .row .pull_eight.fifteen.columns:first-child, .sixteen.colgrid .row .pull_nine.one.column:first-child, .sixteen.colgrid .row .pull_nine.two.columns:first-child, .sixteen.colgrid .row .pull_nine.three.columns:first-child, .sixteen.colgrid .row .pull_nine.four.columns:first-child, .sixteen.colgrid .row .pull_nine.five.columns:first-child, .sixteen.colgrid .row .pull_nine.six.columns:first-child, .sixteen.colgrid .row .pull_nine.eight.columns:first-child, .sixteen.colgrid .row .pull_nine.nine.columns:first-child, .sixteen.colgrid .row .pull_nine.ten.columns:first-child, .sixteen.colgrid .row .pull_nine.eleven.columns:first-child, .sixteen.colgrid .row .pull_nine.twelve.columns:first-child, .sixteen.colgrid .row .pull_nine.thirteen.columns:first-child, .sixteen.colgrid .row .pull_nine.fourteen.columns:first-child, .sixteen.colgrid .row .pull_nine.fifteen.columns:first-child, .sixteen.colgrid .row .pull_ten.one.column:first-child, .sixteen.colgrid .row .pull_ten.two.columns:first-child, .sixteen.colgrid .row .pull_ten.three.columns:first-child, .sixteen.colgrid .row .pull_ten.four.columns:first-child, .sixteen.colgrid .row .pull_ten.five.columns:first-child, .sixteen.colgrid .row .pull_ten.seven.columns:first-child, .sixteen.colgrid .row .pull_ten.eight.columns:first-child, .sixteen.colgrid .row .pull_ten.nine.columns:first-child, .sixteen.colgrid .row .pull_ten.ten.columns:first-child, .sixteen.colgrid .row .pull_ten.eleven.columns:first-child, .sixteen.colgrid .row .pull_ten.twelve.columns:first-child, .sixteen.colgrid .row .pull_ten.thirteen.columns:first-child, .sixteen.colgrid .row .pull_ten.fourteen.columns:first-child, .sixteen.colgrid .row .pull_ten.fifteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.one.column:first-child, .sixteen.colgrid .row .pull_eleven.two.columns:first-child, .sixteen.colgrid .row .pull_eleven.three.columns:first-child, .sixteen.colgrid .row .pull_eleven.four.columns:first-child, .sixteen.colgrid .row .pull_eleven.six.columns:first-child, .sixteen.colgrid .row .pull_eleven.seven.columns:first-child, .sixteen.colgrid .row .pull_eleven.eight.columns:first-child, .sixteen.colgrid .row .pull_eleven.nine.columns:first-child, .sixteen.colgrid .row .pull_eleven.ten.columns:first-child, .sixteen.colgrid .row .pull_eleven.eleven.columns:first-child, .sixteen.colgrid .row .pull_eleven.twelve.columns:first-child, .sixteen.colgrid .row .pull_eleven.thirteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.fourteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.fifteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.one.column:first-child, .sixteen.colgrid .row .pull_twelve.two.columns:first-child, .sixteen.colgrid .row .pull_twelve.three.columns:first-child, .sixteen.colgrid .row .pull_twelve.five.columns:first-child, .sixteen.colgrid .row .pull_twelve.six.columns:first-child, .sixteen.colgrid .row .pull_twelve.seven.columns:first-child, .sixteen.colgrid .row .pull_twelve.eight.columns:first-child, .sixteen.colgrid .row .pull_twelve.nine.columns:first-child, .sixteen.colgrid .row .pull_twelve.ten.columns:first-child, .sixteen.colgrid .row .pull_twelve.eleven.columns:first-child, .sixteen.c
{ "end_byte": 58926, "start_byte": 51880, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_58927_65640
lgrid .row .pull_twelve.twelve.columns:first-child, .sixteen.colgrid .row .pull_twelve.thirteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.fourteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.fifteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.one.column:first-child, .sixteen.colgrid .row .pull_thirteen.two.columns:first-child, .sixteen.colgrid .row .pull_thirteen.four.columns:first-child, .sixteen.colgrid .row .pull_thirteen.five.columns:first-child, .sixteen.colgrid .row .pull_thirteen.six.columns:first-child, .sixteen.colgrid .row .pull_thirteen.seven.columns:first-child, .sixteen.colgrid .row .pull_thirteen.eight.columns:first-child, .sixteen.colgrid .row .pull_thirteen.nine.columns:first-child, .sixteen.colgrid .row .pull_thirteen.ten.columns:first-child, .sixteen.colgrid .row .pull_thirteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_thirteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_thirteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.fifteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.one.column:first-child, .sixteen.colgrid .row .pull_fourteen.three.columns:first-child, .sixteen.colgrid .row .pull_fourteen.four.columns:first-child, .sixteen.colgrid .row .pull_fourteen.five.columns:first-child, .sixteen.colgrid .row .pull_fourteen.six.columns:first-child, .sixteen.colgrid .row .pull_fourteen.seven.columns:first-child, .sixteen.colgrid .row .pull_fourteen.eight.columns:first-child, .sixteen.colgrid .row .pull_fourteen.nine.columns:first-child, .sixteen.colgrid .row .pull_fourteen.ten.columns:first-child, .sixteen.colgrid .row .pull_fourteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_fourteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_fourteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.fifteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.two.columns:first-child, .sixteen.colgrid .row .pull_fifteen.three.columns:first-child, .sixteen.colgrid .row .pull_fifteen.four.columns:first-child, .sixteen.colgrid .row .pull_fifteen.five.columns:first-child, .sixteen.colgrid .row .pull_fifteen.six.columns:first-child, .sixteen.colgrid .row .pull_fifteen.seven.columns:first-child, .sixteen.colgrid .row .pull_fifteen.eight.columns:first-child, .sixteen.colgrid .row .pull_fifteen.nine.columns:first-child, .sixteen.colgrid .row .pull_fifteen.ten.columns:first-child, .sixteen.colgrid .row .pull_fifteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_fifteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_fifteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.fifteen.columns:first-child { margin-left: 0; } /*================================================= +++ LE GRID +++ A Responsive Grid -- Gumby defaults to a standard 960 grid, but you can change it to whatever you'd like. ==================================================*/ /*.container { padding: 0 $gutter-in-px; }*/ .row { width: 100%; max-width: 980px; min-width: 320px; margin: 0 auto; padding-left: 20px; padding-right: 20px; } .row .row { min-width: 0; padding-left: 0; padding-right: 0; } /* To fix the grid into a different size, set max-width to your desired width */ .column, .columns { margin-left: 2.12766%; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .column:first-child, .columns:first-child, .alpha { margin-left: 0; } .column.omega, .columns.omega { float: right; } /* Column Classes */ .row .one.column { width: 6.38298%; } .row .one.columns { width: 6.38298%; } .row .two.columns { width: 14.89362%; } .row .three.columns { width: 23.40426%; } .row .four.columns { width: 31.91489%; } .row .five.columns { width: 40.42553%; } .row .six.columns { width: 48.93617%; } .row .seven.columns { width: 57.44681%; } .row .eight.columns { width: 65.95745%; } .row .nine.columns { width: 74.46809%; } .row .ten.columns { width: 82.97872%; } .row .eleven.columns { width: 91.48936%; } .row .twelve.columns { width: 100%; } /* Push and Pull Classes */ .row .push_one { margin-left: 10.6383%; } .row .push_one:first-child { margin-left: 8.51064%; } .row .pull_one.one.column { margin-left: -14.89362%; } .row .pull_one.two.columns { margin-left: -23.40426%; } .row .pull_one.three.columns { margin-left: -31.91489%; } .row .pull_one.four.columns { margin-left: -40.42553%; } .row .pull_one.five.columns { margin-left: -48.93617%; } .row .pull_one.six.columns { margin-left: -57.44681%; } .row .pull_one.seven.columns { margin-left: -65.95745%; } .row .pull_one.eight.columns { margin-left: -74.46809%; } .row .pull_one.nine.columns { margin-left: -82.97872%; } .row .pull_one.ten.columns { margin-left: -91.48936%; } .row .push_two { margin-left: 19.14894%; } .row .push_two:first-child { margin-left: 17.02128%; } .row .pull_two.one.column { margin-left: -23.40426%; } .row .pull_two.two.columns { margin-left: -31.91489%; } .row .pull_two.three.columns { margin-left: -40.42553%; } .row .pull_two.four.columns { margin-left: -48.93617%; } .row .pull_two.five.columns { margin-left: -57.44681%; } .row .pull_two.six.columns { margin-left: -65.95745%; } .row .pull_two.seven.columns { margin-left: -74.46809%; } .row .pull_two.eight.columns { margin-left: -82.97872%; } .row .pull_two.nine.columns { margin-left: -91.48936%; } .row .pull_two.eleven.columns { margin-left: -108.51064%; } .row .push_three { margin-left: 27.65957%; } .row .push_three:first-child { margin-left: 25.53191%; } .row .pull_three.one.column { margin-left: -31.91489%; } .row .pull_three.two.columns { margin-left: -40.42553%; } .row .pull_three.three.columns { margin-left: -48.93617%; } .row .pull_three.four.columns { margin-left: -57.44681%; } .row .pull_three.five.columns { margin-left: -65.95745%; } .row .pull_three.six.columns { margin-left: -74.46809%; } .row .pull_three.seven.columns { margin-left: -82.97872%; } .row .pull_three.eight.columns { margin-left: -91.48936%; } .row .pull_three.ten.columns { margin-left: -108.51064%; } .row .pull_three.eleven.columns { margin-left: -117.02128%; } .row .push_four { margin-left: 36.17021%; } .row .push_four:first-child { margin-left: 34.04255%; } .row .pull_four.one.column { margin-left: -40.42553%; } .row .pull_four.two.columns { margin-left: -48.93617%; } .row .pull_four.three.columns { margin-left: -57.44681%; } .row .pull_four.four.columns { margin-left: -65.95745%; } .row .pull_four.five
{ "end_byte": 65640, "start_byte": 58927, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_65641_71744
columns { margin-left: -74.46809%; } .row .pull_four.six.columns { margin-left: -82.97872%; } .row .pull_four.seven.columns { margin-left: -91.48936%; } .row .pull_four.nine.columns { margin-left: -108.51064%; } .row .pull_four.ten.columns { margin-left: -117.02128%; } .row .pull_four.eleven.columns { margin-left: -125.53191%; } .row .push_five { margin-left: 44.68085%; } .row .push_five:first-child { margin-left: 42.55319%; } .row .pull_five.one.column { margin-left: -48.93617%; } .row .pull_five.two.columns { margin-left: -57.44681%; } .row .pull_five.three.columns { margin-left: -65.95745%; } .row .pull_five.four.columns { margin-left: -74.46809%; } .row .pull_five.five.columns { margin-left: -82.97872%; } .row .pull_five.six.columns { margin-left: -91.48936%; } .row .pull_five.eight.columns { margin-left: -108.51064%; } .row .pull_five.nine.columns { margin-left: -117.02128%; } .row .pull_five.ten.columns { margin-left: -125.53191%; } .row .pull_five.eleven.columns { margin-left: -134.04255%; } .row .push_six { margin-left: 53.19149%; } .row .push_six:first-child { margin-left: 51.06383%; } .row .pull_six.one.column { margin-left: -57.44681%; } .row .pull_six.two.columns { margin-left: -65.95745%; } .row .pull_six.three.columns { margin-left: -74.46809%; } .row .pull_six.four.columns { margin-left: -82.97872%; } .row .pull_six.five.columns { margin-left: -91.48936%; } .row .pull_six.seven.columns { margin-left: -108.51064%; } .row .pull_six.eight.columns { margin-left: -117.02128%; } .row .pull_six.nine.columns { margin-left: -125.53191%; } .row .pull_six.ten.columns { margin-left: -134.04255%; } .row .pull_six.eleven.columns { margin-left: -142.55319%; } .row .push_seven { margin-left: 61.70213%; } .row .push_seven:first-child { margin-left: 59.57447%; } .row .pull_seven.one.column { margin-left: -65.95745%; } .row .pull_seven.two.columns { margin-left: -74.46809%; } .row .pull_seven.three.columns { margin-left: -82.97872%; } .row .pull_seven.four.columns { margin-left: -91.48936%; } .row .pull_seven.six.columns { margin-left: -108.51064%; } .row .pull_seven.seven.columns { margin-left: -117.02128%; } .row .pull_seven.eight.columns { margin-left: -125.53191%; } .row .pull_seven.nine.columns { margin-left: -134.04255%; } .row .pull_seven.ten.columns { margin-left: -142.55319%; } .row .pull_seven.eleven.columns { margin-left: -151.06383%; } .row .push_eight { margin-left: 70.21277%; } .row .push_eight:first-child { margin-left: 68.08511%; } .row .pull_eight.one.column { margin-left: -74.46809%; } .row .pull_eight.two.columns { margin-left: -82.97872%; } .row .pull_eight.three.columns { margin-left: -91.48936%; } .row .pull_eight.five.columns { margin-left: -108.51064%; } .row .pull_eight.six.columns { margin-left: -117.02128%; } .row .pull_eight.seven.columns { margin-left: -125.53191%; } .row .pull_eight.eight.columns { margin-left: -134.04255%; } .row .pull_eight.nine.columns { margin-left: -142.55319%; } .row .pull_eight.ten.columns { margin-left: -151.06383%; } .row .pull_eight.eleven.columns { margin-left: -159.57447%; } .row .push_nine { margin-left: 78.7234%; } .row .push_nine:first-child { margin-left: 76.59574%; } .row .pull_nine.one.column { margin-left: -82.97872%; } .row .pull_nine.two.columns { margin-left: -91.48936%; } .row .pull_nine.four.columns { margin-left: -108.51064%; } .row .pull_nine.five.columns { margin-left: -117.02128%; } .row .pull_nine.six.columns { margin-left: -125.53191%; } .row .pull_nine.seven.columns { margin-left: -134.04255%; } .row .pull_nine.eight.columns { margin-left: -142.55319%; } .row .pull_nine.nine.columns { margin-left: -151.06383%; } .row .pull_nine.ten.columns { margin-left: -159.57447%; } .row .pull_nine.eleven.columns { margin-left: -168.08511%; } .row .push_ten { margin-left: 87.23404%; } .row .push_ten:first-child { margin-left: 85.10638%; } .row .pull_ten.one.column { margin-left: -91.48936%; } .row .pull_ten.three.columns { margin-left: -108.51064%; } .row .pull_ten.four.columns { margin-left: -117.02128%; } .row .pull_ten.five.columns { margin-left: -125.53191%; } .row .pull_ten.six.columns { margin-left: -134.04255%; } .row .pull_ten.seven.columns { margin-left: -142.55319%; } .row .pull_ten.eight.columns { margin-left: -151.06383%; } .row .pull_ten.nine.columns { margin-left: -159.57447%; } .row .pull_ten.ten.columns { margin-left: -168.08511%; } .row .pull_ten.eleven.columns { margin-left: -176.59574%; } .row .push_eleven { margin-left: 95.74468%; } .row .push_eleven:first-child { margin-left: 93.61702%; } .row .pull_eleven.two.columns { margin-left: -108.51064%; } .row .pull_eleven.three.columns { margin-left: -117.02128%; } .row .pull_eleven.four.columns { margin-left: -125.53191%; } .row .pull_eleven.five.columns { margin-left: -134.04255%; } .row .pull_eleven.six.columns { margin-left: -142.55319%; } .row .pull_eleven.seven.columns { margin-left: -151.06383%; } .row .pull_eleven.eight.columns { margin-left: -159.57447%; } .row .pull_eleven.nine.columns { margin-left: -168.08511%; } .row .pull_eleven.ten.columns { margin-left: -176.59574%; } .row .pull_eleven.eleven.columns { margin-left: -185.10638%; } /* Centered Classes */ .row .one.centered { margin-left: 46.80851%; } .row .two.centered { margin-left: 42.55319%; } .row .three.centered { margin-left: 38.29787%; } .row .four.centered { margin-left: 34.04255%; } .row .five.centered { margin-left: 29.78723%; } .row .six.centered { margin-left: 25.53191%; } .row .seven.centered { margin-left: 21.2766%; } .row .eight.centered { margin-left: 17.02128%; } .row .nine.centered { margin-left: 12.76596%; } .row .ten.centered { margin-left: 8.51064%; } .row .eleven.centered { margin-left: 4.25532%; } /* Hybrid Grid Columns */ .sixteen.colgrid .row .one.column { width: 4.25532%; } .sixteen.colgrid .row .one.columns { width: 4.25532%; } .sixteen.colgrid .row .two.columns { width: 10.6383%; } .sixteen.colgrid .row .three.columns { width: 17.02128%; } .sixteen.colgrid .row .four.columns { width: 23.40426%; } .sixteen.colgrid .row .five.columns { width: 29.78723%; } .sixteen.colgrid .r
{ "end_byte": 71744, "start_byte": 65641, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_71745_77799
w .six.columns { width: 36.17021%; } .sixteen.colgrid .row .seven.columns { width: 42.55319%; } .sixteen.colgrid .row .eight.columns { width: 48.93617%; } .sixteen.colgrid .row .nine.columns { width: 55.31915%; } .sixteen.colgrid .row .ten.columns { width: 61.70213%; } .sixteen.colgrid .row .eleven.columns { width: 68.08511%; } .sixteen.colgrid .row .twelve.columns { width: 74.46809%; } .sixteen.colgrid .row .thirteen.columns { width: 80.85106%; } .sixteen.colgrid .row .fourteen.columns { width: 87.23404%; } .sixteen.colgrid .row .fifteen.columns { width: 93.61702%; } .sixteen.colgrid .row .sixteen.columns { width: 100%; } /* Hybrid Push and Pull Classes */ .sixteen.colgrid .row .push_one { margin-left: 8.51064%; } .sixteen.colgrid .row .push_one:first-child { margin-left: 6.38298%; } .sixteen.colgrid .row .pull_one.one.column { margin-left: -10.6383%; } .sixteen.colgrid .row .pull_one.two.columns { margin-left: -17.02128%; } .sixteen.colgrid .row .pull_one.three.columns { margin-left: -23.40426%; } .sixteen.colgrid .row .pull_one.four.columns { margin-left: -29.78723%; } .sixteen.colgrid .row .pull_one.five.columns { margin-left: -36.17021%; } .sixteen.colgrid .row .pull_one.six.columns { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_one.seven.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_one.eight.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_one.nine.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_one.ten.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_one.eleven.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_one.twelve.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_one.thirteen.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_one.fourteen.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .push_two { margin-left: 14.89362%; } .sixteen.colgrid .row .push_two:first-child { margin-left: 12.76596%; } .sixteen.colgrid .row .pull_two.one.column { margin-left: -17.02128%; } .sixteen.colgrid .row .pull_two.two.columns { margin-left: -23.40426%; } .sixteen.colgrid .row .pull_two.three.columns { margin-left: -29.78723%; } .sixteen.colgrid .row .pull_two.four.columns { margin-left: -36.17021%; } .sixteen.colgrid .row .pull_two.five.columns { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_two.six.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_two.seven.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_two.eight.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_two.nine.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_two.ten.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_two.eleven.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_two.twelve.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_two.thirteen.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_two.fifteen.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .push_three { margin-left: 21.2766%; } .sixteen.colgrid .row .push_three:first-child { margin-left: 19.14894%; } .sixteen.colgrid .row .pull_three.one.column { margin-left: -23.40426%; } .sixteen.colgrid .row .pull_three.two.columns { margin-left: -29.78723%; } .sixteen.colgrid .row .pull_three.three.columns { margin-left: -36.17021%; } .sixteen.colgrid .row .pull_three.four.columns { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_three.five.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_three.six.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_three.seven.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_three.eight.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_three.nine.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_three.ten.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_three.eleven.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_three.twelve.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_three.fourteen.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_three.fifteen.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .push_four { margin-left: 27.65957%; } .sixteen.colgrid .row .push_four:first-child { margin-left: 25.53191%; } .sixteen.colgrid .row .pull_four.one.column { margin-left: -29.78723%; } .sixteen.colgrid .row .pull_four.two.columns { margin-left: -36.17021%; } .sixteen.colgrid .row .pull_four.three.columns { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_four.four.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_four.five.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_four.six.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_four.seven.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_four.eight.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_four.nine.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_four.ten.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_four.eleven.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_four.thirteen.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_four.fourteen.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_four.fifteen.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .push_five { margin-left: 34.04255%; } .sixteen.colgrid .row .push_five:first-child { margin-left: 31.91489%; } .sixteen.colgrid .row .pull_five.one.column { margin-left: -36.17021%; } .sixteen.colgrid .row .pull_five.two.columns { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_five.three.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_five.four.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_five.five.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_five.six.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_five.seven.column
{ "end_byte": 77799, "start_byte": 71745, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_77800_83821
{ margin-left: -74.46809%; } .sixteen.colgrid .row .pull_five.eight.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_five.nine.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_five.ten.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_five.twelve.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_five.thirteen.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_five.fourteen.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_five.fifteen.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .push_six { margin-left: 40.42553%; } .sixteen.colgrid .row .push_six:first-child { margin-left: 38.29787%; } .sixteen.colgrid .row .pull_six.one.column { margin-left: -42.55319%; } .sixteen.colgrid .row .pull_six.two.columns { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_six.three.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_six.four.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_six.five.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_six.six.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_six.seven.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_six.eight.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_six.nine.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_six.eleven.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_six.twelve.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_six.thirteen.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_six.fourteen.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_six.fifteen.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .push_seven { margin-left: 46.80851%; } .sixteen.colgrid .row .push_seven:first-child { margin-left: 44.68085%; } .sixteen.colgrid .row .pull_seven.one.column { margin-left: -48.93617%; } .sixteen.colgrid .row .pull_seven.two.columns { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_seven.three.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_seven.four.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_seven.five.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_seven.six.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_seven.seven.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_seven.eight.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_seven.ten.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_seven.eleven.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_seven.twelve.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_seven.thirteen.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_seven.fourteen.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_seven.fifteen.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .push_eight { margin-left: 53.19149%; } .sixteen.colgrid .row .push_eight:first-child { margin-left: 51.06383%; } .sixteen.colgrid .row .pull_eight.one.column { margin-left: -55.31915%; } .sixteen.colgrid .row .pull_eight.two.columns { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_eight.three.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_eight.four.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_eight.five.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_eight.six.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_eight.seven.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_eight.nine.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_eight.ten.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_eight.eleven.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_eight.twelve.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_eight.thirteen.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_eight.fourteen.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_eight.fifteen.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .push_nine { margin-left: 59.57447%; } .sixteen.colgrid .row .push_nine:first-child { margin-left: 57.44681%; } .sixteen.colgrid .row .pull_nine.one.column { margin-left: -61.70213%; } .sixteen.colgrid .row .pull_nine.two.columns { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_nine.three.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_nine.four.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_nine.five.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_nine.six.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_nine.eight.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_nine.nine.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_nine.ten.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_nine.eleven.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_nine.twelve.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_nine.thirteen.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_nine.fourteen.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_nine.fifteen.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .push_ten { margin-left: 65.95745%; } .sixteen.colgrid .row .push_ten:first-child { margin-left: 63.82979%; } .sixteen.colgrid .row .pull_ten.one.column { margin-left: -68.08511%; } .sixteen.colgrid .row .pull_ten.two.columns { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_ten.three.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_ten.four.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_ten.five.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_ten.seven.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_ten.eight.column
{ "end_byte": 83821, "start_byte": 77800, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_83822_89987
{ margin-left: -112.76596%; } .sixteen.colgrid .row .pull_ten.nine.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_ten.ten.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_ten.eleven.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_ten.twelve.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_ten.thirteen.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_ten.fourteen.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_ten.fifteen.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .push_eleven { margin-left: 72.34043%; } .sixteen.colgrid .row .push_eleven:first-child { margin-left: 70.21277%; } .sixteen.colgrid .row .pull_eleven.one.column { margin-left: -74.46809%; } .sixteen.colgrid .row .pull_eleven.two.columns { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_eleven.three.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_eleven.four.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_eleven.six.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_eleven.seven.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_eleven.eight.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_eleven.nine.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_eleven.ten.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_eleven.eleven.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_eleven.twelve.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_eleven.thirteen.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_eleven.fourteen.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .pull_eleven.fifteen.columns { margin-left: -163.82979%; } .sixteen.colgrid .row .push_twelve { margin-left: 78.7234%; } .sixteen.colgrid .row .push_twelve:first-child { margin-left: 76.59574%; } .sixteen.colgrid .row .pull_twelve.one.column { margin-left: -80.85106%; } .sixteen.colgrid .row .pull_twelve.two.columns { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_twelve.three.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_twelve.five.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_twelve.six.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_twelve.seven.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_twelve.eight.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_twelve.nine.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_twelve.ten.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_twelve.eleven.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_twelve.twelve.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_twelve.thirteen.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .pull_twelve.fourteen.columns { margin-left: -163.82979%; } .sixteen.colgrid .row .pull_twelve.fifteen.columns { margin-left: -170.21277%; } .sixteen.colgrid .row .push_thirteen { margin-left: 85.10638%; } .sixteen.colgrid .row .push_thirteen:first-child { margin-left: 82.97872%; } .sixteen.colgrid .row .pull_thirteen.one.column { margin-left: -87.23404%; } .sixteen.colgrid .row .pull_thirteen.two.columns { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_thirteen.four.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_thirteen.five.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_thirteen.six.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_thirteen.seven.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_thirteen.eight.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_thirteen.nine.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_thirteen.ten.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_thirteen.eleven.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_thirteen.twelve.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .pull_thirteen.thirteen.columns { margin-left: -163.82979%; } .sixteen.colgrid .row .pull_thirteen.fourteen.columns { margin-left: -170.21277%; } .sixteen.colgrid .row .pull_thirteen.fifteen.columns { margin-left: -176.59574%; } .sixteen.colgrid .row .push_fourteen { margin-left: 91.48936%; } .sixteen.colgrid .row .push_fourteen:first-child { margin-left: 89.3617%; } .sixteen.colgrid .row .pull_fourteen.one.column { margin-left: -93.61702%; } .sixteen.colgrid .row .pull_fourteen.three.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_fourteen.four.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_fourteen.five.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_fourteen.six.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_fourteen.seven.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_fourteen.eight.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_fourteen.nine.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_fourteen.ten.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_fourteen.eleven.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .pull_fourteen.twelve.columns { margin-left: -163.82979%; } .sixteen.colgrid .row .pull_fourteen.thirteen.columns { margin-left: -170.21277%; } .sixteen.colgrid .row .pull_fourteen.fourteen.columns { margin-left: -176.59574%; } .sixteen.colgrid .row .pull_fourteen.fifteen.columns { margin-left: -182.97872%; } .sixteen.colgrid .row .push_fifteen { margin-left: 97.87234%; } .sixteen.colgrid .row .push_fifteen:first-child { margin-left: 95.74468%; } .sixteen.colgrid .row .pull_fifteen.two.columns { margin-left: -106.38298%; } .sixteen.colgrid .row .pull_fifteen.three.columns { margin-left: -112.76596%; } .sixteen.colgrid .row .pull_fifteen.four.columns { margin-left: -119.14894%; } .sixteen.colgrid .row .pull_fifteen.five.columns { margin-left: -125.53191%; } .sixteen.colgrid .row .pull_fifteen.six.columns { margin-left: -131.91489%; } .sixteen.colgrid .row .pull_fifteen.s
{ "end_byte": 89987, "start_byte": 83822, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_89988_90870
ven.columns { margin-left: -138.29787%; } .sixteen.colgrid .row .pull_fifteen.eight.columns { margin-left: -144.68085%; } .sixteen.colgrid .row .pull_fifteen.nine.columns { margin-left: -151.06383%; } .sixteen.colgrid .row .pull_fifteen.ten.columns { margin-left: -157.44681%; } .sixteen.colgrid .row .pull_fifteen.eleven.columns { margin-left: -163.82979%; } .sixteen.colgrid .row .pull_fifteen.twelve.columns { margin-left: -170.21277%; } .sixteen.colgrid .row .pull_fifteen.thirteen.columns { margin-left: -176.59574%; } .sixteen.colgrid .row .pull_fifteen.fourteen.columns { margin-left: -182.97872%; } .sixteen.colgrid .row .pull_fifteen.fifteen.columns { margin-left: -189.3617%; } .row .pull_one.one.column:first-child, .row .pull_one.two.columns:first-child, .row .pull_one.three.columns:first-child, .row .pull_one.four.columns:first-child, .row .pull_one.five.columns:fir
{ "end_byte": 90870, "start_byte": 89988, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_90872_98108
-child, .row .pull_one.six.columns:first-child, .row .pull_one.seven.columns:first-child, .row .pull_one.eight.columns:first-child, .row .pull_one.nine.columns:first-child, .row .pull_one.ten.columns:first-child, .row .pull_two.one.column:first-child, .row .pull_two.two.columns:first-child, .row .pull_two.three.columns:first-child, .row .pull_two.four.columns:first-child, .row .pull_two.five.columns:first-child, .row .pull_two.six.columns:first-child, .row .pull_two.seven.columns:first-child, .row .pull_two.eight.columns:first-child, .row .pull_two.nine.columns:first-child, .row .pull_two.eleven.columns:first-child, .row .pull_three.one.column:first-child, .row .pull_three.two.columns:first-child, .row .pull_three.three.columns:first-child, .row .pull_three.four.columns:first-child, .row .pull_three.five.columns:first-child, .row .pull_three.six.columns:first-child, .row .pull_three.seven.columns:first-child, .row .pull_three.eight.columns:first-child, .row .pull_three.ten.columns:first-child, .row .pull_three.eleven.columns:first-child, .row .pull_four.one.column:first-child, .row .pull_four.two.columns:first-child, .row .pull_four.three.columns:first-child, .row .pull_four.four.columns:first-child, .row .pull_four.five.columns:first-child, .row .pull_four.six.columns:first-child, .row .pull_four.seven.columns:first-child, .row .pull_four.nine.columns:first-child, .row .pull_four.ten.columns:first-child, .row .pull_four.eleven.columns:first-child, .row .pull_five.one.column:first-child, .row .pull_five.two.columns:first-child, .row .pull_five.three.columns:first-child, .row .pull_five.four.columns:first-child, .row .pull_five.five.columns:first-child, .row .pull_five.six.columns:first-child, .row .pull_five.eight.columns:first-child, .row .pull_five.nine.columns:first-child, .row .pull_five.ten.columns:first-child, .row .pull_five.eleven.columns:first-child, .row .pull_six.one.column:first-child, .row .pull_six.two.columns:first-child, .row .pull_six.three.columns:first-child, .row .pull_six.four.columns:first-child, .row .pull_six.five.columns:first-child, .row .pull_six.seven.columns:first-child, .row .pull_six.eight.columns:first-child, .row .pull_six.nine.columns:first-child, .row .pull_six.ten.columns:first-child, .row .pull_six.eleven.columns:first-child, .row .pull_seven.one.column:first-child, .row .pull_seven.two.columns:first-child, .row .pull_seven.three.columns:first-child, .row .pull_seven.four.columns:first-child, .row .pull_seven.six.columns:first-child, .row .pull_seven.seven.columns:first-child, .row .pull_seven.eight.columns:first-child, .row .pull_seven.nine.columns:first-child, .row .pull_seven.ten.columns:first-child, .row .pull_seven.eleven.columns:first-child, .row .pull_eight.one.column:first-child, .row .pull_eight.two.columns:first-child, .row .pull_eight.three.columns:first-child, .row .pull_eight.five.columns:first-child, .row .pull_eight.six.columns:first-child, .row .pull_eight.seven.columns:first-child, .row .pull_eight.eight.columns:first-child, .row .pull_eight.nine.columns:first-child, .row .pull_eight.ten.columns:first-child, .row .pull_eight.eleven.columns:first-child, .row .pull_nine.one.column:first-child, .row .pull_nine.two.columns:first-child, .row .pull_nine.four.columns:first-child, .row .pull_nine.five.columns:first-child, .row .pull_nine.six.columns:first-child, .row .pull_nine.seven.columns:first-child, .row .pull_nine.eight.columns:first-child, .row .pull_nine.nine.columns:first-child, .row .pull_nine.ten.columns:first-child, .row .pull_nine.eleven.columns:first-child, .row .pull_ten.one.column:first-child, .row .pull_ten.three.columns:first-child, .row .pull_ten.four.columns:first-child, .row .pull_ten.five.columns:first-child, .row .pull_ten.six.columns:first-child, .row .pull_ten.seven.columns:first-child, .row .pull_ten.eight.columns:first-child, .row .pull_ten.nine.columns:first-child, .row .pull_ten.ten.columns:first-child, .row .pull_ten.eleven.columns:first-child, .row .pull_eleven.two.columns:first-child, .row .pull_eleven.three.columns:first-child, .row .pull_eleven.four.columns:first-child, .row .pull_eleven.five.columns:first-child, .row .pull_eleven.six.columns:first-child, .row .pull_eleven.seven.columns:first-child, .row .pull_eleven.eight.columns:first-child, .row .pull_eleven.nine.columns:first-child, .row .pull_eleven.ten.columns:first-child, .row .pull_eleven.eleven.columns:first-child, .sixteen.colgrid .row .pull_one.one.column:first-child, .sixteen.colgrid .row .pull_one.two.columns:first-child, .sixteen.colgrid .row .pull_one.three.columns:first-child, .sixteen.colgrid .row .pull_one.four.columns:first-child, .sixteen.colgrid .row .pull_one.five.columns:first-child, .sixteen.colgrid .row .pull_one.six.columns:first-child, .sixteen.colgrid .row .pull_one.seven.columns:first-child, .sixteen.colgrid .row .pull_one.eight.columns:first-child, .sixteen.colgrid .row .pull_one.nine.columns:first-child, .sixteen.colgrid .row .pull_one.ten.columns:first-child, .sixteen.colgrid .row .pull_one.eleven.columns:first-child, .sixteen.colgrid .row .pull_one.twelve.columns:first-child, .sixteen.colgrid .row .pull_one.thirteen.columns:first-child, .sixteen.colgrid .row .pull_one.fourteen.columns:first-child, .sixteen.colgrid .row .pull_two.one.column:first-child, .sixteen.colgrid .row .pull_two.two.columns:first-child, .sixteen.colgrid .row .pull_two.three.columns:first-child, .sixteen.colgrid .row .pull_two.four.columns:first-child, .sixteen.colgrid .row .pull_two.five.columns:first-child, .sixteen.colgrid .row .pull_two.six.columns:first-child, .sixteen.colgrid .row .pull_two.seven.columns:first-child, .sixteen.colgrid .row .pull_two.eight.columns:first-child, .sixteen.colgrid .row .pull_two.nine.columns:first-child, .sixteen.colgrid .row .pull_two.ten.columns:first-child, .sixteen.colgrid .row .pull_two.eleven.columns:first-child, .sixteen.colgrid .row .pull_two.twelve.columns:first-child, .sixteen.colgrid .row .pull_two.thirteen.columns:first-child, .sixteen.colgrid .row .pull_two.fifteen.columns:first-child, .sixteen.colgrid .row .pull_three.one.column:first-child, .sixteen.colgrid .row .pull_three.two.columns:first-child, .sixteen.colgrid .row .pull_three.three.columns:first-child, .sixteen.colgrid .row .pull_three.four.columns:first-child, .sixteen.colgrid .row .pull_three.five.columns:first-child, .sixteen.colgrid .row .pull_three.six.columns:first-child, .sixteen.colgrid .row .pull_three.seven.columns:first-child, .sixteen.colgrid .row .pull_three.eight.columns:first-child, .sixteen.colgrid .row .pull_three.nine.columns:first-child, .sixteen.colgrid .row .pull_three.ten.columns:first-child, .sixteen.colgrid .row .pull_three.eleven.columns:first-child, .sixteen.colgrid .row .pull_three.twelve.columns:first-child, .sixteen.colgrid .row .pull_three.fourteen.columns:first-child, .sixteen.colgrid .row .pull_three.fifteen.columns:first-child, .sixteen.colgrid .row .pull_four.one.column:first-child, .sixteen.colgrid .row .pull_four.two.columns:first-child, .sixteen.colgrid .row .pull_four.three.columns:first-child, .sixteen.colgrid .row .pull_four.four.columns:first-child, .sixteen.colgrid .row .pull_four.five.columns:first-child, .sixteen.colgrid
{ "end_byte": 98108, "start_byte": 90872, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_98109_105155
.row .pull_four.six.columns:first-child, .sixteen.colgrid .row .pull_four.seven.columns:first-child, .sixteen.colgrid .row .pull_four.eight.columns:first-child, .sixteen.colgrid .row .pull_four.nine.columns:first-child, .sixteen.colgrid .row .pull_four.ten.columns:first-child, .sixteen.colgrid .row .pull_four.eleven.columns:first-child, .sixteen.colgrid .row .pull_four.thirteen.columns:first-child, .sixteen.colgrid .row .pull_four.fourteen.columns:first-child, .sixteen.colgrid .row .pull_four.fifteen.columns:first-child, .sixteen.colgrid .row .pull_five.one.column:first-child, .sixteen.colgrid .row .pull_five.two.columns:first-child, .sixteen.colgrid .row .pull_five.three.columns:first-child, .sixteen.colgrid .row .pull_five.four.columns:first-child, .sixteen.colgrid .row .pull_five.five.columns:first-child, .sixteen.colgrid .row .pull_five.six.columns:first-child, .sixteen.colgrid .row .pull_five.seven.columns:first-child, .sixteen.colgrid .row .pull_five.eight.columns:first-child, .sixteen.colgrid .row .pull_five.nine.columns:first-child, .sixteen.colgrid .row .pull_five.ten.columns:first-child, .sixteen.colgrid .row .pull_five.twelve.columns:first-child, .sixteen.colgrid .row .pull_five.thirteen.columns:first-child, .sixteen.colgrid .row .pull_five.fourteen.columns:first-child, .sixteen.colgrid .row .pull_five.fifteen.columns:first-child, .sixteen.colgrid .row .pull_six.one.column:first-child, .sixteen.colgrid .row .pull_six.two.columns:first-child, .sixteen.colgrid .row .pull_six.three.columns:first-child, .sixteen.colgrid .row .pull_six.four.columns:first-child, .sixteen.colgrid .row .pull_six.five.columns:first-child, .sixteen.colgrid .row .pull_six.six.columns:first-child, .sixteen.colgrid .row .pull_six.seven.columns:first-child, .sixteen.colgrid .row .pull_six.eight.columns:first-child, .sixteen.colgrid .row .pull_six.nine.columns:first-child, .sixteen.colgrid .row .pull_six.eleven.columns:first-child, .sixteen.colgrid .row .pull_six.twelve.columns:first-child, .sixteen.colgrid .row .pull_six.thirteen.columns:first-child, .sixteen.colgrid .row .pull_six.fourteen.columns:first-child, .sixteen.colgrid .row .pull_six.fifteen.columns:first-child, .sixteen.colgrid .row .pull_seven.one.column:first-child, .sixteen.colgrid .row .pull_seven.two.columns:first-child, .sixteen.colgrid .row .pull_seven.three.columns:first-child, .sixteen.colgrid .row .pull_seven.four.columns:first-child, .sixteen.colgrid .row .pull_seven.five.columns:first-child, .sixteen.colgrid .row .pull_seven.six.columns:first-child, .sixteen.colgrid .row .pull_seven.seven.columns:first-child, .sixteen.colgrid .row .pull_seven.eight.columns:first-child, .sixteen.colgrid .row .pull_seven.ten.columns:first-child, .sixteen.colgrid .row .pull_seven.eleven.columns:first-child, .sixteen.colgrid .row .pull_seven.twelve.columns:first-child, .sixteen.colgrid .row .pull_seven.thirteen.columns:first-child, .sixteen.colgrid .row .pull_seven.fourteen.columns:first-child, .sixteen.colgrid .row .pull_seven.fifteen.columns:first-child, .sixteen.colgrid .row .pull_eight.one.column:first-child, .sixteen.colgrid .row .pull_eight.two.columns:first-child, .sixteen.colgrid .row .pull_eight.three.columns:first-child, .sixteen.colgrid .row .pull_eight.four.columns:first-child, .sixteen.colgrid .row .pull_eight.five.columns:first-child, .sixteen.colgrid .row .pull_eight.six.columns:first-child, .sixteen.colgrid .row .pull_eight.seven.columns:first-child, .sixteen.colgrid .row .pull_eight.nine.columns:first-child, .sixteen.colgrid .row .pull_eight.ten.columns:first-child, .sixteen.colgrid .row .pull_eight.eleven.columns:first-child, .sixteen.colgrid .row .pull_eight.twelve.columns:first-child, .sixteen.colgrid .row .pull_eight.thirteen.columns:first-child, .sixteen.colgrid .row .pull_eight.fourteen.columns:first-child, .sixteen.colgrid .row .pull_eight.fifteen.columns:first-child, .sixteen.colgrid .row .pull_nine.one.column:first-child, .sixteen.colgrid .row .pull_nine.two.columns:first-child, .sixteen.colgrid .row .pull_nine.three.columns:first-child, .sixteen.colgrid .row .pull_nine.four.columns:first-child, .sixteen.colgrid .row .pull_nine.five.columns:first-child, .sixteen.colgrid .row .pull_nine.six.columns:first-child, .sixteen.colgrid .row .pull_nine.eight.columns:first-child, .sixteen.colgrid .row .pull_nine.nine.columns:first-child, .sixteen.colgrid .row .pull_nine.ten.columns:first-child, .sixteen.colgrid .row .pull_nine.eleven.columns:first-child, .sixteen.colgrid .row .pull_nine.twelve.columns:first-child, .sixteen.colgrid .row .pull_nine.thirteen.columns:first-child, .sixteen.colgrid .row .pull_nine.fourteen.columns:first-child, .sixteen.colgrid .row .pull_nine.fifteen.columns:first-child, .sixteen.colgrid .row .pull_ten.one.column:first-child, .sixteen.colgrid .row .pull_ten.two.columns:first-child, .sixteen.colgrid .row .pull_ten.three.columns:first-child, .sixteen.colgrid .row .pull_ten.four.columns:first-child, .sixteen.colgrid .row .pull_ten.five.columns:first-child, .sixteen.colgrid .row .pull_ten.seven.columns:first-child, .sixteen.colgrid .row .pull_ten.eight.columns:first-child, .sixteen.colgrid .row .pull_ten.nine.columns:first-child, .sixteen.colgrid .row .pull_ten.ten.columns:first-child, .sixteen.colgrid .row .pull_ten.eleven.columns:first-child, .sixteen.colgrid .row .pull_ten.twelve.columns:first-child, .sixteen.colgrid .row .pull_ten.thirteen.columns:first-child, .sixteen.colgrid .row .pull_ten.fourteen.columns:first-child, .sixteen.colgrid .row .pull_ten.fifteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.one.column:first-child, .sixteen.colgrid .row .pull_eleven.two.columns:first-child, .sixteen.colgrid .row .pull_eleven.three.columns:first-child, .sixteen.colgrid .row .pull_eleven.four.columns:first-child, .sixteen.colgrid .row .pull_eleven.six.columns:first-child, .sixteen.colgrid .row .pull_eleven.seven.columns:first-child, .sixteen.colgrid .row .pull_eleven.eight.columns:first-child, .sixteen.colgrid .row .pull_eleven.nine.columns:first-child, .sixteen.colgrid .row .pull_eleven.ten.columns:first-child, .sixteen.colgrid .row .pull_eleven.eleven.columns:first-child, .sixteen.colgrid .row .pull_eleven.twelve.columns:first-child, .sixteen.colgrid .row .pull_eleven.thirteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.fourteen.columns:first-child, .sixteen.colgrid .row .pull_eleven.fifteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.one.column:first-child, .sixteen.colgrid .row .pull_twelve.two.columns:first-child, .sixteen.colgrid .row .pull_twelve.three.columns:first-child, .sixteen.colgrid .row .pull_twelve.five.columns:first-child, .sixteen.colgrid .row .pull_twelve.six.columns:first-child, .sixteen.colgrid .row .pull_twelve.seven.columns:first-child, .sixteen.colgrid .row .pull_twelve.eight.columns:first-child, .sixteen.colgrid .row .pull_twelve.nine.columns:first-child, .sixteen.colgrid .row .pull_twelve.ten.columns:first-child, .sixteen.colgrid .row .pull_twelve.eleven.columns:first-child, .sixteen.c
{ "end_byte": 105155, "start_byte": 98109, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_105156_111680
lgrid .row .pull_twelve.twelve.columns:first-child, .sixteen.colgrid .row .pull_twelve.thirteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.fourteen.columns:first-child, .sixteen.colgrid .row .pull_twelve.fifteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.one.column:first-child, .sixteen.colgrid .row .pull_thirteen.two.columns:first-child, .sixteen.colgrid .row .pull_thirteen.four.columns:first-child, .sixteen.colgrid .row .pull_thirteen.five.columns:first-child, .sixteen.colgrid .row .pull_thirteen.six.columns:first-child, .sixteen.colgrid .row .pull_thirteen.seven.columns:first-child, .sixteen.colgrid .row .pull_thirteen.eight.columns:first-child, .sixteen.colgrid .row .pull_thirteen.nine.columns:first-child, .sixteen.colgrid .row .pull_thirteen.ten.columns:first-child, .sixteen.colgrid .row .pull_thirteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_thirteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_thirteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_thirteen.fifteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.one.column:first-child, .sixteen.colgrid .row .pull_fourteen.three.columns:first-child, .sixteen.colgrid .row .pull_fourteen.four.columns:first-child, .sixteen.colgrid .row .pull_fourteen.five.columns:first-child, .sixteen.colgrid .row .pull_fourteen.six.columns:first-child, .sixteen.colgrid .row .pull_fourteen.seven.columns:first-child, .sixteen.colgrid .row .pull_fourteen.eight.columns:first-child, .sixteen.colgrid .row .pull_fourteen.nine.columns:first-child, .sixteen.colgrid .row .pull_fourteen.ten.columns:first-child, .sixteen.colgrid .row .pull_fourteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_fourteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_fourteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_fourteen.fifteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.two.columns:first-child, .sixteen.colgrid .row .pull_fifteen.three.columns:first-child, .sixteen.colgrid .row .pull_fifteen.four.columns:first-child, .sixteen.colgrid .row .pull_fifteen.five.columns:first-child, .sixteen.colgrid .row .pull_fifteen.six.columns:first-child, .sixteen.colgrid .row .pull_fifteen.seven.columns:first-child, .sixteen.colgrid .row .pull_fifteen.eight.columns:first-child, .sixteen.colgrid .row .pull_fifteen.nine.columns:first-child, .sixteen.colgrid .row .pull_fifteen.ten.columns:first-child, .sixteen.colgrid .row .pull_fifteen.eleven.columns:first-child, .sixteen.colgrid .row .pull_fifteen.twelve.columns:first-child, .sixteen.colgrid .row .pull_fifteen.thirteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.fourteen.columns:first-child, .sixteen.colgrid .row .pull_fifteen.fifteen.columns:first-child { margin-left: 0; } .row .pull_one.eleven.columns, .row .pull_two.ten.columns, .row .pull_three.nine.columns, .row .pull_four.eight.columns, .row .pull_five.seven.columns, .row .pull_six.six.columns, .row .pull_seven.five.columns, .row .pull_eight.four.columns, .row .pull_nine.three.columns, .row .pull_ten.two.columns, .row .pull_eleven.one.columns, .sixteen.colgrid .row .pull_one.fifteen.columns, .sixteen.colgrid .row .pull_two.fourteen.columns, .sixteen.colgrid .row .pull_three.thirteen.columns, .sixteen.colgrid .row .pull_four.twelve.columns, .sixteen.colgrid .row .pull_five.eleven.columns, .sixteen.colgrid .row .pull_six.ten.columns, .sixteen.colgrid .row .pull_seven.nine.columns, .sixteen.colgrid .row .pull_eight.eight.columns, .sixteen.colgrid .row .pull_nine.seven.columns, .sixteen.colgrid .row .pull_ten.six.columns, .sixteen.colgrid .row .pull_eleven.five.columns, .sixteen.colgrid .row .pull_twelve.four.columns, .sixteen.colgrid .row .pull_thirteen.three.columns, .sixteen.colgrid .row .pull_fourteen.two.columns, .sixteen.colgrid .row .pull_fifteen.one.columns { margin-left: -100%; } /* Hybrid Centered Classes */ .sixteen.colgrid .row .one.centered { margin-left: 47.87234%; } .sixteen.colgrid .row .two.centered { margin-left: 44.68085%; } .sixteen.colgrid .row .three.centered { margin-left: 41.48936%; } .sixteen.colgrid .row .four.centered { margin-left: 38.29787%; } .sixteen.colgrid .row .five.centered { margin-left: 35.10638%; } .sixteen.colgrid .row .six.centered { margin-left: 31.91489%; } .sixteen.colgrid .row .seven.centered { margin-left: 28.7234%; } .sixteen.colgrid .row .eight.centered { margin-left: 25.53191%; } .sixteen.colgrid .row .nine.centered { margin-left: 22.34043%; } .sixteen.colgrid .row .ten.centered { margin-left: 19.14894%; } .sixteen.colgrid .row .eleven.centered { margin-left: 15.95745%; } .sixteen.colgrid .row .twelve.centered { margin-left: 12.76596%; } .sixteen.colgrid .row .thirteen.centered { margin-left: 9.57447%; } .sixteen.colgrid .row .fourteen.centered { margin-left: 6.38298%; } .sixteen.colgrid .row .fifteen.centered { margin-left: 3.19149%; } img, object, embed { max-width: 100%; height: auto; } img { -ms-interpolation-mode: bicubic; } #map_canvas img, .map_canvas img { max-width: none !important; } /* Tile Grid */ .tiles { display: block; overflow: hidden; } .tiles > li, .tiles > .tile { display: block; height: auto; float: left; padding-bottom: 0; } .tiles.two_up { margin-left: -4%; } .tiles.two_up > li, .tiles.two_up > .tile { margin-left: 4%; width: 46%; } .tiles.three_up, .tiles.four_up { margin-left: -2%; } .tiles.three_up > li, .tiles.three_up > .tile { margin-left: 2%; width: 31.3%; } .tiles.four_up > li, .tiles.four_up > .tile { margin-left: 2%; width: 23%; } .tiles.five_up { margin-left: -1.5%; } .tiles.five_up > li, .tiles.five_up > .tile { margin-left: 1.5%; width: 18.5%; } /* Nicolas Gallagher's micro clearfix */ .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both; } .row { *zoom: 1; } .row:before, .row:after { content: ""; display: table; } .row:after { clear: both; } .valign:before { content: ' '; display: inline-block; height: 400px; vertical-align: middle; margin-right: -0.25em; } .valign > div, .valign > article, .valign > section, .valign > figure { display: inline-block; vertical-align: middle; } /* Mobile */ @media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; } .container { min-width: 0; margin-left: 0; margin-ri
{ "end_byte": 111680, "start_byte": 105156, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_111681_117506
ht: 0; } .row { width: 100%; min-width: 0; margin-left: 0; margin-right: 0; } .row .row .column, .row .row .columns { padding: 0; } .row .centered { margin-left: 0 !important; } .column, .columns { width: auto !important; float: none; margin-left: 0; margin-right: 0; } .column:last-child, .columns:last-child { margin-right: 0; float: none; } [class*="column"] + [class*="column"]:last-child { float: none; } [class*="column"]:before { display: table; } [class*="column"]:after { display: table; clear: both; } [class^="push_"], [class*="push_"], [class^="pull_"], [class*="pull_"] { margin-left: 0 !important; } } /* Navigation (with dropdowns) */ .navbar { width: 100%; min-height: 60px; display: block; margin-bottom: 20px; background: #4a4d50; position: relative; } @media only screen and (max-width: 767px) { .navbar { border: none; } .navbar .column, .navbar .columns { min-height: 0; } } .navbar.fixed { position: fixed; z-index: 99999; } .navbar.pinned { position: absolute; } .navbar a.toggle { display: none; } @media only screen and (max-width: 767px) { .navbar a.toggle { top: 18%; right: 4%; width: 46px; position: absolute; text-align: center; display: inline-block; color: white; background: #4a4d50; height: 40px; line-height: 38px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-size: 30px; font-size: 1.875rem; } .navbar a.toggle:hover { background: #565a5d; } .navbar a.toggle:active, .navbar a.toggle.active { background: #3e4043; } } .navbar .logo { display: inline-block; margin: 0 2.12766% 0 0; padding: 0; height: 60px; line-height: 58px; } .navbar .logo a { display: block; padding: 0; overflow: hidden; height: 60px; line-height: 58px; } .navbar .logo a img { max-height: 95%; } @media only screen and (max-width: 767px) { .navbar .logo { float: left; display: inline; } .navbar .logo a { padding: 0; } .navbar .logo a img { width: auto; height: auto; max-width: 100%; } } .navbar ul { display: table; vertical-align: middle; margin: 0; float: none; } @media only screen and (max-width: 767px) { .navbar ul { position: absolute; display: block; width: 100% !important; height: 0; max-height: 0; top: 60px; left: 0; overflow: hidden; text-align: center; background: #3e4043; } .navbar ul.active { height: auto; max-height: 600px; z-index: 999998; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-box-shadow: 0 2px 2px #252728; -moz-box-shadow: 0 2px 2px #252728; box-shadow: 0 2px 2px #252728; } } .navbar ul li { display: table-cell; text-align: center; padding-bottom: 0; margin: 0; height: 60px; line-height: 58px; } @media only screen and (max-width: 767px) { .navbar ul li { display: block; position: relative; min-height: 50px; max-height: 320px; height: auto; width: 100%; border-right: 0 !important; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; } } .navbar ul li > a { display: block; padding: 0 16px; white-space: nowrap; color: white; text-shadow: 0 1px 2px #191a1b, 0 1px 0 #191a1b; height: 60px; line-height: 58px; font-size: 16px; font-size: 1rem; } .navbar ul li > a i.icon-popup { position: absolute; } .navbar ul li .btn { border-color: #000101 !important; } .navbar ul li.field { margin-bottom: 0 !important; margin-right: 0; } @media only screen and (max-width: 767px) { .navbar ul li.field { padding: 0 20px; } } .navbar ul li.field input.search { background: #191a1b; border: none; color: #f2f2f2; } .navbar ul li .dropdown { width: auto; min-width: 0; max-width: 320px; height: 0; position: absolute; background: #fafafa; overflow: hidden; z-index: 999; } @media only screen and (max-width: 767px) { .navbar ul li .dropdown { width: 100%; max-width: 100%; position: relative; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .navbar ul li.active .dropdown { border-bottom: 1px solid #313436; } .navbar ul li.active .dropdown ul { position: relative; top: 0; background: #36393b; min-height: 50px; max-height: 250px; height: auto; overflow: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .navbar ul li.active .dropdown ul li { min-height: 50px; border-bottom: #3e4043; } .navbar ul li.active .dropdown ul li a { color: white; border-bottom: 1px solid #313436; } .navbar ul li.active .dropdown ul li a:hover { color: #d04526; } } @media only screen and (min-width: 768px) and (max-width: 939px) { .navbar > ul > li > .btn a { padding: 0 10px 0 10px !important; } .navbar ul > li .dropdown ul li.active .dropdown { left: -320px; } } .navcontain { height: 80px; } @media only screen and (max-width: 768px) { .navcontain { height: auto; } } .pretty.navbar { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #313436)); background-image: -webkit-linear-gradient(#7b8085, #313436); background-image: -moz-linear-gradient(#7b8085, #313436); background-image: -o-linear-gradient(#7b8085, #313436); background-image: linear-gradient(#7b8085, #313436); -webkit-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; -moz-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; /* Remove this line if you don't want a dropshadow on your navigation*/ } @media only screen and (max-width: 767px) { .pretty.navbar a.toggle { border: 1px solid #3e4043; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(
{ "end_byte": 117506, "start_byte": 111681, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_117507_122873
00%, #4a4d50)); background-image: -webkit-linear-gradient(#7b8085, #4a4d50); background-image: -moz-linear-gradient(#7b8085, #4a4d50); background-image: -o-linear-gradient(#7b8085, #4a4d50); background-image: linear-gradient(#7b8085, #4a4d50); -webkit-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; -moz-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; } .pretty.navbar a.toggle i { text-shadow: 0 1px 1px #191a1b; } .pretty.navbar a.toggle:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #888d91), color-stop(100%, #565a5d)); background-image: -webkit-linear-gradient(#888d91, #565a5d); background-image: -moz-linear-gradient(#888d91, #565a5d); background-image: -o-linear-gradient(#888d91, #565a5d); background-image: linear-gradient(#888d91, #565a5d); } .pretty.navbar a.toggle:active, .pretty.navbar a.toggle.active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4043), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#3e4043, #4a4d50); background-image: -moz-linear-gradient(#3e4043, #4a4d50); background-image: -o-linear-gradient(#3e4043, #4a4d50); background-image: linear-gradient(#3e4043, #4a4d50); -webkit-box-shadow: 0 1px 1px #63676a; -moz-box-shadow: 0 1px 1px #63676a; box-shadow: 0 1px 1px #63676a; } } .pretty.navbar.row { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } @media only screen and (max-width: 767px) { .pretty.navbar.row { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } } .pretty.navbar ul li.field input.search { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191a1b), color-stop(100%, #4f5255)); background-image: -webkit-linear-gradient(#191a1b, #4f5255); background-image: -moz-linear-gradient(#191a1b, #4f5255); background-image: -o-linear-gradient(#191a1b, #4f5255); background-image: linear-gradient(#191a1b, #4f5255); border: none; -webkit-box-shadow: 0 1px 2px #888d91 !important; -moz-box-shadow: 0 1px 2px #888d91 !important; box-shadow: 0 1px 2px #888d91 !important; /* Remove this line if you don't want a dropshadow on your navigation*/ } .pretty.navbar > ul > li:first-child, .pretty.navbar .pretty.navbar > ul > li:first-child a:hover { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .navbar li .dropdown { width: auto; min-width: 0; max-width: 320px; height: 0; position: absolute; background: #fafafa; overflow: hidden; z-index: 999; } @media only screen and (max-width: 767px) { .navbar li .dropdown .dropdown { width: 100%; max-width: 100%; position: relative; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .navbar li .dropdown.active .dropdown { border-bottom: 1px solid #313436; } .navbar li .dropdown.active .dropdown ul { position: relative; top: 0; background: #36393b; min-height: 50px; max-height: 250px; height: auto; overflow: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .navbar li .dropdown.active .dropdown ul li { min-height: 50px; border-bottom: #3e4043; } .navbar li .dropdown.active .dropdown ul li a { color: white; border-bottom: 1px solid #313436; } .navbar li .dropdown.active .dropdown ul li a:hover { color: #d04526; } } .navbar li .dropdown ul { margin: 0; display: block; } .navbar li .dropdown ul > li { position: relative; display: block; width: 100%; float: left; text-align: left; height: auto; -webkit-border-radius: none; -moz-border-radius: none; -ms-border-radius: none; -o-border-radius: none; border-radius: none; } @media only screen and (min-width: 768px) and (max-width: 939px) { .navbar li .dropdown ul > li { max-width: 320px; word-wrap: break-word; } } .navbar li .dropdown ul > li a { display: block; padding: 0 20px; color: #d04526; border-bottom: 1px solid #cccccc; text-shadow: none; height: 51px; line-height: 49px; } @media only screen and (max-width: 767px) { .navbar li .dropdown ul > li a { padding: 0 20px; } } .navbar li .dropdown ul > li .dropdown { display: none; background: white; } .navbar li .dropdown ul li:first-child a { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } .gumby-no-touch .navbar ul li:hover > a, .gumby-touch .navbar ul li.active > a { position: relative; background: #868d92; z-index: 1000; } .gumby-no-touch .navbar ul li:hover .dropdown, .gumby-touch .navbar ul li.active .dropdown { min-height: 50px; max-height: 561px; overflow: visible; height: auto; width: 100%; padding: 0; border-top: 1px solid #3e4043; -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); } .gumby-no-touch .navbar ul li:hover .dropdown ul { position: relative; top: 0; min-height: 50px; max-height: 250px; height: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !imp
{ "end_byte": 122873, "start_byte": 117507, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_122875_128759
tant; box-shadow: none !important; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; } @media only screen and (max-width: 767px) { .gumby-no-touch .navbar ul li:hover .dropdown ul { overflow: auto; background: #36393b; } .gumby-no-touch .navbar ul li:hover .dropdown ul li { border-bottom: #3e4043; } .gumby-no-touch .navbar ul li:hover .dropdown ul li a { color: white; border-bottom: 1px solid #313436; } .gumby-no-touch .navbar ul li:hover .dropdown ul li a:hover { color: #d04526; } } .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown, .gumby-touch .navbar li .dropdown ul > li.active .dropdown { border-top: none; display: block; position: absolute; z-index: 9999; left: 100%; top: 0; margin-top: 0; } @media only screen and (max-width: 767px) { .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown, .gumby-touch .navbar li .dropdown ul > li.active .dropdown { position: relative; left: 0; } .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown ul, .gumby-touch .navbar li .dropdown ul > li.active .dropdown ul { background: #252728 !important; } } .gumby-no-touch .navbar li .dropdown ul li a:hover { background: #f2f2f2; } .gumby-touch .navbar a:hover { color: white !important; } .subnav { display: block; width: auto; overflow: hidden; margin: 0 0 18px 0; padding-top: 4px; } .subnav li, .subnav dt, .subnav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 4px; } .subnav li:first-child, .subnav dt:first-child, .subnav dd:first-child { margin-left: 0; } .subnav dt { color: #f2f2f2; font-weight: normal; } .subnav li a, .subnav dd a { color: white; font-size: 15px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .subnav li.active a, .subnav dd.active a { background: #4a4d50; padding: 5px 9px; text-shadow: 0 1px 1px #4a4d50; } /* Buttons */ .btn, .skiplink { display: inline-block; width: auto; background: #f2f2f2; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 600; padding: 0 !important; text-align: center; } .btn > a, .btn input, .btn button, .skiplink > a, .skiplink input, .skiplink button { display: block; padding: 0 18px; color: white; height: 100%; } .btn input, .btn button, .skiplink input, .skiplink button { background: none; border: none; width: 100%; font-size: 100%; cursor: pointer; font-weight: 400; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .btn.xlarge, .skiplink.xlarge { font-size: 30px; font-size: 1.875rem; height: 66px; line-height: 64px; } .btn.xlarge a, .skiplink.xlarge a { position: relative; padding: 0 30px; } .btn.xlarge.icon-left a, .skiplink.xlarge.icon-left a { padding-left: 66px; } .btn.xlarge.icon-left a:before, .skiplink.xlarge.icon-left a:before { left: 20px; } .btn.xlarge.icon-right a, .skiplink.xlarge.icon-right a { padding-right: 66px; } .btn.xlarge.icon-right a:after, .skiplink.xlarge.icon-right a:after { right: 20px; } .btn.large, .skiplink.large { font-size: 26px; font-size: 1.625rem; height: 58px; line-height: 56px; } .btn.large a, .skiplink.large a { position: relative; padding: 0 26px; } .btn.large.icon-left a, .skiplink.large.icon-left a { padding-left: 58px; } .btn.large.icon-left a:before, .skiplink.large.icon-left a:before { left: 17.33333px; } .btn.large.icon-right a, .skiplink.large.icon-right a { padding-right: 58px; } .btn.large.icon-right a:after, .skiplink.large.icon-right a:after { right: 17.33333px; } .btn.medium, .skiplink.medium { font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; } .btn.medium a, .skiplink.medium a { position: relative; padding: 0 16px; } .btn.medium.icon-left a, .skiplink.medium.icon-left a { padding-left: 36px; } .btn.medium.icon-left a:before, .skiplink.medium.icon-left a:before { left: 10.66667px; } .btn.medium.icon-right a, .skiplink.medium.icon-right a { padding-right: 36px; } .btn.medium.icon-right a:after, .skiplink.medium.icon-right a:after { right: 10.66667px; } .btn.medium a, .skiplink.medium a { padding: 0 18px; } .btn.small, .skiplink.small { font-size: 10px; font-size: 0.625rem; height: 23px; line-height: 21px; } .btn.small a, .skiplink.small a { position: relative; padding: 0 10px; } .btn.small.icon-left a, .skiplink.small.icon-left a { padding-left: 23px; } .btn.small.icon-left a:before, .skiplink.small.icon-left a:before { left: 6.66667px; } .btn.small.icon-right a, .skiplink.small.icon-right a { padding-right: 23px; } .btn.small.icon-right a:after, .skiplink.small.icon-right a:after { right: 6.66667px; } .btn.small a, .skiplink.small a { padding: 0 10px; } .btn.oval, .skiplink.oval { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; } .btn.pill-left, .skiplink.pill-left { -webkit-border-radius: 500px 0 0 500px; -moz-border-radius: 500px 0 0 500px; -ms-border-radius: 500px 0 0 500px; -o-border-radius: 500px 0 0 500px; border-radius: 500px 0 0 500px; } .btn.pill-right, .skiplink.pill-right { -webkit-border-radius: 0 500px 500px 0; -moz-border-radius: 0 500px 500px 0; -ms-border-radius: 0 500px 500px 0; -o-border-radius: 0 500px 500px 0; border-radius: 0 500px 500px 0; } .btn.primary, .skiplink.primary { background: #3085d6; border: 1px solid #3085d6; } .btn.primary:hover, .skiplink.primary:hover { background: #5b9ede; } .btn.primary:active, .skiplink.primary:active { background: #236bb0; } .btn.secondary, .skiplink.secondary { background: #42a35a; border: 1px solid #42a35a; } .btn.secondary:hover, .skiplink.secondary:hover { background: #5bbd73; } .btn.secondary:active, .skiplink.secondary:active { background: #337f46; } .btn.default, .skiplink.default { background: #f2f2f2; border: 1px solid #f2f2f2; color: #555555; border: 1px solid #f2
{ "end_byte": 128759, "start_byte": 122875, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_128760_134267
2f2; } .btn.default:hover, .skiplink.default:hover { background: white; } .btn.default:active, .skiplink.default:active { background: #d8d8d8; } .btn.default:hover, .skiplink.default:hover { border: 1px solid #e5e5e5; } .btn.default a, .btn.default input, .btn.default button, .skiplink.default a, .skiplink.default input, .skiplink.default button { color: #555555; } .btn.info, .skiplink.info { background: #4a4d50; border: 1px solid #4a4d50; } .btn.info:hover, .skiplink.info:hover { background: #63676a; } .btn.info:active, .skiplink.info:active { background: #313436; } .btn.danger, .skiplink.danger { background: #ca3838; border: 1px solid #ca3838; } .btn.danger:hover, .skiplink.danger:hover { background: #d56060; } .btn.danger:active, .skiplink.danger:active { background: #a32c2c; } .btn.warning, .skiplink.warning { background: #f6b83f; border: 1px solid #f6b83f; color: #644405; } .btn.warning:hover, .skiplink.warning:hover { background: #f8ca70; } .btn.warning:active, .skiplink.warning:active { background: #f4a60e; } .btn.warning a, .btn.warning input, .btn.warning button, .skiplink.warning a, .skiplink.warning input, .skiplink.warning button { color: #644405; } .btn.success, .skiplink.success { background: #58c026; border: 1px solid #58c026; } .btn.success:hover, .skiplink.success:hover { background: #72d940; } .btn.success:active, .skiplink.success:active { background: #44951e; } .btn.metro, .metro .btn, .metro .skiplink, .skiplink.metro, .btn.pretty.squared, .pretty .squared.btn, .pretty .squared.skiplink, .pretty .btn.squared { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } .btn.pretty, .pretty .btn, .pretty .skiplink, .skiplink.pretty, .btn.metro.rounded, .metro .rounded.btn, .metro .rounded.skiplink, .metro .btn.rounded { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .btn.pretty.primary, .pretty .primary.btn, .pretty .primary.skiplink, .skiplink.pretty.primary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #85b7e7), color-stop(100%, #2a85dc)); background-image: -webkit-linear-gradient(#85b7e7, #2a85dc); background-image: -moz-linear-gradient(#85b7e7, #2a85dc); background-image: -o-linear-gradient(#85b7e7, #2a85dc); background-image: linear-gradient(#85b7e7, #2a85dc); -webkit-box-shadow: inset 0 0 3px #f0f6fc; -moz-box-shadow: inset 0 0 3px #f0f6fc; box-shadow: inset 0 0 3px #f0f6fc; border: 1px solid #1f5e9b; } .btn.pretty.primary:hover, .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .skiplink.pretty.primary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d4fc), color-stop(100%, #54b2fe)); background-image: -webkit-linear-gradient(#a2d4fc, #54b2fe); background-image: -moz-linear-gradient(#a2d4fc, #54b2fe); background-image: -o-linear-gradient(#a2d4fc, #54b2fe); background-image: linear-gradient(#a2d4fc, #54b2fe); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #0e90f8; } .btn.pretty.primary:active, .pretty .primary.btn:active, .pretty .primary.skiplink:active, .skiplink.pretty.primary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a85dc), color-stop(100%, #85b7e7)); background-image: -webkit-linear-gradient(#2a85dc, #85b7e7); background-image: -moz-linear-gradient(#2a85dc, #85b7e7); background-image: -o-linear-gradient(#2a85dc, #85b7e7); background-image: linear-gradient(#2a85dc, #85b7e7); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; } .btn.pretty.primary a, .pretty .primary.btn a, .pretty .primary.skiplink a, .btn.pretty.primary input, .pretty .primary.btn input, .pretty .primary.skiplink input, .btn.pretty.primary button, .pretty .primary.btn button, .pretty .primary.skiplink button, .skiplink.pretty.primary a, .skiplink.pretty.primary input, .skiplink.pretty.primary button { text-shadow: 0 1px 1px #1a5186; } .btn.pretty.secondary, .pretty .secondary.btn, .pretty .secondary.skiplink, .skiplink.pretty.secondary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #80cb92), color-stop(100%, #3ca957)); background-image: -webkit-linear-gradient(#80cb92, #3ca957); background-image: -moz-linear-gradient(#80cb92, #3ca957); background-image: -o-linear-gradient(#80cb92, #3ca957); background-image: linear-gradient(#80cb92, #3ca957); -webkit-box-shadow: inset 0 0 3px #daf0e0; -moz-box-shadow: inset 0 0 3px #daf0e0; box-shadow: inset 0 0 3px #daf0e0; border: 1px solid #2c6d3c; } .btn.pretty.secondary:hover, .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .skiplink.pretty.secondary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1d3ad), color-stop(100%, #68c07d)); background-image: -webkit-linear-gradient(#a1d3ad, #68c07d); background-image: -moz-linear-gradient(#a1d3ad, #68c07d); background-image: -o-linear-gradient(#a1d3ad, #68c07d); background-image: linear-gradient(#a1d3ad, #68c07d); -webkit-box-shadow: inset 0 0 3px #f8fcf9; -moz-box-shadow: inset 0 0 3px #f8fcf9; box-shadow: inset 0 0 3px #f8fcf9; border: 1px solid #469659; } .btn.pretty.secondary:active, .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .skiplink.pretty.secondary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%,
{ "end_byte": 134267, "start_byte": 128760, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_134268_140091
olor-stop(0%, #3ca957), color-stop(100%, #80cb92)); background-image: -webkit-linear-gradient(#3ca957, #80cb92); background-image: -moz-linear-gradient(#3ca957, #80cb92); background-image: -o-linear-gradient(#3ca957, #80cb92); background-image: linear-gradient(#3ca957, #80cb92); -webkit-box-shadow: inset 0 0 3px #ecf8ef; -moz-box-shadow: inset 0 0 3px #ecf8ef; box-shadow: inset 0 0 3px #ecf8ef; } .btn.pretty.secondary a, .pretty .secondary.btn a, .pretty .secondary.skiplink a, .btn.pretty.secondary input, .pretty .secondary.btn input, .pretty .secondary.skiplink input, .btn.pretty.secondary button, .pretty .secondary.btn button, .pretty .secondary.skiplink button, .skiplink.pretty.secondary a, .skiplink.pretty.secondary input, .skiplink.pretty.secondary button { text-shadow: 0 1px 1px #255a32; } .btn.pretty.default, .pretty .default.btn, .pretty .default.skiplink, .skiplink.pretty.default { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f3f1f1)); background-image: -webkit-linear-gradient(#ffffff, #f3f1f1); background-image: -moz-linear-gradient(#ffffff, #f3f1f1); background-image: -o-linear-gradient(#ffffff, #f3f1f1); background-image: linear-gradient(#ffffff, #f3f1f1); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #cccccc; } .btn.pretty.default:hover, .pretty .default.btn:hover, .pretty .default.skiplink:hover, .skiplink.pretty.default:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#ffffff, #ffffff); background-image: -moz-linear-gradient(#ffffff, #ffffff); background-image: -o-linear-gradient(#ffffff, #ffffff); background-image: linear-gradient(#ffffff, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #d9d9d9; } .btn.pretty.default:active, .pretty .default.btn:active, .pretty .default.skiplink:active, .skiplink.pretty.default:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f1f1), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#f3f1f1, #ffffff); background-image: -moz-linear-gradient(#f3f1f1, #ffffff); background-image: -o-linear-gradient(#f3f1f1, #ffffff); background-image: linear-gradient(#f3f1f1, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; } .btn.pretty.default a, .pretty .default.btn a, .pretty .default.skiplink a, .btn.pretty.default input, .pretty .default.btn input, .pretty .default.skiplink input, .btn.pretty.default button, .pretty .default.btn button, .pretty .default.skiplink button, .skiplink.pretty.default a, .skiplink.pretty.default input, .skiplink.pretty.default button { text-shadow: 0 1px 1px white; } .btn.pretty.info, .pretty .info.btn, .pretty .info.skiplink, .skiplink.pretty.info { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #464d54)); background-image: -webkit-linear-gradient(#7b8085, #464d54); background-image: -moz-linear-gradient(#7b8085, #464d54); background-image: -o-linear-gradient(#7b8085, #464d54); background-image: linear-gradient(#7b8085, #464d54); -webkit-box-shadow: inset 0 0 3px #bdc0c2; -moz-box-shadow: inset 0 0 3px #bdc0c2; box-shadow: inset 0 0 3px #bdc0c2; border: 1px solid #252728; } .btn.pretty.info:hover, .pretty .info.btn:hover, .pretty .info.skiplink:hover, .skiplink.pretty.info:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb3b6), color-stop(100%, #808e98)); background-image: -webkit-linear-gradient(#aeb3b6, #808e98); background-image: -moz-linear-gradient(#aeb3b6, #808e98); background-image: -o-linear-gradient(#aeb3b6, #808e98); background-image: linear-gradient(#aeb3b6, #808e98); -webkit-box-shadow: inset 0 0 3px #f1f2f3; -moz-box-shadow: inset 0 0 3px #f1f2f3; box-shadow: inset 0 0 3px #f1f2f3; border: 1px solid #60676b; } .btn.pretty.info:active, .pretty .info.btn:active, .pretty .info.skiplink:active, .skiplink.pretty.info:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #464d54), color-stop(100%, #7b8085)); background-image: -webkit-linear-gradient(#464d54, #7b8085); background-image: -moz-linear-gradient(#464d54, #7b8085); background-image: -o-linear-gradient(#464d54, #7b8085); background-image: linear-gradient(#464d54, #7b8085); -webkit-box-shadow: inset 0 0 3px #cbcdce; -moz-box-shadow: inset 0 0 3px #cbcdce; box-shadow: inset 0 0 3px #cbcdce; } .btn.pretty.info a, .pretty .info.btn a, .pretty .info.skiplink a, .btn.pretty.info input, .pretty .info.btn input, .pretty .info.skiplink input, .btn.pretty.info button, .pretty .info.btn button, .pretty .info.skiplink button, .skiplink.pretty.info a, .skiplink.pretty.info input, .skiplink.pretty.info button { text-shadow: 0 1px 1px #191a1b; } .btn.pretty.danger, .pretty .danger.btn, .pretty .danger.skiplink, .skiplink.pretty.danger { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #df8989), color-stop(100%, #d03232)); background-image: -webkit-linear-gradient(#df8989, #d03232); background-image: -moz-linear-gradient(#df8989, #d03232); background-image: -o-linear-gradient(#df8989, #d03232); background-image: linear-gradient(#df8989, #d03232); -webkit-box-shadow: inset 0 0 3px #faeded; -moz-box-shadow: inset 0 0 3px #faeded; box-shadow: inset 0 0 3px #faeded; border: 1px solid #8f2626; } .btn.pretty.danger:hover, .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .skiplink.pretty.danger:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #
{ "end_byte": 140091, "start_byte": 134268, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_140092_145982
79696), color-stop(100%, #f64a4a)); background-image: -webkit-linear-gradient(#f79696, #f64a4a); background-image: -moz-linear-gradient(#f79696, #f64a4a); background-image: -o-linear-gradient(#f79696, #f64a4a); background-image: linear-gradient(#f79696, #f64a4a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #e21212; } .btn.pretty.danger:active, .pretty .danger.btn:active, .pretty .danger.skiplink:active, .skiplink.pretty.danger:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d03232), color-stop(100%, #df8989)); background-image: -webkit-linear-gradient(#d03232, #df8989); background-image: -moz-linear-gradient(#d03232, #df8989); background-image: -o-linear-gradient(#d03232, #df8989); background-image: linear-gradient(#d03232, #df8989); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; } .btn.pretty.danger a, .pretty .danger.btn a, .pretty .danger.skiplink a, .btn.pretty.danger input, .pretty .danger.btn input, .pretty .danger.skiplink input, .btn.pretty.danger button, .pretty .danger.btn button, .pretty .danger.skiplink button, .skiplink.pretty.danger a, .skiplink.pretty.danger input, .skiplink.pretty.danger button { text-shadow: 0 1px 1px #7b2121; } .btn.pretty.warning, .pretty .warning.btn, .pretty .warning.skiplink, .skiplink.pretty.warning { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbdca0), color-stop(100%, #fbba3a)); background-image: -webkit-linear-gradient(#fbdca0, #fbba3a); background-image: -moz-linear-gradient(#fbdca0, #fbba3a); background-image: -o-linear-gradient(#fbdca0, #fbba3a); background-image: linear-gradient(#fbdca0, #fbba3a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #de960a; color: #644405; } .btn.pretty.warning:hover, .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .skiplink.pretty.warning:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #feecca), color-stop(100%, #ffd37d)); background-image: -webkit-linear-gradient(#feecca, #ffd37d); background-image: -moz-linear-gradient(#feecca, #ffd37d); background-image: -o-linear-gradient(#feecca, #ffd37d); background-image: linear-gradient(#feecca, #ffd37d); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #fcb834; } .btn.pretty.warning:active, .pretty .warning.btn:active, .pretty .warning.skiplink:active, .skiplink.pretty.warning:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbba3a), color-stop(100%, #fbdca0)); background-image: -webkit-linear-gradient(#fbba3a, #fbdca0); background-image: -moz-linear-gradient(#fbba3a, #fbdca0); background-image: -o-linear-gradient(#fbba3a, #fbdca0); background-image: linear-gradient(#fbba3a, #fbdca0); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; } .btn.pretty.warning a, .pretty .warning.btn a, .pretty .warning.skiplink a, .btn.pretty.warning input, .pretty .warning.btn input, .pretty .warning.skiplink input, .btn.pretty.warning button, .pretty .warning.btn button, .pretty .warning.skiplink button, .skiplink.pretty.warning a, .skiplink.pretty.warning input, .skiplink.pretty.warning button { text-shadow: 0 1px 1px #fbdca0; } .btn.pretty.success, .pretty .success.btn, .pretty .success.skiplink, .skiplink.pretty.success { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #91e26a), color-stop(100%, #56c620)); background-image: -webkit-linear-gradient(#91e26a, #56c620); background-image: -moz-linear-gradient(#91e26a, #56c620); background-image: -o-linear-gradient(#91e26a, #56c620); background-image: linear-gradient(#91e26a, #56c620); -webkit-box-shadow: inset 0 0 3px #e0f7d5; -moz-box-shadow: inset 0 0 3px #e0f7d5; box-shadow: inset 0 0 3px #e0f7d5; border: 1px solid #3b8019; } .btn.pretty.success:hover, .pretty .success.btn:hover, .pretty .success.skiplink:hover, .skiplink.pretty.success:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #96e570), color-stop(100%, #64df29)); background-image: -webkit-linear-gradient(#96e570, #64df29); background-image: -moz-linear-gradient(#96e570, #64df29); background-image: -o-linear-gradient(#96e570, #64df29); background-image: linear-gradient(#96e570, #64df29); -webkit-box-shadow: inset 0 0 3px #e5f9db; -moz-box-shadow: inset 0 0 3px #e5f9db; box-shadow: inset 0 0 3px #e5f9db; border: 1px solid #479f1d; } .btn.pretty.success:active, .pretty .success.btn:active, .pretty .success.skiplink:active, .skiplink.pretty.success:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #56c620), color-stop(100%, #91e26a)); background-image: -webkit-linear-gradient(#56c620, #91e26a); background-image: -moz-linear-gradient(#56c620, #91e26a); background-image: -o-linear-gradient(#56c620, #91e26a); background-image: linear-gradient(#56c620, #91e26a); -webkit-box-shadow: inset 0 0 3px #f0fbea; -moz-box-shadow: inset 0 0 3px #f0fbea; box-shadow: inset 0 0 3px #f0fbea; } .btn.pretty.success a, .pretty .success.btn a, .pretty .success.skiplink a, .btn.pretty.success input, .pretty .success.btn input, .pretty .success.skiplink input, .btn.pretty.success button, .pretty .success.btn button, .pretty .success.skiplink button, .skiplink.pretty.success a, .skiplink.pretty.success input, .skiplink.pretty.success button { text-shadow: 0 1px 1px #316b15; } /* Icons */ [class^="icon-"] a:before, [class*=" icon-"] a:before, [class^="icon-"] a:after, [class*=" icon-"] a:after, i[class^="icon-"], i[class*=" icon-"] { font-family: "entypo"; position: absolute; tex
{ "end_byte": 145982, "start_byte": 140092, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_145983_152120
-decoration: none; zoom: 1; } i[class^="icon-"], i[class*=" icon-"] { display: inline-block; position: static; min-width: 20px; margin: 0 5px; text-align: center; } /* Form Styles */ form { margin: 0 0 18px; } form label { display: block; font-size: 16px; font-size: 1rem; line-height: 1.625em; cursor: pointer; margin-bottom: 9px; } form label.inline { display: inline-block; padding-right: 20px; } form dt { margin: 0; } form textarea { height: 150px; } form ul, form ul li { margin-left: 0; list-style-type: none; } form fieldset { border-style: solid; border-width: 0.0625em; padding: 1.5625em; border-color: #d8d8d8; margin: 18px 0; } form fieldset legend { padding: 5px 10px; } .field { position: relative; max-width: 100%; margin-bottom: 10px; vertical-align: middle; font-size: 16px; overflow: hidden; } .field.metro, .field .metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } .field input, .field input[type="*"], .field textarea { max-width: 100%; width: 100%; padding: 0; margin: 0; border: none; outline: none; resize: none; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 300; font-size: 16px; font-size: 1rem; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .field .input { position: relative; padding: 0 10px; background: #fff; border: 1px solid #d8d8d8; height: 36px; line-height: 34px; font-size: 16px; font-size: 1rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .field .input.search { height: 36px; line-height: 34px; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; padding-right: 0; } .field .input.textarea { height: auto; } input.xnarrow, .input.xnarrow { width: 13.33333%; margin: 0; } input.xnarrow:last-child, .input.xnarrow:last-child { margin-left: -4px; } input.xnarrow:first-child, .input.xnarrow:first-child { margin-right: 3.94%; margin-left: 0; } input.xnarrow:first-child:last-child, .input.xnarrow:first-child:last-child { margin: 0; } input.narrow, .input.narrow { width: 30.66667%; margin: 0; } input.narrow:last-child, .input.narrow:last-child { margin-left: -4px; } input.narrow:first-child, .input.narrow:first-child { margin-right: 3.94%; margin-left: 0; } input.narrow:first-child:last-child, .input.narrow:first-child:last-child { margin: 0; } input.normal, .input.normal { width: 48%; margin: 0; } input.normal:last-child, .input.normal:last-child { margin-left: -4px; } input.normal:first-child, .input.normal:first-child { margin-right: 3.94%; margin-left: 0; } input.normal:first-child:last-child, .input.normal:first-child:last-child { margin: 0; } input.wide, .input.wide { width: 65.33333%; margin: 0; } input.wide:last-child, .input.wide:last-child { margin-left: -4px; } input.wide:first-child, .input.wide:first-child { margin-right: 3.94%; margin-left: 0; } input.wide:first-child:last-child, .input.wide:first-child:last-child { margin: 0; } input.xwide, .input.xwide { width: 82.66667%; margin: 0; } input.xwide:last-child, .input.xwide:last-child { margin-left: -4px; } input.xwide:first-child, .input.xwide:first-child { margin-right: 3.94%; margin-left: 0; } input.xwide:first-child:last-child, .input.xwide:first-child:last-child { margin: 0; } input.xxwide, .input.xxwide { width: 100%; margin: 0; } input.xxwide:last-child, .input.xxwide:last-child { margin-left: -4px; } input.xxwide:first-child, .input.xxwide:first-child { margin-right: 3.94%; margin-left: 0; } input.xxwide:first-child:last-child, .input.xxwide:first-child:last-child { margin: 0; } label + .xnarrow:last-child, label + .narrow:last-child, label + .normal:last-child, label + .wide:last-child, label + .xwide:last-child, label + .xxwide:last-child { margin-left: 0; } @media only screen and (max-width: 960px) { .xxwide:first-child, .xxwide:last-child { margin-right: 0%; } } /* remove inline-block white-space — A 0px font-size = 0px of white space */ .prepend, .append { font-size: 0; white-space: nowrap; padding-bottom: 3.5px; } .prepend input, .prepend .input, .append input, .append .input { display: inline-block; max-width: 100%; margin-right: 0; margin-left: 0; } .prepend input, .prepend .input, .prepend.append input:last-child, .append *:last-child { -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; } .append input, .append .input, .prepend.append input:first-child, .prepend *:first-child { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; } .prepend.append input { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } .prepend.append input:last-child { margin-left: -1px; } .prepend .adjoined, .append .adjoined, .prepend .btn, .append .btn { position: relative; display: inline-block; margin-bottom: 0; z-index: 99; } .prepend .btn a, .prepend .btn input, .prepend .btn button, .append .btn a, .append .btn input, .append .btn button { padding: 0 12px; } .prepend .adjoined, .append .adjoined { padding: 0 10px 0 10px; background: #f2f2f2; border: 1px solid #d8d8d8; font-family: "Open Sans"; font-weight: 600; color: #555555; font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; } .prepend .adjoined, .prepend .btn { margin-right: -1px; } .adjoined:first-child { margin-left: 0 !important; } .append .adjoined, .append .btn { margin-left: -1px; } .append button, .prepend button { display: inline-block; } .prepend input:first-child, .append input:first-child, .prepend .input:first-child, .append .input:first-child { margin-right: 0; } .double input, .double .input { width: 50% !important; } .double input:last-child, .double .input:last-child { margin-left: -1px; } .field input, .field .input, .field textarea, .field .textarea, .field .radio span, .field .checkbox span, .field .picke
{ "end_byte": 152120, "start_byte": 145983, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_152121_158300
{ -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .field.danger:after { font-family: "entypo"; content: "\2716"; font-size: 16px; position: absolute; top: 14%; right: 15px; z-index: 999; color: #ca3838; } .field.danger.no-icon:after { display: none; } .field.danger.append:after, .field.danger.prepend:after { content: ""; } .field.danger input, .field.danger .input, .field.danger textarea, .field.danger .textarea, .field.danger .radio span, .field.danger .checkbox span, .field.danger .picker { border-color: #ca3838; background: #f0c5c5; } .field.danger input, .field.danger .input, .field.danger textarea, .field.danger .textarea, .field.danger .radio span, .field.danger .checkbox span, .field.danger .picker, .field.danger input::-webkit-input-placeholder, .field.danger textarea::-webkit-input-placeholder, .field.danger input:-moz-placeholder, .field.danger textarea:-moz-placeholder textarea { color: #ca3838; } .field.warning:after { font-family: "entypo"; content: "\26a0"; font-size: 16px; position: absolute; top: 14%; right: 15px; z-index: 999; color: #f6b83f; } .field.warning.no-icon:after { display: none; } .field.warning.append:after, .field.warning.prepend:after { content: ""; } .field.warning input, .field.warning .input, .field.warning textarea, .field.warning .textarea, .field.warning .radio span, .field.warning .checkbox span, .field.warning .picker { border-color: #f6b83f; background: #fef7ea; } .field.warning input, .field.warning .input, .field.warning textarea, .field.warning .textarea, .field.warning .radio span, .field.warning .checkbox span, .field.warning .picker, .field.warning input::-webkit-input-placeholder, .field.warning textarea::-webkit-input-placeholder, .field.warning input:-moz-placeholder, .field.warning textarea:-moz-placeholder textarea { color: #f6b83f; } .field.success:after { font-family: "entypo"; content: "\2713"; font-size: 16px; position: absolute; top: 14%; right: 15px; z-index: 999; color: #58c026; } .field.success.no-icon:after { display: none; } .field.success.append:after, .field.success.prepend:after { content: ""; } .field.success input, .field.success .input, .field.success textarea, .field.success .textarea, .field.success .radio span, .field.success .checkbox span, .field.success .picker { border-color: #58c026; background: #c0eeaa; } .field.success input, .field.success .input, .field.success textarea, .field.success .textarea, .field.success .radio span, .field.success .checkbox span, .field.success .picker, .field.success input::-webkit-input-placeholder, .field.success textarea::-webkit-input-placeholder, .field.success input:-moz-placeholder, .field.success textarea:-moz-placeholder textarea { color: #58c026; } .field .picker.danger { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .field .picker.danger select, .field .picker.danger:after { color: #ca3838; } .field .picker.warning { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .field .picker.warning select, .field .picker.warning:after { color: #f6b83f; } .field .picker.success { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .field .picker.success select, .field .picker.success:after { color: #58c026; } .field .text input[type="search"] { -webkit-appearance: textfield; } .no-js .radio input { -webkit-appearance: radio; margin-left: 1px; } .no-js .checkbox input { -webkit-appearance: checkbox; } .no-js .radio input, .no-js .checkbox input { display: inline-block; width: 16px; } .js .field .radio, .js .field .checkbox { position: relative; } .js .field .radio.danger, .js .field .checkbox.danger { color: #ca3838; } .js .field .radio.danger span, .js .field .checkbox.danger span { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .js .field .radio.warning, .js .field .checkbox.warning { color: #f6b83f; } .js .field .radio.warning span, .js .field .checkbox.warning span { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .js .field .radio.success, .js .field .checkbox.success { color: #58c026; color: #555555; } .js .field .radio.success i, .js .field .checkbox.success i { color: #58c026; } .js .field .radio.success span, .js .field .checkbox.success span { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; } .js .field .radio.checked i, .js .field .checkbox.checked i { position: absolute; top: -1px; left: -8px; line-height: 16px; } .js .field .radio span, .js .field .checkbox span { display: inline-block; width: 16px; height: 16px; position: relative; top: 2px; border: solid 1px #ccc; background: #fefefe; } .js .field .radio input[type="radio"], .js .field .radio input[type="checkbox"], .js .field .checkbox input[type="radio"], .js .field .checkbox input[type="checkbox"] { display: none; } .js .field .radio span { -webkit-border-radius: 8px; -moz-border-radius: 8px; -ms-border-radius: 8px; -o-border-radius: 8px; border-radius: 8px; } .js .field .checkbox span { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } .field .text input[type="search"] { -webkit-appearance: textfield; } /* Form Picker Element (<select>) */ .picker { position: relative; width: auto; display: inline-block; margin: 0 0 2px 1.2%; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border
{ "end_byte": 158300, "start_byte": 152121, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_158301_163371
radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-family: "Open Sans"; font-weight: 600; height: auto; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background-image: -webkit-linear-gradient(#ffffff, #f2f2f2); background-image: -moz-linear-gradient(#ffffff, #f2f2f2); background-image: -o-linear-gradient(#ffffff, #f2f2f2); background-image: linear-gradient(#ffffff, #f2f2f2); } .picker:after { content: "\25BE"; font-family: entypo; z-index: 0; position: absolute; right: 8%; top: 50%; margin-top: -12px; color: #555555; } .picker:first-child { margin-left: 0; } .picker select { position: relative; display: block; min-width: 100%; width: 135%; height: 34px; padding: 6px 45px 6px 15px; color: #555555; border: none; background: transparent; outline: none; -webkit-appearance: none; z-index: 99; cursor: pointer; font-size: 16px; font-size: 1rem; } .picker select::-ms-expand { display: none; } /* Labels */ .badge, .label { height: 20px; display: inline-block; font-family: Helvetica, arial, verdana, sans-serif; font-weight: bold; line-height: 20px; text-align: center; color: #fff; } .badge a, .label a { color: #fff; } .badge.primary, .label.primary { background: #3085d6; border: 1px solid #3085d6; } .badge.secondary, .label.secondary { background: #42a35a; border: 1px solid #42a35a; } .badge.default, .label.default { background: #f2f2f2; border: 1px solid #f2f2f2; color: #555555; } .badge.default:hover, .label.default:hover { border-color: #e5e5e5; } .badge.default a, .label.default a { color: #555555; } .badge.info, .label.info { background: #4a4d50; border: 1px solid #4a4d50; } .badge.danger, .label.danger { background: #ca3838; border: 1px solid #ca3838; } .badge.warning, .label.warning { background: #f6b83f; border: 1px solid #f6b83f; color: #644405; } .badge.warning a, .label.warning a { color: #644405; } .badge.success, .label.success { background: #58c026; border: 1px solid #58c026; } .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; } .badge.light a, .label.light a { color: #d04526; } .badge.dark, .label.dark { background: #212121; border: 1px solid #212121; } .badge { padding: 0 10px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; } .label { padding: 0 10px; font-size: 12px; font-size: 0.75rem; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; } .alert { padding: 0 10px; font-family: "Open Sans"; font-weight: 600; list-style-type: none; word-wrap: break-word; margin-bottom: 8px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .alert.primary { background: #85b7e7; border: 1px solid #3085d6; color: #1a5186; } .alert.secondary { background: #80cb92; border: 1px solid #42a35a; color: #255a32; } .alert.default { background: white; border: 1px solid #f2f2f2; color: #bfbfbf; color: #555555; border: 1px solid #f2f2f2; } .alert.info { background: #7b8085; border: 1px solid #4a4d50; color: #191a1b; color: #f2f2f2; } .alert.danger { background: #df8989; border: 1px solid #ca3838; color: #7b2121; } .alert.warning { background: #fbdca0; border: 1px solid #f6b83f; color: #c68609; color: #644405; } .alert.success { background: #91e26a; border: 1px solid #58c026; color: #316b15; } /* Tabs */ .tabs { display: block; } .tab-nav { margin: 0; padding: 0; border-bottom: 1px solid #e5e5e5; } .tab-nav > li { display: inline-block; width: auto; padding: 0; margin: 0 2.12766% 0 0; cursor: default; top: 1px; -webkit-box-shadow: 0 1px 0 white; -moz-box-shadow: 0 1px 0 white; box-shadow: 0 1px 0 white; } .tab-nav > li > li { display: inline-block; width: auto; padding: 0; margin: 0 2.12766% 0 0; cursor: default; top: 1px; -webkit-box-shadow: 0 1px 0 white; -moz-box-shadow: 0 1px 0 white; box-shadow: 0 1px 0 white; } .tab-nav > li > li > a { display: block; width: auto; padding: 0 16px; margin: 0; color: #555555; font-family: "Open Sans"; font-weight: 600; border: 1px solid #e5e5e5; border-width: 1px 1px 0 1px; text-shadow: 0 1px 1px white; background: #f2f2f2; cursor: pointer; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; height: 42px; line-height: 40px; } .tab-nav > li > li > a:hover { text-decoration: none; background: whitesmoke; } .tab-nav > li > li > a:active { background: #ededed; } .tab-nav > li > li.active > a { height: 43px; line-height: 41px; background: white; cursor: default; } .tab-nav > li > li:last-child { margin-right: 0; } .tab-nav > li:last-child { margin-right: 0; } .tab-nav > li > a { display: block; width: auto; padding: 0 16px; margin: 0; color: #555555; font-family: "Open Sans"; font-weight: 600; border: 1px solid #e5e5e5; border-width: 1px 1px 0 1px; te
{ "end_byte": 163371, "start_byte": 158301, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_163373_169099
-shadow: 0 1px 1px white; background: #f2f2f2; cursor: pointer; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; height: 42px; line-height: 40px; } .tab-nav > li > a:hover { text-decoration: none; background: whitesmoke; } .tab-nav > li > a:active { background: #ededed; } .tab-nav > li.active > a { height: 43px; line-height: 41px; background: white; } .tabs.pill .tab-nav { width: 100%; /* remove if you don't want the tabs to span the full container width */ display: table; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .tabs.pill .tab-nav > li { display: table-cell; margin: 0; margin-left: -4px; text-align: center; top: 0; } .tabs.pill .tab-nav > li:first-child { margin-left: 0; } .tabs.pill .tab-nav > li > a { border: none; border-right: 1px solid #e5e5e5; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; height: 42px; line-height: 40px; } .tabs.pill .tab-nav > li:last-child > a { border-right: none; } .tab-content { display: none; padding: 20px 10px; } .tab-content.active { display: block; } .tabs.vertical .tab-nav { border: none; } .tabs.vertical .tab-nav > li { display: block; margin: 0; margin-bottom: 5px; } .tabs.vertical .tab-nav > li.active { position: relative; z-index: 99; } .tabs.vertical .tab-nav > li.active > a { border-right: 1px solid white; } .tabs.vertical .tab-nav > li > a { border: 1px solid #e5e5e5; -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; } .tabs.vertical .tab-content { padding: 10px 0 30px 20px; margin-left: -1px; border-left: 1px solid #e5e5e5; } /* Images */ .image { line-height: 0; margin-bottom: 20px; } .image.circle { -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; -ms-border-radius: 50% !important; -o-border-radius: 50% !important; border-radius: 50% !important; overflow: hidden; width: auto; } .image.rounded { overflow: hidden; -webkit-border-radius: 4px 4px; -moz-border-radius: 4px 4px; -ms-border-radius: 4px 4px; -o-border-radius: 4px 4px; border-radius: 4px 4px; } .image.photo { border: 5px solid #fff; -webkit-box-shadow: 0 0 1px #555555; -moz-box-shadow: 0 0 1px #555555; box-shadow: 0 0 1px #555555; } .image.photo.polaroid { padding-bottom: 50px; background: #fff; } /* Video */ body .video { width: 100%; position: relative; height: 0; padding-bottom: 56.25%; } body .video.twitch, body .video.youtube.show_controls { padding-top: 30px; } .video > video, .video > iframe, .video > object, .video > embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Toggles */ .drawer { position: relative; width: 100%; max-height: 0; background: #3e4144; -webkit-box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; -moz-box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; overflow: hidden; -webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; transition-duration: 0.3s; } .drawer.active { height: auto; max-height: 800px; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; } .modal { width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 999999; background: black; background: rgba(0, 0, 0, 0.8); } .modal > .content { width: 50%; min-height: 50%; max-height: 65%; position: relative; top: 25%; margin: 0 auto; padding: 20px; background: white; z-index: 2; overflow: auto; } @media only screen and (max-width: 768px) { .modal > .content { width: 80%; min-height: 80%; max-height: 80%; top: 10%; } } @media only screen and (max-width: 767px) { .modal > .content { width: 92.5%; min-height: 92.5%; max-height: 92.5%; top: 3.75%; } } .modal > .content > .close { position: absolute; top: 10px; right: 10px; cursor: pointer; z-index: 3; } .modal, .modal > .content { visibility: hidden; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; } .modal.active { -webkit-transition-property: opacity; -moz-transition-property: opacity; -o-transition-property: opacity; transition-property: opacity; -webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; transition-duration: 0.3s; } .modal.active, .modal.active > .content { visibility: visible; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } /* Tables */ table { display: table; background-color: white; border-collapse: collapse; border-spacing: 0; margin-bottom: 20px; width: 100%; border: 1px solid #e5e5e5; } table caption { text-align: center; font-size: 30px; padding: .75em; } table thead th, table tbody td, table tr td { display: table-cell; padding: 10px; vertical-align: top; text-align: left; border-top: 1px solid #e5e5e5; } table tr td, table tbody tr td { font-size: 16px; } table tr td:first-child { font-weight: bold; } table thead { background-color: #3085d6; color: #fff; } table thead tr th { font-size: 16px; font-weight: bold; vertical-align: bottom; } table.striped tr:nth-of-type(even), table table tr.stripe, table table tr.striped { background-color: #e5e5e5; } table.rounded { border-radius: 4px; border-collapse: separate; } table.rounded caption + thead tr:first-child th:first-child, table.rounded caption + tr td:first-child, table.rounded > thead tr:first-child th:first-child, table.rounded > thead tr:first-child td
{ "end_byte": 169099, "start_byte": 163373, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/routing/css/gumby.css_169100_172684
first-child, table.rounded > tr:first-child td:first-child { border-top-left-radius: 4px; } table.rounded caption + thead tr:first-child th:last-child, table.rounded caption + tr td:last-child, table.rounded > thead tr:first-child th:last-child, table.rounded > thead tr:first-child td:last-child, table.rounded > tr:first-child td:last-child { border-top-right-radius: 4px; } table.rounded thead ~ tr:last-child td:last-child, table.rounded tbody tr:last-child td:last-child { border-bottom-right-radius: 4px; } table.rounded thead ~ tr:last-child td:first-child, table.rounded tbody tr:last-child td:first-child { border-bottom-left-radius: 4px; } table.rounded thead th, table.rounded thead td, table.rounded caption + tbody tr:first-child td, table.rounded > tbody:first-child tr:first-child td { border-top: 0; } /* Tooltips */ .ttip { position: relative; cursor: pointer; } .ttip:after { display: block; background: #3085d6; border: 1px solid #3085d6; border-bottom: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 0.5em 0.75em; width: auto; min-width: 130px; max-width: 500px; position: absolute; left: 0; bottom: 101%; margin-bottom: 8px; text-align: left; color: #fff; content: attr(data-tooltip); line-height: 1.5; font-size: 16px; font-weight: normal; font-style: normal; -webkit-transition: opacity 0.1s ease; -moz-transition: opacity 0.1s ease; -o-transition: opacity 0.1s ease; transition: opacity 0.1s ease; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; pointer-events: none; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #65a4e1), color-stop(100%, #3085d6)); background-image: -webkit-linear-gradient(top, #65a4e1, #3085d6); background-image: -moz-linear-gradient(top, #65a4e1, #3085d6); background-image: -o-linear-gradient(top, #65a4e1, #3085d6); background-image: linear-gradient(top, #65a4e1, #3085d6); -webkit-box-shadow: 0 0 5px 0 rgba(48, 133, 214, 0.25); -moz-box-shadow: 0 0 5px 0 rgba(48, 133, 214, 0.25); box-shadow: 0 0 5px 0 rgba(48, 133, 214, 0.25); } .ttip:before { content: " "; width: 0; height: 0; position: absolute; bottom: 101%; left: 8px; border-top: 9px solid #3085d6 !important; border-left: 9px solid transparent; border-right: 9px solid transparent; -webkit-transition: opacity 0.1s ease; -moz-transition: opacity 0.1s ease; -o-transition: opacity 0.1s ease; transition: opacity 0.1s ease; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; pointer-events: none; } .ttip:hover:after, .ttip:hover:before { -webkit-transition: opacity 0.1s ease; -moz-transition: opacity 0.1s ease; -o-transition: opacity 0.1s ease; transition: opacity 0.1s ease; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; } @media only screen and (max-width: 768px) { .ttip:after, .ttip:before { display: none; } } /* SHAME */ .ie8 .xxwide, .ie8 .xwide, .ie8 .wide, .ie8 .normal, .ie8 .narrow, .ie8 .xnarrow { display: inline; } .ie8 .xxwide + input, .ie8 .xwide + input, .ie8 .wide + input, .ie8 .normal + input, .ie8 .narrow + input, .ie8 .xnarrow + input { display: inline; margin: 0 0 0 -.25em; } .ie8 .ttip:before, .ie8 .ttip:after { display: none; } .ie8 .ttip:hover:before, .ie8 .ttip:hover:after { display: block; } .ie9 .radio.checked i, .ie9 .checkbox.checked i { top: 0; }
{ "end_byte": 172684, "start_byte": 169100, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/routing/css/gumby.css" }
angular/modules/playground/src/relative_assets/index.html_0_245
<!DOCTYPE html> <html> <title>Relative URLs</title> <body> <relative-app> Loading... </relative-app> <script src="/angular/packages/zone.js/bundles/zone.umd.js"></script> <script src="/app_bundle.js"></script> </body> </html>
{ "end_byte": 245, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/index.html" }
angular/modules/playground/src/relative_assets/BUILD.bazel_0_759
load("//tools:defaults.bzl", "app_bundle", "http_server", "ng_module") package(default_visibility = ["//modules/playground:__subpackages__"]) ng_module( name = "relative_assets", srcs = glob(["**/*.ts"]), assets = [ "app/style.css", "app/tpl.html", ], tsconfig = "//modules/playground:tsconfig-build.json", deps = [ "//packages/core", "//packages/platform-browser", "//packages/platform-browser-dynamic", ], ) app_bundle( name = "app_bundle", entry_point = ":index.ts", deps = [":relative_assets"], ) http_server( name = "devserver", srcs = [ "index.html", ], deps = [ ":app_bundle", "//packages/zone.js/bundles:zone.umd.js", ], )
{ "end_byte": 759, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/BUILD.bazel" }
angular/modules/playground/src/relative_assets/index.ts_0_760
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; import {MyCmp} from './app/my_cmp'; @Component({ selector: 'relative-app', template: `component = <my-cmp></my-cmp>`, standalone: false, }) export class RelativeApp {} @NgModule({ declarations: [RelativeApp, MyCmp], bootstrap: [RelativeApp], imports: [BrowserModule], }) export class ExampleModule {} platformBrowserDynamic().bootstrapModule(ExampleModule);
{ "end_byte": 760, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/index.ts" }
angular/modules/playground/src/relative_assets/app/my_cmp.ts_0_386
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; @Component({ selector: 'my-cmp', templateUrl: './tpl.html', styleUrls: ['./style.css'], standalone: false, }) export class MyCmp {}
{ "end_byte": 386, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/app/my_cmp.ts" }
angular/modules/playground/src/relative_assets/app/style.css_0_150
:host { background:red; padding:1em; display:block; font-size:20px; color:white; } .inner-container { width:432px; font-weight:bold; }
{ "end_byte": 150, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/app/style.css" }
angular/modules/playground/src/relative_assets/app/tpl.html_0_70
<div class="inner-container"> my component content goes here </div>
{ "end_byte": 70, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/playground/src/relative_assets/app/tpl.html" }
angular/modules/ssr-benchmarks/run-benchmark.ts_0_3821
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /* tslint:disable:no-console */ import {ɵPERFORMANCE_MARK_PREFIX as PERFORMANCE_MARK_PREFIX} from '@angular/core'; import {render} from './src/main.server'; import {initData} from './test-data'; // Defined in the CLI config with "define" declare const DISABLE_DOM_EMULATION: boolean; // If you add an new measure, make sure to add it to this map const levels = new Map<string, number>([ ['renderApplication', 0], ['createServerPlatform', 1], ['bootstrap', 1], ['_render', 1], ['whenStable', 2], ['prepareForHydration', 2], ['insertEventRecordScript', 2], ['serializeTransferStateFactory', 2], ['renderToString', 2], ]); const narrowRun = typeof process !== 'undefined' && process.argv.length > 0; main(narrowRun); async function main(narrowRun: boolean) { console.log('Benchmarking started...'); console.log(`DOM emulation is ${DISABLE_DOM_EMULATION ? 'disabled' : 'enabled'}`); if (narrowRun) { await benchmarkRun(10000, 20); } else { await benchmarkRun(10, 1000); await benchmarkRun(100, 1000); await benchmarkRun(1000, 1000); } } /** * * @param rowCount Number of rows rendered in the App * @param renderingCount Number of times the app will be rendered */ async function benchmarkRun(rowCount: number, renderingCount: number) { const measures: Map<string, number[]> = new Map(); initData(rowCount); // Rendering & profiling for (let i = 0; i < renderingCount; i++) { await render(DISABLE_DOM_EMULATION); storePerformanceLogOfCurrentRun(measures); } const totals = measures.get(`${PERFORMANCE_MARK_PREFIX}:renderApplication`)!; const avgTotals = totals.reduce((acc, val) => acc + val, 0) / totals.length; let maxNameLength = 0; const table = [...measures.entries()] .map(([name, durations]) => { name = name.substring(PERFORMANCE_MARK_PREFIX.length + 1); const level = levels.get(name) ?? 0; name = `${new Array(level + 1).join(' ')} ${level ? '└ ' : ''}${name}`; maxNameLength = Math.max(name.length, maxNameLength); const avg = durations.reduce((acc, val) => acc + val, 0) / durations.length; const avgStr = durationToString(avg); const percentage = `${((avg / avgTotals) * 100).toFixed(1)}%`; const min = durationToString(Math.min(...durations)); const max = durationToString(Math.max(...durations)); return {name, min, average: avgStr, percentage, max}; }) .map(({name, ...rest}) => { // We need this because Node18 aligns text in the middle of the column instead of left). const spaces = maxNameLength - name.length; return {name: `${name}${' '.repeat(spaces)}`, ...rest}; }); // Logging the profiling result as a table console.log(`=== table with ${rowCount} rows, with ${renderingCount} renders ===`); console.table(table); console.log('\n', '\n'); } function durationToString(duration: number) { return `${duration.toFixed(1)}ms`; } /** * This function mutates the measures map by adding the performance entries. * Each entry is sorted, which will make the map keys sorted by startTime */ export function storePerformanceLogOfCurrentRun(measures: Map<string, number[]>) { const perfEntries = performance.getEntriesByType('measure'); perfEntries.sort((a, b) => a.startTime - b.startTime); for (const {name, duration} of perfEntries) { if (!name.startsWith(PERFORMANCE_MARK_PREFIX)) { continue; } const measure = measures.get(name); if (!measure) { measures.set(name, [duration]); } else { measure.push(duration); } performance.clearMeasures(name); } }
{ "end_byte": 3821, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/run-benchmark.ts" }
angular/modules/ssr-benchmarks/test-data.ts_0_1073
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ let data: {name: string; id: string}[] = []; export function testData() { return data; } // We can drop this and use crypto.randomUUID() once we move to node 20 function randomUUID() { let uuid = ''; const chars = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'; for (let i = 0; i < chars.length; i++) { const randomValue = (Math.random() * 16) | 0; // Generate random value (0-15) if (chars[i] === 'x') { uuid += randomValue.toString(16); // Replace 'x' with random hex value } else if (chars[i] === 'y') { uuid += ((randomValue & 0x3) | 0x8).toString(16); // Replace 'y' with a value between 8 and 11 } else { uuid += chars[i]; // Preserve the dashes and '4' in the template } } return uuid; } export function initData(count: number) { data = Array.from({length: count}, () => ({id: randomUUID(), name: randomUUID()})); }
{ "end_byte": 1073, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/test-data.ts" }
angular/modules/ssr-benchmarks/README.md_0_4075
## Intro This small benchmark suite is dedicated to mesure & describe how compute time is spent when rendering an application like in SSR. ## Struture * `./main.ts` is the entry point to run the benchmark * `./src` contains a sample app that exports a `render` function. * This app render a table of variable size, which depends on data (`initData()`) * This app is then rendered X numbers of times * Individual function calls are measured with `startMeasuring()`/`stopMeasuring()` from the core package. * If you add a new measure, make sure to add it also to the `levels` map for it to be represented correctly in the result ## Build & run `yarn bazel run //modules/ssr-benchmarks:run` ### Running the benchmark in a browser environment `yarn bazel run //modules/ssr-benchmarks:run_browser` This bazel target will build the benchmark, start a http-server with a html that will load the benckmark script. The benchmark script with this target will have DOM Emulation disabled. The result will be visible in the devtools console. Note: Due to the CLI adding some polyfills, @angular/build is patched to disable DOM emulation and running server code inside a browser: 1. removing an import from `node:module` in `polyfills.server.mjs` (with `tail ...`) 2. removing the import of `platform-server/init`. To run create a usable flame chart, prepare a narrowed run (like `benchmarkRun(10000, 20);`). Then in the performance tab of the devtools, trigger "Record & Reload" to generate a profile. ### Deopt Explorer A target is dedicated to generate a v8 log that can be fed to the [Deopt Explorer extension](https://github.com/microsoft/deoptexplorer-vscode). 1. Run `yarn bazel run //modules/ssr-benchmarks:run_deopt`, 2. open the project generated at the path after `Successfully ran all commands in test directory:`, 3. open the logfile in the extension ## Result example === table with 10000 rows, with 1000 renders === ┌─────────┬──────────────────────────────────────┬──────────┬──────────┬────────────┬───────────┐ │ (index) │ name │ min │ average │ percentage │ max │ ├─────────┼──────────────────────────────────────┼──────────┼──────────┼────────────┼───────────┤ │ 0 │ ' renderApplication ' │ '77.0ms' │ '86.4ms' │ '100.0%' │ '259.2ms' │ │ 1 │ ' └ createServerPlatform ' │ '0.0ms' │ '0.1ms' │ '0.1%' │ '3.7ms' │ │ 2 │ ' └ bootstrap ' │ '35.9ms' │ '42.6ms' │ '49.3%' │ '138.4ms' │ │ 3 │ ' └ _render ' │ '39.7ms' │ '43.8ms' │ '50.7%' │ '124.9ms' │ │ 4 │ ' └ whenStable ' │ '0.0ms' │ '0.0ms' │ '0.0%' │ '0.0ms' │ │ 5 │ ' └ prepareForHydration ' │ '13.1ms' │ '14.8ms' │ '17.1%' │ '53.4ms' │ │ 6 │ ' └ insertEventRecordScript ' │ '0.0ms' │ '0.0ms' │ '0.0%' │ '0.0ms' │ │ 7 │ ' └ serializeTransferStateFactory' │ '0.0ms' │ '0.0ms' │ '0.0%' │ '0.1ms' │ │ 8 │ ' └ renderToString ' │ '7.3ms' │ '8.9ms' │ '10.3%' │ '41.8ms' │ └─────────┴──────────────────────────────────────┴──────────┴──────────┴────────────┴───────────┘ Note: The max measure is often an outlier of the first few measures, probably before the JIT optimisation happens
{ "end_byte": 4075, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/README.md" }
angular/modules/ssr-benchmarks/yarn.lock_0_83
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1
{ "end_byte": 83, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_86_4418
"@ampproject/remapping@2.3.0", "@ampproject/remapping@^2.2.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== dependencies: "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" "@angular-devkit/architect@0.1900.0-next.6": version "0.1900.0-next.6" resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1900.0-next.6.tgz#76b40046bc8720698bcb8e605c57bae3ad307de3" integrity sha512-WwK3V0aFEd2ZSDybbdsqGX92F4tCOIOHluWIFdimQPnGqhBSmLf+tTHrt9uZWk9GPQJ1JmJjLeIf+NBhxyhn4g== dependencies: "@angular-devkit/core" "19.0.0-next.6" rxjs "7.8.1" "@angular-devkit/build-angular@file:../../node_modules/@angular-devkit/build-angular": version "19.0.0-next.6" dependencies: "@ampproject/remapping" "2.3.0" "@angular-devkit/architect" "0.1900.0-next.6" "@angular-devkit/build-webpack" "0.1900.0-next.6" "@angular-devkit/core" "19.0.0-next.6" "@angular/build" "19.0.0-next.6" "@babel/core" "7.25.2" "@babel/generator" "7.25.6" "@babel/helper-annotate-as-pure" "7.24.7" "@babel/helper-split-export-declaration" "7.24.7" "@babel/plugin-transform-async-generator-functions" "7.25.4" "@babel/plugin-transform-async-to-generator" "7.24.7" "@babel/plugin-transform-runtime" "7.25.4" "@babel/preset-env" "7.25.4" "@babel/runtime" "7.25.6" "@discoveryjs/json-ext" "0.6.1" "@ngtools/webpack" "19.0.0-next.6" "@vitejs/plugin-basic-ssl" "1.1.0" ansi-colors "4.1.3" autoprefixer "10.4.20" babel-loader "9.1.3" browserslist "^4.21.5" copy-webpack-plugin "12.0.2" critters "0.0.24" css-loader "7.1.2" esbuild-wasm "0.23.1" fast-glob "3.3.2" http-proxy-middleware "3.0.2" https-proxy-agent "7.0.5" istanbul-lib-instrument "6.0.3" jsonc-parser "3.3.1" karma-source-map-support "1.4.0" less "4.2.0" less-loader "12.2.0" license-webpack-plugin "4.0.2" loader-utils "3.3.1" magic-string "0.30.11" mini-css-extract-plugin "2.9.1" mrmime "2.0.0" open "10.1.0" ora "5.4.1" parse5-html-rewriting-stream "7.0.0" picomatch "4.0.2" piscina "4.6.1" postcss "8.4.45" postcss-loader "8.1.1" resolve-url-loader "5.0.0" rxjs "7.8.1" sass "1.78.0" sass-loader "16.0.1" semver "7.6.3" source-map-loader "5.0.0" source-map-support "0.5.21" terser "5.32.0" tree-kill "1.2.2" tslib "2.7.0" vite "5.4.4" watchpack "2.4.2" webpack "5.94.0" webpack-dev-middleware "7.4.2" webpack-dev-server "5.1.0" webpack-merge "6.0.1" webpack-subresource-integrity "5.1.0" optionalDependencies: esbuild "0.23.1" "@angular-devkit/build-webpack@0.1900.0-next.6": version "0.1900.0-next.6" resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1900.0-next.6.tgz#9f2af15db4d694c30a1a522c3f100586cb65adc4" integrity sha512-S3dA8L2VTnrLdXivly/i8zpVairwbdQz8E5HdSLMguyksnQK7K/k5PFSEqx+jqqixCzQWVB7w2npGLdYVmqBIw== dependencies: "@angular-devkit/architect" "0.1900.0-next.6" rxjs "7.8.1" "@angular-devkit/core@19.0.0-next.6": version "19.0.0-next.6" resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-19.0.0-next.6.tgz#b70bc3fbff05c1ba5cd545b2eb29c5d3e42ea3de" integrity sha512-ToTcxpHKomWVbLZv49p2R1O61h6Fk9LZt6WE22+OvYF3KSXuBPXzVRCuEei/4aucLY310e8a9Scuo2/P2exk2w== dependencies: ajv "8.17.1" ajv-formats "3.0.1" jsonc-parser "3.3.1" picomatch "4.0.2" rxjs "7.8.1" source-map "0.7.4" "@angular-devkit/schematics@19.0.0-next.6": version "19.0.0-next.6" resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-19.0.0-next.6.tgz#35736eef7a5e884f2db363c99977ca968a048143" integrity sha512-9gslHCOYyiD/EGmMEtfJIZXn6/MRskPSUhlQhhcabwwBCxEIgpZQqJTU5SiiuvjoBu5OMi2OWoH/DyTkDz+Dhw== dependencies: "@angular-devkit/core" "19.0.0-next.6" jsonc-parser "3.3.1" magic-string "0.30.11" ora "5.4.1" rxjs "7.8.1" "@angular/animations@file:../../dist/packages-dist/animations": version "19.0.0-next.5" dependencies: tslib "^2.3.0"
{ "end_byte": 4418, "start_byte": 86, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_4420_9173
"@angular/build@19.0.0-next.6": version "19.0.0-next.6" resolved "https://registry.yarnpkg.com/@angular/build/-/build-19.0.0-next.6.tgz#a463b8a1ac501c26c164ad026e096b404ce62a7c" integrity sha512-hE6zabh40lxPtYnFjLGgoTeu0MPsBFYkmFKgQ3hhIixpAb6AZJMia9Ocywm30l7gt0dvBdW8JzkqrLoczRpwOg== dependencies: "@ampproject/remapping" "2.3.0" "@angular-devkit/architect" "0.1900.0-next.6" "@babel/core" "7.25.2" "@babel/helper-annotate-as-pure" "7.24.7" "@babel/helper-split-export-declaration" "7.24.7" "@babel/plugin-syntax-import-attributes" "7.25.6" "@inquirer/confirm" "3.2.0" "@vitejs/plugin-basic-ssl" "1.1.0" browserslist "^4.23.0" critters "0.0.24" esbuild "0.23.1" fast-glob "3.3.2" https-proxy-agent "7.0.5" listr2 "8.2.4" lmdb "3.1.0" magic-string "0.30.11" mrmime "2.0.0" parse5-html-rewriting-stream "7.0.0" picomatch "4.0.2" piscina "4.6.1" rollup "4.21.3" sass "1.78.0" semver "7.6.3" vite "5.4.4" watchpack "2.4.2" "@angular/cli@file:../../node_modules/@angular/cli": version "19.0.0-next.6" dependencies: "@angular-devkit/architect" "0.1900.0-next.6" "@angular-devkit/core" "19.0.0-next.6" "@angular-devkit/schematics" "19.0.0-next.6" "@inquirer/prompts" "5.5.0" "@listr2/prompt-adapter-inquirer" "2.0.15" "@schematics/angular" "19.0.0-next.6" "@yarnpkg/lockfile" "1.1.0" ini "5.0.0" jsonc-parser "3.3.1" listr2 "8.2.4" npm-package-arg "11.0.3" npm-pick-manifest "9.1.0" pacote "18.0.6" resolve "1.22.8" semver "7.6.3" symbol-observable "4.0.0" yargs "17.7.2" "@angular/common@file:../../dist/packages-dist/common": version "19.0.0-next.5" dependencies: tslib "^2.3.0" "@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli": version "19.0.0-next.5" dependencies: "@babel/core" "7.25.2" "@jridgewell/sourcemap-codec" "^1.4.14" chokidar "^3.0.0" convert-source-map "^1.5.1" reflect-metadata "^0.2.0" semver "^7.0.0" tslib "^2.3.0" yargs "^17.2.1" "@angular/compiler@file:../../dist/packages-dist/compiler": version "19.0.0-next.5" dependencies: tslib "^2.3.0" "@angular/core@file:../../dist/packages-dist/core": version "19.0.0-next.5" dependencies: tslib "^2.3.0" "@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic": version "19.0.0-next.5" dependencies: tslib "^2.3.0" "@angular/platform-browser@file:../../dist/packages-dist/platform-browser": version "19.0.0-next.5" dependencies: tslib "^2.3.0" "@angular/platform-server@file:../../dist/packages-dist/platform-server": version "19.0.0-next.5" dependencies: tslib "^2.3.0" xhr2 "^0.2.0" "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== dependencies: "@babel/highlight" "^7.24.7" picocolors "^1.0.0" "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2", "@babel/compat-data@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb" integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ== "@babel/core@7.25.2", "@babel/core@^7.23.9": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.24.7" "@babel/generator" "^7.25.0" "@babel/helper-compilation-targets" "^7.25.2" "@babel/helper-module-transforms" "^7.25.2" "@babel/helpers" "^7.25.0" "@babel/parser" "^7.25.0" "@babel/template" "^7.25.0" "@babel/traverse" "^7.25.2" "@babel/types" "^7.25.2" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" "@babel/generator@7.25.6", "@babel/generator@^7.25.0", "@babel/generator@^7.25.6": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c" integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw== dependencies: "@babel/types" "^7.25.6" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^2.5.1"
{ "end_byte": 9173, "start_byte": 4420, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_9175_14071
"@babel/helper-annotate-as-pure@7.24.7", "@babel/helper-annotate-as-pure@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== dependencies: "@babel/types" "^7.24.7" "@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3" integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA== dependencies: "@babel/traverse" "^7.24.7" "@babel/types" "^7.24.7" "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7", "@babel/helper-compilation-targets@^7.24.8", "@babel/helper-compilation-targets@^7.25.2": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== dependencies: "@babel/compat-data" "^7.25.2" "@babel/helper-validator-option" "^7.24.8" browserslist "^4.23.1" lru-cache "^5.1.1" semver "^6.3.1" "@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14" integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ== dependencies: "@babel/helper-annotate-as-pure" "^7.24.7" "@babel/helper-member-expression-to-functions" "^7.24.8" "@babel/helper-optimise-call-expression" "^7.24.7" "@babel/helper-replace-supers" "^7.25.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" "@babel/traverse" "^7.25.4" semver "^6.3.1" "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7", "@babel/helper-create-regexp-features-plugin@^7.25.0", "@babel/helper-create-regexp-features-plugin@^7.25.2": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9" integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g== dependencies: "@babel/helper-annotate-as-pure" "^7.24.7" regexpu-core "^5.3.1" semver "^6.3.1" "@babel/helper-define-polyfill-provider@^0.6.2": version "0.6.2" resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" debug "^4.1.1" lodash.debounce "^4.0.8" resolve "^1.14.2" "@babel/helper-member-expression-to-functions@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== dependencies: "@babel/traverse" "^7.24.8" "@babel/types" "^7.24.8" "@babel/helper-module-imports@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== dependencies: "@babel/traverse" "^7.24.7" "@babel/types" "^7.24.7" "@babel/helper-module-transforms@^7.24.7", "@babel/helper-module-transforms@^7.24.8", "@babel/helper-module-transforms@^7.25.0", "@babel/helper-module-transforms@^7.25.2": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== dependencies: "@babel/helper-module-imports" "^7.24.7" "@babel/helper-simple-access" "^7.24.7" "@babel/helper-validator-identifier" "^7.24.7" "@babel/traverse" "^7.25.2"
{ "end_byte": 14071, "start_byte": 9175, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_14073_18786
"@babel/helper-optimise-call-expression@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== dependencies: "@babel/types" "^7.24.7" "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== "@babel/helper-remap-async-to-generator@^7.24.7", "@babel/helper-remap-async-to-generator@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz#d2f0fbba059a42d68e5e378feaf181ef6055365e" integrity sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw== dependencies: "@babel/helper-annotate-as-pure" "^7.24.7" "@babel/helper-wrap-function" "^7.25.0" "@babel/traverse" "^7.25.0" "@babel/helper-replace-supers@^7.24.7", "@babel/helper-replace-supers@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== dependencies: "@babel/helper-member-expression-to-functions" "^7.24.8" "@babel/helper-optimise-call-expression" "^7.24.7" "@babel/traverse" "^7.25.0" "@babel/helper-simple-access@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== dependencies: "@babel/traverse" "^7.24.7" "@babel/types" "^7.24.7" "@babel/helper-skip-transparent-expression-wrappers@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== dependencies: "@babel/traverse" "^7.24.7" "@babel/types" "^7.24.7" "@babel/helper-split-export-declaration@7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== dependencies: "@babel/types" "^7.24.7" "@babel/helper-string-parser@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== "@babel/helper-validator-identifier@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== "@babel/helper-validator-option@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== "@babel/helper-wrap-function@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz#dab12f0f593d6ca48c0062c28bcfb14ebe812f81" integrity sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ== dependencies: "@babel/template" "^7.25.0" "@babel/traverse" "^7.25.0" "@babel/types" "^7.25.0"
{ "end_byte": 18786, "start_byte": 14073, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_18788_23757
"@babel/helpers@^7.25.0": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.6.tgz#57ee60141829ba2e102f30711ffe3afab357cc60" integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q== dependencies: "@babel/template" "^7.25.0" "@babel/types" "^7.25.6" "@babel/highlight@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== dependencies: "@babel/helper-validator-identifier" "^7.24.7" chalk "^2.4.2" js-tokens "^4.0.0" picocolors "^1.0.0" "@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.6": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== dependencies: "@babel/types" "^7.25.6" "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3": version "7.25.3" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz#dca427b45a6c0f5c095a1c639dfe2476a3daba7f" integrity sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/traverse" "^7.25.3" "@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz#cd0c583e01369ef51676bdb3d7b603e17d2b3f73" integrity sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz#749bde80356b295390954643de7635e0dffabe73" integrity sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89" integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" "@babel/plugin-transform-optional-chaining" "^7.24.7" "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz#3a82a70e7cb7294ad2559465ebcb871dfbf078fb" integrity sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/traverse" "^7.25.0" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13"
{ "end_byte": 23757, "start_byte": 18788, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_23759_28684
"@babel/plugin-syntax-class-static-block@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-import-assertions@^7.24.7": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz#bb918905c58711b86f9710d74a3744b6c56573b5" integrity sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-syntax-import-attributes@7.25.6", "@babel/plugin-syntax-import-attributes@^7.24.7": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz#6d4c78f042db0e82fd6436cd65fec5dc78ad2bde" integrity sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: "@babel/helper-plugin-utils" "^7.8.0"
{ "end_byte": 28684, "start_byte": 23759, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_28686_33822
"@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-private-property-in-object@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-top-level-await@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-arrow-functions@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-async-generator-functions@7.25.4", "@babel/plugin-transform-async-generator-functions@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz#2afd4e639e2d055776c9f091b6c0c180ed8cf083" integrity sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-remap-async-to-generator" "^7.25.0" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/traverse" "^7.25.4" "@babel/plugin-transform-async-to-generator@7.24.7", "@babel/plugin-transform-async-to-generator@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== dependencies: "@babel/helper-module-imports" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/helper-remap-async-to-generator" "^7.24.7" "@babel/plugin-transform-block-scoped-functions@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f" integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-block-scoping@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz#23a6ed92e6b006d26b1869b1c91d1b917c2ea2ac" integrity sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-class-properties@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz#bae7dbfcdcc2e8667355cd1fb5eda298f05189fd" integrity sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g== dependencies: "@babel/helper-create-class-features-plugin" "^7.25.4" "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-class-static-block@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d" integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ== dependencies: "@babel/helper-create-class-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-class-static-block" "^7.14.5"
{ "end_byte": 33822, "start_byte": 28686, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_33824_38540
"@babel/plugin-transform-classes@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz#d29dbb6a72d79f359952ad0b66d88518d65ef89a" integrity sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg== dependencies: "@babel/helper-annotate-as-pure" "^7.24.7" "@babel/helper-compilation-targets" "^7.25.2" "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-replace-supers" "^7.25.0" "@babel/traverse" "^7.25.4" globals "^11.1.0" "@babel/plugin-transform-computed-properties@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707" integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/template" "^7.24.7" "@babel/plugin-transform-destructuring@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz#c828e814dbe42a2718a838c2a2e16a408e055550" integrity sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-dotall-regex@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0" integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-duplicate-keys@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee" integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz#809af7e3339466b49c034c683964ee8afb3e2604" integrity sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.25.0" "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-dynamic-import@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4" integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-transform-exponentiation-operator@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d" integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-export-namespace-from@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197" integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-transform-for-of@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
{ "end_byte": 38540, "start_byte": 33824, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_38542_43635
"@babel/plugin-transform-function-name@^7.25.1": version "7.25.1" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz#b85e773097526c1a4fc4ba27322748643f26fc37" integrity sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA== dependencies: "@babel/helper-compilation-targets" "^7.24.8" "@babel/helper-plugin-utils" "^7.24.8" "@babel/traverse" "^7.25.1" "@babel/plugin-transform-json-strings@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a" integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-transform-literals@^7.25.2": version "7.25.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz#deb1ad14fc5490b9a65ed830e025bca849d8b5f3" integrity sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-logical-assignment-operators@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-transform-member-expression-literals@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df" integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-modules-amd@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7" integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg== dependencies: "@babel/helper-module-transforms" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-modules-commonjs@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz#ab6421e564b717cb475d6fff70ae7f103536ea3c" integrity sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA== dependencies: "@babel/helper-module-transforms" "^7.24.8" "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-simple-access" "^7.24.7" "@babel/plugin-transform-modules-systemjs@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz#8f46cdc5f9e5af74f3bd019485a6cbe59685ea33" integrity sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw== dependencies: "@babel/helper-module-transforms" "^7.25.0" "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-validator-identifier" "^7.24.7" "@babel/traverse" "^7.25.0" "@babel/plugin-transform-modules-umd@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8" integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A== dependencies: "@babel/helper-module-transforms" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923" integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-new-target@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00" integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA== dependencies: "@babel/helper-plugin-utils" "^7.24.7"
{ "end_byte": 43635, "start_byte": 38542, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_43637_48580
"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" "@babel/plugin-transform-numeric-separator@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-transform-object-rest-spread@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== dependencies: "@babel/helper-compilation-targets" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.24.7" "@babel/plugin-transform-object-super@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be" integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/helper-replace-supers" "^7.24.7" "@babel/plugin-transform-optional-catch-binding@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz#bb02a67b60ff0406085c13d104c99a835cdf365d" integrity sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-transform-parameters@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-private-methods@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz#9bbefbe3649f470d681997e0b64a4b254d877242" integrity sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw== dependencies: "@babel/helper-create-class-features-plugin" "^7.25.4" "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-private-property-in-object@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061" integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA== dependencies: "@babel/helper-annotate-as-pure" "^7.24.7" "@babel/helper-create-class-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-transform-property-literals@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc" integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA== dependencies: "@babel/helper-plugin-utils" "^7.24.7"
{ "end_byte": 48580, "start_byte": 43637, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_48582_53434
"@babel/plugin-transform-regenerator@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" regenerator-transform "^0.15.2" "@babel/plugin-transform-reserved-words@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4" integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-runtime@7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.4.tgz#96e4ad7bfbbe0b4a7b7e6f2a533ca326cf204963" integrity sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ== dependencies: "@babel/helper-module-imports" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.8" babel-plugin-polyfill-corejs2 "^0.4.10" babel-plugin-polyfill-corejs3 "^0.10.6" babel-plugin-polyfill-regenerator "^0.6.1" semver "^6.3.1" "@babel/plugin-transform-shorthand-properties@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-spread@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3" integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" "@babel/plugin-transform-sticky-regex@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb" integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-template-literals@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-typeof-symbol@^7.24.8": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz#383dab37fb073f5bfe6e60c654caac309f92ba1c" integrity sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw== dependencies: "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-transform-unicode-escapes@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e" integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw== dependencies: "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-unicode-property-regex@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd" integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-transform-unicode-regex@^7.24.7": version "7.24.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.24.7" "@babel/helper-plugin-utils" "^7.24.7"
{ "end_byte": 53434, "start_byte": 48582, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_53436_59402
"@babel/plugin-transform-unicode-sets-regex@^7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz#be664c2a0697ffacd3423595d5edef6049e8946c" integrity sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.25.2" "@babel/helper-plugin-utils" "^7.24.8" "@babel/preset-env@7.25.4": version "7.25.4" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.4.tgz#be23043d43a34a2721cd0f676c7ba6f1481f6af6" integrity sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw== dependencies: "@babel/compat-data" "^7.25.4" "@babel/helper-compilation-targets" "^7.25.2" "@babel/helper-plugin-utils" "^7.24.8" "@babel/helper-validator-option" "^7.24.8" "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.3" "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.0" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.0" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.0" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-syntax-import-assertions" "^7.24.7" "@babel/plugin-syntax-import-attributes" "^7.24.7" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" "@babel/plugin-transform-arrow-functions" "^7.24.7" "@babel/plugin-transform-async-generator-functions" "^7.25.4" "@babel/plugin-transform-async-to-generator" "^7.24.7" "@babel/plugin-transform-block-scoped-functions" "^7.24.7" "@babel/plugin-transform-block-scoping" "^7.25.0" "@babel/plugin-transform-class-properties" "^7.25.4" "@babel/plugin-transform-class-static-block" "^7.24.7" "@babel/plugin-transform-classes" "^7.25.4" "@babel/plugin-transform-computed-properties" "^7.24.7" "@babel/plugin-transform-destructuring" "^7.24.8" "@babel/plugin-transform-dotall-regex" "^7.24.7" "@babel/plugin-transform-duplicate-keys" "^7.24.7" "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.0" "@babel/plugin-transform-dynamic-import" "^7.24.7" "@babel/plugin-transform-exponentiation-operator" "^7.24.7" "@babel/plugin-transform-export-namespace-from" "^7.24.7" "@babel/plugin-transform-for-of" "^7.24.7" "@babel/plugin-transform-function-name" "^7.25.1" "@babel/plugin-transform-json-strings" "^7.24.7" "@babel/plugin-transform-literals" "^7.25.2" "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" "@babel/plugin-transform-member-expression-literals" "^7.24.7" "@babel/plugin-transform-modules-amd" "^7.24.7" "@babel/plugin-transform-modules-commonjs" "^7.24.8" "@babel/plugin-transform-modules-systemjs" "^7.25.0" "@babel/plugin-transform-modules-umd" "^7.24.7" "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" "@babel/plugin-transform-new-target" "^7.24.7" "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" "@babel/plugin-transform-numeric-separator" "^7.24.7" "@babel/plugin-transform-object-rest-spread" "^7.24.7" "@babel/plugin-transform-object-super" "^7.24.7" "@babel/plugin-transform-optional-catch-binding" "^7.24.7" "@babel/plugin-transform-optional-chaining" "^7.24.8" "@babel/plugin-transform-parameters" "^7.24.7" "@babel/plugin-transform-private-methods" "^7.25.4" "@babel/plugin-transform-private-property-in-object" "^7.24.7" "@babel/plugin-transform-property-literals" "^7.24.7" "@babel/plugin-transform-regenerator" "^7.24.7" "@babel/plugin-transform-reserved-words" "^7.24.7" "@babel/plugin-transform-shorthand-properties" "^7.24.7" "@babel/plugin-transform-spread" "^7.24.7" "@babel/plugin-transform-sticky-regex" "^7.24.7" "@babel/plugin-transform-template-literals" "^7.24.7" "@babel/plugin-transform-typeof-symbol" "^7.24.8" "@babel/plugin-transform-unicode-escapes" "^7.24.7" "@babel/plugin-transform-unicode-property-regex" "^7.24.7" "@babel/plugin-transform-unicode-regex" "^7.24.7" "@babel/plugin-transform-unicode-sets-regex" "^7.25.4" "@babel/preset-modules" "0.1.6-no-external-plugins" babel-plugin-polyfill-corejs2 "^0.4.10" babel-plugin-polyfill-corejs3 "^0.10.6" babel-plugin-polyfill-regenerator "^0.6.1" core-js-compat "^3.37.1" semver "^6.3.1" "@babel/preset-modules@0.1.6-no-external-plugins": version "0.1.6-no-external-plugins" resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/types" "^7.4.4" esutils "^2.0.2"
{ "end_byte": 59402, "start_byte": 53436, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_59404_63340
"@babel/regjsgen@^0.8.0": version "0.8.0" resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@7.25.6", "@babel/runtime@^7.8.4": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2" integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ== dependencies: regenerator-runtime "^0.14.0" "@babel/template@^7.24.7", "@babel/template@^7.25.0": version "7.25.0" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== dependencies: "@babel/code-frame" "^7.24.7" "@babel/parser" "^7.25.0" "@babel/types" "^7.25.0" "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3", "@babel/traverse@^7.25.4": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41" integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ== dependencies: "@babel/code-frame" "^7.24.7" "@babel/generator" "^7.25.6" "@babel/parser" "^7.25.6" "@babel/template" "^7.25.0" "@babel/types" "^7.25.6" debug "^4.3.1" globals "^11.1.0" "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.6", "@babel/types@^7.4.4": version "7.25.6" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== dependencies: "@babel/helper-string-parser" "^7.24.8" "@babel/helper-validator-identifier" "^7.24.7" to-fast-properties "^2.0.0" "@discoveryjs/json-ext@0.6.1": version "0.6.1" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.6.1.tgz#593da7a17a31a72a874e313677183334a49b01c9" integrity sha512-boghen8F0Q8D+0/Q1/1r6DUEieUJ8w2a1gIknExMSHBsJFOr2+0KUfHiVYBvucPwl3+RU5PFBK833FjFCh3BhA== "@esbuild/aix-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== "@esbuild/aix-ppc64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== "@esbuild/android-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== "@esbuild/android-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== "@esbuild/android-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
{ "end_byte": 63340, "start_byte": 59404, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_63342_67096
"@esbuild/android-arm@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== "@esbuild/android-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== "@esbuild/android-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== "@esbuild/darwin-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== "@esbuild/darwin-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== "@esbuild/darwin-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== "@esbuild/darwin-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== "@esbuild/freebsd-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== "@esbuild/freebsd-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== "@esbuild/freebsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== "@esbuild/freebsd-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== "@esbuild/linux-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== "@esbuild/linux-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==
{ "end_byte": 67096, "start_byte": 63342, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_67098_70864
"@esbuild/linux-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== "@esbuild/linux-arm@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== "@esbuild/linux-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== "@esbuild/linux-ia32@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== "@esbuild/linux-loong64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== "@esbuild/linux-loong64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== "@esbuild/linux-mips64el@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== "@esbuild/linux-mips64el@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== "@esbuild/linux-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== "@esbuild/linux-ppc64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== "@esbuild/linux-riscv64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== "@esbuild/linux-riscv64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== "@esbuild/linux-s390x@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
{ "end_byte": 70864, "start_byte": 67098, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_70866_74581
"@esbuild/linux-s390x@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== "@esbuild/linux-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== "@esbuild/linux-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== "@esbuild/netbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== "@esbuild/netbsd-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== "@esbuild/openbsd-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== "@esbuild/openbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== "@esbuild/openbsd-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== "@esbuild/sunos-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== "@esbuild/sunos-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== "@esbuild/win32-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== "@esbuild/win32-arm64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== "@esbuild/win32-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
{ "end_byte": 74581, "start_byte": 70866, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_74583_78622
"@esbuild/win32-ia32@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== "@esbuild/win32-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== "@esbuild/win32-x64@0.23.1": version "0.23.1" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== "@inquirer/checkbox@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.5.0.tgz#41c5c9dd332c0a8fa159be23982ce080d0b199d4" integrity sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/figures" "^1.0.5" "@inquirer/type" "^1.5.3" ansi-escapes "^4.3.2" yoctocolors-cjs "^2.1.2" "@inquirer/confirm@3.2.0", "@inquirer/confirm@^3.2.0": version "3.2.0" resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.2.0.tgz#6af1284670ea7c7d95e3f1253684cfbd7228ad6a" integrity sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" "@inquirer/core@^9.1.0": version "9.2.1" resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-9.2.1.tgz#677c49dee399c9063f31e0c93f0f37bddc67add1" integrity sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg== dependencies: "@inquirer/figures" "^1.0.6" "@inquirer/type" "^2.0.0" "@types/mute-stream" "^0.0.4" "@types/node" "^22.5.5" "@types/wrap-ansi" "^3.0.0" ansi-escapes "^4.3.2" cli-width "^4.1.0" mute-stream "^1.0.0" signal-exit "^4.1.0" strip-ansi "^6.0.1" wrap-ansi "^6.2.0" yoctocolors-cjs "^2.1.2" "@inquirer/editor@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-2.2.0.tgz#a41eb7b151bd9a6bc3c0b69219d02d82547bc387" integrity sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" external-editor "^3.1.0" "@inquirer/expand@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-2.3.0.tgz#afc44aee303315a85563e9d0275e658f0ee0e701" integrity sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" yoctocolors-cjs "^2.1.2" "@inquirer/figures@^1.0.5", "@inquirer/figures@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.6.tgz#1a562f916da39888c56b65b78259d2261bd7d40b" integrity sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ== "@inquirer/input@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.3.0.tgz#9b99022f53780fecc842908f3f319b52a5a16865" integrity sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" "@inquirer/number@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-1.1.0.tgz#4dac004021ea67c89552a261564f103a494cac96" integrity sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3"
{ "end_byte": 78622, "start_byte": 74583, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_78624_82683
"@inquirer/password@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-2.2.0.tgz#0b6f26336c259c8a9e5f5a3f2e1a761564f764ba" integrity sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" ansi-escapes "^4.3.2" "@inquirer/prompts@5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-5.5.0.tgz#5805aa15a13180017829aa31d071fd37a43b735d" integrity sha512-BHDeL0catgHdcHbSFFUddNzvx/imzJMft+tWDPwTm3hfu8/tApk1HrooNngB2Mb4qY+KaRWF+iZqoVUPeslEog== dependencies: "@inquirer/checkbox" "^2.5.0" "@inquirer/confirm" "^3.2.0" "@inquirer/editor" "^2.2.0" "@inquirer/expand" "^2.3.0" "@inquirer/input" "^2.3.0" "@inquirer/number" "^1.1.0" "@inquirer/password" "^2.2.0" "@inquirer/rawlist" "^2.3.0" "@inquirer/search" "^1.1.0" "@inquirer/select" "^2.5.0" "@inquirer/rawlist@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.3.0.tgz#6b2c0da39c1cd855af5608b2d627681cdac7277d" integrity sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/type" "^1.5.3" yoctocolors-cjs "^2.1.2" "@inquirer/search@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-1.1.0.tgz#665928cac2326b9501ddafbb8606ce4823b3106b" integrity sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/figures" "^1.0.5" "@inquirer/type" "^1.5.3" yoctocolors-cjs "^2.1.2" "@inquirer/select@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.5.0.tgz#345c6908ecfaeef3d84ddd2f9feb2f487c558efb" integrity sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA== dependencies: "@inquirer/core" "^9.1.0" "@inquirer/figures" "^1.0.5" "@inquirer/type" "^1.5.3" ansi-escapes "^4.3.2" yoctocolors-cjs "^2.1.2" "@inquirer/type@^1.5.1", "@inquirer/type@^1.5.3": version "1.5.5" resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.5.5.tgz#303ea04ce7ad2e585b921b662b3be36ef7b4f09b" integrity sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA== dependencies: mute-stream "^1.0.0" "@inquirer/type@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-2.0.0.tgz#08fa513dca2cb6264fe1b0a2fabade051444e3f6" integrity sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag== dependencies: mute-stream "^1.0.0" "@isaacs/cliui@^8.0.2": version "8.0.2" resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== dependencies: string-width "^5.1.2" string-width-cjs "npm:string-width@^4.2.0" strip-ansi "^7.0.1" strip-ansi-cjs "npm:strip-ansi@^6.0.1" wrap-ansi "^8.1.0" wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" "@istanbuljs/schema@^0.1.3": version "0.1.3" resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== "@jridgewell/gen-mapping@^0.3.5": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== dependencies: "@jridgewell/set-array" "^1.2.1" "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.24"
{ "end_byte": 82683, "start_byte": 78624, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_82685_86749
"@jridgewell/resolve-uri@^3.1.0": version "3.1.2" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== "@jridgewell/source-map@^0.3.3": version "0.3.6" resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== dependencies: "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" "@jsonjoy.com/base64@^1.1.1": version "1.1.2" resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-1.1.2.tgz#cf8ea9dcb849b81c95f14fc0aaa151c6b54d2578" integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== "@jsonjoy.com/json-pack@^1.0.3": version "1.1.0" resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz#33ca57ee29d12feef540f2139225597469dec894" integrity sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg== dependencies: "@jsonjoy.com/base64" "^1.1.1" "@jsonjoy.com/util" "^1.1.2" hyperdyperid "^1.2.0" thingies "^1.20.0" "@jsonjoy.com/util@^1.1.2", "@jsonjoy.com/util@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.3.0.tgz#e5623885bb5e0c48c1151e4dae422fb03a5887a1" integrity sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw== "@leichtgewicht/ip-codec@^2.0.1": version "2.0.5" resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== "@listr2/prompt-adapter-inquirer@2.0.15": version "2.0.15" resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.15.tgz#45f13178b13327a28a220057a34a886cab18218e" integrity sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg== dependencies: "@inquirer/type" "^1.5.1" "@lmdb/lmdb-darwin-arm64@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.1.0.tgz#d1afe15c1163efd9ae1f2c1fa4a576db03e5d835" integrity sha512-o3PXAbbghuzikvrzLTrWUzfgNG1JKBnkLDIJwx3omkz+2DhFxLFVioiiOGRGJr8OcW9ODx9NDbIJvgqky9pwLg== "@lmdb/lmdb-darwin-x64@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.1.0.tgz#b9e5c0c0b5511391e268609746778d606c0bc8cf" integrity sha512-0Bo23T2Qlxw083vdWmaJLK4fWYjUbaYstuX/piKd78deJFIfZjSD58NtaY8tHXo/bV3yzY+Ym0pQP9zRXmIl1Q==
{ "end_byte": 86749, "start_byte": 82685, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_86751_90665
"@lmdb/lmdb-linux-arm64@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.1.0.tgz#e76b01f12e316edea37a47aae7a4e83d1db4e30e" integrity sha512-0sz8VaTivoAszdKgbnRM85aIOLFJCUZodwM6VKN3UIKmA/m7RhvB6KpCzF5eg0j+osIVZzw/9FPQffgBHu7XQQ== "@lmdb/lmdb-linux-arm@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.1.0.tgz#661f29181f4a276656452df2ba70b96ab18ed7b4" integrity sha512-tIGoAqABBDIIS8uvcmt5+FaN/qPZZQArr/GK59xN19F/xkOGi3AO9LzQhwd0q98gHzHqUCkYsHQHKAF5D85iTg== "@lmdb/lmdb-linux-x64@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.1.0.tgz#1591990cd0709700379dd6f802e980284eba6d5d" integrity sha512-3I12ss8iVMMR5Sc+xtLZsZS5ekSSD9+DGI0etykiyDRFZrviGaEWjaIOgou6sClGn2+EvaBDfa7BmP3SkZOS5Q== "@lmdb/lmdb-win32-x64@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.1.0.tgz#05c41c0b471d66b81bef7cccfa266ff3be5e2d54" integrity sha512-3aucKqZBv6nJ1uOTGuBim3gyh0RKvWdpj4WhPY8RmVdpjCqrWMqUJgDCxc7JvdN7P1+cstQ6msZ2qL2N40+oPg== "@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz#9edec61b22c3082018a79f6d1c30289ddf3d9d11" integrity sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw== "@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz#33677a275204898ad8acbf62734fc4dc0b6a4855" integrity sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw== "@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz#19edf7cdc2e7063ee328403c1d895a86dd28f4bb" integrity sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg== "@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz#94fb0543ba2e28766c3fc439cabbe0440ae70159" integrity sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw== "@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz#4a0609ab5fe44d07c9c60a11e4484d3c38bbd6e3" integrity sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg== "@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz#0aa5502d547b57abfc4ac492de68e2006e417242" integrity sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ== "@ngtools/webpack@19.0.0-next.6": version "19.0.0-next.6" resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-19.0.0-next.6.tgz#3e62a43eeb9c682c1fef14a815086d5ec8d38caf" integrity sha512-/ILtiRmzVkICNdlbWpcF3lNkiWDitgn3ls1+ypyWSTEUnz2FSLa40/0Gs1sNsrwIuAMJzrwE0dAmRmrASI3CVQ== "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9"
{ "end_byte": 90665, "start_byte": 86751, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_90667_94800
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": version "1.2.8" resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" "@npmcli/agent@^2.0.0": version "2.2.2" resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5" integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og== dependencies: agent-base "^7.1.0" http-proxy-agent "^7.0.0" https-proxy-agent "^7.0.1" lru-cache "^10.0.1" socks-proxy-agent "^8.0.3" "@npmcli/fs@^3.1.0": version "3.1.1" resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.1.tgz#59cdaa5adca95d135fc00f2bb53f5771575ce726" integrity sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== dependencies: semver "^7.3.5" "@npmcli/git@^5.0.0": version "5.0.8" resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.8.tgz#8ba3ff8724192d9ccb2735a2aa5380a992c5d3d1" integrity sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ== dependencies: "@npmcli/promise-spawn" "^7.0.0" ini "^4.1.3" lru-cache "^10.0.1" npm-pick-manifest "^9.0.0" proc-log "^4.0.0" promise-inflight "^1.0.1" promise-retry "^2.0.1" semver "^7.3.5" which "^4.0.0" "@npmcli/installed-package-contents@^2.0.1": version "2.1.0" resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17" integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w== dependencies: npm-bundled "^3.0.0" npm-normalize-package-bin "^3.0.0" "@npmcli/node-gyp@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== "@npmcli/package-json@^5.0.0", "@npmcli/package-json@^5.1.0": version "5.2.0" resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.2.0.tgz#a1429d3111c10044c7efbfb0fce9f2c501f4cfad" integrity sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ== dependencies: "@npmcli/git" "^5.0.0" glob "^10.2.2" hosted-git-info "^7.0.0" json-parse-even-better-errors "^3.0.0" normalize-package-data "^6.0.0" proc-log "^4.0.0" semver "^7.5.3" "@npmcli/promise-spawn@^7.0.0": version "7.0.2" resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz#1d53d34ffeb5d151bfa8ec661bcccda8bbdfd532" integrity sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ== dependencies: which "^4.0.0" "@npmcli/redact@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-2.0.1.tgz#95432fd566e63b35c04494621767a4312c316762" integrity sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw== "@npmcli/run-script@^8.0.0": version "8.1.0" resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-8.1.0.tgz#a563e5e29b1ca4e648a6b1bbbfe7220b4bfe39fc" integrity sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg== dependencies: "@npmcli/node-gyp" "^3.0.0" "@npmcli/package-json" "^5.0.0" "@npmcli/promise-spawn" "^7.0.0" node-gyp "^10.0.0" proc-log "^4.0.0" which "^4.0.0"
{ "end_byte": 94800, "start_byte": 90667, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_94802_98615
"@pkgjs/parseargs@^0.11.0": version "0.11.0" resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== "@rollup/rollup-android-arm-eabi@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.3.tgz#155c7d82c1b36c3ad84d9adf9b3cd520cba81a0f" integrity sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg== "@rollup/rollup-android-arm64@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.3.tgz#b94b6fa002bd94a9cbd8f9e47e23b25e5bd113ba" integrity sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g== "@rollup/rollup-darwin-arm64@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.3.tgz#0934126cf9cbeadfe0eb7471ab5d1517e8cd8dcc" integrity sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ== "@rollup/rollup-darwin-x64@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz#0ce8e1e0f349778938c7c90e4bdc730640e0a13e" integrity sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA== "@rollup/rollup-linux-arm-gnueabihf@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.3.tgz#5669d34775ad5d71e4f29ade99d0ff4df523afb6" integrity sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g== "@rollup/rollup-linux-arm-musleabihf@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.3.tgz#f6d1a0e1da4061370cb2f4244fbdd727c806dd88" integrity sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA== "@rollup/rollup-linux-arm64-gnu@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.3.tgz#ed96a05e99743dee4d23cc4913fc6e01a0089c88" integrity sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw== "@rollup/rollup-linux-arm64-musl@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.3.tgz#057ea26eaa7e537a06ded617d23d57eab3cecb58" integrity sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ== "@rollup/rollup-linux-powerpc64le-gnu@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.3.tgz#6e6e1f9404c9bf3fbd7d51cd11cd288a9a2843aa" integrity sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw== "@rollup/rollup-linux-riscv64-gnu@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.3.tgz#eef1536a53f6e6658a2a778130e6b1a4a41cb439" integrity sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ== "@rollup/rollup-linux-s390x-gnu@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.3.tgz#2b28fb89ca084efaf8086f435025d96b4a966957" integrity sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==
{ "end_byte": 98615, "start_byte": 94802, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_98617_102361
"@rollup/rollup-linux-x64-gnu@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.3.tgz#5226cde6c6b495b04a3392c1d2c572844e42f06b" integrity sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g== "@rollup/rollup-linux-x64-musl@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.3.tgz#2c2412982e6c2a00a2ecac6d548ebb02f0aa6ca4" integrity sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg== "@rollup/rollup-win32-arm64-msvc@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.3.tgz#fbb6ef5379199e2ec0103ef32877b0985c773a55" integrity sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q== "@rollup/rollup-win32-ia32-msvc@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.3.tgz#d50e2082e147e24d87fe34abbf6246525ec3845a" integrity sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA== "@rollup/rollup-win32-x64-msvc@4.21.3": version "4.21.3" resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz#4115233aa1bd5a2060214f96d8511f6247093212" integrity sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA== "@schematics/angular@19.0.0-next.6": version "19.0.0-next.6" resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-19.0.0-next.6.tgz#011448b2298226f9bf7601757b660028c24ec488" integrity sha512-xNWHc3omHM+uOH8wxWQpAUdverTwVk4pmaXzgLjML1B9z73Bw6Hh/MMjNeZ5YOEiVcTZJXMMFN8GIA5uhoUieg== dependencies: "@angular-devkit/core" "19.0.0-next.6" "@angular-devkit/schematics" "19.0.0-next.6" jsonc-parser "3.3.1" "@sigstore/bundle@^2.3.2": version "2.3.2" resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.2.tgz#ad4dbb95d665405fd4a7a02c8a073dbd01e4e95e" integrity sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA== dependencies: "@sigstore/protobuf-specs" "^0.3.2" "@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380" integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg== "@sigstore/protobuf-specs@^0.3.2": version "0.3.2" resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz#5becf88e494a920f548d0163e2978f81b44b7d6f" integrity sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw== "@sigstore/sign@^2.3.2": version "2.3.2" resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.2.tgz#d3d01e56d03af96fd5c3a9b9897516b1233fc1c4" integrity sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA== dependencies: "@sigstore/bundle" "^2.3.2" "@sigstore/core" "^1.0.0" "@sigstore/protobuf-specs" "^0.3.2" make-fetch-happen "^13.0.1" proc-log "^4.2.0" promise-retry "^2.0.1" "@sigstore/tuf@^2.3.4": version "2.3.4" resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.4.tgz#da1d2a20144f3b87c0172920cbc8dcc7851ca27c" integrity sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw== dependencies: "@sigstore/protobuf-specs" "^0.3.2" tuf-js "^2.2.1"
{ "end_byte": 102361, "start_byte": 98617, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_102363_106541
"@sigstore/verify@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.1.tgz#c7e60241b432890dcb8bd8322427f6062ef819e1" integrity sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g== dependencies: "@sigstore/bundle" "^2.3.2" "@sigstore/core" "^1.1.0" "@sigstore/protobuf-specs" "^0.3.2" "@sindresorhus/merge-streams@^2.1.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958" integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== "@tufjs/canonical-json@2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== "@tufjs/models@2.0.1": version "2.0.1" resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.1.tgz#e429714e753b6c2469af3212e7f320a6973c2812" integrity sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg== dependencies: "@tufjs/canonical-json" "2.0.0" minimatch "^9.0.4" "@types/body-parser@*": version "1.19.5" resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== dependencies: "@types/connect" "*" "@types/node" "*" "@types/bonjour@^3.5.13": version "3.5.13" resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== dependencies: "@types/node" "*" "@types/connect-history-api-fallback@^1.5.4": version "1.5.4" resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== dependencies: "@types/express-serve-static-core" "*" "@types/node" "*" "@types/connect@*": version "3.4.38" resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== dependencies: "@types/node" "*" "@types/estree@1.0.5", "@types/estree@^1.0.5": version "1.0.5" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": version "4.19.5" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz#218064e321126fcf9048d1ca25dd2465da55d9c6" integrity sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg== dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" "@types/send" "*" "@types/express@*", "@types/express@^4.17.21": version "4.17.21" resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== dependencies: "@types/body-parser" "*" "@types/express-serve-static-core" "^4.17.33" "@types/qs" "*" "@types/serve-static" "*" "@types/http-errors@*": version "2.0.4" resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
{ "end_byte": 106541, "start_byte": 102363, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_106543_110576
"@types/http-proxy@^1.17.15", "@types/http-proxy@^1.17.8": version "1.17.15" resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36" integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== dependencies: "@types/node" "*" "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.15" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/mime@^1": version "1.3.5" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== "@types/mute-stream@^0.0.4": version "0.0.4" resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478" integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow== dependencies: "@types/node" "*" "@types/node-forge@^1.3.0": version "1.3.11" resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== dependencies: "@types/node" "*" "@types/node@*", "@types/node@^22.5.5": version "22.5.5" resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.5.tgz#52f939dd0f65fc552a4ad0b392f3c466cc5d7a44" integrity sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA== dependencies: undici-types "~6.19.2" "@types/qs@*": version "6.9.16" resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.16.tgz#52bba125a07c0482d26747d5d4947a64daf8f794" integrity sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A== "@types/range-parser@*": version "1.2.7" resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== "@types/retry@0.12.2": version "0.12.2" resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== "@types/send@*": version "0.17.4" resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== dependencies: "@types/mime" "^1" "@types/node" "*" "@types/serve-index@^1.9.4": version "1.9.4" resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== dependencies: "@types/express" "*" "@types/serve-static@*", "@types/serve-static@^1.15.5": version "1.15.7" resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714" integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== dependencies: "@types/http-errors" "*" "@types/node" "*" "@types/send" "*" "@types/sockjs@^0.3.36": version "0.3.36" resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== dependencies: "@types/node" "*"
{ "end_byte": 110576, "start_byte": 106543, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_110578_114774
"@types/wrap-ansi@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd" integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g== "@types/ws@^8.5.10": version "8.5.12" resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.12.tgz#619475fe98f35ccca2a2f6c137702d85ec247b7e" integrity sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ== dependencies: "@types/node" "*" "@vitejs/plugin-basic-ssl@1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.1.0.tgz#8b840305a6b48e8764803435ec0c716fa27d3802" integrity sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A== "@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== dependencies: "@webassemblyjs/helper-numbers" "1.11.6" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/floating-point-hex-parser@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== "@webassemblyjs/helper-api-error@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== "@webassemblyjs/helper-buffer@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6" integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== "@webassemblyjs/helper-numbers@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== dependencies: "@webassemblyjs/floating-point-hex-parser" "1.11.6" "@webassemblyjs/helper-api-error" "1.11.6" "@xtuc/long" "4.2.2" "@webassemblyjs/helper-wasm-bytecode@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== "@webassemblyjs/helper-wasm-section@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf" integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== dependencies: "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-buffer" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/wasm-gen" "1.12.1" "@webassemblyjs/ieee754@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== dependencies: "@xtuc/long" "4.2.2"
{ "end_byte": 114774, "start_byte": 110578, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_114776_118729
"@webassemblyjs/utf8@1.11.6": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== "@webassemblyjs/wasm-edit@^1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b" integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== dependencies: "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-buffer" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/helper-wasm-section" "1.12.1" "@webassemblyjs/wasm-gen" "1.12.1" "@webassemblyjs/wasm-opt" "1.12.1" "@webassemblyjs/wasm-parser" "1.12.1" "@webassemblyjs/wast-printer" "1.12.1" "@webassemblyjs/wasm-gen@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547" integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== dependencies: "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/ieee754" "1.11.6" "@webassemblyjs/leb128" "1.11.6" "@webassemblyjs/utf8" "1.11.6" "@webassemblyjs/wasm-opt@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5" integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== dependencies: "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-buffer" "1.12.1" "@webassemblyjs/wasm-gen" "1.12.1" "@webassemblyjs/wasm-parser" "1.12.1" "@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937" integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== dependencies: "@webassemblyjs/ast" "1.12.1" "@webassemblyjs/helper-api-error" "1.11.6" "@webassemblyjs/helper-wasm-bytecode" "1.11.6" "@webassemblyjs/ieee754" "1.11.6" "@webassemblyjs/leb128" "1.11.6" "@webassemblyjs/utf8" "1.11.6" "@webassemblyjs/wast-printer@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac" integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== dependencies: "@webassemblyjs/ast" "1.12.1" "@xtuc/long" "4.2.2" "@xtuc/ieee754@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== "@xtuc/long@4.2.2": version "4.2.2" resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== "@yarnpkg/lockfile@1.1.0", "@yarnpkg/lockfile@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== abbrev@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==
{ "end_byte": 118729, "start_byte": 114776, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_118731_122664
accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" negotiator "0.6.3" acorn-import-attributes@^1.9.5: version "1.9.5" resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== acorn@^8.7.1, acorn@^8.8.2: version "8.12.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== adjust-sourcemap-loader@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99" integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== dependencies: loader-utils "^2.0.0" regex-parser "^2.2.11" agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== dependencies: debug "^4.3.4" aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" indent-string "^4.0.0" ajv-formats@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578" integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== dependencies: ajv "^8.0.0" ajv-formats@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: ajv "^8.0.0" ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv-keywords@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@8.17.1, ajv@^8.0.0, ajv@^8.9.0: version "8.17.1" resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" fast-uri "^3.0.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" ajv@^6.12.5: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.4.1" uri-js "^4.2.2"
{ "end_byte": 122664, "start_byte": 118731, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_122666_126446
ansi-colors@4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== ansi-escapes@^4.3.2: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-escapes@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.0.0.tgz#00fc19f491bbb18e1d481b97868204f92109bfe7" integrity sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw== dependencies: environment "^1.0.0" ansi-html-community@^0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== async@^2.6.4: version "2.6.4" resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== dependencies: lodash "^4.17.14"
{ "end_byte": 126446, "start_byte": 122666, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }
angular/modules/ssr-benchmarks/yarn.lock_126448_130410
at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== autoprefixer@10.4.20: version "10.4.20" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== dependencies: browserslist "^4.23.3" caniuse-lite "^1.0.30001646" fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.1" postcss-value-parser "^4.2.0" babel-loader@9.1.3: version "9.1.3" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== dependencies: find-cache-dir "^4.0.0" schema-utils "^4.0.0" babel-plugin-polyfill-corejs2@^0.4.10: version "0.4.11" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== dependencies: "@babel/compat-data" "^7.22.6" "@babel/helper-define-polyfill-provider" "^0.6.2" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.10.6: version "0.10.6" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7" integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.2" core-js-compat "^3.38.0" babel-plugin-polyfill-regenerator@^0.6.1: version "0.6.2" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.2" balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== basic-auth@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== dependencies: safe-buffer "5.1.2" batch@0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== big.js@^5.2.2: version "5.2.2" resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
{ "end_byte": 130410, "start_byte": 126448, "url": "https://github.com/angular/angular/blob/main/modules/ssr-benchmarks/yarn.lock" }