lkt-vue-kernel 1.2.37 → 1.2.38
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/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1514,6 +1514,8 @@ interface MenuConfig {
|
|
|
1514
1514
|
|
|
1515
1515
|
interface StepProcessStepConfig {
|
|
1516
1516
|
key: string;
|
|
1517
|
+
prevKey?: string | (() => string);
|
|
1518
|
+
nextKey?: string | (() => string);
|
|
1517
1519
|
nextButton?: ButtonConfig | false;
|
|
1518
1520
|
nextHidden?: boolean | ((currentStep: StepProcessStepConfig, steps: StepProcessStepConfig[]) => boolean);
|
|
1519
1521
|
prevButton?: ButtonConfig | false;
|