@umbraco-ui/uui-card 1.5.0-rc.0 → 1.5.0-rc.2
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-card.element.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
package/custom-elements.json
CHANGED
|
@@ -47,11 +47,6 @@
|
|
|
47
47
|
}
|
|
48
48
|
],
|
|
49
49
|
"properties": [
|
|
50
|
-
{
|
|
51
|
-
"name": "styles",
|
|
52
|
-
"type": "CSSResult[]",
|
|
53
|
-
"default": "[null]"
|
|
54
|
-
},
|
|
55
50
|
{
|
|
56
51
|
"name": "disabled",
|
|
57
52
|
"attribute": "disabled",
|
|
@@ -80,6 +75,11 @@
|
|
|
80
75
|
"type": "string",
|
|
81
76
|
"default": "\"undefined\""
|
|
82
77
|
},
|
|
78
|
+
{
|
|
79
|
+
"name": "styles",
|
|
80
|
+
"type": "CSSResult[]",
|
|
81
|
+
"default": "[null]"
|
|
82
|
+
},
|
|
83
83
|
{
|
|
84
84
|
"name": "selectOnly",
|
|
85
85
|
"attribute": "select-only",
|
|
@@ -7,7 +7,6 @@ declare const UUICardElement_base: (new (...args: any[]) => import("@umbraco-ui/
|
|
|
7
7
|
* @slot - Default content.
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUICardElement extends UUICardElement_base {
|
|
10
|
-
static styles: import("lit").CSSResult[];
|
|
11
10
|
/**
|
|
12
11
|
* Set to true to prevent opening of this item.
|
|
13
12
|
* This does not prevent selection, selection is controlled by property 'selectable'
|
|
@@ -40,6 +39,7 @@ export declare class UUICardElement extends UUICardElement_base {
|
|
|
40
39
|
protected handleOpenClick(e: Event): void;
|
|
41
40
|
protected handleOpenKeydown(e: KeyboardEvent): void;
|
|
42
41
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
42
|
+
static styles: import("lit").CSSResult[];
|
|
43
43
|
}
|
|
44
44
|
declare global {
|
|
45
45
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-card",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.2"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-card",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "573af25cbb43f673731b87dd8e23dbe632bfc348"
|
|
45
45
|
}
|