@umbraco-ui/uui-range-slider 1.5.0-rc.2 → 1.5.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 +39 -64
- package/lib/index.js +595 -656
- package/lib/uui-range-slider.element.d.ts +76 -96
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -5,26 +5,14 @@
|
|
|
5
5
|
"name": "uui-range-slider",
|
|
6
6
|
"path": "./lib/uui-range-slider.element.ts",
|
|
7
7
|
"attributes": [
|
|
8
|
-
{
|
|
9
|
-
"name": "disabled",
|
|
10
|
-
"description": "Disables the input.",
|
|
11
|
-
"type": "boolean",
|
|
12
|
-
"default": "\"false\""
|
|
13
|
-
},
|
|
14
8
|
{
|
|
15
9
|
"name": "label",
|
|
16
|
-
"description": "Label to be used for aria-label and eventually as visual label. Adds \"
|
|
10
|
+
"description": "Label to be used for aria-label and eventually as visual label. Adds \"low-end value\" and \"high-end value\" endings for the two values.",
|
|
17
11
|
"type": "string"
|
|
18
12
|
},
|
|
19
13
|
{
|
|
20
|
-
"name": "
|
|
21
|
-
"description": "
|
|
22
|
-
"type": "number",
|
|
23
|
-
"default": "\"1\""
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"name": "hide-step-values",
|
|
27
|
-
"description": "Hides the numbers representing the value of each steps. Dots will still be visible",
|
|
14
|
+
"name": "disabled",
|
|
15
|
+
"description": "Disables the input.",
|
|
28
16
|
"type": "boolean",
|
|
29
17
|
"default": "\"false\""
|
|
30
18
|
},
|
|
@@ -40,6 +28,18 @@
|
|
|
40
28
|
"type": "number",
|
|
41
29
|
"default": "\"100\""
|
|
42
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"name": "hide-step-values",
|
|
33
|
+
"description": "Hides the numbers representing the value of each steps. Dots will still be visible",
|
|
34
|
+
"type": "boolean",
|
|
35
|
+
"default": "\"false\""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "step",
|
|
39
|
+
"description": "This reflects the behavior of a native input step attribute.",
|
|
40
|
+
"type": "number",
|
|
41
|
+
"default": "\"1\""
|
|
42
|
+
},
|
|
43
43
|
{
|
|
44
44
|
"name": "min-gap",
|
|
45
45
|
"description": "Minimum value gap between the the two picked values. Cannot be lower than the step value and cannot be higher than the maximum gap",
|
|
@@ -52,18 +52,6 @@
|
|
|
52
52
|
"type": "number",
|
|
53
53
|
"default": "\"undefined\""
|
|
54
54
|
},
|
|
55
|
-
{
|
|
56
|
-
"name": "value-low",
|
|
57
|
-
"description": "The lower picked value.",
|
|
58
|
-
"type": "number",
|
|
59
|
-
"default": "\"0\""
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"name": "value-high",
|
|
63
|
-
"description": "The higher picked value.",
|
|
64
|
-
"type": "number",
|
|
65
|
-
"default": "\"100\""
|
|
66
|
-
},
|
|
67
55
|
{
|
|
68
56
|
"name": "name",
|
|
69
57
|
"description": "This is a name property of the component.",
|
|
@@ -72,9 +60,9 @@
|
|
|
72
60
|
},
|
|
73
61
|
{
|
|
74
62
|
"name": "value",
|
|
75
|
-
"description": "This is a value property of the uui-range-slider. Split the two values with comma,
|
|
63
|
+
"description": "This is a value property of the uui-range-slider. Split the two values with comma, for example 10,50 sets the values to 10 and 50.",
|
|
76
64
|
"type": "string",
|
|
77
|
-
"default": "\"0,
|
|
65
|
+
"default": "\"0,0\""
|
|
78
66
|
},
|
|
79
67
|
{
|
|
80
68
|
"name": "pristine",
|
|
@@ -108,30 +96,16 @@
|
|
|
108
96
|
}
|
|
109
97
|
],
|
|
110
98
|
"properties": [
|
|
111
|
-
{
|
|
112
|
-
"name": "disabled",
|
|
113
|
-
"attribute": "disabled",
|
|
114
|
-
"description": "Disables the input.",
|
|
115
|
-
"type": "boolean",
|
|
116
|
-
"default": "\"false\""
|
|
117
|
-
},
|
|
118
99
|
{
|
|
119
100
|
"name": "label",
|
|
120
101
|
"attribute": "label",
|
|
121
|
-
"description": "Label to be used for aria-label and eventually as visual label. Adds \"
|
|
102
|
+
"description": "Label to be used for aria-label and eventually as visual label. Adds \"low-end value\" and \"high-end value\" endings for the two values.",
|
|
122
103
|
"type": "string"
|
|
123
104
|
},
|
|
124
105
|
{
|
|
125
|
-
"name": "
|
|
126
|
-
"attribute": "
|
|
127
|
-
"description": "
|
|
128
|
-
"type": "number",
|
|
129
|
-
"default": "\"1\""
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"name": "hideStepValues",
|
|
133
|
-
"attribute": "hide-step-values",
|
|
134
|
-
"description": "Hides the numbers representing the value of each steps. Dots will still be visible",
|
|
106
|
+
"name": "disabled",
|
|
107
|
+
"attribute": "disabled",
|
|
108
|
+
"description": "Disables the input.",
|
|
135
109
|
"type": "boolean",
|
|
136
110
|
"default": "\"false\""
|
|
137
111
|
},
|
|
@@ -149,6 +123,20 @@
|
|
|
149
123
|
"type": "number",
|
|
150
124
|
"default": "\"100\""
|
|
151
125
|
},
|
|
126
|
+
{
|
|
127
|
+
"name": "hideStepValues",
|
|
128
|
+
"attribute": "hide-step-values",
|
|
129
|
+
"description": "Hides the numbers representing the value of each steps. Dots will still be visible",
|
|
130
|
+
"type": "boolean",
|
|
131
|
+
"default": "\"false\""
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "step",
|
|
135
|
+
"attribute": "step",
|
|
136
|
+
"description": "This reflects the behavior of a native input step attribute.",
|
|
137
|
+
"type": "number",
|
|
138
|
+
"default": "\"1\""
|
|
139
|
+
},
|
|
152
140
|
{
|
|
153
141
|
"name": "minGap",
|
|
154
142
|
"attribute": "min-gap",
|
|
@@ -163,24 +151,11 @@
|
|
|
163
151
|
"type": "number",
|
|
164
152
|
"default": "\"undefined\""
|
|
165
153
|
},
|
|
166
|
-
{
|
|
167
|
-
"name": "valueLow",
|
|
168
|
-
"attribute": "value-low",
|
|
169
|
-
"description": "The lower picked value.",
|
|
170
|
-
"type": "number",
|
|
171
|
-
"default": "\"0\""
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"name": "valueHigh",
|
|
175
|
-
"attribute": "value-high",
|
|
176
|
-
"description": "The higher picked value.",
|
|
177
|
-
"type": "number",
|
|
178
|
-
"default": "\"100\""
|
|
179
|
-
},
|
|
180
154
|
{
|
|
181
155
|
"name": "styles",
|
|
156
|
+
"description": "Style",
|
|
182
157
|
"type": "CSSResult[]",
|
|
183
|
-
"default": "[
|
|
158
|
+
"default": "[null]"
|
|
184
159
|
},
|
|
185
160
|
{
|
|
186
161
|
"name": "formAssociated",
|
|
@@ -198,9 +173,9 @@
|
|
|
198
173
|
{
|
|
199
174
|
"name": "value",
|
|
200
175
|
"attribute": "value",
|
|
201
|
-
"description": "This is a value property of the uui-range-slider. Split the two values with comma,
|
|
176
|
+
"description": "This is a value property of the uui-range-slider. Split the two values with comma, for example 10,50 sets the values to 10 and 50.",
|
|
202
177
|
"type": "string",
|
|
203
|
-
"default": "\"0,
|
|
178
|
+
"default": "\"0,0\""
|
|
204
179
|
},
|
|
205
180
|
{
|
|
206
181
|
"name": "pristine",
|