@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/index.d.ts CHANGED
@@ -147,5 +147,18 @@ declare class LinecheckBasicPropConfig {
147
147
  static create: (p_config: LinecheckBasicPropConfigSchema) => void;
148
148
  }
149
149
 
150
- export { ButtonGroup, ImageComponent, ImageWithText, ImageWithTextWrapper, InternetAndTvCardsBenefits, LineCheckV2, LinecheckBasicPropConfig, RibbonComponent, StageTeaserComponent, StageTeaserV3, TextComponent };
151
- export type { LinecheckBasicPropConfigSchema };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunrise-upc/sales-static-components",
3
- "version": "3.3.0",
3
+ "version": "3.4.1-beta.0",
4
4
  "description": "Static Reusable Components Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",