dlg-ui 1.0.13 → 1.0.15

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.
@@ -0,0 +1,14 @@
1
+ <div class="fly-in-wrapper" id="fly-in-wrapper" {{did-insert this.configWrapper}}>
2
+ <div class="fly-in-container">
3
+ <div class="fly-in-preview">
4
+ <img class="fly-in-image" src={{this.imageSrc}} style="width: 100%;" />
5
+ <FaIcon @icon={{this.icon}} class="fly-in-icon"/>
6
+ </div>
7
+ <div class="fly-in-title" {{did-insert this.configContent}}>
8
+ <h3>{{this.title}}</h3>
9
+ </div>
10
+ </div>
11
+ <div class="fly-in-dropdown">
12
+ {{yield to="dropdown"}}
13
+ </div>
14
+ </div>
@@ -0,0 +1,57 @@
1
+ import Component from '@glimmer/component';
2
+ import { action } from '@ember/object';
3
+
4
+ export default class FlyInComponent extends Component {
5
+ get activeWidth() {
6
+ return this.args.activeWidth || '300px';
7
+ }
8
+
9
+ get icon() {
10
+ return this.args.icon || null;
11
+ }
12
+
13
+ get imageSrc() {
14
+ return this.args.imageSrc || 'https://cdn.nba.com/headshots/nba/latest/1040x760/2544.png';
15
+ }
16
+
17
+ get title() {
18
+ return this.args.title || 'Title';
19
+ }
20
+
21
+ get titleOffset() {
22
+ return this.args.titleOffset || '15%';
23
+ }
24
+
25
+ get yPercentage() {
26
+ return this.args.yPercentage || '10%';
27
+ }
28
+
29
+ @action
30
+ configContent(element) {
31
+ element.style.right = this.titleOffset;
32
+ }
33
+
34
+ @action
35
+ configWrapper(element) {
36
+ element.style.top = this.yPercentage;
37
+
38
+ element.addEventListener('mouseenter', async () => {
39
+ element.style.minWidth = this.activeWidth;
40
+ await new Promise(resolve => setTimeout(resolve, 100));
41
+ let dropdown = element.querySelector('.fly-in-dropdown');
42
+ if (dropdown) {
43
+ dropdown.style.display = 'block';
44
+ dropdown.classList.add('fly-in-dropdown-hover');
45
+ }
46
+ });
47
+ element.addEventListener('mouseleave', async () => {
48
+ element.style.minWidth = '';
49
+ element.querySelector('.fly-in-dropdown').style.display = 'none';
50
+ let dropdown = element.querySelector('.fly-in-dropdown');
51
+ if (dropdown) {
52
+ dropdown.style.display = 'none';
53
+ dropdown.classList.remove('fly-in-dropdown-hover');
54
+ }
55
+ });
56
+ }
57
+ }
@@ -0,0 +1,7 @@
1
+ import { modifier } from 'ember-modifier';
2
+
3
+ export default modifier(function didInsert(element, [callback]) {
4
+ if (typeof callback === 'function') {
5
+ callback(element);
6
+ }
7
+ });
@@ -1,3 +1,8 @@
1
+ @import './dropdown.css';
2
+ @import './fly-in.css';
3
+ @import './navbar.css';
4
+ @import './player-card.css';
5
+
1
6
  .cursor-pointer {
2
7
  cursor: pointer;
3
8
  }
@@ -17,333 +22,6 @@
17
22
  height: fit-content;
18
23
  }
19
24
 
