lkt-vue-kernel 1.0.24 → 1.0.25
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 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -854,6 +854,7 @@ interface ToastConfig {
|
|
|
854
854
|
positionX?: ToastPositionX;
|
|
855
855
|
duration?: number;
|
|
856
856
|
buttonConfig?: ButtonConfig;
|
|
857
|
+
zIndex?: number;
|
|
857
858
|
}
|
|
858
859
|
|
|
859
860
|
declare class LktStrictItem extends LktItem {
|
|
@@ -1085,7 +1086,7 @@ type ValidCustomSlot = string | Component | undefined;
|
|
|
1085
1086
|
type ValidScanPropTarget = ScanPropTarget | ((...args: any[]) => ScanPropTarget);
|
|
1086
1087
|
|
|
1087
1088
|
declare const extractPropValue: (needle: ValidScanPropTarget, haystack: LktObject) => ValidScanPropTarget;
|
|
1088
|
-
declare const extractI18nValue: (needle:
|
|
1089
|
+
declare const extractI18nValue: (needle: ValidTextValue) => any;
|
|
1089
1090
|
|
|
1090
1091
|
declare const ensureButtonConfig: (buttonConfig: Partial<ButtonConfig> | undefined, settingsConfig: Partial<ButtonConfig>) => Partial<ButtonConfig>;
|
|
1091
1092
|
|