osi-cards-lib 1.5.34 → 1.5.36
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 +13 -7
- package/fesm2022/osi-cards-lib.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +2 -2
- package/styles/_styles-scoped.scss +24 -1
- package/styles/core/_bootstrap-reset.scss +181 -4
package/README.md
CHANGED
|
@@ -786,7 +786,7 @@ import { OsiCardsComponent, AICardConfig, CardFieldInteractionEvent } from 'osi-
|
|
|
786
786
|
export class CardPageComponent {
|
|
787
787
|
companyCard: AICardConfig = {
|
|
788
788
|
cardTitle: 'Acme Corporation',
|
|
789
|
-
|
|
789
|
+
description: 'Global Technology Leader',
|
|
790
790
|
sections: [
|
|
791
791
|
{
|
|
792
792
|
title: 'Company Overview',
|
|
@@ -6083,7 +6083,7 @@ function getSectionsRequiringExternalLibs() {
|
|
|
6083
6083
|
* Manifest metadata
|
|
6084
6084
|
*/
|
|
6085
6085
|
const MANIFEST_META = {
|
|
6086
|
-
generatedAt: '2025-12-
|
|
6086
|
+
generatedAt: '2025-12-12T21:20:30.523Z',
|
|
6087
6087
|
registryVersion: '1.5.19',
|
|
6088
6088
|
totalSections: 22,
|
|
6089
6089
|
publicSections: 22
|
|
@@ -26573,8 +26573,14 @@ class OsiCardsContainerComponent {
|
|
|
26573
26573
|
*/
|
|
26574
26574
|
ngOnChanges(changes) {
|
|
26575
26575
|
// If theme input changed, manually trigger change detection for OnPush strategy
|
|
26576
|
-
|
|
26576
|
+
// Handle both first change and subsequent changes to ensure theme updates work
|
|
26577
|
+
if (changes['theme']) {
|
|
26578
|
+
const oldTheme = changes['theme'].previousValue;
|
|
26579
|
+
const newTheme = changes['theme'].currentValue;
|
|
26580
|
+
console.log(`[OsiCardsContainer] Theme input changed from ${oldTheme} to ${newTheme}`);
|
|
26577
26581
|
this.cdr.markForCheck();
|
|
26582
|
+
// Also trigger detectChanges to ensure immediate update
|
|
26583
|
+
this.cdr.detectChanges();
|
|
26578
26584
|
}
|
|
26579
26585
|
}
|
|
26580
26586
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: OsiCardsContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -26587,7 +26593,7 @@ class OsiCardsContainerComponent {
|
|
|
26587
26593
|
>
|
|
26588
26594
|
<ng-content></ng-content>
|
|
26589
26595
|
</div>
|
|
26590
|
-
`, isInline: true, styles: [":host{display:block;background:transparent!important;background-color:transparent!important}.osi-cards-container{padding:var(--osi-card-padding);background:transparent!important;background-color:transparent!important;perspective:1200px;transform-style:preserve-3d;display:flex;justify-content:center;align-items:flex-start}.osi-cards-container--strict{contain:content;isolation:isolate;overflow:hidden}@media (max-width: 480px){.osi-cards-container{padding:var(--osi-card-padding-mobile)}}\n"], changeDetection: i0.ChangeDetectionStrategy.
|
|
26596
|
+
`, isInline: true, styles: [":host{display:block;background:transparent!important;background-color:transparent!important}.osi-cards-container{padding:var(--osi-card-padding);background:transparent!important;background-color:transparent!important;perspective:1200px;transform-style:preserve-3d;display:flex;justify-content:center;align-items:flex-start}.osi-cards-container--strict{contain:content;isolation:isolate;overflow:hidden}@media (max-width: 480px){.osi-cards-container{padding:var(--osi-card-padding-mobile)}}\n"], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None }); }
|
|
26591
26597
|
}
|
|
26592
26598
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: OsiCardsContainerComponent, decorators: [{
|
|
26593
26599
|
type: Component,
|
|
@@ -26600,7 +26606,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
26600
26606
|
>
|
|
26601
26607
|
<ng-content></ng-content>
|
|
26602
26608
|
</div>
|
|
26603
|
-
`, changeDetection: ChangeDetectionStrategy.
|
|
26609
|
+
`, changeDetection: ChangeDetectionStrategy.Default, encapsulation: ViewEncapsulation.None, styles: [":host{display:block;background:transparent!important;background-color:transparent!important}.osi-cards-container{padding:var(--osi-card-padding);background:transparent!important;background-color:transparent!important;perspective:1200px;transform-style:preserve-3d;display:flex;justify-content:center;align-items:flex-start}.osi-cards-container--strict{contain:content;isolation:isolate;overflow:hidden}@media (max-width: 480px){.osi-cards-container{padding:var(--osi-card-padding-mobile)}}\n"] }]
|
|
26604
26610
|
}], propDecorators: { theme: [{
|
|
26605
26611
|
type: Input
|
|
26606
26612
|
}], strictIsolation: [{
|
|
@@ -31805,11 +31811,11 @@ class SubscriptionPool {
|
|
|
31805
31811
|
* Do not edit manually - generated by scripts/generate-version.js
|
|
31806
31812
|
*
|
|
31807
31813
|
* Source of truth: version.config.json
|
|
31808
|
-
* Last synced: 2025-12-
|
|
31814
|
+
* Last synced: 2025-12-12T21:21:07.663Z
|
|
31809
31815
|
*/
|
|
31810
31816
|
const VERSION = '1.5.19';
|
|
31811
|
-
const BUILD_DATE = '2025-12-
|
|
31812
|
-
const BUILD_HASH = '
|
|
31817
|
+
const BUILD_DATE = '2025-12-12T21:21:07.663Z';
|
|
31818
|
+
const BUILD_HASH = '34c5699';
|
|
31813
31819
|
const BUILD_BRANCH = 'main';
|
|
31814
31820
|
const VERSION_INFO = {
|
|
31815
31821
|
version: VERSION,
|