@momentum-design/components 0.82.1 → 0.82.3

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.
@@ -1,12 +1,12 @@
1
- export { default as AlertChip } from './alertchip';
2
1
  export { default as Animation } from './animation';
3
2
  export { default as Appheader } from './appheader';
4
3
  export { default as Avatar } from './avatar';
4
+ export { default as AlertChip } from './alertchip';
5
5
  export { default as AvatarButton } from './avatarbutton';
6
6
  export { default as Badge } from './badge';
7
7
  export { default as Brandvisual } from './brandvisual';
8
- export { default as Bullet } from './bullet';
9
8
  export { default as Button } from './button';
9
+ export { default as Bullet } from './bullet';
10
10
  export { default as ButtonGroup } from './buttongroup';
11
11
  export { default as ButtonLink } from './buttonlink';
12
12
  export { default as Buttonsimple } from './buttonsimple';
@@ -1,12 +1,12 @@
1
- export { default as AlertChip } from './alertchip';
2
1
  export { default as Animation } from './animation';
3
2
  export { default as Appheader } from './appheader';
4
3
  export { default as Avatar } from './avatar';
4
+ export { default as AlertChip } from './alertchip';
5
5
  export { default as AvatarButton } from './avatarbutton';
6
6
  export { default as Badge } from './badge';
7
7
  export { default as Brandvisual } from './brandvisual';
8
- export { default as Bullet } from './bullet';
9
8
  export { default as Button } from './button';
9
+ export { default as Bullet } from './bullet';
10
10
  export { default as ButtonGroup } from './buttongroup';
11
11
  export { default as ButtonLink } from './buttonlink';
12
12
  export { default as Buttonsimple } from './buttonsimple';
@@ -76,19 +76,20 @@ export const CardAndDialogFooterMixin = (superClass) => {
76
76
  * @returns The footer element
77
77
  */
78
78
  renderFooter() {
79
- return html `<div part="footer">
79
+ return html `
80
80
  <slot name="footer">
81
- <slot name="footer-link" @slotchange=${() => this.handleFooterSlot(DEFAULTS.LINK)}></slot>
82
- <slot
83
- name="footer-button-secondary"
84
- @slotchange=${() => this.handleFooterSlot(DEFAULTS.BUTTON, BUTTON_VARIANTS.SECONDARY)}
85
- ></slot>
86
- <slot
87
- name="footer-button-primary"
88
- @slotchange=${() => this.handleFooterSlot(DEFAULTS.BUTTON, BUTTON_VARIANTS.PRIMARY)}
89
- ></slot>
90
- </slot>
91
- </div>`;
81
+ <div part="footer">
82
+ <slot name="footer-link" @slotchange=${() => this.handleFooterSlot(DEFAULTS.LINK)}></slot>
83
+ <slot
84
+ name="footer-button-secondary"
85
+ @slotchange=${() => this.handleFooterSlot(DEFAULTS.BUTTON, BUTTON_VARIANTS.SECONDARY)}
86
+ ></slot>
87
+ <slot
88
+ name="footer-button-primary"
89
+ @slotchange=${() => this.handleFooterSlot(DEFAULTS.BUTTON, BUTTON_VARIANTS.PRIMARY)}
90
+ ></slot>
91
+ </div>
92
+ </slot>`;
92
93
  }
93
94
  }
94
95
  __decorate([
package/package.json CHANGED
@@ -41,5 +41,5 @@
41
41
  "lottie-web": "^5.12.2",
42
42
  "uuid": "^11.0.5"
43
43
  },
44
- "version": "0.82.1"
44
+ "version": "0.82.3"
45
45
  }