@opendoor/partner-sdk-client-react 1.0.7-beta.58.1 → 1.0.7-beta.60.1
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/dist/client-react/src/components/DtcOnboardingFlow/DtcPage.d.ts.map +1 -1
- package/dist/client-react/src/components/DtcOnboardingFlow/assets/imageManifest.d.ts +11 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/assets/imageManifest.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/CheckboxCardInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/CheckboxCardInput.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/CurrencyInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/CurrencyInput.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/ImageCardInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/ImageCardInput.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/PhoneInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/PhoneInput.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/SearchableDropdownInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/SearchableDropdownInput.d.ts.map +1 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/ToggleInput.d.ts +9 -0
- package/dist/client-react/src/components/DtcOnboardingFlow/inputs/ToggleInput.d.ts.map +1 -0
- package/dist/index.js +1976 -1612
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DtcPage.d.ts","sourceRoot":"","sources":["../../../../../src/components/DtcOnboardingFlow/DtcPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DtcPage.d.ts","sourceRoot":"","sources":["../../../../../src/components/DtcOnboardingFlow/DtcPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAkDjD,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAuB3B,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Image manifest — maps imageId strings from the engine's flow definitions
|
|
3
|
+
* to imgix-hosted CDN URLs for seller-score condition photos.
|
|
4
|
+
*
|
|
5
|
+
* These are the same images used on opendoor.com's DTC flow (reception-fe).
|
|
6
|
+
* Source: code/js/packages/reception-fe/src/helpers/flows/pages/roomCondition.ts
|
|
7
|
+
*
|
|
8
|
+
* Served via imgix with automatic format optimization, compression, and retina support.
|
|
9
|
+
*/
|
|
10
|
+
export declare const IMAGE_MANIFEST: Record<string, string>;
|
|
11
|
+
//# sourceMappingURL=imageManifest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"imageManifest.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/assets/imageManifest.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AASH,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA4BjD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface CheckboxCardInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const CheckboxCardInput: React.FC<CheckboxCardInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=CheckboxCardInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxCardInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/CheckboxCardInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAIlG,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CA2E9D,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface CurrencyInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const CurrencyInput: React.FC<CurrencyInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=CurrencyInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CurrencyInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/CurrencyInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAIlG,UAAU,kBAAkB;IAC1B,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAoCtD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface ImageCardInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const ImageCardInput: React.FC<ImageCardInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=ImageCardInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImageCardInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/ImageCardInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAC9D,OAAO,KAAK,EACV,cAAc,EAEf,MAAM,6DAA6D,CAAC;AAKrE,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgExD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface PhoneInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const PhoneInput: React.FC<PhoneInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=PhoneInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PhoneInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/PhoneInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAIlG,UAAU,eAAe;IACvB,QAAQ,EAAE,cAAc,CAAC;CAC1B;AASD,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA2BhD,CAAC"}
|
package/dist/client-react/src/components/DtcOnboardingFlow/inputs/SearchableDropdownInput.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface SearchableDropdownInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const SearchableDropdownInput: React.FC<SearchableDropdownInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=SearchableDropdownInput.d.ts.map
|
package/dist/client-react/src/components/DtcOnboardingFlow/inputs/SearchableDropdownInput.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchableDropdownInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/SearchableDropdownInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAMN,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAKlG,UAAU,4BAA4B;IACpC,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAOD,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAC5C,4BAA4B,CAyN7B,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuestionConfig } from '../../../../../client-js-core/src/internal/questionnaire/index.ts';
|
|
3
|
+
|
|
4
|
+
interface ToggleInputProps {
|
|
5
|
+
question: QuestionConfig;
|
|
6
|
+
}
|
|
7
|
+
export declare const ToggleInput: React.FC<ToggleInputProps>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=ToggleInput.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToggleInput.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DtcOnboardingFlow/inputs/ToggleInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAIlG,UAAU,gBAAgB;IACxB,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAiBlD,CAAC"}
|