@reacteditor/core 0.0.13 → 0.0.15

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.
Files changed (37) hide show
  1. package/dist/{Editor-3COFH5WN.mjs → Editor-7UIJWCPN.mjs} +7 -7
  2. package/dist/{actions-DDpLL_TR.d.mts → actions-BxLinRKD.d.mts} +5 -0
  3. package/dist/{actions-DDpLL_TR.d.ts → actions-BxLinRKD.d.ts} +5 -0
  4. package/dist/{chunk-PUDWMFBH.mjs → chunk-3CGBQNX4.mjs} +1 -1
  5. package/dist/{chunk-BZ4BQZJR.mjs → chunk-647NZJYM.mjs} +3 -3
  6. package/dist/{chunk-FT6UFK7G.mjs → chunk-C2KWANIN.mjs} +1 -1
  7. package/dist/{chunk-AD7BMXAA.mjs → chunk-GIGXMGTZ.mjs} +1 -1
  8. package/dist/{chunk-OIFPBVSF.mjs → chunk-NKHR722W.mjs} +1 -1
  9. package/dist/{chunk-IIRJMJFU.mjs → chunk-NPC7A3V3.mjs} +4 -13
  10. package/dist/{chunk-KX5XDJF6.mjs → chunk-RAMNEU3M.mjs} +1044 -1323
  11. package/dist/{chunk-LRFRIIKG.mjs → chunk-T43H325W.mjs} +21 -122
  12. package/dist/{chunk-BUR5T7IX.mjs → chunk-TFAZFGYZ.mjs} +7 -7
  13. package/dist/{full-QT5KXRDP.mjs → full-PM3VSLYA.mjs} +6 -6
  14. package/dist/{index-BTatdZaE.d.mts → index-BZRpxcwy.d.mts} +1 -1
  15. package/dist/{index-zhUFD8aP.d.ts → index-B_21fGrq.d.ts} +1 -1
  16. package/dist/index.css +411 -517
  17. package/dist/index.d.mts +4 -4
  18. package/dist/index.d.ts +4 -4
  19. package/dist/index.js +846 -1247
  20. package/dist/index.mjs +9 -9
  21. package/dist/internal.d.mts +2 -2
  22. package/dist/internal.d.ts +2 -2
  23. package/dist/{loaded-O4QHGE26.mjs → loaded-5MUU76TF.mjs} +3 -3
  24. package/dist/{loaded-R34BR6I5.mjs → loaded-IIHO4UZS.mjs} +3 -3
  25. package/dist/{loaded-GLBLMTBL.mjs → loaded-ULJY3YN5.mjs} +3 -3
  26. package/dist/no-external.css +411 -517
  27. package/dist/no-external.d.mts +3 -3
  28. package/dist/no-external.d.ts +3 -3
  29. package/dist/no-external.js +846 -1247
  30. package/dist/no-external.mjs +9 -9
  31. package/dist/rsc.d.mts +2 -2
  32. package/dist/rsc.d.ts +2 -2
  33. package/dist/rsc.js +4 -14
  34. package/dist/rsc.mjs +2 -2
  35. package/dist/{walk-tree-Cxbt1UVr.d.mts → walk-tree-BvYigWFL.d.mts} +1 -1
  36. package/dist/{walk-tree-Cnyva5MB.d.ts → walk-tree-Clklc1Ql.d.ts} +1 -1
  37. package/package.json +2 -1
package/dist/index.css CHANGED
@@ -2344,211 +2344,100 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2344
2344
  }
2345
2345
 
