@umbraco-ui/uui-avatar-group 1.2.0 → 1.3.0-rc.0

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 (2) hide show
  1. package/lib/index.js +4 -1
  2. package/package.json +5 -5
package/lib/index.js CHANGED
@@ -45,7 +45,10 @@ let UUIAvatarGroupElement = class extends LitElement {
45
45
  render() {
46
46
  return html`
47
47
  <slot @slotchange=${this._onSlotChange}></slot>
48
- ${this._isLimitExceeded() ? html`<small id="overflow-indication">+${this._avatarArray.length - this.limit}</small>` : ""}
48
+ ${this._isLimitExceeded() ? (
49
+ //prettier-ignore
50
+ html`<small id="overflow-indication">+${this._avatarArray.length - this.limit}</small>`
51
+ ) : ""}
49
52
  `;
50
53
  }
51
54
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-avatar-group",
3
- "version": "1.2.0",
3
+ "version": "1.3.0-rc.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,17 +30,17 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-avatar": "1.2.0",
34
- "@umbraco-ui/uui-base": "1.2.0"
33
+ "@umbraco-ui/uui-avatar": "1.3.0-rc.0",
34
+ "@umbraco-ui/uui-base": "1.3.0-rc.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
38
- "clean": "tsc --build --clean && rimraf dist lib/*.js lib/**/*.js custom-elements.json",
38
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
39
39
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
44
  "homepage": "https://uui.umbraco.com/?path=/story/uui-avatar-group",
45
- "gitHead": "78ce6df4b259921ed47e25ce10812920f25cbc1c"
45
+ "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
46
46
  }