@@ -34,6 +34,7 @@ import { NavigationMenuViewProps } from "./components/sqm-navigation-menu/sqm-na
3434import { NavigationSidebarViewProps } from "./components/sqm-navigation-sidebar/sqm-navigation-sidebar-view";
3535import { NavigationSidebarItemViewProps } from "./components/sqm-navigation-sidebar-item/sqm-navigation-sidebar-item-view";
3636import { UsePagination } from "./components/sqm-pagination/usePagination";
37+ import { PartnerInfoModalViewProps } from "./components/sqm-partner-info-modal/sqm-partner-info-modal-view";
3738import { PasswordFieldViewDemoProps } from "./components/sqm-password-field/usePasswordField";
3839import { PayoutButtonScrollViewProps } from "./components/sqm-payout-button-scroll/sqm-payout-button-scroll-view";
3940import { PayoutStatusAlertViewProps } from "./components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert-view";
@@ -2310,6 +2311,65 @@ export namespace Components {
23102311 */
23112312 "paginationText": string;
23122313 }
2314+ interface SqmPartnerInfoModal {
2315+ /**
2316+ * @uiName Confirm button label
2317+ */
2318+ "confirmButtonLabel": string;
2319+ /**
2320+ * @uiName Country label
2321+ */
2322+ "countryLabel": string;
2323+ /**
2324+ * @uiName Currency label
2325+ */
2326+ "currencyLabel": string;
2327+ /**
2328+ * @undocumented
2329+ * @uiType object
2330+ */
2331+ "demoData"?: DemoData<PartnerInfoModalViewProps>;
2332+ /**
2333+ * Description for existing partner confirmation
2334+ * @uiName Existing partner description
2335+ * @uiWidget textArea
2336+ */
2337+ "descriptionExistingPartner": string;
2338+ /**
2339+ * Description for new partner setup
2340+ * @uiName New partner description
2341+ * @uiWidget textArea
2342+ */
2343+ "descriptionNewPartner": string;
2344+ /**
2345+ * @uiName Missing fields error text
2346+ * @uiWidget textArea
2347+ */
2348+ "missingFieldsErrorText": string;
2349+ /**
2350+ * Header text when user has no existing partner
2351+ * @uiName New partner header
2352+ * @uiWidget textArea
2353+ */
2354+ "modalBrandHeader": string;
2355+ /**
2356+ * @uiName Network error text
2357+ * @uiWidget textArea
2358+ */
2359+ "networkErrorText": string;
2360+ /**
2361+ * @uiName Search country placeholder
2362+ */
2363+ "searchCountryPlaceholder": string;
2364+ /**
2365+ * @uiName Search currency placeholder
2366+ */
2367+ "searchCurrencyPlaceholder": string;
2368+ /**
2369+ * @uiName Submit button label
2370+ */
2371+ "submitButtonLabel": string;
2372+ }
23132373 interface SqmPasswordField {
23142374 /**
23152375 * @undocumented
@@ -7497,6 +7557,12 @@ declare global {
74977557 prototype: HTMLSqmPaginationElement;
74987558 new (): HTMLSqmPaginationElement;
74997559 };
7560+ interface HTMLSqmPartnerInfoModalElement extends Components.SqmPartnerInfoModal, HTMLStencilElement {
7561+ }
7562+ var HTMLSqmPartnerInfoModalElement: {
7563+ prototype: HTMLSqmPartnerInfoModalElement;
7564+ new (): HTMLSqmPartnerInfoModalElement;
7565+ };
75007566 interface HTMLSqmPasswordFieldElement extends Components.SqmPasswordField, HTMLStencilElement {
75017567 }
75027568 var HTMLSqmPasswordFieldElement: {
@@ -8021,6 +8087,7 @@ declare global {
80218087 "sqm-navigation-sidebar": HTMLSqmNavigationSidebarElement;
80228088 "sqm-navigation-sidebar-item": HTMLSqmNavigationSidebarItemElement;
80238089 "sqm-pagination": HTMLSqmPaginationElement;
8090+ "sqm-partner-info-modal": HTMLSqmPartnerInfoModalElement;
80248091 "sqm-password-field": HTMLSqmPasswordFieldElement;
80258092 "sqm-payout-button-scroll": HTMLSqmPayoutButtonScrollElement;
80268093 "sqm-payout-details-card": HTMLSqmPayoutDetailsCardElement;
@@ -10347,6 +10414,65 @@ declare namespace LocalJSX {
1034710414 */
1034810415 "paginationText"?: string;
1034910416 }
10417+ interface SqmPartnerInfoModal {
10418+ /**
10419+ * @uiName Confirm button label
10420+ */
10421+ "confirmButtonLabel"?: string;
10422+ /**
10423+ * @uiName Country label
10424+ */
10425+ "countryLabel"?: string;
10426+ /**
10427+ * @uiName Currency label
10428+ */
10429+ "currencyLabel"?: string;
10430+ /**
10431+ * @undocumented
10432+ * @uiType object
10433+ */
10434+ "demoData"?: DemoData<PartnerInfoModalViewProps>;
10435+ /**
10436+ * Description for existing partner confirmation
10437+ * @uiName Existing partner description
10438+ * @uiWidget textArea
10439+ */
10440+ "descriptionExistingPartner"?: string;
10441+ /**
10442+ * Description for new partner setup
10443+ * @uiName New partner description
10444+ * @uiWidget textArea
10445+ */
10446+ "descriptionNewPartner"?: string;
10447+ /**
10448+ * @uiName Missing fields error text
10449+ * @uiWidget textArea
10450+ */
10451+ "missingFieldsErrorText"?: string;
10452+ /**
10453+ * Header text when user has no existing partner
10454+ * @uiName New partner header
10455+ * @uiWidget textArea
10456+ */
10457+ "modalBrandHeader"?: string;
10458+ /**
10459+ * @uiName Network error text
10460+ * @uiWidget textArea
10461+ */
10462+ "networkErrorText"?: string;
10463+ /**
10464+ * @uiName Search country placeholder
10465+ */
10466+ "searchCountryPlaceholder"?: string;
10467+ /**
10468+ * @uiName Search currency placeholder
10469+ */
10470+ "searchCurrencyPlaceholder"?: string;
10471+ /**
10472+ * @uiName Submit button label
10473+ */
10474+ "submitButtonLabel"?: string;
10475+ }
1035010476 interface SqmPasswordField {
1035110477 /**
1035210478 * @undocumented
@@ -15263,6 +15389,7 @@ declare namespace LocalJSX {
1526315389 "sqm-navigation-sidebar": SqmNavigationSidebar;
1526415390 "sqm-navigation-sidebar-item": SqmNavigationSidebarItem;
1526515391 "sqm-pagination": SqmPagination;
15392+ "sqm-partner-info-modal": SqmPartnerInfoModal;
1526615393 "sqm-password-field": SqmPasswordField;
1526715394 "sqm-payout-button-scroll": SqmPayoutButtonScroll;
1526815395 "sqm-payout-details-card": SqmPayoutDetailsCard;
@@ -15397,6 +15524,7 @@ declare module "@stencil/core" {
1539715524 "sqm-navigation-sidebar": LocalJSX.SqmNavigationSidebar & JSXBase.HTMLAttributes<HTMLSqmNavigationSidebarElement>;
1539815525 "sqm-navigation-sidebar-item": LocalJSX.SqmNavigationSidebarItem & JSXBase.HTMLAttributes<HTMLSqmNavigationSidebarItemElement>;
1539915526 "sqm-pagination": LocalJSX.SqmPagination & JSXBase.HTMLAttributes<HTMLSqmPaginationElement>;
15527+ "sqm-partner-info-modal": LocalJSX.SqmPartnerInfoModal & JSXBase.HTMLAttributes<HTMLSqmPartnerInfoModalElement>;
1540015528 "sqm-password-field": LocalJSX.SqmPasswordField & JSXBase.HTMLAttributes<HTMLSqmPasswordFieldElement>;
1540115529 "sqm-payout-button-scroll": LocalJSX.SqmPayoutButtonScroll & JSXBase.HTMLAttributes<HTMLSqmPayoutButtonScrollElement>;
1540215530 "sqm-payout-details-card": LocalJSX.SqmPayoutDetailsCard & JSXBase.HTMLAttributes<HTMLSqmPayoutDetailsCardElement>;
0 commit comments