@umbraco-ui/uui 1.5.0-rc.3 → 1.6.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.
- package/custom-elements.json +21 -14
- package/dist/uui.min.js +566 -62
- package/dist/uui.min.js.map +1 -1
- package/package.json +83 -83
- package/vscode-html-custom-data.json +19 -5
package/custom-elements.json
CHANGED
|
@@ -1899,13 +1899,18 @@
|
|
|
1899
1899
|
{
|
|
1900
1900
|
"name": "uui-color-swatch",
|
|
1901
1901
|
"path": "./../uui-color-swatch/lib/uui-color-swatch.element.ts",
|
|
1902
|
-
"description": "Color swatch, can have label and be selectable.
|
|
1902
|
+
"description": "Color swatch, can have label and be selectable.",
|
|
1903
1903
|
"attributes": [
|
|
1904
1904
|
{
|
|
1905
1905
|
"name": "value",
|
|
1906
|
-
"description": "Value of the swatch.
|
|
1906
|
+
"description": "Value of the swatch. This will become the color value if color is left undefined, see the property `color` for more details.",
|
|
1907
1907
|
"type": "string"
|
|
1908
1908
|
},
|
|
1909
|
+
{
|
|
1910
|
+
"name": "color",
|
|
1911
|
+
"description": "Color of the swatch. Should be a valid hex, hexa, rgb, rgba, hsl or hsla string. Should fulfill this [css spec](https://www.w3.org/TR/css-color-4/#color-type). If not provided element will look at its text content.",
|
|
1912
|
+
"type": "string | undefined"
|
|
1913
|
+
},
|
|
1909
1914
|
{
|
|
1910
1915
|
"name": "disabled",
|
|
1911
1916
|
"description": "Determines if the options is disabled. If true the option can't be selected",
|
|
@@ -1945,9 +1950,15 @@
|
|
|
1945
1950
|
{
|
|
1946
1951
|
"name": "value",
|
|
1947
1952
|
"attribute": "value",
|
|
1948
|
-
"description": "Value of the swatch.
|
|
1953
|
+
"description": "Value of the swatch. This will become the color value if color is left undefined, see the property `color` for more details.",
|
|
1949
1954
|
"type": "string"
|
|
1950
1955
|
},
|
|
1956
|
+
{
|
|
1957
|
+
"name": "color",
|
|
1958
|
+
"attribute": "color",
|
|
1959
|
+
"description": "Color of the swatch. Should be a valid hex, hexa, rgb, rgba, hsl or hsla string. Should fulfill this [css spec](https://www.w3.org/TR/css-color-4/#color-type). If not provided element will look at its text content.",
|
|
1960
|
+
"type": "string | undefined"
|
|
1961
|
+
},
|
|
1951
1962
|
{
|
|
1952
1963
|
"name": "disabled",
|
|
1953
1964
|
"attribute": "disabled",
|
|
@@ -1962,16 +1973,6 @@
|
|
|
1962
1973
|
"type": "boolean",
|
|
1963
1974
|
"default": "false"
|
|
1964
1975
|
},
|
|
1965
|
-
{
|
|
1966
|
-
"name": "color",
|
|
1967
|
-
"description": "Colord object instance based on the value provided to the element. If the value is not a valid color, it falls back to black (like Amy Winehouse). For more information about Colord, see [Colord](https://omgovich.github.io/colord/)",
|
|
1968
|
-
"type": "Colord | null"
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
"name": "isLight",
|
|
1972
|
-
"description": "Returns true if the color brightness is >= 0.5",
|
|
1973
|
-
"type": "boolean"
|
|
1974
|
-
},
|
|
1975
1976
|
{
|
|
1976
1977
|
"name": "styles",
|
|
1977
1978
|
"type": "CSSResult[]",
|
|
@@ -2028,6 +2029,10 @@
|
|
|
2028
2029
|
{
|
|
2029
2030
|
"name": "--uui-swatch-border-width",
|
|
2030
2031
|
"description": "The width of the border."
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
"name": "--uui-swatch-color",
|
|
2035
|
+
"description": "The width of the border."
|
|
2031
2036
|
}
|
|
2032
2037
|
]
|
|
2033
2038
|
},
|
|
@@ -4783,7 +4788,9 @@
|
|
|
4783
4788
|
"name": "--uui-popover-z-index",
|
|
4784
4789
|
"description": "overwrite the z-index of the popover container."
|
|
4785
4790
|
}
|
|
4786
|
-
]
|
|
4791
|
+
],
|
|
4792
|
+
"deprecated": true,
|
|
4793
|
+
"deprecatedMessage": "This component has been deprecated and will be removed in future releases. It is being replaced by popover-container."
|
|
4787
4794
|
},
|
|
4788
4795
|
{
|
|
4789
4796
|
"name": "uui-progress-bar",
|