osi-cards-lib 1.5.41 → 1.5.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/fesm2022/osi-cards-lib.mjs +6109 -3631
- package/fesm2022/osi-cards-lib.mjs.map +1 -1
- package/index.d.ts +211 -270
- package/package.json +4 -3
- package/scripts/setup-angular-styles.js +1 -0
- package/styles/bundles/_ai-card.scss +11 -4
- package/styles/bundles/_card-skeleton.scss +1 -1
- package/styles/components/_ai-card-renderer.scss +0 -2
- package/styles/components/_badges.scss +1 -2
- package/styles/components/_card-actions.scss +5 -4
- package/styles/components/_component-styles.scss +1 -1
- package/styles/components/cards/_ai-card.scss +7 -13
- package/styles/components/sections/_all-sections.generated.scss +0 -3
- package/styles/components/sections/_all-sections.scss +88 -64
- package/styles/components/sections/_compact-mixins.scss +9 -8
- package/styles/components/sections/_component-mixins.scss +40 -11
- package/styles/components/sections/_design-system.scss +96 -11
- package/styles/components/sections/_design-tokens.scss +1 -1
- package/styles/components/sections/_master-compact-system.scss +0 -17
- package/styles/components/sections/_minimalistic-design.scss +1 -4
- package/styles/components/sections/_modern-effects.scss +1 -3
- package/styles/components/sections/_modern-sections.scss +13 -69
- package/styles/components/sections/_section-animations.scss +158 -77
- package/styles/components/sections/_section-shell.scss +39 -9
- package/styles/components/sections/_section-types.generated.scss +0 -3
- package/styles/components/sections/_sections-all.scss +7 -0
- package/styles/components/sections/_sections-base.scss +340 -64
- package/styles/components/sections/_unified-section-style.scss +17 -44
- package/styles/components/sections/_visual-effects-library.scss +3 -3
- package/styles/core/_bootstrap-reset.scss +1 -1
- package/styles/core/_global-unified.scss +2 -6
- package/styles/core/_mixins.scss +4 -4
- package/styles/core/_surface-layers.scss +20 -11
- package/styles/design-system/_section-base.scss +9 -32
- package/styles/design-system/_tokens.scss +68 -6
- package/styles/design-system/_unified-sections.scss +21 -42
- package/styles/layout/_masonry.scss +26 -32
- package/styles/layout/_tilt.scss +3 -3
- package/styles/mixins/_section-mixins.scss +2 -2
- package/styles/reset/_shadow-reset.scss +3 -7
- package/styles/responsive.scss +9 -7
- package/styles/tokens/_master.scss +271 -79
- package/styles/tokens/_section-tokens.generated.scss +0 -7
package/index.d.ts
CHANGED
|
@@ -268,11 +268,11 @@ 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' | '
|
|
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
|
*/
|
|
275
|
-
type SectionTypeAlias = 'metrics' | 'stats' | 'kpi' | 'brands' | 'colors' | 'palette' | 'graph' | 'visualization' | 'calendar' | 'schedule' | 'questions' | 'help' | 'photos' | 'images' | 'table' | '
|
|
275
|
+
type SectionTypeAlias = 'metrics' | 'stats' | 'kpi' | 'brands' | 'colors' | 'palette' | 'graph' | 'visualization' | 'calendar' | 'schedule' | 'questions' | 'help' | 'photos' | 'images' | 'checklist' | 'data-table' | 'grid' | 'locations' | 'press' | 'articles' | 'summary' | 'executive' | 'quote' | 'testimonial' | 'social' | 'socials' | 'services' | 'offerings' | 'reference' | 'text-ref' | 'documentation' | 'history' | 'milestones' | 'videos' | 'media';
|
|
276
276
|
/**
|
|
277
277
|
* All accepted section type values (canonical + aliases)
|
|
278
278
|
*/
|
|
@@ -329,6 +329,29 @@ type CardType = 'all' | 'company' | 'contact' | 'opportunity' | 'product' | 'ana
|
|
|
329
329
|
*/
|
|
330
330
|
type LayoutPriority = 1 | 2 | 3;
|
|
331
331
|
|
|
332
|
+
/**
|
|
333
|
+
* Table column definition
|
|
334
|
+
*/
|
|
335
|
+
interface TableColumn {
|
|
336
|
+
key: string;
|
|
337
|
+
label: string;
|
|
338
|
+
type?: 'string' | 'number' | 'date' | 'boolean';
|
|
339
|
+
sortable?: boolean;
|
|
340
|
+
width?: string;
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* Table row data (key-value pairs matching column keys)
|
|
344
|
+
*/
|
|
345
|
+
interface TableRow {
|
|
346
|
+
[key: string]: string | number | boolean | Date | null | undefined;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* Table data structure for table sections
|
|
350
|
+
*/
|
|
351
|
+
interface TableData {
|
|
352
|
+
columns: TableColumn[];
|
|
353
|
+
rows: TableRow[];
|
|
354
|
+
}
|
|
332
355
|
interface AICardConfig {
|
|
333
356
|
id?: string | undefined;
|
|
334
357
|
cardTitle: string;
|
|
@@ -432,6 +455,7 @@ interface CardSection {
|
|
|
432
455
|
borderWidth?: number;
|
|
433
456
|
}[];
|
|
434
457
|
};
|
|
458
|
+
tableData?: TableData;
|
|
435
459
|
meta?: Record<string, unknown>;
|
|
436
460
|
[key: string]: unknown;
|
|
437
461
|
}
|
|
@@ -526,16 +550,16 @@ interface EmailContact {
|
|
|
526
550
|
}
|
|
527
551
|
/**
|
|
528
552
|
* Email configuration - required when type is 'mail'
|
|
529
|
-
* Must include
|
|
553
|
+
* Must include subject and body. Contact is optional - can generate email with just title and body.
|
|
530
554
|
*/
|
|
531
555
|
interface EmailConfig$1 {
|
|
532
|
-
/** Contact information -
|
|
533
|
-
contact
|
|
534
|
-
/** Email subject - required */
|
|
556
|
+
/** Contact information - optional, allows generating email with just subject and body */
|
|
557
|
+
contact?: EmailContact;
|
|
558
|
+
/** Email subject (title) - required */
|
|
535
559
|
subject: string;
|
|
536
560
|
/** Email body - required */
|
|
537
561
|
body: string;
|
|
538
|
-
/** Direct recipient email(s) - optional, defaults to contact.email */
|
|
562
|
+
/** Direct recipient email(s) - optional, defaults to contact.email if contact is provided */
|
|
539
563
|
to?: string | string[];
|
|
540
564
|
/** CC recipient(s) - optional */
|
|
541
565
|
cc?: string | string[];
|
|
@@ -1442,7 +1466,7 @@ declare class SectionFactory$1 {
|
|
|
1442
1466
|
*/
|
|
1443
1467
|
static minimal(type: SectionTypeInput, title: string): CardSection;
|
|
1444
1468
|
/**
|
|
1445
|
-
* Create an info section
|
|
1469
|
+
* Create an overview section (replaces deprecated info section)
|
|
1446
1470
|
*/
|
|
1447
1471
|
static info(title: string, fields: CardField[]): CardSection;
|
|
1448
1472
|
/**
|
|
@@ -1587,7 +1611,7 @@ declare class ActionFactory {
|
|
|
1587
1611
|
/**
|
|
1588
1612
|
* Section types supported by the library
|
|
1589
1613
|
*/
|
|
1590
|
-
type SectionType = 'analytics' | 'brand-colors' | 'chart' | 'contact-card' | 'event' | '
|
|
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';
|
|
1591
1615
|
/**
|
|
1592
1616
|
* Section metadata
|
|
1593
1617
|
*/
|
|
@@ -1629,7 +1653,7 @@ declare class SectionFactory {
|
|
|
1629
1653
|
private initializeRegistry;
|
|
1630
1654
|
/**
|
|
1631
1655
|
* Get the component class for a section type.
|
|
1632
|
-
* Returns
|
|
1656
|
+
* Returns OverviewSection if type is not found.
|
|
1633
1657
|
*/
|
|
1634
1658
|
createSection(type: SectionType | string): Promise<Type<unknown>>;
|
|
1635
1659
|
/**
|
|
@@ -1683,10 +1707,6 @@ declare class SectionFactory {
|
|
|
1683
1707
|
* ```typescript
|
|
1684
1708
|
* function handleSection(section: DiscriminatedSection): void {
|
|
1685
1709
|
* switch (section.type) {
|
|
1686
|
-
* case 'info':
|
|
1687
|
-
* // TypeScript knows section is InfoSection here
|
|
1688
|
-
* console.log(section.fields);
|
|
1689
|
-
* break;
|
|
1690
1710
|
* case 'chart':
|
|
1691
1711
|
* // TypeScript knows section is ChartSection here
|
|
1692
1712
|
* console.log(section.chartData);
|
|
@@ -1740,16 +1760,6 @@ interface BaseSectionProps {
|
|
|
1740
1760
|
/** Additional metadata */
|
|
1741
1761
|
meta?: Record<string, unknown>;
|
|
1742
1762
|
}
|
|
1743
|
-
/**
|
|
1744
|
-
* Info Section - displays key-value pairs
|
|
1745
|
-
*/
|
|
1746
|
-
interface InfoSection extends BaseSectionProps {
|
|
1747
|
-
type: 'info';
|
|
1748
|
-
fields: CardField[];
|
|
1749
|
-
items?: never;
|
|
1750
|
-
chartData?: never;
|
|
1751
|
-
chartType?: never;
|
|
1752
|
-
}
|
|
1753
1763
|
/**
|
|
1754
1764
|
* Analytics Section - displays metrics with trends
|
|
1755
1765
|
*/
|
|
@@ -1830,18 +1840,6 @@ interface ProductSection extends BaseSectionProps {
|
|
|
1830
1840
|
/** Product SKU */
|
|
1831
1841
|
sku?: string;
|
|
1832
1842
|
}
|
|
1833
|
-
/**
|
|
1834
|
-
* Overview Section - displays summary information
|
|
1835
|
-
*/
|
|
1836
|
-
interface OverviewSection extends BaseSectionProps {
|
|
1837
|
-
type: 'overview';
|
|
1838
|
-
fields: CardField[];
|
|
1839
|
-
items?: never;
|
|
1840
|
-
chartData?: never;
|
|
1841
|
-
chartType?: never;
|
|
1842
|
-
/** Overview text content */
|
|
1843
|
-
content?: string;
|
|
1844
|
-
}
|
|
1845
1843
|
/**
|
|
1846
1844
|
* Quotation Section - displays quotes
|
|
1847
1845
|
*/
|
|
@@ -1900,6 +1898,17 @@ interface ListSection extends BaseSectionProps {
|
|
|
1900
1898
|
/** List style */
|
|
1901
1899
|
listStyle?: 'bullet' | 'numbered' | 'none';
|
|
1902
1900
|
}
|
|
1901
|
+
/**
|
|
1902
|
+
* Table Section - displays structured tabular data
|
|
1903
|
+
*/
|
|
1904
|
+
interface TableSection extends BaseSectionProps {
|
|
1905
|
+
type: 'table';
|
|
1906
|
+
tableData: TableData;
|
|
1907
|
+
fields?: never;
|
|
1908
|
+
items?: never;
|
|
1909
|
+
chartData?: never;
|
|
1910
|
+
chartType?: never;
|
|
1911
|
+
}
|
|
1903
1912
|
/**
|
|
1904
1913
|
* Network Card Section - displays network connections
|
|
1905
1914
|
*/
|
|
@@ -2044,29 +2053,13 @@ interface ChartSection extends BaseSectionProps {
|
|
|
2044
2053
|
/** Chart height */
|
|
2045
2054
|
chartHeight?: number;
|
|
2046
2055
|
}
|
|
2047
|
-
/**
|
|
2048
|
-
* Fallback Section - handles unknown section types
|
|
2049
|
-
*/
|
|
2050
|
-
interface FallbackSection extends BaseSectionProps {
|
|
2051
|
-
type: 'fallback';
|
|
2052
|
-
fields?: CardField[];
|
|
2053
|
-
items?: CardItem[];
|
|
2054
|
-
chartData?: ChartData;
|
|
2055
|
-
chartType?: 'bar' | 'line' | 'pie' | 'doughnut';
|
|
2056
|
-
/** Original type that was not recognized */
|
|
2057
|
-
originalType?: string;
|
|
2058
|
-
}
|
|
2059
2056
|
/**
|
|
2060
2057
|
* Discriminated union of all section types
|
|
2061
2058
|
*
|
|
2062
2059
|
* Use this type when you need exhaustive type checking for section handling.
|
|
2063
2060
|
* TypeScript will ensure all section types are handled in switch statements.
|
|
2064
2061
|
*/
|
|
2065
|
-
type DiscriminatedSection =
|
|
2066
|
-
/**
|
|
2067
|
-
* Type guard for Info Section
|
|
2068
|
-
*/
|
|
2069
|
-
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;
|
|
2070
2063
|
/**
|
|
2071
2064
|
* Type guard for Analytics Section
|
|
2072
2065
|
*/
|
|
@@ -2107,10 +2100,6 @@ declare function isProductSection(section: DiscriminatedSection): section is Pro
|
|
|
2107
2100
|
* Type guard for Solutions Section
|
|
2108
2101
|
*/
|
|
2109
2102
|
declare function isSolutionsSection(section: DiscriminatedSection): section is SolutionsSection;
|
|
2110
|
-
/**
|
|
2111
|
-
* Type guard for Overview Section
|
|
2112
|
-
*/
|
|
2113
|
-
declare function isOverviewSection(section: DiscriminatedSection): section is OverviewSection;
|
|
2114
2103
|
/**
|
|
2115
2104
|
* Type guard for Quotation Section
|
|
2116
2105
|
*/
|
|
@@ -2131,14 +2120,10 @@ declare function isNewsSection(section: DiscriminatedSection): section is NewsSe
|
|
|
2131
2120
|
* Type guard for Social Media Section
|
|
2132
2121
|
*/
|
|
2133
2122
|
declare function isSocialMediaSection(section: DiscriminatedSection): section is SocialMediaSection;
|
|
2134
|
-
/**
|
|
2135
|
-
* Type guard for Fallback Section
|
|
2136
|
-
*/
|
|
2137
|
-
declare function isFallbackSection(section: DiscriminatedSection): section is FallbackSection;
|
|
2138
2123
|
/**
|
|
2139
2124
|
* Type guard for field-based sections
|
|
2140
2125
|
*/
|
|
2141
|
-
declare function hasFields(section: DiscriminatedSection): section is
|
|
2126
|
+
declare function hasFields(section: DiscriminatedSection): section is AnalyticsSection | ContactCardSection | MapSection | FinancialsSection | ProductSection | QuotationSection | TextReferenceSection | BrandColorsSection;
|
|
2142
2127
|
/**
|
|
2143
2128
|
* Type guard for item-based sections
|
|
2144
2129
|
*/
|
|
@@ -2156,7 +2141,6 @@ declare function hasChartData(section: DiscriminatedSection): section is ChartSe
|
|
|
2156
2141
|
* ```typescript
|
|
2157
2142
|
* function handleSection(section: DiscriminatedSection): string {
|
|
2158
2143
|
* switch (section.type) {
|
|
2159
|
-
* case 'info': return 'Info';
|
|
2160
2144
|
* case 'analytics': return 'Analytics';
|
|
2161
2145
|
* // ... all other cases
|
|
2162
2146
|
* default:
|
|
@@ -2171,7 +2155,6 @@ declare function assertNever(x: never): never;
|
|
|
2171
2155
|
* Useful for creating type-safe section handlers.
|
|
2172
2156
|
*/
|
|
2173
2157
|
type SectionTypeMap = {
|
|
2174
|
-
info: InfoSection;
|
|
2175
2158
|
analytics: AnalyticsSection;
|
|
2176
2159
|
'contact-card': ContactCardSection;
|
|
2177
2160
|
'network-card': NetworkCardSection;
|
|
@@ -2179,10 +2162,10 @@ type SectionTypeMap = {
|
|
|
2179
2162
|
financials: FinancialsSection;
|
|
2180
2163
|
event: EventSection;
|
|
2181
2164
|
list: ListSection;
|
|
2165
|
+
table: TableSection;
|
|
2182
2166
|
chart: ChartSection;
|
|
2183
2167
|
product: ProductSection;
|
|
2184
2168
|
solutions: SolutionsSection;
|
|
2185
|
-
overview: OverviewSection;
|
|
2186
2169
|
quotation: QuotationSection;
|
|
2187
2170
|
'text-reference': TextReferenceSection;
|
|
2188
2171
|
'brand-colors': BrandColorsSection;
|
|
@@ -2192,7 +2175,6 @@ type SectionTypeMap = {
|
|
|
2192
2175
|
gallery: GallerySection;
|
|
2193
2176
|
faq: FaqSection;
|
|
2194
2177
|
video: VideoSection;
|
|
2195
|
-
fallback: FallbackSection;
|
|
2196
2178
|
};
|
|
2197
2179
|
/**
|
|
2198
2180
|
* Extract section type from discriminated section
|
|
@@ -2201,7 +2183,7 @@ type ExtractSectionType<T extends DiscriminatedSection> = T['type'];
|
|
|
2201
2183
|
/**
|
|
2202
2184
|
* Get discriminated section type from section type string
|
|
2203
2185
|
*/
|
|
2204
|
-
type GetDiscriminatedSection<T extends
|
|
2186
|
+
type GetDiscriminatedSection<T extends keyof SectionTypeMap> = SectionTypeMap[T];
|
|
2205
2187
|
|
|
2206
2188
|
/**
|
|
2207
2189
|
* OSI Cards Animation Constants
|
|
@@ -3524,6 +3506,7 @@ interface SectionManifestEntry {
|
|
|
3524
3506
|
usesFields: boolean;
|
|
3525
3507
|
usesItems: boolean;
|
|
3526
3508
|
usesChartData?: boolean;
|
|
3509
|
+
usesTableData?: boolean;
|
|
3527
3510
|
defaultColumns: number;
|
|
3528
3511
|
supportsCollapse: boolean;
|
|
3529
3512
|
requiresExternalLib?: string;
|
|
@@ -6608,7 +6591,7 @@ declare class DynamicSectionLoaderService {
|
|
|
6608
6591
|
* 1. Check plugin registry for custom overrides
|
|
6609
6592
|
* 2. Resolve type aliases to canonical types
|
|
6610
6593
|
* 3. Look up in generated component map
|
|
6611
|
-
* 4. Fall back to
|
|
6594
|
+
* 4. Fall back to OverviewSectionComponent
|
|
6612
6595
|
*/
|
|
6613
6596
|
getComponentForSection(section: CardSection): AnySectionComponent;
|
|
6614
6597
|
/**
|
|
@@ -8671,6 +8654,7 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
|
|
|
8671
8654
|
private resizeObserver?;
|
|
8672
8655
|
private resizeThrottleTimeout?;
|
|
8673
8656
|
private lastWidth;
|
|
8657
|
+
private lastContainerWidth;
|
|
8674
8658
|
private layoutVersion;
|
|
8675
8659
|
private itemResizeObservers;
|
|
8676
8660
|
private absolutePositionUpdateRafId;
|
|
@@ -8680,6 +8664,11 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
|
|
|
8680
8664
|
private readonly HEIGHT_THRESHOLD;
|
|
8681
8665
|
private initialLayoutPollingTimeout?;
|
|
8682
8666
|
private itemElements;
|
|
8667
|
+
private cachedPadding;
|
|
8668
|
+
private isFirstCalculation;
|
|
8669
|
+
private isFirstPositioning;
|
|
8670
|
+
private animationMonitorInterval?;
|
|
8671
|
+
private previousSectionKeys;
|
|
8683
8672
|
ngAfterViewInit(): void;
|
|
8684
8673
|
ngOnChanges(changes: SimpleChanges): void;
|
|
8685
8674
|
ngOnDestroy(): void;
|
|
@@ -8715,11 +8704,44 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
|
|
|
8715
8704
|
*/
|
|
8716
8705
|
private determineLayoutVariant;
|
|
8717
8706
|
private applyLayout;
|
|
8707
|
+
/**
|
|
8708
|
+
* Validate layout prerequisites (padding and gap) before calculations
|
|
8709
|
+
* Returns validation status and values
|
|
8710
|
+
*/
|
|
8711
|
+
private validateLayoutPrerequisites;
|
|
8712
|
+
/**
|
|
8713
|
+
* Get container padding with fallback to CSS variable if computed style returns 0
|
|
8714
|
+
* Reads padding from parent .ai-card-surface element (not from masonry container)
|
|
8715
|
+
* Caches padding value to avoid repeated calculations
|
|
8716
|
+
*/
|
|
8718
8717
|
private getContainerPadding;
|
|
8718
|
+
/**
|
|
8719
|
+
* Read padding value from CSS variable --osi-card-padding
|
|
8720
|
+
* Handles various formats: "16px", "var(--other-var)", etc.
|
|
8721
|
+
*/
|
|
8722
|
+
private getPaddingFromCSSVariable;
|
|
8719
8723
|
private setupResizeObserver;
|
|
8720
8724
|
trackBySection: (index: number, item: SectionWithSpan) => string;
|
|
8721
8725
|
onSectionEvent(event: SectionRenderEvent): void;
|
|
8722
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;
|
|
8723
8745
|
/**
|
|
8724
8746
|
* Cleanup absolute position polyfill observers
|
|
8725
8747
|
*/
|
|
@@ -8755,6 +8777,7 @@ declare class MasonryGridComponent implements AfterViewInit, OnChanges, OnDestro
|
|
|
8755
8777
|
/**
|
|
8756
8778
|
* Ensure initial layout is calculated with retry mechanism if width is invalid
|
|
8757
8779
|
* Simplified: Single RAF + one timeout retry
|
|
8780
|
+
* Also validates padding before layout calculation
|
|
8758
8781
|
*/
|
|
8759
8782
|
private ensureInitialLayout;
|
|
8760
8783
|
static ɵfac: i0.ɵɵFactoryDeclaration<MasonryGridComponent, never>;
|
|
@@ -8798,10 +8821,10 @@ declare class AICardRendererComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
8798
8821
|
private sectionHashCache;
|
|
8799
8822
|
private sectionOrderKeys;
|
|
8800
8823
|
private _changeType;
|
|
8801
|
-
particles:
|
|
8824
|
+
particles: {
|
|
8802
8825
|
transform: string;
|
|
8803
8826
|
opacity: number;
|
|
8804
|
-
}
|
|
8827
|
+
}[];
|
|
8805
8828
|
gradientTransform: string;
|
|
8806
8829
|
contentTransform: string;
|
|
8807
8830
|
currentMessageIndex: number;
|
|
@@ -8932,6 +8955,10 @@ declare class AICardRendererComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
8932
8955
|
llmFallbackPrompt?: string;
|
|
8933
8956
|
ngOnInit(): void;
|
|
8934
8957
|
ngAfterViewInit(): void;
|
|
8958
|
+
/**
|
|
8959
|
+
* Inspect Shadow DOM styles for debugging
|
|
8960
|
+
*/
|
|
8961
|
+
private inspectShadowDOMStyles;
|
|
8935
8962
|
/**
|
|
8936
8963
|
* Sets up width measurement for the card container.
|
|
8937
8964
|
* This ensures reliable masonry layout in Shadow DOM environments.
|
|
@@ -9227,8 +9254,11 @@ declare class CardSkeletonComponent {
|
|
|
9227
9254
|
declare class OsiCardsComponent {
|
|
9228
9255
|
private readonly defaultThemeConfig;
|
|
9229
9256
|
private readonly animationConfig;
|
|
9257
|
+
constructor();
|
|
9230
9258
|
/** The card configuration to render */
|
|
9231
|
-
card
|
|
9259
|
+
set card(value: AICardConfig | undefined);
|
|
9260
|
+
get card(): AICardConfig | undefined;
|
|
9261
|
+
private _card?;
|
|
9232
9262
|
/** Theme to apply ('day' or 'night') */
|
|
9233
9263
|
theme?: 'day' | 'night';
|
|
9234
9264
|
/** Whether to display in fullscreen mode */
|
|
@@ -10179,22 +10209,60 @@ declare class BrandColorsSectionComponent extends BaseSectionComponent implement
|
|
|
10179
10209
|
/**
|
|
10180
10210
|
* Chart Section Component
|
|
10181
10211
|
*
|
|
10182
|
-
* Displays data visualizations using
|
|
10183
|
-
* Supports: bar, line, pie, doughnut, area
|
|
10212
|
+
* Displays data visualizations using Frappe Charts.
|
|
10213
|
+
* Supports: bar, line, pie, percentage (doughnut), area charts.
|
|
10184
10214
|
*
|
|
10185
|
-
* Note: Requires
|
|
10215
|
+
* Note: Requires frappe-charts to be installed.
|
|
10186
10216
|
*/
|
|
10187
|
-
declare class ChartSectionComponent extends BaseSectionComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
10217
|
+
declare class ChartSectionComponent extends BaseSectionComponent implements AfterViewInit, OnDestroy, OnInit, OnChanges {
|
|
10188
10218
|
private readonly layoutService;
|
|
10189
10219
|
ngOnInit(): void;
|
|
10190
|
-
|
|
10220
|
+
chartContainer?: ElementRef<HTMLDivElement>;
|
|
10191
10221
|
private chartInstance;
|
|
10222
|
+
protected chartLibraryLoaded: boolean;
|
|
10223
|
+
protected chartError: string | null;
|
|
10224
|
+
private previousChartType;
|
|
10225
|
+
private previousChartDataHash;
|
|
10226
|
+
private isRendering;
|
|
10192
10227
|
ngAfterViewInit(): void;
|
|
10193
10228
|
ngOnDestroy(): void;
|
|
10229
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10194
10230
|
/**
|
|
10195
|
-
* Render chart using
|
|
10231
|
+
* Render chart using Frappe Charts (if available)
|
|
10196
10232
|
*/
|
|
10197
10233
|
private renderChart;
|
|
10234
|
+
/**
|
|
10235
|
+
* Update existing chart with new data
|
|
10236
|
+
*/
|
|
10237
|
+
private updateChart;
|
|
10238
|
+
/**
|
|
10239
|
+
* Convert Chart.js data format to Frappe Charts format
|
|
10240
|
+
*/
|
|
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;
|
|
10250
|
+
/**
|
|
10251
|
+
* Detect if chart data contains revenue/monetary values
|
|
10252
|
+
*/
|
|
10253
|
+
private detectRevenueData;
|
|
10254
|
+
/**
|
|
10255
|
+
* Format value as currency
|
|
10256
|
+
*/
|
|
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;
|
|
10198
10266
|
/**
|
|
10199
10267
|
* Destroy chart instance
|
|
10200
10268
|
*/
|
|
@@ -10396,6 +10464,10 @@ declare class EventSectionComponent extends BaseSectionComponent implements OnIn
|
|
|
10396
10464
|
* Map status to badge variant
|
|
10397
10465
|
*/
|
|
10398
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;
|
|
10399
10471
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventSectionComponent, never>;
|
|
10400
10472
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventSectionComponent, "lib-event-section", never, {}, {}, never, never, true, never>;
|
|
10401
10473
|
}
|
|
@@ -10434,151 +10506,6 @@ declare class FinancialsSectionComponent extends BaseSectionComponent implements
|
|
|
10434
10506
|
static ɵcmp: i0.ɵɵComponentDeclaration<FinancialsSectionComponent, "lib-financials-section", never, {}, {}, never, never, true, never>;
|
|
10435
10507
|
}
|
|
10436
10508
|
|
|
10437
|
-
/**
|
|
10438
|
-
* Info Section Component
|
|
10439
|
-
*
|
|
10440
|
-
* Displays key-value pairs in a clean, scannable format.
|
|
10441
|
-
* Perfect for structured data, metadata, and profile information.
|
|
10442
|
-
*/
|
|
10443
|
-
declare class InfoSectionComponent extends BaseSectionComponent implements OnInit {
|
|
10444
|
-
/**
|
|
10445
|
-
* TrackBy function for fields
|
|
10446
|
-
*/
|
|
10447
|
-
readonly trackByField: i0.TrackByFunction<CardField>;
|
|
10448
|
-
private readonly layoutService;
|
|
10449
|
-
ngOnInit(): void;
|
|
10450
|
-
/**
|
|
10451
|
-
* Calculate layout preferences for info section based on section data.
|
|
10452
|
-
* This method can be called statically via the service.
|
|
10453
|
-
*/
|
|
10454
|
-
private calculateInfoLayoutPreferences;
|
|
10455
|
-
/**
|
|
10456
|
-
* Get layout preferences for info section.
|
|
10457
|
-
* Uses the registered preference function via service, or calculates directly.
|
|
10458
|
-
*/
|
|
10459
|
-
getLayoutPreferences(availableColumns?: number): SectionLayoutPreferences;
|
|
10460
|
-
/**
|
|
10461
|
-
* Get trend class (deprecated - kept for backward compatibility)
|
|
10462
|
-
*/
|
|
10463
|
-
getTrendClass(trend?: string): string;
|
|
10464
|
-
/**
|
|
10465
|
-
* Format change value
|
|
10466
|
-
*/
|
|
10467
|
-
formatChange(change?: number): string;
|
|
10468
|
-
/**
|
|
10469
|
-
* Map trend string to TrendDirection type
|
|
10470
|
-
*/
|
|
10471
|
-
getTrendDirection(trend?: string): TrendDirection;
|
|
10472
|
-
/**
|
|
10473
|
-
* Check if a field is used in the header (should be excluded from KPI/facts grids)
|
|
10474
|
-
*/
|
|
10475
|
-
private isHeaderField;
|
|
10476
|
-
/**
|
|
10477
|
-
* Get primary KPIs (2-4 most important metrics)
|
|
10478
|
-
* Prioritizes fields with trends, numeric values, or KPI-related labels
|
|
10479
|
-
* Excludes header fields (company name, logo, website, stock symbol)
|
|
10480
|
-
*/
|
|
10481
|
-
get primaryKPIs(): CardField[];
|
|
10482
|
-
/**
|
|
10483
|
-
* Get secondary fields (everything else, excluding header fields and KPIs)
|
|
10484
|
-
*/
|
|
10485
|
-
get secondaryFields(): CardField[];
|
|
10486
|
-
/**
|
|
10487
|
-
* Get company name from fields
|
|
10488
|
-
*/
|
|
10489
|
-
getCompanyName(): string;
|
|
10490
|
-
/**
|
|
10491
|
-
* Get company logo/avatar from fields
|
|
10492
|
-
*/
|
|
10493
|
-
getCompanyLogo(): string | null;
|
|
10494
|
-
/**
|
|
10495
|
-
* Get tagline/description from section or fields
|
|
10496
|
-
*/
|
|
10497
|
-
getTagline(): string | null;
|
|
10498
|
-
/**
|
|
10499
|
-
* Track tagline expansion state
|
|
10500
|
-
*/
|
|
10501
|
-
isTaglineExpanded: boolean;
|
|
10502
|
-
/**
|
|
10503
|
-
* Toggle tagline expansion
|
|
10504
|
-
*/
|
|
10505
|
-
toggleTaglineExpanded(): void;
|
|
10506
|
-
/**
|
|
10507
|
-
* Check if tagline needs "Show more" button
|
|
10508
|
-
*/
|
|
10509
|
-
shouldShowTaglineExpandButton(): boolean;
|
|
10510
|
-
/**
|
|
10511
|
-
* Get website URL from fields
|
|
10512
|
-
*/
|
|
10513
|
-
getWebsiteUrl(): string | null;
|
|
10514
|
-
/**
|
|
10515
|
-
* Get stock symbol from fields
|
|
10516
|
-
*/
|
|
10517
|
-
getStockSymbol(): string | null;
|
|
10518
|
-
/**
|
|
10519
|
-
* Check if header info is available
|
|
10520
|
-
*/
|
|
10521
|
-
hasHeaderInfo(): boolean;
|
|
10522
|
-
/**
|
|
10523
|
-
* Check if header actions are available
|
|
10524
|
-
*/
|
|
10525
|
-
hasHeaderActions(): boolean;
|
|
10526
|
-
/**
|
|
10527
|
-
* Format KPI value for display
|
|
10528
|
-
*/
|
|
10529
|
-
formatKPIValue(field: CardField): string;
|
|
10530
|
-
/**
|
|
10531
|
-
* Open website URL
|
|
10532
|
-
*/
|
|
10533
|
-
openWebsite(url: string): void;
|
|
10534
|
-
/**
|
|
10535
|
-
* Copy text to clipboard
|
|
10536
|
-
*/
|
|
10537
|
-
copyToClipboard(text: string): Promise<void>;
|
|
10538
|
-
/**
|
|
10539
|
-
* Loading state (can be set externally or based on data availability)
|
|
10540
|
-
*/
|
|
10541
|
-
isLoading: boolean;
|
|
10542
|
-
/**
|
|
10543
|
-
* UI state: expanded/collapsed
|
|
10544
|
-
*/
|
|
10545
|
-
isExpanded: boolean;
|
|
10546
|
-
/**
|
|
10547
|
-
* Toggle expanded state
|
|
10548
|
-
*/
|
|
10549
|
-
toggleExpanded(): void;
|
|
10550
|
-
/**
|
|
10551
|
-
* Get collapsed facts (first 4 fields by default, can be adjusted via CSS)
|
|
10552
|
-
*/
|
|
10553
|
-
get collapsedFacts(): CardField[];
|
|
10554
|
-
/**
|
|
10555
|
-
* Get overflow facts (fields beyond collapsed view)
|
|
10556
|
-
*/
|
|
10557
|
-
get overflowFacts(): CardField[];
|
|
10558
|
-
/**
|
|
10559
|
-
* Check if a field should be rendered as chips (multi-value field)
|
|
10560
|
-
*/
|
|
10561
|
-
isChipField(field: CardField): boolean;
|
|
10562
|
-
/**
|
|
10563
|
-
* Parse value to chips array
|
|
10564
|
-
* Splits by comma or semicolon and trims
|
|
10565
|
-
*/
|
|
10566
|
-
parseToChips(value: string | number | boolean | null | undefined): string[];
|
|
10567
|
-
/**
|
|
10568
|
-
* Get chips for collapsed view (max 3 chips + "+N" indicator)
|
|
10569
|
-
*/
|
|
10570
|
-
getCollapsedChips(field: CardField): {
|
|
10571
|
-
chips: string[];
|
|
10572
|
-
overflowCount: number;
|
|
10573
|
-
};
|
|
10574
|
-
/**
|
|
10575
|
-
* Get all chips for expanded view
|
|
10576
|
-
*/
|
|
10577
|
-
getAllChips(field: CardField): string[];
|
|
10578
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoSectionComponent, never>;
|
|
10579
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "lib-info-section", never, {}, {}, never, never, true, never>;
|
|
10580
|
-
}
|
|
10581
|
-
|
|
10582
10509
|
/**
|
|
10583
10510
|
* List Section Component
|
|
10584
10511
|
*
|
|
@@ -10611,6 +10538,7 @@ declare class ListSectionComponent extends BaseSectionComponent implements OnIni
|
|
|
10611
10538
|
getStatusVariant(status?: string): 'success' | 'warning' | 'error' | 'primary' | 'default';
|
|
10612
10539
|
/**
|
|
10613
10540
|
* Map priority to badge variant
|
|
10541
|
+
* Priority hierarchy: critical > high > medium > low
|
|
10614
10542
|
*/
|
|
10615
10543
|
getPriorityVariant(priority?: string): 'error' | 'warning' | 'success' | 'default';
|
|
10616
10544
|
toggleExpanded(index: number): void;
|
|
@@ -10638,15 +10566,41 @@ declare class ListSectionComponent extends BaseSectionComponent implements OnIni
|
|
|
10638
10566
|
declare class MapSectionComponent extends BaseSectionComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
10639
10567
|
private readonly layoutService;
|
|
10640
10568
|
mapInitFailed: boolean;
|
|
10569
|
+
tilesLoading: boolean;
|
|
10641
10570
|
ngOnInit(): void;
|
|
10642
10571
|
mapElement?: ElementRef<HTMLDivElement>;
|
|
10643
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;
|
|
10644
10582
|
ngAfterViewInit(): void;
|
|
10645
10583
|
ngOnDestroy(): void;
|
|
10646
10584
|
/**
|
|
10647
10585
|
* Initialize Leaflet map
|
|
10648
10586
|
*/
|
|
10649
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;
|
|
10650
10604
|
/**
|
|
10651
10605
|
* Destroy map instance
|
|
10652
10606
|
*/
|
|
@@ -10752,47 +10706,6 @@ declare class NewsSectionComponent extends BaseSectionComponent implements OnIni
|
|
|
10752
10706
|
static ɵcmp: i0.ɵɵComponentDeclaration<NewsSectionComponent, "lib-news-section", never, {}, {}, never, never, true, never>;
|
|
10753
10707
|
}
|
|
10754
10708
|
|
|
10755
|
-
/**
|
|
10756
|
-
* Overview Section Component
|
|
10757
|
-
*
|
|
10758
|
-
* Displays high-level summaries and executive dashboards.
|
|
10759
|
-
* Perfect for company profiles, key highlights, and quick insights.
|
|
10760
|
-
*/
|
|
10761
|
-
declare class OverviewSectionComponent extends BaseSectionComponent implements OnInit {
|
|
10762
|
-
private readonly layoutService;
|
|
10763
|
-
ngOnInit(): void;
|
|
10764
|
-
/**
|
|
10765
|
-
* Calculate layout preferences for overview section based on content.
|
|
10766
|
-
*/
|
|
10767
|
-
private calculateOverviewLayoutPreferences;
|
|
10768
|
-
/**
|
|
10769
|
-
* Get layout preferences for overview section.
|
|
10770
|
-
*/
|
|
10771
|
-
getLayoutPreferences(availableColumns?: number): SectionLayoutPreferences;
|
|
10772
|
-
/**
|
|
10773
|
-
* Check if field should be highlighted
|
|
10774
|
-
*/
|
|
10775
|
-
isHighlighted(field: any): boolean;
|
|
10776
|
-
/**
|
|
10777
|
-
* Track expanded state for each field
|
|
10778
|
-
*/
|
|
10779
|
-
expandedFields: Set<number>;
|
|
10780
|
-
/**
|
|
10781
|
-
* Toggle expanded state for a field
|
|
10782
|
-
*/
|
|
10783
|
-
toggleExpanded(index: number): void;
|
|
10784
|
-
/**
|
|
10785
|
-
* Check if a field is expanded
|
|
10786
|
-
*/
|
|
10787
|
-
isExpanded(index: number): boolean;
|
|
10788
|
-
/**
|
|
10789
|
-
* Check if a value is long enough to need expansion
|
|
10790
|
-
*/
|
|
10791
|
-
shouldShowExpandButton(field: any): boolean;
|
|
10792
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OverviewSectionComponent, never>;
|
|
10793
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OverviewSectionComponent, "lib-overview-section", never, {}, {}, never, never, true, never>;
|
|
10794
|
-
}
|
|
10795
|
-
|
|
10796
10709
|
/**
|
|
10797
10710
|
* Product Section Component
|
|
10798
10711
|
*
|
|
@@ -10900,11 +10813,20 @@ declare class SocialMediaSectionComponent extends BaseSectionComponent implement
|
|
|
10900
10813
|
* Displays solution offerings, use cases, and service information.
|
|
10901
10814
|
* Features: benefits, complexity indicators, delivery timeframes.
|
|
10902
10815
|
*/
|
|
10903
|
-
declare class SolutionsSectionComponent extends BaseSectionComponent implements OnInit {
|
|
10816
|
+
declare class SolutionsSectionComponent extends BaseSectionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
10904
10817
|
private readonly layoutService;
|
|
10818
|
+
solutionsGrid?: ElementRef<HTMLElement>;
|
|
10905
10819
|
expandedIndex: number | null;
|
|
10906
10820
|
descriptionExpandedStates: boolean[];
|
|
10821
|
+
isSingleColumn: boolean;
|
|
10822
|
+
private resizeObserver?;
|
|
10907
10823
|
ngOnInit(): void;
|
|
10824
|
+
ngAfterViewInit(): void;
|
|
10825
|
+
ngOnDestroy(): void;
|
|
10826
|
+
/**
|
|
10827
|
+
* Check if grid is rendering as single column
|
|
10828
|
+
*/
|
|
10829
|
+
private checkGridColumns;
|
|
10908
10830
|
/**
|
|
10909
10831
|
* Calculate layout preferences for solutions section based on content.
|
|
10910
10832
|
* Solutions sections: 2 cols default, can shrink to 1, expands based on item count
|
|
@@ -10937,6 +10859,25 @@ declare class SolutionsSectionComponent extends BaseSectionComponent implements
|
|
|
10937
10859
|
* Check if description is expanded
|
|
10938
10860
|
*/
|
|
10939
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;
|
|
10940
10881
|
static ɵfac: i0.ɵɵFactoryDeclaration<SolutionsSectionComponent, never>;
|
|
10941
10882
|
static ɵcmp: i0.ɵɵComponentDeclaration<SolutionsSectionComponent, "lib-solutions-section", never, {}, {}, never, never, true, never>;
|
|
10942
10883
|
}
|
|
@@ -11619,11 +11560,11 @@ declare function packWithZeroGapsGuarantee(sections: CardSection[], columns?: nu
|
|
|
11619
11560
|
* Do not edit manually - generated by scripts/generate-version.js
|
|
11620
11561
|
*
|
|
11621
11562
|
* Source of truth: version.config.json
|
|
11622
|
-
* Last synced:
|
|
11563
|
+
* Last synced: 2026-01-08T09:54:54.239Z
|
|
11623
11564
|
*/
|
|
11624
|
-
declare const VERSION = "1.5.
|
|
11625
|
-
declare const BUILD_DATE = "
|
|
11626
|
-
declare const BUILD_HASH = "
|
|
11565
|
+
declare const VERSION = "1.5.43";
|
|
11566
|
+
declare const BUILD_DATE = "2026-01-08T09:54:54.239Z";
|
|
11567
|
+
declare const BUILD_HASH = "8297fa0";
|
|
11627
11568
|
declare const BUILD_BRANCH = "main";
|
|
11628
11569
|
interface VersionInfo {
|
|
11629
11570
|
version: string;
|
|
@@ -11655,5 +11596,5 @@ declare function isProductionBuild(): boolean;
|
|
|
11655
11596
|
*/
|
|
11656
11597
|
declare function isPrerelease(): boolean;
|
|
11657
11598
|
|
|
11658
|
-
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,
|
|
11659
|
-
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,
|
|
11599
|
+
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 };
|
|
11600
|
+
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 };
|