20
- .dropdown-option {
21
- border-bottom-style: solid;
22
- border-width: 2px;
23
- width: 100%;
24
- padding-left: 8px;
25
- padding-right: 8px;
26
- padding-top: 6px;
27
- padding-bottom: 6px;
28
- box-sizing: border-box;
29
- cursor: pointer;
30
- }
31
-
32
- .dropdown-option:hover {
33
- background-color: black;
34
- color: white;
35
- border: black;
36
- }
37
-
38
- .dropdown-options {
39
- white-space: normal;
40
- max-height: 0;
41
- overflow-wrap: break-word;
42
- border-style: solid;
43
- border-top-style: none;
44
- border-bottom-style: none;
45
- border-width: 2px;
46
- background-color: #f6f6f6;
47
- transform: scaleY(0);
48
- transform-origin: top;
49
- transition: opacity 0.2s ease, transform 0.2s ease;
50
- opacity: 0;
51
- }
52
-
53
- .dropdown-options.display {
54
- opacity: 1;
55
- max-height: 500px;
56
- transform: scaleY(1);
57
- }
58
-
59
- .dropdown-placeholder {
60
- font-style: italic;
61
- color: #444;
62
- }
63
-
64
- .dropdown-select {
65
- width: 100%;
66
- padding-left: 8px;
67
- padding-top: 8px;
68
- padding-bottom: 8px;
69
- padding-right: 20px;
70
- box-sizing: border-box;
71
- position: relative;
72
- overflow: hidden;
73
- white-space: nowrap;
74
- text-overflow: ellipsis;
75
- cursor: pointer;
76
- border-style: solid;
77
- border-width: 2px;
78
- background-color: #eee;
79
- user-select: none;
80
- }
81
-
82
- .dropdown-select::after {
83
- content: '\25BC';
84
- display: block;
85
- position: absolute;
86
- right: 0px;
87
- top: 50%;
88
- right: 8px;
89
- pointer-events: none;
90
- transition: transform 0.3s ease;
91
- top: 25%;
92
- }
93
-
94
- .dropdown-select.open::after {
95
- transform: rotate(-180deg);
96
- transform-origin: center;
97
- padding-right: 0px;
98
- }
99
-
100
- .dropdown-wrapper {
101
- width: 100%;
102
- }
103
-
104
- .header-dropdown-options {
105
- white-space: normal;
106
- overflow-wrap: break-word;
107
- border-style: solid;
108
- border-top-style: none;
109
- border-bottom-style: none;
110
- border-width: 2px;
111
- background-color: #f6f6f6;
112
- max-height: 0;
113
- opacity: 0;
114
- transform: scaleY(0);
115
- transform-origin: top;
116
- transition: opacity 0.2s ease, transform 0.2s ease;
117
- }
118
-
119
- .header-dropdown-options.open {
120
- border-top-style: solid;
121
- opacity: 1;
122
- max-height: 500px;
123
- transform: scaleY(1);
124
- }
125
-
126
- .header-dropdown-select {
127
- width: fit-content;
128
- max-width: 100%;
129
- padding-top: 8px;
130
- padding-bottom: 2px;
131
- padding-right: 25px;
132
- box-sizing: border-box;
133
- position: relative;
134
- overflow: hidden;
135
- white-space: nowrap;
136
- text-overflow: ellipsis;
137
- cursor: pointer;
138
- border-bottom-style: solid;
139
- border-width: 2px;
140
- user-select: none;
141
- }
142
-
143
- .header-dropdown-select.open {
144
- border-bottom-style: none;
145
- }
146
-
147
- .header-dropdown-select::after {
148
- content: '\25BE';
149
- display: block;
150
- position: absolute;
151
- right: 0px;
152
- top: 20%;
153
- pointer-events: none;
154
- transition: transform 0.3s ease;
155
- font-size: 1.5rem;
156
- }
157
-
158
- .header-dropdown-select.open::after {
159
- transform: rotate(-180deg);
160
- transform-origin: center;
161
- padding-right: 0px;
162
- top: 16%;
163
- }
164
-
165
- .header-dropdown-selected {
166
- font-weight: bold;
167
- }
168
-
169
- .header-dropdown-wrapper {
170
- width: 100%;
171
- }
172
-
173
- .navbar-body {
174
- flex: 1 1 auto;
175
- padding: 0 1em;
176
- }
177
-
178
- .navbar-container {
179
- background-color: #eee;
180
- position: sticky;
181
- top: 0;
182
- left: 0;
183
- min-height: 5vh;
184
- height: fit-content;
185
- display: flex;
186
- justify-content: space-between;
187
- align-items: center;
188
- z-index: 10;
189
- padding: 0 1em;
190
- }
191
-
192
- .navbar-dropdown .header-dropdown-options {
193
- position: absolute;
194
- min-width: 60px !important;
195
- }
196
-
197
- .navbar-dropdown .header-dropdown-select {
198
- padding-top: 0px;
199
- border-bottom-style: none;
200
- }
201
-
202
- .navbar-dropdown .header-dropdown-select::after {
203
- top: 0;
204
- height: 100%;
205
- display: flex;
206
- align-items: center;
207
- padding-top: 2px;
208
- }
209
-
210
- .navbar-dropdown .header-dropdown-selected {
211
- font-weight: normal;
212
- }
213
-
214
- .navbar-elements {
215
- display: flex;
216
- flex-wrap: wrap;
217
- width: fit-content;
218
- }
219
-
220
- .navbar-selection {
221
- padding: 8px;
222
- display: flex;
223
- align-items: center;
224
- position: relative;
225
- }
226
-
227
- .navbar-selection::before {
228
- content: '';
229
- position: absolute;
230
- top: 0;
231
- left: 0;
232
- width: 100%;
233
- height: 100%;
234
- transform: scaleY(0);
235
- background-color: #cccccc;
236
- z-index: -1;
237
- transition: transform 0.3s ease;
238
- transform-origin: bottom;
239
- }
240
-
241
- .navbar-selection:hover::before {
242
- height: 100%;
243
- transform: scaleY(1);
244
- }
245
-
246
- .navbar-title {
247
- font-size: clamp(20px, 3vw, 30px);
248
- margin-right: 1em;
249
- width: fit-content;
250
- white-space: nowrap;
251
- font-weight: bold;
252
- }
253
-
254
- .navbar-wrapper {
255
- display: flex;
256
- flex-direction: column;
257
- min-height: 100vh;
258
- }
259
-
260
- .navbar-yield {
261
- display: flex;
262
- justify-content: center;
263
- flex: 1 1 auto;
264
- padding-top: 8px;
265
- }
266
-
267
- .player-card {
268
- display: flex;
269
- flex-direction: row;
270
- padding: 0.5em;
271
- font-size: 1em;
272
- background-color: #f6f6f6;
273
- border: solid;
274
- }
275
-
276
- .player-name {
277
- width: 40%;
278
- display: flex;
279
- flex-direction: column;
280
- justify-content: center;
281
- align-items: center;
282
- }
283
-
284
- .player-pic {
285
- width: 30%;
286
- display: flex;
287
- flex-direction: column;
288
- justify-content: center;
289
- align-items: center;
290
- }
291
-
292
- .player-points {
293
- font-size: 0.8em;
294
- }
295
-
296
- .player-pos {
297
- width: 10%;
298
- display: flex;
299
- flex-direction: column;
300
- justify-content: center;
301
- align-items: center;
302
- }
303
-
304
- .player-text {
305
- text-align: center;
306
- }
307
-
308
- .player-trophy {
309
- width: 20%;
310
- display: flex;
311
- flex-direction: column;
312
- justify-content: center;
313
- align-items: center;
314
- position: relative;
315
- }
316
-
317
- .has-trophy::after {
318
- content: '\00D7'var(--trophy-count);
319
- color: Blue;
320
- font-weight: 900;
321
- font-size: 1.3em;
322
- position: absolute;
323
- left: 50%;
324
- top: 30%;
325
- transform: translate(-50%, -60%);
326
- pointer-events: none;
327
- text-shadow: 1px 1px 2px #0002;
328
- }
329
-
330
- .player-pic img,
331
- .player-trophy img {
332
- width: 100%;
333
- height: auto;
334
- display: block;
335
- object-fit: contain;
336
- }
337
-
338
- .player-pic img {
339
- border-radius: 50%;
340
- }
341
-
342
- .player-wrapper {
343
- container-type: inline-size;
344
- width: 100%;
345
- }
346
-
347
25
  .radio-label {
348
26
  font-weight: bold;
349
27
  }
