@integry/sdk 4.6.43 → 4.6.45

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integry/sdk",
3
- "version": "4.6.43",
3
+ "version": "4.6.45",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -511,7 +511,7 @@ const MultipurposeField = (props: MultipurposeFieldProps) => {
511
511
  const getStringFromEnd = (str: string): string => {
512
512
  // eslint-disable-next-line @typescript-eslint/no-shadow
513
513
  const regex = /\{([^{}]+)$/;
514
- const matches = str.match(regex);
514
+ const matches = (str || '').match(regex);
515
515
 
516
516
  if (matches && matches.length > 1) {
517
517
  const capturedString = matches[0];
@@ -165,7 +165,8 @@
165
165
  justify-content: center;
166
166
  min-width: 20px;
167
167
  min-height: 20px;
168
- order: 2;
168
+ order: 1;
169
+ margin-right: 2px;
169
170
 
170
171
  svg {
171
172
  width: 1rem;
@@ -235,7 +236,8 @@
235
236
  width: 20px;
236
237
  height: 20px;
237
238
  object-fit: contain;
238
- margin-right: 5px;
239
+ margin-right: 3px;
240
+ order: 2;
239
241
  }
240
242
  }
241
243
  }