2346
2346
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Layout/styles.module.css/#css-module-data */
2347
- ._Editor_frglt_19 {
2347
+ ._Editor_1d9v5_8 {
2348
2348
  --editor-space-px: 16px;
2349
2349
  color: var(--editor-text-primary);
2350
2350
  font-family: var(--editor-font-family);
2351
2351
  overflow-x: hidden;
2352
2352
  }
2353
2353
  @media (min-width: 766px) {
2354
- ._Editor_frglt_19 {
2354
+ ._Editor_1d9v5_8 {
2355
2355
  overflow-x: auto;
2356
2356
  }
2357
2357
  }
2358
- ._Editor-portal_frglt_32 {
2358
+ ._Editor-portal_1d9v5_21 {
2359
2359
  position: relative;
2360
2360
  z-index: 2;
2361
2361
  }
2362
- ._EditorLayout_frglt_37 {
2362
+ ._EditorLayout_1d9v5_26 {
2363
2363
  height: 100dvh;
2364
2364
  }
2365
- ._EditorLayout-inner_frglt_41 {
2366
- --editor-frame-width: auto;
2367
- --editor-side-nav-width: min-content;
2368
- --editor-side-bar-width: 0px;
2369
- --editor-left-side-bar-width: var( --editor-user-left-side-bar-width, var(--editor-side-bar-width) );
2370
- --editor-right-side-bar-width: var( --editor-user-right-side-bar-width, var(--editor-side-bar-width) );
2365
+ ._EditorLayout-inner_1d9v5_30 {
2366
+ --editor-header-height: 44px;
2367
+ --editor-side-bar-width: 280px;
2371
2368
  background-color: var(--editor-surface-app);
2372
2369
  display: grid;
2373
- grid-template-areas: "editor" "mobilepanel" "left" "right" "sidenav";
2374
- grid-template-columns: var(--editor-frame-width);
2375
- grid-template-rows: auto 0 0 0 var(--editor-side-nav-width);
2370
+ grid-template-areas: "header" "editor";
2371
+ grid-template-columns: 1fr;
2372
+ grid-template-rows: var(--editor-header-height) 1fr;
2376
2373
  height: 100%;
2377
2374
  position: relative;
2378
- transition: none;
2379
2375
  z-index: 0;
2380
2376
  overflow: hidden;
2381
2377
  }
2382
- @media (min-width: 638px) {
2383
- ._EditorLayout-inner_frglt_41 {
2384
- --editor-side-nav-width: 44px;
2385
- grid-template-areas: "sidenav left editor right";
2386
- grid-template-columns: var(--editor-side-nav-width) 0 var(--editor-frame-width) 0;
2387
- grid-template-rows: auto;
2388
- }
2389
- ._Editor--hidePlugins_frglt_73 ._EditorLayout-inner_frglt_41,
2390
- ._EditorLayout_frglt_37:not(._EditorLayout--navBarVisible_frglt_74) ._EditorLayout-inner_frglt_41 {
2391
- --editor-side-nav-width: 0;
2392
- }
2393
- }
2394
- ._EditorLayout_frglt_37:not(._EditorLayout--navBarVisible_frglt_74) ._EditorLayout-inner_frglt_41 {
2395
- --editor-side-nav-width: 0;
2396
- }
2397
- ._EditorLayout--mounted_frglt_83 ._EditorLayout-inner_frglt_41 {
2398
- --editor-side-bar-width: 186px;
2399
- }
2400
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2401
- grid-template-rows: auto 60% 0 0 var(--editor-side-nav-width);
2402
- }
2403
- ._EditorLayout--mobilePanelCustomHeight_frglt_92._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2404
- grid-template-rows: auto var(--editor-mobile-panel-height, 60%) 0 0 var(--editor-side-nav-width);
2405
- }
2406
- @media (min-width: 638px) {
2407
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2408
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) 0;
2409
- grid-template-rows: auto;
2410
- }
2411
- }
2412
- ._EditorLayout--mobilePanelHeightMinContent_frglt_110._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2413
- grid-template-rows: auto min-content 0 0 var(--editor-side-nav-width);
2414
- }
2415
- @media (min-width: 638px) {
2416
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41,
2417
- ._EditorLayout--mobilePanelCustomHeight_frglt_92._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41,
2418
- ._EditorLayout--mobilePanelHeightMinContent_frglt_110._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2419
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) 0;
2420
- grid-template-rows: auto;
2421
- }
2422
- }
2423
- @media (min-width: 638px) {
2424
- ._EditorLayout--rightSideBarVisible_frglt_132 ._EditorLayout-inner_frglt_41 {
2425
- grid-template-columns: var(--editor-side-nav-width) 0 var(--editor-frame-width) var(--editor-right-side-bar-width);
2426
- }
2427
- }
2428
- @media (min-width: 638px) {
2429
- ._EditorLayout--leftSideBarVisible_frglt_87._EditorLayout--rightSideBarVisible_frglt_132 ._EditorLayout-inner_frglt_41 {
2430
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) var(--editor-right-side-bar-width);
2431
- }
2432
- }
2433
- @media (min-width: 458px) {
2434
- ._EditorLayout-mounted_frglt_151 ._EditorLayout-inner_frglt_41 {
2435
- --editor-frame-width: minmax(266px, auto);
2436
- }
2437
- }
2438
- @media (min-width: 638px) {
2439
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2440
- --editor-side-bar-width: minmax(186px, 250px);
2441
- }
2442
- }
2443
- @media (min-width: 766px) {
2444
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2445
- --editor-frame-width: auto;
2446
- }
2447
- }
2448
- @media (min-width: 990px) {
2449
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2450
- --editor-side-bar-width: 256px;
2451
- }
2452
- }
2453
- @media (min-width: 1198px) {
2454
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2455
- --editor-side-bar-width: 274px;
2456
- }
2457
- }
2458
- @media (min-width: 1398px) {
2459
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2460
- --editor-side-bar-width: 290px;
2461
- }
2462
- }
2463
- @media (min-width: 1598px) {
2464
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2465
- --editor-side-bar-width: 320px;
2466
- }
2378
+ ._EditorLayout_1d9v5_26:not(._EditorLayout--navBarVisible_1d9v5_44) ._EditorLayout-inner_1d9v5_30 {
2379
+ --editor-header-height: 0px;
2380
+ grid-template-rows: 0 1fr;
2467
2381
  }
