@momentum-design/components 0.104.8 → 0.104.9
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/browser/index.js +1 -2
- package/dist/browser/index.js.map +2 -2
- package/dist/components/popover/popover.component.d.ts +4 -4
- package/dist/components/popover/popover.component.js +4 -4
- package/dist/components/popover/popover.constants.d.ts +1 -1
- package/dist/components/popover/popover.constants.js +1 -1
- package/dist/components/select/select.component.js +0 -1
- package/dist/custom-elements.json +1215 -1215
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
@@ -201,10 +201,10 @@ declare class Popover extends Popover_base {
|
|
201
201
|
*/
|
202
202
|
backdropAppendTo?: string;
|
203
203
|
/**
|
204
|
-
* Set this property to
|
205
|
-
* This is useful for
|
206
|
-
*
|
207
|
-
* @default
|
204
|
+
* Set this property to false to make the backdrop a dimmed visible backdrop (if `backdrop` is true).
|
205
|
+
* This is useful for cases where the popovers backdrop should get dimmed.
|
206
|
+
*
|
207
|
+
* @default true - default is to have a invisible backdrop
|
208
208
|
*/
|
209
209
|
isBackdropInvisible?: boolean;
|
210
210
|
/**
|
@@ -206,10 +206,10 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
|
|
206
206
|
*/
|
207
207
|
this.backdrop = DEFAULTS.BACKDROP;
|
208
208
|
/**
|
209
|
-
* Set this property to
|
210
|
-
* This is useful for
|
211
|
-
*
|
212
|
-
* @default
|
209
|
+
* Set this property to false to make the backdrop a dimmed visible backdrop (if `backdrop` is true).
|
210
|
+
* This is useful for cases where the popovers backdrop should get dimmed.
|
211
|
+
*
|
212
|
+
* @default true - default is to have a invisible backdrop
|
213
213
|
*/
|
214
214
|
this.isBackdropInvisible = DEFAULTS.IS_BACKDROP_INVISIBLE;
|
215
215
|
/**
|
@@ -52,6 +52,6 @@ declare const DEFAULTS: {
|
|
52
52
|
readonly PROPAGATE_EVENT_ON_ESCAPE: false;
|
53
53
|
readonly KEEP_CONNECTED_TOOLTIP_CLOSED: true;
|
54
54
|
readonly STRATEGY: "absolute";
|
55
|
-
readonly IS_BACKDROP_INVISIBLE:
|
55
|
+
readonly IS_BACKDROP_INVISIBLE: true;
|
56
56
|
};
|
57
57
|
export { TAG_NAME, POPOVER_PLACEMENT, COLOR, TRIGGER, DEFAULTS };
|
@@ -557,7 +557,6 @@ class Select extends FormInternalsMixin(DataAriaLabelMixin(FormfieldWrapper)) {
|
|
557
557
|
role=""
|
558
558
|
backdrop
|
559
559
|
backdrop-append-to="${ifDefined(this.backdropAppendTo)}"
|
560
|
-
is-backdrop-invisible
|
561
560
|
hide-on-outside-click
|
562
561
|
hide-on-escape
|
563
562
|
focus-back-to-trigger
|