osi-cards-lib 1.5.37 → 1.5.39
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 +7 -7
- package/fesm2022/osi-cards-lib.mjs +1169 -187
- package/fesm2022/osi-cards-lib.mjs.map +1 -1
- package/index.d.ts +36 -36
- package/package.json +1 -1
- package/scripts/setup-angular-styles.js +1 -0
- package/styles/_osi-cards-tokens.scss +0 -1
- package/styles/_styles-scoped.scss +9 -1
- package/styles/bundles/_ai-card.scss +5 -1
- package/styles/bundles/_card-skeleton.scss +2 -2
- package/styles/components/_component-styles.scss +4 -0
- package/styles/components/cards/_ai-card.scss +1 -1
- package/styles/components/sections/_design-tokens.scss +0 -1
- package/styles/components/sections/_section-animations.scss +0 -1
- package/styles/components/sections/_typography-system.scss +2 -8
- package/styles/core/_bootstrap-reset.scss +47 -37
- package/styles/design-system/_tokens.scss +0 -1
- package/styles/layout/_masonry.scss +5 -11
- package/styles/reset/_shadow-reset.scss +2 -7
- package/styles/responsive.scss +9 -32
- package/styles/tokens/_master.scss +245 -220
package/README.md
CHANGED
|
@@ -172,7 +172,7 @@ import { AICardConfig } from 'osi-cards-lib';
|
|
|
172
172
|
})
|
|
173
173
|
export class YourComponent {
|
|
174
174
|
cardTheme: 'day' | 'night' = 'night'; // or 'day' for light theme
|
|
175
|
-
|
|
175
|
+
|
|
176
176
|
companyCard: AICardConfig = {
|
|
177
177
|
cardTitle: 'Company Profile',
|
|
178
178
|
description: 'Complete company information and insights',
|
|
@@ -196,11 +196,11 @@ export class YourComponent {
|
|
|
196
196
|
}
|
|
197
197
|
],
|
|
198
198
|
actions: [
|
|
199
|
-
{
|
|
200
|
-
type: 'website',
|
|
201
|
-
label: 'Visit Website',
|
|
202
|
-
variant: 'primary',
|
|
203
|
-
url: 'https://example.com'
|
|
199
|
+
{
|
|
200
|
+
type: 'website',
|
|
201
|
+
label: 'Visit Website',
|
|
202
|
+
variant: 'primary',
|
|
203
|
+
url: 'https://example.com'
|
|
204
204
|
}
|
|
205
205
|
]
|
|
206
206
|
};
|
|
@@ -291,7 +291,7 @@ import { AICardConfig } from 'osi-cards-lib';
|
|
|
291
291
|
})
|
|
292
292
|
export class YourComponent {
|
|
293
293
|
cardTheme: 'day' | 'night' = 'night';
|
|
294
|
-
|
|
294
|
+
|
|
295
295
|
companyCard: AICardConfig = {
|
|
296
296
|
cardTitle: 'Company Profile',
|
|
297
297
|
description: 'Complete company information',
|