honeycombatomiclib 0.0.34 → 0.0.35
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/components/organisms/misc/BeeErrorComponent.d.ts +2 -2
- package/dist/components/organisms/misc/BeeErrorComponent.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ export type BeeErrorComponentProps = {
|
|
|
5
5
|
headline?: React.ReactNode | undefined;
|
|
6
6
|
content?: React.ReactNode | undefined;
|
|
7
7
|
btnText?: string | undefined;
|
|
8
|
-
/** Lottie animation JSON (e.g. from a .json file). When not provided, a placeholder is shown. */
|
|
9
8
|
animationData?: object | undefined;
|
|
9
|
+
iconClass?: string | undefined;
|
|
10
10
|
onClick?: () => void;
|
|
11
11
|
};
|
|
12
|
-
export default function BeeErrorComponent({ headline, content, btnText, animationData, onClick, }: BeeErrorComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default function BeeErrorComponent({ headline, content, btnText, animationData, iconClass, onClick, }: BeeErrorComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
//# sourceMappingURL=BeeErrorComponent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BeeErrorComponent.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/misc/BeeErrorComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"BeeErrorComponent.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/misc/BeeErrorComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,oCAAoC,CAAC;AAC5C,OAAO,0BAA0B,CAAC;AAElC,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;IACvC,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;IACtC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,QAAQ,EACR,OAAO,EACP,OAAO,EACP,aAAyB,EACzB,SAA4B,EAC5B,OAAO,GACR,EAAE,sBAAsB,2CAmCxB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1624,11 +1624,11 @@ type BeeErrorComponentProps = {
|
|
|
1624
1624
|
headline?: React.ReactNode | undefined;
|
|
1625
1625
|
content?: React.ReactNode | undefined;
|
|
1626
1626
|
btnText?: string | undefined;
|
|
1627
|
-
/** Lottie animation JSON (e.g. from a .json file). When not provided, a placeholder is shown. */
|
|
1628
1627
|
animationData?: object | undefined;
|
|
1628
|
+
iconClass?: string | undefined;
|
|
1629
1629
|
onClick?: () => void;
|
|
1630
1630
|
};
|
|
1631
|
-
declare function BeeErrorComponent({ headline, content, btnText, animationData, onClick, }: BeeErrorComponentProps): react_jsx_runtime.JSX.Element;
|
|
1631
|
+
declare function BeeErrorComponent({ headline, content, btnText, animationData, iconClass, onClick, }: BeeErrorComponentProps): react_jsx_runtime.JSX.Element;
|
|
1632
1632
|
|
|
1633
1633
|
type BeeError404PageProps = {
|
|
1634
1634
|
className?: string | undefined;
|