@spscommerce/ds-web-components 8.33.9 → 8.34.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.
@@ -103,9 +103,7 @@ export declare class SpsFileUploadComponent extends HTMLElement {
103
103
  dismiss(): void;
104
104
  /** If the `dismissable` prop has been set, this will programmatically show the component. */
105
105
  show(): void;
106
- render({ t }: {
107
- t: any;
108
- }): JSX.Element;
106
+ render(): JSX.Element;
109
107
  private parseAndValidateMaxSize;
110
108
  private processAcceptExtensions;
111
109
  private selectFiles;
@@ -34,7 +34,5 @@ export declare class SpsInsightCardComponent extends HTMLElement {
34
34
  private content;
35
35
  private detail;
36
36
  get [ClassBindings](): string[];
37
- render({ t }: {
38
- t: any;
39
- }): JSX.Element;
37
+ render(): JSX.Element;
40
38
  }
@@ -1,4 +1,3 @@
1
- import type { I18nObject } from "@spscommerce/ds-shared";
2
1
  import type { ComponentConfig } from "../utils/index";
3
2
  export declare const AttrBindings: unique symbol;
4
3
  export declare const ClassBindings: unique symbol;
@@ -22,7 +21,7 @@ interface DSElementExtension {
22
21
  connectedCallback: () => any;
23
22
  disconnectedCallback: () => any;
24
23
  contentChangedCallback?: () => any;
25
- render?: (i18n: I18nObject) => any;
24
+ render?: () => any;
26
25
  }
27
26
  export type DSComponent = HTMLElement & DSElementExtension;
28
27
  /**
@@ -3,4 +3,3 @@ export * from "./components/index";
3
3
  export * from "./decorators/index";
4
4
  export * from "./utils/register";
5
5
  export { h } from "./utils/pragma";
6
- export { webComponentsUseI18n } from "./utils/i18n";