@walkeros/explorer 3.4.2 → 4.0.0-next-1777463920154
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.cts +85 -10
- package/dist/index.d.ts +85 -10
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +70 -3
- package/package.json +6 -6
package/dist/styles.css
CHANGED
|
@@ -299,7 +299,6 @@
|
|
|
299
299
|
font-size: 14px;
|
|
300
300
|
line-height: 1.5;
|
|
301
301
|
color: var(--color-text);
|
|
302
|
-
margin-bottom: var(--spacing-grid-gap);
|
|
303
302
|
}
|
|
304
303
|
.elb-explorer * {
|
|
305
304
|
box-sizing: border-box;
|
|
@@ -1089,12 +1088,13 @@
|
|
|
1089
1088
|
display: block;
|
|
1090
1089
|
}
|
|
1091
1090
|
.elb-property-table__container {
|
|
1092
|
-
margin: 1.5rem 0 0;
|
|
1093
1091
|
overflow: visible;
|
|
1094
1092
|
border-radius: var(--radius-box);
|
|
1095
1093
|
border: 1px solid var(--border-box);
|
|
1096
1094
|
width: 100%;
|
|
1097
1095
|
box-sizing: border-box;
|
|
1096
|
+
container-type: inline-size;
|
|
1097
|
+
container-name: elb-property-table;
|
|
1098
1098
|
}
|
|
1099
1099
|
.elb-property-table__container table {
|
|
1100
1100
|
margin: 0;
|
|
@@ -1194,7 +1194,8 @@
|
|
|
1194
1194
|
}
|
|
1195
1195
|
.elb-property-table__property-cell {
|
|
1196
1196
|
width: 20%;
|
|
1197
|
-
white-space:
|
|
1197
|
+
white-space: normal;
|
|
1198
|
+
word-break: break-word;
|
|
1198
1199
|
}
|
|
1199
1200
|
.elb-property-table__type-cell {
|
|
1200
1201
|
width: 25%;
|
|
@@ -1202,6 +1203,9 @@
|
|
|
1202
1203
|
.elb-property-table__description {
|
|
1203
1204
|
line-height: 1.4;
|
|
1204
1205
|
color: var(--color-text);
|
|
1206
|
+
word-break: break-word;
|
|
1207
|
+
overflow-wrap: anywhere;
|
|
1208
|
+
min-width: 0;
|
|
1205
1209
|
}
|
|
1206
1210
|
.elb-property-table__more-button {
|
|
1207
1211
|
background: none;
|
|
@@ -1425,6 +1429,69 @@
|
|
|
1425
1429
|
padding: 16px 20px 20px;
|
|
1426
1430
|
}
|
|
1427
1431
|
}
|
|
1432
|
+
.elb-property-table__empty {
|
|
1433
|
+
display: flex;
|
|
1434
|
+
align-items: center;
|
|
1435
|
+
justify-content: center;
|
|
1436
|
+
min-height: 120px;
|
|
1437
|
+
padding: 2rem 1rem;
|
|
1438
|
+
color: var(--color-text-muted);
|
|
1439
|
+
font-style: italic;
|
|
1440
|
+
text-align: center;
|
|
1441
|
+
}
|
|
1442
|
+
@container elb-property-table (max-width: 420px) {
|
|
1443
|
+
.elb-property-table,
|
|
1444
|
+
.elb-property-table thead,
|
|
1445
|
+
.elb-property-table tbody,
|
|
1446
|
+
.elb-property-table tr {
|
|
1447
|
+
display: block;
|
|
1448
|
+
}
|
|
1449
|
+
.elb-property-table thead {
|
|
1450
|
+
display: none;
|
|
1451
|
+
}
|
|
1452
|
+
.elb-property-table td.elb-property-table__action-cell {
|
|
1453
|
+
display: none;
|
|
1454
|
+
}
|
|
1455
|
+
.elb-property-table tbody tr {
|
|
1456
|
+
display: grid;
|
|
1457
|
+
grid-template-columns: auto 1fr;
|
|
1458
|
+
column-gap: 8px;
|
|
1459
|
+
row-gap: 4px;
|
|
1460
|
+
padding: 12px 16px;
|
|
1461
|
+
border-bottom: 1px solid var(--border-box);
|
|
1462
|
+
}
|
|
1463
|
+
.elb-property-table tbody tr:last-child {
|
|
1464
|
+
border-bottom: none;
|
|
1465
|
+
}
|
|
1466
|
+
.elb-property-table td {
|
|
1467
|
+
display: block;
|
|
1468
|
+
padding: 0;
|
|
1469
|
+
border: none;
|
|
1470
|
+
}
|
|
1471
|
+
.elb-property-table td::before {
|
|
1472
|
+
content: none;
|
|
1473
|
+
}
|
|
1474
|
+
.elb-property-table__property-cell {
|
|
1475
|
+
grid-row: 1;
|
|
1476
|
+
grid-column: 1;
|
|
1477
|
+
width: auto;
|
|
1478
|
+
align-self: center;
|
|
1479
|
+
}
|
|
1480
|
+
.elb-property-table__type-cell {
|
|
1481
|
+
grid-row: 1;
|
|
1482
|
+
grid-column: 2;
|
|
1483
|
+
width: auto;
|
|
1484
|
+
align-self: center;
|
|
1485
|
+
min-width: 0;
|
|
1486
|
+
}
|
|
1487
|
+
.elb-property-table__description {
|
|
1488
|
+
grid-row: 2;
|
|
1489
|
+
grid-column: 1/-1;
|
|
1490
|
+
line-height: 1.4;
|
|
1491
|
+
color: var(--color-text-muted);
|
|
1492
|
+
font-size: calc(var(--font-size-base) - 1px);
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1428
1495
|
.elb-explorer-box {
|
|
1429
1496
|
display: flex;
|
|
1430
1497
|
flex-direction: column;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/explorer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-next-1777463920154",
|
|
4
4
|
"description": "Interactive React components for walkerOS documentation and exploration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@rjsf/core": "^6.1.2",
|
|
36
36
|
"@rjsf/utils": "^6.1.2",
|
|
37
37
|
"@rjsf/validator-ajv8": "^6.1.2",
|
|
38
|
-
"@walkeros/collector": "
|
|
39
|
-
"@walkeros/core": "
|
|
40
|
-
"@walkeros/web-source-browser": "
|
|
38
|
+
"@walkeros/collector": "4.0.0-next-1777463920154",
|
|
39
|
+
"@walkeros/core": "4.0.0-next-1777463920154",
|
|
40
|
+
"@walkeros/web-source-browser": "4.0.0-next-1777463920154",
|
|
41
41
|
"clsx": "^2.1.1",
|
|
42
42
|
"monaco-editor": "^0.55.1",
|
|
43
43
|
"prettier": "^3.7.4",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
64
64
|
"@typescript-eslint/parser": "^8.28.0",
|
|
65
65
|
"@vitejs/plugin-react": "^5.1.2",
|
|
66
|
-
"@walkeros/config": "
|
|
67
|
-
"@walkeros/web-destination-gtag": "
|
|
66
|
+
"@walkeros/config": "4.0.0-next-1777463920154",
|
|
67
|
+
"@walkeros/web-destination-gtag": "4.0.0-next-1777463920154",
|
|
68
68
|
"eslint": "^9.23.0",
|
|
69
69
|
"eslint-plugin-jest": "^28.11.0",
|
|
70
70
|
"eslint-plugin-storybook": "^10.1.11",
|