@babylonjs/shared-ui-components 8.51.2 → 8.52.1
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/fluent/hoc/childWindow.js +3 -16
- package/fluent/hoc/childWindow.js.map +1 -1
- package/fluent/hoc/propertyLines/vectorPropertyLine.d.ts +3 -1
- package/fluent/hoc/propertyLines/vectorPropertyLine.js +12 -11
- package/fluent/hoc/propertyLines/vectorPropertyLine.js.map +1 -1
- package/fluent/hooks/keyboardHooks.d.ts +4 -1
- package/fluent/hooks/keyboardHooks.js +8 -2
- package/fluent/hooks/keyboardHooks.js.map +1 -1
- package/fluent/primitives/accordion.contexts.js +3 -3
- package/fluent/primitives/accordion.contexts.js.map +1 -1
- package/fluent/primitives/gradient.js +1 -1
- package/fluent/primitives/gradient.js.map +1 -1
- package/fluent/primitives/slider.d.ts +23 -0
- package/fluent/primitives/slider.js +56 -0
- package/fluent/primitives/slider.js.map +1 -0
- package/fluent/primitives/spinButton.d.ts +12 -0
- package/fluent/primitives/spinButton.js +181 -72
- package/fluent/primitives/spinButton.js.map +1 -1
- package/fluent/primitives/syncedSlider.d.ts +2 -0
- package/fluent/primitives/syncedSlider.js +5 -13
- package/fluent/primitives/syncedSlider.js.map +1 -1
- package/fluent/primitives/toggleButton.js +3 -3
- package/fluent/primitives/toggleButton.js.map +1 -1
- package/nodeGraphSystem/graphFrame.d.ts +0 -2
- package/nodeGraphSystem/graphFrame.js +18 -18
- package/nodeGraphSystem/graphFrame.js.map +1 -1
- package/nodeGraphSystem/graphFrame.module.scss +5 -10
- package/nodeGraphSystem/graphNode.module.scss +5 -9
- package/package.json +1 -1
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.frame-comment-span {
|
|
35
|
-
white-space:
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
white-space: normal;
|
|
36
|
+
overflow-wrap: break-word;
|
|
37
|
+
word-wrap: break-word;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.selected.frame-box-border {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
text-align: center;
|
|
50
50
|
display: grid;
|
|
51
51
|
grid-template-rows: 100%;
|
|
52
|
-
grid-template-columns: calc(100% -
|
|
52
|
+
grid-template-columns: calc(100% - 74px) 30px 7px 30px 7px;
|
|
53
53
|
align-content: center;
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
}
|
|
@@ -73,13 +73,8 @@
|
|
|
73
73
|
grid-row: 1;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
.frame-box-header-focus {
|
|
77
|
-
grid-column: 4;
|
|
78
|
-
grid-row: 1;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
76
|
.frame-box-header-close {
|
|
82
|
-
grid-column:
|
|
77
|
+
grid-column: 4;
|
|
83
78
|
grid-row: 1;
|
|
84
79
|
}
|
|
85
80
|
|
|
@@ -32,12 +32,10 @@
|
|
|
32
32
|
grid-column: 1;
|
|
33
33
|
position: relative;
|
|
34
34
|
border: 4px solid black;
|
|
35
|
-
border-top-right-radius:
|
|
36
|
-
border-top-left-radius:
|
|
35
|
+
border-top-right-radius: 8px;
|
|
36
|
+
border-top-left-radius: 8px;
|
|
37
37
|
background: black;
|
|
38
38
|
color: white;
|
|
39
|
-
transform: scaleX(1.01) translateY(-0.5px);
|
|
40
|
-
transform-origin: center;
|
|
41
39
|
display: grid;
|
|
42
40
|
grid-template-columns: auto 1fr auto;
|
|
43
41
|
grid-template-rows: 100%;
|
|
@@ -104,14 +102,12 @@
|
|
|
104
102
|
|
|
105
103
|
.comments {
|
|
106
104
|
position: absolute;
|
|
107
|
-
|
|
105
|
+
bottom: calc(100% + 5px);
|
|
108
106
|
width: 200px;
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
overflow-wrap: break-word;
|
|
108
|
+
word-wrap: break-word;
|
|
111
109
|
font-style: italic;
|
|
112
110
|
opacity: 0.8;
|
|
113
|
-
display: grid;
|
|
114
|
-
align-items: flex-end;
|
|
115
111
|
pointer-events: none;
|
|
116
112
|
}
|
|
117
113
|
|