2468
- ._EditorLayout-nav_frglt_192 {
2469
- border-top: 1px solid var(--editor-border-subtle);
2382
+ ._EditorLayout-header_1d9v5_49 {
2383
+ align-items: center;
2470
2384
  background-color: var(--editor-surface-panel);
2471
- grid-area: sidenav;
2472
- overflow: hidden;
2473
- width: 100%;
2474
- }
2475
- @media (min-width: 638px) {
2476
- ._EditorLayout-nav_frglt_192 {
2477
- border-top: 0;
2478
- border-right: 1px solid var(--editor-border-subtle);
2479
- box-sizing: border-box;
2480
- }
2385
+ border-bottom: 1px solid var(--editor-border-subtle);
2386
+ box-sizing: border-box;
2387
+ display: grid;
2388
+ gap: 12px;
2389
+ grid-area: header;
2390
+ grid-template-columns: 1fr auto 1fr;
2391
+ padding: 0 12px;
2392
+ z-index: 11;
2481
2393
  }
2482
- ._Editor-fieldSideBarToolbar_frglt_208 {
2394
+ ._EditorLayout-headerStart_1d9v5_62 {
2483
2395
  align-items: center;
2484
- background: var(--editor-surface-panel);
2485
- border-bottom: 1px solid var(--editor-border-subtle);
2486
2396
  display: flex;
2487
2397
  gap: 8px;
2488
- justify-content: space-between;
2489
- padding: 8px 12px;
2398
+ justify-self: start;
2399
+ min-width: 0;
2490
2400
  }
2491
- ._Editor-fieldSideBarHistory_frglt_218 {
2492
- color: var(--editor-text-tertiary);
2401
+ ._EditorLayout-headerCenter_1d9v5_70 {
2402
+ align-items: center;
2493
2403
  display: flex;
2494
- gap: 2px;
2404
+ justify-content: center;
2405
+ justify-self: center;
2406
+ max-width: 480px;
2407
+ min-width: 0;
2408
+ width: clamp(160px, 40vw, 480px);
2495
2409
  }
2496
- ._Editor-fieldSideBarActions_frglt_224 {
2410
+ ._EditorLayout-headerEnd_1d9v5_81 {
2497
2411
  align-items: center;
2498
2412
  display: flex;
2499
2413
  gap: 8px;
2414
+ justify-self: end;
2415
+ min-width: 0;
2500
2416
  }
2501
- ._EditorLayout-mobilePanel_frglt_230 {
2502
- grid-area: mobilepanel;
2503
- background: var(--editor-surface-panel);
2504
- border-block-start: 1px solid var(--editor-border-subtle);
2505
- display: none;
2506
- flex-direction: column;
2507
- overflow: hidden;
2508
- }
2509
- ._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-mobilePanel_frglt_230 {
2417
+ ._EditorLayout-headerHistory_1d9v5_91 {
2418
+ align-items: center;
2510
2419
  display: flex;
2420
+ gap: 2px;
2511
2421
  }
2512
- @media (min-width: 638px) {
2513
- ._EditorLayout-mobilePanel_frglt_230,
2514
- ._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-mobilePanel_frglt_230 {
2422
+ @media (max-width: 637px) {
2423
+ ._EditorLayout-header_1d9v5_49 {
2424
+ grid-template-columns: 1fr auto;
2425
+ gap: 8px;
2426
+ }
2427
+ ._EditorLayout-headerCenter_1d9v5_70 {
2515
2428
  display: none;
2516
2429
  }
2517
2430
  }
2518
- ._EditorLayout-mobilePanelContent_frglt_250 {
2519
- flex: 1;
2520
- overflow-y: auto;
2521
- display: flex;
2522
- flex-direction: column;
2523
- }
2524
- ._EditorLayout-mobileDragHandle_frglt_257 {
2525
- display: flex;
2526
- align-items: center;
2527
- justify-content: center;
2528
- padding: 8px 0 4px;
2529
- cursor: grab;
2530
- touch-action: none;
2531
- flex-shrink: 0;
2532
- }
2533
- ._EditorLayout-mobileDragHandle_frglt_257:active {
2534
- cursor: grabbing;
2535
- }
2536
- ._EditorLayout-mobileDragHandlePill_frglt_271 {
2537
- width: 36px;
2538
- height: 4px;
2539
- border-radius: 2px;
2540
- background-color: var(--editor-border-subtle);
2541
- }
2542
- ._EditorPluginTab_frglt_278 {
2431
+ ._EditorPluginTab_1d9v5_110 {
2543
2432
  display: none;
2544
2433
  flex-grow: 1;
2545
2434
  max-height: 100%;
2546
2435
  }
2547
- ._EditorPluginTab--visible_frglt_284 {
2436
+ ._EditorPluginTab--visible_1d9v5_116 {
2548
2437
  display: flex;
2549
2438
  flex-direction: column;
2550
2439
  }
2551
- ._EditorPluginTab-body_frglt_289 {
2440
+ ._EditorPluginTab-body_1d9v5_121 {
2552
2441
  flex-grow: 1;
2553
2442
  max-height: 100%;
2554
2443
  }
@@ -2688,382 +2577,184 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2688
2577
  flex-shrink: 0;
2689
2578
  }
2690
2579
 
2691
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2692
- ._EditorCombobox-input_12a2a_4 {
2693
- background: transparent;
2694
- border: 0;
2695
- color: inherit;
2696
- flex: 1;
2697
- font: inherit;
2698
- font-size: var(--editor-font-size-xxs);
2699
- min-width: 0;
2700
- outline: none;
2580
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2581
+ ._EditorCanvas_1h1vv_1 {
2582
+ background: var(--editor-surface-sunken);
2583
+ display: flex;
2584
+ grid-area: editor;
2585
+ flex-direction: column;
2701
2586
  padding: 0;
2702
- width: 100%;
2703
- }
2704
- ._EditorCombobox-input_12a2a_4::placeholder {
2705
- color: var(--editor-text-tertiary);
2587
+ position: relative;
2588
+ overflow: hidden;
2706
2589
  }
2707
- ._EditorCombobox-trigger_12a2a_21 {
2708
- align-items: center;
2709
- background: transparent;
2710
- border: 0;
2711
- color: var(--editor-text-tertiary);
2712
- cursor: pointer;
2713
- display: inline-flex;
2714
- flex-shrink: 0;
2715
- height: 20px;
2716
- justify-content: center;
2717
- outline: none;
2590
+ ._EditorCanvas--fullScreen_1h1vv_11 {
2718
2591
  padding: 0;
2719
- width: 20px;
2592
+ overflow: hidden;
2720
2593
  }
2721
- @media (hover: hover) and (pointer: fine) {
2722
- ._EditorCombobox-trigger_12a2a_21:hover {
2723
- color: var(--editor-text-primary);
2594
+ @media (min-width: 1198px) {
2595
+ ._EditorCanvas--fullScreen_1h1vv_11 {
2596
+ padding: 0;
2724
2597
  }
2725
2598
  }
2726
- ._EditorCombobox-triggerIcon_12a2a_42 {
2727
- pointer-events: none;
2599
+ ._EditorCanvas--canvasFullScreen_1h1vv_31 {
2600
+ position: fixed;
2601
+ inset: 0;
2602
+ z-index: 1000;
2603
+ padding: 0 !important;
2728
2604
  }
2729
- ._EditorCombobox-positioner_12a2a_46 {
2730
- z-index: 50;
2605
+ ._EditorCanvas-inner_1h1vv_38 {
2606
+ display: flex;
2607
+ flex-direction: column;
2608
+ height: 100%;
2609
+ min-width: 288px;
2610
+ position: relative;
2611
+ width: 100%;
2731
2612
  }
2732
- ._EditorCombobox-content_12a2a_50 {
2733
- background: var(--editor-surface-raised);
2734
- border: 1px solid var(--editor-border-subtle);
2735
- border-radius: var(--editor-radius-md);
2736
- box-shadow: var(--editor-shadow-md);
2737
- color: var(--editor-text-primary);
2738
- font-family: var(--editor-font-family);
2739
- font-size: var(--editor-font-size-xxs);
2740
- max-height: var(--available-height);
2741
- min-width: var(--anchor-width);
2613
+ ._EditorCanvas-bar_1h1vv_50 {
2614
+ flex-shrink: 0;
2615
+ width: 100%;
2616
+ z-index: 1;
2617
+ }
2618
+ ._EditorCanvas-zoomViewport_1h1vv_60 {
2619
+ flex: 1;
2620
+ min-height: 0;
2742
2621
  overflow: hidden;
2743
- transform-origin: var(--transform-origin);
2744
- z-index: 50;
2622
+ position: relative;
2745
2623
  }
2746
- ._EditorCombobox-list_12a2a_65 {
2747
- max-height: inherit;
2748
- overflow-y: auto;
2749
- padding: 4px;
2624
+ ._EditorCanvas-rootColumn_1h1vv_69 {
2625
+ box-sizing: content-box;
2750
2626
  }
2751
- ._EditorCombobox-item_12a2a_71 {
2752
- align-items: center;
2753
- border-radius: var(--editor-radius-sm);
2754
- cursor: pointer;
2627
+ ._EditorCanvas-frame_1h1vv_74 {
2755
2628
  display: flex;
2756
- font: inherit;
2757
- font-size: var(--editor-font-size-xxs);
2758
- gap: 8px;
2759
- outline: none;
2760
- padding: 6px 8px 6px 28px;
2761
- position: relative;
2762
- user-select: none;
2629
+ flex-direction: column;
2630
+ min-width: 288px;
2763
2631
  }
2764
- ._EditorCombobox-item_12a2a_71[data-highlighted],
2765
- ._EditorCombobox-item_12a2a_71[data-selected] {
2766
- background: var(--editor-accent-soft);
2767
- color: var(--editor-text-accent);
2632
+ @media (min-width: 1198px) {
2633
+ ._EditorCanvas-frame_1h1vv_74 {
2634
+ min-width: unset;
2635
+ }
2768
2636
  }
2769
- ._EditorCombobox-item_12a2a_71[data-disabled] {
2770
- cursor: not-allowed;
2771
- opacity: 0.5;
2637
+ ._EditorCanvas-root_1h1vv_69 {
2638
+ background: var(--editor-surface-panel);
2639
+ outline: 1px solid var(--editor-border-subtle);
2640
+ box-shadow: var(--editor-shadow-lg);
2641
+ border-radius: var(--editor-radius-md);
2642
+ flex: 1;
2772
2643
  pointer-events: none;
2644
+ opacity: 0;
2645
+ min-height: 100%;
2773
2646
  }
2774
- ._EditorCombobox-itemIndicator_12a2a_97 {
2647
+ ._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-root_1h1vv_69 {
2648
+ pointer-events: unset;
2649
+ opacity: 1;
2650
+ }
2651
+ ._EditorCanvas-loader_1h1vv_103 {
2775
2652
  align-items: center;
2776
- color: var(--editor-accent-strong);
2777
- display: inline-flex;
2653
+ color: var(--editor-text-tertiary);
2654
+ display: flex;
2655
+ inset: 0;
2778
2656
  justify-content: center;
2779
- left: 8px;
2780
2657
  pointer-events: none;
2781
2658
  position: absolute;
2782
- width: 14px;
2659
+ transition: opacity 250ms ease-out;
2660
+ opacity: 0;
2783
2661
  }
2784
- ._EditorCombobox-empty_12a2a_110:not(:empty) {
2785
- color: var(--editor-text-tertiary);
2786
- font-size: var(--editor-font-size-xxs);
2787
- padding: 12px 8px;
2788
- text-align: center;
2662
+ ._EditorCanvas--showLoader_1h1vv_115 ._EditorCanvas-loader_1h1vv_103 {
2663
+ opacity: 1;
2789
2664
  }
2790
-
2791
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
2792
- ._BrowserBar_x10eb_1 {
2665
+ ._EditorCanvas--showLoader_1h1vv_115._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-loader_1h1vv_103 {
2666
+ opacity: 0;
2667
+ transition: none;
2668
+ }
2669
+ ._EditorCanvas-toolbar_1h1vv_128 {
2793
2670
  align-items: center;
2794
2671
  background: var(--editor-surface-panel);
2795
2672
  border: 1px solid var(--editor-border-subtle);
2796
- border-bottom: 0;
2797
- border-radius: var(--editor-radius-md) var(--editor-radius-md) 0 0;
2673
+ border-radius: var(--editor-radius-md);
2674
+ bottom: 16px;
2675
+ box-shadow: var(--editor-shadow-md);
2798
2676
  display: flex;
2799
- gap: 8px;
2800
- padding: 8px 10px;
2801
- width: 100%;
2677
+ gap: 2px;
2678
+ left: 50%;
2679
+ padding: 4px;
2680
+ position: absolute;
2681
+ transform: translateX(-50%);
2682
+ z-index: 10;
2802
2683
  }
2803
- ._BrowserBar-urlTrigger_x10eb_16 {
2804
- align-items: center;
2805
- background: var(--editor-surface-sunken);
2806
- border: 1px solid var(--editor-border-subtle);
2807
- border-radius: 9999px;
2808
- color: var(--editor-text-primary);
2684
+ ._EditorCanvas-toolbarDivider_1h1vv_144 {
2685
+ background: var(--editor-border-subtle);
2686
+ flex-shrink: 0;
2687
+ height: 20px;
2688
+ margin: 0 4px;
2689
+ width: 1px;
2690
+ }
2691
+ ._EditorCanvas-zoomLevel_1h1vv_152 {
2692
+ color: var(--editor-text-secondary);
2809
2693
  display: inline-flex;
2810
- flex: 1;
2811
2694
  font-size: var(--editor-font-size-xxs);
2812
- gap: 8px;
2813
- justify-content: flex-start;
2814
- min-width: 0;
2695
+ font-variant-numeric: tabular-nums;
2696
+ justify-content: center;
2697
+ min-width: 38px;
2698
+ padding: 0 4px;
2699
+ user-select: none;
2700
+ }
2701
+
2702
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
2703
+ ._Sidebar_1ynke_8 {
2704
+ background: var(--editor-surface-panel);
2705
+ bottom: 0;
2706
+ display: flex;
2707
+ flex-direction: column;
2815
2708
  overflow: hidden;
2816
- padding: 4px 12px;
2817
- width: 100%;
2709
+ position: absolute;
2710
+ top: var(--editor-header-height, 0px);
2711
+ width: var(--editor-side-bar-width, 280px);
2712
+ z-index: 10;
2818
2713
  }
2819
- @media (hover: hover) and (pointer: fine) {
2820
- ._BrowserBar-urlTrigger_x10eb_16:hover {
2821
- background: var(--editor-surface-hover);
2822
- border-color: var(--editor-border-default);
2823
- }
2824
- }
2825
- ._BrowserBar-urlTrigger_x10eb_16:focus-within {
2826
- border-color: var(--editor-border-default);
2827
- box-shadow: var(--editor-ring);
2828
- outline: none;
2829
- }
2830
- ._BrowserBar-urlIcon_x10eb_46 {
2831
- color: var(--editor-text-tertiary);
2832
- flex-shrink: 0;
2833
- }
2834
- ._BrowserBar-urlText_x10eb_51 {
2835
- color: var(--editor-text-primary);
2836
- display: inline-flex;
2837
- flex: 1;
2838
- gap: 8px;
2839
- min-width: 0;
2840
- overflow: hidden;
2841
- text-align: left;
2842
- text-overflow: ellipsis;
2843
- white-space: nowrap;
2844
- }
2845
- ._BrowserBar-urlInput_x10eb_63 {
2846
- color: var(--editor-text-primary);
2847
- flex: 1;
2848
- min-width: 0;
2849
- }
2850
- ._BrowserBar-itemPath_x10eb_69 {
2851
- color: var(--editor-text-primary);
2852
- flex-shrink: 0;
2853
- }
2854
- ._BrowserBar-itemTitle_x10eb_74 {
2855
- color: var(--editor-text-tertiary);
2856
- margin-left: auto;
2857
- overflow: hidden;
2858
- text-overflow: ellipsis;
2859
- white-space: nowrap;
2860
- }
2861
- ._BrowserBar-actions_x10eb_82 {
2862
- align-items: center;
2863
- display: flex;
2864
- flex-shrink: 0;
2865
- gap: 2px;
2866
- }
2867
- ._BrowserBar-deviceIcon_x10eb_89 {
2868
- color: var(--editor-text-primary);
2869
- display: inline-flex;
2870
- }
2871
-
2872
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2873
- ._EditorCanvas_es8bv_1 {
2874
- background: var(--editor-surface-sunken);
2875
- display: flex;
2876
- grid-area: editor;
2877
- flex-direction: column;
2878
- padding: calc(var(--editor-space-px) * 0.5);
2879
- position: relative;
2880
- overflow: hidden;
2881
- }
2882
- @media (min-width: 1198px) {
2883
- ._EditorCanvas_es8bv_1 {
2884
- padding: calc(var(--editor-space-px) * 0.75);
2885
- padding-top: calc(var(--editor-space-px) * 0.25);
2886
- }
2887
- ._EditorCanvas_es8bv_1:not(._EditorCanvas_es8bv_1:has(._EditorCanvas-controls_es8bv_17)) {
2888
- padding-top: calc(var(--editor-space-px) * 0.75);
2889
- }
2890
- }
2891
- ._EditorCanvas--fullScreen_es8bv_22 {
2892
- padding: 0;
2893
- overflow: hidden;
2894
- }
2895
- @media (min-width: 1198px) {
2896
- ._EditorCanvas--fullScreen_es8bv_22 {
2897
- padding: 0;
2898
- }
2714
+ ._Sidebar--left_1ynke_20 {
2715
+ border-right: 1px solid var(--editor-border-subtle);
2716
+ left: 0;
2899
2717
  }
2900
- ._EditorCanvas-inner_es8bv_33 {
2901
- display: flex;
2902
- height: 100%;
2903
- justify-content: center;
2904
- min-width: 288px;
2905
- position: relative;
2906
- width: 100%;
2718
+ ._Sidebar--right_1ynke_25 {
2719
+ border-left: 1px solid var(--editor-border-subtle);
2720
+ right: 0;
2907
2721
  }
2908
- ._EditorCanvas-rootColumn_es8bv_46 {
2909
- box-sizing: content-box;
2722
+ ._Sidebar-body_1ynke_30 {
2910
2723
  display: flex;
2911
- flex-direction: column;
2912
- min-width: 321px;
2913
- height: 100%;
2914
- transform-origin: top;
2915
- }
2916
- @media (min-width: 1198px) {
2917
- ._EditorCanvas-rootColumn_es8bv_46 {
2918
- min-width: unset;
2919
- }
2920
- }
2921
- @media (prefers-reduced-motion: reduce) {
2922
- ._EditorCanvas-rootColumn_es8bv_46 {
2923
- transition: none !important;
2924
- }
2925
- }
2926
- ._EditorCanvas-root_es8bv_46 {
2927
- background: var(--editor-surface-panel);
2928
- outline: 1px solid var(--editor-border-subtle);
2929
- box-shadow: var(--editor-shadow-lg);
2930
- border-radius: 0 0 var(--editor-radius-md) var(--editor-radius-md);
2931
2724
  flex: 1;
2932
- pointer-events: none;
2933
- opacity: 0;
2934
- }
2935
- @media (prefers-reduced-motion: reduce) {
2936
- ._EditorCanvas-root_es8bv_46 {
2937
- transition: none !important;
2938
- }
2939
- }
2940
- ._EditorCanvas--ready_es8bv_83 ._EditorCanvas-root_es8bv_46 {
2941
- pointer-events: unset;
2942
- opacity: 1;
2943
- }
2944
- ._EditorCanvas-loader_es8bv_88 {
2945
- align-items: center;
2946
- color: var(--editor-text-tertiary);
2947
- display: flex;
2948
- inset: 0;
2949
- justify-content: center;
2950
- pointer-events: none;
2951
- position: absolute;
2952
- transition: opacity 250ms ease-out;
2953
- opacity: 0;
2954
- }
2955
- ._EditorCanvas--showLoader_es8bv_100 ._EditorCanvas-loader_es8bv_88 {
2956
- opacity: 1;
2957
- }
2958
- ._EditorCanvas--showLoader_es8bv_100._EditorCanvas--ready_es8bv_83 ._EditorCanvas-loader_es8bv_88 {
2959
- opacity: 0;
2960
- transition: none;
2961
- }
2962
- ._EditorCanvas-browserBar_es8bv_109 {
2963
- flex-shrink: 0;
2964
- width: 100%;
2965
- }
2966
- ._EditorCanvas-zoomControls_es8bv_114 {
2967
- align-items: center;
2968
- background: var(--editor-surface-panel);
2969
- border: 1px solid var(--editor-border-subtle);
2970
- border-radius: var(--editor-radius-md);
2971
- bottom: 16px;
2972
- box-shadow: var(--editor-shadow-md);
2973
- display: flex;
2974
- gap: 2px;
2975
- padding: 4px;
2976
- position: absolute;
2977
- right: 16px;
2978
- z-index: 10;
2979
- }
2980
-
2981
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/ResizeHandle/styles.module.css/#css-module-data */
2982
- @media (min-width: 766px) {
2983
- ._ResizeHandle_1u3rv_2 {
2984
- position: absolute;
2985
- width: 5px;
2986
- height: 100%;
2987
- cursor: col-resize;
2988
- z-index: 10;
2989
- background: transparent;
2990
- top: 0;
2991
- }
2992
- ._ResizeHandle_1u3rv_2:hover {
2993
- background: var(--editor-accent-soft);
2994
- }
2995
- ._ResizeHandle--left_1u3rv_16 {
2996
- right: -3px;
2997
- }
2998
- ._ResizeHandle--right_1u3rv_20 {
2999
- left: -3px;
3000
- }
3001
- }
3002
-
3003
- /* components/Editor/components/ResizeHandle/styles.css */
3004
- [data-resize-overlay] {
3005
- position: fixed;
3006
- top: 0;
3007
- left: 0;
3008
- right: 0;
3009
- bottom: 0;
3010
- z-index: 9999;
3011
- cursor: col-resize;
3012
- }
3013
-
3014
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
3015
- ._Sidebar_14k7q_1 {
3016
- border-block-start: 1px solid var(--editor-border-subtle);
3017
- position: relative;
3018
- display: none;
3019
2725
  flex-direction: column;
2726
+ min-height: 0;
3020
2727
  overflow-y: auto;
3021
2728
  }
3022
- ._Sidebar--isVisible_14k7q_9 {
3023
- display: flex;
3024
- }
3025
- ._Sidebar--left_14k7q_13 {
3026
- background: var(--editor-surface-panel);
3027
- grid-area: left;
3028
- }
3029
- @media (min-width: 766px) {
3030
- ._Sidebar--left_14k7q_13 {
3031
- border-block-start: 0;
3032
- border-inline-end: 1px solid var(--editor-border-subtle);
2729
+ @media (max-width: 637px) {
2730
+ ._Sidebar_1ynke_8 {
2731
+ bottom: 0;
2732
+ left: 0;
2733
+ right: 0;
2734
+ top: auto;
2735
+ max-height: 50dvh;
2736
+ width: 100%;
3033
2737
  }
3034
- }
3035
- ._Sidebar--right_14k7q_25 {
3036
- background: var(--editor-surface-panel);
3037
- grid-area: right;
3038
- }
3039
- @media (min-width: 766px) {
3040
- ._Sidebar--right_14k7q_25 {
3041
- border-block-start: 0;
3042
- border-inline-start: 1px solid var(--editor-border-subtle);
2738
+ ._Sidebar--left_1ynke_20 {
2739
+ border-right: 0;
2740
+ border-top: 1px solid var(--editor-border-subtle);
2741
+ }
2742
+ ._Sidebar--right_1ynke_25 {
2743
+ border-left: 0;
2744
+ border-top: 1px solid var(--editor-border-subtle);
2745
+ z-index: 11;
3043
2746
  }
3044
- }
3045
- ._Sidebar-resizeHandle_14k7q_37 {
3046
- position: absolute;
3047
- height: 100%;
3048
- }
3049
- ._Sidebar--left_14k7q_13 + ._Sidebar-resizeHandle_14k7q_37 {
3050
- grid-area: left;
3051
- justify-self: end;
3052
- }
3053
- ._Sidebar--right_14k7q_25 + ._Sidebar-resizeHandle_14k7q_37 {
3054
- grid-area: right;
3055
- justify-self: start;
3056
2747
  }
3057
2748
 
3058
2749
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Nav/styles.module.css/#css-module-data */
3059
- ._Nav_1g4tk_1 {
2750
+ ._Nav_1ft0o_1 {
3060
2751
  display: flex;
3061
2752
  align-items: center;
3062
2753
  padding: 10px 0;
3063
2754
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
3064
2755
  }
3065
2756
  @media (min-width: 638px) {
3066
- ._Nav_1g4tk_1 {
2757
+ ._Nav_1ft0o_1 {
3067
2758
  flex-direction: column;
3068
2759
  height: 100%;
3069
2760
  padding: 0;
@@ -3071,7 +2762,22 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3071
2762
  align-items: stretch;
3072
2763
  }
3073
2764
  }
3074
- ._Nav-list_1g4tk_18 {
2765
+ ._Nav--horizontal_1ft0o_20,
2766
+ ._Nav--horizontal_1ft0o_20 {
2767
+ align-items: center;
2768
+ flex-direction: row;
2769
+ height: auto;
2770
+ padding: 0;
2771
+ }
2772
+ @media (min-width: 638px) {
2773
+ ._Nav--horizontal_1ft0o_20 {
2774
+ flex-direction: row;
2775
+ height: auto;
2776
+ padding: 0;
2777
+ align-items: center;
2778
+ }
2779
+ }
2780
+ ._Nav-list_1ft0o_36 {
3075
2781
  display: flex;
3076
2782
  list-style: none;
3077
2783
  margin: 0;
@@ -3082,7 +2788,7 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3082
2788
  flex: 1;
3083
2789
  }
3084
2790
  @media (min-width: 638px) {
3085
- ._Nav-list_1g4tk_18 {
2791
+ ._Nav-list_1ft0o_36 {
3086
2792
  padding-top: 16px;
3087
2793
  flex-direction: column;
3088
2794
  gap: 4px;
@@ -3093,18 +2799,40 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3093
2799
  justify-content: flex-start;
3094
2800
  }
3095
2801
  }
3096
- ._Nav-footer_1g4tk_42 {
2802
+ ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2803
+ flex-direction: row;
2804
+ gap: 4px;
2805
+ padding-top: 0;
2806
+ width: auto;
2807
+ flex: 0 0 auto;
2808
+ overflow-x: auto;
2809
+ overflow-y: hidden;
2810
+ justify-content: flex-start;
2811
+ }
2812
+ @media (min-width: 638px) {
2813
+ ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2814
+ flex-direction: row;
2815
+ gap: 4px;
2816
+ padding-top: 0;
2817
+ width: auto;
2818
+ flex: 0 0 auto;
2819
+ overflow-x: auto;
2820
+ overflow-y: hidden;
2821
+ justify-content: flex-start;
2822
+ }
2823
+ }
2824
+ ._Nav-footer_1ft0o_83 {
3097
2825
  display: none;
3098
2826
  }
3099
2827
  @media (min-width: 638px) {
3100
- ._Nav-footer_1g4tk_42 {
2828
+ ._Nav-footer_1ft0o_83 {
3101
2829
  display: flex;
3102
2830
  align-items: center;
3103
2831
  justify-content: center;
3104
2832
  padding: 12px 0;
3105
2833
  }
3106
2834
  }
3107
- ._NavItem-link_1g4tk_55 {
2835
+ ._NavItem-link_1ft0o_96 {
3108
2836
  text-align: center;
3109
2837
  align-items: center;
3110
2838
  justify-content: center;
@@ -3123,13 +2851,13 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3123
2851
  position: relative;
3124
2852
  }
3125
2853
  @media (min-width: 638px) {
3126
- ._NavItem-link_1g4tk_55 {
2854
+ ._NavItem-link_1ft0o_96 {
3127
2855
  padding: 4px;
3128
2856
  width: 32px;
3129
2857
  height: 32px;
3130
2858
  }
3131
2859
  }
3132
- ._NavItem-linkLabel_1g4tk_83 {
2860
+ ._NavItem-linkLabel_1ft0o_124 {
3133
2861
  clip: rect(0 0 0 0);
3134
2862
  clip-path: inset(100%);
3135
2863
  height: 1px;
@@ -3138,64 +2866,51 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3138
2866
  white-space: nowrap;
3139
2867
  width: 1px;
3140
2868
  }
3141
- ._NavItem_1g4tk_55:first-of-type {
2869
+ ._NavItem_1ft0o_96:first-of-type {
3142
2870
  padding-left: 0;
3143
2871
  }
3144
- ._NavItem_1g4tk_55:last-of-type {
2872
+ ._NavItem_1ft0o_96:last-of-type {
3145
2873
  padding-right: 0;
3146
2874
  }
3147
2875
  @media (min-width: 638px) {
3148
- ._NavItem_1g4tk_55:first-of-type,
3149
- ._NavItem_1g4tk_55:last-of-type {
2876
+ ._NavItem_1ft0o_96:first-of-type,
2877
+ ._NavItem_1ft0o_96:last-of-type {
3150
2878
  padding: 0;
3151
2879
  }
3152
2880
  }
3153
- ._NavItem-linkIcon_1g4tk_108 {
2881
+ ._NavItem-linkIcon_1ft0o_149 {
3154
2882
  height: 18px;
3155
2883
  width: 18px;
3156
2884
  display: flex;
3157
2885
  align-items: center;
3158
2886
  justify-content: center;
3159
2887
  }
3160
- ._NavItem-linkIcon_1g4tk_108 svg {
2888
+ ._NavItem-linkIcon_1ft0o_149 svg {
3161
2889
  width: 18px;
3162
2890
  height: 18px;
3163
2891
  }
3164
- ._NavItem--active_1g4tk_121 > ._NavItem-link_1g4tk_55 {
2892
+ ._NavItem--active_1ft0o_162 > ._NavItem-link_1ft0o_96 {
3165
2893
  background-color: var(--editor-accent-soft);
3166
2894
  color: var(--editor-text-accent);
3167
2895
  }
3168
- ._NavItem_1g4tk_55:not(._NavItem--active_1g4tk_121) > ._NavItem-link_1g4tk_55:hover {
2896
+ ._NavItem_1ft0o_96:not(._NavItem--active_1ft0o_162) > ._NavItem-link_1ft0o_96:hover {
3169
2897
  background-color: var(--editor-surface-hover);
3170
2898
  color: var(--editor-text-accent);
3171
2899
  }
3172
2900
  @media (min-width: 638px) {
3173
- ._NavItem--mobileOnly_1g4tk_132 {
2901
+ ._NavItem--mobileOnly_1ft0o_173 {
3174
2902
  display: none;
3175
2903
  }
3176
2904
  }
3177
- ._NavItem--desktopOnly_1g4tk_137 {
2905
+ ._NavItem--desktopOnly_1ft0o_178 {
3178
2906
  display: none;
3179
2907
  }
3180
2908
  @media (min-width: 638px) {
3181
- ._NavItem--desktopOnly_1g4tk_137 {
2909
+ ._NavItem--desktopOnly_1ft0o_178 {
3182
2910
  display: block;
3183
2911
  }
3184
2912
  }
3185
2913
 
3186
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
3187
- ._BlocksPlugin_15ud0_1 {
3188
- padding: 16px;
3189
- height: 100%;
3190
- overflow-y: auto;
3191
- box-sizing: border-box;
3192
- scrollbar-width: none;
3193
- -ms-overflow-style: none;
3194
- }
3195
- ._BlocksPlugin_15ud0_1::-webkit-scrollbar {
3196
- display: none;
3197
- }
3198
-
3199
2914
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/fields/styles.module.css/#css-module-data */
3200
2915
  ._FieldsPlugin_262zt_1 {
3201
2916
  background: white;
@@ -3216,6 +2931,185 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3216
2931
  }
3217
2932
  }
3218
2933
 
2934
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2935
+ ._EditorCombobox-input_12a2a_4 {
2936
+ background: transparent;
2937
+ border: 0;
2938
+ color: inherit;
2939
+ flex: 1;
2940
+ font: inherit;
2941
+ font-size: var(--editor-font-size-xxs);
2942
+ min-width: 0;
2943
+ outline: none;
2944
+ padding: 0;
2945
+ width: 100%;
2946
+ }
2947
+ ._EditorCombobox-input_12a2a_4::placeholder {
2948
+ color: var(--editor-text-tertiary);
2949
+ }
2950
+ ._EditorCombobox-trigger_12a2a_21 {
2951
+ align-items: center;
2952
+ background: transparent;
2953
+ border: 0;
2954
+ color: var(--editor-text-tertiary);
2955
+ cursor: pointer;
2956
+ display: inline-flex;
2957
+ flex-shrink: 0;
2958
+ height: 20px;
2959
+ justify-content: center;
2960
+ outline: none;
2961
+ padding: 0;
2962
+ width: 20px;
2963
+ }
2964
+ @media (hover: hover) and (pointer: fine) {
2965
+ ._EditorCombobox-trigger_12a2a_21:hover {
2966
+ color: var(--editor-text-primary);
2967
+ }
2968
+ }
2969
+ ._EditorCombobox-triggerIcon_12a2a_42 {
2970
+ pointer-events: none;
2971
+ }
2972
+ ._EditorCombobox-positioner_12a2a_46 {
2973
+ z-index: 50;
2974
+ }
2975
+ ._EditorCombobox-content_12a2a_50 {
2976
+ background: var(--editor-surface-raised);
2977
+ border: 1px solid var(--editor-border-subtle);
2978
+ border-radius: var(--editor-radius-md);
2979
+ box-shadow: var(--editor-shadow-md);
2980
+ color: var(--editor-text-primary);
2981
+ font-family: var(--editor-font-family);
2982
+ font-size: var(--editor-font-size-xxs);
2983
+ max-height: var(--available-height);
2984
+ min-width: var(--anchor-width);
2985
+ overflow: hidden;
2986
+ transform-origin: var(--transform-origin);
2987
+ z-index: 50;
2988
+ }
2989
+ ._EditorCombobox-list_12a2a_65 {
2990
+ max-height: inherit;
2991
+ overflow-y: auto;
2992
+ padding: 4px;
2993
+ }
2994
+ ._EditorCombobox-item_12a2a_71 {
2995
+ align-items: center;
2996
+ border-radius: var(--editor-radius-sm);
2997
+ cursor: pointer;
2998
+ display: flex;
2999
+ font: inherit;
3000
+ font-size: var(--editor-font-size-xxs);
3001
+ gap: 8px;
3002
+ outline: none;
3003
+ padding: 6px 8px 6px 28px;
3004
+ position: relative;
3005
+ user-select: none;
3006
+ }
3007
+ ._EditorCombobox-item_12a2a_71[data-highlighted],
3008
+ ._EditorCombobox-item_12a2a_71[data-selected] {
3009
+ background: var(--editor-accent-soft);
3010
+ color: var(--editor-text-accent);
3011
+ }
3012
+ ._EditorCombobox-item_12a2a_71[data-disabled] {
3013
+ cursor: not-allowed;
3014
+ opacity: 0.5;
3015
+ pointer-events: none;
3016
+ }
3017
+ ._EditorCombobox-itemIndicator_12a2a_97 {
3018
+ align-items: center;
3019
+ color: var(--editor-accent-strong);
3020
+ display: inline-flex;
3021
+ justify-content: center;
3022
+ left: 8px;
3023
+ pointer-events: none;
3024
+ position: absolute;
3025
+ width: 14px;
3026
+ }
3027
+ ._EditorCombobox-empty_12a2a_110:not(:empty) {
3028
+ color: var(--editor-text-tertiary);
3029
+ font-size: var(--editor-font-size-xxs);
3030
+ padding: 12px 8px;
3031
+ text-align: center;
3032
+ }
3033
+
3034
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
3035
+ ._BrowserBar_ey7dt_3 {
3036
+ align-items: center;
3037
+ display: flex;
3038
+ gap: 8px;
3039
+ width: 100%;
3040
+ }
3041
+ ._BrowserBar-urlTrigger_ey7dt_13 {
3042
+ align-items: center;
3043
+ background: var(--editor-surface-sunken);
3044
+ border: 1px solid var(--editor-border-subtle);
3045
+ border-radius: 9999px;
3046
+ color: var(--editor-text-primary);
3047
+ display: inline-flex;
3048
+ flex: 1;
3049
+ font-size: var(--editor-font-size-xxs);
3050
+ gap: 8px;
3051
+ justify-content: flex-start;
3052
+ min-width: 0;
3053
+ overflow: hidden;
3054
+ padding: 4px 12px;
3055
+ width: 100%;
3056
+ }
3057
+ @media (hover: hover) and (pointer: fine) {
3058
+ ._BrowserBar-urlTrigger_ey7dt_13:hover {
3059
+ background: var(--editor-surface-hover);
3060
+ border-color: var(--editor-border-default);
3061
+ }
3062
+ }
3063
+ ._BrowserBar-urlTrigger_ey7dt_13:focus-within {
3064
+ border-color: var(--editor-border-default);
3065
+ box-shadow: var(--editor-ring);
3066
+ outline: none;
3067
+ }
3068
+ ._BrowserBar-urlIcon_ey7dt_43 {
3069
+ color: var(--editor-text-tertiary);
3070
+ flex-shrink: 0;
3071
+ }
3072
+ ._BrowserBar-urlText_ey7dt_48 {
3073
+ color: var(--editor-text-primary);
3074
+ display: inline-flex;
3075
+ flex: 1;
3076
+ gap: 8px;
3077
+ min-width: 0;
3078
+ overflow: hidden;
3079
+ text-align: left;
3080
+ text-overflow: ellipsis;
3081
+ white-space: nowrap;
3082
+ }
3083
+ ._BrowserBar-urlInput_ey7dt_60 {
3084
+ color: var(--editor-text-primary);
3085
+ flex: 1;
3086
+ min-width: 0;
3087
+ }
3088
+ ._BrowserBar-itemPath_ey7dt_66 {
3089
+ color: var(--editor-text-primary);
3090
+ flex-shrink: 0;
3091
+ }
3092
+ ._BrowserBar-itemTitle_ey7dt_71 {
3093
+ color: var(--editor-text-tertiary);
3094
+ margin-left: auto;
3095
+ overflow: hidden;
3096
+ text-overflow: ellipsis;
3097
+ white-space: nowrap;
3098
+ }
3099
+
3100
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
3101
+ ._BlocksPlugin_15ud0_1 {
3102
+ padding: 16px;
3103
+ height: 100%;
3104
+ overflow-y: auto;
3105
+ box-sizing: border-box;
3106
+ scrollbar-width: none;
3107
+ -ms-overflow-style: none;
3108
+ }
3109
+ ._BlocksPlugin_15ud0_1::-webkit-scrollbar {
3110
+ display: none;
3111
+ }
3112
+
3219
3113
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/outline/styles.module.css/#css-module-data */
3220
3114
  ._OutlinePlugin_q92j6_1 {
3221
3115
  padding: 16px;