@esri/calcite-components 1.0.0-next.377 → 1.0.0-next.378
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/dist/cjs/calcite-label.cjs.entry.js +4 -1
- package/dist/collection/components/calcite-label/calcite-label.js +8 -2
- package/dist/components/calcite-label2.js +4 -1
- package/dist/custom-elements/index.js +4 -1
- package/dist/esm/calcite-label.entry.js +4 -1
- package/dist/extras/docs-json.json +8 -2
- package/dist/types/components/calcite-label/calcite-label.d.ts +4 -1
- package/dist/types/components.d.ts +2 -0
- package/hydrate/index.js +4 -1
- package/package.json +1 -1
|
@@ -25,7 +25,10 @@ let CalciteLabel = class {
|
|
|
25
25
|
//--------------------------------------------------------------------------
|
|
26
26
|
/** specify the text alignment of the label */
|
|
27
27
|
this.alignment = "start";
|
|
28
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* specify the status of the label and any child input / input messages
|
|
30
|
+
* @deprecated set directly on child element instead
|
|
31
|
+
*/
|
|
29
32
|
this.status = "idle";
|
|
30
33
|
/** specify the scale of the label, defaults to m */
|
|
31
34
|
this.scale = "m";
|
|
@@ -16,7 +16,10 @@ export class CalciteLabel {
|
|
|
16
16
|
//--------------------------------------------------------------------------
|
|
17
17
|
/** specify the text alignment of the label */
|
|
18
18
|
this.alignment = "start";
|
|
19
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* specify the status of the label and any child input / input messages
|
|
21
|
+
* @deprecated set directly on child element instead
|
|
22
|
+
*/
|
|
20
23
|
this.status = "idle";
|
|
21
24
|
/** specify the scale of the label, defaults to m */
|
|
22
25
|
this.scale = "m";
|
|
@@ -95,7 +98,10 @@ export class CalciteLabel {
|
|
|
95
98
|
"required": false,
|
|
96
99
|
"optional": false,
|
|
97
100
|
"docs": {
|
|
98
|
-
"tags": [
|
|
101
|
+
"tags": [{
|
|
102
|
+
"name": "deprecated",
|
|
103
|
+
"text": "set directly on child element instead"
|
|
104
|
+
}],
|
|
99
105
|
"text": "specify the status of the label and any child input / input messages"
|
|
100
106
|
},
|
|
101
107
|
"attribute": "status",
|
|
@@ -23,7 +23,10 @@ let CalciteLabel = class extends HTMLElement {
|
|
|
23
23
|
//--------------------------------------------------------------------------
|
|
24
24
|
/** specify the text alignment of the label */
|
|
25
25
|
this.alignment = "start";
|
|
26
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* specify the status of the label and any child input / input messages
|
|
28
|
+
* @deprecated set directly on child element instead
|
|
29
|
+
*/
|
|
27
30
|
this.status = "idle";
|
|
28
31
|
/** specify the scale of the label, defaults to m */
|
|
29
32
|
this.scale = "m";
|
|
@@ -14408,7 +14408,10 @@ let CalciteLabel$1 = class extends HTMLElement$1 {
|
|
|
14408
14408
|
//--------------------------------------------------------------------------
|
|
14409
14409
|
/** specify the text alignment of the label */
|
|
14410
14410
|
this.alignment = "start";
|
|
14411
|
-
/**
|
|
14411
|
+
/**
|
|
14412
|
+
* specify the status of the label and any child input / input messages
|
|
14413
|
+
* @deprecated set directly on child element instead
|
|
14414
|
+
*/
|
|
14412
14415
|
this.status = "idle";
|
|
14413
14416
|
/** specify the scale of the label, defaults to m */
|
|
14414
14417
|
this.scale = "m";
|
|
@@ -21,7 +21,10 @@ let CalciteLabel = class {
|
|
|
21
21
|
//--------------------------------------------------------------------------
|
|
22
22
|
/** specify the text alignment of the label */
|
|
23
23
|
this.alignment = "start";
|
|
24
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* specify the status of the label and any child input / input messages
|
|
26
|
+
* @deprecated set directly on child element instead
|
|
27
|
+
*/
|
|
25
28
|
this.status = "idle";
|
|
26
29
|
/** specify the scale of the label, defaults to m */
|
|
27
30
|
this.scale = "m";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2022-01-
|
|
2
|
+
"timestamp": "2022-01-27T23:46:19",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "2.13.0",
|
|
@@ -10274,8 +10274,14 @@
|
|
|
10274
10274
|
"attr": "status",
|
|
10275
10275
|
"reflectToAttr": true,
|
|
10276
10276
|
"docs": "specify the status of the label and any child input / input messages",
|
|
10277
|
-
"docsTags": [
|
|
10277
|
+
"docsTags": [
|
|
10278
|
+
{
|
|
10279
|
+
"name": "deprecated",
|
|
10280
|
+
"text": "set directly on child element instead"
|
|
10281
|
+
}
|
|
10282
|
+
],
|
|
10278
10283
|
"default": "\"idle\"",
|
|
10284
|
+
"deprecation": "set directly on child element instead",
|
|
10279
10285
|
"values": [
|
|
10280
10286
|
{
|
|
10281
10287
|
"value": "idle",
|
|
@@ -7,7 +7,10 @@ export declare class CalciteLabel {
|
|
|
7
7
|
el: HTMLCalciteLabelElement;
|
|
8
8
|
/** specify the text alignment of the label */
|
|
9
9
|
alignment: Alignment;
|
|
10
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* specify the status of the label and any child input / input messages
|
|
12
|
+
* @deprecated set directly on child element instead
|
|
13
|
+
*/
|
|
11
14
|
status: Status;
|
|
12
15
|
/** The id of the input associated with the label */
|
|
13
16
|
for: string;
|
|
@@ -1817,6 +1817,7 @@ export namespace Components {
|
|
|
1817
1817
|
"scale": Scale;
|
|
1818
1818
|
/**
|
|
1819
1819
|
* specify the status of the label and any child input / input messages
|
|
1820
|
+
* @deprecated set directly on child element instead
|
|
1820
1821
|
*/
|
|
1821
1822
|
"status": Status;
|
|
1822
1823
|
}
|
|
@@ -5919,6 +5920,7 @@ declare namespace LocalJSX {
|
|
|
5919
5920
|
"scale"?: Scale;
|
|
5920
5921
|
/**
|
|
5921
5922
|
* specify the status of the label and any child input / input messages
|
|
5923
|
+
* @deprecated set directly on child element instead
|
|
5922
5924
|
*/
|
|
5923
5925
|
"status"?: Status;
|
|
5924
5926
|
}
|
package/hydrate/index.js
CHANGED
|
@@ -20560,7 +20560,10 @@ class CalciteLabel {
|
|
|
20560
20560
|
//--------------------------------------------------------------------------
|
|
20561
20561
|
/** specify the text alignment of the label */
|
|
20562
20562
|
this.alignment = "start";
|
|
20563
|
-
/**
|
|
20563
|
+
/**
|
|
20564
|
+
* specify the status of the label and any child input / input messages
|
|
20565
|
+
* @deprecated set directly on child element instead
|
|
20566
|
+
*/
|
|
20564
20567
|
this.status = "idle";
|
|
20565
20568
|
/** specify the scale of the label, defaults to m */
|
|
20566
20569
|
this.scale = "m";
|