gotrip-fx-transaction-form 1.0.253-dev → 1.0.254-dev

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.253-dev",
3
+ "version": "1.0.254-dev",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -0,0 +1 @@
1
+ export declare const HomePage: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,16 @@
1
+ export type AgencyHomeCard = {
2
+ key: string;
3
+ title: string;
4
+ description: string;
5
+ actionLabel: string;
6
+ path?: string;
7
+ disabled?: boolean;
8
+ iconUrl?: string;
9
+ };
10
+ export type AgencyHomeSection = {
11
+ key: string;
12
+ title: string;
13
+ cards: AgencyHomeCard[];
14
+ };
15
+ export declare const TEMP_PRODUCT_IMAGE = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='160' viewBox='0 0 280 160'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23edf2ff'/%3E%3Cstop offset='100%25' stop-color='%23dbeafe'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='280' height='160' rx='18' fill='url(%23g)'/%3E%3Crect x='36' y='38' width='120' height='84' rx='14' fill='%23ffffff' stroke='%239bb4ff' stroke-width='3'/%3E%3Ccircle cx='206' cy='54' r='24' fill='%23bfdbfe'/%3E%3Ccircle cx='230' cy='82' r='20' fill='%2393c5fd'/%3E%3Cpath d='M68 82h56M68 98h70' stroke='%233b82f6' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E";
16
+ export declare const AGENCY_HOME_SECTIONS: AgencyHomeSection[];