@sunrise-upc/mobile-prod-card 1.2.4-beta.12 → 1.2.4-beta.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/LineCheckV3/APIResourceConstants.d.ts +8 -0
- package/dist/cjs/components/LineCheckV3/LineCheckV3.d.ts +4 -0
- package/dist/cjs/components/LineCheckV3/LinecheckService.d.ts +9 -0
- package/dist/cjs/components/LineCheckV3/api-constants.d.ts +1 -0
- package/dist/cjs/index.js +8 -1
- package/dist/cjs/services/LinecheckBasicPropConfig.d.ts +12 -0
- package/dist/cjs/services/index.d.ts +1 -0
- package/dist/esm/components/LineCheckV3/APIResourceConstants.d.ts +8 -0
- package/dist/esm/components/LineCheckV3/LineCheckV3.d.ts +4 -0
- package/dist/esm/components/LineCheckV3/LinecheckService.d.ts +9 -0
- package/dist/esm/components/LineCheckV3/api-constants.d.ts +1 -0
- package/dist/esm/index.js +8 -1
- package/dist/esm/services/LinecheckBasicPropConfig.d.ts +12 -0
- package/dist/esm/services/index.d.ts +1 -0
- package/dist/index.d.ts +14 -1
- package/package.json +1 -1
@@ -0,0 +1,12 @@
|
|
1
|
+
export interface LinecheckBasicPropConfigSchema {
|
2
|
+
baseURL: string | '';
|
3
|
+
}
|
4
|
+
export declare class LinecheckBasicPropConfig {
|
5
|
+
private static instance;
|
6
|
+
config: LinecheckBasicPropConfigSchema;
|
7
|
+
private constructor();
|
8
|
+
getConfig: () => LinecheckBasicPropConfigSchema;
|
9
|
+
getBaseUrl: () => string;
|
10
|
+
static getInstance: () => LinecheckBasicPropConfig;
|
11
|
+
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
12
|
+
}
|
package/dist/index.d.ts
CHANGED
@@ -207,4 +207,17 @@ declare class ProductTeaserPropConfig {
|
|
207
207
|
static create: (p_config: ProductTeaserPropConfigSchema) => void;
|
208
208
|
}
|
209
209
|
|
210
|
-
|
210
|
+
interface LinecheckBasicPropConfigSchema {
|
211
|
+
baseURL: string | '';
|
212
|
+
}
|
213
|
+
declare class LinecheckBasicPropConfig {
|
214
|
+
private static instance;
|
215
|
+
config: LinecheckBasicPropConfigSchema;
|
216
|
+
private constructor();
|
217
|
+
getConfig: () => LinecheckBasicPropConfigSchema;
|
218
|
+
getBaseUrl: () => string;
|
219
|
+
static getInstance: () => LinecheckBasicPropConfig;
|
220
|
+
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
221
|
+
}
|
222
|
+
|
223
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
package/package.json
CHANGED