lkt-vue-kernel 1.2.50 → 1.2.52
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 +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1550,6 +1550,15 @@ declare enum StepRenderType {
|
|
|
1550
1550
|
RendersAfterFirstActiveVisibleIfActive = 5
|
|
1551
1551
|
}
|
|
1552
1552
|
|
|
1553
|
+
interface StepProcessStepEvents {
|
|
1554
|
+
enter?: (args: {
|
|
1555
|
+
from: string;
|
|
1556
|
+
}) => void;
|
|
1557
|
+
leave?: (args: {
|
|
1558
|
+
to: string;
|
|
1559
|
+
}) => void;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1553
1562
|
interface StepProcessStepConfig {
|
|
1554
1563
|
key: string;
|
|
1555
1564
|
renderType?: StepRenderType;
|
|
@@ -1559,6 +1568,8 @@ interface StepProcessStepConfig {
|
|
|
1559
1568
|
nextHidden?: boolean | ((currentStep: StepProcessStepConfig, steps: StepProcessStepConfig[]) => boolean);
|
|
1560
1569
|
prevButton?: ButtonConfig | false;
|
|
1561
1570
|
prevHidden?: boolean | ((currentStep: StepProcessStepConfig, steps: StepProcessStepConfig[]) => boolean);
|
|
1571
|
+
excludedFromTotalCount?: boolean | (() => boolean);
|
|
1572
|
+
events?: StepProcessStepEvents;
|
|
1562
1573
|
}
|
|
1563
1574
|
|
|
1564
1575
|
interface StepProcessConfig {
|