@vandeurenglenn/lite-elements 0.3.50 → 0.3.52

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.
Files changed (82) hide show
  1. package/exports/banner.js +36 -36
  2. package/exports/bundle/button.js +6 -1
  3. package/exports/bundle/dialog.js +10 -8
  4. package/exports/bundle/index.html +590 -590
  5. package/exports/bundle/themes/default/colors.module.css +180 -180
  6. package/exports/bundle/themes/default/missing/motion.css +3 -3
  7. package/exports/bundle/themes/default/missing/shape.css +12 -12
  8. package/exports/bundle/themes/default/missing/theme.dark.css +4 -4
  9. package/exports/bundle/themes/default/missing/theme.light.css +4 -4
  10. package/exports/bundle/themes/default/missing/tokens.css +8 -8
  11. package/exports/bundle/themes/default/theme.css +10 -10
  12. package/exports/bundle/themes/default/theme.dark.css +33 -33
  13. package/exports/bundle/themes/default/theme.light.css +33 -33
  14. package/exports/bundle/themes/default/tokens.css +256 -256
  15. package/exports/bundle/themes/default/typography.module.css +150 -150
  16. package/exports/bundle/upload-image.js +49 -45
  17. package/exports/button.js +148 -143
  18. package/exports/card.js +139 -139
  19. package/exports/code.js +34 -34
  20. package/exports/demo-icons.js +15 -15
  21. package/exports/demo-shell.js +539 -539
  22. package/exports/demo.js +456 -456
  23. package/exports/dialog.js +150 -148
  24. package/exports/divider.js +21 -21
  25. package/exports/drawer-button.js +13 -13
  26. package/exports/drawer-item.js +38 -38
  27. package/exports/drawer-layout.js +95 -95
  28. package/exports/drawer.js +7 -7
  29. package/exports/dropdown-menu.js +58 -58
  30. package/exports/dropdown.js +25 -25
  31. package/exports/elevation.js +50 -50
  32. package/exports/fab.js +145 -145
  33. package/exports/icon-button.js +12 -12
  34. package/exports/icon-set.js +4 -4
  35. package/exports/icon.js +15 -15
  36. package/exports/input.js +5 -5
  37. package/exports/list-item.js +42 -42
  38. package/exports/menu.js +12 -12
  39. package/exports/minute-field.js +4 -4
  40. package/exports/mixins/scroll-mixin.d.ts +1 -1
  41. package/exports/notification.js +34 -34
  42. package/exports/notifications.js +65 -65
  43. package/exports/pages.js +42 -42
  44. package/exports/pane.js +18 -18
  45. package/exports/rail.js +57 -57
  46. package/exports/root.js +7 -7
  47. package/exports/section/section.d.ts +1 -1
  48. package/exports/section.js +10 -10
  49. package/exports/section2.js +24 -24
  50. package/exports/selector.js +30 -30
  51. package/exports/summary-mirror.js +19 -19
  52. package/exports/summary.js +24 -24
  53. package/exports/supporting-pane.js +46 -46
  54. package/exports/tab.js +21 -21
  55. package/exports/tabs.js +50 -50
  56. package/exports/text-field.js +9 -9
  57. package/exports/theme.js +8 -8
  58. package/exports/themes/default/colors.module.css +180 -180
  59. package/exports/themes/default/missing/motion.css +3 -3
  60. package/exports/themes/default/missing/shape.css +12 -12
  61. package/exports/themes/default/missing/theme.dark.css +4 -4
  62. package/exports/themes/default/missing/theme.light.css +4 -4
  63. package/exports/themes/default/missing/tokens.css +8 -8
  64. package/exports/themes/default/theme.css +10 -10
  65. package/exports/themes/default/theme.dark.css +33 -33
  66. package/exports/themes/default/theme.light.css +33 -33
  67. package/exports/themes/default/tokens.css +256 -256
  68. package/exports/themes/default/typography.module.css +150 -150
  69. package/exports/time-picker.js +20 -20
  70. package/exports/toggle-button.js +3 -3
  71. package/exports/toggle.js +4 -4
  72. package/exports/top-app-bar.js +20 -20
  73. package/exports/typography.js +155 -155
  74. package/exports/upload-file.js +8 -8
  75. package/exports/upload-image.js +200 -200
  76. package/package.json +20 -28
  77. package/exports/bundle/simple-hash-router.js +0 -1
  78. package/exports/bundle/types2.js +0 -1
  79. package/exports/router/simple-hash-router.d.ts +0 -34
  80. package/exports/router/types.d.ts +0 -45
  81. package/exports/simple-hash-router.js +0 -111
  82. package/exports/types2.js +0 -1
