@codexview/react 0.2.3 → 0.3.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/dist/styles.css CHANGED
@@ -493,6 +493,37 @@ a.cv-Markdown-module_directive_oMfF9:hover {
493
493
  .cv-StatusBar-module_errorDetails_MEtRk { margin-left: auto; max-width: 50%; }
494
494
  .cv-StatusBar-module_errorDetails_MEtRk summary { cursor: pointer; }
495
495
  .cv-StatusBar-module_errorDetails_MEtRk pre { font-size: 0.75rem; overflow-x: auto; }
496
+ .cv-ToolGroup-module_group_WufLG {
497
+ display: flex;
498
+ flex-direction: column;
499
+ }
500
+ .cv-ToolGroup-module_header_ycctp {
501
+ display: flex;
502
+ align-items: center;
503
+ gap: var(--cv-spacing-xs);
504
+ cursor: pointer;
505
+ color: var(--cv-text-muted);
506
+ list-style: none;
507
+ font-size: 0.9rem;
508
+ }
509
+ .cv-ToolGroup-module_header_ycctp::-webkit-details-marker { display: none; }
510
+ .cv-ToolGroup-module_header_ycctp::before {
511
+ content: '›';
512
+ display: inline-block;
513
+ width: 12px;
514
+ color: var(--cv-text-muted);
515
+ transform: rotate(0deg);
516
+ transition: transform 120ms ease;
517
+ }
518
+ .cv-ToolGroup-module_group_WufLG[open] > .cv-ToolGroup-module_header_ycctp::before { transform: rotate(90deg); }
519
+ .cv-ToolGroup-module_title_qIalM { font-weight: 500; }
520
+ .cv-ToolGroup-module_body_G35LW {
521
+ display: flex;
522
+ flex-direction: column;
523
+ gap: var(--cv-spacing-xs);
524
+ margin-top: var(--cv-spacing-xs);
525
+ padding-left: var(--cv-spacing-md);
526
+ }
496
527
  .cv-reset-module_root_dBpwH {
497
528
  all: initial;
498
529
  display: block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codexview/react",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },