@bpmn-io/form-js-editor 1.6.3 → 1.7.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -22
- package/README.md +152 -152
- package/dist/assets/form-js-editor-base.css +884 -863
- package/dist/assets/form-js-editor.css +60 -17
- package/dist/assets/properties-panel.css +40 -17
- package/dist/index.cjs +2326 -1988
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +2330 -1992
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +29 -49
- package/dist/types/core/Debounce.d.ts +2 -3
- package/dist/types/core/EventBus.d.ts +1 -1
- package/dist/types/core/FormFieldRegistry.d.ts +1 -1
- package/dist/types/core/FormLayoutValidator.d.ts +7 -8
- package/dist/types/core/FormLayouter.d.ts +1 -1
- package/dist/types/core/index.d.ts +8 -9
- package/dist/types/features/SectionModuleBase.d.ts +1 -1
- package/dist/types/features/dragging/Dragging.d.ts +13 -14
- package/dist/types/features/dragging/index.d.ts +2 -3
- package/dist/types/features/editor-actions/FormEditorActions.d.ts +2 -3
- package/dist/types/features/editor-actions/index.d.ts +2 -3
- package/dist/types/features/expression-language/EditorTemplating.d.ts +2 -3
- package/dist/types/features/expression-language/index.d.ts +2 -3
- package/dist/types/features/keyboard/FormEditorKeyboardBindings.d.ts +2 -3
- package/dist/types/features/keyboard/index.d.ts +2 -3
- package/dist/types/features/modeling/FormLayoutUpdater.d.ts +2 -3
- package/dist/types/features/modeling/Modeling.d.ts +9 -10
- package/dist/types/features/modeling/behavior/IdBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/KeyBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/OptionsSourceBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/PathBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/ValidateBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/index.d.ts +6 -7
- package/dist/types/features/modeling/cmd/AddFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/EditFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/MoveFormFieldHandler.d.ts +9 -10
- package/dist/types/features/modeling/cmd/RemoveFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/UpdateIdClaimHandler.d.ts +5 -6
- package/dist/types/features/modeling/cmd/UpdateKeyClaimHandler.d.ts +3 -4
- package/dist/types/features/modeling/cmd/UpdatePathClaimHandler.d.ts +3 -4
- package/dist/types/features/modeling/index.d.ts +8 -9
- package/dist/types/features/palette/PaletteRenderer.d.ts +7 -0
- package/dist/types/features/palette/components/Palette.d.ts +2 -2
- package/dist/types/features/palette/components/PaletteEntry.d.ts +1 -1
- package/dist/types/features/palette/index.d.ts +3 -4
- package/dist/types/features/properties-panel/PropertiesPanel.d.ts +1 -1
- package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +4 -5
- package/dist/types/features/properties-panel/PropertiesProvider.d.ts +2 -3
- package/dist/types/features/properties-panel/Util.d.ts +6 -1
- package/dist/types/features/properties-panel/components/AutoFocusSelect.d.ts +1 -1
- package/dist/types/features/properties-panel/components/index.d.ts +1 -1
- package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +2 -2
- package/dist/types/features/properties-panel/context/index.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ActionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/AdornerEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/AltTextEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ColumnEntry.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/ColumnsEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ConditionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/CustomValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DateTimeConstraintsEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DateTimeEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/{DateTimeSerializationEntry.d.ts → DateTimeFormatEntry.d.ts} +1 -1
- package/dist/types/features/properties-panel/entries/DefaultValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DescriptionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DisabledEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/GroupAppearanceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/HeightEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/HtmlEntry.d.ts +10 -0
- package/dist/types/features/properties-panel/entries/IFrameHeightEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/IFrameUrlEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/IdEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ImageSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/InputKeyOptionsSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/KeyEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/LabelEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/LayouterAppearanceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/NumberEntries.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/NumberSerializationEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/OptionsExpressionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/OptionsSourceSelectEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/PathEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ReadonlyEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/RepeatableEntry.d.ts +1 -2
- package/dist/types/features/properties-panel/entries/SelectEntries.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/StaticOptionsSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/TextEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/index.d.ts +4 -4
- package/dist/types/features/properties-panel/entries/factories/simpleBoolEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/simpleRangeIntegerEntryFactory.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/factories/simpleSelectEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/simpleStringEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/zeroPositiveIntegerEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/index.d.ts +34 -33
- package/dist/types/features/properties-panel/groups/AppearanceGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/ConstraintsGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/CustomPropertiesGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/GeneralGroup.d.ts +1 -2
- package/dist/types/features/properties-panel/groups/LayoutGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/OptionsGroups.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/SecurityAttributesGroup.d.ts +20 -0
- package/dist/types/features/properties-panel/groups/SerializationGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/ValidationGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/index.d.ts +9 -8
- package/dist/types/features/properties-panel/hooks/index.d.ts +1 -1
- package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +1 -1
- package/dist/types/features/properties-panel/index.d.ts +4 -5
- package/dist/types/features/render-injection/RenderInjector.d.ts +3 -4
- package/dist/types/features/render-injection/components/InjectedRendersRoot.d.ts +1 -2
- package/dist/types/features/render-injection/index.d.ts +2 -3
- package/dist/types/features/render-injection/slot-fill/Fill.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/FillContext.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/Slot.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/SlotContext.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/SlotFillRoot.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/index.d.ts +5 -5
- package/dist/types/features/repeat-render/EditorRepeatRenderManager.d.ts +2 -3
- package/dist/types/features/repeat-render/index.d.ts +2 -3
- package/dist/types/features/selection/Selection.d.ts +2 -3
- package/dist/types/features/selection/SelectionBehavior.d.ts +2 -3
- package/dist/types/features/selection/index.d.ts +3 -4
- package/dist/types/index.d.ts +1 -1
- package/dist/types/render/EditorFormFields.d.ts +1 -1
- package/dist/types/render/Renderer.d.ts +6 -7
- package/dist/types/render/components/FormEditor.d.ts +1 -1
- package/dist/types/render/components/ModularSection.d.ts +1 -2
- package/dist/types/render/components/editor-form-fields/EditorHtml.d.ts +5 -0
- package/dist/types/render/components/editor-form-fields/EditorIFrame.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/EditorTable.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/EditorText.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/index.d.ts +5 -4
- package/dist/types/render/context/DragAndDropContext.d.ts +1 -2
- package/dist/types/render/context/FormEditorContext.d.ts +2 -2
- package/dist/types/render/context/index.d.ts +2 -2
- package/dist/types/render/hooks/index.d.ts +3 -3
- package/dist/types/render/hooks/useDebounce.d.ts +4 -1
- package/dist/types/render/hooks/usePrevious.d.ts +1 -1
- package/dist/types/render/hooks/useService.d.ts +1 -1
- package/dist/types/render/index.d.ts +3 -4
- package/dist/types/types.d.ts +28 -28
- package/package.json +6 -6
- package/dist/types/features/palette/PaletteModule.d.ts +0 -8
|
@@ -319,12 +319,18 @@
|
|
|
319
319
|
height: 80px;
|
|
320
320
|
width: calc(100% - 4rem);
|
|
321
321
|
position: absolute;
|
|
322
|
+
container-type: size;
|
|
322
323
|
}
|
|
323
324
|
|
|
324
|
-
.fjs-editor-container .fjs-empty-component
|
|
325
|
+
.fjs-editor-container .fjs-empty-component .fjs-empty-component-text {
|
|
325
326
|
color: var(--cds-text-disabled, var(--color-grey-225-10-55));
|
|
326
327
|
}
|
|
327
328
|
|
|
329
|
+
@container (width < 100px) {
|
|
330
|
+
.fjs-empty-component-text {
|
|
331
|
+
display: none;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
328
334
|
.fjs-editor-container .fjs-empty-editor {
|
|
329
335
|
display: flex;
|
|
330
336
|
align-items: center;
|
|
@@ -439,7 +445,7 @@
|
|
|
439
445
|
.fjs-editor-container .fjs-repeat-render-footer {
|
|
440
446
|
font-size: var(--font-size-label);
|
|
441
447
|
background: var(--cds-field, var(--color-background-disabled));
|
|
442
|
-
color: var(--
|
|
448
|
+
color: var(--color-text-light);
|
|
443
449
|
padding: 3px;
|
|
444
450
|
display: flex;
|
|
445
451
|
align-items: center;
|
|
@@ -717,6 +723,14 @@
|
|
|
717
723
|
transform: scale(1.3);
|
|
718
724
|
}
|
|
719
725
|
|
|
726
|
+
.fjs-properties-container .fjs-properties-panel .fjs-properties-panel-detached-description {
|
|
727
|
+
margin: 0px 12px 6px;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.fjs-properties-container .fjs-properties-panel .cm-editor {
|
|
731
|
+
max-height: 400px;
|
|
732
|
+
}
|
|
733
|
+
|
|
720
734
|
/**
|
|
721
735
|
* Editor Form Fields
|
|
722
736
|
*/
|
|
@@ -738,6 +752,11 @@
|
|
|
738
752
|
background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #f5f5f5 10px, #f5f5f5 20px);
|
|
739
753
|
}
|
|
740
754
|
|
|
755
|
+
.fjs-editor-container .fjs-form-field-html,
|
|
756
|
+
.fjs-editor-container .fjs-form-field-text {
|
|
757
|
+
min-height: 30px;
|
|
758
|
+
}
|
|
759
|
+
|
|
741
760
|
.fjs-editor-container .fjs-form-field-separator hr {
|
|
742
761
|
margin: 10px 2px;
|
|
743
762
|
}
|
|
@@ -867,7 +886,8 @@
|
|
|
867
886
|
/**
|
|
868
887
|
* Theming
|
|
869
888
|
*/
|
|
870
|
-
.bio-properties-panel
|
|
889
|
+
.bio-properties-panel,
|
|
890
|
+
.djs-parent {
|
|
871
891
|
--color-grey-225-10-15: hsl(225, 10%, 15%);
|
|
872
892
|
--color-grey-225-10-35: hsl(225, 10%, 35%);
|
|
873
893
|
--color-grey-225-10-55: hsl(225, 10%, 55%);
|
|
@@ -893,6 +913,9 @@
|
|
|
893
913
|
--color-white: white;
|
|
894
914
|
--color-black: black;
|
|
895
915
|
--color-transparent: transparent;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.bio-properties-panel {
|
|
896
919
|
--text-base-color: var(--color-grey-225-10-15);
|
|
897
920
|
--text-error-color: var(--color-red-360-100-45);
|
|
898
921
|
--link-color: var(--color-blue-205-100-50);
|
|
@@ -958,11 +981,6 @@
|
|
|
958
981
|
--feel-open-popup-hover-color: hsla(219, 99%, 53%, 1);
|
|
959
982
|
--feel-indicator-background-color: var(--color-grey-225-10-90);
|
|
960
983
|
--feelers-select-color: var(--color-blue-205-100-85);
|
|
961
|
-
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
962
|
-
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
963
|
-
--tooltip-link: var(--color-blue-218-100-74);
|
|
964
|
-
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
965
|
-
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
966
984
|
--text-size-base: 14px;
|
|
967
985
|
--text-size-small: 13px;
|
|
968
986
|
--text-size-smallest: 12px;
|
|
@@ -1941,7 +1959,7 @@ textarea.bio-properties-panel-input {
|
|
|
1941
1959
|
}
|
|
1942
1960
|
|
|
1943
1961
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-input {
|
|
1944
|
-
resize:
|
|
1962
|
+
resize: none;
|
|
1945
1963
|
overflow: hidden;
|
|
1946
1964
|
overflow-y: auto;
|
|
1947
1965
|
}
|
|
@@ -1974,19 +1992,34 @@ textarea.bio-properties-panel-input {
|
|
|
1974
1992
|
text-decoration-style: dotted;
|
|
1975
1993
|
text-underline-offset: 2px;
|
|
1976
1994
|
font: inherit;
|
|
1995
|
+
display: flex;
|
|
1996
|
+
justify-content: center;
|
|
1997
|
+
width: fit-content;
|
|
1977
1998
|
}
|
|
1978
1999
|
|
|
1979
2000
|
.bio-properties-panel-tooltip {
|
|
2001
|
+
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
2002
|
+
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
2003
|
+
--tooltip-link: var(--color-blue-218-100-74);
|
|
2004
|
+
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
2005
|
+
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
1980
2006
|
display: flex;
|
|
1981
2007
|
color: var(--color-white, white);
|
|
1982
2008
|
position: fixed;
|
|
1983
2009
|
z-index: 1000;
|
|
1984
|
-
padding-right: 6px;
|
|
1985
2010
|
max-width: 300px;
|
|
1986
2011
|
font-size: var(--text-size-small);
|
|
1987
2012
|
font-family: var(--font-family);
|
|
1988
2013
|
}
|
|
1989
2014
|
|
|
2015
|
+
.bio-properties-panel-tooltip.right {
|
|
2016
|
+
padding-right: 6px;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
.bio-properties-panel-tooltip.top {
|
|
2020
|
+
flex-direction: column;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
1990
2023
|
.bio-properties-panel-tooltip-content {
|
|
1991
2024
|
background-color: var(--tooltip-background-color);
|
|
1992
2025
|
padding: 16px;
|
|
@@ -2032,6 +2065,12 @@ textarea.bio-properties-panel-input {
|
|
|
2032
2065
|
margin-top: 16px;
|
|
2033
2066
|
}
|
|
2034
2067
|
|
|
2068
|
+
.bio-properties-panel-tooltip.top .bio-properties-panel-tooltip-arrow {
|
|
2069
|
+
margin-top: -3px;
|
|
2070
|
+
margin-left: calc(50% - 2.5px);
|
|
2071
|
+
transform: rotate(90deg);
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2035
2074
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor__open-popup-placeholder,
|
|
2036
2075
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-feel-editor__open-popup-placeholder {
|
|
2037
2076
|
display: none;
|
|
@@ -2100,6 +2139,8 @@ textarea.bio-properties-panel-input {
|
|
|
2100
2139
|
|
|
2101
2140
|
.bio-properties-panel-popup .bio-properties-panel-popup__body:not(:first-child) {
|
|
2102
2141
|
padding-top: 0;
|
|
2142
|
+
padding-left: 0;
|
|
2143
|
+
padding-right: 0;
|
|
2103
2144
|
}
|
|
2104
2145
|
|
|
2105
2146
|
.bio-properties-panel-popup .bio-properties-panel-popup__header {
|
|
@@ -2184,6 +2225,10 @@ textarea.bio-properties-panel-input {
|
|
|
2184
2225
|
min-width: 100%;
|
|
2185
2226
|
}
|
|
2186
2227
|
|
|
2228
|
+
.bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-scroller {
|
|
2229
|
+
overflow: auto !important;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2187
2232
|
.bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container {
|
|
2188
2233
|
width: 100%;
|
|
2189
2234
|
display: flex;
|
|
@@ -2201,7 +2246,6 @@ textarea.bio-properties-panel-input {
|
|
|
2201
2246
|
width: 100%;
|
|
2202
2247
|
resize: none;
|
|
2203
2248
|
padding: 0;
|
|
2204
|
-
margin-left: -12px;
|
|
2205
2249
|
overflow: hidden;
|
|
2206
2250
|
overflow-y: auto;
|
|
2207
2251
|
}
|
|
@@ -2213,19 +2257,18 @@ textarea.bio-properties-panel-input {
|
|
|
2213
2257
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup,
|
|
2214
2258
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup {
|
|
2215
2259
|
position: absolute;
|
|
2216
|
-
|
|
2260
|
+
top: 0;
|
|
2217
2261
|
right: 0;
|
|
2218
|
-
|
|
2262
|
+
line-height: 1;
|
|
2263
|
+
padding: 2px 4px;
|
|
2264
|
+
margin: 3px;
|
|
2265
|
+
display: none;
|
|
2219
2266
|
background: none;
|
|
2220
2267
|
border: none;
|
|
2221
2268
|
color: var(--feel-open-popup-color);
|
|
2222
2269
|
cursor: pointer;
|
|
2223
2270
|
}
|
|
2224
2271
|
|
|
2225
|
-
.bio-properties-panel-open-feel-popup svg {
|
|
2226
|
-
background: var(--feel-open-popup-background-color);
|
|
2227
|
-
}
|
|
2228
|
-
|
|
2229
2272
|
.bio-properties-panel-feelers-editor-container:hover .bio-properties-panel-open-feel-popup,
|
|
2230
2273
|
.bio-properties-panel-feel-container:hover .bio-properties-panel-open-feel-popup,
|
|
2231
2274
|
.bio-properties-panel-feelers-editor-container:focus-within .bio-properties-panel-open-feel-popup,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Theming
|
|
3
3
|
*/
|
|
4
|
-
.bio-properties-panel
|
|
4
|
+
.bio-properties-panel,
|
|
5
|
+
.djs-parent {
|
|
5
6
|
--color-grey-225-10-15: hsl(225, 10%, 15%);
|
|
6
7
|
--color-grey-225-10-35: hsl(225, 10%, 35%);
|
|
7
8
|
--color-grey-225-10-55: hsl(225, 10%, 55%);
|
|
@@ -26,11 +27,13 @@
|
|
|
26
27
|
--color-red-360-100-45: hsl(360, 100%, 45%);
|
|
27
28
|
--color-red-360-100-92: hsl(360, 100%, 92%);
|
|
28
29
|
--color-red-360-100-97: hsl(360, 100%, 97%);
|
|
29
|
-
|
|
30
30
|
--color-white: white;
|
|
31
31
|
--color-black: black;
|
|
32
32
|
--color-transparent: transparent;
|
|
33
33
|
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.bio-properties-panel {
|
|
34
37
|
--text-base-color: var(--color-grey-225-10-15);
|
|
35
38
|
--text-error-color: var(--color-red-360-100-45);
|
|
36
39
|
--link-color: var(--color-blue-205-100-50);
|
|
@@ -118,12 +121,6 @@
|
|
|
118
121
|
|
|
119
122
|
--feelers-select-color: var(--color-blue-205-100-85);
|
|
120
123
|
|
|
121
|
-
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
122
|
-
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
123
|
-
--tooltip-link: var(--color-blue-218-100-74);
|
|
124
|
-
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
125
|
-
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
126
|
-
|
|
127
124
|
--text-size-base: 14px;
|
|
128
125
|
--text-size-small: 13px;
|
|
129
126
|
--text-size-smallest: 12px;
|
|
@@ -1116,7 +1113,7 @@ textarea.bio-properties-panel-input {
|
|
|
1116
1113
|
}
|
|
1117
1114
|
|
|
1118
1115
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-input {
|
|
1119
|
-
resize:
|
|
1116
|
+
resize: none;
|
|
1120
1117
|
overflow: hidden;
|
|
1121
1118
|
overflow-y: auto;
|
|
1122
1119
|
}
|
|
@@ -1149,19 +1146,35 @@ textarea.bio-properties-panel-input {
|
|
|
1149
1146
|
text-decoration-style: dotted;
|
|
1150
1147
|
text-underline-offset: 2px;
|
|
1151
1148
|
font: inherit;
|
|
1149
|
+
display: flex;
|
|
1150
|
+
justify-content: center;
|
|
1151
|
+
width: fit-content;
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
1154
|
.bio-properties-panel-tooltip {
|
|
1155
|
+
--tooltip-underline-color: var(--color-blue-219-99-53);
|
|
1156
|
+
--tooltip-background-color: var(--color-grey-0-0-22);
|
|
1157
|
+
--tooltip-link: var(--color-blue-218-100-74);
|
|
1158
|
+
--tooltip-code-background-color: var(--color-grey-225-10-97);
|
|
1159
|
+
--tooltip-code-border-color: var(--color-grey-225-10-85);
|
|
1160
|
+
|
|
1155
1161
|
display: flex;
|
|
1156
1162
|
color: var(--color-white, white);
|
|
1157
1163
|
position: fixed;
|
|
1158
1164
|
z-index: 1000;
|
|
1159
|
-
padding-right: 6px;
|
|
1160
1165
|
max-width: 300px;
|
|
1161
1166
|
font-size: var(--text-size-small);
|
|
1162
1167
|
font-family: var(--font-family);
|
|
1163
1168
|
}
|
|
1164
1169
|
|
|
1170
|
+
.bio-properties-panel-tooltip.right {
|
|
1171
|
+
padding-right: 6px;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
.bio-properties-panel-tooltip.top {
|
|
1175
|
+
flex-direction: column;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1165
1178
|
.bio-properties-panel-tooltip-content {
|
|
1166
1179
|
background-color: var(--tooltip-background-color);
|
|
1167
1180
|
padding: 16px;
|
|
@@ -1207,6 +1220,12 @@ textarea.bio-properties-panel-input {
|
|
|
1207
1220
|
margin-top: 16px;
|
|
1208
1221
|
}
|
|
1209
1222
|
|
|
1223
|
+
.bio-properties-panel-tooltip.top .bio-properties-panel-tooltip-arrow {
|
|
1224
|
+
margin-top: -3px;
|
|
1225
|
+
margin-left: calc(50% - 2.5px);
|
|
1226
|
+
transform: rotate(90deg);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1210
1229
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor__open-popup-placeholder,
|
|
1211
1230
|
.bio-properties-panel-feel-editor-container .bio-properties-panel-feel-editor__open-popup-placeholder {
|
|
1212
1231
|
display: none;
|
|
@@ -1277,6 +1296,8 @@ textarea.bio-properties-panel-input {
|
|
|
1277
1296
|
|
|
1278
1297
|
.bio-properties-panel-popup .bio-properties-panel-popup__body:not(:first-child) {
|
|
1279
1298
|
padding-top: 0;
|
|
1299
|
+
padding-left: 0;
|
|
1300
|
+
padding-right: 0;
|
|
1280
1301
|
}
|
|
1281
1302
|
|
|
1282
1303
|
.bio-properties-panel-popup .bio-properties-panel-popup__header {
|
|
@@ -1361,6 +1382,10 @@ textarea.bio-properties-panel-input {
|
|
|
1361
1382
|
min-width: 100%;
|
|
1362
1383
|
}
|
|
1363
1384
|
|
|
1385
|
+
.bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-scroller {
|
|
1386
|
+
overflow: auto !important;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1364
1389
|
.bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container {
|
|
1365
1390
|
width: 100%;
|
|
1366
1391
|
display: flex;
|
|
@@ -1378,7 +1403,6 @@ textarea.bio-properties-panel-input {
|
|
|
1378
1403
|
width: 100%;
|
|
1379
1404
|
resize: none;
|
|
1380
1405
|
padding: 0;
|
|
1381
|
-
margin-left: -12px;
|
|
1382
1406
|
overflow: hidden;
|
|
1383
1407
|
overflow-y: auto
|
|
1384
1408
|
}
|
|
@@ -1390,19 +1414,18 @@ textarea.bio-properties-panel-input {
|
|
|
1390
1414
|
.bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup,
|
|
1391
1415
|
.bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup {
|
|
1392
1416
|
position: absolute;
|
|
1393
|
-
|
|
1417
|
+
top: 0;
|
|
1394
1418
|
right: 0;
|
|
1395
|
-
|
|
1419
|
+
line-height: 1;
|
|
1420
|
+
padding: 2px 4px;
|
|
1421
|
+
margin: 3px;
|
|
1422
|
+
display: none;
|
|
1396
1423
|
background: none;
|
|
1397
1424
|
border: none;
|
|
1398
1425
|
color: var(--feel-open-popup-color);
|
|
1399
1426
|
cursor: pointer;
|
|
1400
1427
|
}
|
|
1401
1428
|
|
|
1402
|
-
.bio-properties-panel-open-feel-popup svg {
|
|
1403
|
-
background: var(--feel-open-popup-background-color);
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
1429
|
.bio-properties-panel-feelers-editor-container:hover .bio-properties-panel-open-feel-popup,
|
|
1407
1430
|
.bio-properties-panel-feel-container:hover .bio-properties-panel-open-feel-popup,
|
|
1408
1431
|
.bio-properties-panel-feelers-editor-container:focus-within .bio-properties-panel-open-feel-popup,
|