bkui-vue 0.0.2-modal-refactor.1 → 0.0.2-modal-refactor.3
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.cjs.js +28 -28
- package/dist/index.esm.js +5759 -6064
- package/dist/index.umd.js +28 -28
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/date-picker/use-calendar.d.ts +35 -0
- package/lib/dialog/dialog.css +10 -10
- package/lib/dialog/dialog.d.ts +2 -2
- package/lib/dialog/dialog.variable.css +10 -10
- package/lib/dialog/index.d.ts +6 -6
- package/lib/info-box/index.js +25 -14
- package/lib/info-box/info-box.css +10 -10
- package/lib/info-box/info-box.less +37 -34
- package/lib/info-box/info-box.variable.css +10 -10
- package/lib/modal/index.d.ts +6 -6
- package/lib/modal/index.js +18 -3
- package/lib/modal/modal.css +10 -10
- package/lib/modal/modal.d.ts +2 -2
- package/lib/modal/modal.variable.css +10 -10
- package/lib/shared/index.d.ts +0 -2
- package/lib/shared/index.js +443 -1137
- package/lib/sideslider/index.d.ts +6 -6
- package/lib/sideslider/sideslider.d.ts +2 -2
- package/package.json +1 -1
- package/lib/shared/mask-manager.d.ts +0 -89
- package/lib/shared/pop-manager.d.ts +0 -41
@@ -124,43 +124,43 @@
|
|
124
124
|
--search-select-message-color: var(--danger-color);
|
125
125
|
--search-select-menu-border-color: var(--disable-color);
|
126
126
|
}
|
127
|
-
.bk-modal-
|
127
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper {
|
128
128
|
width: 440px;
|
129
129
|
}
|
130
|
-
.bk-modal-
|
130
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper.normal {
|
131
131
|
width: 440px;
|
132
132
|
}
|
133
|
-
.bk-modal-
|
133
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper.small {
|
134
134
|
width: 400px;
|
135
135
|
}
|
136
|
-
.bk-modal-
|
136
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-body {
|
137
137
|
border-radius: 2px;
|
138
138
|
}
|
139
|
-
.bk-modal-
|
139
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-dialog-header {
|
140
140
|
padding: 24px 24px 0;
|
141
141
|
}
|
142
|
-
.bk-modal-
|
142
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-dialog-header .bk-dialog-title {
|
143
143
|
height: 27px;
|
144
144
|
margin: 15px 0 10px;
|
145
145
|
}
|
146
|
-
.bk-modal-
|
146
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-content {
|
147
147
|
height: 100%;
|
148
148
|
max-height: 100%;
|
149
149
|
min-height: 100%;
|
150
150
|
padding: 0 50px 10px;
|
151
151
|
word-break: break-all;
|
152
152
|
}
|
153
|
-
.bk-modal-
|
153
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-content .bk-info-sub-title {
|
154
154
|
margin-bottom: 10px;
|
155
155
|
text-align: center;
|
156
156
|
word-break: break-all;
|
157
157
|
}
|
158
|
-
.bk-modal-
|
158
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-footer {
|
159
159
|
padding: 0 65px 33px;
|
160
160
|
background-color: #fff;
|
161
161
|
border-top: none;
|
162
162
|
}
|
163
|
-
.bk-modal-
|
163
|
+
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-footer .bk-dialog-footer button {
|
164
164
|
min-width: 88px;
|
165
165
|
}
|
166
166
|
.bk-modal-ctx {
|
package/lib/shared/index.d.ts
CHANGED
@@ -28,8 +28,6 @@ export * from './dom';
|
|
28
28
|
export * from './helper';
|
29
29
|
export * from './hooks/use-form';
|
30
30
|
export * from './hooks/use-form-item';
|
31
|
-
export * from './mask-manager';
|
32
|
-
export * from './pop-manager';
|
33
31
|
export * from './popover';
|
34
32
|
export * from './scrollbar-width';
|
35
33
|
export * from './token';
|