@umbraco-ui/uui-form-layout-item 1.4.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
CHANGED
|
@@ -6,7 +6,7 @@ Umbraco style uui-form-layout-item component.
|
|
|
6
6
|
|
|
7
7
|
### See it in action
|
|
8
8
|
|
|
9
|
-
Preview the component on [Storybook](https://uui.umbraco.com/?path=/
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-form-layout-item--docs)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/custom-elements.json
CHANGED
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"properties": [
|
|
14
|
-
{
|
|
15
|
-
"name": "styles",
|
|
16
|
-
"type": "CSSResult[]",
|
|
17
|
-
"default": "[null]"
|
|
18
|
-
},
|
|
19
14
|
{
|
|
20
15
|
"name": "description",
|
|
21
16
|
"attribute": "description",
|
|
22
17
|
"type": "string | null"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "styles",
|
|
21
|
+
"type": "CSSResult[]",
|
|
22
|
+
"default": "[null]"
|
|
23
23
|
}
|
|
24
24
|
],
|
|
25
25
|
"slots": [
|
|
@@ -8,7 +8,6 @@ import { LitElement } from 'lit';
|
|
|
8
8
|
* @slot label - for label contents
|
|
9
9
|
*/
|
|
10
10
|
export declare class UUIFormLayoutItemElement extends LitElement {
|
|
11
|
-
static styles: import("lit").CSSResult[];
|
|
12
11
|
description: string | null;
|
|
13
12
|
connectedCallback(): void;
|
|
14
13
|
private _labelSlotHasContent;
|
|
@@ -16,6 +15,7 @@ export declare class UUIFormLayoutItemElement extends LitElement {
|
|
|
16
15
|
private _descriptionSlotHasContent;
|
|
17
16
|
private _descriptionSlotChanged;
|
|
18
17
|
render(): import("lit-html").TemplateResult<1>;
|
|
18
|
+
static styles: import("lit").CSSResult[];
|
|
19
19
|
}
|
|
20
20
|
declare global {
|
|
21
21
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-form-layout-item",
|
|
3
|
-
"version": "1.
|
|
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-base": "1.
|
|
34
|
-
"@umbraco-ui/uui-form-validation-message": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.1",
|
|
34
|
+
"@umbraco-ui/uui-form-validation-message": "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-form-layout-item",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
|
|
46
46
|
}
|