tenara-ui-components 0.2.8 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -7
- package/dist/components/index.d.ts +1 -5
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -25
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -25
- package/dist/index.js.map +1 -1
- package/dist/themes/core/client-provider.d.ts.map +1 -1
- package/dist/themes/core/context.d.ts.map +1 -1
- package/dist/themes/hooks/useColorTokens.d.ts +4 -0
- package/dist/themes/hooks/useColorTokens.d.ts.map +1 -1
- package/package.json +40 -21
- package/dist/atoms/BackgroundMedia/BackgroundMedia.d.ts +0 -18
- package/dist/atoms/BackgroundMedia/index.d.ts +0 -2
- package/dist/atoms/Button/Button.d.ts +0 -23
- package/dist/atoms/Button.d.ts +0 -23
- package/dist/atoms/ButtonLink/ButtonLink.d.ts +0 -27
- package/dist/atoms/ButtonLink/index.d.ts +0 -2
- package/dist/atoms/Heading/Heading.d.ts +0 -15
- package/dist/atoms/Heading/index.d.ts +0 -2
- package/dist/atoms/TextLink/TextLink.d.ts +0 -17
- package/dist/client.esm.js +0 -2
- package/dist/client.esm.js.map +0 -1
- package/dist/client.js +0 -2
- package/dist/client.js.map +0 -1
- package/dist/components/client.d.ts +0 -3
- package/dist/components/client.d.ts.map +0 -1
- package/dist/index.d.ts +0 -27
- package/dist/molecules/CTA/CTA.d.ts +0 -33
- package/dist/molecules/CTA/index.d.ts +0 -2
- package/dist/molecules/Card/Card.d.ts +0 -20
- package/dist/molecules/Header/Header.d.ts +0 -11
- package/dist/molecules/Header.d.ts +0 -11
- package/dist/pages/Page.d.ts +0 -2
- package/dist/themes/tenant-config.example.d.ts +0 -8
- package/dist/themes/tenant-config.example.d.ts.map +0 -1
- package/dist/tsconfig.lib.tsbuildinfo +0 -1
package/dist/client.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sources":["../src/themes/presets/color-systems/default-colors.ts","../src/themes/presets/default.ts","../node_modules/tslib/tslib.es6.js","../src/themes/utils/generator.ts","../src/themes/utils/helpers.ts","../src/themes/core/context.tsx","../src/themes/core/client-provider.tsx","../src/themes/hooks/useColorTokens.ts"],"sourcesContent":["/**\n * Default color system implementation\n * Demonstrates the three-level color abstraction\n */\n\nimport { ColorSystem } from '../../core/color-system';\n\nexport const defaultColorSystem: ColorSystem = {\n // ============================================================================\n // LEVEL 1: PRIMITIVE COLORS\n // ============================================================================\n primitives: {\n // Blue scale (Cobalt brand color)\n blue50: '#eff6ff',\n blue100: '#dbeafe',\n blue200: '#bfdbfe',\n blue300: '#93c5fd',\n blue400: '#60a5fa',\n blue500: '#2e6bf0', // Primary brand blue\n blue600: '#1e40af',\n blue700: '#1e3a8a',\n blue800: '#1e3a8a',\n blue900: '#1e293b',\n\n // Yellow/Gold scale (Accent color)\n yellow50: '#fefce8',\n yellow100: '#fef9c3',\n yellow200: '#fef08a',\n yellow300: '#fde047',\n yellow400: '#efe63f', // Primary gold\n yellow500: '#eab308',\n yellow600: '#ca8a04',\n yellow700: '#a16207',\n yellow800: '#854d0e',\n yellow900: '#713f12',\n\n // Purple scale\n purple50: '#faf5ff',\n purple100: '#f3e8ff',\n purple200: '#e9d5ff',\n purple300: '#d8b4fe',\n purple400: '#c084fc',\n purple500: '#a855f7',\n purple600: '#9333ea',\n purple700: '#7e22ce',\n purple800: '#3d2589', // Dark purple for CTA backgrounds\n purple900: '#581c87',\n purple950: '#091757',\n\n // Neutral/Gray scale\n gray50: '#f9fafb',\n gray100: '#f3f4f6',\n gray200: '#e5e7eb',\n gray300: '#d1d5db',\n gray400: '#9ca3af',\n gray500: '#6b7280',\n gray600: '#4b5563',\n gray700: '#374151',\n gray800: '#1f2937',\n gray900: '#111827',\n\n // Semantic colors\n green50: '#f0fdf4',\n green500: '#10b981',\n green700: '#047857',\n red50: '#fef2f2',\n red500: '#ef4444',\n red700: '#b91c1c',\n\n // Base\n white: '#ffffff',\n black: '#000000',\n },\n\n // ============================================================================\n // LEVEL 2: SEMANTIC TOKENS\n // ============================================================================\n semantic: {\n // Primary colors - reference primitives\n primary: 'var(--color-purple-800)',\n primaryHover: 'var(--color-purple-950)',\n primaryActive: 'var(--color-purple-800)',\n primaryText: 'var(--color-white)',\n secondary: 'var(--color-blue-500)',\n secondaryHover: 'var(--color-blue-600)',\n secondaryActive: 'var(--color-blue-700)',\n secondaryText: 'var(--color-white)',\n\n accent: 'var(--color-yellow-400)',\n accentHover: 'var(--color-yellow-500)',\n accentActive: 'var(--color-yellow-600)',\n accentText: 'var(--color-purple-950)',\n tertiary: 'var(--color-gray-200)',\n tertiaryHover: 'var(--color-gray-300)',\n tertiaryActive: 'var(--color-gray-400)',\n tertiaryText: 'var(--color-purple-950)',\n\n // Text colors\n textPrimary: 'var(--color-purple-950)',\n textSecondary: 'var(--color-purple-800)',\n textAccent: 'var(--color-yellow-400)',\n textTertiary: 'var(--color-gray-500)',\n textInverse: 'var(--color-white)',\n textDisabled: 'var(--color-gray-400)',\n textLink: 'var(--color-blue-500)',\n textLinkHover: 'var(--color-blue-600)',\n\n // Background colors\n bgPrimary: 'var(--color-purple-800)',\n bgSecondary: 'var(--color-gray-50)',\n bgTertiary: 'var(--color-gray-100)',\n bgInverse: 'var(--color-gray-900)',\n bgOverlay: 'rgba(0, 0, 0, 0.5)',\n\n // Border colors\n borderDefault: 'var(--color-gray-200)',\n borderSubtle: 'var(--color-gray-100)',\n borderStrong: 'var(--color-gray-300)',\n borderFocus: 'var(--color-blue-500)',\n\n // State colors\n stateSuccess: 'var(--color-green-500)',\n stateSuccessHover: 'var(--color-green-700)',\n stateSuccessBg: 'var(--color-green-50)',\n stateWarning: 'var(--color-yellow-500)',\n stateWarningHover: 'var(--color-yellow-600)',\n stateWarningBg: 'var(--color-yellow-50)',\n stateError: 'var(--color-red-500)',\n stateErrorHover: 'var(--color-red-700)',\n stateErrorBg: 'var(--color-red-50)',\n stateInfo: 'var(--color-blue-500)',\n stateInfoHover: 'var(--color-blue-600)',\n stateInfoBg: 'var(--color-blue-50)',\n\n // Interactive colors\n interactivePrimary: 'var(--color-blue-500)',\n interactivePrimaryHover: 'var(--color-blue-600)',\n interactivePrimaryActive: 'var(--color-blue-700)',\n interactiveSecondary: 'var(--color-gray-200)',\n interactiveSecondaryHover: 'var(--color-gray-300)',\n interactiveSecondaryActive: 'var(--color-gray-400)',\n interactiveDisabled: 'var(--color-gray-300)',\n },\n\n};\n","/**\n * Default theme configuration\n * Base theme with multi-level color system and standard design tokens\n */\n\nimport { ThemeConfig } from '../core/types';\nimport { defaultColorSystem } from './color-systems/default-colors';\n\nexport const defaultTheme: ThemeConfig = {\n name: 'default',\n fontImportUrl: 'https://use.typekit.net/nmh6hoc.css',\n \n // Two-level color system (integrated)\n colors: {\n primitives: defaultColorSystem.primitives,\n semantic: defaultColorSystem.semantic,\n },\n\n colorPalettes: [\n { name: 'Primary', bg: 'primary', text: 'primaryText' },\n { name: 'Secondary', bg: 'secondary', text: 'secondaryText' },\n { name: 'Accent', bg: 'accent', text: 'accentText' },\n { name: 'Tertiary', bg: 'tertiary', text: 'tertiaryText' },\n ],\n\n spacing: {\n xs: '4px',\n sm: '8px',\n md: '16px',\n lg: '24px',\n xl: '30px',\n xxl: '60px',\n },\n\n borderRadius: {\n sm: '4px',\n md: '8px',\n lg: '16px',\n xl: '24px',\n },\n\n shadows: {\n sm: '0 2px 4px rgba(0, 0, 0, 0.1)',\n md: '0 4px 8px rgba(0, 0, 0, 0.15)',\n lg: '0 8px 16px rgba(0, 0, 0, 0.2)',\n xl: '0 16px 32px rgba(0, 0, 0, 0.25)',\n },\n\n breakpoints: {\n xs: '320px',\n sm: '640px',\n md: '768px',\n lg: '1024px',\n xl: '1280px',\n xxl: '1536px',\n },\n\n typography: {\n fontFamily: \"'azo-sans-web', serif\",\n fontFamilyHeading: \"'azo-sans-web', serif\",\n fontSizeXs: '12px',\n fontSizeSm: '14px',\n fontSizeMd: '16px',\n fontSizeLg: '18px',\n fontSizeXl: '24px',\n fontWeightNormal: '400',\n fontWeightMedium: '500',\n fontWeightBold: '700',\n lineHeightTight: '1.25',\n lineHeightNormal: '1.5',\n lineHeightRelaxed: '1.75',\n \n variants: {\n pageTitle: {\n fontSize: '1.5rem',\n fontWeight: '400',\n lineHeight: '1.1',\n textTransform: 'uppercase',\n mobile: {\n fontSize: '1.375rem',\n lineHeight: '1.2',\n },\n tablet: {\n fontSize: '1.375rem',\n },\n },\n sectionTitle: {\n fontSize: '2.625rem',\n fontWeight: '700',\n lineHeight: '1.2',\n mobile: {\n fontSize: '2.25rem',\n },\n tablet: {\n fontSize: '2.25rem',\n },\n },\n title: {\n fontSize: '3.5rem',\n fontWeight: '900',\n lineHeight: '1.1',\n mobile: {\n fontSize: '2.875rem',\n lineHeight: '1.2',\n },\n tablet: {\n fontSize: '2.875rem',\n },\n },\n subtitle: {\n fontSize: '1.5rem',\n fontWeight: '400',\n lineHeight: '1.4',\n mobile: {\n fontSize: '1.5rem',\n },\n },\n body: {\n fontSize: '1.125rem',\n fontWeight: '400',\n lineHeight: '1.5',\n },\n textlink: {\n fontSize: '1.125rem',\n fontWeight: '600',\n lineHeight: '1.5',\n textTransform: 'uppercase',\n textDecoration: 'underline',\n },\n bodyBold: {\n fontSize: '1.125rem',\n fontWeight: '700',\n lineHeight: '1.6',\n },\n bodyLarge: {\n fontSize: '1.313rem',\n fontWeight: '400',\n lineHeight: '1.6',\n },\n bodyBoldLarge: {\n fontSize: '1.313rem',\n fontWeight: '700',\n lineHeight: '1.6',\n },\n bodySmall: {\n fontSize: '1rem',\n fontWeight: '400',\n lineHeight: '1.5',\n },\n h1: {\n fontSize: '2.5rem',\n fontWeight: '700',\n lineHeight: '1.2',\n mobile: {\n fontSize: '2rem',\n lineHeight: '1.25',\n },\n tablet: {\n fontSize: '2.25rem',\n },\n },\n h2: {\n fontSize: '2rem',\n fontWeight: '700',\n lineHeight: '1.3',\n mobile: {\n fontSize: '1.75rem',\n },\n tablet: {\n fontSize: '1.875rem',\n },\n },\n h3: {\n fontSize: '1.75rem',\n fontWeight: '600',\n lineHeight: '1.4',\n mobile: {\n fontSize: '1.5rem',\n },\n tablet: {\n fontSize: '1.625rem',\n },\n },\n h4: {\n fontSize: '1.5rem',\n fontWeight: '600',\n lineHeight: '1.4',\n mobile: {\n fontSize: '1.25rem',\n },\n },\n h5: {\n fontSize: '1.25rem',\n fontWeight: '600',\n lineHeight: '1.5',\n mobile: {\n fontSize: '1.125rem',\n },\n },\n h6: {\n fontSize: '1rem',\n fontWeight: '600',\n lineHeight: '1.5',\n mobile: {\n fontSize: '0.875rem',\n },\n },\n },\n },\n\n buttons: {\n borderRadius: '20px',\n padding: '12px 24px',\n fontSize: '1.125rem',\n fontWeight: '600',\n lineHeight: '1.5',\n // Button variants reference semantic tokens (no prefix needed)\n general: {\n background: 'var(--secondary)',\n backgroundHover: 'var(--secondary-hover)',\n backgroundActive: 'var(--secondary-active)',\n color: 'var(--text-inverse)',\n colorHover: 'var(--text-inverse)',\n border: 'var(--secondary)',\n borderHover: 'var(--secondary-hover)',\n shadow: '0 2px 4px rgba(46, 107, 240, 0.2)',\n },\n cta: {\n background: 'var(--accent)',\n backgroundHover: 'var(--accent-hover)',\n backgroundActive: 'var(--accent-active)',\n color: 'var(--primary)',\n colorHover: 'var(--priamry)',\n border: 'var(--secondary)',\n borderHover: 'var(--secondary-hover)',\n shadow: '0',\n },\n secondary: {\n background: 'transparent',\n backgroundHover: 'var(--primary)',\n backgroundActive: 'var(--primary-active)',\n color: 'var(--primary)',\n colorHover: 'var(--text-inverse)',\n border: 'var(--primary)',\n borderHover: 'var(--primary)',\n shadow: 'none',\n },\n outline: {\n background: 'transparent',\n backgroundHover: 'var(--bg-secondary)',\n backgroundActive: 'var(--bg-tertiary)',\n color: 'var(--text-primary)',\n colorHover: 'var(--text-primary)',\n border: 'var(--border-default)',\n borderHover: 'var(--border-strong)',\n shadow: 'none',\n },\n ghost: {\n background: 'transparent',\n backgroundHover: 'var(--bg-secondary)',\n backgroundActive: 'var(--bg-tertiary)',\n color: 'var(--text-primary)',\n colorHover: 'var(--text-primary)',\n border: 'transparent',\n borderHover: 'transparent',\n shadow: 'none',\n focusOutline:'#ffffff'\n },\n twitter: {\n background: 'transparent',\n backgroundHover: '#5f8df0',\n backgroundActive: '#004cb1',\n color: '#2e6bf0',\n colorHover: '#ffffff',\n colorActive: '#ffffff',\n border: '#2e6bf0',\n borderHover: '#5f8df0',\n borderActive: '#004cb1',\n shadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px inset',\n focusOutline:'#ffffff'\n },\n linkedIn: {\n background: 'transparent',\n backgroundHover: '#5f8df0',\n backgroundActive: '#004cb1',\n color: '#2e6bf0',\n colorHover: '#ffffff',\n colorActive: '#ffffff',\n border: '#2e6bf0',\n borderHover: '#5f8df0',\n borderActive: '#004cb1',\n shadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px inset',\n focusOutline:'#ffffff'\n },\n facebook: {\n background: 'transparent',\n backgroundHover: '#5f8df0',\n backgroundActive: '#004cb1',\n color: '#2e6bf0',\n colorHover: '#ffffff',\n colorActive: '#ffffff',\n border: '#2e6bf0',\n borderHover: '#5f8df0',\n borderActive: '#004cb1',\n shadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px inset',\n focusOutline:'#ffffff'\n },\n },\n\n components: {\n card: {\n background: 'var(--bg-primary)',\n border: '1px solid var(--border-default)',\n borderRadius: '8px',\n shadow: '0 2px 4px rgba(0, 0, 0, 0.1)',\n padding: '24px',\n },\n header: {\n background: 'var(--bg-primary)',\n borderBottom: '1px solid var(--border-default)',\n height: '64px',\n padding: '0 24px',\n },\n cta: {\n background: 'var(--primary)',\n borderRadius: '0 0 200px',\n padding: '32px',\n titleFontWeight: '900',\n titleFontSize: '55px',\n titleLineHeight: '65px',\n descriptionLineHeight: '32px',\n descriptionFontWeight: '100',\n descriptionFontSize: '24px',\n descriptionMargin: '0px 0px 30px 0px',\n },\n },\n};\n","/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\r\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nvar ownKeys = function(o) {\r\n ownKeys = Object.getOwnPropertyNames || function (o) {\r\n var ar = [];\r\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\r\n return ar;\r\n };\r\n return ownKeys(o);\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose, inner;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n if (async) inner = dispose;\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n var r, s = 0;\r\n function next() {\r\n while (r = env.stack.pop()) {\r\n try {\r\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\r\n if (r.dispose) {\r\n var result = r.dispose.call(r.value);\r\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n else s |= 1;\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport function __rewriteRelativeImportExtension(path, preserveJsx) {\r\n if (typeof path === \"string\" && /^\\.\\.?\\//.test(path)) {\r\n return path.replace(/\\.(tsx)$|((?:\\.d)?)((?:\\.[^./]+?)?)\\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {\r\n return tsx ? preserveJsx ? \".jsx\" : \".js\" : d && (!ext || !cm) ? m : (d + ext + \".\" + cm.toLowerCase() + \"js\");\r\n });\r\n }\r\n return path;\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __esDecorate: __esDecorate,\r\n __runInitializers: __runInitializers,\r\n __propKey: __propKey,\r\n __setFunctionName: __setFunctionName,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n __rewriteRelativeImportExtension: __rewriteRelativeImportExtension,\r\n};\r\n","/**\n * Theme CSS generation utilities\n * Converts theme configurations to CSS custom properties and applies them\n */\n\nimport { ThemeConfig } from '../core/types';\nimport { ColorSystem } from '../core/color-system';\nimport { toKebabCase } from './helpers';\n\n/**\n * Converts an object to CSS custom properties with a prefix\n * Handles camelCase to kebab-case conversion including numbers\n */\nfunction objectToCSSVars(obj: Record<string, string | undefined>, prefix: string): string[] {\n return Object.entries(obj)\n .filter(([, value]) => value !== undefined)\n .map(([key, value]) => {\n const cssKey = toKebabCase(key);\n return ` --${prefix}${cssKey}: ${value};`;\n });\n}\n\n/**\n * Generates CSS custom properties for the two-level color system\n * Creates CSS variables that reference each other\n */\nfunction generateColorSystemCSS(colorSystem: ColorSystem, selector: string = ':root'): string {\n const sections: string[] = [];\n\n // Level 1: Primitive colors\n sections.push(...objectToCSSVars(colorSystem.primitives as unknown as Record<string, string>, 'color-'));\n\n // Level 2: Semantic tokens\n sections.push(...objectToCSSVars(colorSystem.semantic as unknown as Record<string, string>, ''));\n\n return `${selector} {${sections.join('\\n')}\\n}`;\n}\n\n/**\n * Generates CSS custom properties from theme configuration\n * Uses the integrated two-level color system\n */\nexport function generateThemeCSS(theme: ThemeConfig, selector: string = ':root'): string {\n let css = '';\n\n // Generate two-level color system CSS\n const colorSystem = {\n primitives: theme.colors.primitives,\n semantic: theme.colors.semantic,\n };\n css += generateColorSystemCSS(colorSystem, selector);\n css += '\\n\\n';\n\n // Non-color theme properties (spacing, typography, etc.)\n const sections: Record<string, string[]> = {};\n\n // Spacing\n sections['Spacing'] = objectToCSSVars(theme.spacing as unknown as Record<string, string>, '');\n\n // Border Radius\n sections['Border Radius'] = objectToCSSVars(theme.borderRadius as unknown as Record<string, string>, '');\n\n // Shadows\n sections['Shadows'] = objectToCSSVars(theme.shadows as unknown as Record<string, string>, '');\n\n // Breakpoints\n sections['Breakpoints'] = objectToCSSVars(theme.breakpoints as unknown as Record<string, string>, 'breakpoint-');\n\n // Typography - Base\n const { variants, ...typographyBase } = theme.typography;\n sections['Typography'] = objectToCSSVars(typographyBase as unknown as Record<string, string>, '');\n \n // Typography - Variants\n if (variants) {\n Object.entries(variants).forEach(([variantName, variantStyles]) => {\n if (variantStyles) {\n const { mobile, tablet, ...desktopStyles } = variantStyles;\n const prefix = `typography-${variantName.replace(/([A-Z])/g, '-$1').toLowerCase()}-`;\n \n // Desktop styles\n sections[`Typography - ${variantName}`] = objectToCSSVars(desktopStyles as unknown as Record<string, string>, prefix);\n \n // Mobile styles (will be applied via media queries in SCSS)\n if (mobile) {\n sections[`Typography - ${variantName} (Mobile)`] = objectToCSSVars(mobile as unknown as Record<string, string>, `${prefix}mobile-`);\n }\n \n // Tablet styles\n if (tablet) {\n sections[`Typography - ${variantName} (Tablet)`] = objectToCSSVars(tablet as unknown as Record<string, string>, `${prefix}tablet-`);\n }\n }\n });\n }\n\n // Button Base\n const { general, cta, secondary, outline, ghost, video, subscribe, twitter, linkedIn, facebook, secondaryDarkMode, ...buttonBase } = theme.buttons;\n sections['Button Base'] = objectToCSSVars(buttonBase, 'button-');\n\n // Button Variants\n const buttonVariants = ['general', 'cta', 'secondary', 'outline', 'ghost', 'video', 'subscribe', 'twitter', 'linkedIn', 'facebook', 'secondaryDarkMode'] as const;\n buttonVariants.forEach(variant => {\n if (theme.buttons[variant]) {\n const variantName = variant.charAt(0).toUpperCase() + variant.slice(1);\n sections[`Button - ${variantName}`] = objectToCSSVars(theme.buttons[variant] as unknown as Record<string, string>, `button-${variant.toLowerCase()}-`);\n }\n });\n\n // Components\n sections['Card Component'] = objectToCSSVars(theme.components.card as unknown as Record<string, string>, 'card-');\n sections['Header Component'] = objectToCSSVars(theme.components.header as unknown as Record<string, string>, 'header-');\n sections['CTA Component'] = objectToCSSVars(theme.components.cta as unknown as Record<string, string>, 'cta-');\n\n // Build final CSS\n const cssOutput = Object.entries(sections)\n .map(([name, vars]) => `\\n /* ${name} */\\n${vars.join('\\n')}`)\n .join('');\n\n css += `${selector} {${cssOutput}\\n}`;\n\n return css;\n}\n\n/**\n * Applies theme to document by injecting CSS\n */\nexport function applyTheme(theme: ThemeConfig, themeName?: string): void {\n const selector = themeName ? `[data-theme=\"${themeName}\"]` : ':root';\n const css = generateThemeCSS(theme, selector);\n \n // Remove existing theme style if it exists\n const existingStyle = document.getElementById(`theme-${theme.name}`);\n if (existingStyle) {\n existingStyle.remove();\n }\n\n // Create and inject new theme style\n const style = document.createElement('style');\n style.id = `theme-${theme.name}`;\n style.textContent = css;\n document.head.appendChild(style);\n}\n\n/**\n * Sets theme attribute on document element\n */\nexport function setThemeAttribute(themeName: string): void {\n document.documentElement.setAttribute('data-theme', themeName);\n}\n","/**\n * Theme utility helper functions\n */\n\n/**\n * Converts camelCase to kebab-case, handling numbers properly\n * Examples:\n * - textPrimary -> text-primary\n * - blue500 -> blue-500\n * - brandPrimary -> brand-primary\n */\nexport function toKebabCase(str: string): string {\n return str\n .replace(/([a-z])([A-Z])/g, '$1-$2') // camelCase\n .replace(/([a-z])(\\d)/g, '$1-$2') // letter followed by number\n .toLowerCase();\n}\n","'use client';\n\n/**\n * React context for theme management\n * Optimized for single-theme tenant sites\n */\n\nimport React, { createContext, useContext, useEffect, ReactNode } from 'react';\nimport { ThemeConfig, ThemeVariant } from './types';\nimport { defaultTheme } from '../presets/default';\nimport { generateThemeCSS } from '../utils/generator';\n\n/**\n * Converts theme config to CSS custom properties and injects them\n */\nfunction applyThemeCSS(theme: ThemeConfig, themeName: string): void {\n const style = document.getElementById(`theme-${themeName}`) || document.createElement('style');\n style.id = `theme-${themeName}`;\n \n const selector = `[data-theme=\"${themeName}\"]`;\n \n // Handle both single URL and array of URLs\n let fontImport = '';\n if (theme.fontImportUrl) {\n const urls = Array.isArray(theme.fontImportUrl) ? theme.fontImportUrl : [theme.fontImportUrl];\n fontImport = urls.map(url => `@import url('${url}');`).join('\\n ');\n }\n \n const css = `\n ${fontImport}\n ${generateThemeCSS(theme, selector)}\n `;\n \n style.textContent = css;\n if (!document.head.contains(style)) {\n document.head.appendChild(style);\n }\n}\n\ninterface ThemeContextValue {\n currentTheme: ThemeConfig;\n themeName: ThemeVariant;\n}\n\nconst ThemeContext = createContext<ThemeContextValue | undefined>(undefined);\n\ninterface ThemeProviderProps {\n children: ReactNode;\n initialTheme?: ThemeConfig;\n initialThemeName?: ThemeVariant;\n}\n\n/**\n * Theme provider optimized for single-theme tenant sites\n * Sets theme once on mount - no runtime switching needed\n */\nexport function ThemeProvider({ \n children, \n initialTheme = defaultTheme,\n initialThemeName = 'default'\n}: ThemeProviderProps) {\n // Apply theme CSS and set data attribute on mount\n useEffect(() => {\n applyThemeCSS(initialTheme, initialThemeName);\n document.documentElement.setAttribute('data-theme', initialThemeName);\n }, [initialTheme, initialThemeName]);\n\n const value: ThemeContextValue = {\n currentTheme: initialTheme,\n themeName: initialThemeName,\n };\n\n return (\n <ThemeContext.Provider value={value}>\n {children}\n </ThemeContext.Provider>\n );\n}\n\n/**\n * Hook to access current theme (read-only for tenant sites)\n */\nexport function useTheme(): ThemeContextValue {\n const context = useContext(ThemeContext);\n if (!context) {\n throw new Error('useTheme must be used within a ThemeProvider');\n }\n return context;\n}","'use client';\n\n/**\n * Client-side theme provider wrapper for Next.js App Router\n * Use this in your layout.tsx to avoid RSC issues\n */\n\nimport { ThemeProvider as BaseThemeProvider } from './context';\nexport { useTheme } from './context';\n\n// Re-export with 'use client' directive\nexport const ThemeProvider = BaseThemeProvider;","'use client';\n\n/**\n * React hook for accessing color tokens programmatically\n * Useful when you need to use colors in JavaScript/TypeScript\n */\n\nimport { useTheme } from '../core/client-provider';\nimport type { ColorPrimitives } from '../core/color-system';\n\nexport interface ColorTokens {\n // Primitives\n primitives: Record<string, string>;\n // Semantic tokens\n semantic: Record<string, string>;\n}\n\n/**\n * Hook to access color tokens from the current theme\n * Returns resolved CSS variable values\n */\nexport function useColorTokens(): ColorTokens {\n const { currentTheme } = useTheme();\n\n // Helper to get computed CSS variable value\n const getCSSVar = (varName: string): string => {\n if (typeof window === 'undefined') return '';\n return getComputedStyle(document.documentElement)\n .getPropertyValue(varName)\n .trim();\n };\n\n // Convert color system to resolved values\n const primitives: Record<string, string> = {};\n const semantic: Record<string, string> = {};\n\n // Resolve primitives\n Object.keys(currentTheme.colors.primitives).forEach((key) => {\n const cssVar = `--color-${key.replace(/([A-Z])/g, '-$1').toLowerCase()}`;\n primitives[key] = getCSSVar(cssVar) || currentTheme.colors.primitives[key as keyof ColorPrimitives];\n });\n\n // Resolve semantic tokens (no prefix)\n Object.keys(currentTheme.colors.semantic).forEach((key) => {\n const cssVar = `--${key.replace(/([A-Z])/g, '-$1').toLowerCase()}`;\n semantic[key] = getCSSVar(cssVar);\n });\n\n return { primitives, semantic };\n}\n\n/**\n * Hook to get a specific color token value\n * @param level - The color system level ('primitives' or 'semantic')\n * @param tokenName - The name of the token\n * @returns The resolved color value\n */\nexport function useColorToken(\n level: 'primitives' | 'semantic',\n tokenName: string\n): string {\n const tokens = useColorTokens();\n return tokens[level][tokenName] || '';\n}\n\n/**\n * Hook to get CSS variable name for a color token\n * Useful for inline styles\n */\nexport function useColorVar(\n level: 'primitives' | 'semantic',\n tokenName: string\n): string {\n const cssKey = tokenName.replace(/([A-Z])/g, '-$1').toLowerCase();\n if (level === 'primitives') {\n return `var(--color-${cssKey})`;\n }\n // Semantic tokens have no prefix\n return `var(--${cssKey})`;\n}\n"],"names":["defaultColorSystem","primitives","blue50","blue100","blue200","blue300","blue400","blue500","blue600","blue700","blue800","blue900","yellow50","yellow100","yellow200","yellow300","yellow400","yellow500","yellow600","yellow700","yellow800","yellow900","purple50","purple100","purple200","purple300","purple400","purple500","purple600","purple700","purple800","purple900","purple950","gray50","gray100","gray200","gray300","gray400","gray500","gray600","gray700","gray800","gray900","green50","green500","green700","red50","red500","red700","white","black","semantic","primary","primaryHover","primaryActive","primaryText","secondary","secondaryHover","secondaryActive","secondaryText","accent","accentHover","accentActive","accentText","tertiary","tertiaryHover","tertiaryActive","tertiaryText","textPrimary","textSecondary","textAccent","textTertiary","textInverse","textDisabled","textLink","textLinkHover","bgPrimary","bgSecondary","bgTertiary","bgInverse","bgOverlay","borderDefault","borderSubtle","borderStrong","borderFocus","stateSuccess","stateSuccessHover","stateSuccessBg","stateWarning","stateWarningHover","stateWarningBg","stateError","stateErrorHover","stateErrorBg","stateInfo","stateInfoHover","stateInfoBg","interactivePrimary","interactivePrimaryHover","interactivePrimaryActive","interactiveSecondary","interactiveSecondaryHover","interactiveSecondaryActive","interactiveDisabled","defaultTheme","name","fontImportUrl","colors","colorPalettes","bg","text","spacing","xs","sm","md","lg","xl","xxl","borderRadius","shadows","breakpoints","typography","fontFamily","fontFamilyHeading","fontSizeXs","fontSizeSm","fontSizeMd","fontSizeLg","fontSizeXl","fontWeightNormal","fontWeightMedium","fontWeightBold","lineHeightTight","lineHeightNormal","lineHeightRelaxed","variants","pageTitle","fontSize","fontWeight","lineHeight","textTransform","mobile","tablet","sectionTitle","title","subtitle","body","textlink","textDecoration","bodyBold","bodyLarge","bodyBoldLarge","bodySmall","h1","h2","h3","h4","h5","h6","buttons","padding","general","background","backgroundHover","backgroundActive","color","colorHover","border","borderHover","shadow","cta","outline","ghost","focusOutline","twitter","colorActive","borderActive","linkedIn","facebook","components","card","header","borderBottom","height","titleFontWeight","titleFontSize","titleLineHeight","descriptionLineHeight","descriptionFontWeight","descriptionFontSize","descriptionMargin","__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","objectToCSSVars","obj","prefix","entries","filter","value","undefined","map","key","cssKey","replace","toLowerCase","generateThemeCSS","theme","selector","css","colorSystem","sections","push","join","generateColorSystemCSS","_a","typographyBase","forEach","variantName","variantStyles","desktopStyles","_b","video","subscribe","secondaryDarkMode","buttonBase","variant","charAt","toUpperCase","slice","vars","SuppressedError","ThemeContext","createContext","useTheme","context","useContext","Error","ThemeProvider","children","initialTheme","initialThemeName","useEffect","themeName","style","document","getElementById","createElement","id","fontImport","Array","isArray","url","textContent","head","contains","appendChild","applyThemeCSS","documentElement","setAttribute","currentTheme","_jsx","Provider","useColorTokens","getCSSVar","varName","window","getComputedStyle","getPropertyValue","trim","keys","cssVar","level","tokenName"],"mappings":"mEAOO,MAAMA,EAAkC,CAI7CC,WAAY,CAEVC,OAAQ,UACRC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UAGTC,SAAU,UACVC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UAGXC,SAAU,UACVC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UACXC,UAAW,UAGXC,OAAQ,UACRC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UACTC,QAAS,UAGTC,QAAS,UACTC,SAAU,UACVC,SAAU,UACVC,MAAO,UACPC,OAAQ,UACRC,OAAQ,UAGRC,MAAO,UACPC,MAAO,WAMTC,SAAU,CAERC,QAAS,0BACTC,aAAc,0BACdC,cAAe,0BACfC,YAAa,qBACbC,UAAW,wBACXC,eAAgB,wBAChBC,gBAAiB,wBACjBC,cAAe,qBAEfC,OAAQ,0BACRC,YAAa,0BACbC,aAAc,0BACdC,WAAY,0BACZC,SAAU,wBACVC,cAAe,wBACfC,eAAgB,wBAChBC,aAAc,0BAGdC,YAAa,0BACbC,cAAe,0BACfC,WAAY,0BACZC,aAAc,wBACdC,YAAa,qBACbC,aAAc,wBACdC,SAAU,wBACVC,cAAe,wBAGfC,UAAW,0BACXC,YAAa,uBACbC,WAAY,wBACZC,UAAW,wBACXC,UAAW,qBAGXC,cAAe,wBACfC,aAAc,wBACdC,aAAc,wBACdC,YAAa,wBAGbC,aAAc,yBACdC,kBAAmB,yBACnBC,eAAgB,wBAChBC,aAAc,0BACdC,kBAAmB,0BACnBC,eAAgB,yBAChBC,WAAY,uBACZC,gBAAiB,uBACjBC,aAAc,sBACdC,UAAW,wBACXC,eAAgB,wBAChBC,YAAa,uBAGbC,mBAAoB,wBACpBC,wBAAyB,wBACzBC,yBAA0B,wBAC1BC,qBAAsB,wBACtBC,0BAA2B,wBAC3BC,2BAA4B,wBAC5BC,oBAAqB,0BCrIZC,EAA4B,CACvCC,KAAM,UACNC,cAAe,sCAGfC,OAAQ,CACN1G,WAAYD,EAAmBC,WAC/BkD,SAAUnD,EAAmBmD,UAG/ByD,cAAe,CACb,CAAEH,KAAM,UAAWI,GAAI,UAAWC,KAAM,eACxC,CAAEL,KAAM,YAAaI,GAAI,YAAaC,KAAM,iBAC5C,CAAEL,KAAM,SAAUI,GAAI,SAAUC,KAAM,cACtC,CAAEL,KAAM,WAAYI,GAAI,WAAYC,KAAM,iBAG5CC,QAAS,CACPC,GAAI,MACJC,GAAI,MACJC,GAAI,OACJC,GAAI,OACJC,GAAI,OACJC,IAAK,QAGPC,aAAc,CACZL,GAAI,MACJC,GAAI,MACJC,GAAI,OACJC,GAAI,QAGNG,QAAS,CACPN,GAAI,+BACJC,GAAI,gCACJC,GAAI,gCACJC,GAAI,mCAGNI,YAAa,CACXR,GAAI,QACJC,GAAI,QACJC,GAAI,QACJC,GAAI,SACJC,GAAI,SACJC,IAAK,UAGPI,WAAY,CACVC,WAAY,wBACZC,kBAAmB,wBACnBC,WAAY,OACZC,WAAY,OACZC,WAAY,OACZC,WAAY,OACZC,WAAY,OACZC,iBAAkB,MAClBC,iBAAkB,MAClBC,eAAgB,MAChBC,gBAAiB,OACjBC,iBAAkB,MAClBC,kBAAmB,OAEnBC,SAAU,CACRC,UAAW,CACTC,SAAU,SACVC,WAAY,MACZC,WAAY,MACZC,cAAe,YACfC,OAAQ,CACNJ,SAAU,WACVE,WAAY,OAEdG,OAAQ,CACNL,SAAU,aAGdM,aAAc,CACZN,SAAU,WACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,WAEZK,OAAQ,CACNL,SAAU,YAGdO,MAAO,CACLP,SAAU,SACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,WACVE,WAAY,OAEdG,OAAQ,CACNL,SAAU,aAGdQ,SAAU,CACRR,SAAU,SACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,WAGdS,KAAM,CACJT,SAAU,WACVC,WAAY,MACZC,WAAY,OAEdQ,SAAU,CACRV,SAAU,WACVC,WAAY,MACZC,WAAY,MACZC,cAAe,YACfQ,eAAgB,aAElBC,SAAU,CACRZ,SAAU,WACVC,WAAY,MACZC,WAAY,OAEdW,UAAW,CACTb,SAAU,WACVC,WAAY,MACZC,WAAY,OAEdY,cAAe,CACbd,SAAU,WACVC,WAAY,MACZC,WAAY,OAEda,UAAW,CACTf,SAAU,OACVC,WAAY,MACZC,WAAY,OAEdc,GAAI,CACFhB,SAAU,SACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,OACVE,WAAY,QAEdG,OAAQ,CACNL,SAAU,YAGdiB,GAAI,CACFjB,SAAU,OACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,WAEZK,OAAQ,CACNL,SAAU,aAGdkB,GAAI,CACFlB,SAAU,UACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,UAEZK,OAAQ,CACNL,SAAU,aAGdmB,GAAI,CACFnB,SAAU,SACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,YAGdoB,GAAI,CACFpB,SAAU,UACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,aAGdqB,GAAI,CACFrB,SAAU,OACVC,WAAY,MACZC,WAAY,MACZE,OAAQ,CACNJ,SAAU,eAMlBsB,QAAS,CACPzC,aAAc,OACd0C,QAAS,YACTvB,SAAU,WACVC,WAAY,MACZC,WAAY,MAEZsB,QAAS,CACPC,WAAY,mBACZC,gBAAiB,yBACjBC,iBAAkB,0BAClBC,MAAO,sBACPC,WAAY,sBACZC,OAAQ,mBACRC,YAAa,yBACbC,OAAQ,qCAEVC,IAAK,CACHR,WAAY,gBACZC,gBAAiB,sBACjBC,iBAAkB,uBAClBC,MAAO,iBACPC,WAAY,iBACZC,OAAQ,mBACRC,YAAa,yBACbC,OAAQ,KAEVjH,UAAW,CACT0G,WAAY,cACZC,gBAAiB,iBACjBC,iBAAkB,wBAClBC,MAAO,iBACPC,WAAY,sBACZC,OAAQ,iBACRC,YAAa,iBACbC,OAAQ,QAEVE,QAAS,CACPT,WAAY,cACZC,gBAAiB,sBACjBC,iBAAkB,qBAClBC,MAAO,sBACPC,WAAY,sBACZC,OAAQ,wBACRC,YAAa,uBACbC,OAAQ,QAEVG,MAAO,CACLV,WAAY,cACZC,gBAAiB,sBACjBC,iBAAkB,qBAClBC,MAAO,sBACPC,WAAY,sBACZC,OAAQ,cACRC,YAAa,cACbC,OAAQ,OACRI,aAAa,WAEfC,QAAS,CACPZ,WAAY,cACZC,gBAAiB,UACjBC,iBAAkB,UAClBC,MAAO,UACPC,WAAY,UACZS,YAAa,UACbR,OAAQ,UACRC,YAAa,UACbQ,aAAc,UACdP,OAAQ,wCACRI,aAAa,WAEfI,SAAU,CACRf,WAAY,cACZC,gBAAiB,UACjBC,iBAAkB,UAClBC,MAAO,UACPC,WAAY,UACZS,YAAa,UACbR,OAAQ,UACRC,YAAa,UACbQ,aAAc,UACdP,OAAQ,wCACRI,aAAa,WAEfK,SAAU,CACRhB,WAAY,cACZC,gBAAiB,UACjBC,iBAAkB,UAClBC,MAAO,UACPC,WAAY,UACZS,YAAa,UACbR,OAAQ,UACRC,YAAa,UACbQ,aAAc,UACdP,OAAQ,wCACRI,aAAa,YAIjBM,WAAY,CACVC,KAAM,CACJlB,WAAY,oBACZK,OAAQ,kCACRjD,aAAc,MACdmD,OAAQ,+BACRT,QAAS,QAEXqB,OAAQ,CACNnB,WAAY,oBACZoB,aAAc,kCACdC,OAAQ,OACRvB,QAAS,UAEXU,IAAK,CACHR,WAAY,iBACZ5C,aAAc,YACd0C,QAAS,OACTwB,gBAAiB,MACjBC,cAAe,OACfC,gBAAiB,OACjBC,sBAAuB,OACvBC,sBAAuB,MACvBC,oBAAqB,OACrBC,kBAAmB,sBCnSlB,SAASC,EAAOC,EAAGC,GACtB,IAAIC,EAAI,CAAA,EACR,IAAK,IAAIC,KAAKH,EAAOI,OAAOC,UAAUC,eAAeC,KAAKP,EAAGG,IAAMF,EAAEO,QAAQL,GAAK,IAC9ED,EAAEC,GAAKH,EAAEG,IACb,GAAS,MAALH,GAAqD,mBAAjCI,OAAOK,sBACtB,KAAIC,EAAI,EAAb,IAAgBP,EAAIC,OAAOK,sBAAsBT,GAAIU,EAAIP,EAAEQ,OAAQD,IAC3DT,EAAEO,QAAQL,EAAEO,IAAM,GAAKN,OAAOC,UAAUO,qBAAqBL,KAAKP,EAAGG,EAAEO,MACvER,EAAEC,EAAEO,IAAMV,EAAEG,EAAEO,IAF4B,CAItD,OAAOR,CACX,CCvCA,SAASW,EAAgBC,EAAyCC,GAChE,OAAOX,OAAOY,QAAQF,GACnBG,OAAO,EAAC,CAAGC,UAAqBC,IAAVD,GACtBE,IAAI,EAAEC,EAAKH,MACV,MAAMI,EAAqBD,ECJ5BE,QAAQ,kBAAmB,SAC3BA,QAAQ,eAAgB,SACxBC,cDGC,MAAO,OAAOT,IAASO,MAAWJ,MAExC,UAsBgBO,EAAiBC,EAAoBC,EAAmB,SACtE,IAAIC,EAAM,GAOVA,GAxBF,SAAgCC,EAA0BF,EAAmB,SAC3E,MAAMG,EAAqB,GAQ3B,OALAA,EAASC,QAAQlB,EAAgBgB,EAAY5N,WAAiD,WAG9F6N,EAASC,QAAQlB,EAAgBgB,EAAY1K,SAA+C,KAErF,GAAGwK,MAAaG,EAASE,KAAK,UACvC,CAcSC,CAJa,CAClBhO,WAAYyN,EAAM/G,OAAO1G,WACzBkD,SAAUuK,EAAM/G,OAAOxD,UAEkBwK,GAC3CC,GAAO,OAGP,MAAME,EAAqC,CAAA,EAG3CA,EAAkB,QAAIjB,EAAgBa,EAAM3G,QAA8C,IAG1F+G,EAAS,iBAAmBjB,EAAgBa,EAAMpG,aAAmD,IAGrGwG,EAAkB,QAAIjB,EAAgBa,EAAMnG,QAA8C,IAG1FuG,EAAsB,YAAIjB,EAAgBa,EAAMlG,YAAkD,eAGlG,MAAM0G,EAAkCR,EAAMjG,YAAxCc,SAAEA,GAAQ2F,EAAKC,EAAcpC,EAAAmC,EAA7B,CAAA,aACNJ,EAAqB,WAAIjB,EAAgBsB,EAAqD,IAG1F5F,GACF6D,OAAOY,QAAQzE,GAAU6F,QAAQ,EAAEC,EAAaC,MAC9C,GAAIA,EAAe,CACjB,MAAMzF,OAAEA,EAAMC,OAAEA,GAA6BwF,EAAlBC,EAAaxC,EAAKuC,EAAvC,CAAA,SAAA,WACAvB,EAAS,cAAcsB,EAAYd,QAAQ,WAAY,OAAOC,iBAGpEM,EAAS,gBAAgBO,KAAiBxB,EAAgB0B,EAAoDxB,GAG1GlE,IACFiF,EAAS,gBAAgBO,cAA0BxB,EAAgBhE,EAA6C,GAAGkE,aAIjHjE,IACFgF,EAAS,gBAAgBO,cAA0BxB,EAAgB/D,EAA6C,GAAGiE,YAEvH,IAKJ,MAAMyB,EAA+Hd,EAAM3D,SAArIE,QAAEA,EAAOS,IAAEA,EAAGlH,UAAEA,EAASmH,QAAEA,EAAOC,MAAEA,EAAK6D,MAAEA,EAAKC,UAAEA,EAAS5D,QAAEA,EAAOG,SAAEA,EAAQC,SAAEA,EAAQyD,kBAAEA,KAAsBC,EAAU7C,EAAAyC,EAA1H,CAAA,UAAA,MAAA,YAAA,UAAA,QAAA,QAAA,YAAA,UAAA,WAAA,WAAA,sBACNV,EAAS,eAAiBjB,EAAgB+B,EAAY,WAG/B,CAAC,UAAW,MAAO,YAAa,UAAW,QAAS,QAAS,YAAa,UAAW,WAAY,WAAY,qBACrHR,QAAQS,IACrB,GAAInB,EAAM3D,QAAQ8E,GAAU,CAC1B,MAAMR,EAAcQ,EAAQC,OAAO,GAAGC,cAAgBF,EAAQG,MAAM,GACpElB,EAAS,YAAYO,KAAiBxB,EAAgBa,EAAM3D,QAAQ8E,GAA+C,UAAUA,EAAQrB,iBACvI,IAIFM,EAAS,kBAAoBjB,EAAgBa,EAAMvC,WAAWC,KAA2C,SACzG0C,EAAS,oBAAsBjB,EAAgBa,EAAMvC,WAAWE,OAA6C,WAC7GyC,EAAS,iBAAmBjB,EAAgBa,EAAMvC,WAAWT,IAA0C,QASvG,OAFAkD,GAAO,GAAGD,MAJQvB,OAAOY,QAAQc,GAC9BV,IAAI,EAAE3G,EAAMwI,KAAU,UAAUxI,SAAYwI,EAAKjB,KAAK,SACtDA,KAAK,SAIDJ,CACT,CD+MkD,mBAApBsB,iBAAiCA,gBG5R/D,MAAMC,EAAeC,EAAAA,mBAA6CjC,YAsClDkC,IACd,MAAMC,EAAUC,EAAAA,WAAWJ,GAC3B,IAAKG,EACH,MAAM,IAAIE,MAAM,gDAElB,OAAOF,CACT,CC7EO,MAAMG,ED6CP,UAAwBC,SAC5BA,EAAQC,aACRA,EAAenJ,EAAYoJ,iBAC3BA,EAAmB,YAGnBC,EAAAA,UAAU,MA/CZ,SAAuBnC,EAAoBoC,GACzC,MAAMC,EAAQC,SAASC,eAAe,SAASH,MAAgBE,SAASE,cAAc,SACtFH,EAAMI,GAAK,SAASL,IAEpB,MAAMnC,EAAW,gBAAgBmC,MAGjC,IAAIM,EAAa,GACb1C,EAAMhH,gBAER0J,GADaC,MAAMC,QAAQ5C,EAAMhH,eAAiBgH,EAAMhH,cAAgB,CAACgH,EAAMhH,gBAC7D0G,IAAImD,GAAO,gBAAgBA,QAAUvC,KAAK,WAG9D,MAAMJ,EAAM,SACRwC,UACA3C,EAAiBC,EAAOC,SAG5BoC,EAAMS,YAAc5C,EACfoC,SAASS,KAAKC,SAASX,IAC1BC,SAASS,KAAKE,YAAYZ,EAE9B,CA0BIa,CAAcjB,EAAcC,GAC5BI,SAASa,gBAAgBC,aAAa,aAAclB,IACnD,CAACD,EAAcC,IAElB,MAAM1C,EAA2B,CAC/B6D,aAAcpB,EACdG,UAAWF,GAGb,OACEoB,EAAAA,IAAC7B,EAAa8B,SAAQ,CAAC/D,MAAOA,EAAKwC,SAChCA,GAGP,WExDgBwB,IACd,MAAMH,aAAEA,GAAiB1B,IAGnB8B,EAAaC,GACK,oBAAXC,OAA+B,GACnCC,iBAAiBtB,SAASa,iBAC9BU,iBAAiBH,GACjBI,OAICvR,EAAqC,CAAA,EACrCkD,EAAmC,CAAA,EAczC,OAXAiJ,OAAOqF,KAAKV,EAAapK,OAAO1G,YAAYmO,QAASf,IACnD,MAAMqE,EAAS,WAAWrE,EAAIE,QAAQ,WAAY,OAAOC,gBACzDvN,EAAWoN,GAAO8D,EAAUO,IAAWX,EAAapK,OAAO1G,WAAWoN,KAIxEjB,OAAOqF,KAAKV,EAAapK,OAAOxD,UAAUiL,QAASf,IACjD,MAAMqE,EAAS,KAAKrE,EAAIE,QAAQ,WAAY,OAAOC,gBACnDrK,EAASkK,GAAO8D,EAAUO,KAGrB,CAAEzR,aAAYkD,WACvB,+CAQM,SACJwO,EACAC,GAGA,OADeV,IACDS,GAAOC,IAAc,EACrC,+CAMM,SACJD,EACAC,GAEA,MAAMtE,EAASsE,EAAUrE,QAAQ,WAAY,OAAOC,cACpD,MAAc,eAAVmE,EACK,eAAerE,KAGjB,SAASA,IAClB","x_google_ignoreList":[2]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/components/client.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC"}
|
package/dist/index.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export { Button } from './atoms/Button/Button';
|
|
2
|
-
export { ButtonLink } from './atoms/ButtonLink';
|
|
3
|
-
export { TextLink } from './atoms/TextLink/TextLink';
|
|
4
|
-
export { BackgroundMedia } from './atoms/BackgroundMedia';
|
|
5
|
-
export { Heading } from './atoms/Heading';
|
|
6
|
-
export { Header } from './molecules/Header/Header';
|
|
7
|
-
export { Card } from './molecules/Card/Card';
|
|
8
|
-
export { CTA } from './molecules/CTA';
|
|
9
|
-
export { Page } from './pages/Page';
|
|
10
|
-
|
|
11
|
-
// Theming System
|
|
12
|
-
export { ThemeProvider, useTheme } from './themes/core/context';
|
|
13
|
-
export { defaultTheme } from './themes/presets/default';
|
|
14
|
-
export { advisorsPlusTheme } from './themes/presets/advisors-plus';
|
|
15
|
-
export { primaxTheme } from './themes/presets/primax';
|
|
16
|
-
export type {
|
|
17
|
-
ThemeConfig,
|
|
18
|
-
ThemeColors,
|
|
19
|
-
ThemeSpacing,
|
|
20
|
-
ThemeBorderRadius,
|
|
21
|
-
ThemeShadows,
|
|
22
|
-
ThemeTypography,
|
|
23
|
-
ThemeButtons,
|
|
24
|
-
ThemeComponents,
|
|
25
|
-
ThemeVariant,
|
|
26
|
-
ButtonVariant
|
|
27
|
-
} from './themes/core/types';
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { HeadingLevel } from '../../atoms/Heading';
|
|
3
|
-
import './CTA.scss';
|
|
4
|
-
export interface CTAProps {
|
|
5
|
-
/** Video URL for background */
|
|
6
|
-
videoUrl?: string;
|
|
7
|
-
/** Image URL for background */
|
|
8
|
-
imageUrl?: string;
|
|
9
|
-
/** CSS gradient overlay */
|
|
10
|
-
gradient?: string;
|
|
11
|
-
/** Background color */
|
|
12
|
-
bgColor?: string;
|
|
13
|
-
/** CTA title */
|
|
14
|
-
title: string;
|
|
15
|
-
/** Heading level */
|
|
16
|
-
headingLevel?: HeadingLevel;
|
|
17
|
-
/** CTA description */
|
|
18
|
-
description?: string;
|
|
19
|
-
/** Button text */
|
|
20
|
-
buttonText: string;
|
|
21
|
-
/** Button link */
|
|
22
|
-
link?: string;
|
|
23
|
-
/** External link flag */
|
|
24
|
-
externalLink?: boolean;
|
|
25
|
-
/** Link target */
|
|
26
|
-
target?: '_blank' | '_self';
|
|
27
|
-
/** Custom CSS class */
|
|
28
|
-
className?: string;
|
|
29
|
-
/** Inline styles */
|
|
30
|
-
style?: React.CSSProperties;
|
|
31
|
-
}
|
|
32
|
-
/** CTA component with background media and content */
|
|
33
|
-
export declare const CTA: React.FC<CTAProps>;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import '../../molecules/Card/Card.scss';
|
|
3
|
-
export interface CardProps {
|
|
4
|
-
children: React.ReactNode;
|
|
5
|
-
maxWidth?: number | string;
|
|
6
|
-
padding?: string;
|
|
7
|
-
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
8
|
-
href?: string;
|
|
9
|
-
target?: '_blank' | '_self' | '_parent' | '_top';
|
|
10
|
-
imageUrl?: string;
|
|
11
|
-
imageAlt?: string;
|
|
12
|
-
className?: string;
|
|
13
|
-
style?: React.CSSProperties;
|
|
14
|
-
aspectRatio?: string;
|
|
15
|
-
borderRadius?: string;
|
|
16
|
-
hoverEffect?: boolean;
|
|
17
|
-
'aria-label'?: string;
|
|
18
|
-
'data-testid'?: string;
|
|
19
|
-
}
|
|
20
|
-
export declare const Card: React.FC<CardProps>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
type User = {
|
|
2
|
-
name: string;
|
|
3
|
-
};
|
|
4
|
-
export interface HeaderProps {
|
|
5
|
-
user?: User;
|
|
6
|
-
onLogin?: () => void;
|
|
7
|
-
onLogout?: () => void;
|
|
8
|
-
onCreateAccount?: () => void;
|
|
9
|
-
}
|
|
10
|
-
export declare const Header: ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
type User = {
|
|
2
|
-
name: string;
|
|
3
|
-
};
|
|
4
|
-
export interface HeaderProps {
|
|
5
|
-
user?: User;
|
|
6
|
-
onLogin?: () => void;
|
|
7
|
-
onLogout?: () => void;
|
|
8
|
-
onCreateAccount?: () => void;
|
|
9
|
-
}
|
|
10
|
-
export declare const Header: ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
package/dist/pages/Page.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Example tenant theme configuration template
|
|
3
|
-
* Copy this file and customize values to create your brand-specific theme
|
|
4
|
-
*/
|
|
5
|
-
import { ThemeConfig } from './core/types';
|
|
6
|
-
export declare const tenantTheme: ThemeConfig;
|
|
7
|
-
export default tenantTheme;
|
|
8
|
-
//# sourceMappingURL=tenant-config.example.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tenant-config.example.d.ts","sourceRoot":"","sources":["../../src/themes/tenant-config.example.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,eAAO,MAAM,WAAW,EAAE,WA6JzB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/tslib/modules/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react/jsx-runtime.d.ts","../src/components/atoms/button/button.tsx","../src/components/atoms/buttonlink/buttonlink.tsx","../src/components/atoms/buttonlink/index.ts","../src/components/atoms/textlink/textlink.tsx","../src/components/atoms/backgroundmedia/backgroundmedia.tsx","../src/components/atoms/backgroundmedia/index.ts","../src/components/atoms/heading/heading.tsx","../src/components/atoms/heading/index.ts","../src/components/molecules/header/header.tsx","../src/components/molecules/card/card.tsx","../src/components/molecules/cta/cta.tsx","../src/components/molecules/cta/index.ts","../src/components/pages/page.tsx","../src/themes/core/types.ts","../src/themes/presets/default.ts","../src/themes/core/context.tsx","../src/themes/presets/advisors-plus.ts","../src/themes/presets/primax.ts","../src/components/index.ts","../src/themes/index.ts","../src/themes/tenant-config.example.ts","../src/themes/utils/generator.ts","../node_modules/@types/aria-query/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/deep-eql/index.d.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@types/doctrine/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@eslint/core/dist/esm/types.d.ts","../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../node_modules/eslint/lib/types/index.d.ts","../node_modules/@types/eslint-scope/index.d.ts","../node_modules/@types/html-minifier-terser/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/mdx/types.d.ts","../node_modules/@types/mdx/index.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/resolve/index.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[112,138,181],[138,181],[122,138,181],[112,113,114,115,116,138,181],[112,114,138,181],[118,138,181],[121,127,138,181],[121,122,123,138,181],[124,138,181],[131,132,138,181],[138,178,181],[138,180,181],[181],[138,181,186,215],[138,181,182,187,193,201,212,223],[138,181,182,183,193,201],[133,134,135,138,181],[138,181,184,224],[138,181,185,186,194,202],[138,181,186,212,220],[138,181,187,189,193,201],[138,180,181,188],[138,181,189,190],[138,181,191,193],[138,180,181,193],[138,181,193,194,195,212,223],[138,181,193,194,195,208,212,215],[138,176,181],[138,181,189,193,196,201,212,223],[138,181,193,194,196,197,201,212,220,223],[138,181,196,198,212,220,223],[136,137,138,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229],[138,181,193,199],[138,181,200,223,228],[138,181,189,193,201,212],[138,181,202],[138,181,203],[138,180,181,204],[138,178,179,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229],[138,181,206],[138,181,207],[138,181,193,208,209],[138,181,208,210,224,226],[138,181,193,212,213,215],[138,181,214,215],[138,181,212,213],[138,181,215],[138,181,216],[138,178,181,212,217],[138,181,193,218,219],[138,181,218,219],[138,181,186,201,212,220],[138,181,221],[138,181,201,222],[138,181,196,207,223],[138,181,186,224],[138,181,212,225],[138,181,200,226],[138,181,227],[138,181,193,195,204,212,215,223,226,228],[138,181,212,229],[87,138,181],[85,86,138,181],[138,181,235,273],[138,181,235,258,273],[138,181,234,273],[138,181,273],[138,181,235],[138,181,235,259,273],[138,181,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272],[138,181,259,273],[121,122,125,126,138,181],[127,138,181],[83,138,181],[138,148,152,181,223],[138,148,181,212,223],[138,143,181],[138,145,148,181,220,223],[138,181,201,220],[138,181,230],[138,143,181,230],[138,145,148,181,201,223],[138,140,141,144,147,181,193,212,223],[138,148,155,181],[138,140,146,181],[138,148,169,170,181],[138,144,148,181,215,223,230],[138,169,181,230],[138,142,143,181,230],[138,148,181],[138,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,181],[138,148,163,181],[138,148,155,156,181],[138,146,148,156,157,181],[138,147,181],[138,140,143,148,181],[138,148,152,156,157,181],[138,152,181],[138,146,148,151,181,223],[138,140,145,148,155,181],[138,181,212],[138,143,148,169,181,228,230],[84,87,88,138,181],[84,88,93,138,181],[84,87,88,89,138,181],[84,88,90,138,181],[84,88,95,138,181],[84,88,89,91,92,94,96,97,98,100,101,102,103,104,105,106,138,181],[84,87,88,89,91,94,96,138,181],[84,88,99,138,181],[84,88,89,138,181],[84,87,88,97,138,181],[84,87,88,102,103,138,181],[84,88,138,181],[84,88,102,103,104,105,106,138,181],[84,88,102,103,138,181],[84,88,102,138,181]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"bea6c0f5b819cf8cba6608bf3530089119294f949640714011d46ec8013b61c2","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"3230e637032481ba851096132dfec0aea1a34f2d0e4de67a4e8ccb3d667c5f51","c0d6f218686c837101c8dc7f0d86e1938454f35c872579fbfed718cb9060434a","6219b5ee839330aea911ac3b47a5f64da1799eca928bb76d176cba1c21a8bc05","bbd8e25b284df045cc3609c7953ec4c356addbde547a71664f2529c06e0c8611","4618b6b107d5a8ccc600628918d9d7d2eda3ca5852b4c1723d3f8ee28922ce34","c4aec7bf40f7d01fba0bffbb61bdaa61ea9c25700c84e015da350d8b309b84d4","73dbd91d564d64fa8c34af5d44448a823544e8f97fa550527aa4c925e1a1bd94","7d772531379e21daf6585d758f964e086b601f679a49d5889556d52af8fa6013","98c3222aca086891abeb5eba31f919c7eaa6f64eeb82bced9952026a2b142d97","a8dca66c13a90a360ee67a43a9a2bf9c30dd1abe9b13e60d72598770a24cf560","8d682bca12d9b51090bc55c190b47487c89772f8b0464ec183c354d9f210e6ce","6b32e6f6b967c5146a48d589f63dd8cc474784703d396c4482fbd36c6e756beb","36977846e83e718750264f41054bc6f3c3170609970fe74144581f8a38b4485b","a1cc740d4ffdccbdaaed98dbd241f2ebf3a930e6abd09ebb7ba03f6f0aa1c4a5","4cb725147743c7d2260ed61e42294429dc2d9ff2b267ab30c9811e4e59bfd6a8","5800f90c36ddfa945c3e252a735dc86fd3c71cc3f6dffe2c70bdb5fa4b8510fb","f03c67f1f8a513cd915f06c595924e489454ba457d0436040fb98ca723b02e57","72d0c6c62112108f691b3dd809e38b98a3467d5bb673bc9b634a2810c27717e3","41dca20f4197d08ac35680e615b3403e4270526cbb6bfd1fa8911fecdf59e8eb","7d80a37ee6b4dc3be42f7f432b45d18e78d2613152570ae542ec25900238a87f","e0018d185596da47d4475fda4ee2992772af754fcc4bfe0d5aa3a5f0061da248","2c48c35bf09c970aaf0861f531cc8b18e422810134b825171b629014f9556a4a",{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"6382638cfd6a8f05ac8277689de17ba4cd46f8aacefd254a993a53fde9ddc797","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"851fe8b694793c8e4c48c154847712e940694e960e33ac68b73e94557d6aff8d","impliedFormat":99},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"6229c4f4d69baa3cc0deb1b1dc70f7cc1a050c096e183c98c340e8b96b9e0eeb","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","impliedFormat":1},{"version":"8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1},{"version":"8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1}],"root":[[89,110]],"options":{"allowJs":true,"declaration":true,"declarationDir":"./","emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":4,"module":99,"noEmitHelpers":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"referencedMap":[[114,1],[112,2],[125,3],[111,2],[117,4],[113,1],[115,5],[116,1],[119,6],[118,2],[120,2],[128,7],[124,8],[123,9],[121,2],[129,2],[122,2],[130,2],[132,10],[131,2],[178,11],[179,11],[180,12],[138,13],[181,14],[182,15],[183,16],[133,2],[136,17],[134,2],[135,2],[184,18],[185,19],[186,20],[187,21],[188,22],[189,23],[190,23],[192,2],[191,24],[193,25],[194,26],[195,27],[177,28],[137,2],[196,29],[197,30],[198,31],[230,32],[199,33],[200,34],[201,35],[202,36],[203,37],[204,38],[205,39],[206,40],[207,41],[208,42],[209,42],[210,43],[211,2],[212,44],[214,45],[213,46],[215,47],[216,48],[217,49],[218,50],[219,51],[220,52],[221,53],[222,54],[223,55],[224,56],[225,57],[226,58],[227,59],[228,60],[229,61],[231,2],[232,62],[85,2],[87,63],[88,62],[233,2],[258,64],[259,65],[235,66],[238,67],[256,64],[257,64],[247,64],[246,68],[244,64],[239,64],[252,64],[250,64],[254,64],[234,64],[251,64],[255,64],[240,64],[241,64],[253,64],[236,64],[242,64],[243,64],[245,64],[249,64],[260,69],[248,64],[237,64],[273,70],[272,2],[267,69],[269,71],[268,69],[261,69],[262,69],[264,69],[266,69],[270,71],[271,71],[263,71],[265,71],[139,2],[86,2],[127,72],[126,73],[84,74],[83,2],[81,2],[82,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[79,2],[78,2],[73,2],[77,2],[75,2],[80,2],[155,75],[165,76],[154,75],[175,77],[146,78],[145,79],[174,80],[168,81],[173,82],[148,83],[162,84],[147,85],[171,86],[143,87],[142,80],[172,88],[144,89],[149,90],[150,2],[153,90],[140,2],[176,91],[166,92],[157,93],[158,94],[160,95],[156,96],[159,97],[169,80],[151,98],[152,99],[161,100],[141,101],[164,92],[163,90],[167,2],[170,102],[93,103],[94,104],[89,103],[90,105],[91,106],[95,103],[96,107],[92,103],[107,108],[98,103],[99,109],[100,110],[97,111],[101,112],[104,113],[102,114],[108,115],[105,116],[103,117],[106,116],[109,117],[110,117]],"version":"5.9.2"}
|