@axinom/mosaic-ui 0.53.0 → 0.54.0-rc.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.0-rc.1",
|
|
4
4
|
"description": "UI components for building Axinom Mosaic applications",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build-storybook": "storybook build"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@axinom/mosaic-core": "^0.4.
|
|
35
|
+
"@axinom/mosaic-core": "^0.4.27-rc.1",
|
|
36
36
|
"@faker-js/faker": "^7.4.0",
|
|
37
37
|
"@geoffcox/react-splitter": "^2.1.2",
|
|
38
38
|
"@popperjs/core": "^2.11.8",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"publishConfig": {
|
|
107
107
|
"access": "public"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "317b13a7a34e369eb547a0a91aaedd05f9bb00fe"
|
|
110
110
|
}
|
|
@@ -100,7 +100,11 @@ const renderData = <T extends Data>(
|
|
|
100
100
|
if (typeof columnData === 'string') {
|
|
101
101
|
return {
|
|
102
102
|
columnData: (
|
|
103
|
-
<span
|
|
103
|
+
<span
|
|
104
|
+
data-test-id={`list-entry-property:${
|
|
105
|
+
column.propertyName as string
|
|
106
|
+
}`}
|
|
107
|
+
>
|
|
104
108
|
{columnData}
|
|
105
109
|
</span>
|
|
106
110
|
),
|
|
@@ -122,7 +126,11 @@ const renderData = <T extends Data>(
|
|
|
122
126
|
if (typeof columnData === 'string') {
|
|
123
127
|
return {
|
|
124
128
|
columnData: (
|
|
125
|
-
<span
|
|
129
|
+
<span
|
|
130
|
+
data-test-id={`list-entry-property:${
|
|
131
|
+
column.propertyName as string
|
|
132
|
+
}`}
|
|
133
|
+
>
|
|
126
134
|
{columnData}
|
|
127
135
|
</span>
|
|
128
136
|
),
|