@reacteditor/core 0.0.15 → 0.0.16

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.
@@ -2174,12 +2174,13 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2174
2174
  }
2175
2175
 
2176
2176
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Preview/styles.module.css/#css-module-data */
2177
- ._EditorPreview_xou64_1 {
2177
+ ._EditorPreview_1ybfe_1 {
2178
2178
  position: relative;
2179
2179
  height: 100%;
2180
2180
  }
2181
- ._EditorPreview-frame_xou64_6 {
2181
+ ._EditorPreview-frame_1ybfe_6 {
2182
2182
  border: none;
2183
+ border-radius: var(--editor-radius-md);
2183
2184
  height: 100%;
2184
2185
  width: 100%;
2185
2186
  }
@@ -2342,100 +2343,262 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2342
2343
  }
2343
2344
 
2344
2345
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Layout/styles.module.css/#css-module-data */
2345
- ._Editor_1d9v5_8 {
2346
+ ._Editor_l0swf_19 {
2346
2347
  --editor-space-px: 16px;
2347
2348
  color: var(--editor-text-primary);
2348
2349
  font-family: var(--editor-font-family);
2349
2350
  overflow-x: hidden;
2350
2351
  }
2351
2352
  @media (min-width: 766px) {
2352
- ._Editor_1d9v5_8 {
2353
+ ._Editor_l0swf_19 {
2353
2354
  overflow-x: auto;
2354
2355
  }
2355
2356
  }
2356
- ._Editor-portal_1d9v5_21 {
2357
+ ._Editor-portal_l0swf_32 {
2357
2358
  position: relative;
2358
2359
  z-index: 2;
2359
2360
  }
2360
- ._EditorLayout_1d9v5_26 {
2361
+ ._EditorLayout_l0swf_37 {
2361
2362
  height: 100dvh;
2362
2363
  }
2363
- ._EditorLayout-inner_1d9v5_30 {
2364
- --editor-header-height: 44px;
2365
- --editor-side-bar-width: 280px;
2364
+ ._EditorLayout-inner_l0swf_41 {
2365
+ --editor-frame-width: auto;
2366
+ --editor-header-height: min-content;
2367
+ --editor-side-bar-width: 0px;
2368
+ --editor-left-side-bar-width: var( --editor-user-left-side-bar-width, var(--editor-side-bar-width) );
2369
+ --editor-right-side-bar-width: var( --editor-user-right-side-bar-width, var(--editor-side-bar-width) );
2366
2370
  background-color: var(--editor-surface-app);
2367
2371
  display: grid;
2368
- grid-template-areas: "header" "editor";
2369
- grid-template-columns: 1fr;
2370
- grid-template-rows: var(--editor-header-height) 1fr;
2372
+ grid-template-areas: "header" "editor" "mobilepanel" "left" "right";
2373
+ grid-template-columns: var(--editor-frame-width);
2374
+ grid-template-rows: var(--editor-header-height) auto 0 0 0;
2371
2375
  height: 100%;
2372
2376
  position: relative;
2377
+ transition: none;
2373
2378
  z-index: 0;
2374
2379
  overflow: hidden;
2375
2380
  }
2376
- ._EditorLayout_1d9v5_26:not(._EditorLayout--navBarVisible_1d9v5_44) ._EditorLayout-inner_1d9v5_30 {
2377
- --editor-header-height: 0px;
2378
- grid-template-rows: 0 1fr;
2381
+ @media (min-width: 638px) {
2382
+ ._EditorLayout-inner_l0swf_41 {
2383
+ grid-template-areas: "header header header" "left editor right";
2384
+ grid-template-columns: 0 var(--editor-frame-width) 0;
2385
+ grid-template-rows: var(--editor-header-height) auto;
2386
+ }
2387
+ ._Editor--hidePlugins_l0swf_72 ._EditorLayout-inner_l0swf_41,
2388
+ ._EditorLayout_l0swf_37:not(._EditorLayout--navBarVisible_l0swf_73) ._EditorLayout-inner_l0swf_41 {
2389
+ --editor-header-height: 0;
2390
+ }
2391
+ }
2392
+ ._EditorLayout_l0swf_37:not(._EditorLayout--navBarVisible_l0swf_73) ._EditorLayout-inner_l0swf_41 {
2393
+ --editor-header-height: 0;
2379
2394
  }
2380
- ._EditorLayout-header_1d9v5_49 {
2381
- align-items: center;
2395
+ ._EditorLayout--mounted_l0swf_82 ._EditorLayout-inner_l0swf_41 {
2396
+ --editor-side-bar-width: 186px;
2397
+ }
2398
+ ._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
2399
+ grid-template-rows: var(--editor-header-height) auto 60% 0 0;
2400
+ }
2401
+ ._EditorLayout--mobilePanelCustomHeight_l0swf_91._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
2402
+ grid-template-rows: var(--editor-header-height) auto var( --editor-mobile-panel-height, 60% ) 0 0;
2403
+ }
2404
+ @media (min-width: 638px) {
2405
+ ._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
2406
+ grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) 0;
2407
+ grid-template-rows: var(--editor-header-height) auto;
2408
+ }
2409
+ }
2410
+ ._EditorLayout--mobilePanelHeightMinContent_l0swf_109._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
2411
+ grid-template-rows: var(--editor-header-height) auto min-content 0 0;
2412
+ }
2413
+ @media (min-width: 638px) {
2414
+ ._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41,
2415
+ ._EditorLayout--mobilePanelCustomHeight_l0swf_91._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41,
2416
+ ._EditorLayout--mobilePanelHeightMinContent_l0swf_109._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
2417
+ grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) 0;
2418
+ grid-template-rows: var(--editor-header-height) auto;
2419
+ }
2420
+ }
2421
+ @media (min-width: 638px) {
2422
+ ._EditorLayout--rightSideBarVisible_l0swf_129 ._EditorLayout-inner_l0swf_41 {
2423
+ grid-template-columns: 0 var(--editor-frame-width) var(--editor-right-side-bar-width);
2424
+ }
2425
+ }
2426
+ @media (min-width: 638px) {
2427
+ ._EditorLayout--leftSideBarVisible_l0swf_86._EditorLayout--rightSideBarVisible_l0swf_129 ._EditorLayout-inner_l0swf_41 {
2428
+ grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) var(--editor-right-side-bar-width);
2429
+ }
2430
+ }
2431
+ @media (min-width: 458px) {
2432
+ ._EditorLayout-mounted_l0swf_146 ._EditorLayout-inner_l0swf_41 {
2433
+ --editor-frame-width: minmax(266px, auto);
2434
+ }
2435
+ }
2436
+ @media (min-width: 638px) {
2437
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2438
+ --editor-side-bar-width: minmax(186px, 250px);
2439
+ }
2440
+ }
2441
+ @media (min-width: 766px) {
2442
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2443
+ --editor-frame-width: auto;
2444
+ }
2445
+ }
2446
+ @media (min-width: 990px) {
2447
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2448
+ --editor-side-bar-width: 256px;
2449
+ }
2450
+ }
2451
+ @media (min-width: 1198px) {
2452
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2453
+ --editor-side-bar-width: 274px;
2454
+ }
2455
+ }
2456
+ @media (min-width: 1398px) {
2457
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2458
+ --editor-side-bar-width: 290px;
2459
+ }
2460
+ }
2461
+ @media (min-width: 1598px) {
2462
+ ._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
2463
+ --editor-side-bar-width: 320px;
2464
+ }
2465
+ }
2466
+ ._EditorLayout-header_l0swf_187 {
2467
+ grid-area: header;
2382
2468
  background-color: var(--editor-surface-panel);
2383
2469
  border-bottom: 1px solid var(--editor-border-subtle);
2384
- box-sizing: border-box;
2470
+ overflow: hidden;
2471
+ }
2472
+ ._EditorHeader_l0swf_194 {
2473
+ align-items: center;
2385
2474
  display: grid;
2386
- gap: 12px;
2387
- grid-area: header;
2388
- grid-template-columns: 1fr auto 1fr;
2389
- padding: 0 12px;
2390
- z-index: 11;
2475
+ column-gap: 12px;
2476
+ row-gap: 6px;
2477
+ grid-template-areas: "url url" "plugins actions";
2478
+ grid-template-columns: auto 1fr;
2479
+ padding-block: 6px;
2480
+ padding-inline-start: calc(8px + env(safe-area-inset-left, 0px));
2481
+ padding-inline-end: calc(12px + env(safe-area-inset-right, 0px));
2391
2482
  }
