remoraid 3.1.1 → 3.5.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/README.md +5 -1
- package/dist/core/index.cjs +622 -538
- package/dist/core/index.d.ts +59 -26
- package/dist/core/index.js +589 -503
- package/dist/core/styles.css +73 -16
- package/dist/data-visualization/index.cjs +6546 -0
- package/dist/data-visualization/index.d.ts +529 -0
- package/dist/data-visualization/index.js +6584 -0
- package/dist/jsonforms/index.cjs +150 -2294
- package/dist/jsonforms/index.js +98 -2358
- package/package.json +29 -10
package/dist/core/styles.css
CHANGED
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
--remoraid-frame-layout-gutter
|
|
27
27
|
);
|
|
28
28
|
&:has(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
> .remoraid-frame-layout-vertical-container
|
|
30
|
+
> .remoraid-frame-layout-top-section
|
|
31
|
+
> :not([data-hidden="true"], style)
|
|
32
|
+
) {
|
|
33
33
|
--remoraid-frame-layout-content-section-padding-top: 0;
|
|
34
34
|
}
|
|
35
35
|
&:has(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
> .remoraid-frame-layout-vertical-container
|
|
37
|
+
> .remoraid-frame-layout-bottom-section
|
|
38
|
+
> :not([data-hidden="true"], style)
|
|
39
|
+
) {
|
|
40
40
|
--remoraid-frame-layout-content-section-padding-bottom: 0;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -79,14 +79,14 @@
|
|
|
79
79
|
}
|
|
80
80
|
.remoraid-widget-children-container {
|
|
81
81
|
&:not(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
82
|
+
:has(
|
|
83
|
+
> div
|
|
84
|
+
> .mantine-ScrollArea-root
|
|
85
|
+
> .mantine-ScrollArea-viewport
|
|
86
|
+
> div
|
|
87
|
+
:not([data-hidden="true"], style)
|
|
88
|
+
)
|
|
89
|
+
) {
|
|
90
90
|
display: none !important;
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -120,3 +120,60 @@
|
|
|
120
120
|
transform: none !important;
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
|
+
.remoraid-masked-scroller > .mantine-Scroller-container {
|
|
124
|
+
mask-image: none;
|
|
125
|
+
-webkit-mask-image: none;
|
|
126
|
+
}
|
|
127
|
+
.remoraid-masked-scroller:has(
|
|
128
|
+
> .mantine-Scroller-control[data-position="start"]:not([data-hidden])
|
|
129
|
+
)
|
|
130
|
+
> .mantine-Scroller-container {
|
|
131
|
+
mask-image: linear-gradient(
|
|
132
|
+
to right,
|
|
133
|
+
transparent,
|
|
134
|
+
black var(--scroller-control-size),
|
|
135
|
+
black 100%
|
|
136
|
+
);
|
|
137
|
+
-webkit-mask-image: linear-gradient(
|
|
138
|
+
to right,
|
|
139
|
+
transparent,
|
|
140
|
+
black var(--scroller-control-size),
|
|
141
|
+
black 100%
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
.remoraid-masked-scroller:has(
|
|
145
|
+
> .mantine-Scroller-control[data-position="end"]:not([data-hidden])
|
|
146
|
+
)
|
|
147
|
+
> .mantine-Scroller-container {
|
|
148
|
+
mask-image: linear-gradient(
|
|
149
|
+
to right,
|
|
150
|
+
black 0,
|
|
151
|
+
black calc(100% - var(--scroller-control-size)),
|
|
152
|
+
transparent
|
|
153
|
+
);
|
|
154
|
+
-webkit-mask-image: linear-gradient(
|
|
155
|
+
to right,
|
|
156
|
+
black 0,
|
|
157
|
+
black calc(100% - var(--scroller-control-size)),
|
|
158
|
+
transparent
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
.remoraid-masked-scroller:has(
|
|
162
|
+
> .mantine-Scroller-control[data-position="start"]:not([data-hidden])
|
|
163
|
+
):has(> .mantine-Scroller-control[data-position="end"]:not([data-hidden]))
|
|
164
|
+
> .mantine-Scroller-container {
|
|
165
|
+
mask-image: linear-gradient(
|
|
166
|
+
to right,
|
|
167
|
+
transparent,
|
|
168
|
+
black var(--scroller-control-size),
|
|
169
|
+
black calc(100% - var(--scroller-control-size)),
|
|
170
|
+
transparent
|
|
171
|
+
);
|
|
172
|
+
-webkit-mask-image: linear-gradient(
|
|
173
|
+
to right,
|
|
174
|
+
transparent,
|
|
175
|
+
black var(--scroller-control-size),
|
|
176
|
+
black calc(100% - var(--scroller-control-size)),
|
|
177
|
+
transparent
|
|
178
|
+
);
|
|
179
|
+
}
|