@umbraco-ui/uui-range-slider 1.5.0-rc.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/custom-elements.json
CHANGED
|
@@ -108,11 +108,6 @@
|
|
|
108
108
|
}
|
|
109
109
|
],
|
|
110
110
|
"properties": [
|
|
111
|
-
{
|
|
112
|
-
"name": "styles",
|
|
113
|
-
"type": "CSSResult[]",
|
|
114
|
-
"default": "[\"UUIHorizontalPulseKeyframes\",null]"
|
|
115
|
-
},
|
|
116
111
|
{
|
|
117
112
|
"name": "disabled",
|
|
118
113
|
"attribute": "disabled",
|
|
@@ -182,6 +177,11 @@
|
|
|
182
177
|
"type": "number",
|
|
183
178
|
"default": "\"100\""
|
|
184
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"name": "styles",
|
|
182
|
+
"type": "CSSResult[]",
|
|
183
|
+
"default": "[\"UUIHorizontalPulseKeyframes\",null]"
|
|
184
|
+
},
|
|
185
185
|
{
|
|
186
186
|
"name": "formAssociated",
|
|
187
187
|
"description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events.\nIt may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals.\nRead more about form controls here https://web.dev/more-capable-form-controls/",
|
package/lib/index.js
CHANGED
|
@@ -484,6 +484,7 @@ _setValue = new WeakSet();
|
|
|
484
484
|
setValue_fn = function(val) {
|
|
485
485
|
this._value = val ? val : `${this.valueLow},${this.valueHigh}`;
|
|
486
486
|
};
|
|
487
|
+
UUIRangeSliderElement.formAssociated = true;
|
|
487
488
|
UUIRangeSliderElement.styles = [
|
|
488
489
|
UUIHorizontalPulseKeyframes,
|
|
489
490
|
css`
|
|
@@ -826,7 +827,6 @@ UUIRangeSliderElement.styles = [
|
|
|
826
827
|
}
|
|
827
828
|
`
|
|
828
829
|
];
|
|
829
|
-
UUIRangeSliderElement.formAssociated = true;
|
|
830
830
|
__decorateClass([
|
|
831
831
|
property({ type: Boolean, reflect: true })
|
|
832
832
|
], UUIRangeSliderElement.prototype, "disabled", 2);
|
|
@@ -8,7 +8,6 @@ declare const UUIRangeSliderElement_base: (new (...args: any[]) => import("@umbr
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUIRangeSliderElement extends UUIRangeSliderElement_base {
|
|
10
10
|
#private;
|
|
11
|
-
static styles: import("lit").CSSResult[];
|
|
12
11
|
static readonly formAssociated = true;
|
|
13
12
|
/**
|
|
14
13
|
* Disables the input.
|
|
@@ -156,6 +155,7 @@ export declare class UUIRangeSliderElement extends UUIRangeSliderElement_base {
|
|
|
156
155
|
renderStepsOutput(): import("lit-html").TemplateResult<1>;
|
|
157
156
|
renderSteps(): import("lit-html").TemplateResult<2>;
|
|
158
157
|
renderStepValues(): import("lit-html").TemplateResult<1> | typeof nothing;
|
|
158
|
+
static styles: import("lit").CSSResult[];
|
|
159
159
|
}
|
|
160
160
|
declare global {
|
|
161
161
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-range-slider",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.1",
|
|
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.1"
|
|
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-range-slider",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
|
|
45
45
|
}
|