2392
- ._EditorLayout-headerStart_1d9v5_62 {
2483
+ @media (min-width: 638px) {
2484
+ ._EditorHeader_l0swf_194 {
2485
+ column-gap: 16px;
2486
+ row-gap: 0;
2487
+ grid-template-areas: "plugins url actions";
2488
+ grid-template-columns: 1fr auto 1fr;
2489
+ height: 40px;
2490
+ padding-block: 0;
2491
+ padding-inline-start: 8px;
2492
+ padding-inline-end: 8px;
2493
+ }
2494
+ }
2495
+ ._EditorHeader-plugins_l0swf_221 {
2393
2496
  align-items: center;
2497
+ color: var(--editor-text-secondary);
2394
2498
  display: flex;
2395
- gap: 8px;
2499
+ gap: 4px;
2500
+ grid-area: plugins;
2396
2501
  justify-self: start;
2397
- min-width: 0;
2398
2502
  }
2399
- ._EditorLayout-headerCenter_1d9v5_70 {
2503
+ ._EditorHeader-plugins_l0swf_221 svg {
2504
+ height: 18px;
2505
+ width: 18px;
2506
+ }
2507
+ ._EditorHeader-pluginItem_l0swf_235 {
2400
2508
  align-items: center;
2509
+ display: inline-flex;
2510
+ }
2511
+ @media (min-width: 638px) {
2512
+ ._EditorHeader-pluginItem--mobileOnly_l0swf_241 {
2513
+ display: none;
2514
+ }
2515
+ }
2516
+ ._EditorHeader-pluginItem--desktopOnly_l0swf_246 {
2517
+ display: none;
2518
+ }
2519
+ @media (min-width: 638px) {
2520
+ ._EditorHeader-pluginItem--desktopOnly_l0swf_246 {
2521
+ display: inline-flex;
2522
+ }
2523
+ }
2524
+ ._EditorHeader-urlBarSlot_l0swf_256 {
2401
2525
  display: flex;
2526
+ grid-area: url;
2402
2527
  justify-content: center;
2403
- justify-self: center;
2404
- max-width: 480px;
2405
2528
  min-width: 0;
2406
- width: clamp(160px, 40vw, 480px);
2529
+ width: 100%;
2530
+ }
2531
+ @media (min-width: 638px) {
2532
+ ._EditorHeader-urlBarSlot_l0swf_256 {
2533
+ width: clamp(240px, 40vw, 480px);
2534
+ }
2535
+ }
2536
+ ._EditorHeader-urlBarSlot_l0swf_256 > * {
2537
+ width: 100%;
2407
2538
  }
2408
- ._EditorLayout-headerEnd_1d9v5_81 {
2539
+ ._EditorHeader-actions_l0swf_274 {
2409
2540
  align-items: center;
2410
2541
  display: flex;
2411
- gap: 8px;
2542
+ gap: 12px;
2543
+ grid-area: actions;
2412
2544
  justify-self: end;
2413
- min-width: 0;
2414
2545
  }
2415
- ._EditorLayout-headerHistory_1d9v5_91 {
2416
- align-items: center;
2546
+ ._EditorHeader-history_l0swf_282 {
2547
+ color: var(--editor-text-tertiary);
2417
2548
  display: flex;
2418
2549
  gap: 2px;
2419
2550
  }
2420
- @media (max-width: 637px) {
2421
- ._EditorLayout-header_1d9v5_49 {
2422
- grid-template-columns: 1fr auto;
2423
- gap: 8px;
2424
- }
2425
- ._EditorLayout-headerCenter_1d9v5_70 {
2551
+ ._EditorLayout-mobilePanel_l0swf_288 {
2552
+ grid-area: mobilepanel;
2553
+ background: var(--editor-surface-panel);
2554
+ border-block-start: 1px solid var(--editor-border-subtle);
2555
+ display: none;
2556
+ flex-direction: column;
2557
+ overflow: hidden;
2558
+ }
2559
+ ._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-mobilePanel_l0swf_288 {
2560
+ display: flex;
2561
+ }
2562
+ @media (min-width: 638px) {
2563
+ ._EditorLayout-mobilePanel_l0swf_288,
2564
+ ._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-mobilePanel_l0swf_288 {
2426
2565
  display: none;
2427
2566
  }
2428
2567
  }
2429
- ._EditorPluginTab_1d9v5_110 {
2568
+ ._EditorLayout-mobilePanelContent_l0swf_308 {
2569
+ flex: 1;
2570
+ overflow-y: auto;
2571
+ display: flex;
2572
+ flex-direction: column;
2573
+ }
2574
+ ._EditorLayout-mobileDragHandle_l0swf_315 {
2575
+ display: flex;
2576
+ align-items: center;
2577
+ justify-content: center;
2578
+ padding: 8px 0 4px;
2579
+ cursor: grab;
2580
+ touch-action: none;
2581
+ flex-shrink: 0;
2582
+ }
2583
+ ._EditorLayout-mobileDragHandle_l0swf_315:active {
2584
+ cursor: grabbing;
2585
+ }
2586
+ ._EditorLayout-mobileDragHandlePill_l0swf_329 {
2587
+ width: 36px;
2588
+ height: 4px;
2589
+ border-radius: 2px;
2590
+ background-color: var(--editor-border-subtle);
2591
+ }
2592
+ ._EditorPluginTab_l0swf_336 {
2430
2593
  display: none;
2431
2594
  flex-grow: 1;
2432
2595
  max-height: 100%;
2433
2596
  }
2434
- ._EditorPluginTab--visible_1d9v5_116 {
2597
+ ._EditorPluginTab--visible_l0swf_342 {
2435
2598
  display: flex;
2436
2599
  flex-direction: column;
2437
2600
  }
2438
- ._EditorPluginTab-body_1d9v5_121 {
2601
+ ._EditorPluginTab-body_l0swf_347 {
2439
2602
  flex-grow: 1;
2440
2603
  max-height: 100%;
2441
2604
  }
@@ -2575,524 +2738,400 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2575
2738
  flex-shrink: 0;
2576
2739
  }
2577
2740
 
2578
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2579
- ._EditorCanvas_1h1vv_1 {
2580
- background: var(--editor-surface-sunken);
2581
- display: flex;
2582
- grid-area: editor;
2583
- flex-direction: column;
2741
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2742
+ ._EditorCombobox-input_12a2a_4 {
2743
+ background: transparent;
2744
+ border: 0;
2745
+ color: inherit;
2746
+ flex: 1;
2747
+ font: inherit;
2748
+ font-size: var(--editor-font-size-xxs);
2749
+ min-width: 0;
2750
+ outline: none;
2584
2751
  padding: 0;
2585
- position: relative;
2586
- overflow: hidden;
2752
+ width: 100%;
2753
+ }
2754
+ ._EditorCombobox-input_12a2a_4::placeholder {
2755
+ color: var(--editor-text-tertiary);
2587
2756
  }
2588
- ._EditorCanvas--fullScreen_1h1vv_11 {
2757
+ ._EditorCombobox-trigger_12a2a_21 {
2758
+ align-items: center;
2759
+ background: transparent;
2760
+ border: 0;
2761
+ color: var(--editor-text-tertiary);
2762
+ cursor: pointer;
2763
+ display: inline-flex;
2764
+ flex-shrink: 0;
2765
+ height: 20px;
2766
+ justify-content: center;
2767
+ outline: none;
2589
2768
  padding: 0;
2590
- overflow: hidden;
2769
+ width: 20px;
2591
2770
  }
2592
- @media (min-width: 1198px) {
2593
- ._EditorCanvas--fullScreen_1h1vv_11 {
2594
- padding: 0;
2771
+ @media (hover: hover) and (pointer: fine) {
2772
+ ._EditorCombobox-trigger_12a2a_21:hover {
2773
+ color: var(--editor-text-primary);
2595
2774
  }
2596
2775
  }
2597
- ._EditorCanvas--canvasFullScreen_1h1vv_31 {
2598
- position: fixed;
2599
- inset: 0;
2600
- z-index: 1000;
2601
- padding: 0 !important;
2602
- }
2603
- ._EditorCanvas-inner_1h1vv_38 {
2604
- display: flex;
2605
- flex-direction: column;
2606
- height: 100%;
2607
- min-width: 288px;
2608
- position: relative;
2609
- width: 100%;
2776
+ ._EditorCombobox-triggerIcon_12a2a_42 {
2777
+ pointer-events: none;
2610
2778
  }
2611
- ._EditorCanvas-bar_1h1vv_50 {
2612
- flex-shrink: 0;
2613
- width: 100%;
2614
- z-index: 1;
2779
+ ._EditorCombobox-positioner_12a2a_46 {
2780
+ z-index: 50;
2615
2781
  }
2616
- ._EditorCanvas-zoomViewport_1h1vv_60 {
2617
- flex: 1;
2618
- min-height: 0;
2782
+ ._EditorCombobox-content_12a2a_50 {
2783
+ background: var(--editor-surface-raised);
2784
+ border: 1px solid var(--editor-border-subtle);
2785
+ border-radius: var(--editor-radius-md);
2786
+ box-shadow: var(--editor-shadow-md);
2787
+ color: var(--editor-text-primary);
2788
+ font-family: var(--editor-font-family);
2789
+ font-size: var(--editor-font-size-xxs);
2790
+ max-height: var(--available-height);
2791
+ min-width: var(--anchor-width);
2619
2792
  overflow: hidden;
2620
- position: relative;
2793
+ transform-origin: var(--transform-origin);
2794
+ z-index: 50;
2621
2795
  }
2622
- ._EditorCanvas-rootColumn_1h1vv_69 {
2623
- box-sizing: content-box;
2796
+ ._EditorCombobox-list_12a2a_65 {
2797
+ max-height: inherit;
2798
+ overflow-y: auto;
2799
+ padding: 4px;
2624
2800
  }
2625
- ._EditorCanvas-frame_1h1vv_74 {
2801
+ ._EditorCombobox-item_12a2a_71 {
2802
+ align-items: center;
2803
+ border-radius: var(--editor-radius-sm);
2804
+ cursor: pointer;
2626
2805
  display: flex;
2627
- flex-direction: column;
2628
- min-width: 288px;
2806
+ font: inherit;
2807
+ font-size: var(--editor-font-size-xxs);
2808
+ gap: 8px;
2809
+ outline: none;
2810
+ padding: 6px 8px 6px 28px;
2811
+ position: relative;
2812
+ user-select: none;
2629
2813
  }
2630
- @media (min-width: 1198px) {
2631
- ._EditorCanvas-frame_1h1vv_74 {
2632
- min-width: unset;
2633
- }
2814
+ ._EditorCombobox-item_12a2a_71[data-highlighted],
2815
+ ._EditorCombobox-item_12a2a_71[data-selected] {
2816
+ background: var(--editor-accent-soft);
2817
+ color: var(--editor-text-accent);
2634
2818
  }
2635
- ._EditorCanvas-root_1h1vv_69 {
2636
- background: var(--editor-surface-panel);
2637
- outline: 1px solid var(--editor-border-subtle);
2638
- box-shadow: var(--editor-shadow-lg);
2639
- border-radius: var(--editor-radius-md);
2640
- flex: 1;
2819
+ ._EditorCombobox-item_12a2a_71[data-disabled] {
2820
+ cursor: not-allowed;
2821
+ opacity: 0.5;
2641
2822
  pointer-events: none;
2642
- opacity: 0;
2643
- min-height: 100%;
2644
- }
2645
- ._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-root_1h1vv_69 {
2646
- pointer-events: unset;
2647
- opacity: 1;
2648
2823
  }
2649
- ._EditorCanvas-loader_1h1vv_103 {
2824
+ ._EditorCombobox-itemIndicator_12a2a_97 {
2650
2825
  align-items: center;
2651
- color: var(--editor-text-tertiary);
2652
- display: flex;
2653
- inset: 0;
2826
+ color: var(--editor-accent-strong);
2827
+ display: inline-flex;
2654
2828
  justify-content: center;
2829
+ left: 8px;
2655
2830
  pointer-events: none;
2656
2831
  position: absolute;
2657
- transition: opacity 250ms ease-out;
2658
- opacity: 0;
2659
- }
2660
- ._EditorCanvas--showLoader_1h1vv_115 ._EditorCanvas-loader_1h1vv_103 {
2661
- opacity: 1;
2832
+ width: 14px;
2662
2833
  }
2663
- ._EditorCanvas--showLoader_1h1vv_115._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-loader_1h1vv_103 {
2664
- opacity: 0;
2665
- transition: none;
2834
+ ._EditorCombobox-empty_12a2a_110:not(:empty) {
2835
+ color: var(--editor-text-tertiary);
2836
+ font-size: var(--editor-font-size-xxs);
2837
+ padding: 12px 8px;
2838
+ text-align: center;
2666
2839
  }
2667
- ._EditorCanvas-toolbar_1h1vv_128 {
2840
+
2841
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
2842
+ ._BrowserBar_glswb_1 {
2668
2843
  align-items: center;
2669
2844
  background: var(--editor-surface-panel);
2670
2845
  border: 1px solid var(--editor-border-subtle);
2671
- border-radius: var(--editor-radius-md);
2672
- bottom: 16px;
2673
- box-shadow: var(--editor-shadow-md);
2846
+ border-bottom: 0;
2847
+ border-radius: var(--editor-radius-md) var(--editor-radius-md) 0 0;
2674
2848
  display: flex;
2675
- gap: 2px;
2676
- left: 50%;
2677
- padding: 4px;
2678
- position: absolute;
2679
- transform: translateX(-50%);
2680
- z-index: 10;
2681
- }
2682
- ._EditorCanvas-toolbarDivider_1h1vv_144 {
2683
- background: var(--editor-border-subtle);
2684
- flex-shrink: 0;
2685
- height: 20px;
2686
- margin: 0 4px;
2687
- width: 1px;
2849
+ gap: 8px;
2850
+ padding: 8px 10px;
2851
+ width: 100%;
2688
2852
  }
2689
- ._EditorCanvas-zoomLevel_1h1vv_152 {
2690
- color: var(--editor-text-secondary);
2853
+ ._BrowserBar-urlTrigger_glswb_16 {
2854
+ align-items: center;
2855
+ background: var(--editor-surface-sunken);
2856
+ border: 1px solid var(--editor-border-subtle);
2857
+ border-radius: 9999px;
2858
+ color: var(--editor-text-primary);
2691
2859
  display: inline-flex;
2860
+ flex: 1;
2692
2861
  font-size: var(--editor-font-size-xxs);
2693
- font-variant-numeric: tabular-nums;
2694
- justify-content: center;
2695
- min-width: 38px;
2696
- padding: 0 4px;
2697
- user-select: none;
2698
- }
2699
-
2700
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
2701
- ._Sidebar_1ynke_8 {
2702
- background: var(--editor-surface-panel);
2703
- bottom: 0;
2704
- display: flex;
2705
- flex-direction: column;
2862
+ gap: 8px;
2863
+ justify-content: flex-start;
2864
+ min-width: 0;
2706
2865
  overflow: hidden;
2707
- position: absolute;
2708
- top: var(--editor-header-height, 0px);
2709
- width: var(--editor-side-bar-width, 280px);
2710
- z-index: 10;
2711
- }
2712
- ._Sidebar--left_1ynke_20 {
2713
- border-right: 1px solid var(--editor-border-subtle);
2714
- left: 0;
2715
- }
2716
- ._Sidebar--right_1ynke_25 {
2717
- border-left: 1px solid var(--editor-border-subtle);
2718
- right: 0;
2719
- }
2720
- ._Sidebar-body_1ynke_30 {
2721
- display: flex;
2722
- flex: 1;
2723
- flex-direction: column;
2724
- min-height: 0;
2725
- overflow-y: auto;
2866
+ padding: 3px 12px;
2867
+ width: 100%;
2726
2868
  }
2727
- @media (max-width: 637px) {
2728
- ._Sidebar_1ynke_8 {
2729
- bottom: 0;
2730
- left: 0;
2731
- right: 0;
2732
- top: auto;
2733
- max-height: 50dvh;
2734
- width: 100%;
2735
- }
2736
- ._Sidebar--left_1ynke_20 {
2737
- border-right: 0;
2738
- border-top: 1px solid var(--editor-border-subtle);
2739
- }
2740
- ._Sidebar--right_1ynke_25 {
2741
- border-left: 0;
2742
- border-top: 1px solid var(--editor-border-subtle);
2743
- z-index: 11;
2869
+ @media (hover: hover) and (pointer: fine) {
2870
+ ._BrowserBar-urlTrigger_glswb_16:hover {
2871
+ background: var(--editor-surface-hover);
2872
+ border-color: var(--editor-border-default);
2744
2873
  }
2745
2874
  }
2746
-
2747
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Nav/styles.module.css/#css-module-data */
2748
- ._Nav_1ft0o_1 {
2749
- display: flex;
2750
- align-items: center;
2751
- padding: 10px 0;
2752
- padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
2753
- }
2754
- @media (min-width: 638px) {
2755
- ._Nav_1ft0o_1 {
2756
- flex-direction: column;
2757
- height: 100%;
2758
- padding: 0;
2759
- padding-bottom: 0;
2760
- align-items: stretch;
2761
- }
2875
+ ._BrowserBar-urlTrigger_glswb_16:focus-within {
2876
+ border-color: var(--editor-border-default);
2877
+ box-shadow: var(--editor-ring);
2878
+ outline: none;
2762
2879
  }
2763
- ._Nav--horizontal_1ft0o_20,
2764
- ._Nav--horizontal_1ft0o_20 {
2765
- align-items: center;
2766
- flex-direction: row;
2767
- height: auto;
2768
- padding: 0;
2880
+ ._BrowserBar-urlIcon_glswb_46 {
2881
+ color: var(--editor-text-tertiary);
2882
+ flex-shrink: 0;
2769
2883
  }
2770
- @media (min-width: 638px) {
2771
- ._Nav--horizontal_1ft0o_20 {
2772
- flex-direction: row;
2773
- height: auto;
2774
- padding: 0;
2775
- align-items: center;
2776
- }
2884
+ ._BrowserBar-urlText_glswb_51 {
2885
+ color: var(--editor-text-primary);
2886
+ display: inline-flex;
2887
+ flex: 1;
2888
+ gap: 8px;
2889
+ min-width: 0;
2890
+ overflow: hidden;
2891
+ text-align: left;
2892
+ text-overflow: ellipsis;
2893
+ white-space: nowrap;
2777
2894
  }
2778
- ._Nav-list_1ft0o_36 {
2779
- display: flex;
2780
- list-style: none;
2781
- margin: 0;
2782
- padding: 0;
2783
- overflow-x: auto;
2784
- gap: 12px;
2785
- justify-content: center;
2895
+ ._BrowserBar-urlInput_glswb_63 {
2896
+ color: var(--editor-text-primary);
2786
2897
  flex: 1;
2898
+ min-width: 0;
2787
2899
  }
2788
- @media (min-width: 638px) {
2789
- ._Nav-list_1ft0o_36 {
2790
- padding-top: 16px;
2791
- flex-direction: column;
2792
- gap: 4px;
2793
- width: 100%;
2794
- flex-grow: 1;
2795
- overflow-x: hidden;
2796
- overflow-y: auto;
2797
- justify-content: flex-start;
2798
- }
2799
- }
2800
- ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2801
- flex-direction: row;
2802
- gap: 4px;
2803
- padding-top: 0;
2804
- width: auto;
2805
- flex: 0 0 auto;
2806
- overflow-x: auto;
2807
- overflow-y: hidden;
2808
- justify-content: flex-start;
2900
+ ._BrowserBar-itemPath_glswb_69 {
2901
+ color: var(--editor-text-primary);
2902
+ flex-shrink: 0;
2809
2903
  }
2810
- @media (min-width: 638px) {
2811
- ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2812
- flex-direction: row;
2813
- gap: 4px;
2814
- padding-top: 0;
2815
- width: auto;
2816
- flex: 0 0 auto;
2817
- overflow-x: auto;
2818
- overflow-y: hidden;
2819
- justify-content: flex-start;
2820
- }
2904
+ ._BrowserBar-itemTitle_glswb_74 {
2905
+ color: var(--editor-text-tertiary);
2906
+ margin-left: auto;
2907
+ overflow: hidden;
2908
+ text-overflow: ellipsis;
2909
+ white-space: nowrap;
2821
2910
  }
2822
- ._Nav-footer_1ft0o_83 {
2823
- display: none;
2911
+ ._BrowserBar-actions_glswb_82 {
2912
+ align-items: center;
2913
+ display: flex;
2914
+ flex-shrink: 0;
2915
+ gap: 2px;
2916
+ margin-left: auto;
2824
2917
  }
2825
- @media (min-width: 638px) {
2826
- ._Nav-footer_1ft0o_83 {
2827
- display: flex;
2828
- align-items: center;
2829
- justify-content: center;
2830
- padding: 12px 0;
2831
- }
2918
+ ._BrowserBar-deviceIcon_glswb_92 {
2919
+ color: var(--editor-text-primary);
2920
+ display: inline-flex;
2832
2921
  }
2833
- ._NavItem-link_1ft0o_96 {
2834
- text-align: center;
2835
- align-items: center;
2836
- justify-content: center;
2837
- color: var(--editor-text-secondary);
2922
+
2923
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2924
+ ._EditorCanvas_10xv6_1 {
2925
+ background-color: var(--editor-surface-sunken);
2926
+ background-image:
2927
+ radial-gradient(
2928
+ circle,
2929
+ var(--editor-border-default) 1px,
2930
+ transparent 1px);
2931
+ background-size: 16px 16px;
2932
+ background-position: 0 0;
2838
2933
  display: flex;
2839
- text-decoration: none;
2840
- cursor: pointer;
2841
- border-radius: var(--editor-radius-md);
2842
- padding: 6px;
2843
- box-sizing: border-box;
2844
- transition: background-color var(--editor-motion-fast) var(--editor-ease), color var(--editor-motion-fast) var(--editor-ease);
2845
- border: 0;
2846
- width: 38px;
2847
- height: 38px;
2848
- margin: 0 auto;
2934
+ grid-area: editor;
2935
+ flex-direction: column;
2936
+ padding: calc(var(--editor-space-px) * 0.5);
2849
2937
  position: relative;
2938
+ overflow: hidden;
2850
2939
  }
2851
- @media (min-width: 638px) {
2852
- ._NavItem-link_1ft0o_96 {
2853
- padding: 4px;
2854
- width: 32px;
2855
- height: 32px;
2940
+ @media (min-width: 1198px) {
2941
+ ._EditorCanvas_10xv6_1 {
2942
+ padding: calc(var(--editor-space-px) * 0.75);
2856
2943
  }
2857
2944
  }
2858
- ._NavItem-linkLabel_1ft0o_124 {
2859
- clip: rect(0 0 0 0);
2860
- clip-path: inset(100%);
2861
- height: 1px;
2945
+ ._EditorCanvas--fullScreen_10xv6_24 {
2946
+ padding: 0;
2862
2947
  overflow: hidden;
2863
- position: absolute;
2864
- white-space: nowrap;
2865
- width: 1px;
2866
- }
2867
- ._NavItem_1ft0o_96:first-of-type {
2868
- padding-left: 0;
2869
2948
  }
2870
- ._NavItem_1ft0o_96:last-of-type {
2871
- padding-right: 0;
2872
- }
2873
- @media (min-width: 638px) {
2874
- ._NavItem_1ft0o_96:first-of-type,
2875
- ._NavItem_1ft0o_96:last-of-type {
2949
+ @media (min-width: 1198px) {
2950
+ ._EditorCanvas--fullScreen_10xv6_24 {
2876
2951
  padding: 0;
2877
2952
  }
2878
2953
  }
2879
- ._NavItem-linkIcon_1ft0o_149 {
2880
- height: 18px;
2881
- width: 18px;
2954
+ ._EditorCanvas--canvasFullScreen_10xv6_40 {
2955
+ position: fixed;
2956
+ inset: 0;
2957
+ z-index: 1000;
2958
+ padding: 0 !important;
2959
+ }
2960
+ ._EditorCanvas-inner_10xv6_47 {
2882
2961
  display: flex;
2883
- align-items: center;
2962
+ height: 100%;
2884
2963
  justify-content: center;
2964
+ min-width: 288px;
2965
+ position: relative;
2966
+ width: 100%;
2885
2967
  }
2886
- ._NavItem-linkIcon_1ft0o_149 svg {
2887
- width: 18px;
2888
- height: 18px;
2889
- }
2890
- ._NavItem--active_1ft0o_162 > ._NavItem-link_1ft0o_96 {
2891
- background-color: var(--editor-accent-soft);
2892
- color: var(--editor-text-accent);
2893
- }
2894
- ._NavItem_1ft0o_96:not(._NavItem--active_1ft0o_162) > ._NavItem-link_1ft0o_96:hover {
2895
- background-color: var(--editor-surface-hover);
2896
- color: var(--editor-text-accent);
2968
+ ._EditorCanvas-rootColumn_10xv6_56 {
2969
+ box-sizing: content-box;
2970
+ display: flex;
2971
+ flex-direction: column;
2972
+ min-width: 321px;
2973
+ height: 100%;
2974
+ transform-origin: top;
2897
2975
  }
2898
- @media (min-width: 638px) {
2899
- ._NavItem--mobileOnly_1ft0o_173 {
2900
- display: none;
2976
+ @media (min-width: 1198px) {
2977
+ ._EditorCanvas-rootColumn_10xv6_56 {
2978
+ min-width: unset;
2901
2979
  }
2902
2980
  }
2903
- ._NavItem--desktopOnly_1ft0o_178 {
2904
- display: none;
2905
- }
2906
- @media (min-width: 638px) {
2907
- ._NavItem--desktopOnly_1ft0o_178 {
2908
- display: block;
2981
+ @media (prefers-reduced-motion: reduce) {
2982
+ ._EditorCanvas-rootColumn_10xv6_56 {
2983
+ transition: none !important;
2909
2984
  }
2910
2985
  }
2911
-
2912
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/fields/styles.module.css/#css-module-data */
2913
- ._FieldsPlugin_262zt_1 {
2914
- background: white;
2915
- height: 100%;
2916
- overflow-y: auto;
2917
- }
2918
- ._FieldsPlugin-header_262zt_7 {
2919
- border-bottom: 1px solid var(--editor-color-grey-09);
2920
- font-weight: 600;
2921
- padding-bottom: 8px;
2922
- padding-left: 16px;
2923
- padding-right: 16px;
2924
- padding-top: 8px;
2986
+ ._EditorCanvas-root_10xv6_56 {
2987
+ background: var(--editor-surface-panel);
2988
+ outline: 1px solid var(--editor-border-subtle);
2989
+ box-shadow: var(--editor-shadow-lg);
2990
+ border-radius: var(--editor-radius-md);
2991
+ flex: 1;
2992
+ pointer-events: none;
2993
+ opacity: 0;
2925
2994
  }
2926
- @media (min-width: 638px) {
2927
- ._FieldsPlugin-header_262zt_7 {
2928
- padding: 16px;
2995
+ @media (prefers-reduced-motion: reduce) {
2996
+ ._EditorCanvas-root_10xv6_56 {
2997
+ transition: none !important;
2929
2998
  }
2930
2999
  }
2931
-
2932
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2933
- ._EditorCombobox-input_12a2a_4 {
2934
- background: transparent;
2935
- border: 0;
2936
- color: inherit;
2937
- flex: 1;
2938
- font: inherit;
2939
- font-size: var(--editor-font-size-xxs);
2940
- min-width: 0;
2941
- outline: none;
2942
- padding: 0;
2943
- width: 100%;
2944
- }
2945
- ._EditorCombobox-input_12a2a_4::placeholder {
2946
- color: var(--editor-text-tertiary);
3000
+ ._EditorCanvas--ready_10xv6_93 ._EditorCanvas-root_10xv6_56 {
3001
+ pointer-events: unset;
3002
+ opacity: 1;
2947
3003
  }
2948
- ._EditorCombobox-trigger_12a2a_21 {
3004
+ ._EditorCanvas-loader_10xv6_98 {
2949
3005
  align-items: center;
2950
- background: transparent;
2951
- border: 0;
2952
3006
  color: var(--editor-text-tertiary);
2953
- cursor: pointer;
2954
- display: inline-flex;
2955
- flex-shrink: 0;
2956
- height: 20px;
3007
+ display: flex;
3008
+ inset: 0;
2957
3009
  justify-content: center;
2958
- outline: none;
2959
- padding: 0;
2960
- width: 20px;
3010
+ pointer-events: none;
3011
+ position: absolute;
3012
+ transition: opacity 250ms ease-out;
3013
+ opacity: 0;
2961
3014
  }
2962
- @media (hover: hover) and (pointer: fine) {
2963
- ._EditorCombobox-trigger_12a2a_21:hover {
2964
- color: var(--editor-text-primary);
2965
- }
3015
+ ._EditorCanvas--showLoader_10xv6_110 ._EditorCanvas-loader_10xv6_98 {
3016
+ opacity: 1;
2966
3017
  }
2967
- ._EditorCombobox-triggerIcon_12a2a_42 {
2968
- pointer-events: none;
3018
+ ._EditorCanvas--showLoader_10xv6_110._EditorCanvas--ready_10xv6_93 ._EditorCanvas-loader_10xv6_98 {
3019
+ opacity: 0;
3020
+ transition: none;
2969
3021
  }
2970
- ._EditorCombobox-positioner_12a2a_46 {
2971
- z-index: 50;
3022
+ ._EditorCanvas-bottomBar_10xv6_119 {
3023
+ align-items: center;
3024
+ bottom: 16px;
3025
+ display: flex;
3026
+ justify-content: center;
3027
+ left: 0;
3028
+ pointer-events: none;
3029
+ position: absolute;
3030
+ right: 0;
3031
+ z-index: 10;
2972
3032
  }
2973
- ._EditorCombobox-content_12a2a_50 {
2974
- background: var(--editor-surface-raised);
3033
+ ._EditorCanvas-bottomBarPill_10xv6_131 {
3034
+ align-items: center;
3035
+ background: var(--editor-surface-panel);
2975
3036
  border: 1px solid var(--editor-border-subtle);
2976
3037
  border-radius: var(--editor-radius-md);
2977
3038
  box-shadow: var(--editor-shadow-md);
2978
3039
  color: var(--editor-text-primary);
2979
- font-family: var(--editor-font-family);
2980
- font-size: var(--editor-font-size-xxs);
2981
- max-height: var(--available-height);
2982
- min-width: var(--anchor-width);
2983
- overflow: hidden;
2984
- transform-origin: var(--transform-origin);
2985
- z-index: 50;
2986
- }
2987
- ._EditorCombobox-list_12a2a_65 {
2988
- max-height: inherit;
2989
- overflow-y: auto;
2990
- padding: 4px;
2991
- }
2992
- ._EditorCombobox-item_12a2a_71 {
2993
- align-items: center;
2994
- border-radius: var(--editor-radius-sm);
2995
- cursor: pointer;
2996
3040
  display: flex;
2997
- font: inherit;
2998
- font-size: var(--editor-font-size-xxs);
2999
- gap: 8px;
3000
- outline: none;
3001
- padding: 6px 8px 6px 28px;
3002
- position: relative;
3003
- user-select: none;
3004
- }
3005
- ._EditorCombobox-item_12a2a_71[data-highlighted],
3006
- ._EditorCombobox-item_12a2a_71[data-selected] {
3007
- background: var(--editor-accent-soft);
3008
- color: var(--editor-text-accent);
3009
- }
3010
- ._EditorCombobox-item_12a2a_71[data-disabled] {
3011
- cursor: not-allowed;
3012
- opacity: 0.5;
3013
- pointer-events: none;
3041
+ gap: 4px;
3042
+ padding: 4px 8px;
3043
+ pointer-events: auto;
3014
3044
  }
3015
- ._EditorCombobox-itemIndicator_12a2a_97 {
3016
- align-items: center;
3017
- color: var(--editor-accent-strong);
3018
- display: inline-flex;
3019
- justify-content: center;
3020
- left: 8px;
3021
- pointer-events: none;
3022
- position: absolute;
3023
- width: 14px;
3045
+ ._EditorCanvas-bottomBarDivider_10xv6_144 {
3046
+ background: var(--editor-border-subtle);
3047
+ height: 18px;
3048
+ margin: 0 4px;
3049
+ width: 1px;
3024
3050
  }
3025
- ._EditorCombobox-empty_12a2a_110:not(:empty) {
3026
- color: var(--editor-text-tertiary);
3051
+ ._EditorCanvas-zoomLevel_10xv6_151 {
3052
+ color: var(--editor-text-secondary);
3027
3053
  font-size: var(--editor-font-size-xxs);
3028
- padding: 12px 8px;
3054
+ font-variant-numeric: tabular-nums;
3055
+ min-width: 36px;
3056
+ padding: 0 4px;
3029
3057
  text-align: center;
3030
3058
  }
3031
3059
 
3032
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
3033
- ._BrowserBar_ey7dt_3 {
3034
- align-items: center;
3060
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/ResizeHandle/styles.module.css/#css-module-data */
3061
+ @media (min-width: 766px) {
3062
+ ._ResizeHandle_1u3rv_2 {
3063
+ position: absolute;
3064
+ width: 5px;
3065
+ height: 100%;
3066
+ cursor: col-resize;
3067
+ z-index: 10;
3068
+ background: transparent;
3069
+ top: 0;
3070
+ }
3071
+ ._ResizeHandle_1u3rv_2:hover {
3072
+ background: var(--editor-accent-soft);
3073
+ }
3074
+ ._ResizeHandle--left_1u3rv_16 {
3075
+ right: -3px;
3076
+ }
3077
+ ._ResizeHandle--right_1u3rv_20 {
3078
+ left: -3px;
3079
+ }
3080
+ }
3081
+
3082
+ /* components/Editor/components/ResizeHandle/styles.css */
3083
+ [data-resize-overlay] {
3084
+ position: fixed;
3085
+ top: 0;
3086
+ left: 0;
3087
+ right: 0;
3088
+ bottom: 0;
3089
+ z-index: 9999;
3090
+ cursor: col-resize;
3091
+ }
3092
+
3093
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
3094
+ ._Sidebar_14k7q_1 {
3095
+ border-block-start: 1px solid var(--editor-border-subtle);
3096
+ position: relative;
3097
+ display: none;
3098
+ flex-direction: column;
3099
+ overflow-y: auto;
3100
+ }
3101
+ ._Sidebar--isVisible_14k7q_9 {
3035
3102
  display: flex;
3036
- gap: 8px;
3037
- width: 100%;
3038
3103
  }
3039
- ._BrowserBar-urlTrigger_ey7dt_13 {
3040
- align-items: center;
3041
- background: var(--editor-surface-sunken);
3042
- border: 1px solid var(--editor-border-subtle);
3043
- border-radius: 9999px;
3044
- color: var(--editor-text-primary);
3045
- display: inline-flex;
3046
- flex: 1;
3047
- font-size: var(--editor-font-size-xxs);
3048
- gap: 8px;
3049
- justify-content: flex-start;
3050
- min-width: 0;
3051
- overflow: hidden;
3052
- padding: 4px 12px;
3053
- width: 100%;
3104
+ ._Sidebar--left_14k7q_13 {
3105
+ background: var(--editor-surface-panel);
3106
+ grid-area: left;
3054
3107
  }
3055
- @media (hover: hover) and (pointer: fine) {
3056
- ._BrowserBar-urlTrigger_ey7dt_13:hover {
3057
- background: var(--editor-surface-hover);
3058
- border-color: var(--editor-border-default);
3108
+ @media (min-width: 766px) {
3109
+ ._Sidebar--left_14k7q_13 {
3110
+ border-block-start: 0;
3111
+ border-inline-end: 1px solid var(--editor-border-subtle);
3059
3112
  }
3060
3113
  }
3061
- ._BrowserBar-urlTrigger_ey7dt_13:focus-within {
3062
- border-color: var(--editor-border-default);
3063
- box-shadow: var(--editor-ring);
3064
- outline: none;
3065
- }
3066
- ._BrowserBar-urlIcon_ey7dt_43 {
3067
- color: var(--editor-text-tertiary);
3068
- flex-shrink: 0;
3114
+ ._Sidebar--right_14k7q_25 {
3115
+ background: var(--editor-surface-panel);
3116
+ grid-area: right;
3069
3117
  }
3070
- ._BrowserBar-urlText_ey7dt_48 {
3071
- color: var(--editor-text-primary);
3072
- display: inline-flex;
3073
- flex: 1;
3074
- gap: 8px;
3075
- min-width: 0;
3076
- overflow: hidden;
3077
- text-align: left;
3078
- text-overflow: ellipsis;
3079
- white-space: nowrap;
3118
+ @media (min-width: 766px) {
3119
+ ._Sidebar--right_14k7q_25 {
3120
+ border-block-start: 0;
3121
+ border-inline-start: 1px solid var(--editor-border-subtle);
3122
+ }
3080
3123
  }
3081
- ._BrowserBar-urlInput_ey7dt_60 {
3082
- color: var(--editor-text-primary);
3083
- flex: 1;
3084
- min-width: 0;
3124
+ ._Sidebar-resizeHandle_14k7q_37 {
3125
+ position: absolute;
3126
+ height: 100%;
3085
3127
  }
3086
- ._BrowserBar-itemPath_ey7dt_66 {
3087
- color: var(--editor-text-primary);
3088
- flex-shrink: 0;
3128
+ ._Sidebar--left_14k7q_13 + ._Sidebar-resizeHandle_14k7q_37 {
3129
+ grid-area: left;
3130
+ justify-self: end;
3089
3131
  }
3090
- ._BrowserBar-itemTitle_ey7dt_71 {
3091
- color: var(--editor-text-tertiary);
3092
- margin-left: auto;
3093
- overflow: hidden;
3094
- text-overflow: ellipsis;
3095
- white-space: nowrap;
3132
+ ._Sidebar--right_14k7q_25 + ._Sidebar-resizeHandle_14k7q_37 {
3133
+ grid-area: right;
3134
+ justify-self: start;
3096
3135
  }
3097
3136
 
3098
3137
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
@@ -3108,6 +3147,26 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3108
3147
  display: none;
3109
3148
  }
3110
3149
 
3150
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/fields/styles.module.css/#css-module-data */
3151
+ ._FieldsPlugin_262zt_1 {
3152
+ background: white;
3153
+ height: 100%;
3154
+ overflow-y: auto;
3155
+ }
3156
+ ._FieldsPlugin-header_262zt_7 {
3157
+ border-bottom: 1px solid var(--editor-color-grey-09);
3158
+ font-weight: 600;
3159
+ padding-bottom: 8px;
3160
+ padding-left: 16px;
3161
+ padding-right: 16px;
3162
+ padding-top: 8px;
3163
+ }
3164
+ @media (min-width: 638px) {
3165
+ ._FieldsPlugin-header_262zt_7 {
3166
+ padding: 16px;
3167
+ }
3168
+ }
3169
+
3111
3170
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/outline/styles.module.css/#css-module-data */
3112
3171
  ._OutlinePlugin_q92j6_1 {
3113
3172
  padding: 16px;