honeycombatomiclib 0.0.48 → 0.0.50
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/blocks/BeeNutzungsartMix.d.ts +8 -8
- package/dist/components/organisms/blocks/BeeNutzungsartMix.d.ts.map +1 -1
- package/dist/index.d.ts +8 -7
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import type { SliderSlideEndEvent } from "primereact/slider";
|
|
2
1
|
import "../../../aa_style/generaltheme.css";
|
|
3
2
|
import "./BeeNutzungsartMix.scss";
|
|
3
|
+
export type NutzungsartSection = {
|
|
4
|
+
id: string;
|
|
5
|
+
label: string;
|
|
6
|
+
value: number;
|
|
7
|
+
};
|
|
4
8
|
type BeeNutzungsartMixProps = {
|
|
5
9
|
id?: string | undefined;
|
|
6
10
|
className?: string | undefined;
|
|
7
11
|
label?: string | undefined;
|
|
8
12
|
forceRerenderToggle?: boolean | undefined;
|
|
9
|
-
|
|
10
|
-
aRetail: number;
|
|
11
|
-
aWohnen: number;
|
|
12
|
-
aLogistik: number;
|
|
13
|
-
aSonstige: number;
|
|
13
|
+
sections: NutzungsartSection[];
|
|
14
14
|
type?: "primary" | "secondary" | undefined;
|
|
15
15
|
formstate?: "valid" | "error" | "neutral" | "none" | undefined;
|
|
16
16
|
statusLabel?: string | undefined;
|
|
17
17
|
disabled?: boolean | undefined;
|
|
18
18
|
readOnly?: boolean | undefined;
|
|
19
19
|
required?: boolean | undefined;
|
|
20
|
-
onChange?: (
|
|
20
|
+
onChange?: (sections: NutzungsartSection[]) => void;
|
|
21
21
|
};
|
|
22
|
-
export declare function BeeNutzungsartMix({ id, className, label, disabled, forceRerenderToggle,
|
|
22
|
+
export declare function BeeNutzungsartMix({ id, className, label, disabled, forceRerenderToggle, sections, type, formstate, statusLabel, readOnly, required, onChange, }: BeeNutzungsartMixProps): import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
export default BeeNutzungsartMix;
|
|
24
24
|
//# sourceMappingURL=BeeNutzungsartMix.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BeeNutzungsartMix.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/blocks/BeeNutzungsartMix.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BeeNutzungsartMix.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/blocks/BeeNutzungsartMix.tsx"],"names":[],"mappings":"AAKA,OAAO,oCAAoC,CAAC;AAC5C,OAAO,0BAA0B,CAAC;AAElC,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,mBAAmB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC1C,QAAQ,EAAE,kBAAkB,EAAE,CAAC;IAC/B,IAAI,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,CAAC;IAC3C,SAAS,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAAC;IAC/D,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,kBAAkB,EAAE,KAAK,IAAI,CAAC;CACrD,CAAC;AAkBF,wBAAgB,iBAAiB,CAAC,EAChC,EAAE,EACF,SAAS,EACT,KAAK,EACL,QAAQ,EACR,mBAAmB,EACnB,QAAQ,EACR,IAAgB,EAChB,SAAqB,EACrB,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,QAAQ,GACT,EAAE,sBAAsB,2CAkLxB;AAED,eAAe,iBAAiB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1334,25 +1334,26 @@ type BeeFlatImageGalleryProps = {
|
|
|
1334
1334
|
};
|
|
1335
1335
|
declare function BeeFlatImageGallery({ id, className, images, showAddOption, activateHover, readOnly, onClick, onRemove, onAdd, }: BeeFlatImageGalleryProps): react_jsx_runtime.JSX.Element;
|
|
1336
1336
|
|
|
1337
|
+
type NutzungsartSection = {
|
|
1338
|
+
id: string;
|
|
1339
|
+
label: string;
|
|
1340
|
+
value: number;
|
|
1341
|
+
};
|
|
1337
1342
|
type BeeNutzungsartMixProps = {
|
|
1338
1343
|
id?: string | undefined;
|
|
1339
1344
|
className?: string | undefined;
|
|
1340
1345
|
label?: string | undefined;
|
|
1341
1346
|
forceRerenderToggle?: boolean | undefined;
|
|
1342
|
-
|
|
1343
|
-
aRetail: number;
|
|
1344
|
-
aWohnen: number;
|
|
1345
|
-
aLogistik: number;
|
|
1346
|
-
aSonstige: number;
|
|
1347
|
+
sections: NutzungsartSection[];
|
|
1347
1348
|
type?: "primary" | "secondary" | undefined;
|
|
1348
1349
|
formstate?: "valid" | "error" | "neutral" | "none" | undefined;
|
|
1349
1350
|
statusLabel?: string | undefined;
|
|
1350
1351
|
disabled?: boolean | undefined;
|
|
1351
1352
|
readOnly?: boolean | undefined;
|
|
1352
1353
|
required?: boolean | undefined;
|
|
1353
|
-
onChange?: (
|
|
1354
|
+
onChange?: (sections: NutzungsartSection[]) => void;
|
|
1354
1355
|
};
|
|
1355
|
-
declare function BeeNutzungsartMix({ id, className, label, disabled, forceRerenderToggle,
|
|
1356
|
+
declare function BeeNutzungsartMix({ id, className, label, disabled, forceRerenderToggle, sections, type, formstate, statusLabel, readOnly, required, onChange, }: BeeNutzungsartMixProps): react_jsx_runtime.JSX.Element;
|
|
1356
1357
|
|
|
1357
1358
|
type BeeImage = {
|
|
1358
1359
|
id?: string | undefined;
|