trade-safety 1.1.3 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/components/DetailedResult/AnalysisCard.d.ts +9 -0
  2. package/dist/components/DetailedResult/AnalysisCard.d.ts.map +1 -0
  3. package/dist/components/DetailedResult/PriceAnalysisSection.d.ts.map +1 -1
  4. package/dist/components/DetailedResult/RecommendationSection.d.ts +2 -3
  5. package/dist/components/DetailedResult/RecommendationSection.d.ts.map +1 -1
  6. package/dist/components/DetailedResult/SafetyChecklistSection.d.ts.map +1 -1
  7. package/dist/components/DetailedResult/SignalsSection.d.ts +8 -0
  8. package/dist/components/DetailedResult/SignalsSection.d.ts.map +1 -0
  9. package/dist/components/DetailedResult/TranslationSection.d.ts +1 -1
  10. package/dist/components/DetailedResult/TranslationSection.d.ts.map +1 -1
  11. package/dist/components/DetailedResult/index.d.ts +1 -4
  12. package/dist/components/DetailedResult/index.d.ts.map +1 -1
  13. package/dist/components/HomeHeroSection.d.ts +9 -0
  14. package/dist/components/HomeHeroSection.d.ts.map +1 -0
  15. package/dist/i18n/translations.d.ts +12 -0
  16. package/dist/i18n/translations.d.ts.map +1 -1
  17. package/dist/index.d.ts +3 -3
  18. package/dist/index.d.ts.map +1 -1
  19. package/dist/index.js +1 -1
  20. package/dist/index.js.map +1 -1
  21. package/dist/index.mjs +415 -648
  22. package/dist/index.mjs.map +1 -1
  23. package/dist/locale.js +43 -43
  24. package/dist/locale.js.map +1 -1
  25. package/dist/locale.mjs +69 -69
  26. package/dist/repositories/TradeSafetyRepository.d.ts +27 -69
  27. package/dist/repositories/TradeSafetyRepository.d.ts.map +1 -1
  28. package/package.json +2 -1
  29. package/dist/components/DetailedResult/CautionsSection.d.ts +0 -7
  30. package/dist/components/DetailedResult/CautionsSection.d.ts.map +0 -1
  31. package/dist/components/DetailedResult/CompanionCtaSection.d.ts +0 -2
  32. package/dist/components/DetailedResult/CompanionCtaSection.d.ts.map +0 -1
  33. package/dist/components/DetailedResult/ExpertAdviceSection.d.ts +0 -6
  34. package/dist/components/DetailedResult/ExpertAdviceSection.d.ts.map +0 -1
  35. package/dist/components/DetailedResult/RiskScoreHero.d.ts +0 -6
  36. package/dist/components/DetailedResult/RiskScoreHero.d.ts.map +0 -1
  37. package/dist/components/DetailedResult/RiskSignalsSection.d.ts +0 -7
  38. package/dist/components/DetailedResult/RiskSignalsSection.d.ts.map +0 -1
  39. package/dist/components/DetailedResult/SafeIndicatorsSection.d.ts +0 -7
  40. package/dist/components/DetailedResult/SafeIndicatorsSection.d.ts.map +0 -1
  41. package/dist/components/QuickResultTeaser.d.ts +0 -8
  42. package/dist/components/QuickResultTeaser.d.ts.map +0 -1
  43. package/dist/components/RiskSignalCard.d.ts +0 -8
  44. package/dist/components/RiskSignalCard.d.ts.map +0 -1
@@ -88,15 +88,15 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
88
88
  recommendation: z.ZodString;
89
89
  emotional_support: z.ZodString;
