@umbraco-ui/uui-avatar-group 1.5.0-rc.0 → 1.5.0-rc.1
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.
- package/README.md +1 -1
- package/custom-elements.json +5 -5
- package/lib/uui-avatar-group.element.d.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
package/custom-elements.json
CHANGED
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
16
|
"properties": [
|
|
17
|
-
{
|
|
18
|
-
"name": "styles",
|
|
19
|
-
"type": "CSSResult[]",
|
|
20
|
-
"default": "[null]"
|
|
21
|
-
},
|
|
22
17
|
{
|
|
23
18
|
"name": "limit",
|
|
24
19
|
"attribute": "limit",
|
|
25
20
|
"description": "This sets a limit of how many avatars can be shown. It will ad a +{number} after the avatars to show the number of hidden avatars.",
|
|
26
21
|
"type": "number",
|
|
27
22
|
"default": "\"0\""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "styles",
|
|
26
|
+
"type": "CSSResult[]",
|
|
27
|
+
"default": "[null]"
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
30
|
"slots": [
|
|
@@ -5,7 +5,6 @@ import { LitElement } from 'lit';
|
|
|
5
5
|
* @slot - Insert the `<uui-avatar>` elements in the default slot
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUIAvatarGroupElement extends LitElement {
|
|
8
|
-
static styles: import("lit").CSSResult[];
|
|
9
8
|
private _avatarNodes?;
|
|
10
9
|
private _avatarArray;
|
|
11
10
|
/**
|
|
@@ -22,6 +21,7 @@ export declare class UUIAvatarGroupElement extends LitElement {
|
|
|
22
21
|
private _updateAvatarVisibility;
|
|
23
22
|
private _isLimitExceeded;
|
|
24
23
|
render(): import("lit-html").TemplateResult<1>;
|
|
24
|
+
static styles: import("lit").CSSResult[];
|
|
25
25
|
}
|
|
26
26
|
declare global {
|
|
27
27
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-avatar-group",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-avatar": "1.5.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-base": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-avatar": "1.5.0-rc.1",
|
|
34
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.1"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-avatar-group",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
|
|
46
46
|
}
|