@umbraco-ui/uui-card-user 1.13.0 → 1.14.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.
@@ -149,6 +149,10 @@
149
149
  "name": "tag",
150
150
  "description": "slot for the tag with support for `<uui-tag>` elements"
151
151
  },
152
+ {
153
+ "name": "avatar",
154
+ "description": "slot for the avatar with support for the `<uui-avatar>` element"
155
+ },
152
156
  {
153
157
  "name": "actions",
154
158
  "description": "slot for the actions with support for the `<uui-action-bar>` element"
package/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
2
2
  import { slotHasContent, demandCustomElement } from '@umbraco-ui/uui-base/lib/utils';
3
3
  import { UUICardElement } from '@umbraco-ui/uui-card/lib';
4
- import { html, css, nothing } from 'lit';
4
+ import { css, html, nothing } from 'lit';
5
5
  import { property, state } from 'lit/decorators.js';
6
6
  import { ifDefined } from 'lit/directives/if-defined.js';
7
7
 
@@ -4,6 +4,7 @@ import { UUICardElement } from '@umbraco-ui/uui-card/lib';
4
4
  * @description - Card component for displaying a user node.
5
5
  * @slot - slot for the default content area
6
6
  * @slot tag - slot for the tag with support for `<uui-tag>` elements
7
+ * @slot avatar - slot for the avatar with support for the `<uui-avatar>` element
7
8
  * @slot actions - slot for the actions with support for the `<uui-action-bar>` element
8
9
  */
9
10
  export declare class UUICardUserElement extends UUICardElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-card-user",
3
- "version": "1.13.0",
3
+ "version": "1.14.0-rc.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -31,9 +31,9 @@
31
31
  "custom-elements.json"
32
32
  ],
33
33
  "dependencies": {
34
- "@umbraco-ui/uui-avatar": "1.13.0",
35
- "@umbraco-ui/uui-base": "1.13.0",
36
- "@umbraco-ui/uui-card": "1.13.0"
34
+ "@umbraco-ui/uui-avatar": "1.14.0-rc.0",
35
+ "@umbraco-ui/uui-base": "1.14.0-rc.0",
36
+ "@umbraco-ui/uui-card": "1.14.0-rc.0"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -44,5 +44,5 @@
44
44
  "access": "public"
45
45
  },
46
46
  "homepage": "https://uui.umbraco.com/?path=/story/uui-card-user",
47
- "gitHead": "f57b1fdfea3678b843fbec706cecb3a220f6046f"
47
+ "gitHead": "3dd62a7dd7fc7a38c6333c113cd942393bb437f0"
48
48
  }