dlg-ui 1.0.18 → 1.0.19

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,26 @@
1
+ {
2
+ "workbench.colorCustomizations": {
3
+ "activityBar.activeBackground": "#125D0D",
4
+ "activityBar.background": "#125D0D",
5
+ "activityBar.foreground": "#e7e7e7",
6
+ "activityBar.inactiveForeground": "#e7e7e799",
7
+ "activityBarBadge.background": "#000000",
8
+ "activityBarBadge.foreground": "#e7e7e7",
9
+ "commandCenter.border": "#e7e7e799",
10
+ "sash.hoverBorder": "#125D0D",
11
+ "statusBar.background": "#125D0D",
12
+ "statusBar.foreground": "#e7e7e7",
13
+ "statusBarItem.hoverBackground": "#125D0D",
14
+ "statusBarItem.remoteBackground": "#125D0D",
15
+ "statusBarItem.remoteForeground": "#e7e7e7",
16
+ "titleBar.activeBackground": "#125D0D",
17
+ "titleBar.activeForeground": "#e7e7e7",
18
+ "titleBar.inactiveBackground": "#125D0D99",
19
+ "titleBar.inactiveForeground": "#e7e7e799"
20
+ },
21
+ "peacock.remoteColor": "290ea0",
22
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
23
+ "[javascript]": {
24
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
25
+ }
26
+ }
@@ -5,6 +5,8 @@
5
5
  font-size: 1em;
6
6
  background-color: #f6f6f6;
7
7
  border: solid;
8
+ height: 100%;
9
+ box-sizing: border-box;
8
10
  }
9
11
 
10
12
  .player-name {
@@ -76,6 +78,7 @@
76
78
  .player-wrapper {
77
79
  container-type: inline-size;
78
80
  width: 100%;
81
+ height: 100%;
79
82
  }
80
83
 
81
84
  @container (min-width: 100px) {
@@ -107,4 +110,4 @@
107
110
  .player-card {
108
111
  font-size: 2rem;
109
112
  }
110
- }
113
+ }
package/index.js CHANGED
@@ -13,6 +13,14 @@ module.exports = {
13
13
  this.concatCSSFiles();
14
14
  },
15
15
 
16
+ // Copy public assets to consuming app
17
+ treeForPublic() {
18
+ const publicTree = this._super.treeForPublic.apply(this, arguments);
19
+
20
+ // This will copy everything from addon/public to the consuming app's public folder
21
+ return publicTree;
22
+ },
23
+
16
24
  concatCSSFiles() {
17
25
  const stylesDir = path.join(__dirname, 'addon/styles');
18
26
  const addonCssPath = path.join(stylesDir, 'addon.css');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dlg-ui",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "The default blueprint for ember-cli addons.",
5
5
  "keywords": [
6
6
  "ember-addon"