@@ -63,78 +63,78 @@ let CustomNotifications = (() => {
63
63
  this.open = false;
64
64
  }
65
65
  static styles = [
66
- css `
67
- :host {
68
- display: flex;
69
- flex-direction: column;
70
- pointer-events: auto;
71
- z-index: 10001;
72
- position: absolute;
73
- right: 0;
74
- top: 0;
75
- overflow: hidden;
76
- width: 100%;
77
- max-width: 320px;
78
- height: auto;
79
- box-sizing: border-box;
80
- color: #eee;
81
- pointer-events: none;
82
- height: 100%;
83
- }
84
-
85
- :host([open]) {
86
- background: var(--md-sys-color-surface-container-high);
87
- }
88
-
89
- .recents {
90
- display: block;
91
- position: relative;
92
- top: 12px;
93
- right: 12px;
94
- width: 100%;
95
- pointer-events: none;
96
-
97
- box-sizing: border-box;
98
- padding: 12px;
99
- }
100
-
101
- .list {
102
- padding: 24px;
103
- height: 100%;
104
- }
105
-
106
- custom-icon {
107
- pointer-events: auto;
108
- }
66
+ css `
67
+ :host {
68
+ display: flex;
69
+ flex-direction: column;
70
+ pointer-events: auto;
71
+ z-index: 10001;
72
+ position: absolute;
73
+ right: 0;
74
+ top: 0;
75
+ overflow: hidden;
76
+ width: 100%;
77
+ max-width: 320px;
78
+ height: auto;
79
+ box-sizing: border-box;
80
+ color: #eee;
81
+ pointer-events: none;
82
+ height: 100%;
83
+ }
84
+
85
+ :host([open]) {
86
+ background: var(--md-sys-color-surface-container-high);
87
+ }
88
+
89
+ .recents {
90
+ display: block;
91
+ position: relative;
92
+ top: 12px;
93
+ right: 12px;
94
+ width: 100%;
95
+ pointer-events: none;
96
+
97
+ box-sizing: border-box;
98
+ padding: 12px;
99
+ }
100
+
101
+ .list {
102
+ padding: 24px;
103
+ height: 100%;
104
+ }
105
+
106
+ custom-icon {
107
+ pointer-events: auto;
108
+ }
109
109
  `
110
110
  ];
111
111
  render() {
112
- return html `
113
- <flex-row style="margin-top: 12px;margin-right: 12px;">
114
- <flex-it></flex-it>
115
- <custom-icon
116
- icon="notifications"
112
+ return html `
113
+ <flex-row style="margin-top: 12px;margin-right: 12px;">
114
+ <flex-it></flex-it>
115
+ <custom-icon
116
+ icon="notifications"
117
117
  @click=${() => {
118
118
  if (this._list.childElementCount === 0)
119
119
  return;
120
120
  this.open = !this.open;
121
- }}
122
- ></custom-icon>
123
- </flex-row>
124
-
125
- <span class="recents">
126
- <slot></slot>
127
- </span>
128
-
129
- <custom-pane ?open=${this.open} right top>
130
- <span slot="header"></span>
131
- <flex-column class="list" slot="content"> </flex-column>
132
-
133
- <flex-row slot="footer" width="100%">
134
- <flex-it></flex-it>
135
- <custom-icon style="margin-right: 24px;" icon="clear-all" @click="${this._onclick}"></custom-icon>
136
- </flex-row>
137
- </custom-pane>
121
+ }}
122
+ ></custom-icon>
123
+ </flex-row>
124
+
125
+ <span class="recents">
126
+ <slot></slot>
127
+ </span>
128
+
129
+ <custom-pane ?open=${this.open} right top>
130
+ <span slot="header"></span>
131
+ <flex-column class="list" slot="content"> </flex-column>
132
+
133
+ <flex-row slot="footer" width="100%">
134
+ <flex-it></flex-it>
135
+ <custom-icon style="margin-right: 24px;" icon="clear-all" @click="${this._onclick}"></custom-icon>
136
+ </flex-row>
137
+ </custom-pane>
138
138
  `;
139
139
  }
140
140
  constructor() {
package/exports/pages.js CHANGED
@@ -34,51 +34,51 @@ class CustomPages extends SelectBase {
34
34
  }
35
35
  }
36
36
  static styles = [
37
- css `
38
- :host {
39
- flex: 1;
40
- position: relative;
41
- --primary-background-color: #eceff1;
42
- overflow: hidden;
43
- height: 100%;
44
- width: 100%;
45
- }
46
- ::slotted(*) {
47
- display: flex;
48
- position: absolute;
49
- opacity: 0;
50
- pointer-events: none;
51
- top: 0;
52
- left: 0;
53
- right: 0;
54
- bottom: 0;
55
- transition: var(--md-sys-motion-easing-emphasized-accelerate) 200ms opacity,
56
- var(--md-sys-motion-easing-emphasized-accelerate) 200ms transform;
57
- /*transform: scale(0.1);*/
58
- transform-origin: left;
59
- }
60
- ::slotted(.animate-up) {
61
- transform: translateY(-120%);
62
- }
63
- ::slotted(.animate-down) {
64
- transform: translateY(120%);
65
- }
66
- ::slotted(.custom-selected) {
67
- opacity: 1;
68
- pointer-events: auto;
69
- transform: translateY(0);
70
- transition: var(--md-sys-motion-easing-emphasized-decelerate) 500ms width,
71
- var(--md-sys-motion-easing-emphasized-decelerate) 500ms transform;
72
- max-height: 100%;
73
- max-width: 100%;
74
- }
37
+ css `
38
+ :host {
39
+ flex: 1;
40
+ position: relative;
41
+ --primary-background-color: #eceff1;
42
+ overflow: hidden;
43
+ height: 100%;
44
+ width: 100%;
45
+ }
46
+ ::slotted(*) {
47
+ display: flex;
48
+ position: absolute;
49
+ opacity: 0;
50
+ pointer-events: none;
51
+ top: 0;
52
+ left: 0;
53
+ right: 0;
54
+ bottom: 0;
55
+ transition: var(--md-sys-motion-easing-emphasized-accelerate) 200ms opacity,
56
+ var(--md-sys-motion-easing-emphasized-accelerate) 200ms transform;
57
+ /*transform: scale(0.1);*/
58
+ transform-origin: left;
59
+ }
60
+ ::slotted(.animate-up) {
61
+ transform: translateY(-120%);
62
+ }
63
+ ::slotted(.animate-down) {
64
+ transform: translateY(120%);
65
+ }
66
+ ::slotted(.custom-selected) {
67
+ opacity: 1;
68
+ pointer-events: auto;
69
+ transform: translateY(0);
70
+ transition: var(--md-sys-motion-easing-emphasized-decelerate) 500ms width,
71
+ var(--md-sys-motion-easing-emphasized-decelerate) 500ms transform;
72
+ max-height: 100%;
73
+ max-width: 100%;
74
+ }
75
75
  `
76
76
  ];
77
77
  render() {
78
- return html `
79
- <div class="wrapper">
80
- <slot></slot>
81
- </div>
78
+ return html `
79
+ <div class="wrapper">
80
+ <slot></slot>
81
+ </div>
82
82
  `;
83
83
  }
84
84
  }
