randmarcomps 1.227.0 → 1.229.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/randmarcomps.d.ts +11 -1
- package/dist/randmarcomps.js +3109 -2270
- package/dist/randmarcomps.umd.cjs +143 -133
- package/package.json +2 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -420,6 +420,15 @@ declare interface ManufacturerGetStartedButtonProps {
|
|
|
420
420
|
manufacturer: Manufacturer;
|
|
421
421
|
}
|
|
422
422
|
|
|
423
|
+
export declare function ManufacturerOverviewPage({ applicationId, readonly, withReports, userEmail, }: ManufacturerOverviewPageProps): JSX.Element;
|
|
424
|
+
|
|
425
|
+
declare interface ManufacturerOverviewPageProps {
|
|
426
|
+
applicationId: string;
|
|
427
|
+
readonly: boolean;
|
|
428
|
+
withReports?: boolean;
|
|
429
|
+
userEmail?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
423
432
|
export declare function ManufacturerReorderingCard({ manufacturer, onSave, loading, saving, }: ManufacturerReorderingCardProps): JSX.Element;
|
|
424
433
|
|
|
425
434
|
declare interface ManufacturerReorderingCardProps {
|
|
@@ -431,13 +440,14 @@ declare interface ManufacturerReorderingCardProps {
|
|
|
431
440
|
|
|
432
441
|
declare type MaskType = "phone" | "postal-code-ca" | "zip-code-us";
|
|
433
442
|
|
|
434
|
-
export declare function MultiSelect({ options, selected, onChange, placeholder }: MultiSelectProps): JSX.Element;
|
|
443
|
+
export declare function MultiSelect({ options, selected, onChange, placeholder, disabled }: MultiSelectProps): JSX.Element;
|
|
435
444
|
|
|
436
445
|
declare interface MultiSelectProps {
|
|
437
446
|
options: string[];
|
|
438
447
|
selected: string[];
|
|
439
448
|
onChange: (selected: string[]) => void;
|
|
440
449
|
placeholder?: string;
|
|
450
|
+
disabled?: boolean;
|
|
441
451
|
}
|
|
442
452
|
|
|
443
453
|
export declare const Navbar: default_2.ForwardRefExoticComponent<NavbarProps & default_2.RefAttributes<ChatLayoutHandle | null>>;
|