@tactics/lokaal-loket 0.1.19 → 0.1.21
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/build/index.cjs +548 -546
- package/build/index.d.cts +4 -2
- package/build/index.d.ts +4 -2
- package/build/index.js +548 -546
- package/package.json +24 -24
package/build/index.d.cts
CHANGED
|
@@ -2376,7 +2376,7 @@ declare const RequestSummaryContainer: (props: IRequestSummaryContainer) => reac
|
|
|
2376
2376
|
|
|
2377
2377
|
interface IRequestDetailsCard extends PropsWithChildren {
|
|
2378
2378
|
title: React__default.ReactElement<IHeading>;
|
|
2379
|
-
subtitle
|
|
2379
|
+
subtitle?: React__default.ReactElement<IHeading>;
|
|
2380
2380
|
figure?: React__default.ReactElement<IFigure>;
|
|
2381
2381
|
actions?: React__default.ReactNode;
|
|
2382
2382
|
detailsAction?: () => void;
|
|
@@ -2963,6 +2963,7 @@ declare enum DrawerSize {
|
|
|
2963
2963
|
SMALL = "SMALL",
|
|
2964
2964
|
MEDIUM = "MEDIUM",
|
|
2965
2965
|
LARGE = "LARGE",
|
|
2966
|
+
XLARGE = "XLARGE",
|
|
2966
2967
|
FULL = "FULL"
|
|
2967
2968
|
}
|
|
2968
2969
|
|
|
@@ -3381,8 +3382,9 @@ interface WizardStepContextType {
|
|
|
3381
3382
|
}
|
|
3382
3383
|
declare const WizardStepContext: React__default.Context<WizardStepContextType>;
|
|
3383
3384
|
interface IWizardStepProvider extends PropsWithChildren {
|
|
3385
|
+
complete?: boolean;
|
|
3384
3386
|
}
|
|
3385
|
-
declare const WizardStepProvider: (
|
|
3387
|
+
declare const WizardStepProvider: (props: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
|
3386
3388
|
|
|
3387
3389
|
interface InlineSelectOptionI {
|
|
3388
3390
|
label: string;
|
package/build/index.d.ts
CHANGED
|
@@ -2376,7 +2376,7 @@ declare const RequestSummaryContainer: (props: IRequestSummaryContainer) => reac
|
|
|
2376
2376
|
|
|
2377
2377
|
interface IRequestDetailsCard extends PropsWithChildren {
|
|
2378
2378
|
title: React__default.ReactElement<IHeading>;
|
|
2379
|
-
subtitle
|
|
2379
|
+
subtitle?: React__default.ReactElement<IHeading>;
|
|
2380
2380
|
figure?: React__default.ReactElement<IFigure>;
|
|
2381
2381
|
actions?: React__default.ReactNode;
|
|
2382
2382
|
detailsAction?: () => void;
|
|
@@ -2963,6 +2963,7 @@ declare enum DrawerSize {
|
|
|
2963
2963
|
SMALL = "SMALL",
|
|
2964
2964
|
MEDIUM = "MEDIUM",
|
|
2965
2965
|
LARGE = "LARGE",
|
|
2966
|
+
XLARGE = "XLARGE",
|
|
2966
2967
|
FULL = "FULL"
|
|
2967
2968
|
}
|
|
2968
2969
|
|
|
@@ -3381,8 +3382,9 @@ interface WizardStepContextType {
|
|
|
3381
3382
|
}
|
|
3382
3383
|
declare const WizardStepContext: React__default.Context<WizardStepContextType>;
|
|
3383
3384
|
interface IWizardStepProvider extends PropsWithChildren {
|
|
3385
|
+
complete?: boolean;
|
|
3384
3386
|
}
|
|
3385
|
-
declare const WizardStepProvider: (
|
|
3387
|
+
declare const WizardStepProvider: (props: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
|
3386
3388
|
|
|
3387
3389
|
interface InlineSelectOptionI {
|
|
3388
3390
|
label: string;
|