@dartech/arsenal-ui 1.4.84 → 1.4.85
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/index.js +7 -0
- package/package.json +1 -1
- package/src/theme/tableThemeOptions.d.ts +7 -0
package/index.js
CHANGED
|
@@ -1954,6 +1954,13 @@ const tableThemeOptions = {
|
|
|
1954
1954
|
'&:focus': {
|
|
1955
1955
|
outline: 'none'
|
|
1956
1956
|
}
|
|
1957
|
+
},
|
|
1958
|
+
actionsCell: {
|
|
1959
|
+
flexWrap: 'wrap',
|
|
1960
|
+
width: '100%',
|
|
1961
|
+
'& > button[aria-label="more"]': {
|
|
1962
|
+
marginLeft: 'auto'
|
|
1963
|
+
}
|
|
1957
1964
|
}
|
|
1958
1965
|
}
|
|
1959
1966
|
}
|
package/package.json
CHANGED