@m3e/slider 1.0.0-rc.3 → 1.0.0-rc.4
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/README.md +1 -1
- package/dist/custom-elements.json +13 -10
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +6 -0
- package/dist/index.min.js.map +1 -1
- package/dist/src/SliderElement.d.ts.map +1 -1
- package/dist/src/SliderThumbElement.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.min.js
CHANGED
|
@@ -74,6 +74,7 @@ function q(t,e){return(e,i,s)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
74
74
|
height: 3rem;
|
|
75
75
|
left: 0;
|
|
76
76
|
right: 0;
|
|
77
|
+
touch-action: none;
|
|
77
78
|
}
|
|
78
79
|
.wrapper {
|
|
79
80
|
display: inline-flex;
|
|
@@ -272,15 +273,18 @@ function q(t,e){return(e,i,s)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
272
273
|
height: 100%;
|
|
273
274
|
border-radius: inherit;
|
|
274
275
|
outline: none;
|
|
276
|
+
touch-action: none;
|
|
275
277
|
}
|
|
276
278
|
.track {
|
|
277
279
|
position: relative;
|
|
278
280
|
flex: 1 1 auto;
|
|
281
|
+
touch-action: none;
|
|
279
282
|
}
|
|
280
283
|
.track-inactive,
|
|
281
284
|
.track-active {
|
|
282
285
|
position: absolute;
|
|
283
286
|
height: 100%;
|
|
287
|
+
touch-action: none;
|
|
284
288
|
}
|
|
285
289
|
.track-active {
|
|
286
290
|
margin-left: var(--_slider-active-track-offset, 0px);
|
|
@@ -301,10 +305,12 @@ function q(t,e){return(e,i,s)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
301
305
|
width: 100%;
|
|
302
306
|
height: var(--m3e-slider-tick-size, 0.25rem);
|
|
303
307
|
overflow: visible;
|
|
308
|
+
touch-action: none;
|
|
304
309
|
}
|
|
305
310
|
.tick {
|
|
306
311
|
position: absolute;
|
|
307
312
|
top: 0;
|
|
313
|
+
touch-action: none;
|
|
308
314
|
left: calc(var(--m3e-slider-tick-size, 0.25rem) + calc(var(--m3e-slider-tick-size, 0.25rem) / 2));
|
|
309
315
|
width: var(--m3e-slider-tick-size, 0.25rem);
|
|
310
316
|
height: var(--m3e-slider-tick-size, 0.25rem);
|