@myoc/excalidraw 0.18.1 → 0.18.3
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/dev/{chunk-IVKGBVG7.js → chunk-3K6YEH7O.js} +2 -2
- package/dist/dev/{chunk-IVKGBVG7.js.map → chunk-3K6YEH7O.js.map} +1 -1
- package/dist/dev/{chunk-DYSQNY2T.js → chunk-6MXLCRC3.js} +2 -1
- package/dist/dev/chunk-6MXLCRC3.js.map +7 -0
- package/dist/dev/{chunk-ND5KUA7P.js → chunk-S4MA4GYT.js} +16541 -21170
- package/dist/dev/chunk-S4MA4GYT.js.map +7 -0
- package/dist/dev/data/{image-ZD4HK457.js → image-I5I3FC2R.js} +3 -3
- package/dist/dev/index.css +44 -47
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +6642 -1356
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-IW3FTNXY.js → en-FBYNI7ML.js} +2 -2
- package/dist/dev/subset-shared.chunk.js +1 -1
- package/dist/dev/subset-worker.chunk.js +1 -1
- package/dist/prod/{chunk-Y5S6JYT2.js → chunk-6NO4X5TH.js} +1 -1
- package/dist/prod/chunk-7TL427PR.js +31 -0
- package/dist/prod/{chunk-SIW4TYTH.js → chunk-ECENQK44.js} +1 -1
- package/dist/prod/data/image-TMH4UP47.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +17 -14
- package/dist/prod/locales/{en-3JJA6ONK.js → en-RF5UZHGV.js} +1 -1
- package/dist/prod/subset-shared.chunk.js +1 -1
- package/dist/prod/subset-worker.chunk.js +1 -1
- package/dist/types/{excalidraw/binaryheap.d.ts → common/src/binary-heap.d.ts} +1 -1
- package/dist/types/{excalidraw → common/src}/colors.d.ts +1 -0
- package/dist/types/{excalidraw → common/src}/constants.d.ts +7 -6
- package/dist/types/{excalidraw/fonts/FontMetadata.d.ts → common/src/font-metadata.d.ts} +11 -3
- package/dist/types/common/src/index.d.ts +11 -0
- package/dist/types/{excalidraw → common/src}/points.d.ts +2 -0
- package/dist/types/common/src/promise-pool.d.ts +6 -0
- package/dist/types/{excalidraw → common/src}/utils.d.ts +9 -12
- package/dist/types/{excalidraw/scene → element/src}/Shape.d.ts +2 -2
- package/dist/types/{excalidraw/scene → element/src}/ShapeCache.d.ts +4 -4
- package/dist/types/{excalidraw → element/src}/align.d.ts +2 -2
- package/dist/types/{excalidraw/element → element/src}/binding.d.ts +5 -4
- package/dist/types/{excalidraw/element → element/src}/bounds.d.ts +6 -1
- package/dist/types/{excalidraw/element → element/src}/collision.d.ts +2 -2
- package/dist/types/{excalidraw/scene → element/src}/comparisons.d.ts +1 -1
- package/dist/types/{excalidraw → element/src}/distribute.d.ts +1 -1
- package/dist/types/{excalidraw/element → element/src}/dragElements.d.ts +3 -3
- package/dist/types/element/src/duplicate.d.ts +66 -0
- package/dist/types/{excalidraw/element → element/src}/elementLink.d.ts +1 -1
- package/dist/types/element/src/embeddable.d.ts +10 -0
- package/dist/types/{excalidraw/element → element/src}/flowchart.d.ts +1 -1
- package/dist/types/{excalidraw → element/src}/fractionalIndex.d.ts +4 -1
- package/dist/types/{excalidraw → element/src}/frame.d.ts +6 -6
- package/dist/types/{excalidraw → element/src}/groups.d.ts +5 -5
- package/dist/types/{excalidraw/element → element/src}/heading.d.ts +1 -2
- package/dist/types/{excalidraw/element → element/src}/image.d.ts +2 -2
- package/dist/types/{excalidraw/element → element/src}/index.d.ts +0 -10
- package/dist/types/{excalidraw/element → element/src}/linearElementEditor.d.ts +5 -5
- package/dist/types/{excalidraw/element → element/src}/mutateElement.d.ts +1 -1
- package/dist/types/{excalidraw/element → element/src}/newElement.d.ts +3 -43
- package/dist/types/{excalidraw/renderer → element/src}/renderElement.d.ts +3 -3
- package/dist/types/{excalidraw/element → element/src}/resizeElements.d.ts +2 -2
- package/dist/types/{excalidraw/element → element/src}/resizeTest.d.ts +1 -1
- package/dist/types/{excalidraw/scene → element/src}/selection.d.ts +2 -2
- package/dist/types/{excalidraw → element/src}/shapes.d.ts +6 -6
- package/dist/types/{excalidraw/element → element/src}/showSelectedShapeActions.d.ts +1 -1
- package/dist/types/{excalidraw/element → element/src}/sizeHelpers.d.ts +1 -1
- package/dist/types/{excalidraw/element → element/src}/textElement.d.ts +3 -4
- package/dist/types/{excalidraw/element → element/src}/transformHandles.d.ts +5 -5
- package/dist/types/{excalidraw/element → element/src}/typeChecks.d.ts +2 -2
- package/dist/types/{excalidraw/element → element/src}/types.d.ts +2 -2
- package/dist/types/{excalidraw → element/src}/zindex.d.ts +5 -4
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +73 -70
- package/dist/types/excalidraw/actions/actionAlign.d.ts +7 -7
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +54 -52
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +456 -264
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +155 -149
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +26 -25
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +73 -70
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -7
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +30 -29
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +53 -52
- package/dist/types/excalidraw/{element/embeddable.d.ts → actions/actionEmbeddable.d.ts} +26 -35
- package/dist/types/excalidraw/actions/actionExport.d.ts +306 -297
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +41 -39
- package/dist/types/excalidraw/actions/actionFlip.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +217 -213
- package/dist/types/excalidraw/actions/actionGroup.d.ts +51 -49
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +27 -26
- package/dist/types/excalidraw/actions/actionLink.d.ts +26 -25
- package/dist/types/excalidraw/actions/actionMenu.d.ts +73 -70
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +48 -46
- package/dist/types/excalidraw/actions/actionProperties.d.ts +317 -302
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +26 -25
- package/dist/types/excalidraw/actions/actionSmartZoom.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionStyles.d.ts +28 -27
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +26 -25
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +26 -25
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +50 -48
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +25 -25
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +26 -26
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +26 -26
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -8
- package/dist/types/excalidraw/actions/index.d.ts +1 -0
- package/dist/types/excalidraw/actions/manager.d.ts +1 -1
- package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +2 -2
- package/dist/types/excalidraw/animated-trail.d.ts +7 -1
- package/dist/types/excalidraw/appState.d.ts +35 -34
- package/dist/types/excalidraw/change.d.ts +3 -3
- package/dist/types/excalidraw/charts.d.ts +1 -1
- package/dist/types/excalidraw/clipboard.d.ts +2 -2
- package/dist/types/excalidraw/components/Actions.d.ts +2 -2
- package/dist/types/excalidraw/components/App.d.ts +14 -9
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +2 -2
- package/dist/types/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +1 -2
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -2
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +3 -3
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +1 -1
- package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +1 -1
- package/dist/types/excalidraw/{element → components}/ElementCanvasButtons.d.ts +1 -1
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerList.d.ts +2 -2
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +1 -1
- package/dist/types/excalidraw/components/ImageExportDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/InitializeApp.d.ts +1 -1
- package/dist/types/excalidraw/components/JSONExportDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryUnit.d.ts +1 -1
- package/dist/types/excalidraw/components/LoadingMessage.d.ts +1 -1
- package/dist/types/excalidraw/components/MobileMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/FontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiFontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Position.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/index.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/common.d.ts +1 -1
- package/dist/types/excalidraw/components/ToolButton.d.ts +1 -1
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +1 -1
- package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +1 -1
- package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +1 -1
- package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/Hyperlink.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +2 -2
- package/dist/types/excalidraw/components/icons.d.ts +2 -1
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +1 -1
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +4 -1
- package/dist/types/excalidraw/components/shapes.d.ts +62 -0
- package/dist/types/excalidraw/data/EditorLocalStorage.d.ts +1 -1
- package/dist/types/excalidraw/data/blob.d.ts +5 -5
- package/dist/types/excalidraw/data/filesystem.d.ts +1 -1
- package/dist/types/excalidraw/data/index.d.ts +1 -1
- package/dist/types/excalidraw/data/json.d.ts +1 -1
- package/dist/types/excalidraw/data/library.d.ts +2 -2
- package/dist/types/excalidraw/data/reconcile.d.ts +2 -2
- package/dist/types/excalidraw/data/resave.d.ts +1 -1
- package/dist/types/excalidraw/data/restore.d.ts +1 -1
- package/dist/types/excalidraw/data/transform.d.ts +4 -4
- package/dist/types/excalidraw/data/types.d.ts +2 -2
- package/dist/types/excalidraw/errors.d.ts +0 -3
- package/dist/types/excalidraw/fonts/Fonts.d.ts +2 -12
- package/dist/types/excalidraw/history.d.ts +1 -1
- package/dist/types/excalidraw/i18n.d.ts +1 -1
- package/dist/types/excalidraw/index.d.ts +11 -10
- package/dist/types/excalidraw/lasso/index.d.ts +15 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +13 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +1 -1
- package/dist/types/excalidraw/renderer/staticSvgScene.d.ts +1 -1
- package/dist/types/excalidraw/scene/Renderer.d.ts +2 -2
- package/dist/types/excalidraw/scene/Scene.d.ts +5 -5
- package/dist/types/excalidraw/scene/export.d.ts +1 -1
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/scene/scroll.d.ts +1 -1
- package/dist/types/excalidraw/scene/scrollbars.d.ts +1 -1
- package/dist/types/excalidraw/scene/types.d.ts +3 -3
- package/dist/types/excalidraw/snapping.d.ts +4 -5
- package/dist/types/excalidraw/store.d.ts +2 -2
- package/dist/types/excalidraw/types.d.ts +10 -9
- package/dist/types/excalidraw/visualdebug.d.ts +1 -1
- package/dist/types/excalidraw/{element → wysiwyg}/textWysiwyg.d.ts +1 -1
- package/dist/types/math/{point.d.ts → src/point.d.ts} +2 -2
- package/dist/types/math/{polygon.d.ts → src/polygon.d.ts} +1 -0
- package/dist/types/math/{segment.d.ts → src/segment.d.ts} +1 -1
- package/dist/types/utils/{bbox.d.ts → src/bbox.d.ts} +1 -1
- package/dist/types/utils/{collision.d.ts → src/collision.d.ts} +1 -2
- package/dist/types/utils/{export.d.ts → src/export.d.ts} +2 -2
- package/dist/types/utils/{index.d.ts → src/index.d.ts} +1 -1
- package/dist/types/utils/{geometry → src}/shape.d.ts +1 -14
- package/dist/types/utils/{withinBounds.d.ts → src/withinBounds.d.ts} +2 -2
- package/history.ts +2 -1
- package/package.json +14 -2
- package/dist/dev/chunk-DYSQNY2T.js.map +0 -7
- package/dist/dev/chunk-ND5KUA7P.js.map +0 -7
- package/dist/prod/chunk-45TA3AZW.js +0 -34
- package/dist/prod/data/image-YE6T6FOC.js +0 -1
- /package/dist/dev/data/{image-ZD4HK457.js.map → image-I5I3FC2R.js.map} +0 -0
- /package/dist/dev/locales/{en-IW3FTNXY.js.map → en-FBYNI7ML.js.map} +0 -0
- /package/dist/types/{excalidraw → common/src}/keys.d.ts +0 -0
- /package/dist/types/{excalidraw → common/src}/queue.d.ts +0 -0
- /package/dist/types/{excalidraw → common/src}/random.d.ts +0 -0
- /package/dist/types/{excalidraw/data → common/src}/url.d.ts +0 -0
- /package/dist/types/{excalidraw → common/src}/utility-types.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/containerCache.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/cropElement.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/distance.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/elbowArrow.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/sortElements.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/textMeasurements.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/textWrapping.d.ts +0 -0
- /package/dist/types/{excalidraw/element → element/src}/utils.d.ts +0 -0
- /package/dist/types/math/{angle.d.ts → src/angle.d.ts} +0 -0
- /package/dist/types/math/{curve.d.ts → src/curve.d.ts} +0 -0
- /package/dist/types/math/{ellipse.d.ts → src/ellipse.d.ts} +0 -0
- /package/dist/types/math/{index.d.ts → src/index.d.ts} +0 -0
- /package/dist/types/math/{line.d.ts → src/line.d.ts} +0 -0
- /package/dist/types/math/{range.d.ts → src/range.d.ts} +0 -0
- /package/dist/types/math/{rectangle.d.ts → src/rectangle.d.ts} +0 -0
- /package/dist/types/math/{triangle.d.ts → src/triangle.d.ts} +0 -0
- /package/dist/types/math/{types.d.ts → src/types.d.ts} +0 -0
- /package/dist/types/math/{utils.d.ts → src/utils.d.ts} +0 -0
- /package/dist/types/math/{vector.d.ts → src/vector.d.ts} +0 -0
|
@@ -2,12 +2,12 @@ import {
|
|
|
2
2
|
decodePngMetadata,
|
|
3
3
|
encodePngMetadata,
|
|
4
4
|
getTEXtChunk
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-S4MA4GYT.js";
|
|
6
|
+
import "../chunk-3K6YEH7O.js";
|
|
7
7
|
import "../chunk-XDFCUUT6.js";
|
|
8
8
|
export {
|
|
9
9
|
decodePngMetadata,
|
|
10
10
|
encodePngMetadata,
|
|
11
11
|
getTEXtChunk
|
|
12
12
|
};
|
|
13
|
-
//# sourceMappingURL=image-
|
|
13
|
+
//# sourceMappingURL=image-I5I3FC2R.js.map
|
package/dist/dev/index.css
CHANGED
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
--border-radius-md: 0.375rem;
|
|
377
377
|
--border-radius-lg: 0.5rem;
|
|
378
378
|
--color-surface-high: #f1f0ff;
|
|
379
|
-
--color-surface-mid: #
|
|
379
|
+
--color-surface-mid: #f6f6f9;
|
|
380
380
|
--color-surface-low: #ececf4;
|
|
381
381
|
--color-surface-lowest: #ffffff;
|
|
382
382
|
--color-on-surface: #1b1b1f;
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
--color-muted-background: var(--color-gray-40);
|
|
471
471
|
--color-muted-background-darker: var(--color-gray-20);
|
|
472
472
|
--color-logo-text: #e2dfff;
|
|
473
|
-
--color-surface-high:
|
|
473
|
+
--color-surface-high: #2e2d39;
|
|
474
474
|
--color-surface-low: hsl(240, 8%, 15%);
|
|
475
475
|
--color-surface-mid: hsl(240 6% 10%);
|
|
476
476
|
--color-surface-lowest: hsl(0, 0%, 7%);
|
|
@@ -611,14 +611,16 @@
|
|
|
611
611
|
.excalidraw .color-picker__top-picks {
|
|
612
612
|
display: flex;
|
|
613
613
|
justify-content: space-between;
|
|
614
|
+
align-items: center;
|
|
614
615
|
}
|
|
615
616
|
.excalidraw .color-picker__button {
|
|
616
|
-
--radius:
|
|
617
|
+
--radius: 4px;
|
|
618
|
+
--size: 1.375rem;
|
|
617
619
|
padding: 0;
|
|
618
620
|
margin: 0;
|
|
619
|
-
width:
|
|
620
|
-
height:
|
|
621
|
-
border:
|
|
621
|
+
width: var(--size);
|
|
622
|
+
height: var(--size);
|
|
623
|
+
border: 0;
|
|
622
624
|
border-radius: var(--radius);
|
|
623
625
|
filter: var(--theme-filter);
|
|
624
626
|
background-color: var(--swatch-color);
|
|
@@ -627,26 +629,33 @@
|
|
|
627
629
|
font-family: inherit;
|
|
628
630
|
box-sizing: border-box;
|
|
629
631
|
}
|
|
630
|
-
.excalidraw .color-picker__button
|
|
632
|
+
.excalidraw .color-picker__button.has-outline {
|
|
633
|
+
box-shadow: inset 0 0 0 1px #d9d9d9;
|
|
634
|
+
}
|
|
635
|
+
.excalidraw .color-picker__button:hover:not(.active):not(.color-picker__button--large) {
|
|
636
|
+
transform: scale(1.075);
|
|
637
|
+
}
|
|
638
|
+
.excalidraw .color-picker__button:hover:not(.active).color-picker__button--large::after {
|
|
631
639
|
content: "";
|
|
632
640
|
position: absolute;
|
|
633
|
-
top: -
|
|
634
|
-
left: -
|
|
635
|
-
right: -
|
|
636
|
-
bottom: -
|
|
641
|
+
top: -1px;
|
|
642
|
+
left: -1px;
|
|
643
|
+
right: -1px;
|
|
644
|
+
bottom: -1px;
|
|
637
645
|
box-shadow: 0 0 0 1px var(--color-gray-30);
|
|
638
|
-
border-radius:
|
|
646
|
+
border-radius: var(--radius);
|
|
639
647
|
filter: var(--theme-filter);
|
|
640
648
|
}
|
|
641
649
|
.excalidraw .color-picker__button.active .color-picker__button-outline {
|
|
642
650
|
position: absolute;
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
651
|
+
--offset: -1px;
|
|
652
|
+
top: var(--offset);
|
|
653
|
+
left: var(--offset);
|
|
654
|
+
right: var(--offset);
|
|
655
|
+
bottom: var(--offset);
|
|
647
656
|
box-shadow: 0 0 0 1px var(--color-primary-darkest);
|
|
648
657
|
z-index: 1;
|
|
649
|
-
border-radius:
|
|
658
|
+
border-radius: var(--radius);
|
|
650
659
|
filter: var(--theme-filter);
|
|
651
660
|
}
|
|
652
661
|
.excalidraw .color-picker__button:focus-visible {
|
|
@@ -689,10 +698,11 @@
|
|
|
689
698
|
}
|
|
690
699
|
.excalidraw .color-picker__button__hotkey-label {
|
|
691
700
|
position: absolute;
|
|
692
|
-
right:
|
|
693
|
-
bottom:
|
|
701
|
+
right: 5px;
|
|
702
|
+
bottom: 3px;
|
|
694
703
|
filter: none;
|
|
695
704
|
font-size: 11px;
|
|
705
|
+
font-weight: 500;
|
|
696
706
|
}
|
|
697
707
|
.excalidraw .color-picker {
|
|
698
708
|
background: var(--popup-bg-color);
|
|
@@ -1160,7 +1170,7 @@
|
|
|
1160
1170
|
.excalidraw .range-wrapper {
|
|
1161
1171
|
position: relative;
|
|
1162
1172
|
padding-top: 10px;
|
|
1163
|
-
padding-bottom:
|
|
1173
|
+
padding-bottom: 25px;
|
|
1164
1174
|
}
|
|
1165
1175
|
.excalidraw .range-input {
|
|
1166
1176
|
width: 100%;
|
|
@@ -2511,7 +2521,7 @@
|
|
|
2511
2521
|
--border-radius-md: 0.375rem;
|
|
2512
2522
|
--border-radius-lg: 0.5rem;
|
|
2513
2523
|
--color-surface-high: #f1f0ff;
|
|
2514
|
-
--color-surface-mid: #
|
|
2524
|
+
--color-surface-mid: #f6f6f9;
|
|
2515
2525
|
--color-surface-low: #ececf4;
|
|
2516
2526
|
--color-surface-lowest: #ffffff;
|
|
2517
2527
|
--color-on-surface: #1b1b1f;
|
|
@@ -2605,7 +2615,7 @@
|
|
|
2605
2615
|
--color-muted-background: var(--color-gray-40);
|
|
2606
2616
|
--color-muted-background-darker: var(--color-gray-20);
|
|
2607
2617
|
--color-logo-text: #e2dfff;
|
|
2608
|
-
--color-surface-high:
|
|
2618
|
+
--color-surface-high: #2e2d39;
|
|
2609
2619
|
--color-surface-low: hsl(240, 8%, 15%);
|
|
2610
2620
|
--color-surface-mid: hsl(240 6% 10%);
|
|
2611
2621
|
--color-surface-lowest: hsl(0, 0%, 7%);
|
|
@@ -2947,7 +2957,7 @@
|
|
|
2947
2957
|
margin-right: 6px;
|
|
2948
2958
|
}
|
|
2949
2959
|
|
|
2950
|
-
/*
|
|
2960
|
+
/* components/ElementCanvasButtons.scss */
|
|
2951
2961
|
.excalidraw .excalidraw-canvas-buttons {
|
|
2952
2962
|
position: absolute;
|
|
2953
2963
|
box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.3);
|
|
@@ -4407,10 +4417,12 @@
|
|
|
4407
4417
|
.excalidraw .drag-input-container {
|
|
4408
4418
|
display: flex;
|
|
4409
4419
|
width: 100%;
|
|
4420
|
+
border-radius: var(--border-radius-lg);
|
|
4410
4421
|
}
|
|
4411
4422
|
.excalidraw .drag-input-container:focus-within {
|
|
4412
4423
|
box-shadow: 0 0 0 1px var(--color-primary-darkest);
|
|
4413
4424
|
border-radius: var(--border-radius-md);
|
|
4425
|
+
background: transparent;
|
|
4414
4426
|
}
|
|
4415
4427
|
.excalidraw .disabled {
|
|
4416
4428
|
opacity: 0.5;
|
|
@@ -4418,26 +4430,18 @@
|
|
|
4418
4430
|
}
|
|
4419
4431
|
.excalidraw .drag-input-label {
|
|
4420
4432
|
flex-shrink: 0;
|
|
4421
|
-
border:
|
|
4422
|
-
|
|
4423
|
-
padding: 0 0.5rem 0 0.75rem;
|
|
4433
|
+
border: 0;
|
|
4434
|
+
padding: 0 0.5rem 0 0.25rem;
|
|
4424
4435
|
min-width: 1rem;
|
|
4436
|
+
width: 1.5rem;
|
|
4425
4437
|
height: 2rem;
|
|
4426
|
-
box-sizing:
|
|
4438
|
+
box-sizing: content-box;
|
|
4427
4439
|
color: var(--popup-text-color);
|
|
4428
4440
|
display: flex;
|
|
4429
4441
|
align-items: center;
|
|
4430
4442
|
justify-content: center;
|
|
4431
4443
|
position: relative;
|
|
4432
4444
|
}
|
|
4433
|
-
:root[dir=ltr] .excalidraw .drag-input-label {
|
|
4434
|
-
border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
|
|
4435
|
-
}
|
|
4436
|
-
:root[dir=rtl] .excalidraw .drag-input-label {
|
|
4437
|
-
border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
|
|
4438
|
-
border-right: 1px solid var(--default-border-color);
|
|
4439
|
-
border-left: 0;
|
|
4440
|
-
}
|
|
4441
4445
|
.excalidraw .drag-input {
|
|
4442
4446
|
box-sizing: border-box;
|
|
4443
4447
|
width: 100%;
|
|
@@ -4449,21 +4453,11 @@
|
|
|
4449
4453
|
border: 0;
|
|
4450
4454
|
outline: none;
|
|
4451
4455
|
height: 2rem;
|
|
4452
|
-
border: 1px solid var(--default-border-color);
|
|
4453
|
-
border-left: 0;
|
|
4454
4456
|
letter-spacing: 0.4px;
|
|
4455
4457
|
padding: 0.5rem;
|
|
4456
4458
|
padding-left: 0.25rem;
|
|
4457
4459
|
appearance: none;
|
|
4458
4460
|
}
|
|
4459
|
-
:root[dir=ltr] .excalidraw .drag-input {
|
|
4460
|
-
border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
|
|
4461
|
-
}
|
|
4462
|
-
:root[dir=rtl] .excalidraw .drag-input {
|
|
4463
|
-
border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
|
|
4464
|
-
border-left: 1px solid var(--default-border-color);
|
|
4465
|
-
border-right: 0;
|
|
4466
|
-
}
|
|
4467
4461
|
.excalidraw .drag-input:focus-visible {
|
|
4468
4462
|
box-shadow: none;
|
|
4469
4463
|
}
|
|
@@ -4508,6 +4502,9 @@
|
|
|
4508
4502
|
.exc-stats__row div + div {
|
|
4509
4503
|
text-align: right;
|
|
4510
4504
|
}
|
|
4505
|
+
.exc-stats__row:empty {
|
|
4506
|
+
display: none;
|
|
4507
|
+
}
|
|
4511
4508
|
.exc-stats__row--heading {
|
|
4512
4509
|
text-align: center;
|
|
4513
4510
|
font-weight: bold;
|
|
@@ -5798,7 +5795,7 @@
|
|
|
5798
5795
|
--border-radius-md: 0.375rem;
|
|
5799
5796
|
--border-radius-lg: 0.5rem;
|
|
5800
5797
|
--color-surface-high: #f1f0ff;
|
|
5801
|
-
--color-surface-mid: #
|
|
5798
|
+
--color-surface-mid: #f6f6f9;
|
|
5802
5799
|
--color-surface-low: #ececf4;
|
|
5803
5800
|
--color-surface-lowest: #ffffff;
|
|
5804
5801
|
--color-on-surface: #1b1b1f;
|
|
@@ -5892,7 +5889,7 @@
|
|
|
5892
5889
|
--color-muted-background: var(--color-gray-40);
|
|
5893
5890
|
--color-muted-background-darker: var(--color-gray-20);
|
|
5894
5891
|
--color-logo-text: #e2dfff;
|
|
5895
|
-
--color-surface-high:
|
|
5892
|
+
--color-surface-high: #2e2d39;
|
|
5896
5893
|
--color-surface-low: hsl(240, 8%, 15%);
|
|
5897
5894
|
--color-surface-mid: hsl(240 6% 10%);
|
|
5898
5895
|
--color-surface-lowest: hsl(0, 0%, 7%);
|