package/exports/pane.js CHANGED
@@ -76,24 +76,24 @@ let CustomPane = (() => {
76
76
  }
77
77
  static styles = [style];
78
78
  render() {
79
- return html `
80
- <custom-elevation></custom-elevation>
81
- <aside>
82
- <slot name="header">
83
- <flex-row center>
84
- <slot name="headline"></slot>
85
- <flex-it></flex-it>
86
- <custom-icon-button @click=${(e) => this.closePane(e)} .id=${this.id} icon="menu_open">
87
- </custom-icon-button>
88
- </flex-row>
89
- </slot>
90
- <flex-column class="content">
91
- <slot name="content"></slot>
92
- </flex-column>
93
- <flex-row class="footer">
94
- <slot name="footer"></slot>
95
- </flex-row>
96
- </aside>
79
+ return html `
80
+ <custom-elevation></custom-elevation>
81
+ <aside>
82
+ <slot name="header">
83
+ <flex-row center>
84
+ <slot name="headline"></slot>
85
+ <flex-it></flex-it>
86
+ <custom-icon-button @click=${(e) => this.closePane(e)} .id=${this.id} icon="menu_open">
87
+ </custom-icon-button>
88
+ </flex-row>
89
+ </slot>
90
+ <flex-column class="content">
91
+ <slot name="content"></slot>
92
+ </flex-column>
93
+ <flex-row class="footer">
94
+ <slot name="footer"></slot>
95
+ </flex-row>
96
+ </aside>
97
97
  `;
98
98
  }
99
99
  constructor() {
package/exports/rail.js CHANGED
@@ -56,63 +56,63 @@ let CustomRail = (() => {
56
56
  get right() { return this.#right_accessor_storage; }
57
57
  set right(value) { this.#right_accessor_storage = value; }
58
58
  render() {
59
- return html `<style>
60
- :host {
61
- display: contents;
62
- }
63
-
64
- custom-pane {
65
- box-sizing: border-box;
66
- padding: 12px 24px;
67
- height: 100%;
68
- --custom-pane-width: var(--custom-drawer-with, 320px);
69
- }
70
-
71
- slot[name='headline']::slotted(*) {
72
- color: var(--md-sys-color-on-surface-variant);
73
- font-family: var(--md-sys-typescale-title-small-font-family-name);
74
- font-style: var(--md-sys-typescale-title-small-font-family-style);
75
- font-weight: var(--md-sys-typescale-title-small-font-weight);
76
- font-size: var(--md-sys-typescale-title-small-font-size);
77
- letter-spacing: var(--md-sys-typescale-title-small-tracking);
78
- line-height: var(--md-sys-typescale-title-small-height);
79
- text-transform: var(--md-sys-typescale-title-small-text-transform);
80
- text-decoration: var(--md-sys-typescale-title-small-text-decoration);
81
- text-transform: capitalize;
82
- margin: 0;
83
- }
84
-
85
- ::slotted([slot='footer']) {
86
- display: block;
87
- box-sizing: border-box;
88
- min-height: 48px;
89
- border-top: 1px solid rgba(0, 0, 0, 0.14);
90
- }
91
-
92
- ::slotted([slot='content']) {
93
- display: flex;
94
- flex-direction: column;
95
- height: 100%;
96
- width: 100%;
97
- overflow-y: auto;
98
- }
99
-
100
- ::slotted(*) {
101
- pointer-events: none;
102
- }
103
-
104
- aside {
105
- width: 100%;
106
- }
107
- </style>
108
-
109
- <custom-pane .open=${this.open} .mobile=${this.mobile} .type=${this.type}>
110
- <slot name="header">
111
- <slot name="headline" slot="headline"></slot>
112
- <slot name="menu-button" slot="menu-button"></slot>
113
- </slot>
114
- <slot name="content" slot="content"></slot>
115
- <slot name="footer" slot="footer"></slot>
59
+ return html `<style>
60
+ :host {
61
+ display: contents;
62
+ }
63
+
64
+ custom-pane {
65
+ box-sizing: border-box;
66
+ padding: 12px 24px;
67
+ height: 100%;
68
+ --custom-pane-width: var(--custom-drawer-with, 320px);
69
+ }
70
+
71
+ slot[name='headline']::slotted(*) {
72
+ color: var(--md-sys-color-on-surface-variant);
73
+ font-family: var(--md-sys-typescale-title-small-font-family-name);
74
+ font-style: var(--md-sys-typescale-title-small-font-family-style);
75
+ font-weight: var(--md-sys-typescale-title-small-font-weight);
76
+ font-size: var(--md-sys-typescale-title-small-font-size);
77
+ letter-spacing: var(--md-sys-typescale-title-small-tracking);
78
+ line-height: var(--md-sys-typescale-title-small-height);
79
+ text-transform: var(--md-sys-typescale-title-small-text-transform);
80
+ text-decoration: var(--md-sys-typescale-title-small-text-decoration);
81
+ text-transform: capitalize;
82
+ margin: 0;
83
+ }
84
+
85
+ ::slotted([slot='footer']) {
86
+ display: block;
87
+ box-sizing: border-box;
88
+ min-height: 48px;
89
+ border-top: 1px solid rgba(0, 0, 0, 0.14);
90
+ }
91
+
92
+ ::slotted([slot='content']) {
93
+ display: flex;
94
+ flex-direction: column;
95
+ height: 100%;
96
+ width: 100%;
97
+ overflow-y: auto;
98
+ }
99
+
100
+ ::slotted(*) {
101
+ pointer-events: none;
102
+ }
103
+
104
+ aside {
105
+ width: 100%;
106
+ }
107
+ </style>
108
+
109
+ <custom-pane .open=${this.open} .mobile=${this.mobile} .type=${this.type}>
110
+ <slot name="header">
111
+ <slot name="headline" slot="headline"></slot>
112
+ <slot name="menu-button" slot="menu-button"></slot>
113
+ </slot>
114
+ <slot name="content" slot="content"></slot>
115
+ <slot name="footer" slot="footer"></slot>
116
116
  </custom-pane> `;
117
117
  }
118
118
  constructor() {
package/exports/root.js CHANGED
@@ -17,16 +17,16 @@ let CustomRoot = (() => {
17
17
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
18
18
  }
19
19
  static styles = [
20
- css `
21
- :host {
22
- display: contents;
23
- }
20
+ css `
21
+ :host {
22
+ display: contents;
23
+ }
24
24
  `
25
25
  ];
26
26
  render() {
27
- return html `
28
- <custom-theme></custom-theme>
29
- <slot></slot>
27
+ return html `
28
+ <custom-theme></custom-theme>
29
+ <slot></slot>
30
30
  `;
31
31
  }
32
32
  static {
@@ -3,7 +3,7 @@ declare const CustomSection_base: {
3
3
  new (): {
4
4
  [x: string]: any;
5
5
  scrolling: any;
6
- scrollElement: any;
6
+ scrollElement: /*elided*/ any;
7
7
  "__#2@#onscroll": () => void;
8
8
  connectedCallback(options?: {
9
9
  scrollElement: undefined | string;
@@ -29,19 +29,19 @@ let DemoSection = (() => {
29
29
  }
30
30
  }
31
31
  static styles = [
32
- css `
33
- :host {
34
- display: flex;
35
- flex-direction: column;
36
- box-sizing: border-box;
37
- }
32
+ css `
33
+ :host {
34
+ display: flex;
35
+ flex-direction: column;
36
+ box-sizing: border-box;
37
+ }
38
38
  `
39
39
  ];
40
40
  render() {
41
- return html `
42
- <custom-section>
43
- <slot></slot>
44
- </custom-section>
41
+ return html `
42
+ <custom-section>
43
+ <slot></slot>
44
+ </custom-section>
45
45
  `;
46
46
  }
47
47
  static {
@@ -19,33 +19,33 @@ let CustomSection = (() => {
19
19
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
20
20
  }
21
21
  static styles = [
22
- css `
23
- :host {
24
- display: flex;
25
- justify-content: center;
26
- align-items: baseline;
27
- margin: 16px;
28
- position: relative;
29
- overflow-y: auto;
30
- }
31
- .container {
32
- align-items: center;
33
- box-sizing: border-box;
34
- padding: 12px;
35
- border-radius: var(--md-sys-shape-corner-extra-large);
36
- }
37
- .content {
38
- max-width: 720px;
39
- }
22
+ css `
23
+ :host {
24
+ display: flex;
25
+ justify-content: center;
26
+ align-items: baseline;
27
+ margin: 16px;
28
+ position: relative;
29
+ overflow-y: auto;
30
+ }
31
+ .container {
32
+ align-items: center;
33
+ box-sizing: border-box;
34
+ padding: 12px;
35
+ border-radius: var(--md-sys-shape-corner-extra-large);
36
+ }
37
+ .content {
38
+ max-width: 720px;
39
+ }
40
40
  `
41
41
  ];
42
42
  render() {
43
- return html `
44
- <flex-column class="container">
45
- <flex-column class="content">
46
- <slot></slot>
47
- </flex-column>
48
- </flex-column>
43
+ return html `
44
+ <flex-column class="container">
45
+ <flex-column class="content">
46
+ <slot></slot>
47
+ </flex-column>
48
+ </flex-column>
49
49
  `;
50
50
  }
51
51
  static {
@@ -18,36 +18,36 @@ let CustomSelector = (() => {
18
18
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
19
19
  }
20
20
  static styles = [
21
- css `
22
- :host {
23
- display: flex;
24
- flex-direction: column;
25
- width: 100%;
26
- height: 100%;
27
- overflow-y: auto;
28
- }
29
-
30
- ::slotted(.custom-selected:not([non-interactive])) {
31
- background: var(--md-sys-color-secondary-container);
32
- color: var(--md-sys-color-on-secondary-container);
33
- }
34
-
35
- ::slotted(*) {
36
- color: var(--md-sys-color-on-surface-variant);
37
- font-family: var(--md-sys-typescale-label-large-font-family-name);
38
- font-style: var(--md-sys-typescale-label-large-font-family-style);
39
- font-weight: var(--md-sys-typescale-label-large-font-weight);
40
- font-size: var(--md-sys-typescale-label-large-font-size);
41
- letter-spacing: var(--md-sys-typescale-label-large-tracking);
42
- line-height: var(--md-sys-typescale-label-large-height);
43
- text-transform: var(--md-sys-typescale-label-large-text-transform);
44
- text-decoration: var(--md-sys-typescale-label-large-text-decoration);
45
- }
46
-
47
- ::slotted(:not(.custom-selected):not([non-interactive]):hover) {
48
- background: var(--md-sys-color-secondary-container-hover);
49
- color: var(--md-sys-color-on-secondary-container);
50
- }
21
+ css `
22
+ :host {
23
+ display: flex;
24
+ flex-direction: column;
25
+ width: 100%;
26
+ height: 100%;
27
+ overflow-y: auto;
28
+ }
29
+
30
+ ::slotted(.custom-selected:not([non-interactive])) {
31
+ background: var(--md-sys-color-secondary-container);
32
+ color: var(--md-sys-color-on-secondary-container);
33
+ }
34
+
35
+ ::slotted(*) {
36
+ color: var(--md-sys-color-on-surface-variant);
37
+ font-family: var(--md-sys-typescale-label-large-font-family-name);
38
+ font-style: var(--md-sys-typescale-label-large-font-family-style);
39
+ font-weight: var(--md-sys-typescale-label-large-font-weight);
40
+ font-size: var(--md-sys-typescale-label-large-font-size);
41
+ letter-spacing: var(--md-sys-typescale-label-large-tracking);
42
+ line-height: var(--md-sys-typescale-label-large-height);
43
+ text-transform: var(--md-sys-typescale-label-large-text-transform);
44
+ text-decoration: var(--md-sys-typescale-label-large-text-decoration);
45
+ }
46
+
47
+ ::slotted(:not(.custom-selected):not([non-interactive]):hover) {
48
+ background: var(--md-sys-color-secondary-container-hover);
49
+ color: var(--md-sys-color-on-secondary-container);
50
+ }
51
51
  `
52
52
  ];
53
53
  render() {
@@ -39,25 +39,25 @@ let CustomSummaryMirror = (() => {
39
39
  }
40
40
  }
41
41
  get template() {
42
- return html `
43
- <style>
44
- :host {
45
- display: flex;
46
- flex-direction: column;
47
- height: 100%;
48
- min-height: 400px;
49
- max-width: 1200px;
50
- }
51
-
52
- @media (min-width: 1200px) {
53
- :host {
54
- flex-direction: row;
55
- width: 80%;
56
- }
57
- }
58
- </style>
59
- <slot name="left"></slot>
60
- <slot name="right"></slot>
42
+ return html `
43
+ <style>
44
+ :host {
45
+ display: flex;
46
+ flex-direction: column;
47
+ height: 100%;
48
+ min-height: 400px;
49
+ max-width: 1200px;
50
+ }
51
+
52
+ @media (min-width: 1200px) {
53
+ :host {
54
+ flex-direction: row;
55
+ width: 80%;
56
+ }
57
+ }
58
+ </style>
59
+ <slot name="left"></slot>
60
+ <slot name="right"></slot>
61
61
  `;
62
62
  }
63
63
  });