osi-cards-lib 1.5.42 → 1.5.44

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 (39) hide show
  1. package/README.md +1 -1
  2. package/fesm2022/osi-cards-lib.mjs +5242 -3734
  3. package/fesm2022/osi-cards-lib.mjs.map +1 -1
  4. package/index.d.ts +147 -273
  5. package/package.json +4 -3
  6. package/styles/bundles/_ai-card.scss +10 -40
  7. package/styles/bundles/_card-skeleton.scss +1 -1
  8. package/styles/components/_ai-card-renderer.scss +0 -2
  9. package/styles/components/_card-actions.scss +2 -4
  10. package/styles/components/_streaming-effects.scss +0 -20
  11. package/styles/components/sections/_all-sections.generated.scss +0 -3
  12. package/styles/components/sections/_all-sections.scss +88 -64
  13. package/styles/components/sections/_compact-mixins.scss +9 -8
  14. package/styles/components/sections/_component-mixins.scss +40 -11
  15. package/styles/components/sections/_design-system.scss +106 -11
  16. package/styles/components/sections/_master-compact-system.scss +0 -17
  17. package/styles/components/sections/_minimalistic-design.scss +1 -4
  18. package/styles/components/sections/_modern-effects.scss +1 -3
  19. package/styles/components/sections/_modern-sections.scss +13 -69
  20. package/styles/components/sections/_section-animations.scss +158 -77
  21. package/styles/components/sections/_section-shell.scss +38 -9
  22. package/styles/components/sections/_section-types.generated.scss +0 -3
  23. package/styles/components/sections/_sections-base.scss +341 -64
  24. package/styles/components/sections/_unified-section-style.scss +17 -44
  25. package/styles/components/sections/_visual-effects-library.scss +3 -3
  26. package/styles/core/_animations.scss +0 -51
  27. package/styles/core/_global-unified.scss +2 -6
  28. package/styles/core/_mixins.scss +1 -1
  29. package/styles/core/_surface-layers.scss +20 -11
  30. package/styles/design-system/_section-base.scss +9 -32
  31. package/styles/design-system/_tokens.scss +67 -5
  32. package/styles/design-system/_unified-sections.scss +21 -21
  33. package/styles/layout/_masonry.scss +22 -22
  34. package/styles/layout/_tilt.scss +3 -3
  35. package/styles/mixins/_section-mixins.scss +2 -2
  36. package/styles/reset/_shadow-reset.scss +3 -7
  37. package/styles/responsive.scss +9 -7
  38. package/styles/tokens/_master.scss +322 -120
  39. package/styles/tokens/_section-tokens.generated.scss +0 -7
package/index.d.ts CHANGED
@@ -268,7 +268,7 @@ declare const isItemId: typeof isValidItemId;
268
268
  /**
269
269
  * All valid section type identifiers
270
270
  */
271
- type SectionType$1 = 'analytics' | 'brand-colors' | 'chart' | 'contact-card' | 'event' | 'fallback' | 'faq' | 'financials' | 'gallery' | 'info' | 'list' | 'map' | 'network-card' | 'news' | 'overview' | 'product' | 'quotation' | 'social-media' | 'solutions' | 'table' | 'text-reference' | 'timeline' | 'video';
271
+ type SectionType$1 = 'analytics' | 'brand-colors' | 'chart' | 'contact-card' | 'event' | 'faq' | 'financials' | 'gallery' | 'list' | 'map' | 'network-card' | 'news' | 'overview' | 'product' | 'quotation' | 'social-media' | 'solutions' | 'table' | 'text-reference' | 'timeline' | 'video';
272
272
  /**
273
273
  * Section type aliases (alternative names that resolve to canonical types)
274
274
  */
@@ -550,16 +550,16 @@ interface EmailContact {
550
550
  }
551
551
  /**
552
552
  * Email configuration - required when type is 'mail'
553
- * Must include contact, subject, and body
553
+ * Must include subject and body. Contact is optional - can generate email with just title and body.
554
554
  */