@@ -353,34 +31,3 @@
353
31
  flex-direction: column;
354
32
  margin: 5px 0px 5px 0px;
355
33
  }
356
-
357
- @container (min-width: 100px) {
358
- .player-card {
359
- font-size: 0.6rem;
360
- }
361
- }
362
- @container (min-width: 200px) {
363
- .player-card {
364
- font-size: 0.8rem;
365
- }
366
- }
367
- @container (min-width: 300px) {
368
- .player-card {
369
- font-size: 1rem;
370
- }
371
- }
372
- @container (min-width: 400px) {
373
- .player-card {
374
- font-size: 1.4rem;
375
- }
376
- }
377
- @container (min-width: 500px) {
378
- .player-card {
379
- font-size: 1.5rem;
380
- }
381
- }
382
- @container (min-width: 600px) {
383
- .player-card {
384
- font-size: 2rem;
385
- }
386
- }
@@ -0,0 +1,162 @@
1
+ .dropdown-option {
2
+ border-bottom-style: solid;
3
+ border-width: 2px;
4
+ width: 100%;
5
+ padding-left: 8px;
6
+ padding-right: 8px;
7
+ padding-top: 6px;
8
+ padding-bottom: 6px;
9
+ box-sizing: border-box;
10
+ cursor: pointer;
11
+ }
12
+
13
+ .dropdown-option:hover {
14
+ background-color: black;
15
+ color: white;
16
+ border: black;
17
+ }
18
+
19
+ .dropdown-options {
20
+ white-space: normal;
21
+ max-height: 0;
22
+ overflow-wrap: break-word;
23
+ border-style: solid;
24
+ border-top-style: none;
25
+ border-bottom-style: none;
26
+ border-width: 2px;
27
+ background-color: #f6f6f6;
28
+ transform: scaleY(0);
29
+ transform-origin: top;
30
+ transition: opacity 0.2s ease, transform 0.2s ease;
31
+ opacity: 0;
32
+ position: absolute;
33
+ z-index: 1;
34
+ width: 100%;
35
+ box-sizing: border-box;
36
+ }
37
+
38
+ .dropdown-options.display {
39
+ opacity: 1;
40
+ max-height: 500px;
41
+ transform: scaleY(1);
42
+ }
43
+
44
+ .dropdown-placeholder {
45
+ font-style: italic;
46
+ color: #444;
47
+ }
48
+
49
+ .dropdown-select {
50
+ width: 100%;
51
+ padding-left: 8px;
52
+ padding-top: 8px;
53
+ padding-bottom: 8px;
54
+ padding-right: 20px;
55
+ box-sizing: border-box;
56
+ position: relative;
57
+ overflow: hidden;
58
+ white-space: nowrap;
59
+ text-overflow: ellipsis;
60
+ cursor: pointer;
61
+ border-style: solid;
62
+ border-width: 2px;
63
+ background-color: #eee;
64
+ user-select: none;
65
+ }
66
+
67
+ .dropdown-select::after {
68
+ content: '\25BC';
69
+ display: block;
70
+ position: absolute;
71
+ right: 0px;
72
+ top: 50%;
73
+ right: 8px;
74
+ pointer-events: none;
75
+ transition: transform 0.3s ease;
76
+ top: 25%;
77
+ }
78
+
79
+ .dropdown-select.open::after {
80
+ transform: rotate(-180deg);
81
+ transform-origin: center;
82
+ padding-right: 0px;
83
+ }
84
+
85
+ .dropdown-wrapper {
86
+ width: 100%;
87
+ position: relative;
88
+ }
89
+
90
+ .header-dropdown-options {
91
+ white-space: normal;
92
+ overflow-wrap: break-word;
93
+ border-style: solid;
94
+ border-top-style: none;
95
+ border-bottom-style: none;
96
+ border-width: 2px;
97
+ background-color: #f6f6f6;
98
+ max-height: 0;
99
+ opacity: 0;
100
+ transform: scaleY(0);
101
+ transform-origin: top;
102
+ transition: opacity 0.2s ease, transform 0.2s ease;
103
+ position: absolute;
104
+ z-index: 1;
105
+ width: 100%;
106
+ box-sizing: border-box;
107
+ }
108
+
109
+ .header-dropdown-options.open {
110
+ border-top-style: solid;
111
+ opacity: 1;
112
+ max-height: 500px;
113
+ transform: scaleY(1);
114
+ }
115
+
116
+ .header-dropdown-select {
117
+ width: fit-content;
118
+ max-width: 100%;
119
+ padding-top: 8px;
120
+ padding-bottom: 2px;
121
+ padding-right: 25px;
122
+ box-sizing: border-box;
123
+ position: relative;
124
+ overflow: hidden;
125
+ white-space: nowrap;
126
+ text-overflow: ellipsis;
127
+ cursor: pointer;
128
+ border-bottom-style: solid;
129
+ border-width: 2px;
130
+ user-select: none;
131
+ }
132
+
133
+ .header-dropdown-select.open {
134
+ border-bottom-style: none;
135
+ }
136
+
137
+ .header-dropdown-select::after {
138
+ content: '\25BE';
139
+ display: block;
140
+ position: absolute;
141
+ right: 0px;
142
+ top: 11%;
143
+ pointer-events: none;
144
+ transition: transform 0.3s ease;
145
+ font-size: 1.3rem;
146
+ }
147
+
148
+ .header-dropdown-select.open::after {
149
+ transform: rotate(-180deg);
150
+ transform-origin: center;
151
+ padding-right: 0px;
152
+ top: 16%;
153
+ }
154
+
155
+ .header-dropdown-selected {
156
+ font-weight: bold;
157
+ }
158
+
159
+ .header-dropdown-wrapper {
160
+ width: 100%;
161
+ position: relative;
162
+ }
@@ -0,0 +1,76 @@
1
+ .fly-in-container {
2
+ height: inherit;
3
+ }
4
+
5
+ .fly-in-dropdown {
6
+ background-color: #d6d6d6;
7
+ border-bottom-left-radius: 10px;
8
+ border: solid;
9
+ border-right: none;
10
+ border-width: 2px;
11
+ padding: 10px;
12
+ z-index: 2;
13
+ opacity: 0;
14
+ max-height: 0;
15
+ right: 0%;
16
+ display: none;
17
+ }
18
+
19
+ .fly-in-dropdown-hover {
20
+ opacity: 1;
21
+ max-height: 500px;
22
+ max-width: 500px;
23
+ }
24
+
25
+ .fly-in-icon {
26
+ align-self: center;
27
+ padding: 0.5em;
28
+ height: 50% !important;
29
+ width: auto !important;
30
+ }
31
+
32
+ .fly-in-image {
33
+ height: inherit;
34
+ padding: 0.5em;
35
+ box-sizing: border-box;
36
+ border-top-left-radius: 38%;
37
+ border-bottom-left-radius: 38%;
38
+ border-bottom-right-radius: 38%;
39
+ background-color: #e6e6e6;
40
+ position: relative;
41
+ }
42
+
43
+ .fly-in-preview {
44
+ height: inherit;
45
+ display: flex;
46
+ justify-self: start;
47
+ position: relative;
48
+ right: 43px;
49
+ margin-right: -43px;
50
+ }
51
+
52
+ .fly-in-title {
53
+ opacity: 0;
54
+ max-height: 0;
55
+ position: absolute;
56
+ top: 20%;
57
+ overflow: hidden;
58
+ transition: opacity 0.3s ease, max-height 0.3s ease;
59
+ }
60
+
61
+ .fly-in-wrapper:hover .fly-in-title {
62
+ opacity: 1;
63
+ max-height: 500px;
64
+ }
65
+
66
+ .fly-in-wrapper {
67
+ position: absolute;
68
+ display: flex;
69
+ flex-direction: column;
70
+ background-color: #d6d6d6;
71
+ right: 0%;
72
+ height: 10vh;
73
+ transition: width 0.3s ease;
74
+ min-width: 131px;
75
+ transition: min-width 0.3s ease;
76
+ }
@@ -0,0 +1,89 @@
1
+ .navbar-body {
2
+ flex: 1 1 auto;
3
+ padding: 0 1em;
4
+ }
5
+
6
+ .navbar-container {
7
+ background-color: #eee;
8
+ position: sticky;
9
+ top: 0;
10
+ left: 0;
11
+ min-height: 5vh;
12
+ height: fit-content;
13
+ display: flex;
14
+ justify-content: space-between;
15
+ align-items: center;
16
+ z-index: 10;
17
+ padding: 0 1em;
18
+ }
19
+
20
+ .navbar-dropdown .header-dropdown-options {
21
+ position: absolute;
22
+ min-width: 60px !important;
23
+ }
24
+
25
+ .navbar-dropdown .header-dropdown-select {
26
+ padding-top: 0px;
27
+ border-bottom-style: none;
28
+ }
29
+
30
+ .navbar-dropdown .header-dropdown-select::after {
31
+ top: -3px;
32
+ }
33
+
34
+ .navbar-dropdown .header-dropdown-selected {
35
+ font-weight: normal;
36
+ }
37
+
38
+ .navbar-elements {
39
+ display: flex;
40
+ flex-wrap: wrap;
41
+ width: fit-content;
42
+ }
43
+
44
+ .navbar-selection {
45
+ padding: 8px;
46
+ display: flex;
47
+ align-items: center;
48
+ position: relative;
49
+ }
50
+
51
+ .navbar-selection::before {
52
+ content: '';
53
+ position: absolute;
54
+ top: 0;
55
+ left: 0;
56
+ width: 100%;
57
+ height: 100%;
58
+ transform: scaleY(0);
59
+ background-color: #cccccc;
60
+ z-index: -1;
61
+ transition: transform 0.3s ease;
62
+ transform-origin: bottom;
63
+ }
64
+
65
+ .navbar-selection:hover::before {
66
+ height: 100%;
67
+ transform: scaleY(1);
68
+ }
69
+
70
+ .navbar-title {
71
+ font-size: clamp(20px, 3vw, 30px);
72
+ margin-right: 1em;
73
+ width: fit-content;
74
+ white-space: nowrap;
75
+ font-weight: bold;
76
+ }
77
+
78
+ .navbar-wrapper {
79
+ display: flex;
80
+ flex-direction: column;
81
+ min-height: 100vh;
82
+ }
83
+
84
+ .navbar-yield {
85
+ display: flex;
86
+ justify-content: center;
87
+ flex: 1 1 auto;
88
+ padding-top: 8px;
89
+ }
@@ -0,0 +1,110 @@
1
+ .player-card {
2
+ display: flex;
3
+ flex-direction: row;
4
+ padding: 0.5em;
5
+ font-size: 1em;
6
+ background-color: #f6f6f6;
7
+ border: solid;
8
+ }
9
+
10
+ .player-name {
11
+ width: 40%;
12
+ display: flex;
13
+ flex-direction: column;
14
+ justify-content: center;
15
+ align-items: center;
16
+ }
17
+
18
+ .player-pic {
19
+ width: 30%;
20
+ display: flex;
21
+ flex-direction: column;
22
+ justify-content: center;
23
+ align-items: center;
24
+ }
25
+
26
+ .player-points {
27
+ font-size: 0.8em;
28
+ }
29
+
30
+ .player-pos {
31
+ width: 10%;
32
+ display: flex;
33
+ flex-direction: column;
34
+ justify-content: center;
35
+ align-items: center;
36
+ }
37
+
38
+ .player-text {
39
+ text-align: center;
40
+ }
41
+
42
+ .player-trophy {
43
+ width: 20%;
44
+ display: flex;
45
+ flex-direction: column;
46
+ justify-content: center;
47
+ align-items: center;
48
+ position: relative;
49
+ }
50
+
51
+ .has-trophy::after {
52
+ content: '\00D7'var(--trophy-count);
53
+ color: Blue;
54
+ font-weight: 900;
55
+ font-size: 1.3em;
56
+ position: absolute;
57
+ left: 50%;
58
+ top: 30%;
59
+ transform: translate(-50%, -60%);
60
+ pointer-events: none;
61
+ text-shadow: 1px 1px 2px #0002;
62
+ }
63
+
64
+ .player-pic img,
65
+ .player-trophy img {
66
+ width: 100%;
67
+ height: auto;
68
+ display: block;
69
+ object-fit: contain;
70
+ }
71
+
72
+ .player-pic img {
73
+ border-radius: 50%;
74
+ }
75
+
76
+ .player-wrapper {
77
+ container-type: inline-size;
78
+ width: 100%;
79
+ }
80
+
81
+ @container (min-width: 100px) {
82
+ .player-card {
83
+ font-size: 0.6rem;
84
+ }
85
+ }
86
+ @container (min-width: 200px) {
87
+ .player-card {
88
+ font-size: 0.8rem;
89
+ }
90
+ }
91
+ @container (min-width: 300px) {
92
+ .player-card {
93
+ font-size: 1rem;
94
+ }
95
+ }
96
+ @container (min-width: 400px) {
97
+ .player-card {
98
+ font-size: 1.4rem;
99
+ }
100
+ }
101
+ @container (min-width: 500px) {
102
+ .player-card {
103
+ font-size: 1.5rem;
104
+ }
105
+ }
106
+ @container (min-width: 600px) {
107
+ .player-card {
108
+ font-size: 2rem;
109
+ }
110
+ }
@@ -0,0 +1 @@
1
+ export { default } from 'dlg-ui/components/fly-in';
@@ -0,0 +1 @@
1
+ export { default } from 'dlg-ui/modifiers/did-insert';
@@ -1,5 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  module.exports = function (/* environment, appConfig */) {
4
- return {};
4
+ return {
5
+ modulePrefix: 'dlg-ui',
6
+ };
5
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dlg-ui",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "The default blueprint for ember-cli addons.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -26,34 +26,39 @@
26
26
  "test:ember-compatibility": "ember try:each"
27
27
  },
