@walkeros/explorer 0.3.0 → 0.5.0
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/AGENT.md +381 -0
- package/STYLE.md +993 -0
- package/dist/chunk-WKBCYMTQ.mjs +2650 -0
- package/dist/chunk-WKBCYMTQ.mjs.map +1 -0
- package/dist/index.d.cts +32 -4
- package/dist/index.d.ts +32 -4
- package/dist/index.js +2412 -17436
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1438 -627
- package/dist/index.mjs.map +1 -1
- package/dist/{monaco-types-T3WXA7KH.mjs → monaco-types-GHUJ2SZE.mjs} +2 -2
- package/dist/styles.css +70 -0
- package/package.json +41 -28
- package/dist/chunk-P5UDSGZL.mjs +0 -18485
- package/dist/chunk-P5UDSGZL.mjs.map +0 -1
- /package/dist/{monaco-types-T3WXA7KH.mjs.map → monaco-types-GHUJ2SZE.mjs.map} +0 -0
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
removeDestinationType,
|
|
15
15
|
removeTypeLibrary,
|
|
16
16
|
updateTypeLibrary
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-WKBCYMTQ.mjs";
|
|
18
18
|
export {
|
|
19
19
|
addDestinationType,
|
|
20
20
|
addFunctionContextTypes,
|
|
@@ -31,4 +31,4 @@ export {
|
|
|
31
31
|
removeTypeLibrary,
|
|
32
32
|
updateTypeLibrary
|
|
33
33
|
};
|
|
34
|
-
//# sourceMappingURL=monaco-types-
|
|
34
|
+
//# sourceMappingURL=monaco-types-GHUJ2SZE.mjs.map
|
package/dist/styles.css
CHANGED
|
@@ -387,6 +387,76 @@
|
|
|
387
387
|
padding: var(--spacing-button-group);
|
|
388
388
|
border: 1px solid var(--border-button-group);
|
|
389
389
|
}
|
|
390
|
+
.elb-button-link {
|
|
391
|
+
display: inline-flex;
|
|
392
|
+
align-items: center;
|
|
393
|
+
justify-content: center;
|
|
394
|
+
padding: 12px 32px;
|
|
395
|
+
font-family: var(--font-family-base);
|
|
396
|
+
font-size: var(--font-size-base);
|
|
397
|
+
font-weight: var(--font-weight-semibold);
|
|
398
|
+
border-radius: var(--radius-button);
|
|
399
|
+
border: none;
|
|
400
|
+
text-decoration: none;
|
|
401
|
+
transition: all 0.15s;
|
|
402
|
+
cursor: pointer;
|
|
403
|
+
}
|
|
404
|
+
.elb-button-link:disabled {
|
|
405
|
+
opacity: 0.4;
|
|
406
|
+
cursor: not-allowed;
|
|
407
|
+
}
|
|
408
|
+
.elb-button-link-default {
|
|
409
|
+
background: transparent;
|
|
410
|
+
color: var(--color-text-button);
|
|
411
|
+
border: 1px solid var(--border-input);
|
|
412
|
+
}
|
|
413
|
+
.elb-button-link-default:hover:not(:disabled) {
|
|
414
|
+
background: var(--bg-button-hover);
|
|
415
|
+
color: var(--color-text-button-hover);
|
|
416
|
+
}
|
|
417
|
+
.elb-button-link-primary {
|
|
418
|
+
background: var(--color-button-primary);
|
|
419
|
+
color: var(--color-button-primary-text);
|
|
420
|
+
border: 1px solid var(--color-button-primary);
|
|
421
|
+
}
|
|
422
|
+
.elb-button-link-primary:hover:not(:disabled) {
|
|
423
|
+
background: var(--color-button-primary-hover);
|
|
424
|
+
border-color: var(--color-button-primary-hover);
|
|
425
|
+
}
|
|
426
|
+
.elb-button-link-secondary {
|
|
427
|
+
background: var(--bg-box);
|
|
428
|
+
color: var(--color-button-primary);
|
|
429
|
+
border: 1px solid var(--border-input);
|
|
430
|
+
}
|
|
431
|
+
.elb-button-link-secondary:hover:not(:disabled) {
|
|
432
|
+
background: var(--bg-button-hover);
|
|
433
|
+
}
|
|
434
|
+
.elb-button-link-md {
|
|
435
|
+
padding: 12px 32px;
|
|
436
|
+
font-size: var(--font-size-base);
|
|
437
|
+
}
|
|
438
|
+
.elb-button-link-lg {
|
|
439
|
+
padding: 16px 40px;
|
|
440
|
+
font-size: var(--font-size-xl);
|
|
441
|
+
}
|
|
442
|
+
.elb-button-group {
|
|
443
|
+
display: flex;
|
|
444
|
+
flex-direction: column;
|
|
445
|
+
gap: 12px;
|
|
446
|
+
}
|
|
447
|
+
@media (max-width: 799px) {
|
|
448
|
+
.elb-button-group {
|
|
449
|
+
width: 100%;
|
|
450
|
+
}
|
|
451
|
+
.elb-button-group .elb-button-link {
|
|
452
|
+
width: 100%;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
@media (min-width: 1200px) {
|
|
456
|
+
.elb-button-group {
|
|
457
|
+
flex-direction: row;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
390
460
|
.elb-code {
|
|
391
461
|
flex: 1;
|
|
392
462
|
min-height: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/explorer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Interactive React components for walkerOS documentation and exploration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"./styles": "./dist/styles.css"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
|
-
"dist/**"
|
|
20
|
+
"dist/**",
|
|
21
|
+
"AGENT.md",
|
|
22
|
+
"STYLE.md"
|
|
21
23
|
],
|
|
22
24
|
"scripts": {
|
|
23
25
|
"build": "tsup --silent",
|
|
@@ -34,15 +36,16 @@
|
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
38
|
"@monaco-editor/react": "^4.7.0",
|
|
37
|
-
"@rjsf/core": "^
|
|
38
|
-
"@rjsf/utils": "^
|
|
39
|
-
"@rjsf/validator-ajv8": "^
|
|
39
|
+
"@rjsf/core": "^6.1.2",
|
|
40
|
+
"@rjsf/utils": "^6.1.2",
|
|
41
|
+
"@rjsf/validator-ajv8": "^6.1.2",
|
|
40
42
|
"clsx": "^2.1.1",
|
|
41
|
-
"monaco-editor": "^0.
|
|
42
|
-
"
|
|
43
|
+
"monaco-editor": "^0.55.1",
|
|
44
|
+
"prettier": "^3.7.4",
|
|
45
|
+
"tailwind-merge": "^3.4.0"
|
|
43
46
|
},
|
|
44
47
|
"peerDependencies": {
|
|
45
|
-
"@walkeros/core": "^0.
|
|
48
|
+
"@walkeros/core": "^0.5.0",
|
|
46
49
|
"react": ">=18.0.0",
|
|
47
50
|
"react-dom": ">=18.0.0"
|
|
48
51
|
},
|
|
@@ -55,30 +58,40 @@
|
|
|
55
58
|
}
|
|
56
59
|
},
|
|
57
60
|
"devDependencies": {
|
|
58
|
-
"@changesets/cli": "^2.29.
|
|
59
|
-
"@storybook/addon-docs": "^10.
|
|
60
|
-
"@storybook/react-vite": "^10.
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@testing-library/
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"@
|
|
71
|
-
"@
|
|
72
|
-
"
|
|
61
|
+
"@changesets/cli": "^2.29.8",
|
|
62
|
+
"@storybook/addon-docs": "^10.1.8",
|
|
63
|
+
"@storybook/react-vite": "^10.1.8",
|
|
64
|
+
"@swc/core": "^1.11.13",
|
|
65
|
+
"@swc/jest": "^0.2.37",
|
|
66
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
67
|
+
"@testing-library/react": "^16.3.0",
|
|
68
|
+
"@testing-library/user-event": "^14.6.1",
|
|
69
|
+
"@types/jest": "^29.5.14",
|
|
70
|
+
"@types/react": "^19.2.7",
|
|
71
|
+
"@types/react-dom": "^19.2.3",
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
73
|
+
"@typescript-eslint/parser": "^8.28.0",
|
|
74
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
75
|
+
"@walkeros/collector": "^0.5.0",
|
|
76
|
+
"@walkeros/core": "^0.5.0",
|
|
77
|
+
"@walkeros/web-destination-gtag": "^0.5.0",
|
|
78
|
+
"@walkeros/web-source-browser": "^0.5.0",
|
|
79
|
+
"eslint": "^9.23.0",
|
|
80
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
81
|
+
"eslint-plugin-storybook": "^10.1.8",
|
|
82
|
+
"globals": "^16.0.0",
|
|
73
83
|
"husky": "^9.1.7",
|
|
74
84
|
"identity-obj-proxy": "^3.0.0",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
85
|
+
"jest": "^30.0.4",
|
|
86
|
+
"jest-environment-jsdom": "^30.0.4",
|
|
87
|
+
"lint-staged": "^16.2.7",
|
|
77
88
|
"rehype-external-links": "^3.0.0",
|
|
78
89
|
"rehype-slug": "^6.0.0",
|
|
79
|
-
"sass": "^1.
|
|
80
|
-
"storybook": "^10.
|
|
81
|
-
"
|
|
90
|
+
"sass": "^1.96.0",
|
|
91
|
+
"storybook": "^10.1.8",
|
|
92
|
+
"tsup": "^8.5.1",
|
|
93
|
+
"typescript": "^5.9.3",
|
|
94
|
+
"vite": "^7.2.7"
|
|
82
95
|
},
|
|
83
96
|
"repository": {
|
|
84
97
|
"url": "git+https://github.com/elbwalker/walkerOS.git",
|