element-assits 0.0.38 → 0.0.39

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/lib/style.scss CHANGED
@@ -215,6 +215,43 @@ $--color-border-extralight: #F2F6FC !default;
215
215
  }
216
216
  }
217
217
 
218
+ .ea-split-container {
219
+ display: flex;
220
+ &.is-down {
221
+ user-select: none;
222
+ }
223
+ .sc-left {
224
+ flex-grow: 1;
225
+ flex-shrink: 1;
226
+ }
227
+ .sc-right {
228
+ flex-grow: 1;
229
+ flex-shrink: 1;
230
+ }
231
+ .sc-bamboo {
232
+ flex-grow: 0;
233
+ flex-shrink: 0;
234
+ width: 8px;
235
+ border: 1px solid #DCDEE2;
236
+ border-top: none;
237
+ border-bottom: none;
238
+ background-color: #F8F8F9;
239
+ cursor: col-resize;
240
+ user-select: none;
241
+ display: flex;
242
+ flex-direction: column;
243
+ justify-content: center;
244
+ align-items: center;
245
+ margin: 0 16px;
246
+ .sc-texture {
247
+ width: 4px;
248
+ height: 1px;
249
+ background: rgba(23, 35, 61, .25);
250
+ margin-top: 3px;
251
+ }
252
+ }
253
+ }
254
+
218
255
  .ea-button-tooltip + .ea-button-tooltip {
219
256
  margin-left: 10px;
220
257
  }
@@ -280,14 +317,6 @@ td {
280
317
  }
281
318
  }
282
319
 
283
- .ea-list {
284
- .loading-text {
285
- color: $--color-secondary-text;
286
- text-align: center;
287
- font-size: inherit;
288
- }
289
- }
290
-
291
320
  .ea-tree {
292
321
  .ea-tree-real {
293
322
  .el-tree-node > .el-tree-node__content{
@@ -300,43 +329,18 @@ td {
300
329
  }
301
330
  }
302
331
 
303
- .ea-split-container {
304
- display: flex;
305
- &.is-down {
306
- user-select: none;
307
- }
308
- .sc-left {
309
- flex-grow: 1;
310
- flex-shrink: 1;
311
- }
312
- .sc-right {
313
- flex-grow: 1;
314
- flex-shrink: 1;
315
- }
316
- .sc-bamboo {
317
- flex-grow: 0;
318
- flex-shrink: 0;
319
- width: 8px;
320
- border: 1px solid #DCDEE2;
321
- border-top: none;
322
- border-bottom: none;
323
- background-color: #F8F8F9;
324
- cursor: col-resize;
325
- user-select: none;
326
- display: flex;
327
- flex-direction: column;
328
- justify-content: center;
329
- align-items: center;
330
- margin: 0 16px;
331
- .sc-texture {
332
- width: 4px;
333
- height: 1px;
334
- background: rgba(23, 35, 61, .25);
335
- margin-top: 3px;
336
- }
332
+ .ea-list {
333
+ .loading-text {
334
+ color: $--color-secondary-text;
335
+ text-align: center;
336
+ font-size: inherit;
337
337
  }
338
338
  }
339
339
 
340
+ .ea-number .el-input__inner {
341
+ text-align: left;
342
+ }
343
+
340
344
  .ea-desc {
341
345
  font-size: 14px;
342
346
  &__title {
@@ -381,10 +385,6 @@ td {
381
385
  }
382
386
  }
383
387
 
384
- .ea-number .el-input__inner {
385
- text-align: left;
386
- }
387
-
388
388
  .file-upload-dialog {
389
389
  // 拖拽区域铺满
390
390
  .el-upload,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "element-assits",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "element-ui 的扩展组件库",
5
5
  "main": "lib/index.js",
6
6
  "type": "module",