@metrifox/angular-sdk 1.0.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/README.md +310 -320
  2. package/dist/LICENSE +21 -0
  3. package/dist/README.md +477 -0
  4. package/dist/fesm2022/index.mjs +9653 -0
  5. package/{lib → dist/lib}/metrifox.module.d.ts +2 -2
  6. package/{lib → dist/lib}/metrifox.service.d.ts +22 -14
  7. package/{lib → dist/lib}/types/enum.d.ts +12 -2
  8. package/{lib → dist/lib}/types/interface.d.ts +390 -103
  9. package/dist/lib/utils/theme.d.ts +27 -0
  10. package/dist/modules/customer-portal/components/billing-history.component.d.ts +14 -0
  11. package/dist/modules/customer-portal/components/credit/credit-balance-section.component.d.ts +76 -0
  12. package/dist/modules/customer-portal/components/customer-portal.component.d.ts +64 -0
  13. package/dist/modules/customer-portal/components/entitlements/entitlement-summary.component.d.ts +15 -0
  14. package/dist/modules/customer-portal/components/entitlements/entitlement-usage.component.d.ts +35 -0
  15. package/dist/modules/customer-portal/components/entitlements/entitlements-section.component.d.ts +14 -0
  16. package/dist/modules/customer-portal/components/invoice-preview.component.d.ts +26 -0
  17. package/dist/modules/customer-portal/components/payment.component.d.ts +12 -0
  18. package/dist/modules/customer-portal/components/plan/plans-section.component.d.ts +70 -0
  19. package/dist/modules/customer-portal/components/subscription/subscription-actions.component.d.ts +22 -0
  20. package/dist/modules/customer-portal/components/subscription/subscription-details.component.d.ts +12 -0
  21. package/dist/modules/customer-portal/components/subscription/subscription-items.component.d.ts +27 -0
  22. package/dist/modules/customer-portal/components/subscription/subscription-section.component.d.ts +34 -0
  23. package/dist/modules/customer-portal/utils/defaults.d.ts +2 -0
  24. package/dist/modules/customer-portal/utils/helpers.d.ts +20 -0
  25. package/dist/modules/customer-portal/utils/icon-helpers.d.ts +3 -0
  26. package/dist/modules/customer-portal/utils/icons.d.ts +18 -0
  27. package/dist/modules/metrifox-ui/index.d.ts +1 -0
  28. package/dist/modules/metrifox-ui/themed-popover.component.d.ts +19 -0
  29. package/dist/modules/pricing-table/components/localization-select.component.d.ts +22 -0
  30. package/{lib/components/pricing-table → dist/modules/pricing-table/components}/pricing-table.component.d.ts +28 -6
  31. package/dist/modules/pricing-table/utils/defaults.d.ts +2 -0
  32. package/dist/public-api.d.ts +22 -0
  33. package/dist/styles.css +3 -0
  34. package/dist-storybook/3rdpartylicenses.txt +304 -0
  35. package/dist-storybook/index.html +12 -0
  36. package/dist-storybook/main.js +1 -0
  37. package/dist-storybook/polyfills.js +1 -0
  38. package/dist-storybook/runtime.js +1 -0
  39. package/dist-storybook/styles.css +2 -0
  40. package/package.json +53 -13
  41. package/vitest.config.ts +10 -0
  42. package/vitest.setup.ts +5 -0
  43. package/fesm2022/index.mjs +0 -5898
  44. package/lib/components/customer-portal/customer-portal.component.d.ts +0 -193
  45. package/public-api.d.ts +0 -20
  46. package/styles.css +0 -3
  47. /package/{index.d.ts → dist/index.d.ts} +0 -0
  48. /package/{lib → dist/lib}/types/index.d.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
2
2
  import { SafeHtml } from '@angular/platform-browser';
3
- import { Product, ParentOffering, Offering, PlanSelectedEvent, PurchaseSelectedEvent, ErrorEvent, Entitlement } from '../../types';
3
+ import { Product, ParentOffering, Offering, PlanSelectedEvent, PurchaseSelectedEvent, ErrorEvent, PricingTableTheme, Entitlement, CreditSystem } from '../../../lib/types';
4
4
  import * as i0 from "@angular/core";
