@descope/web-components-ui 1.0.272 → 1.0.273
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/dist/cjs/index.cjs.js +5 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/7044.js +1 -1
- package/dist/umd/descope-grid-index-js.js +1 -1
- package/dist/umd/descope-notification-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-grid/descope-grid-text-column/GridTextColumnClass.js +1 -0
- package/src/components/descope-notification/NotificationClass.js +3 -0
- package/src/theme/components/button.js +1 -1
- package/src/theme/components/inputWrapper.js +1 -1
package/dist/index.esm.js
CHANGED
@@ -7122,6 +7122,7 @@ class GridTextColumnClass extends GridSortColumn {
|
|
7122
7122
|
_defaultRenderer(cell, _col, model) {
|
7123
7123
|
const content = model.item[this.path] || '';
|
7124
7124
|
cell.innerHTML = content;
|
7125
|
+
cell.title = content;
|
7125
7126
|
if (Array.isArray(content)) {
|
7126
7127
|
cell.innerHTML = content.join(', ');
|
7127
7128
|
}
|
@@ -8399,6 +8400,9 @@ const NotificationMixin = (superclass) =>
|
|
8399
8400
|
'descope-notification-container'
|
8400
8401
|
);
|
8401
8402
|
|
8403
|
+
// we are overriding the container position to be absolute because we want to keep in inside the flow/widget boundaries
|
8404
|
+
NotificationMixinClass._container.style.position = 'absolute';
|
8405
|
+
|
8402
8406
|
// we're adding the container to body to avoid Vaadin's container's `openChanged`
|
8403
8407
|
// from breaking when trying to remove it directly from the body.
|
8404
8408
|
document.body.appendChild(NotificationMixinClass._container);
|
@@ -8893,7 +8897,7 @@ const button = {
|
|
8893
8897
|
[helperVars$3.main]: globalRefs$i.colors.surface.main,
|
8894
8898
|
[helperVars$3.dark]: globalRefs$i.colors.surface.dark,
|
8895
8899
|
[helperVars$3.light]: globalRefs$i.colors.surface.light,
|
8896
|
-
[helperVars$3.contrast]: globalRefs$i.colors.surface.
|
8900
|
+
[helperVars$3.contrast]: globalRefs$i.colors.surface.light,
|
8897
8901
|
},
|
8898
8902
|
|
8899
8903
|
variant: {
|
@@ -9016,7 +9020,7 @@ const [theme$1, refs, vars$w] = createHelperVars(
|
|
9016
9020
|
borderColor: globalRefs$h.colors.surface.main,
|
9017
9021
|
valueTextColor: globalRefs$h.colors.surface.dark,
|
9018
9022
|
placeholderTextColor: globalRefs$h.colors.surface.dark,
|
9019
|
-
backgroundColor: globalRefs$h.colors.surface.
|
9023
|
+
backgroundColor: globalRefs$h.colors.surface.light,
|
9020
9024
|
},
|
9021
9025
|
},
|
9022
9026
|
componentName
|