honeycombatomiclib 0.0.47 → 0.0.49

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.
Files changed (60) hide show
  1. package/dist/components/atoms/buttons/BeeSelectButton.d.ts +2 -9
  2. package/dist/components/atoms/buttons/BeeSelectButton.d.ts.map +1 -1
  3. package/dist/components/atoms/misc/BeeImage.d.ts +2 -14
  4. package/dist/components/atoms/misc/BeeImage.d.ts.map +1 -1
  5. package/dist/components/atoms/select/BeeChipDropdown.d.ts +2 -9
  6. package/dist/components/atoms/select/BeeChipDropdown.d.ts.map +1 -1
  7. package/dist/components/atoms/select/BeeDropDown.d.ts +2 -9
  8. package/dist/components/atoms/select/BeeDropDown.d.ts.map +1 -1
  9. package/dist/components/molecules/misc/BeeChatMessage.d.ts +2 -46
  10. package/dist/components/molecules/misc/BeeChatMessage.d.ts.map +1 -1
  11. package/dist/components/molecules/misc/BeeFilterDropDown.d.ts +2 -9
  12. package/dist/components/molecules/misc/BeeFilterDropDown.d.ts.map +1 -1
  13. package/dist/components/organisms/blocks/BeeNutzungsartMix.d.ts +8 -8
  14. package/dist/components/organisms/blocks/BeeNutzungsartMix.d.ts.map +1 -1
  15. package/dist/components/organisms/forms/BeeAddressForm.d.ts +2 -9
  16. package/dist/components/organisms/forms/BeeAddressForm.d.ts.map +1 -1
  17. package/dist/components/organisms/misc/BeeImageCard.d.ts +2 -10
  18. package/dist/components/organisms/misc/BeeImageCard.d.ts.map +1 -1
  19. package/dist/index.css +21864 -2
  20. package/dist/index.css.map +1 -0
  21. package/dist/index.d.ts +56 -75
  22. package/dist/index.js +5 -5
  23. package/dist/index.js.map +1 -1
  24. package/dist/index.mjs +5 -5
  25. package/dist/index.mjs.map +1 -1
  26. package/dist/node_modules/react-id-generator/lib/index.d.ts +7 -0
  27. package/dist/node_modules/react-id-generator/lib/index.d.ts.map +1 -0
  28. package/dist/src/components/atoms/buttons/BeeButton.d.ts +24 -0
  29. package/dist/src/components/atoms/buttons/BeeButton.d.ts.map +1 -0
  30. package/dist/src/components/atoms/buttons/index.d.ts +2 -0
  31. package/dist/src/components/atoms/buttons/index.d.ts.map +1 -0
  32. package/dist/src/components/atoms/index.d.ts +2 -0
  33. package/dist/src/components/atoms/index.d.ts.map +1 -0
  34. package/dist/src/components/index.d.ts +2 -0
  35. package/dist/src/components/index.d.ts.map +1 -0
  36. package/dist/src/index.d.ts +3 -0
  37. package/dist/src/index.d.ts.map +1 -0
  38. package/dist/stories/Button.d.ts +16 -0
  39. package/dist/stories/Button.d.ts.map +1 -0
  40. package/dist/stories/Button.stories.d.ts +9 -0
  41. package/dist/stories/Button.stories.d.ts.map +1 -0
  42. package/dist/stories/Header.d.ts +13 -0
  43. package/dist/stories/Header.d.ts.map +1 -0
  44. package/dist/stories/Header.stories.d.ts +7 -0
  45. package/dist/stories/Header.stories.d.ts.map +1 -0
  46. package/dist/stories/Page.d.ts +4 -0
  47. package/dist/stories/Page.d.ts.map +1 -0
  48. package/dist/stories/Page.stories.d.ts +7 -0
  49. package/dist/stories/Page.stories.d.ts.map +1 -0
  50. package/dist/types/beeChatMessage.types.d.ts +51 -0
  51. package/dist/types/beeChatMessage.types.d.ts.map +1 -0
  52. package/package.json +1 -1
  53. package/dist/components/atoms/input/InputNumberSpinFocusOut.test.d.ts +0 -2
  54. package/dist/components/atoms/input/InputNumberSpinFocusOut.test.d.ts.map +0 -1
  55. package/dist/components/atoms/input/inputNumberSpinFocusOut.d.ts +0 -12
  56. package/dist/components/atoms/input/inputNumberSpinFocusOut.d.ts.map +0 -1
  57. package/dist/components/organisms/blocks/BeeContractPartnerCard.d.ts +0 -42
  58. package/dist/components/organisms/blocks/BeeContractPartnerCard.d.ts.map +0 -1
  59. package/dist/test/setupTests.d.ts +0 -2
  60. package/dist/test/setupTests.d.ts.map +0 -1
