goblin-gadgets 2.0.21 → 3.0.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/package.json
CHANGED
package/widgets/field/widget.js
CHANGED
|
@@ -599,7 +599,7 @@ class Field extends Form {
|
|
|
599
599
|
if (this.props.pluginType) {
|
|
600
600
|
const CustomPlugin = widgetImporter(`plugin-${this.props.pluginType}`);
|
|
601
601
|
WiredPlugin = Widget.Wired(CustomPlugin)(
|
|
602
|
-
`${this.props.plugin}-plugin
|
|
602
|
+
`${this.props.plugin}-plugin@${this.context.id}`
|
|
603
603
|
);
|
|
604
604
|
FinalPlugin = this.mapWidget(WiredPlugin, 'entityIds', this.fullPath);
|
|
605
605
|
} else {
|
|
@@ -629,7 +629,7 @@ class Field extends Form {
|
|
|
629
629
|
>
|
|
630
630
|
<FinalPlugin
|
|
631
631
|
{...pluginProps}
|
|
632
|
-
id={`${this.props.plugin}-plugin
|
|
632
|
+
id={`${this.props.plugin}-plugin@${this.context.id}`}
|
|
633
633
|
readonly={true}
|
|
634
634
|
embeddedLevel={
|
|
635
635
|
this.props.embeddedLevel ? this.props.embeddedLevel + 1 : 1
|
|
@@ -1229,9 +1229,7 @@ class Field extends Form {
|
|
|
1229
1229
|
if (this.props.plugin) {
|
|
1230
1230
|
let WiredPlugin = null;
|
|
1231
1231
|
let FinalPlugin = null;
|
|
1232
|
-
const pluginId = `${this.props.plugin}-plugin@${
|
|
1233
|
-
this.props.mode ? `${this.props.mode}@` : ''
|
|
1234
|
-
}${this.context.id}`;
|
|
1232
|
+
const pluginId = `${this.props.plugin}-plugin@${this.context.id}`;
|
|
1235
1233
|
if (this.props.pluginType) {
|
|
1236
1234
|
const CustomPlugin = widgetImporter(`plugin-${this.props.pluginType}`);
|
|
1237
1235
|
WiredPlugin = Widget.Wired(CustomPlugin)(pluginId);
|
package/widgets/smiley/styles.js
CHANGED
|
@@ -459,6 +459,11 @@ export default function styles(theme, props) {
|
|
|
459
459
|
|
|
460
460
|
/******************************************************************************/
|
|
461
461
|
|
|
462
|
+
smiley.boxSizing = 'unset';
|
|
463
|
+
smile.boxSizing = 'unset';
|
|
464
|
+
|
|
465
|
+
/******************************************************************************/
|
|
466
|
+
|
|
462
467
|
const documentation = {
|
|
463
468
|
position: 'absolute',
|
|
464
469
|
left: 0,
|