@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.
- package/dist/lib/components/file-upload/file-upload.d.ts +1 -3
- package/dist/lib/components/insight-card/insight-card.d.ts +1 -3
- package/dist/lib/decorators/component.d.ts +1 -2
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/index.js +352 -359
- package/dist/lib/index.umd.cjs +17 -17
- package/dist/lib/utils/index.d.ts +0 -1
- package/dist/package.json +3 -1
- package/lib/components/file-upload/file-upload.d.ts +1 -3
- package/lib/components/insight-card/insight-card.d.ts +1 -3
- package/lib/decorators/component.d.ts +1 -2
- package/lib/index.d.ts +0 -1
- package/lib/index.js +352 -359
- package/lib/index.umd.cjs +17 -17
- package/lib/utils/index.d.ts +0 -1
- package/package.json +6 -4
- package/dist/lib/utils/i18n.d.ts +0 -3
- package/lib/utils/i18n.d.ts +0 -3
|
@@ -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(
|
|
107
|
-
t: any;
|
|
108
|
-
}): JSX.Element;
|
|
106
|
+
render(): JSX.Element;
|
|
109
107
|
private parseAndValidateMaxSize;
|
|
110
108
|
private processAcceptExtensions;
|
|
111
109
|
private selectFiles;
|
|
@@ -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?: (
|
|
24
|
+
render?: () => any;
|
|
26
25
|
}
|
|
27
26
|
export type DSComponent = HTMLElement & DSElementExtension;
|
|
28
27
|
/**
|
package/dist/lib/index.d.ts
CHANGED