@@ -0,0 +1,7 @@
1
+ export const __esModule: boolean;
2
+ export default nextId;
3
+ declare function nextId(localPrefix: any): string;
4
+ export function resetId(): void;
5
+ export function setPrefix(newPrefix: any): void;
6
+ export function useId(...args: any[]): any;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../node_modules/react-id-generator/lib/index.js"],"names":[],"mappings":";;AAYA,kDAGC;AACD,gCAEC;AACD,gDAEC;AAoBD,2CAYC"}
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ import "primeicons/primeicons.css";
3
+ import "./BeeButton.scss";
4
+ type BeeButtonProps = {
5
+ /** A unique identifier for the button. */
6
+ id?: string;
7
+ /** Additional CSS class names to apply to the button. */
8
+ className?: string;
9
+ /** The text displayed on the button. */
10
+ label: string;
11
+ /** Disables the button if set to `true`. */
12
+ disabled?: boolean;
13
+ /** Specifies the type of button. */
14
+ type: "primary" | "secondary" | "danger" | "light";
15
+ /** Displays a loading indicator if set to `true`. */
16
+ tooltip?: string;
17
+ isLoading?: boolean;
18
+ /** Callback function invoked when the button is clicked. */
19
+ onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
20
+ };
21
+ /**A customizable button component for use in web applications.*/
22
+ export declare function BeeButton({ id, className, label, disabled, type, tooltip, isLoading, onClick }: BeeButtonProps): import("react/jsx-runtime").JSX.Element;
23
+ export default BeeButton;
24
+ //# sourceMappingURL=BeeButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BeeButton.d.ts","sourceRoot":"","sources":["../../../../../src/components/atoms/buttons/BeeButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,2BAA2B,CAAC;AAEnC,OAAO,kBAAkB,CAAC;AAE1B,KAAK,cAAc,GAAG;IACpB,0CAA0C;IAC1C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,yDAAyD;IACzD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wCAAwC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oCAAoC;IACpC,IAAI,EAAE,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,OAAO,CAAC;IACnD,qDAAqD;IACrD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,4DAA4D;IAC5D,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,EAAE,UAAU,CAAC,KAAK,IAAI,CAAC;CACxE,CAAC;AAEF,iEAAiE;AACjE,wBAAgB,SAAS,CAAC,EAAE,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE,cAAc,2CAsC9G;AAED,eAAe,SAAS,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { default as BeeButton } from "./BeeButton";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/atoms/buttons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./buttons";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./atoms";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ import "./aa_style/generaltheme.css";
2
+ export * from "./components";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,6BAA6B,CAAC;AAErC,cAAc,cAAc,CAAC"}
@@ -0,0 +1,16 @@
1
+ import './button.css';
2
+ export interface ButtonProps {
3
+ /** Is this the principal call to action on the page? */
4
+ primary?: boolean;
5
+ /** What background color to use */
6
+ backgroundColor?: string;
7
+ /** How large should the button be? */
8
+ size?: 'small' | 'medium' | 'large';
9
+ /** Button contents */
10
+ label: string;
11
+ /** Optional click handler */
12
+ onClick?: () => void;
13
+ }
14
+ /** Primary UI component for user interaction */
15
+ export declare const Button: ({ primary, size, backgroundColor, label, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
16
+ //# sourceMappingURL=Button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/stories/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,cAAc,CAAC;AAEtB,MAAM,WAAW,WAAW;IAC1B,wDAAwD;IACxD,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,mCAAmC;IACnC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,sBAAsB;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,6BAA6B;IAC7B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,gDAAgD;AAChD,eAAO,MAAM,MAAM,GAAI,qDAMpB,WAAW,4CAYb,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { StoryObj } from "@storybook/react-webpack5";
2
+ declare const meta: Meta<({ primary, size, backgroundColor, label, ...props }: import("./Button").ButtonProps) => import("react/jsx-runtime").JSX.Element>;
3
+ export default meta;
4
+ type Story = StoryObj<typeof meta>;
5
+ export declare const Primary: Story;
6
+ export declare const Secondary: Story;
7
+ export declare const Large: Story;
8
+ export declare const Small: Story;
9
+ //# sourceMappingURL=Button.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Button.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAOhE,QAAA,MAAM,IAAI,wIAeqB,CAAC;AAEhC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAGnC,eAAO,MAAM,OAAO,EAAE,KAKrB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAIvB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAKnB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import './header.css';
2
+ type User = {
3
+ name: string;
4
+ };
5
+ export interface HeaderProps {
6
+ user?: User;
7
+ onLogin?: () => void;
8
+ onLogout?: () => void;
9
+ onCreateAccount?: () => void;
10
+ }
11
+ export declare const Header: ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
12
+ export {};
13
+ //# sourceMappingURL=Header.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../src/stories/Header.tsx"],"names":[],"mappings":"AACA,OAAO,cAAc,CAAC;AAEtB,KAAK,IAAI,GAAG;IACV,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B;AAED,eAAO,MAAM,MAAM,GAAI,8CAA8C,WAAW,4CAuC/E,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { StoryObj } from '@storybook/react-webpack5';
2
+ declare const meta: Meta<({ user, onLogin, onLogout, onCreateAccount }: import("./Header").HeaderProps) => import("react/jsx-runtime").JSX.Element>;
3
+ export default meta;
4
+ type Story = StoryObj<typeof meta>;
5
+ export declare const LoggedIn: Story;
6
+ export declare const LoggedOut: Story;
7
+ //# sourceMappingURL=Header.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Header.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Header.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAMhE,QAAA,MAAM,IAAI,iIAcqB,CAAC;AAEhC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,QAAQ,EAAE,KAMtB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAAU,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import './page.css';
3
+ export declare const Page: React.FC;
4
+ //# sourceMappingURL=Page.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../src/stories/Page.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,YAAY,CAAC;AAMpB,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EA+DxB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { StoryObj } from '@storybook/react-webpack5';
2
+ declare const meta: Meta<import("react").FC<{}>>;
3
+ export default meta;
4
+ type Story = StoryObj<typeof meta>;
5
+ export declare const LoggedOut: Story;
6
+ export declare const LoggedIn: Story;
7
+ //# sourceMappingURL=Page.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Page.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Page.stories.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAMhE,QAAA,MAAM,IAAI,8BAOmB,CAAC;AAE9B,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,SAAS,EAAE,KAAU,CAAC;AAGnC,eAAO,MAAM,QAAQ,EAAE,KAWtB,CAAC"}
@@ -0,0 +1,51 @@
1
+ /**
2
+ * Chat message domain types for BeeChatMessage (excludes the component props type, which stays on the component).
3
+ * Kept as .ts (not .d.ts) so enums emit runtime values.
4
+ */
5
+ export declare enum ChatMessageSourceEnum {
6
+ LC = "LC",
7
+ AUDIT = "AUDIT"
8
+ }
9
+ export declare enum ChatParticipantTypeEnum {
10
+ ADMIN = "ADMIN",
11
+ USER = "USER",
12
+ SYSTEM = "SYSTEM"
13
+ }
14
+ export type ChatMessageMediaDocument = {
15
+ filename?: string;
16
+ fileSize?: number;
17
+ };
18
+ export type ChatMessageMediaImage = {
19
+ filename?: string;
20
+ fileSize?: number;
21
+ };
22
+ export type ChatMessageMediaEntry = {
23
+ document?: ChatMessageMediaDocument;
24
+ image?: ChatMessageMediaImage;
25
+ };
26
+ export type ChatMessageDTO = {
27
+ id?: string;
28
+ mediaId?: string;
29
+ message?: string;
30
+ createdAt?: string;
31
+ deletedAt?: string;
32
+ deletedBy?: string;
33
+ type?: ChatParticipantTypeEnum;
34
+ chatRoomId?: string;
35
+ participantId?: string;
36
+ source?: ChatMessageSourceEnum;
37
+ };
38
+ export type ChatParticipantDTO = {
39
+ id?: string;
40
+ userId?: string;
41
+ organisationId?: string;
42
+ type?: ChatParticipantTypeEnum;
43
+ name?: string;
44
+ lastSeenMessageId?: string;
45
+ lastActivity?: string;
46
+ muteChat?: boolean;
47
+ deletedAt?: string;
48
+ deletedBy?: string;
49
+ chatRoomId?: string;
50
+ };
51
+ //# sourceMappingURL=beeChatMessage.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"beeChatMessage.types.d.ts","sourceRoot":"","sources":["../../src/types/beeChatMessage.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,oBAAY,qBAAqB;IAC/B,EAAE,OAAO;IACT,KAAK,UAAU;CAChB;AAED,oBAAY,uBAAuB;IACjC,KAAK,UAAU;IACf,IAAI,SAAS;IACb,MAAM,WAAW;CAClB;AAED,MAAM,MAAM,wBAAwB,GAAG;IACrC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,CAAC,EAAE,wBAAwB,CAAC;IACpC,KAAK,CAAC,EAAE,qBAAqB,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,uBAAuB,CAAC;IAC/B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,qBAAqB,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,IAAI,CAAC,EAAE,uBAAuB,CAAC;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "honeycombatomiclib",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "description": "This is an atomic component library used by beestate.io",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=InputNumberSpinFocusOut.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"InputNumberSpinFocusOut.test.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/input/InputNumberSpinFocusOut.test.tsx"],"names":[],"mappings":""}
@@ -1,12 +0,0 @@
1
- import type React from "react";
2
- import type { InputNumberValueChangeEvent } from "primereact/inputnumber";
3
- type FocusOutHandler = ((event: React.FocusEvent<HTMLInputElement>) => void) | undefined;
4
- type EmitSpinFocusOutParams = {
5
- event: InputNumberValueChangeEvent;
6
- disabled?: boolean | undefined;
7
- emitFocusOutOnSpin?: boolean | undefined;
8
- onFocusOut: FocusOutHandler;
9
- };
10
- export declare function emitFocusOutOnInputNumberSpin({ event, disabled, emitFocusOutOnSpin, onFocusOut, }: EmitSpinFocusOutParams): void;
11
- export {};
12
- //# sourceMappingURL=inputNumberSpinFocusOut.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"inputNumberSpinFocusOut.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/input/inputNumberSpinFocusOut.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC;AAE1E,KAAK,eAAe,GAAG,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;AAEzF,KAAK,sBAAsB,GAAG;IAC5B,KAAK,EAAE,2BAA2B,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,kBAAkB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACzC,UAAU,EAAE,eAAe,CAAC;CAC7B,CAAC;AAsEF,wBAAgB,6BAA6B,CAAC,EAC5C,KAAK,EACL,QAAQ,EACR,kBAAyB,EACzB,UAAU,GACX,EAAE,sBAAsB,GAAG,IAAI,CAgB/B"}
@@ -1,42 +0,0 @@
1
- import React from "react";
2
- import { type BeePriceAdaptionStep } from "./BeePriceAdaptionStepTimeline";
3
- import "../../../aa_style/generaltheme.css";
4
- import "./BeeContractPartnerCard.scss";
5
- import type { ChartConfiguration, ChartConfigurationCustomTypesPerDataset, DefaultDataPoint } from "chart.js";
6
- export type BeeContractPartnerCardAvatar = {
7
- imageUrl?: string;
8
- imageKey?: string;
9
- imageAlt?: string;
10
- isImageSecured?: boolean;
11
- showPlaceholder?: boolean;
12
- placeholderFirstname?: string;
13
- placeholderLastname?: string;
14
- };
15
- export type BeeContractPartnerCardProps = {
16
- id?: string;
17
- className?: string;
18
- organisationName: string;
19
- avatar?: BeeContractPartnerCardAvatar;
20
- latestTotalVolume?: number | null;
21
- contractCount?: number | null;
22
- lastPriceUpdate?: Date | null;
23
- showPricePercentageDefault?: boolean;
24
- timelineSteps?: BeePriceAdaptionStep[];
25
- timelineIsLoading?: boolean;
26
- timeline?: React.ReactNode;
27
- noTimelineMessage?: React.ReactNode;
28
- showBeestateCredit?: boolean;
29
- beestateCreditLabel?: React.ReactNode;
30
- beestateCreditIconClassName?: string;
31
- chartTitle?: React.ReactNode;
32
- totalVolumeLabel?: string;
33
- contractCountLabel?: string;
34
- lastPriceUpdateLabel?: string;
35
- disabled?: boolean;
36
- chartOptions?: ChartConfiguration<"doughnut", DefaultDataPoint<"doughnut">, unknown> | ChartConfigurationCustomTypesPerDataset<"doughnut", DefaultDataPoint<"doughnut">, unknown>;
37
- chartLegend?: React.ReactNode;
38
- onClick?: () => void;
39
- };
40
- export declare function BeeContractPartnerCard({ id, className, organisationName, avatar, latestTotalVolume, contractCount, lastPriceUpdate, showPricePercentageDefault, timelineSteps, timelineIsLoading, timeline, noTimelineMessage, showBeestateCredit, beestateCreditLabel, beestateCreditIconClassName, chartTitle, totalVolumeLabel, contractCountLabel, lastPriceUpdateLabel, disabled, chartOptions, chartLegend, onClick, }: BeeContractPartnerCardProps): import("react/jsx-runtime").JSX.Element;
41
- export default BeeContractPartnerCard;
42
- //# sourceMappingURL=BeeContractPartnerCard.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"BeeContractPartnerCard.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/blocks/BeeContractPartnerCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAaxC,OAAqC,EAAE,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEzG,OAAO,oCAAoC,CAAC;AAC5C,OAAO,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,kBAAkB,EAAE,uCAAuC,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE9G,MAAM,MAAM,4BAA4B,GAAG;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG;IACxC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,MAAM,CAAC,EAAE,4BAA4B,CAAC;IACtC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,eAAe,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC9B,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,aAAa,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACvC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,mBAAmB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACtC,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EACT,kBAAkB,CAAC,UAAU,EAAE,gBAAgB,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC,GACrE,uCAAuC,CAAC,UAAU,EAAE,gBAAgB,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC,CAAC;IAC/F,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,wBAAgB,sBAAsB,CAAC,EACrC,EAAE,EACF,SAAS,EACT,gBAAgB,EAChB,MAAM,EACN,iBAAiB,EACjB,aAAa,EACb,eAAe,EACf,0BAAkC,EAClC,aAAa,EACb,iBAAiB,EACjB,QAAQ,EACR,iBAAqD,EACrD,kBAAyB,EACzB,mBAAmC,EACnC,2BAA4G,EAC5G,UAAmC,EACnC,gBAA4C,EAC5C,kBAA4C,EAC5C,oBAAoD,EACpD,QAAQ,EACR,YAAY,EACZ,WAAW,EACX,OAAO,GACR,EAAE,2BAA2B,2CA2H7B;AAED,eAAe,sBAAsB,CAAC"}
@@ -1,2 +0,0 @@
1
- import "@testing-library/jest-dom/vitest";
2
- //# sourceMappingURL=setupTests.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"setupTests.d.ts","sourceRoot":"","sources":["../../src/test/setupTests.ts"],"names":[],"mappings":"AAAA,OAAO,kCAAkC,CAAC"}