Add comprehensive library expansion with new components and demos
- Add new libraries: ui-accessibility, ui-animations, ui-backgrounds, ui-code-display, ui-data-utils, ui-font-manager, hcl-studio - Add extensive layout components: gallery-grid, infinite-scroll-container, kanban-board, masonry, split-view, sticky-layout - Add comprehensive demo components for all new features - Update project configuration and dependencies - Expand component exports and routing structure - Add UI landing pages planning document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
45
projects/ui-code-display/node_modules/@angular/common/fesm2022/xhr-BfNfxNDv.mjs
generated
vendored
Executable file
45
projects/ui-code-display/node_modules/@angular/common/fesm2022/xhr-BfNfxNDv.mjs
generated
vendored
Executable file
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
* @license Angular v19.2.14
|
||||
* (c) 2010-2025 Google LLC. https://angular.io/
|
||||
* License: MIT
|
||||
*/
|
||||
|
||||
function parseCookieValue(cookieStr, name) {
|
||||
name = encodeURIComponent(name);
|
||||
for (const cookie of cookieStr.split(';')) {
|
||||
const eqIndex = cookie.indexOf('=');
|
||||
const [cookieName, cookieValue] = eqIndex == -1 ? [cookie, ''] : [cookie.slice(0, eqIndex), cookie.slice(eqIndex + 1)];
|
||||
if (cookieName.trim() === name) {
|
||||
return decodeURIComponent(cookieValue);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
const PLATFORM_BROWSER_ID = 'browser';
|
||||
const PLATFORM_SERVER_ID = 'server';
|
||||
/**
|
||||
* Returns whether a platform id represents a browser platform.
|
||||
* @publicApi
|
||||
*/
|
||||
function isPlatformBrowser(platformId) {
|
||||
return platformId === PLATFORM_BROWSER_ID;
|
||||
}
|
||||
/**
|
||||
* Returns whether a platform id represents a server platform.
|
||||
* @publicApi
|
||||
*/
|
||||
function isPlatformServer(platformId) {
|
||||
return platformId === PLATFORM_SERVER_ID;
|
||||
}
|
||||
|
||||
/**
|
||||
* A wrapper around the `XMLHttpRequest` constructor.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
class XhrFactory {
|
||||
}
|
||||
|
||||
export { PLATFORM_BROWSER_ID, PLATFORM_SERVER_ID, XhrFactory, isPlatformBrowser, isPlatformServer, parseCookieValue };
|
||||
//# sourceMappingURL=xhr-BfNfxNDv.mjs.map
|
||||
Reference in New Issue
Block a user