90
90
  }, "strip", z.ZodTypeAny, {
91
- cautions: {
91
+ recommendation: string;
92
+ risk_signals: {
92
93
  title: string;
93
94
  category: "payment" | "seller" | "platform" | "price" | "content";
94
95
  severity: "high" | "medium" | "low";
95
96
  description: string;
96
97
  what_to_do: string;
97
98
  }[];
98
- recommendation: string;
99
- risk_signals: {
99
+ cautions: {
100
100
  title: string;
101
101
  category: "payment" | "seller" | "platform" | "price" | "content";
102
102
  severity: "high" | "medium" | "low";
@@ -123,15 +123,15 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
123
123
  translation?: string | null | undefined;
124
124
  nuance_explanation?: string | null | undefined;
125
125
  }, {
126
- cautions: {
126
+ recommendation: string;
127
+ risk_signals: {
127
128
  title: string;
128
129
  category: "payment" | "seller" | "platform" | "price" | "content";
129
130
  severity: "high" | "medium" | "low";
130
131
  description: string;
131
132
  what_to_do: string;
132
133
  }[];
133
- recommendation: string;
134
- risk_signals: {
134
+ cautions: {
135
135
  title: string;
136
136
  category: "payment" | "seller" | "platform" | "price" | "content";
137
137
  severity: "high" | "medium" | "low";
@@ -170,15 +170,15 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
170
170
  risk_score: number;
171
171
  input_text: string;
172
172
  llm_analysis: {
173
- cautions: {
173
+ recommendation: string;
174
+ risk_signals: {
174
175
  title: string;
175
176
  category: "payment" | "seller" | "platform" | "price" | "content";
176
177
  severity: "high" | "medium" | "low";
177
178
  description: string;
178
179
  what_to_do: string;
179
180
  }[];
180
- recommendation: string;
181
- risk_signals: {
181
+ cautions: {
182
182
  title: string;
183
183
  category: "payment" | "seller" | "platform" | "price" | "content";
184
184
  severity: "high" | "medium" | "low";
@@ -217,15 +217,15 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
217
217
  risk_score: number;
218
218
  input_text: string;
219
219
  llm_analysis: {
220
- cautions: {
220
+ recommendation: string;
221
+ risk_signals: {
221
222
  title: string;
222
223
  category: "payment" | "seller" | "platform" | "price" | "content";
223
224
  severity: "high" | "medium" | "low";
224
225
  description: string;
225
226
  what_to_do: string;
226
227
  }[];
227
- recommendation: string;
228
- risk_signals: {
228
+ cautions: {
229
229
  title: string;
230
230
  category: "payment" | "seller" | "platform" | "price" | "content";
231
231
  severity: "high" | "medium" | "low";
@@ -260,20 +260,10 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
260
260
  expert_reviewed_at?: string | null | undefined;
261
261
  expert_reviewed_by?: string | null | undefined;
262
262
  }>;
263
- export type TradeSafetyCheckFullResponse = z.infer<typeof tradeSafetyCheckResponseSchema>;
264
- export interface QuickCheckRepositoryResponse {
265
- id: string;
266
- quick_summary: {
267
- risk_signals_count: number;
268
- cautions_count: number;
269
- safe_indicators_count: number;
270
- };
271
- signup_required: true;
272
- }
273
- export type TradeSafetyCheckRepositoryResponse = TradeSafetyCheckFullResponse | QuickCheckRepositoryResponse;
263
+ export type TradeSafetyCheckRepositoryResponse = z.infer<typeof tradeSafetyCheckResponseSchema>;
274
264
  export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafetyCheckRepositoryResponse> {
275
265
  readonly resource = "trade-safety";
276
- protected getDataSchema(): z.ZodUnion<[z.ZodObject<{
266
+ protected getDataSchema(): z.ZodObject<{
277
267
  id: z.ZodString;
278
268
  user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
279
269
  input_text: z.ZodString;
@@ -361,15 +351,15 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
361
351
  recommendation: z.ZodString;
362
352
  emotional_support: z.ZodString;
363
353
  }, "strip", z.ZodTypeAny, {
364
- cautions: {
354
+ recommendation: string;
355
+ risk_signals: {
365
356
  title: string;
366
357
  category: "payment" | "seller" | "platform" | "price" | "content";
367
358
  severity: "high" | "medium" | "low";
368
359
  description: string;
369
360
  what_to_do: string;
370
361
  }[];
371
- recommendation: string;
372
- risk_signals: {
362
+ cautions: {
373
363
  title: string;
374
364
  category: "payment" | "seller" | "platform" | "price" | "content";
375
365
  severity: "high" | "medium" | "low";
@@ -396,15 +386,15 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
396
386
  translation?: string | null | undefined;
397
387
  nuance_explanation?: string | null | undefined;
398
388
  }, {
399
- cautions: {
389
+ recommendation: string;
390
+ risk_signals: {
400
391
  title: string;
401
392
  category: "payment" | "seller" | "platform" | "price" | "content";
402
393
  severity: "high" | "medium" | "low";
403
394
  description: string;
404
395
  what_to_do: string;
405
396
  }[];
406
- recommendation: string;
407
- risk_signals: {
397
+ cautions: {
408
398
  title: string;
409
399
  category: "payment" | "seller" | "platform" | "price" | "content";
410
400
  severity: "high" | "medium" | "low";
@@ -443,15 +433,15 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
443
433
  risk_score: number;
444
434
  input_text: string;
445
435
  llm_analysis: {
446
- cautions: {
436
+ recommendation: string;
437
+ risk_signals: {
447
438
  title: string;
448
439
  category: "payment" | "seller" | "platform" | "price" | "content";
449
440
  severity: "high" | "medium" | "low";
450
441
  description: string;
451
442
  what_to_do: string;
452
443
  }[];
453
- recommendation: string;
454
- risk_signals: {
444
+ cautions: {
455
445
  title: string;
456
446
  category: "payment" | "seller" | "platform" | "price" | "content";
457
447
  severity: "high" | "medium" | "low";
@@ -490,15 +480,15 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
490
480
  risk_score: number;
491
481
  input_text: string;
492
482
  llm_analysis: {
493
- cautions: {
483
+ recommendation: string;
484
+ risk_signals: {
494
485
  title: string;
495
486
  category: "payment" | "seller" | "platform" | "price" | "content";
496
487
  severity: "high" | "medium" | "low";
497
488
  description: string;
498
489
  what_to_do: string;
499
490
  }[];
500
- recommendation: string;
501
- risk_signals: {
491
+ cautions: {
502
492
  title: string;
503
493
  category: "payment" | "seller" | "platform" | "price" | "content";
504
494
  severity: "high" | "medium" | "low";
@@ -532,39 +522,7 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
532
522
  expert_advice?: string | null | undefined;
533
523
  expert_reviewed_at?: string | null | undefined;
534
524
  expert_reviewed_by?: string | null | undefined;
535
- }>, z.ZodObject<{
536
- id: z.ZodString;
537
- quick_summary: z.ZodObject<{
538
- risk_signals_count: z.ZodNumber;
539
- cautions_count: z.ZodNumber;
540
- safe_indicators_count: z.ZodNumber;
541
- }, "strip", z.ZodTypeAny, {
542
- risk_signals_count: number;
543
- cautions_count: number;
544
- safe_indicators_count: number;
545
- }, {
546
- risk_signals_count: number;
547
- cautions_count: number;
548
- safe_indicators_count: number;
549
- }>;
550
- signup_required: z.ZodLiteral<true>;
551
- }, "strip", z.ZodTypeAny, {
552
- id: string;
553
- quick_summary: {
554
- risk_signals_count: number;
555
- cautions_count: number;
556
- safe_indicators_count: number;
557
- };
558
- signup_required: true;
559
- }, {
560
- id: string;
561
- quick_summary: {
562
- risk_signals_count: number;
563
- cautions_count: number;
564
- safe_indicators_count: number;
565
- };
566
- signup_required: true;
567
- }>]>;
525
+ }>;
568
526
  }
569
527
  export {};
570
528
  //# sourceMappingURL=TradeSafetyRepository.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TradeSafetyRepository.d.ts","sourceRoot":"","sources":["../../src/repositories/TradeSafetyRepository.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsCxB,QAAA,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAGH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,8BAA8B,CACtC,CAAC;AAGF,MAAM,WAAW,4BAA4B;IAC3C,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE;QACb,kBAAkB,EAAE,MAAM,CAAC;QAC3B,cAAc,EAAE,MAAM,CAAC;QACvB,qBAAqB,EAAE,MAAM,CAAC;KAC/B,CAAC;IACF,eAAe,EAAE,IAAI,CAAC;CACvB;AAGD,MAAM,MAAM,kCAAkC,GAC1C,4BAA4B,GAC5B,4BAA4B,CAAC;AAYjC,qBAAa,qBAAsB,SAAQ,kBAAkB,CAAC,kCAAkC,CAAC;IAC/F,QAAQ,CAAC,QAAQ,kBAAkB;IAEnC,SAAS,CAAC,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxB"}
1
+ {"version":3,"file":"TradeSafetyRepository.d.ts","sourceRoot":"","sources":["../../src/repositories/TradeSafetyRepository.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgCxB,QAAA,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAGH,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CACtD,OAAO,8BAA8B,CACtC,CAAC;AAEF,qBAAa,qBAAsB,SAAQ,kBAAkB,CAAC,kCAAkC,CAAC;IAC/F,QAAQ,CAAC,QAAQ,kBAAkB;IAEnC,SAAS,CAAC,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trade-safety",
3
- "version": "1.1.3",
3
+ "version": "1.3.0",
4
4
  "description": "React components for Trade Safety - K-pop merchandise trade safety analysis",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -70,6 +70,7 @@
70
70
  "i18next": "^23.11.4",
71
71
  "i18next-resources-to-backend": "^1.2.1",
72
72
  "react-i18next": "^14.1.1",
73
+ "react-icons": "^5.5.0",
73
74
  "zod": "^3.23.8"
74
75
  },
75
76
  "devDependencies": {
@@ -1,7 +0,0 @@
1
- import { RiskSignal } from '../../types';
2
- interface CautionsSectionProps {
3
- cautions: RiskSignal[];
4
- }
5
- export declare function CautionsSection({ cautions }: CautionsSectionProps): import("react").JSX.Element | null;
6
- export {};
7
- //# sourceMappingURL=CautionsSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CautionsSection.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/CautionsSection.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,UAAU,oBAAoB;IAC5B,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB;AAED,wBAAgB,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE,oBAAoB,sCA2BjE"}
@@ -1,2 +0,0 @@
1
- export declare function CompanionCtaSection(): import("react").JSX.Element;
2
- //# sourceMappingURL=CompanionCtaSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CompanionCtaSection.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/CompanionCtaSection.tsx"],"names":[],"mappings":"AASA,wBAAgB,mBAAmB,gCA+BlC"}
@@ -1,6 +0,0 @@
1
- interface ExpertAdviceSectionProps {
2
- advice: string;
3
- }
4
- export declare function ExpertAdviceSection({ advice }: ExpertAdviceSectionProps): import("react").JSX.Element;
5
- export {};
6
- //# sourceMappingURL=ExpertAdviceSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ExpertAdviceSection.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/ExpertAdviceSection.tsx"],"names":[],"mappings":"AAQA,UAAU,wBAAwB;IAChC,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,mBAAmB,CAAC,EAAE,MAAM,EAAE,EAAE,wBAAwB,+BA2BvE"}
@@ -1,6 +0,0 @@
1
- interface RiskScoreHeroProps {
2
- score: number;
3
- }
4
- export declare function RiskScoreHero({ score }: RiskScoreHeroProps): import("react").JSX.Element;
5
- export {};
6
- //# sourceMappingURL=RiskScoreHero.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RiskScoreHero.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/RiskScoreHero.tsx"],"names":[],"mappings":"AAYA,UAAU,kBAAkB;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf;AAkBD,wBAAgB,aAAa,CAAC,EAAE,KAAK,EAAE,EAAE,kBAAkB,+BA8C1D"}
@@ -1,7 +0,0 @@
1
- import { RiskSignal } from '../../types';
2
- interface RiskSignalsSectionProps {
3
- signals: RiskSignal[];
4
- }
5
- export declare function RiskSignalsSection({ signals }: RiskSignalsSectionProps): import("react").JSX.Element | null;
6
- export {};
7
- //# sourceMappingURL=RiskSignalsSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RiskSignalsSection.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/RiskSignalsSection.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,UAAU,uBAAuB;IAC/B,OAAO,EAAE,UAAU,EAAE,CAAC;CACvB;AAED,wBAAgB,kBAAkB,CAAC,EAAE,OAAO,EAAE,EAAE,uBAAuB,sCA2BtE"}
@@ -1,7 +0,0 @@
1
- import { RiskSignal } from '../../types';
2
- interface SafeIndicatorsSectionProps {
3
- indicators: RiskSignal[];
4
- }
5
- export declare function SafeIndicatorsSection({ indicators, }: SafeIndicatorsSectionProps): import("react").JSX.Element | null;
6
- export {};
7
- //# sourceMappingURL=SafeIndicatorsSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SafeIndicatorsSection.d.ts","sourceRoot":"","sources":["../../../src/components/DetailedResult/SafeIndicatorsSection.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,UAAU,0BAA0B;IAClC,UAAU,EAAE,UAAU,EAAE,CAAC;CAC1B;AAED,wBAAgB,qBAAqB,CAAC,EACpC,UAAU,GACX,EAAE,0BAA0B,sCA2B5B"}
@@ -1,8 +0,0 @@
1
- import { QuickSummary } from '../types';
2
- interface QuickResultTeaserProps {
3
- summary: QuickSummary;
4
- checkId: string;
5
- }
6
- export declare function QuickResultTeaser({ summary, checkId, }: QuickResultTeaserProps): import("react").JSX.Element;
7
- export {};
8
- //# sourceMappingURL=QuickResultTeaser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"QuickResultTeaser.d.ts","sourceRoot":"","sources":["../../src/components/QuickResultTeaser.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,UAAU,sBAAsB;IAC9B,OAAO,EAAE,YAAY,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,wBAAgB,iBAAiB,CAAC,EAChC,OAAO,EACP,OAAO,GACR,EAAE,sBAAsB,+BAuDxB"}
@@ -1,8 +0,0 @@
1
- import { RiskSignal } from '../types';
2
- interface RiskSignalCardProps {
3
- signal: RiskSignal;
4
- variant?: "error" | "warning" | "success";
5
- }
6
- export declare function RiskSignalCard({ signal, variant, }: RiskSignalCardProps): import("react").JSX.Element;
7
- export {};
8
- //# sourceMappingURL=RiskSignalCard.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RiskSignalCard.d.ts","sourceRoot":"","sources":["../../src/components/RiskSignalCard.tsx"],"names":[],"mappings":"AAWA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC,UAAU,mBAAmB;IAC3B,MAAM,EAAE,UAAU,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,CAAC;CAC3C;AAoBD,wBAAgB,cAAc,CAAC,EAC7B,MAAM,EACN,OAAiB,GAClB,EAAE,mBAAmB,+BA4BrB"}