@umbraco-ui/uui 1.5.0 → 1.6.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/custom-elements.json +193 -14
- package/dist/uui.min.js +67 -65
- package/dist/uui.min.js.map +1 -1
- package/package.json +83 -83
- package/vscode-html-custom-data.json +20 -6
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
|
},
|
|
@@ -3288,6 +3293,48 @@
|
|
|
3288
3293
|
"name": "append",
|
|
3289
3294
|
"description": "for components to render to the right of the input."
|
|
3290
3295
|
}
|
|
3296
|
+
],
|
|
3297
|
+
"cssProperties": [
|
|
3298
|
+
{
|
|
3299
|
+
"name": "--uui-input-height",
|
|
3300
|
+
"description": "Height of the element"
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
"name": "--uui-input-background-color",
|
|
3304
|
+
"description": "Background color of the element"
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"name": "--uui-input-background-color-disabled",
|
|
3308
|
+
"description": "Background color when disabled"
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"name": "--uui-input-background-color-readonly",
|
|
3312
|
+
"description": "Background color when readonly"
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"name": "--uui-input-border-width",
|
|
3316
|
+
"description": "Border width"
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"name": "--uui-input-border-color",
|
|
3320
|
+
"description": "Border color"
|
|
3321
|
+
},
|
|
3322
|
+
{
|
|
3323
|
+
"name": "--uui-input-border-color-hover",
|
|
3324
|
+
"description": "Border color on hover"
|
|
3325
|
+
},
|
|
3326
|
+
{
|
|
3327
|
+
"name": "--uui-input-border-color-focus",
|
|
3328
|
+
"description": "Border color on focus"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"name": "--uui-input-border-color-disabled",
|
|
3332
|
+
"description": "Border color when disabled"
|
|
3333
|
+
},
|
|
3334
|
+
{
|
|
3335
|
+
"name": "--uui-input-border-color-readonly",
|
|
3336
|
+
"description": "Border color when readonly"
|
|
3337
|
+
}
|
|
3291
3338
|
]
|
|
3292
3339
|
},
|
|
3293
3340
|
{
|
|
@@ -3640,6 +3687,48 @@
|
|
|
3640
3687
|
"name": "append",
|
|
3641
3688
|
"description": "for components to render to the right of the input."
|
|
3642
3689
|
}
|
|
3690
|
+
],
|
|
3691
|
+
"cssProperties": [
|
|
3692
|
+
{
|
|
3693
|
+
"name": "--uui-input-height",
|
|
3694
|
+
"description": "Height of the element"
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"name": "--uui-input-background-color",
|
|
3698
|
+
"description": "Background color of the element"
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
"name": "--uui-input-background-color-disabled",
|
|
3702
|
+
"description": "Background color when disabled"
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"name": "--uui-input-background-color-readonly",
|
|
3706
|
+
"description": "Background color when readonly"
|
|
3707
|
+
},
|
|
3708
|
+
{
|
|
3709
|
+
"name": "--uui-input-border-width",
|
|
3710
|
+
"description": "Border width"
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
"name": "--uui-input-border-color",
|
|
3714
|
+
"description": "Border color"
|
|
3715
|
+
},
|
|
3716
|
+
{
|
|
3717
|
+
"name": "--uui-input-border-color-hover",
|
|
3718
|
+
"description": "Border color on hover"
|
|
3719
|
+
},
|
|
3720
|
+
{
|
|
3721
|
+
"name": "--uui-input-border-color-focus",
|
|
3722
|
+
"description": "Border color on focus"
|
|
3723
|
+
},
|
|
3724
|
+
{
|
|
3725
|
+
"name": "--uui-input-border-color-disabled",
|
|
3726
|
+
"description": "Border color when disabled"
|
|
3727
|
+
},
|
|
3728
|
+
{
|
|
3729
|
+
"name": "--uui-input-border-color-readonly",
|
|
3730
|
+
"description": "Border color when readonly"
|
|
3731
|
+
}
|
|
3643
3732
|
]
|
|
3644
3733
|
},
|
|
3645
3734
|
{
|
|
@@ -3993,6 +4082,48 @@
|
|
|
3993
4082
|
"name": "append",
|
|
3994
4083
|
"description": "for components to render to the right of the input."
|
|
3995
4084
|
}
|
|
4085
|
+
],
|
|
4086
|
+
"cssProperties": [
|
|
4087
|
+
{
|
|
4088
|
+
"name": "--uui-input-height",
|
|
4089
|
+
"description": "Height of the element"
|
|
4090
|
+
},
|
|
4091
|
+
{
|
|
4092
|
+
"name": "--uui-input-background-color",
|
|
4093
|
+
"description": "Background color of the element"
|
|
4094
|
+
},
|
|
4095
|
+
{
|
|
4096
|
+
"name": "--uui-input-background-color-disabled",
|
|
4097
|
+
"description": "Background color when disabled"
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
"name": "--uui-input-background-color-readonly",
|
|
4101
|
+
"description": "Background color when readonly"
|
|
4102
|
+
},
|
|
4103
|
+
{
|
|
4104
|
+
"name": "--uui-input-border-width",
|
|
4105
|
+
"description": "Border width"
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"name": "--uui-input-border-color",
|
|
4109
|
+
"description": "Border color"
|
|
4110
|
+
},
|
|
4111
|
+
{
|
|
4112
|
+
"name": "--uui-input-border-color-hover",
|
|
4113
|
+
"description": "Border color on hover"
|
|
4114
|
+
},
|
|
4115
|
+
{
|
|
4116
|
+
"name": "--uui-input-border-color-focus",
|
|
4117
|
+
"description": "Border color on focus"
|
|
4118
|
+
},
|
|
4119
|
+
{
|
|
4120
|
+
"name": "--uui-input-border-color-disabled",
|
|
4121
|
+
"description": "Border color when disabled"
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
"name": "--uui-input-border-color-readonly",
|
|
4125
|
+
"description": "Border color when readonly"
|
|
4126
|
+
}
|
|
3996
4127
|
]
|
|
3997
4128
|
},
|
|
3998
4129
|
{
|
|
@@ -4386,6 +4517,10 @@
|
|
|
4386
4517
|
{
|
|
4387
4518
|
"name": "--uui-menu-item-indent",
|
|
4388
4519
|
"description": "set indentation of the menu items"
|
|
4520
|
+
},
|
|
4521
|
+
{
|
|
4522
|
+
"name": "--uui-menu-item-flat-structure",
|
|
4523
|
+
"description": "set to 1 to remove the indentation of the chevron. Use this when you have a flat menu structure"
|
|
4389
4524
|
}
|
|
4390
4525
|
]
|
|
4391
4526
|
},
|
|
@@ -4783,7 +4918,9 @@
|
|
|
4783
4918
|
"name": "--uui-popover-z-index",
|
|
4784
4919
|
"description": "overwrite the z-index of the popover container."
|
|
4785
4920
|
}
|
|
4786
|
-
]
|
|
4921
|
+
],
|
|
4922
|
+
"deprecated": true,
|
|
4923
|
+
"deprecatedMessage": "This component has been deprecated and will be removed in future releases. It is being replaced by popover-container."
|
|
4787
4924
|
},
|
|
4788
4925
|
{
|
|
4789
4926
|
"name": "uui-progress-bar",
|
|
@@ -6578,6 +6715,48 @@
|
|
|
6578
6715
|
"name": "change",
|
|
6579
6716
|
"description": "when the user changes value"
|
|
6580
6717
|
}
|
|
6718
|
+
],
|
|
6719
|
+
"cssProperties": [
|
|
6720
|
+
{
|
|
6721
|
+
"name": "--uui-select-height",
|
|
6722
|
+
"description": "Height of the element"
|
|
6723
|
+
},
|
|
6724
|
+
{
|
|
6725
|
+
"name": "--uui-select-font-size",
|
|
6726
|
+
"description": "Font size of the element"
|
|
6727
|
+
},
|
|
6728
|
+
{
|
|
6729
|
+
"name": "--uui-select-padding-y",
|
|
6730
|
+
"description": "Padding on the y axis"
|
|
6731
|
+
},
|
|
6732
|
+
{
|
|
6733
|
+
"name": "--uui-select-padding-x",
|
|
6734
|
+
"description": "Padding on the x axis"
|
|
6735
|
+
},
|
|
6736
|
+
{
|
|
6737
|
+
"name": "--uui-select-border-color",
|
|
6738
|
+
"description": "Border color"
|
|
6739
|
+
},
|
|
6740
|
+
{
|
|
6741
|
+
"name": "--uui-select-border-color-hover",
|
|
6742
|
+
"description": "Border color on hover"
|
|
6743
|
+
},
|
|
6744
|
+
{
|
|
6745
|
+
"name": "--uui-select-selected-option-background-color",
|
|
6746
|
+
"description": "Background color of the selected option"
|
|
6747
|
+
},
|
|
6748
|
+
{
|
|
6749
|
+
"name": "--uui-select-selected-option-color",
|
|
6750
|
+
"description": "Color of the selected option"
|
|
6751
|
+
},
|
|
6752
|
+
{
|
|
6753
|
+
"name": "--uui-select-outline-color",
|
|
6754
|
+
"description": "Outline color"
|
|
6755
|
+
},
|
|
6756
|
+
{
|
|
6757
|
+
"name": "--uui-select-disabled-background-color",
|
|
6758
|
+
"description": "Background color when disabled"
|
|
6759
|
+
}
|
|
6581
6760
|
]
|
|
6582
6761
|
},
|
|
6583
6762
|
{
|