555
555
  interface EmailConfig$1 {
556
- /** Contact information - required */
557
- contact: EmailContact;
558
- /** Email subject - required */
556
+ /** Contact information - optional, allows generating email with just subject and body */
557
+ contact?: EmailContact;
558
+ /** Email subject (title) - required */
559
559
  subject: string;
560
560
  /** Email body - required */
561
561
  body: string;
562
- /** Direct recipient email(s) - optional, defaults to contact.email */
562
+ /** Direct recipient email(s) - optional, defaults to contact.email if contact is provided */
563
563
  to?: string | string[];
564
564
  /** CC recipient(s) - optional */
565
565
  cc?: string | string[];
@@ -1466,7 +1466,7 @@ declare class SectionFactory$1 {
1466
1466
  */
1467
1467
  static minimal(type: SectionTypeInput, title: string): CardSection;
1468
1468
  /**
1469
- * Create an info section
1469
+ * Create an overview section (replaces deprecated info section)
1470
1470
  */
1471
1471
  static info(title: string, fields: CardField[]): CardSection;
1472
1472
  /**
@@ -1611,7 +1611,7 @@ declare class ActionFactory {
1611
1611
  /**
1612
1612
  * Section types supported by the library
1613
1613
  */
1614
- type SectionType = 'analytics' | 'brand-colors' | 'chart' | 'contact-card' | 'event' | 'fallback' | 'financials' | 'info' | 'list' | 'map' | 'network-card' | 'news' | 'overview' | 'product' | 'quotation' | 'social-media' | 'solutions' | 'table' | 'text-reference';
1614
+ type SectionType = 'analytics' | 'brand-colors' | 'chart' | 'contact-card' | 'event' | 'financials' | 'list' | 'map' | 'network-card' | 'news' | 'overview' | 'product' | 'quotation' | 'social-media' | 'solutions' | 'table' | 'text-reference';
1615
1615
  /**
1616
1616
  * Section metadata
1617
1617
  */
@@ -1653,7 +1653,7 @@ declare class SectionFactory {
1653
1653
  private initializeRegistry;
1654
1654
  /**
1655
1655
  * Get the component class for a section type.
1656
- * Returns FallbackSection if type is not found.
1656
+ * Returns OverviewSection if type is not found.
1657
1657
  */
1658
1658
  createSection(type: SectionType | string): Promise<Type<unknown>>;
1659
1659
  /**
@@ -1707,10 +1707,6 @@ declare class SectionFactory {
1707
1707
  * ```typescript
1708
1708
  * function handleSection(section: DiscriminatedSection): void {
1709
1709
  * switch (section.type) {
1710
- * case 'info':
1711
- * // TypeScript knows section is InfoSection here
1712
- * console.log(section.fields);
1713
- * break;
1714
1710
  * case 'chart':
1715
1711
  * // TypeScript knows section is ChartSection here
1716
1712
  * console.log(section.chartData);
@@ -1764,16 +1760,6 @@ interface BaseSectionProps {
1764
1760
  /** Additional metadata */
1765
1761
  meta?: Record<string, unknown>;
1766
1762
  }
1767
- /**
1768
- * Info Section - displays key-value pairs
1769
- */
1770
- interface InfoSection extends BaseSectionProps {
1771
- type: 'info';
1772
- fields: CardField[];
1773
- items?: never;
1774
- chartData?: never;
1775
- chartType?: never;
1776
- }
1777
1763
  /**
1778
1764
  * Analytics Section - displays metrics with trends
1779
1765
  */
@@ -1854,18 +1840,6 @@ interface ProductSection extends BaseSectionProps {
1854
1840
  /** Product SKU */
1855
1841
  sku?: string;
1856
1842
  }
1857
- /**
1858
- * Overview Section - displays summary information
1859
- */
1860
- interface OverviewSection extends BaseSectionProps {
1861
- type: 'overview';
1862
- fields: CardField[];
1863
- items?: never;
1864
- chartData?: never;
1865
- chartType?: never;
1866
- /** Overview text content */
1867
- content?: string;
1868
- }
1869
1843
  /**
1870
1844
  * Quotation Section - displays quotes
1871
1845
  */
@@ -2079,29 +2053,13 @@ interface ChartSection extends BaseSectionProps {
2079
2053
  /** Chart height */
2080
2054
  chartHeight?: number;
2081
2055
  }
2082
- /**
2083
- * Fallback Section - handles unknown section types
2084
- */
2085
- interface FallbackSection extends BaseSectionProps {
2086
- type: 'fallback';
2087
- fields?: CardField[];
2088
- items?: CardItem[];
2089
- chartData?: ChartData;
2090
- chartType?: 'bar' | 'line' | 'pie' | 'doughnut';
2091
- /** Original type that was not recognized */
2092
- originalType?: string;
2093
- }
2094
2056
  /**
2095
2057
  * Discriminated union of all section types
2096
2058
  *
2097
2059
  * Use this type when you need exhaustive type checking for section handling.
2098
2060
  * TypeScript will ensure all section types are handled in switch statements.
2099
2061
  */
2100
- type DiscriminatedSection = InfoSection | AnalyticsSection | ContactCardSection | NetworkCardSection | MapSection | FinancialsSection | EventSection | ListSection | TableSection | ChartSection | ProductSection | SolutionsSection | OverviewSection | QuotationSection | TextReferenceSection | BrandColorsSection | NewsSection | SocialMediaSection | TimelineSection | GallerySection | FaqSection | VideoSection | FallbackSection;
2101
- /**
2102
- * Type guard for Info Section
2103
- */
2104
- declare function isInfoSection(section: DiscriminatedSection): section is InfoSection;
2062
+ type DiscriminatedSection = AnalyticsSection | ContactCardSection | NetworkCardSection | MapSection | FinancialsSection | EventSection | ListSection | TableSection | ChartSection | ProductSection | SolutionsSection | QuotationSection | TextReferenceSection | BrandColorsSection | NewsSection | SocialMediaSection | TimelineSection | GallerySection | FaqSection | VideoSection;
2105
2063
  /**
2106
2064
  * Type guard for Analytics Section
2107
2065
  */
@@ -2142,10 +2100,6 @@ declare function isProductSection(section: DiscriminatedSection): section is Pro
2142
2100
  * Type guard for Solutions Section
2143
2101
  */
2144
2102
  declare function isSolutionsSection(section: DiscriminatedSection): section is SolutionsSection;
2145
- /**
2146
- * Type guard for Overview Section
2147
- */
2148
- declare function isOverviewSection(section: DiscriminatedSection): section is OverviewSection;
2149
2103
  /**
2150
2104
  * Type guard for Quotation Section
2151
2105
  */
@@ -2166,14 +2120,10 @@ declare function isNewsSection(section: DiscriminatedSection): section is NewsSe
2166
2120
  * Type guard for Social Media Section
2167
2121
  */
2168
2122
  declare function isSocialMediaSection(section: DiscriminatedSection): section is SocialMediaSection;
2169
- /**
2170
- * Type guard for Fallback Section
2171
- */
2172
- declare function isFallbackSection(section: DiscriminatedSection): section is FallbackSection;
2173
2123
  /**
2174
2124
  * Type guard for field-based sections
2175
2125
  */
2176
- declare function hasFields(section: DiscriminatedSection): section is InfoSection | AnalyticsSection | ContactCardSection | MapSection | FinancialsSection | ProductSection | OverviewSection | QuotationSection | TextReferenceSection | BrandColorsSection;
2126
+ declare function hasFields(section: DiscriminatedSection): section is AnalyticsSection | ContactCardSection | MapSection | FinancialsSection | ProductSection | QuotationSection | TextReferenceSection | BrandColorsSection;
2177
2127
  /**
2178
2128
  * Type guard for item-based sections
2179
2129
  */
@@ -2191,7 +2141,6 @@ declare function hasChartData(section: DiscriminatedSection): section is ChartSe
2191
2141
  * ```typescript
2192
2142
  * function handleSection(section: DiscriminatedSection): string {
2193
2143
  * switch (section.type) {
2194
- * case 'info': return 'Info';
2195
2144
  * case 'analytics': return 'Analytics';
2196
2145
  * // ... all other cases
2197
2146
  * default:
@@ -2206,7 +2155,6 @@ declare function assertNever(x: never): never;
2206
2155
  * Useful for creating type-safe section handlers.
2207
2156
  */
2208
2157
  type SectionTypeMap = {
2209
- info: InfoSection;
2210
2158
  analytics: AnalyticsSection;
2211
2159
  'contact-card': ContactCardSection;
2212
2160
  'network-card': NetworkCardSection;
@@ -2218,7 +2166,6 @@ type SectionTypeMap = {
2218
2166
  chart: ChartSection;
2219
2167
  product: ProductSection;
2220
2168
  solutions: SolutionsSection;
2221
- overview: OverviewSection;
2222
2169
  quotation: QuotationSection;
2223
2170
  'text-reference': TextReferenceSection;
2224
2171
  'brand-colors': BrandColorsSection;
@@ -2228,7 +2175,6 @@ type SectionTypeMap = {
2228
2175
  gallery: GallerySection;
2229
2176
  faq: FaqSection;
2230
2177
  video: VideoSection;
2231
- fallback: FallbackSection;
2232
2178
  };
2233
2179
  /**
2234
2180
  * Extract section type from discriminated section
@@ -2237,7 +2183,7 @@ type ExtractSectionType<T extends DiscriminatedSection> = T['type'];
2237
2183
  /**
2238
2184
  * Get discriminated section type from section type string
2239
2185
  */
2240
- type GetDiscriminatedSection<T extends SectionType$1> = SectionTypeMap[T];
2186
+ type GetDiscriminatedSection<T extends keyof SectionTypeMap> = SectionTypeMap[T];
2241
2187
 
2242
2188
  /**
2243
2189
  * OSI Cards Animation Constants
@@ -6645,7 +6591,7 @@ declare class DynamicSectionLoaderService {
6645
6591
  * 1. Check plugin registry for custom overrides
6646
6592
  * 2. Resolve type aliases to canonical types
6647
6593
  * 3. Look up in generated component map
6648
- * 4. Fall back to FallbackSectionComponent
6594
+ * 4. Fall back to OverviewSectionComponent
6649
6595
  */
6650
6596
  getComponentForSection(section: CardSection): AnySectionComponent;
6651
6597
  /**
@@ -8721,6 +8667,8 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
8721
8667
  private cachedPadding;
8722
8668
  private isFirstCalculation;
8723
8669
  private isFirstPositioning;
8670
+ private animationMonitorInterval?;
8671
+ private previousSectionKeys;
8724
8672
  ngAfterViewInit(): void;
8725
8673
  ngOnChanges(changes: SimpleChanges): void;
8726
8674
  ngOnDestroy(): void;
@@ -8776,6 +8724,24 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
8776
8724
  trackBySection: (index: number, item: SectionWithSpan) => string;
8777
8725
  onSectionEvent(event: SectionRenderEvent): void;
8778
8726
  getSectionId(section: CardSection): string;
8727
+ /**
8728
+ * Handle animation end event for masonry items
8729
+ * This transitions items from animating to animated state
8730
+ */
8731
+ onAnimationEnd(event: AnimationEvent, element: HTMLElement, index: number): void;
8732
+ /**
8733
+ * Mark new sections with animation class
8734
+ * This ensures new sections get the animating class when they first appear
8735
+ */
8736
+ private markNewSectionsForAnimation;
8737
+ /**
8738
+ * Clean up any stuck animations (items with animating class but no active animation)
8739
+ */
8740
+ private cleanupStuckAnimations;
8741
+ /**
8742
+ * Monitor animation state periodically to detect stuck animations
8743
+ */
8744
+ private setupAnimationMonitoring;
8779
8745
  /**
8780
8746
  * Cleanup absolute position polyfill observers
8781
8747
  */
@@ -8855,10 +8821,10 @@ declare class AICardRendererComponent implements OnInit, AfterViewInit, OnDestro
8855
8821
  private sectionHashCache;
8856
8822
  private sectionOrderKeys;
8857
8823
  private _changeType;
8858
- particles: Array<{
8824
+ particles: {
8859
8825
  transform: string;
8860
8826
  opacity: number;
8861
- }>;
8827
+ }[];
8862
8828
  gradientTransform: string;
8863
8829
  contentTransform: string;
8864
8830
  currentMessageIndex: number;
@@ -8989,6 +8955,10 @@ declare class AICardRendererComponent implements OnInit, AfterViewInit, OnDestro
8989
8955
  llmFallbackPrompt?: string;
8990
8956
  ngOnInit(): void;
8991
8957
  ngAfterViewInit(): void;
8958
+ /**
8959
+ * Inspect Shadow DOM styles for debugging
8960
+ */
8961
+ private inspectShadowDOMStyles;
8992
8962
  /**
8993
8963
  * Sets up width measurement for the card container.
8994
8964
  * This ensures reliable masonry layout in Shadow DOM environments.
@@ -9284,8 +9254,11 @@ declare class CardSkeletonComponent {
9284
9254
  declare class OsiCardsComponent {
9285
9255
  private readonly defaultThemeConfig;
9286
9256
  private readonly animationConfig;
9257
+ constructor();
9287
9258
  /** The card configuration to render */
9288
- card?: AICardConfig;
9259
+ set card(value: AICardConfig | undefined);
9260
+ get card(): AICardConfig | undefined;
9261
+ private _card?;
9289
9262
  /** Theme to apply ('day' or 'night') */
9290
9263
  theme?: 'day' | 'night';
9291
9264
  /** Whether to display in fullscreen mode */
@@ -10236,15 +10209,15 @@ declare class BrandColorsSectionComponent extends BaseSectionComponent implement
10236
10209
  /**
10237
10210
  * Chart Section Component
10238
10211
  *
10239
- * Displays data visualizations using Chart.js.
10240
- * Supports: bar, line, pie, doughnut, area, radar charts.
10212
+ * Displays data visualizations using Frappe Charts.
10213
+ * Supports: bar, line, pie, percentage (doughnut), area charts.
10241
10214
  *
10242
- * Note: Requires Chart.js to be installed.
10215
+ * Note: Requires frappe-charts to be installed.
10243
10216
  */
10244
10217
  declare class ChartSectionComponent extends BaseSectionComponent implements AfterViewInit, OnDestroy, OnInit, OnChanges {
10245
10218
  private readonly layoutService;
10246
10219
  ngOnInit(): void;
10247
- chartCanvas?: ElementRef<HTMLCanvasElement>;
10220
+ chartContainer?: ElementRef<HTMLDivElement>;
10248
10221
  private chartInstance;
10249
10222
  protected chartLibraryLoaded: boolean;
10250
10223
  protected chartError: string | null;
@@ -10255,7 +10228,7 @@ declare class ChartSectionComponent extends BaseSectionComponent implements Afte
10255
10228
  ngOnDestroy(): void;
10256
10229
  ngOnChanges(changes: SimpleChanges): void;
10257
10230
  /**
10258
- * Render chart using Chart.js (if available)
10231
+ * Render chart using Frappe Charts (if available)
10259
10232
  */
10260
10233
  private renderChart;
10261
10234
  /**
@@ -10263,17 +10236,33 @@ declare class ChartSectionComponent extends BaseSectionComponent implements Afte
10263
10236
  */
10264
10237
  private updateChart;
10265
10238
  /**
10266
- * Detect if chart data contains revenue/monetary values
10239
+ * Convert Chart.js data format to Frappe Charts format
10267
10240
  */
10268
- private detectRevenueData;
10241
+ private convertToFrappeFormat;
10242
+ /**
10243
+ * Map Chart.js chart types to Frappe Charts types
10244
+ */
10245
+ private mapChartType;
10246
+ /**
10247
+ * Extract colors from Chart.js format
10248
+ */
10249
+ private extractColors;
10269
10250
  /**
10270
- * Get chart options with enhanced configuration
10251
+ * Detect if chart data contains revenue/monetary values
10271
10252
  */
10272
- private getChartOptions;
10253
+ private detectRevenueData;
10273
10254
  /**
10274
10255
  * Format value as currency
10275
10256
  */
10276
10257
  private formatCurrency;
10258
+ /**
10259
+ * Fix Y-axis label rendering issues
10260
+ */
10261
+ private fixYAxisLabels;
10262
+ /**
10263
+ * Fix legend label truncation
10264
+ */
10265
+ private fixLegendLabels;
10277
10266
  /**
10278
10267
  * Destroy chart instance
10279
10268
  */
@@ -10475,6 +10464,10 @@ declare class EventSectionComponent extends BaseSectionComponent implements OnIn
10475
10464
  * Map status to badge variant
10476
10465
  */
10477
10466
  getStatusVariant(status?: string): 'success' | 'warning' | 'error' | 'primary' | 'default';
10467
+ /**
10468
+ * Format status text for display (capitalize first letter)
10469
+ */
10470
+ formatStatus(status?: string): string;
10478
10471
  static ɵfac: i0.ɵɵFactoryDeclaration<EventSectionComponent, never>;
10479
10472
  static ɵcmp: i0.ɵɵComponentDeclaration<EventSectionComponent, "lib-event-section", never, {}, {}, never, never, true, never>;
10480
10473
  }
@@ -10513,151 +10506,6 @@ declare class FinancialsSectionComponent extends BaseSectionComponent implements
10513
10506
  static ɵcmp: i0.ɵɵComponentDeclaration<FinancialsSectionComponent, "lib-financials-section", never, {}, {}, never, never, true, never>;
10514
10507
  }
10515
10508
 
10516
- /**
10517
- * Info Section Component
10518
- *
10519
- * Displays key-value pairs in a clean, scannable format.
10520
- * Perfect for structured data, metadata, and profile information.
10521
- */
10522
- declare class InfoSectionComponent extends BaseSectionComponent implements OnInit {
10523
- /**
10524
- * TrackBy function for fields
10525
- */
10526
- readonly trackByField: i0.TrackByFunction<CardField>;
10527
- private readonly layoutService;
10528
- ngOnInit(): void;
10529
- /**
10530
- * Calculate layout preferences for info section based on section data.
10531
- * This method can be called statically via the service.
10532
- */
10533
- private calculateInfoLayoutPreferences;
10534
- /**
10535
- * Get layout preferences for info section.
10536
- * Uses the registered preference function via service, or calculates directly.
10537
- */
10538
- getLayoutPreferences(availableColumns?: number): SectionLayoutPreferences;
10539
- /**
10540
- * Get trend class (deprecated - kept for backward compatibility)
10541
- */
10542
- getTrendClass(trend?: string): string;
10543
- /**
10544
- * Format change value
10545
- */
10546
- formatChange(change?: number): string;
10547
- /**
10548
- * Map trend string to TrendDirection type
10549
- */
10550
- getTrendDirection(trend?: string): TrendDirection;
10551
- /**
10552
- * Check if a field is used in the header (should be excluded from KPI/facts grids)
10553
- */
10554
- private isHeaderField;
10555
- /**
10556
- * Get primary KPIs (2-4 most important metrics)
10557
- * Prioritizes fields with trends, numeric values, or KPI-related labels
10558
- * Excludes header fields (company name, logo, website, stock symbol)
10559
- */
10560
- get primaryKPIs(): CardField[];
10561
- /**
10562
- * Get secondary fields (everything else, excluding header fields and KPIs)
10563
- */
10564
- get secondaryFields(): CardField[];
10565
- /**
10566
- * Get company name from fields
10567
- */
10568
- getCompanyName(): string;
10569
- /**
10570
- * Get company logo/avatar from fields
10571
- */
10572
- getCompanyLogo(): string | null;
10573
- /**
10574
- * Get tagline/description from section or fields
10575
- */
10576
- getTagline(): string | null;
10577
- /**
10578
- * Track tagline expansion state
10579
- */
10580
- isTaglineExpanded: boolean;
10581
- /**
10582
- * Toggle tagline expansion
10583
- */
10584
- toggleTaglineExpanded(): void;
10585
- /**
10586
- * Check if tagline needs "Show more" button
10587
- */
10588
- shouldShowTaglineExpandButton(): boolean;
10589
- /**
10590
- * Get website URL from fields
10591
- */
10592
- getWebsiteUrl(): string | null;
10593
- /**
10594
- * Get stock symbol from fields
10595
- */
10596
- getStockSymbol(): string | null;
10597
- /**
10598
- * Check if header info is available
10599
- */
10600
- hasHeaderInfo(): boolean;
10601
- /**
10602
- * Check if header actions are available
10603
- */
10604
- hasHeaderActions(): boolean;
10605
- /**
10606
- * Format KPI value for display
10607
- */
10608
- formatKPIValue(field: CardField): string;
10609
- /**
10610
- * Open website URL
10611
- */
10612
- openWebsite(url: string): void;
10613
- /**
10614
- * Copy text to clipboard
10615
- */
10616
- copyToClipboard(text: string): Promise<void>;
10617
- /**
10618
- * Loading state (can be set externally or based on data availability)
10619
- */
10620
- isLoading: boolean;
10621
- /**
10622
- * UI state: expanded/collapsed
10623
- */
10624
- isExpanded: boolean;
10625
- /**
10626
- * Toggle expanded state
10627
- */
10628
- toggleExpanded(): void;
10629
- /**
10630
- * Get collapsed facts (first 4 fields by default, can be adjusted via CSS)
10631
- */
10632
- get collapsedFacts(): CardField[];
10633
- /**
10634
- * Get overflow facts (fields beyond collapsed view)
10635
- */
10636
- get overflowFacts(): CardField[];
10637
- /**
10638
- * Check if a field should be rendered as chips (multi-value field)
10639
- */
10640
- isChipField(field: CardField): boolean;
10641
- /**
10642
- * Parse value to chips array
10643
- * Splits by comma or semicolon and trims
10644
- */
10645
- parseToChips(value: string | number | boolean | null | undefined): string[];
10646
- /**
10647
- * Get chips for collapsed view (max 3 chips + "+N" indicator)
10648
- */
10649
- getCollapsedChips(field: CardField): {
10650
- chips: string[];
10651
- overflowCount: number;
10652
- };
10653
- /**
10654
- * Get all chips for expanded view
10655
- */
10656
- getAllChips(field: CardField): string[];
10657
- static ɵfac: i0.ɵɵFactoryDeclaration<InfoSectionComponent, never>;
10658
- static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "lib-info-section", never, {}, {}, never, never, true, never>;
10659
- }
10660
-
10661
10509
  /**
10662
10510
  * List Section Component
10663
10511
  *
@@ -10690,6 +10538,7 @@ declare class ListSectionComponent extends BaseSectionComponent implements OnIni
10690
10538
  getStatusVariant(status?: string): 'success' | 'warning' | 'error' | 'primary' | 'default';
10691
10539
  /**
10692
10540
  * Map priority to badge variant
10541
+ * Priority hierarchy: critical > high > medium > low
10693
10542
  */
10694
10543
  getPriorityVariant(priority?: string): 'error' | 'warning' | 'success' | 'default';
10695
10544
  toggleExpanded(index: number): void;
@@ -10717,15 +10566,41 @@ declare class ListSectionComponent extends BaseSectionComponent implements OnIni
10717
10566
  declare class MapSectionComponent extends BaseSectionComponent implements AfterViewInit, OnDestroy, OnInit {
10718
10567
  private readonly layoutService;
10719
10568
  mapInitFailed: boolean;
10569
+ tilesLoading: boolean;
10720
10570
  ngOnInit(): void;
10721
10571
  mapElement?: ElementRef<HTMLDivElement>;
10722
10572
  private mapInstance;
10573
+ private markersAdded;
10574
+ private tileLayer;
10575
+ private fallbackTileLayer;
10576
+ private tileErrors;
10577
+ private maxTileRetries;
10578
+ private loadedTiles;
10579
+ private failedTiles;
10580
+ private tileLoadTimeout;
10581
+ private usingFallback;
10723
10582
  ngAfterViewInit(): void;
10724
10583
  ngOnDestroy(): void;
10725
10584
  /**
10726
10585
  * Initialize Leaflet map
10727
10586
  */
10728
10587
  private initializeMap;
10588
+ /**
10589
+ * Process places from JSON with comprehensive logging
10590
+ */
10591
+ private processPlaces;
10592
+ /**
10593
+ * Add tile layer with error handling and retry logic
10594
+ */
10595
+ private addTileLayerWithErrorHandling;
10596
+ /**
10597
+ * Switch to fallback tile provider
10598
+ */
10599
+ private switchToFallbackTiles;
10600
+ /**
10601
+ * Add markers to the map
10602
+ */
10603
+ private addMarkersToMap;
10729
10604
  /**
10730
10605
  * Destroy map instance
10731
10606
  */
@@ -10831,47 +10706,6 @@ declare class NewsSectionComponent extends BaseSectionComponent implements OnIni
10831
10706
  static ɵcmp: i0.ɵɵComponentDeclaration<NewsSectionComponent, "lib-news-section", never, {}, {}, never, never, true, never>;
10832
10707
  }
10833
10708
 
10834
- /**
10835
- * Overview Section Component
10836
- *
10837
- * Displays high-level summaries and executive dashboards.
10838
- * Perfect for company profiles, key highlights, and quick insights.
10839
- */
10840
- declare class OverviewSectionComponent extends BaseSectionComponent implements OnInit {
10841
- private readonly layoutService;
10842
- ngOnInit(): void;
10843
- /**
10844
- * Calculate layout preferences for overview section based on content.
10845
- */
10846
- private calculateOverviewLayoutPreferences;
10847
- /**
10848
- * Get layout preferences for overview section.
10849
- */
10850
- getLayoutPreferences(availableColumns?: number): SectionLayoutPreferences;
10851
- /**
10852
- * Check if field should be highlighted
10853
- */
10854
- isHighlighted(field: any): boolean;
10855
- /**
10856
- * Track expanded state for each field
10857
- */
10858
- expandedFields: Set<number>;
10859
- /**
10860
- * Toggle expanded state for a field
10861
- */
10862
- toggleExpanded(index: number): void;
10863
- /**
10864
- * Check if a field is expanded
10865
- */
10866
- isExpanded(index: number): boolean;
10867
- /**
10868
- * Check if a value is long enough to need expansion
10869
- */
10870
- shouldShowExpandButton(field: any): boolean;
10871
- static ɵfac: i0.ɵɵFactoryDeclaration<OverviewSectionComponent, never>;
10872
- static ɵcmp: i0.ɵɵComponentDeclaration<OverviewSectionComponent, "lib-overview-section", never, {}, {}, never, never, true, never>;
10873
- }
10874
-
10875
10709
  /**
10876
10710
  * Product Section Component
10877
10711
  *
@@ -10977,13 +10811,22 @@ declare class SocialMediaSectionComponent extends BaseSectionComponent implement
10977
10811
  * Solutions Section Component
10978
10812
  *
10979
10813
  * Displays solution offerings, use cases, and service information.
10980
- * Features: benefits, complexity indicators, delivery timeframes.
10814
+ * Features: benefits, delivery timeframes, expresso links.
10981
10815
  */
10982
- declare class SolutionsSectionComponent extends BaseSectionComponent implements OnInit {
10816
+ declare class SolutionsSectionComponent extends BaseSectionComponent implements OnInit, AfterViewInit, OnDestroy {
10983
10817
  private readonly layoutService;
10818
+ solutionsGrid?: ElementRef<HTMLElement>;
10984
10819
  expandedIndex: number | null;
10985
10820
  descriptionExpandedStates: boolean[];
10821
+ isSingleColumn: boolean;
10822
+ private resizeObserver?;
10986
10823
  ngOnInit(): void;
10824
+ ngAfterViewInit(): void;
10825
+ ngOnDestroy(): void;
10826
+ /**
10827
+ * Check if grid is rendering as single column
10828
+ */
10829
+ private checkGridColumns;
10987
10830
  /**
10988
10831
  * Calculate layout preferences for solutions section based on content.
10989
10832
  * Solutions sections: 2 cols default, can shrink to 1, expands based on item count
@@ -11016,6 +10859,37 @@ declare class SolutionsSectionComponent extends BaseSectionComponent implements
11016
10859
  * Check if description is expanded
11017
10860
  */
11018
10861
  isDescriptionExpanded(index: number): boolean;
10862
+ /**
10863
+ * Get meta label for solution - can be deliveryTime, label, or any string property
10864
+ * Returns formatted label with appropriate icon/prefix
10865
+ */
10866
+ getMetaLabel(solution: any): string | null;
10867
+ /**
10868
+ * Get the count of remaining benefits (total - 2 visible)
10869
+ */
10870
+ getRemainingBenefitsCount(solution: any): number;
10871
+ /**
10872
+ * Check if "+X more" button should be shown
10873
+ * Only show if there are more than 2 benefits AND not in single column layout
10874
+ */
10875
+ shouldShowMoreButton(solution: any, index: number): boolean;
10876
+ /**
10877
+ * Get the score percentage for the progress bar
10878
+ * Safely converts score to a number and calculates percentage (0-100)
10879
+ */
10880
+ getScorePercentage(solution: any): number;
10881
+ /**
10882
+ * Handle expresso logo click
10883
+ */
10884
+ onExpressoLogoClick(solution: any): void;
10885
+ /**
10886
+ * Open expresso link in a new tab
10887
+ */
10888
+ openExpressoLink(link: string): void;
10889
+ /**
10890
+ * Get tooltip text for expresso link
10891
+ */
10892
+ getExpressoTooltip(solution: any): string;
11019
10893
  static ɵfac: i0.ɵɵFactoryDeclaration<SolutionsSectionComponent, never>;
11020
10894
  static ɵcmp: i0.ɵɵComponentDeclaration<SolutionsSectionComponent, "lib-solutions-section", never, {}, {}, never, never, true, never>;
11021
10895
  }
@@ -11698,11 +11572,11 @@ declare function packWithZeroGapsGuarantee(sections: CardSection[], columns?: nu
11698
11572
  * Do not edit manually - generated by scripts/generate-version.js
11699
11573
  *
11700
11574
  * Source of truth: version.config.json
11701
- * Last synced: 2025-12-15T21:37:02.720Z
11575
+ * Last synced: 2026-01-08T11:12:12.048Z
11702
11576
  */
11703
- declare const VERSION = "1.5.42";
11704
- declare const BUILD_DATE = "2025-12-15T21:37:02.720Z";
11705
- declare const BUILD_HASH = "afbe823";
11577
+ declare const VERSION = "1.5.44";
11578
+ declare const BUILD_DATE = "2026-01-08T11:12:12.048Z";
11579
+ declare const BUILD_HASH = "ebfa0a6";
11706
11580
  declare const BUILD_BRANCH = "main";
11707
11581
  interface VersionInfo {
11708
11582
  version: string;
@@ -11734,5 +11608,5 @@ declare function isProductionBuild(): boolean;
11734
11608
  */
11735
11609
  declare function isPrerelease(): boolean;
11736
11610
 
11737
- export { AICardRendererComponent, ALL_SECTION_TYPES, ANIMATION_PRESETS, ANIMATION_TIMING, AccessibilityService, ActionFactory, AnalyticsSectionComponent, AutoUnsubscribe, BORDER_RADIUS, BREAKPOINTS, BUILD_BRANCH, BUILD_DATE, BUILD_HASH, BadgeComponent, BaseSectionComponent, BrandColorsSectionComponent, BrandedIds, CARD_SIZES, CARD_SPACING, COLUMNS_BY_BREAKPOINT, CONTAINER_CONFIG, CSS_ISOLATION_MODE, CachedSectionNormalizationService, CardActionsComponent, CardBodyComponent, CardFacadeService, CardFactory, CardFooterComponent, CardHeaderComponent, CardPreviewComponent, CardSectionListComponent, CardSkeletonComponent, CardStreamingIndicatorComponent, CardTypeGuards, CardUtil, ChartSectionComponent, ContactCardSectionComponent, CopyToClipboardDirective, DECORATED_SECTION_COMPONENTS, DEFAULT_ACCESSIBILITY_CONFIG, DEFAULT_ANIMATION_CONFIG, DEFAULT_CSS_ISOLATION_MODE, DEFAULT_ERROR_CONFIG, DEFAULT_GRID_CONFIG, DEFAULT_LAYOUT_CONFIG, DEFAULT_LOADING_MESSAGES, DEFAULT_LOGGING_CONFIG, DEFAULT_OSI_CARDS_FULL_CONFIG, DEFAULT_OSI_THEME_CONFIG, DEFAULT_STREAMING_CONFIG, DEFAULT_THEME, DEFAULT_THEME_CONFIG, DynamicSectionLoaderService, EASING, EMPTY_STATE_CONFIG, EmailHandlerService, EmptyStateComponent, ErrorBoundaryComponent, ErrorTrackingService, EventBusService, EventMiddlewareService, EventSectionComponent, FEATURE_FLAG_META, FeatureFlagsService, FieldFactory, FinancialsSectionComponent, FlipAnimator, GRID_CONFIG, I18nService, ICON_SIZE, IconService, InfoSectionComponent, ItemFactory, KeyboardShortcutsService, LayoutCalculationService, LayoutError, LayoutStateManager, LayoutWorkerService, LazyRenderDirective, ListSectionComponent, LogValidationErrors, LoggerService, LucideIconsModule, MANIFEST_META, MASONRY_CONFIG, MagneticTiltService, MapSectionComponent, MasonryGridComponent, Memoize, MemoizeLRU, MemoizeTTL, NetworkCardSectionComponent, NewsSectionComponent, OSICardsError, OSICardsStreamingService, OSI_ACCESSIBILITY_CONFIG, OSI_ANIMATION_CONFIG, ICONS as OSI_CARDS_ICONS, OSI_CUSTOM_SECTIONS, OSI_ERROR_CONFIG, OSI_EVENTS, OSI_FEATURE_FLAGS, OSI_FULL_CONFIG, OSI_LAYOUT_CONFIG, OSI_LOGGING_CONFIG, OSI_STREAMING_CONFIG, OSI_THEME_CONFIG, OSI_THEME_CONFIG_TOKEN, ObjectPool, OsiCardsComponent, OsiCardsContainerComponent, OsiThemeDirective, OverviewSectionComponent, PARTICLE_CONFIG, PLACEHOLDER_TEXT, PUBLIC_SECTION_TYPES, PerfectBinPacker, PluginRegistrationError, PresetFactory, ProductSectionComponent, ProgressBarComponent, QuotationSectionComponent, RequiredFieldError, SCOPED_ANIMATION_SERVICE, SCOPED_SELECTION_SERVICE, SCOPED_STATE_SERVICE, SECTION_MANIFEST, SECTION_METADATA, SECTION_TYPE_ALIASES, SHADOWS, SKELETON_CONFIG, SPACING, STAGGER_DELAYS, STREAMING_CONFIG, STREAMING_PROGRESS, STREAMING_STAGES, ScopedAnimationService, ScopedSelectionService, ScopedStateService, SectionComponent, SectionFactory$1 as SectionConfigFactory, SectionDesignDirective, SectionFactory, SectionHeaderComponent, SectionNormalizationService, SectionPluginRegistry, SectionRenderError, SectionRendererComponent, SectionUtilsService, SocialMediaSectionComponent, SolutionsSectionComponent, StreamingError, StreamingParseError, StreamingTimeoutError, SubscriptionTracker, TILT_CONFIG, TextReferenceSectionComponent, ThemeService, ToastService, TooltipDirective, TrendIndicatorComponent, UnknownSectionTypeError, VERSION, VERSION_INFO, ValidationError, WorkerError, Z_INDEX, assertNever, calculateChunkDelay, calculateColumnWidth, calculateColumns, createActionClickEvent, createActionId, createAnalyticsDashboard, createAnalyticsPreset, createCardId, createCardInteractionEvent, createCompanyCard, createCompanyPreset, createContactCard, createContactPreset, createEmail, createEnhancedCompanyCard, createFieldClickEvent, createFieldId, createFlipList, createHexColor, createItemClickEvent, createItemId, createLogger, createMilliseconds, createPercentage, createPixels, createPluginId, createSafeAsyncFunction, createSafeFunction, createSectionId, createSectionRenderedEvent, createStreamingStateEvent, createThemeChangeEvent, createUrl, debounce, generateActionId, generateCardId, generateFieldId, generateItemId, generateSectionId, generateStreamingId, getAnimationTiming, getBuildInfo, getColumnsForBreakpoint, getCurrentBreakpoint, getEasing, getManifestEntry, getPreferredColumns, getPublicSectionTypes, getRandomLoadingMessage, getRegisteredComponent, getRegisteredSectionComponents, getRegisteredSectionTypes, getSectionMetadata, getSectionsRequiringExternalLibs, getShortVersion, getUserMessage, getVersionString, hasChartData, hasFields, hasItems, hasRegisteredComponent, isAnalyticsSection, isBrandColorsSection, isCardId, isChartSection, isContactCardSection, isDesktopViewport, isEventSection, isFallbackSection, isFieldId, isFinancialsSection, isInfoSection, isItemId, isListSection, isMapSection, isMobileViewport, isNetworkCardSection, isNewsSection, isOSIActionClickEvent, isOSICardInteractionEvent, isOSICardsError, isOSIFieldClickEvent, isOSIItemClickEvent, isOverviewSection, isPrerelease, isProductSection, isProductionBuild, isQuotationSection, isSectionId, isSocialMediaSection, isSolutionsSection, isStreamingPlaceholder, isTabletViewport, isTextReferenceSection, isValidCardId, isValidEmail, isValidFieldId, isValidHexColor, isValidItemId, isValidPercentage, isValidSectionId, isValidSectionType, isValidUrl, packWithZeroGapsGuarantee, prefersReducedMotion, provideLucideIcons, provideOSICardsTheme, provideOsiCards, provideOsiCardsAdvanced, provideOsiCardsCore, provideOsiCardsMinimal, provideOsiCardsTesting, provideScopedAnimationService, provideScopedSelectionService, provideScopedStateService, recordPositions, resolveColumnSpan, resolveSectionType, throttle, tryCatch, useErrorBoundary, validateField, validateSection, wrapError };
11738
- export type { AICardConfig, ActionClickEventDetail, ActionId, AgentActionEvent, AnalyticsDashboardOptions, AnalyticsSection, AnimationItemState, AnimationState, AnimationTrigger, AsyncTransformer, BadgeSize, BadgeVariant, BaseSectionProps, BrandColorsSection, Breakpoint, CSSIsolationMode, Capitalize, CardAction, CardActionVariant, CardBuilder, CardBusEvent, CardChangeType, CardEvent$1 as CardEvent, CardField, CardId, CardInteractionEventDetail, CardItem, CardSection, CardUpdate, CardUpdatePayload, ChartData, ChartSection, ChartType, ColorSchemePreference, CompanyCardOptions, ComplexityLevel, ContactCardOptions, ContactCardSection, DeepMutable, DeepPartial, DeepReadonly, DeepRequired, Discriminant, DiscriminatedSection, Email, EmailConfig$1 as EmailConfig, EmailContact, ErrorBoundaryOptions, ErrorBoundaryState, ErrorSeverity, EventFilter, EventHandler, EventMiddleware, EventSection, EventTransformer, ExcludeByType, Extend, ExtractSectionType, FallbackSection, FaqSection, FeatureFlagKey, FeatureFlagsConfig, FieldClickEventDetail, FieldFormat, FieldId, FieldPriority, FieldStatus, FieldUpdatePayload, FieldValue, FilterByType, FinancialsSection, FlipConfig, FlipState, GallerySection, GetDiscriminatedSection, GridConfig, Head, HexColor, IdentifiedCard, IdentifiedField, IdentifiedItem, IdentifiedSection, ImmutableCardConfig, ImmutableSection, InfoSection, ItemClickEventDetail, ItemId, KebabCase, KeyboardShortcut, KeysOfType, Last, LayoutConfig, LayoutLogEntry, LayoutPhase, LayoutResult, LayoutState, LayoutStatistics, LazyRenderOptions, ListSection, LogEntry, LogLevel, MailCardAction, MapSection, MasonryLayoutInfo, Maybe, Merge, Milliseconds, MinimalCardConfig, MousePosition, NetworkCardSection, NewCardConfig, NewsSection, Nullable, OSIAccessibilityConfig, OSIActionClickEvent, OSIAnimationConfig, OSICardInteractionEvent, OSICardsFullConfig, OSICardsThemeConfig, OSIErrorConfig, OSIEventDetail, OSIEventName, OSIFieldClickEvent, OSIItemClickEvent, OSILayoutConfig, OSILoggingConfig, OSISectionRegistration, OSISectionRenderedEvent, OSIStreamingConfig, OSIStreamingStateEvent, OSIThemeChangeEvent, OSIThemeConfig, OmitByType, Optional, OptionalFields, OsiCardsConfig, OverviewSection, PackingAlgorithm, Parameters$1 as Parameters, Percentage, PerformanceLevel, PickByType, PickDefined, Pixels, PluginId, Position, PositionedSection, PreferredColumns$2 as PreferredColumns, PrefixKeys, PriorityBand$1 as PriorityBand, ProductSection, ProgressBarVariant, QuestionActionEvent, QuotationSection, RegisteredSectionPlugin, Replace, RequiredFields, ReturnType$1 as ReturnType, SectionBuilder, SectionComponentOptions, SectionFields, SectionId, SectionItems, SectionManifestEntry, SectionMetadata, SectionOf, SectionOrientation, SectionPlugin, SectionPluginConfig, SectionPluginMetadata, SectionRenderEvent, SectionRenderedEventDetail, SectionType, SectionTypeAlias, SectionTypeInput, SectionTypeMap, SectionTypeOf, SectionUpdatePayload, SkeletonSection, SkeletonSectionType, SocialMediaSection, SolutionsSection, StateSnapshot, StreamingConfig, StreamingState, StreamingStateEventDetail, SuffixKeys, SupportedLocale, TableSection, Tail, TextReferenceSection, ThemeChangeEventDetail, ThemeId, ThemeMode, ThemePreset, ThemeServiceConfig, TiltCalculations, TimelineSection, Toast, TrackedError, Transformer, TrendDirection, Tuple, TypedEvent, Uncapitalize, Url, ValidationResult$1 as ValidationResult, ValidationSchema, Validator, VersionInfo, VideoSection };
11611
+ export { AICardRendererComponent, ALL_SECTION_TYPES, ANIMATION_PRESETS, ANIMATION_TIMING, AccessibilityService, ActionFactory, AnalyticsSectionComponent, AutoUnsubscribe, BORDER_RADIUS, BREAKPOINTS, BUILD_BRANCH, BUILD_DATE, BUILD_HASH, BadgeComponent, BaseSectionComponent, BrandColorsSectionComponent, BrandedIds, CARD_SIZES, CARD_SPACING, COLUMNS_BY_BREAKPOINT, CONTAINER_CONFIG, CSS_ISOLATION_MODE, CachedSectionNormalizationService, CardActionsComponent, CardBodyComponent, CardFacadeService, CardFactory, CardFooterComponent, CardHeaderComponent, CardPreviewComponent, CardSectionListComponent, CardSkeletonComponent, CardStreamingIndicatorComponent, CardTypeGuards, CardUtil, ChartSectionComponent, ContactCardSectionComponent, CopyToClipboardDirective, DECORATED_SECTION_COMPONENTS, DEFAULT_ACCESSIBILITY_CONFIG, DEFAULT_ANIMATION_CONFIG, DEFAULT_CSS_ISOLATION_MODE, DEFAULT_ERROR_CONFIG, DEFAULT_GRID_CONFIG, DEFAULT_LAYOUT_CONFIG, DEFAULT_LOADING_MESSAGES, DEFAULT_LOGGING_CONFIG, DEFAULT_OSI_CARDS_FULL_CONFIG, DEFAULT_OSI_THEME_CONFIG, DEFAULT_STREAMING_CONFIG, DEFAULT_THEME, DEFAULT_THEME_CONFIG, DynamicSectionLoaderService, EASING, EMPTY_STATE_CONFIG, EmailHandlerService, EmptyStateComponent, ErrorBoundaryComponent, ErrorTrackingService, EventBusService, EventMiddlewareService, EventSectionComponent, FEATURE_FLAG_META, FeatureFlagsService, FieldFactory, FinancialsSectionComponent, FlipAnimator, GRID_CONFIG, I18nService, ICON_SIZE, IconService, ItemFactory, KeyboardShortcutsService, LayoutCalculationService, LayoutError, LayoutStateManager, LayoutWorkerService, LazyRenderDirective, ListSectionComponent, LogValidationErrors, LoggerService, LucideIconsModule, MANIFEST_META, MASONRY_CONFIG, MagneticTiltService, MapSectionComponent, MasonryGridComponent, Memoize, MemoizeLRU, MemoizeTTL, NetworkCardSectionComponent, NewsSectionComponent, OSICardsError, OSICardsStreamingService, OSI_ACCESSIBILITY_CONFIG, OSI_ANIMATION_CONFIG, ICONS as OSI_CARDS_ICONS, OSI_CUSTOM_SECTIONS, OSI_ERROR_CONFIG, OSI_EVENTS, OSI_FEATURE_FLAGS, OSI_FULL_CONFIG, OSI_LAYOUT_CONFIG, OSI_LOGGING_CONFIG, OSI_STREAMING_CONFIG, OSI_THEME_CONFIG, OSI_THEME_CONFIG_TOKEN, ObjectPool, OsiCardsComponent, OsiCardsContainerComponent, OsiThemeDirective, PARTICLE_CONFIG, PLACEHOLDER_TEXT, PUBLIC_SECTION_TYPES, PerfectBinPacker, PluginRegistrationError, PresetFactory, ProductSectionComponent, ProgressBarComponent, QuotationSectionComponent, RequiredFieldError, SCOPED_ANIMATION_SERVICE, SCOPED_SELECTION_SERVICE, SCOPED_STATE_SERVICE, SECTION_MANIFEST, SECTION_METADATA, SECTION_TYPE_ALIASES, SHADOWS, SKELETON_CONFIG, SPACING, STAGGER_DELAYS, STREAMING_CONFIG, STREAMING_PROGRESS, STREAMING_STAGES, ScopedAnimationService, ScopedSelectionService, ScopedStateService, SectionComponent, SectionFactory$1 as SectionConfigFactory, SectionDesignDirective, SectionFactory, SectionHeaderComponent, SectionNormalizationService, SectionPluginRegistry, SectionRenderError, SectionRendererComponent, SectionUtilsService, SocialMediaSectionComponent, SolutionsSectionComponent, StreamingError, StreamingParseError, StreamingTimeoutError, SubscriptionTracker, TILT_CONFIG, TextReferenceSectionComponent, ThemeService, ToastService, TooltipDirective, TrendIndicatorComponent, UnknownSectionTypeError, VERSION, VERSION_INFO, ValidationError, WorkerError, Z_INDEX, assertNever, calculateChunkDelay, calculateColumnWidth, calculateColumns, createActionClickEvent, createActionId, createAnalyticsDashboard, createAnalyticsPreset, createCardId, createCardInteractionEvent, createCompanyCard, createCompanyPreset, createContactCard, createContactPreset, createEmail, createEnhancedCompanyCard, createFieldClickEvent, createFieldId, createFlipList, createHexColor, createItemClickEvent, createItemId, createLogger, createMilliseconds, createPercentage, createPixels, createPluginId, createSafeAsyncFunction, createSafeFunction, createSectionId, createSectionRenderedEvent, createStreamingStateEvent, createThemeChangeEvent, createUrl, debounce, generateActionId, generateCardId, generateFieldId, generateItemId, generateSectionId, generateStreamingId, getAnimationTiming, getBuildInfo, getColumnsForBreakpoint, getCurrentBreakpoint, getEasing, getManifestEntry, getPreferredColumns, getPublicSectionTypes, getRandomLoadingMessage, getRegisteredComponent, getRegisteredSectionComponents, getRegisteredSectionTypes, getSectionMetadata, getSectionsRequiringExternalLibs, getShortVersion, getUserMessage, getVersionString, hasChartData, hasFields, hasItems, hasRegisteredComponent, isAnalyticsSection, isBrandColorsSection, isCardId, isChartSection, isContactCardSection, isDesktopViewport, isEventSection, isFieldId, isFinancialsSection, isItemId, isListSection, isMapSection, isMobileViewport, isNetworkCardSection, isNewsSection, isOSIActionClickEvent, isOSICardInteractionEvent, isOSICardsError, isOSIFieldClickEvent, isOSIItemClickEvent, isPrerelease, isProductSection, isProductionBuild, isQuotationSection, isSectionId, isSocialMediaSection, isSolutionsSection, isStreamingPlaceholder, isTabletViewport, isTextReferenceSection, isValidCardId, isValidEmail, isValidFieldId, isValidHexColor, isValidItemId, isValidPercentage, isValidSectionId, isValidSectionType, isValidUrl, packWithZeroGapsGuarantee, prefersReducedMotion, provideLucideIcons, provideOSICardsTheme, provideOsiCards, provideOsiCardsAdvanced, provideOsiCardsCore, provideOsiCardsMinimal, provideOsiCardsTesting, provideScopedAnimationService, provideScopedSelectionService, provideScopedStateService, recordPositions, resolveColumnSpan, resolveSectionType, throttle, tryCatch, useErrorBoundary, validateField, validateSection, wrapError };
11612
+ export type { AICardConfig, ActionClickEventDetail, ActionId, AgentActionEvent, AnalyticsDashboardOptions, AnalyticsSection, AnimationItemState, AnimationState, AnimationTrigger, AsyncTransformer, BadgeSize, BadgeVariant, BaseSectionProps, BrandColorsSection, Breakpoint, CSSIsolationMode, Capitalize, CardAction, CardActionVariant, CardBuilder, CardBusEvent, CardChangeType, CardEvent$1 as CardEvent, CardField, CardId, CardInteractionEventDetail, CardItem, CardSection, CardUpdate, CardUpdatePayload, ChartData, ChartSection, ChartType, ColorSchemePreference, CompanyCardOptions, ComplexityLevel, ContactCardOptions, ContactCardSection, DeepMutable, DeepPartial, DeepReadonly, DeepRequired, Discriminant, DiscriminatedSection, Email, EmailConfig$1 as EmailConfig, EmailContact, ErrorBoundaryOptions, ErrorBoundaryState, ErrorSeverity, EventFilter, EventHandler, EventMiddleware, EventSection, EventTransformer, ExcludeByType, Extend, ExtractSectionType, FaqSection, FeatureFlagKey, FeatureFlagsConfig, FieldClickEventDetail, FieldFormat, FieldId, FieldPriority, FieldStatus, FieldUpdatePayload, FieldValue, FilterByType, FinancialsSection, FlipConfig, FlipState, GallerySection, GetDiscriminatedSection, GridConfig, Head, HexColor, IdentifiedCard, IdentifiedField, IdentifiedItem, IdentifiedSection, ImmutableCardConfig, ImmutableSection, ItemClickEventDetail, ItemId, KebabCase, KeyboardShortcut, KeysOfType, Last, LayoutConfig, LayoutLogEntry, LayoutPhase, LayoutResult, LayoutState, LayoutStatistics, LazyRenderOptions, ListSection, LogEntry, LogLevel, MailCardAction, MapSection, MasonryLayoutInfo, Maybe, Merge, Milliseconds, MinimalCardConfig, MousePosition, NetworkCardSection, NewCardConfig, NewsSection, Nullable, OSIAccessibilityConfig, OSIActionClickEvent, OSIAnimationConfig, OSICardInteractionEvent, OSICardsFullConfig, OSICardsThemeConfig, OSIErrorConfig, OSIEventDetail, OSIEventName, OSIFieldClickEvent, OSIItemClickEvent, OSILayoutConfig, OSILoggingConfig, OSISectionRegistration, OSISectionRenderedEvent, OSIStreamingConfig, OSIStreamingStateEvent, OSIThemeChangeEvent, OSIThemeConfig, OmitByType, Optional, OptionalFields, OsiCardsConfig, PackingAlgorithm, Parameters$1 as Parameters, Percentage, PerformanceLevel, PickByType, PickDefined, Pixels, PluginId, Position, PositionedSection, PreferredColumns$2 as PreferredColumns, PrefixKeys, PriorityBand$1 as PriorityBand, ProductSection, ProgressBarVariant, QuestionActionEvent, QuotationSection, RegisteredSectionPlugin, Replace, RequiredFields, ReturnType$1 as ReturnType, SectionBuilder, SectionComponentOptions, SectionFields, SectionId, SectionItems, SectionManifestEntry, SectionMetadata, SectionOf, SectionOrientation, SectionPlugin, SectionPluginConfig, SectionPluginMetadata, SectionRenderEvent, SectionRenderedEventDetail, SectionType, SectionTypeAlias, SectionTypeInput, SectionTypeMap, SectionTypeOf, SectionUpdatePayload, SkeletonSection, SkeletonSectionType, SocialMediaSection, SolutionsSection, StateSnapshot, StreamingConfig, StreamingState, StreamingStateEventDetail, SuffixKeys, SupportedLocale, TableSection, Tail, TextReferenceSection, ThemeChangeEventDetail, ThemeId, ThemeMode, ThemePreset, ThemeServiceConfig, TiltCalculations, TimelineSection, Toast, TrackedError, Transformer, TrendDirection, Tuple, TypedEvent, Uncapitalize, Url, ValidationResult$1 as ValidationResult, ValidationSchema, Validator, VersionInfo, VideoSection };