5
5
  declare const ICONS: {
6
6
  check: string;
@@ -41,15 +41,22 @@ export declare class PricingTableComponent implements OnInit, OnDestroy {
41
41
  checkoutUsername: string;
42
42
  private metrifoxService;
43
43
  private sanitizer;
44
+ private http;
44
45
  constructor();
45
46
  /** Product key to load pricing for */
46
47
  productKey: string;
47
48
  /** Show only plans (hide single purchases) */
48
- plansOnly: boolean;
49
+ private plansOnlySignal;
50
+ set plansOnly(value: boolean);
49
51
  /** Show only single purchases (hide plans) */
50
- singlePurchasesOnly: boolean;
52
+ private singlePurchasesOnlySignal;
53
+ set singlePurchasesOnly(value: boolean);
51
54
  /** Show tab header when both plans and purchases exist */
52
- showTabHeader: boolean;
55
+ protected showTabHeaderSignal: import("@angular/core").WritableSignal<boolean>;
56
+ set showTabHeader(value: boolean);
57
+ /** Optional theme override for this instance */
58
+ private themeSignal;
59
+ set theme(value: PricingTableTheme | undefined);
53
60
  /** Emitted when a plan is selected */
54
61
  planSelected: EventEmitter<PlanSelectedEvent>;
55
62
  /** Emitted when a single purchase is selected */
@@ -63,6 +70,13 @@ export declare class PricingTableComponent implements OnInit, OnDestroy {
63
70
  selectedInterval: import("@angular/core").WritableSignal<string>;
64
71
  searchTerm: import("@angular/core").WritableSignal<string>;
65
72
  cartItems: import("@angular/core").WritableSignal<CartItem[]>;
73
+ selectedCountry: import("@angular/core").WritableSignal<string>;
74
+ localizationOptions: import("@angular/core").WritableSignal<{
75
+ label: string;
76
+ value: string;
77
+ }[]>;
78
+ showLocalizationDropdown: import("@angular/core").WritableSignal<boolean>;
79
+ resolvingLocalization: import("@angular/core").WritableSignal<boolean>;
66
80
  plans: import("@angular/core").Signal<ParentOffering[]>;
67
81
  singlePurchases: import("@angular/core").Signal<ParentOffering[]>;
68
82
  showPlans: import("@angular/core").Signal<boolean>;
@@ -74,13 +88,17 @@ export declare class PricingTableComponent implements OnInit, OnDestroy {
74
88
  }[]>;
75
89
  intervals: import("@angular/core").Signal<string[]>;
76
90
  filteredSinglePurchases: import("@angular/core").Signal<ParentOffering[]>;
77
- cssVars: import("@angular/core").Signal<import("../../types").CssVarMap>;
91
+ cssVars: import("@angular/core").Signal<{
92
+ 'font-family': string;
93
+ }>;
78
94
  ngOnInit(): void;
79
95
  ngOnDestroy(): void;
80
96
  /**
81
97
  * Load product data
82
98
  */
83
99
  private loadProduct;
100
+ private buildLocalizationOptions;
101
+ onCountryChange(value: string): void;
84
102
  /**
85
103
  * Select a tab
86
104
  */
@@ -121,6 +139,10 @@ export declare class PricingTableComponent implements OnInit, OnDestroy {
121
139
  * Get visible entitlements
122
140
  */
123
141
  getVisibleEntitlements(offering: Offering): Entitlement[];
142
+ /**
143
+ * Get visible credits (included_usage or included_allowance)
144
+ */
145
+ getVisibleCredits(offering: Offering): CreditSystem[];
124
146
  /**
125
147
  * Format entitlement for display
126
148
  */
@@ -152,6 +174,6 @@ export declare class PricingTableComponent implements OnInit, OnDestroy {
152
174
  private updateCartItem;
153
175
  proceedToCheckout(): void;
154
176
  static ɵfac: i0.ɵɵFactoryDeclaration<PricingTableComponent, never>;
155
- static ɵcmp: i0.ɵɵComponentDeclaration<PricingTableComponent, "metrifox-pricing-table", never, { "checkoutUsername": { "alias": "checkoutUsername"; "required": true; }; "productKey": { "alias": "productKey"; "required": true; }; "plansOnly": { "alias": "plansOnly"; "required": false; }; "singlePurchasesOnly": { "alias": "singlePurchasesOnly"; "required": false; }; "showTabHeader": { "alias": "showTabHeader"; "required": false; }; }, { "planSelected": "planSelected"; "purchaseSelected": "purchaseSelected"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
177
+ static ɵcmp: i0.ɵɵComponentDeclaration<PricingTableComponent, "metrifox-pricing-table", never, { "checkoutUsername": { "alias": "checkoutUsername"; "required": true; }; "productKey": { "alias": "productKey"; "required": true; }; "plansOnly": { "alias": "plansOnly"; "required": false; }; "singlePurchasesOnly": { "alias": "singlePurchasesOnly"; "required": false; }; "showTabHeader": { "alias": "showTabHeader"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "planSelected": "planSelected"; "purchaseSelected": "purchaseSelected"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
156
178
  }
157
179
  export {};
@@ -0,0 +1,2 @@
1
+ import { PricingTableTheme } from '../../../lib/types';
2
+ export declare const defaultPricingTableTheme: PricingTableTheme;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Metrifox Angular SDK
3
+ *
4
+ * Angular SDK for Metrifox - SaaS billing, customer portals, and pricing tables.
5
+ *
6
+ * @packageDocumentation
7
+ */
8
+ export { MetrifoxService, metrifoxInit, MetrifoxNotInitializedError } from './lib/metrifox.service';
9
+ export { CustomerPortalComponent } from './modules/customer-portal/components/customer-portal.component';
10
+ export { PricingTableComponent } from './modules/pricing-table/components/pricing-table.component';
11
+ export { ThemedPopoverComponent } from './modules/metrifox-ui';
12
+ export { MetrifoxModule, provideMetrifox } from './lib/metrifox.module';
13
+ export type { Theme, CustomerPortalTheme, PricingTableTheme } from './lib/types';
14
+ export { setIfDefined, customerPortalThemeToCssVars, pricingTableThemeToCssVars, getGradient, getBackgroundImage } from './lib/utils/theme';
15
+ export type { MetrifoxConfig, SectionConfig, SectionKey } from './lib/types';
16
+ export type { CustomerPortalProps, CustomerDetails, Subscription, SubscriptionSettings, SubscriptionDetails, SubscriptionItem, UpcomingInvoice, PaymentMethod, BillingAddress, Currency, InvoiceStatus } from './lib/types';
17
+ export type { Entitlement, Feature, EntitlementUsage, EntitlementSummary, Pool, ProcessedPool } from './lib/types';
18
+ export type { Wallet, WalletAllocation, CreditAllocation, CreditTransaction, WalletSetting, CreditSystem, CreditOwner } from './lib/types';
19
+ export type { PricingTableProps, Product, Offering, ParentOffering, PriceOption, PriceOwner, Price, Tier, SinglePurchase } from './lib/types';
20
+ export type { Invoice, InvoiceLineItem, InvoiceSummary, Tenant, TenantAddress, BillingHistory } from './lib/types';
21
+ export type { CustomerDataLoadedEvent, PlanSelectedEvent, PurchaseSelectedEvent, ErrorEvent, CssVarMap } from './lib/types';
22
+ export { FeatureType, FeatureModel, FeatureStatus, SubscriptionStatus, InvoiceStatusType, InvoiceItemType, PriceTypes, TierType, ResetIntervals, EnforcementType, BillingInterval, BillingTimingTypes, AggregationMethods, OneOffType, PoolType, OfferingTypes, LocalizationSelection, ScheduledChangeType } from './lib/types/enum';
@@ -0,0 +1,3 @@
1
+ *,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
2
+
3
+ /*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.bottom-4{bottom:1rem}.bottom-full{bottom:100%}.left-0{left:0}.left-1\/2{left:50%}.left-3{left:.75rem}.right-0{right:0}.right-3{right:.75rem}.right-4{right:1rem}.top-0{top:0}.top-1\/2{top:50%}.top-4{top:1rem}.top-full{top:100%}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.z-\[100\]{z-index:100}.col-span-2{grid-column:span 2/span 2}.-mx-4{margin-left:-1rem;margin-right:-1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.my-\[6px\]{margin-top:6px;margin-bottom:6px}.my-auto{margin-top:auto;margin-bottom:auto}.-mt-\[4px\]{margin-top:-4px}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-\[5px\]{margin-bottom:5px}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-auto{margin-left:auto}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-12{margin-top:3rem}.mt-2{margin-top:.5rem}.mt-2\.5{margin-top:.625rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-auto{margin-top:auto}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-2,.line-clamp-3{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical}.line-clamp-3{-webkit-line-clamp:3}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-16{height:4rem}.h-4{height:1rem}.h-48{height:12rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-\[500px\]{height:500px}.h-\[51px\]{height:51px}.h-\[6px\]{height:6px}.h-\[72px\]{height:72px}.h-full{height:100%}.max-h-\[80vh\]{max-height:80vh}.max-h-\[85vh\]{max-height:85vh}.max-h-\[90vh\]{max-height:90vh}.min-h-0{min-height:0}.min-h-\[187px\]{min-height:187px}.min-h-\[2\.5rem\]{min-height:2.5rem}.min-h-\[2\.75rem\]{min-height:2.75rem}.min-h-\[200px\]{min-height:200px}.min-h-\[240px\]{min-height:240px}.min-h-\[3\.5rem\]{min-height:3.5rem}.min-h-\[75vh\]{min-height:75vh}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-16{width:4rem}.w-20{width:5rem}.w-40{width:10rem}.w-6{width:1.5rem}.w-9{width:2.25rem}.w-\[15rem\]{width:15rem}.w-\[281px\]{width:281px}.w-\[330px\]{width:330px}.w-\[50\%\]{width:50%}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.min-w-0{min-width:0}.min-w-\[10rem\]{min-width:10rem}.min-w-\[400px\]{min-width:400px}.min-w-\[40px\]{min-width:40px}.min-w-\[8rem\]{min-width:8rem}.min-w-full{min-width:100%}.max-w-3xl{max-width:48rem}.max-w-\[1089px\]{max-width:1089px}.max-w-\[120px\]{max-width:120px}.max-w-\[12rem\]{max-width:12rem}.max-w-\[130px\]{max-width:130px}.max-w-\[165px\]{max-width:165px}.max-w-\[18rem\]{max-width:18rem}.max-w-\[24rem\]{max-width:24rem}.max-w-\[60rem\]{max-width:60rem}.max-w-\[65\%\]{max-width:65%}.max-w-\[80px\]{max-width:80px}.max-w-full{max-width:100%}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.rotate-180{--tw-rotate:180deg}.rotate-180,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-help{cursor:help}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-text{-webkit-user-select:text;-moz-user-select:text;user-select:text}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-\[10px\]{gap:10px}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-0{row-gap:0}.gap-y-1{row-gap:.25rem}.gap-y-3{row-gap:.75rem}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.self-start{align-self:flex-start}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.text-balance{text-wrap:balance}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-\[14px\]{border-radius:14px}.rounded-\[var\(--cp-btn-primary-radius\)\]{border-radius:var(--cp-btn-primary-radius)}.rounded-\[var\(--cp-btn-secondary-radius\)\]{border-radius:var(--cp-btn-secondary-radius)}.rounded-\[var\(--cp-modal-radius\)\]{border-radius:var(--cp-modal-radius)}.rounded-\[var\(--cp-popover-menu-radius\)\]{border-radius:var(--cp-popover-menu-radius)}.rounded-\[var\(--cp-section-content-radius\)\]{border-radius:var(--cp-section-content-radius)}.rounded-\[var\(--cp-section-summary-radius\)\]{border-radius:var(--cp-section-summary-radius)}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.\!border-0{border-width:0!important}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-t{border-top-width:1px}.border-t-4{border-top-width:4px}.border-none{border-style:none}.border-\[var\(--cp-btn-primary-border\)\]{border-color:var(--cp-btn-primary-border)}.border-\[var\(--cp-btn-secondary-border\)\]{border-color:var(--cp-btn-secondary-border)}.border-\[var\(--cp-popover-menu-border\)\]{border-color:var(--cp-popover-menu-border)}.border-\[var\(--cp-section-content-border\)\]{border-color:var(--cp-section-content-border)}.border-\[var\(--cp-section-content-border\2c \#e4e4e7\)\]{border-color:var(--cp-section-content-border,#e4e4e7)}.border-\[var\(--cp-section-summary-border\)\]{border-color:var(--cp-section-summary-border)}.border-\[var\(--cp-subscription-child-border\2c \#e4e4e7\)\]{border-color:var(--cp-subscription-child-border,#e4e4e7)}.border-\[var\(--cp-subscription-item-border\2c \#e4e4e7\)\]{border-color:var(--cp-subscription-item-border,#e4e4e7)}.border-\[var\(--cp-table-border\)\]{border-color:var(--cp-table-border)}.border-\[var\(--cp-tabs-border\)\]{border-color:var(--cp-tabs-border)}.border-\[var\(--pt-card-description-link\)\]{border-color:var(--pt-card-description-link)}.border-\[var\(--pt-card-header-bg\)\]{border-color:var(--pt-card-header-bg)}.border-\[var\(--pt-card-price-border\)\]{border-color:var(--pt-card-price-border)}.border-\[var\(--pt-interval-border\)\]{border-color:var(--pt-interval-border)}.border-\[var\(--pt-tabs-border\)\]{border-color:var(--pt-tabs-border)}.border-\[var\(--pt-tabs-indicator\)\]{border-color:var(--pt-tabs-indicator)}.border-gray-100{--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.border-gray-900{--tw-border-opacity:1;border-color:rgb(17 24 39/var(--tw-border-opacity,1))}.border-neutral-200{--tw-border-opacity:1;border-color:rgb(229 229 229/var(--tw-border-opacity,1))}.border-red-200{--tw-border-opacity:1;border-color:rgb(254 202 202/var(--tw-border-opacity,1))}.border-b-\[var\(--cp-popover-menu-divider\)\]{border-bottom-color:var(--cp-popover-menu-divider)}.border-t-gray-600{--tw-border-opacity:1;border-top-color:rgb(75 85 99/var(--tw-border-opacity,1))}.\!bg-transparent{background-color:transparent!important}.bg-\[\#1a1f71\]{--tw-bg-opacity:1;background-color:rgb(26 31 113/var(--tw-bg-opacity,1))}.bg-\[var\(--cp-btn-primary-bg\)\]{background-color:var(--cp-btn-primary-bg)}.bg-\[var\(--cp-btn-secondary-bg\)\]{background-color:var(--cp-btn-secondary-bg)}.bg-\[var\(--cp-modal-bg\)\]{background-color:var(--cp-modal-bg)}.bg-\[var\(--cp-popover-menu-bg\)\]{background-color:var(--cp-popover-menu-bg)}.bg-\[var\(--cp-section-content-bg\)\]{background-color:var(--cp-section-content-bg)}.bg-\[var\(--cp-section-content-bg\2c \#F4F4F5\)\]{background-color:var(--cp-section-content-bg,#f4f4f5)}.bg-\[var\(--cp-section-summary-bg\)\]{background-color:var(--cp-section-summary-bg)}.bg-\[var\(--cp-section-usage-bar-color\)\]{background-color:var(--cp-section-usage-bar-color)}.bg-\[var\(--cp-section-usage-bar-track-color\)\]{background-color:var(--cp-section-usage-bar-track-color)}.bg-\[var\(--cp-section-usage-bar-track-color\2c \#E4E4E7\)\]{background-color:var(--cp-section-usage-bar-track-color,#e4e4e7)}.bg-\[var\(--cp-subscription-child-bg\2c white\)\]{background-color:var(--cp-subscription-child-bg,#fff)}.bg-\[var\(--cp-subscription-item-bg\2c white\)\]{background-color:var(--cp-subscription-item-bg,#fff)}.bg-\[var\(--cp-table-header-bg\)\]{background-color:var(--cp-table-header-bg)}.bg-\[var\(--cp-table-row-even-bg\)\]{background-color:var(--cp-table-row-even-bg)}.bg-\[var\(--cp-table-row-odd-bg\)\]{background-color:var(--cp-table-row-odd-bg)}.bg-\[var\(--cp-tabs-active-bg\)\]{background-color:var(--cp-tabs-active-bg)}.bg-\[var\(--cp-tabs-active-text\)\]{background-color:var(--cp-tabs-active-text)}.bg-\[var\(--cp-tabs-bg\)\]{background-color:var(--cp-tabs-bg)}.bg-\[var\(--pt-button-bg\)\]{background-color:var(--pt-button-bg)}.bg-\[var\(--pt-button-secondary-bg\)\]{background-color:var(--pt-button-secondary-bg)}.bg-\[var\(--pt-card-bg\)\]{background-color:var(--pt-card-bg)}.bg-\[var\(--pt-card-header-bg\)\]{background-color:var(--pt-card-header-bg)}.bg-\[var\(--pt-card-price-bg\)\]{background-color:var(--pt-card-price-bg)}.bg-\[var\(--pt-current-sub-card-header-bg\)\]{background-color:var(--pt-current-sub-card-header-bg)}.bg-\[var\(--pt-free-trial-bg\)\]{background-color:var(--pt-free-trial-bg)}.bg-\[var\(--pt-interval-active-bg\)\]{background-color:var(--pt-interval-active-bg)}.bg-\[var\(--pt-interval-bg\)\]{background-color:var(--pt-interval-bg)}.bg-black\/50{background-color:rgba(0,0,0,.5)}.bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity,1))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity,1))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity,1))}.bg-neutral-100{--tw-bg-opacity:1;background-color:rgb(245 245 245/var(--tw-bg-opacity,1))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity,1))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity,1))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.from-\[var\(--pt-card-gradient\)\]{--tw-gradient-from:var(--pt-card-gradient) var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-\[var\(--pt-card-bg\)\]{--tw-gradient-to:var(--pt-card-bg) var(--tw-gradient-to-position)}.bg-\[length\:1rem\]{background-size:1rem}.bg-\[right_0\.5rem_center\]{background-position:right .5rem center}.bg-no-repeat{background-repeat:no-repeat}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-\[var\(--cp-popover-menu-item-padding\)\]{padding:var(--cp-popover-menu-item-padding)}.p-\[var\(\.\.\.\)\]{padding:var(...)}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-\[var\(\.\.\.\)\]{padding-left:var(...);padding-right:var(...)}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-20{padding-top:5rem;padding-bottom:5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pb-4{padding-bottom:1rem}.pb-\[2px\]{padding-bottom:2px}.pb-\[72px\]{padding-bottom:72px}.pl-10{padding-left:2.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-10{padding-right:2.5rem}.pr-12{padding-right:3rem}.pr-3{padding-right:.75rem}.pr-8{padding-right:2rem}.pr-9{padding-right:2.25rem}.pr-\[5px\]{padding-right:5px}.pt-2{padding-top:.5rem}.pt-2\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-\[21px\]{padding-top:21px}.pt-\[6px\]{padding-top:6px}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.font-sans{font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-\[10px\]{font-size:10px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[16px\]{font-size:16px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.leading-\[120\%\]{line-height:120%}.leading-tight{line-height:1.25}.\!text-\[var\(--cp-popover-menu-item-danger-text\)\]{color:var(--cp-popover-menu-item-danger-text)!important}.text-\[var\(--cp-btn-primary-text\)\]{color:var(--cp-btn-primary-text)}.text-\[var\(--cp-btn-secondary-text\)\]{color:var(--cp-btn-secondary-text)}.text-\[var\(--cp-info-banner-text\)\]{color:var(--cp-info-banner-text)}.text-\[var\(--cp-link-color\)\]{color:var(--cp-link-color)}.text-\[var\(--cp-link-color\2c \#3b82f6\)\]{color:var(--cp-link-color,#3b82f6)}.text-\[var\(--cp-modal-desc-color\)\]{color:var(--cp-modal-desc-color)}.text-\[var\(--cp-modal-title-color\)\]{color:var(--cp-modal-title-color)}.text-\[var\(--cp-popover-menu-item-text\)\]{color:var(--cp-popover-menu-item-text)}.text-\[var\(--cp-popover-trigger-icon-color\)\]{color:var(--cp-popover-trigger-icon-color)}.text-\[var\(--cp-section-empty-text\)\]{color:var(--cp-section-empty-text)}.text-\[var\(--cp-section-header-color\)\]{color:var(--cp-section-header-color)}.text-\[var\(--cp-section-label-color\)\]{color:var(--cp-section-label-color)}.text-\[var\(--cp-section-value-color\)\]{color:var(--cp-section-value-color)}.text-\[var\(--cp-subscription-child-quantity\2c \#6b7280\)\]{color:var(--cp-subscription-child-quantity,#6b7280)}.text-\[var\(--cp-subscription-child-text\)\]{color:var(--cp-subscription-child-text)}.text-\[var\(--cp-subscription-item-quantity\2c \#6b7280\)\]{color:var(--cp-subscription-item-quantity,#6b7280)}.text-\[var\(--cp-subscription-item-text\)\]{color:var(--cp-subscription-item-text)}.text-\[var\(--cp-table-header-text\)\]{color:var(--cp-table-header-text)}.text-\[var\(--cp-table-text\)\]{color:var(--cp-table-text)}.text-\[var\(--cp-tabs-active-bg\)\]{color:var(--cp-tabs-active-bg)}.text-\[var\(--cp-tabs-active-text\)\]{color:var(--cp-tabs-active-text)}.text-\[var\(--cp-tabs-inactive-text\)\]{color:var(--cp-tabs-inactive-text)}.text-\[var\(--pt-button-link\)\]{color:var(--pt-button-link)}.text-\[var\(--pt-button-secondary-text\)\]{color:var(--pt-button-secondary-text)}.text-\[var\(--pt-button-text\)\]{color:var(--pt-button-text)}.text-\[var\(--pt-card-description-link\)\]{color:var(--pt-card-description-link)}.text-\[var\(--pt-card-description-text\)\]{color:var(--pt-card-description-text)}.text-\[var\(--pt-card-header-text\)\]{color:var(--pt-card-header-text)}.text-\[var\(--pt-card-price-amount\)\]{color:var(--pt-card-price-amount)}.text-\[var\(--pt-card-price-secondary-text\)\]{color:var(--pt-card-price-secondary-text)}.text-\[var\(--pt-current-sub-card-header-text\)\]{color:var(--pt-current-sub-card-header-text)}.text-\[var\(--pt-feature-icon\)\]{color:var(--pt-feature-icon)}.text-\[var\(--pt-feature-text\)\]{color:var(--pt-feature-text)}.text-\[var\(--pt-free-trial-text\)\]{color:var(--pt-free-trial-text)}.text-\[var\(--pt-interval-active-text\)\]{color:var(--pt-interval-active-text)}.text-\[var\(--pt-interval-inactive-text\)\]{color:var(--pt-interval-inactive-text)}.text-\[var\(--pt-tabs-active-text\)\]{color:var(--pt-tabs-active-text)}.text-\[var\(--pt-tabs-inactive-text\)\]{color:var(--pt-tabs-inactive-text)}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity,1))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity,1))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity,1))}.text-neutral-500{--tw-text-opacity:1;color:rgb(115 115 115/var(--tw-text-opacity,1))}.text-neutral-900{--tw-text-opacity:1;color:rgb(23 23 23/var(--tw-text-opacity,1))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity,1))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.shadow-2xl,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-sm,.shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}:root{--mfx-grey-50:#fafafa;--mfx-grey-100:#f4f4f5;--mfx-grey-200:#e4e4e7;--mfx-grey-300:#d4d4d8;--mfx-grey-400:#a1a1aa;--mfx-grey-500:#71717a;--mfx-grey-600:#52525b;--mfx-grey-700:#3f3f46;--mfx-grey-800:#27272a;--mfx-grey-900:#18181b;--mfx-primary:#3d3d3d;--mfx-secondary:#def764;--mfx-blue:#006fee;--mfx-black:#0f0f0f;--mfx-success:#17c964;--mfx-white:#fff;--mfx-dark:#191919;--mfx-danger:#de1135;--mfx-warning:#f5a524;--mfx-green-100:#e9ffd4;--mfx-green-200:#e6f7ea;--mfx-green-500:#6fe200;--mfx-green-600:#0bb02f;--mfx-red-100:#ffe5e5;--mfx-red-500:#e60000;--mfx-red-600:#cf2140;--mfx-neutral-100:#f5f5f5;--mfx-neutral-200:#e5e5e5;--mfx-font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;--mfx-border-radius:0.5rem;--mfx-border-radius-lg:0.75rem;--mfx-border-radius-xl:1rem;--mfx-border-radius-full:9999px;--mfx-transition:all 0.2s ease;--mfx-shadow-sm:0 1px 2px 0 rgba(0,0,0,.05);--mfx-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);--mfx-shadow-md:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.metrifox-customer-portal,.metrifox-pricing-table{font-family:var(--mfx-font-family);line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mfx-flex{display:flex}.mfx-flex-col{flex-direction:column}.mfx-items-center{align-items:center}.mfx-justify-center{justify-content:center}.mfx-justify-between{justify-content:space-between}.mfx-gap-1{gap:.25rem}.mfx-gap-2{gap:.5rem}.mfx-gap-3{gap:.75rem}.mfx-gap-4{gap:1rem}.mfx-p-4{padding:1rem}.mfx-p-6{padding:1.5rem}.mfx-px-4{padding-left:1rem;padding-right:1rem}.mfx-py-2{padding-top:.5rem;padding-bottom:.5rem}.mfx-mb-2{margin-bottom:.5rem}.mfx-mb-4{margin-bottom:1rem}.mfx-mt-4{margin-top:1rem}.mfx-text-sm{font-size:.875rem}.mfx-text-xs{font-size:.75rem}.mfx-text-lg{font-size:1.125rem}.mfx-text-xl{font-size:1.25rem}.mfx-text-2xl{font-size:1.5rem}.mfx-font-medium{font-weight:500}.mfx-font-semibold{font-weight:600}.mfx-font-bold{font-weight:700}.mfx-text-center{text-align:center}.mfx-text-primary{color:var(--mfx-primary)}.mfx-text-muted{color:var(--mfx-grey-500)}.mfx-text-success{color:var(--mfx-green-600)}.mfx-text-danger{color:var(--mfx-danger)}.mfx-text-warning{color:var(--mfx-warning)}.mfx-bg-white{background-color:var(--mfx-white)}.mfx-bg-grey-50{background-color:var(--mfx-grey-50)}.mfx-bg-grey-100{background-color:var(--mfx-grey-100)}.mfx-bg-primary{background-color:var(--mfx-primary)}.mfx-border{border:1px solid var(--mfx-grey-200)}.mfx-rounded{border-radius:var(--mfx-border-radius)}.mfx-rounded-lg{border-radius:var(--mfx-border-radius-lg)}.mfx-rounded-xl{border-radius:var(--mfx-border-radius-xl)}.mfx-rounded-full{border-radius:var(--mfx-border-radius-full)}@keyframes mfx-shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes mfx-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes mfx-fade-in{0%{opacity:0}to{opacity:1}}@keyframes mfx-slide-up{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.mfx-skeleton{background:linear-gradient(90deg,var(--mfx-grey-200) 25%,var(--mfx-grey-100) 50%,var(--mfx-grey-200) 75%);background-size:200% 100%;animation:mfx-shimmer 1.5s infinite;border-radius:var(--mfx-border-radius)}.mfx-spinner{width:1.5rem;height:1.5rem;border:2px solid var(--mfx-grey-200);border-top-color:var(--mfx-primary);border-radius:50%;animation:mfx-spin .8s linear infinite}.mfx-btn{display:inline-flex;align-items:center;justify-content:center;padding:.5rem 1rem;font-size:.875rem;font-weight:500;border-radius:var(--mfx-border-radius);border:none;cursor:pointer;transition:var(--mfx-transition)}.mfx-btn:disabled{opacity:.5;cursor:not-allowed}.mfx-btn-primary{background-color:var(--mfx-primary);color:var(--mfx-white)}.mfx-btn-primary:hover:not(:disabled){opacity:.9}.mfx-btn-secondary{background-color:var(--mfx-grey-100);color:var(--mfx-black)}.mfx-btn-secondary:hover:not(:disabled){background-color:var(--mfx-grey-200)}.mfx-card{background-color:var(--mfx-white);border:1px solid var(--mfx-grey-200);border-radius:var(--mfx-border-radius-lg);overflow:hidden}.mfx-badge{display:inline-flex;align-items:center;padding:.125rem .5rem;font-size:.75rem;font-weight:500;border-radius:var(--mfx-border-radius-full)}.mfx-badge-success{background-color:var(--mfx-green-200);color:var(--mfx-green-600)}.mfx-badge-warning{background-color:#fef3c7;color:#d97706}.mfx-badge-danger{background-color:var(--mfx-red-100);color:var(--mfx-red-600)}.mfx-badge-info{background-color:#dbeafe;color:#2563eb}.mfx-badge-neutral{background-color:var(--mfx-grey-100);color:var(--mfx-grey-600)}@media (max-width:640px){.mfx-hide-sm{display:none}}@media (min-width:641px){.mfx-show-sm{display:none}}@media (max-width:768px){.mfx-hide-md{display:none}}@media (min-width:769px){.mfx-show-md{display:none}}.mfx-btn:focus-visible,.mfx-input:focus-visible,.mfx-tab:focus-visible{outline:2px solid var(--mfx-blue);outline-offset:2px}@media (prefers-reduced-motion:reduce){.mfx-skeleton,.mfx-spinner{animation:none}*{transition-duration:.01ms!important}}.mfx-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}@media print{.metrifox-customer-portal,.metrifox-pricing-table{color:#000;background:#fff}.mfx-btn,.mfx-tab{border:1px solid #000}.mfx-skeleton{background:#e5e5e5;animation:none}}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:left-\[2px\]:after{content:var(--tw-content);left:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-4:after{content:var(--tw-content);height:1rem}.after\:w-4:after{content:var(--tw-content);width:1rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content:"";content:var(--tw-content)}.first\:border-t-0:first-child{border-top-width:0}.first\:pt-0:first-child{padding-top:0}.last\:border-0:last-child{border-width:0}.last\:border-b-0:last-child{border-bottom-width:0}.hover\:bg-\[var\(--cp-popover-menu-item-hover-bg\)\]:hover{background-color:var(--cp-popover-menu-item-hover-bg)}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.hover\:text-gray-600:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity,1))}.hover\:opacity-60:hover{opacity:.6}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-90:hover{opacity:.9}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-gray-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(156 163 175/var(--tw-ring-opacity,1))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.peer:checked~.peer-checked\:bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity,1))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x:100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}@media not all and (min-width:768px){.max-md\:bottom-0{bottom:0}.max-md\:w-full{width:100%}.max-md\:rounded-none{border-radius:0}.max-md\:pb-4{padding-bottom:1rem}}@media (min-width:640px){.sm\:gap-x-20{-moz-column-gap:5rem;column-gap:5rem}}@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}}@media (min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
@@ -0,0 +1,304 @@
1
+ @angular/common
2
+ MIT
3
+ The MIT License
4
+
5
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+
25
+
26
+ @angular/core
27
+ MIT
28
+ The MIT License
29
+
30
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
31
+
32
+ Permission is hereby granted, free of charge, to any person obtaining a copy
33
+ of this software and associated documentation files (the "Software"), to deal
34
+ in the Software without restriction, including without limitation the rights
35
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
+ copies of the Software, and to permit persons to whom the Software is
37
+ furnished to do so, subject to the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be included in
40
+ all copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48
+ THE SOFTWARE.
49
+
50
+
51
+ @angular/platform-browser
52
+ MIT
53
+ The MIT License
54
+
55
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
56
+
57
+ Permission is hereby granted, free of charge, to any person obtaining a copy
58
+ of this software and associated documentation files (the "Software"), to deal
59
+ in the Software without restriction, including without limitation the rights
60
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
61
+ copies of the Software, and to permit persons to whom the Software is
62
+ furnished to do so, subject to the following conditions:
63
+
64
+ The above copyright notice and this permission notice shall be included in
65
+ all copies or substantial portions of the Software.
66
+
67
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
68
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
69
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
70
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
71
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
72
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
73
+ THE SOFTWARE.
74
+
75
+
76
+ rxjs
77
+ Apache-2.0
78
+ Apache License
79
+ Version 2.0, January 2004
80
+ http://www.apache.org/licenses/
81
+
82
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
83
+
84
+ 1. Definitions.
85
+
86
+ "License" shall mean the terms and conditions for use, reproduction,
87
+ and distribution as defined by Sections 1 through 9 of this document.
88
+
89
+ "Licensor" shall mean the copyright owner or entity authorized by
90
+ the copyright owner that is granting the License.
91
+
92
+ "Legal Entity" shall mean the union of the acting entity and all
93
+ other entities that control, are controlled by, or are under common
94
+ control with that entity. For the purposes of this definition,
95
+ "control" means (i) the power, direct or indirect, to cause the
96
+ direction or management of such entity, whether by contract or
97
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
98
+ outstanding shares, or (iii) beneficial ownership of such entity.
99
+
100
+ "You" (or "Your") shall mean an individual or Legal Entity
101
+ exercising permissions granted by this License.
102
+
103
+ "Source" form shall mean the preferred form for making modifications,
104
+ including but not limited to software source code, documentation
105
+ source, and configuration files.
106
+
107
+ "Object" form shall mean any form resulting from mechanical
108
+ transformation or translation of a Source form, including but
109
+ not limited to compiled object code, generated documentation,
110
+ and conversions to other media types.
111
+
112
+ "Work" shall mean the work of authorship, whether in Source or
113
+ Object form, made available under the License, as indicated by a
114
+ copyright notice that is included in or attached to the work
115
+ (an example is provided in the Appendix below).
116
+
117
+ "Derivative Works" shall mean any work, whether in Source or Object
118
+ form, that is based on (or derived from) the Work and for which the
119
+ editorial revisions, annotations, elaborations, or other modifications
120
+ represent, as a whole, an original work of authorship. For the purposes
121
+ of this License, Derivative Works shall not include works that remain
122
+ separable from, or merely link (or bind by name) to the interfaces of,
123
+ the Work and Derivative Works thereof.
124
+
125
+ "Contribution" shall mean any work of authorship, including
126
+ the original version of the Work and any modifications or additions
127
+ to that Work or Derivative Works thereof, that is intentionally
128
+ submitted to Licensor for inclusion in the Work by the copyright owner
129
+ or by an individual or Legal Entity authorized to submit on behalf of
130
+ the copyright owner. For the purposes of this definition, "submitted"
131
+ means any form of electronic, verbal, or written communication sent
132
+ to the Licensor or its representatives, including but not limited to
133
+ communication on electronic mailing lists, source code control systems,
134
+ and issue tracking systems that are managed by, or on behalf of, the
135
+ Licensor for the purpose of discussing and improving the Work, but
136
+ excluding communication that is conspicuously marked or otherwise
137
+ designated in writing by the copyright owner as "Not a Contribution."
138
+
139
+ "Contributor" shall mean Licensor and any individual or Legal Entity
140
+ on behalf of whom a Contribution has been received by Licensor and
141
+ subsequently incorporated within the Work.
142
+
143
+ 2. Grant of Copyright License. Subject to the terms and conditions of
144
+ this License, each Contributor hereby grants to You a perpetual,
145
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
146
+ copyright license to reproduce, prepare Derivative Works of,
147
+ publicly display, publicly perform, sublicense, and distribute the
148
+ Work and such Derivative Works in Source or Object form.
149
+
150
+ 3. Grant of Patent License. Subject to the terms and conditions of
151
+ this License, each Contributor hereby grants to You a perpetual,
152
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
153
+ (except as stated in this section) patent license to make, have made,
154
+ use, offer to sell, sell, import, and otherwise transfer the Work,
155
+ where such license applies only to those patent claims licensable
156
+ by such Contributor that are necessarily infringed by their
157
+ Contribution(s) alone or by combination of their Contribution(s)
158
+ with the Work to which such Contribution(s) was submitted. If You
159
+ institute patent litigation against any entity (including a
160
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
161
+ or a Contribution incorporated within the Work constitutes direct
162
+ or contributory patent infringement, then any patent licenses
163
+ granted to You under this License for that Work shall terminate
164
+ as of the date such litigation is filed.
165
+
166
+ 4. Redistribution. You may reproduce and distribute copies of the
167
+ Work or Derivative Works thereof in any medium, with or without
168
+ modifications, and in Source or Object form, provided that You
169
+ meet the following conditions:
170
+
171
+ (a) You must give any other recipients of the Work or
172
+ Derivative Works a copy of this License; and
173
+
174
+ (b) You must cause any modified files to carry prominent notices
175
+ stating that You changed the files; and
176
+
177
+ (c) You must retain, in the Source form of any Derivative Works
178
+ that You distribute, all copyright, patent, trademark, and
179
+ attribution notices from the Source form of the Work,
180
+ excluding those notices that do not pertain to any part of
181
+ the Derivative Works; and
182
+
183
+ (d) If the Work includes a "NOTICE" text file as part of its
184
+ distribution, then any Derivative Works that You distribute must
185
+ include a readable copy of the attribution notices contained
186
+ within such NOTICE file, excluding those notices that do not
187
+ pertain to any part of the Derivative Works, in at least one
188
+ of the following places: within a NOTICE text file distributed
189
+ as part of the Derivative Works; within the Source form or
190
+ documentation, if provided along with the Derivative Works; or,
191
+ within a display generated by the Derivative Works, if and
192
+ wherever such third-party notices normally appear. The contents
193
+ of the NOTICE file are for informational purposes only and
194
+ do not modify the License. You may add Your own attribution
195
+ notices within Derivative Works that You distribute, alongside
196
+ or as an addendum to the NOTICE text from the Work, provided
197
+ that such additional attribution notices cannot be construed
198
+ as modifying the License.
199
+
200
+ You may add Your own copyright statement to Your modifications and
201
+ may provide additional or different license terms and conditions
202
+ for use, reproduction, or distribution of Your modifications, or
203
+ for any such Derivative Works as a whole, provided Your use,
204
+ reproduction, and distribution of the Work otherwise complies with
205
+ the conditions stated in this License.
206
+
207
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
208
+ any Contribution intentionally submitted for inclusion in the Work
209
+ by You to the Licensor shall be under the terms and conditions of
210
+ this License, without any additional terms or conditions.
211
+ Notwithstanding the above, nothing herein shall supersede or modify
212
+ the terms of any separate license agreement you may have executed
213
+ with Licensor regarding such Contributions.
214
+
215
+ 6. Trademarks. This License does not grant permission to use the trade
216
+ names, trademarks, service marks, or product names of the Licensor,
217
+ except as required for reasonable and customary use in describing the
218
+ origin of the Work and reproducing the content of the NOTICE file.
219
+
220
+ 7. Disclaimer of Warranty. Unless required by applicable law or
221
+ agreed to in writing, Licensor provides the Work (and each
222
+ Contributor provides its Contributions) on an "AS IS" BASIS,
223
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
224
+ implied, including, without limitation, any warranties or conditions
225
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
226
+ PARTICULAR PURPOSE. You are solely responsible for determining the
227
+ appropriateness of using or redistributing the Work and assume any
228
+ risks associated with Your exercise of permissions under this License.
229
+
230
+ 8. Limitation of Liability. In no event and under no legal theory,
231
+ whether in tort (including negligence), contract, or otherwise,
232
+ unless required by applicable law (such as deliberate and grossly
233
+ negligent acts) or agreed to in writing, shall any Contributor be
234
+ liable to You for damages, including any direct, indirect, special,
235
+ incidental, or consequential damages of any character arising as a
236
+ result of this License or out of the use or inability to use the
237
+ Work (including but not limited to damages for loss of goodwill,
238
+ work stoppage, computer failure or malfunction, or any and all
239
+ other commercial damages or losses), even if such Contributor
240
+ has been advised of the possibility of such damages.
241
+
242
+ 9. Accepting Warranty or Additional Liability. While redistributing
243
+ the Work or Derivative Works thereof, You may choose to offer,
244
+ and charge a fee for, acceptance of support, warranty, indemnity,
245
+ or other liability obligations and/or rights consistent with this
246
+ License. However, in accepting such obligations, You may act only
247
+ on Your own behalf and on Your sole responsibility, not on behalf
248
+ of any other Contributor, and only if You agree to indemnify,
249
+ defend, and hold each Contributor harmless for any liability
250
+ incurred by, or claims asserted against, such Contributor by reason
251
+ of your accepting any such warranty or additional liability.
252
+
253
+ END OF TERMS AND CONDITIONS
254
+
255
+ APPENDIX: How to apply the Apache License to your work.
256
+
257
+ To apply the Apache License to your work, attach the following
258
+ boilerplate notice, with the fields enclosed by brackets "[]"
259
+ replaced with your own identifying information. (Don't include
260
+ the brackets!) The text should be enclosed in the appropriate
261
+ comment syntax for the file format. We also recommend that a
262
+ file or class name and description of purpose be included on the
263
+ same "printed page" as the copyright notice for easier
264
+ identification within third-party archives.
265
+
266
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
267
+
268
+ Licensed under the Apache License, Version 2.0 (the "License");
269
+ you may not use this file except in compliance with the License.
270
+ You may obtain a copy of the License at
271
+
272
+ http://www.apache.org/licenses/LICENSE-2.0
273
+
274
+ Unless required by applicable law or agreed to in writing, software
275
+ distributed under the License is distributed on an "AS IS" BASIS,
276
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
277
+ See the License for the specific language governing permissions and
278
+ limitations under the License.
279
+
280
+
281
+
282
+ zone.js
283
+ MIT
284
+ The MIT License
285
+
286
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
287
+
288
+ Permission is hereby granted, free of charge, to any person obtaining a copy
289
+ of this software and associated documentation files (the "Software"), to deal
290
+ in the Software without restriction, including without limitation the rights
291
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
292
+ copies of the Software, and to permit persons to whom the Software is
293
+ furnished to do so, subject to the following conditions:
294
+
295
+ The above copyright notice and this permission notice shall be included in
296
+ all copies or substantial portions of the Software.
297
+
298
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
299
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
300
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
301
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
302
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
303
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
304
+ THE SOFTWARE.
@@ -0,0 +1,12 @@
1
+ <!doctype html>
2
+ <html lang="en" data-beasties-container>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Metrifox Angular SDK</title>
6
+ <base href="/">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <style>*,:before,:after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}:root{--mfx-grey-50:#FAFAFA;--mfx-grey-100:#F4F4F5;--mfx-grey-200:#E4E4E7;--mfx-grey-300:#D4D4D8;--mfx-grey-400:#A1A1AA;--mfx-grey-500:#71717A;--mfx-grey-600:#52525B;--mfx-grey-700:#3F3F46;--mfx-grey-800:#27272A;--mfx-grey-900:#18181B;--mfx-primary:#3D3D3D;--mfx-secondary:#DEF764;--mfx-blue:#006FEE;--mfx-black:#0F0F0F;--mfx-success:#17C964;--mfx-white:#FFFFFF;--mfx-dark:#191919;--mfx-danger:#DE1135;--mfx-warning:#F5A524;--mfx-green-100:#E9FFD4;--mfx-green-200:#E6F7EA;--mfx-green-500:#6FE200;--mfx-green-600:#0BB02F;--mfx-red-100:#FFE5E5;--mfx-red-500:#E60000;--mfx-red-600:#CF2140;--mfx-neutral-100:#F5F5F5;--mfx-neutral-200:#E5E5E5;--mfx-font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--mfx-border-radius:.5rem;--mfx-border-radius-lg:.75rem;--mfx-border-radius-xl:1rem;--mfx-border-radius-full:9999px;--mfx-transition:all .2s ease;--mfx-shadow-sm:0 1px 2px 0 rgba(0, 0, 0, .05);--mfx-shadow:0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);--mfx-shadow-md:0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)}@media (prefers-reduced-motion: reduce){*{transition-duration:.01ms!important}}</style><link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.css"></noscript></head>
9
+ <body>
10
+ <app-root></app-root>
11
+ <script src="runtime.js" type="module"></script><script src="polyfills.js" type="module"></script><script src="main.js" type="module"></script></body>
12
+ </html>