@sunrise-upc/sales-static-components 3.3.0 → 3.4.1-beta.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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +15 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,5 +147,18 @@ declare class LinecheckBasicPropConfig {
|
|
|
147
147
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
interface CustomerPropConfigSchema {
|
|
151
|
+
baseURL: string | '';
|
|
152
|
+
}
|
|
153
|
+
declare class CustomerPropConfig {
|
|
154
|
+
private static instance;
|
|
155
|
+
config: CustomerPropConfigSchema;
|
|
156
|
+
private constructor();
|
|
157
|
+
getConfig: () => CustomerPropConfigSchema;
|
|
158
|
+
getBaseUrl: () => string;
|
|
159
|
+
static getInstance: () => CustomerPropConfig;
|
|
160
|
+
static create: (p_config: CustomerPropConfigSchema) => void;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export { ButtonGroup, CustomerPropConfig, ImageComponent, ImageWithText, ImageWithTextWrapper, InternetAndTvCardsBenefits, LineCheckV2, LinecheckBasicPropConfig, RibbonComponent, StageTeaserComponent, StageTeaserV3, TextComponent };
|
|
164
|
+
export type { CustomerPropConfigSchema, LinecheckBasicPropConfigSchema };
|