jb-mobile-ui 1.5.5 → 1.5.7
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/components/JbMobileSteps.vue.d.ts +15 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.es.js +13 -3
- package/package.json +1 -1
|
@@ -44,6 +44,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
44
44
|
type: ObjectConstructor;
|
|
45
45
|
default: {};
|
|
46
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* 步骤条左侧连接线的样式
|
|
49
|
+
*/
|
|
50
|
+
stepLineStyle: {
|
|
51
|
+
type: ObjectConstructor;
|
|
52
|
+
default: {};
|
|
53
|
+
};
|
|
47
54
|
/**
|
|
48
55
|
* 步骤条右侧内容的样式
|
|
49
56
|
*/
|
|
@@ -94,6 +101,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
94
101
|
type: ObjectConstructor;
|
|
95
102
|
default: {};
|
|
96
103
|
};
|
|
104
|
+
/**
|
|
105
|
+
* 步骤条左侧连接线的样式
|
|
106
|
+
*/
|
|
107
|
+
stepLineStyle: {
|
|
108
|
+
type: ObjectConstructor;
|
|
109
|
+
default: {};
|
|
110
|
+
};
|
|
97
111
|
/**
|
|
98
112
|
* 步骤条右侧内容的样式
|
|
99
113
|
*/
|
|
@@ -114,6 +128,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
114
128
|
num: number;
|
|
115
129
|
numClass: string;
|
|
116
130
|
stepLeftStyle: Record<string, any>;
|
|
131
|
+
stepLineStyle: Record<string, any>;
|
|
117
132
|
stepRightStyle: Record<string, any>;
|
|
118
133
|
stepContentStyle: Record<string, any>;
|
|
119
134
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|