ywana-core8 0.0.953 → 0.0.954
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 +250 -228
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +80 -80
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +249 -227
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +253 -231
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +16 -0
package/dist/index.css
CHANGED
@@ -1356,6 +1356,86 @@ textarea:read-only ~ label,
|
|
1356
1356
|
resize: horizontal;
|
1357
1357
|
overflow: hidden;
|
1358
1358
|
}
|
1359
|
+
.uploader {
|
1360
|
+
display: flex;
|
1361
|
+
flex-direction: column;
|
1362
|
+
flex: 1;
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.demo-uploader {
|
1366
|
+
width: 40rem;
|
1367
|
+
height: 30rem;
|
1368
|
+
margin: 5rem auto;
|
1369
|
+
flex-direction: column;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
/***************** Upload Area ***********************/
|
1373
|
+
|
1374
|
+
.upload-area6 {
|
1375
|
+
flex: 1;
|
1376
|
+
margin: 0 0 1rem 0;
|
1377
|
+
border: dashed 2px var(--divider-color);
|
1378
|
+
display: flex;
|
1379
|
+
flex-direction: column;
|
1380
|
+
align-items: center;
|
1381
|
+
justify-content: center;
|
1382
|
+
border-radius: 1rem;
|
1383
|
+
min-height: 10rem;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
.upload-area6 > label {
|
1387
|
+
font-size: 1.1rem;
|
1388
|
+
font-weight: 500;
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
.upload-area6.drag-over {
|
1392
|
+
background-color: rgba(200, 200, 200, 0.1);
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
/***************** Upload File ***********************/
|
1396
|
+
|
1397
|
+
.upload-file {
|
1398
|
+
display: flex;
|
1399
|
+
align-items: center;
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
.upload-file > label {
|
1403
|
+
min-width: 30%;
|
1404
|
+
overflow: hidden;
|
1405
|
+
text-overflow: ellipsis;
|
1406
|
+
white-space: nowrap;
|
1407
|
+
margin-right: 1rem;
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
.upload-file > main {
|
1411
|
+
flex: 1;
|
1412
|
+
display: flex;
|
1413
|
+
align-items: center;
|
1414
|
+
justify-content: flex-end;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.upload-file .error {
|
1418
|
+
color: red;
|
1419
|
+
text-align: center;
|
1420
|
+
}
|
1421
|
+
|
1422
|
+
.upload-file progress {
|
1423
|
+
-webkit-appearance: none;
|
1424
|
+
-moz-appearance: none;
|
1425
|
+
appearance: none;
|
1426
|
+
border: solid 1px var(--divider-color);
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
.upload-file ::-webkit-progress-bar {
|
1430
|
+
border: solid 1px rgb(235, 235, 235);
|
1431
|
+
background-color: rgb(241, 241, 241);
|
1432
|
+
}
|
1433
|
+
|
1434
|
+
.upload-file ::-webkit-progress-value {
|
1435
|
+
background-color: rgb(182, 182, 182);
|
1436
|
+
opacity: 1;
|
1437
|
+
}
|
1438
|
+
|
1359
1439
|
.tokenField {
|
1360
1440
|
min-height: 3.8;
|
1361
1441
|
position: relative;
|
@@ -2294,86 +2374,6 @@ li.selected {
|
|
2294
2374
|
cursor: pointer;
|
2295
2375
|
border: solid 2px var(--divider-color);
|
2296
2376
|
}
|
2297
|
-
.uploader {
|
2298
|
-
display: flex;
|
2299
|
-
flex-direction: column;
|
2300
|
-
flex: 1;
|
2301
|
-
}
|
2302
|
-
|
2303
|
-
.demo-uploader {
|
2304
|
-
width: 40rem;
|
2305
|
-
height: 30rem;
|
2306
|
-
margin: 5rem auto;
|
2307
|
-
flex-direction: column;
|
2308
|
-
}
|
2309
|
-
|
2310
|
-
/***************** Upload Area ***********************/
|
2311
|
-
|
2312
|
-
.upload-area6 {
|
2313
|
-
flex: 1;
|
2314
|
-
margin: 0 0 1rem 0;
|
2315
|
-
border: dashed 2px var(--divider-color);
|
2316
|
-
display: flex;
|
2317
|
-
flex-direction: column;
|
2318
|
-
align-items: center;
|
2319
|
-
justify-content: center;
|
2320
|
-
border-radius: 1rem;
|
2321
|
-
min-height: 10rem;
|
2322
|
-
}
|
2323
|
-
|
2324
|
-
.upload-area6 > label {
|
2325
|
-
font-size: 1.1rem;
|
2326
|
-
font-weight: 500;
|
2327
|
-
}
|
2328
|
-
|
2329
|
-
.upload-area6.drag-over {
|
2330
|
-
background-color: rgba(200, 200, 200, 0.1);
|
2331
|
-
}
|
2332
|
-
|
2333
|
-
/***************** Upload File ***********************/
|
2334
|
-
|
2335
|
-
.upload-file {
|
2336
|
-
display: flex;
|
2337
|
-
align-items: center;
|
2338
|
-
}
|
2339
|
-
|
2340
|
-
.upload-file > label {
|
2341
|
-
min-width: 30%;
|
2342
|
-
overflow: hidden;
|
2343
|
-
text-overflow: ellipsis;
|
2344
|
-
white-space: nowrap;
|
2345
|
-
margin-right: 1rem;
|
2346
|
-
}
|
2347
|
-
|
2348
|
-
.upload-file > main {
|
2349
|
-
flex: 1;
|
2350
|
-
display: flex;
|
2351
|
-
align-items: center;
|
2352
|
-
justify-content: flex-end;
|
2353
|
-
}
|
2354
|
-
|
2355
|
-
.upload-file .error {
|
2356
|
-
color: red;
|
2357
|
-
text-align: center;
|
2358
|
-
}
|
2359
|
-
|
2360
|
-
.upload-file progress {
|
2361
|
-
-webkit-appearance: none;
|
2362
|
-
-moz-appearance: none;
|
2363
|
-
appearance: none;
|
2364
|
-
border: solid 1px var(--divider-color);
|
2365
|
-
}
|
2366
|
-
|
2367
|
-
.upload-file ::-webkit-progress-bar {
|
2368
|
-
border: solid 1px rgb(235, 235, 235);
|
2369
|
-
background-color: rgb(241, 241, 241);
|
2370
|
-
}
|
2371
|
-
|
2372
|
-
.upload-file ::-webkit-progress-value {
|
2373
|
-
background-color: rgb(182, 182, 182);
|
2374
|
-
opacity: 1;
|
2375
|
-
}
|
2376
|
-
|
2377
2377
|
.page6 {
|
2378
2378
|
height: 100%;
|
2379
2379
|
color: var(--text-color);
|