28
28
  "dependencies": {
29
- "ember-cli-babel": "^7.26.11",
30
- "ember-cli-htmlbars": "^6.1.1"
29
+ "@ember/string": "^3.1.1",
30
+ "ember-cli-babel": "^8.2.0",
31
+ "ember-cli-htmlbars": "^6.3.0"
32
+ },
33
+ "peerDependencies": {
34
+ "ember-source": "^4.8.0 || ^5.0.0 || ^6.0.0"
31
35
  },
32
36
  "devDependencies": {
33
37
  "@ember/optional-features": "^2.0.0",
34
- "@ember/render-modifiers": "^2.1.0",
38
+ "@ember/render-modifiers": "^3.0.0",
35
39
  "@ember/test-helpers": "^2.8.1",
36
40
  "@embroider/test-setup": "^1.8.3",
41
+ "@fortawesome/ember-fontawesome": "^3.1.0",
42
+ "@fortawesome/fontawesome-svg-core": "^7.1.0",
43
+ "@fortawesome/free-solid-svg-icons": "^7.1.0",
37
44
  "@glimmer/component": "^1.1.2",
38
- "@glimmer/tracking": "^1.1.2",
39
45
  "babel-eslint": "^10.1.0",
40
46
  "broccoli-asset-rev": "^3.0.0",
41
47
  "ember-auto-import": "^2.4.3",
42
- "ember-cli": "~4.8.1",
48
+ "ember-cli": "~4.12.0",
43
49
  "ember-cli-dependency-checker": "^3.3.1",
44
50
  "ember-cli-inject-live-reload": "^2.1.0",
45
51
  "ember-cli-sri": "^2.1.1",
46
52
  "ember-cli-terser": "^4.0.2",
47
- "ember-disable-prototype-extensions": "^1.1.3",
48
53
  "ember-load-initializers": "^2.1.2",
49
- "ember-page-title": "^7.0.0",
54
+ "ember-modifier": "^4.2.2",
55
+ "ember-page-title": "^9.0.3",
50
56
  "ember-qunit": "^6.0.0",
51
- "ember-resolver": "^8.0.3",
52
- "ember-source": "~4.8.0",
57
+ "ember-resolver": "^10.0.0",
58
+ "ember-source": "~5.4.0",
53
59
  "ember-source-channel-url": "^3.0.0",
54
60
  "ember-template-lint": "^4.16.1",
55
61
  "ember-truth-helpers": "^4.0.3",
56
- "ember-try": "^2.0.0",
57
62
  "eslint": "^7.32.0",
58
63
  "eslint-config-prettier": "^8.5.0",
59
64
  "eslint-plugin-ember": "^11.1.0",
@@ -64,7 +69,7 @@
64
69
  "npm-run-all": "^4.1.5",
65
70
  "prettier": "^2.7.1",
66
71
  "qunit": "^2.19.2",
67
- "qunit-dom": "^2.0.0",
72
+ "qunit-dom": "^3.5.0",
68
73
  "webpack": "^5.74.0"
69
74
  },
70
75
  "engines": {