@ray-js/lamp-saturation-slider 1.1.2-beta-1 → 1.1.4-beta-2

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.
@@ -1,90 +0,0 @@
1
- <sjs src="./index.sjs" module="computed"></sjs>
2
-
3
- <view
4
- id="{{instanceId}}"
5
- class="rayui-slider {{direction === 'vertical' ? 'vertical': 'horizontal'}} {{reverse ? 'reverse': 'no-reverse'}} {{disable ? 'disabled': ''}} {{className}}"
6
- disable="{{disable}}"
7
-
8
- change:start="{{computed.startPropObserver(instanceId)}}"
9
- change:end="{{computed.endPropObserver(instanceId)}}"
10
- change:watchstart="{{computed.watchstartPropObserver(instanceId)}}"
11
- change:watchend="{{computed.watchenddPropObserver(instanceId)}}"
12
- change:hue="{{hue}}"
13
- start="{{start}}"
14
- end="{{end}}"
15
- watchstart="{{watchStart}}"
16
- watchend="{{watchEnd}}"
17
-
18
- data-hue="{{hue}}"
19
- data-min="{{min}}"
20
- data-max="{{max}}"
21
- data-closed="{{closed}}"
22
-
23
- data-step="{{step}}"
24
-
25
- bind:touchstart="{{computed.handleTrackMouseDown(instanceId)}}"
26
- bind:touchmove="{{computed.onMouseMove(instanceId)}}"
27
- bind:touchend="{{computed.onTrackMouseUp(instanceId)}}"
28
-
29
- data-startmin="{{startMin}}"
30
- data-startmax="{{startMax}}"
31
-
32
- data-endmin="{{endMin}}"
33
- data-endmax="{{endMax}}"
34
-
35
- data-mode="{{mode}}"
36
- data-barpad="{{barPad}}"
37
- data-hidethumb="{{hideThumb}}"
38
- data-showsteps="{{showSteps}}"
39
- data-direction="{{direction}}"
40
- data-reverse="{{reverse}}"
41
- data-enabletouch="{{enableTouch}}"
42
- data-enabletouchbar="{{enableTouchBar}}"
43
- data-maxrangeoffset="{{maxRangeOffset}}"
44
- data-texttemplate="{{textTemplate}}"
45
- data-showtext="{{showText}}"
46
- data-thumbstylecalc="{{thumbStyleCalc}}"
47
-
48
- style="{{trackStyle}}"
49
- >
50
- <view ty:if="{{disable}}" class="rayui-slider-mask"></view>
51
- <view ty:if="{{showSteps}}" class="rayui-slider-steps">
52
- <view class="rayui-slider-steps-dot" ty:for="{{steps}}" style="{{stepStyle}}" ty:for-item="step">
53
- </view>
54
- </view>
55
- <view class="rayui-slider-bar"
56
- style="{{barStyle}}"
57
- >
58
- <view ty:if="{{showText}}" class="rayui-slider-bar-text" style="{{textStyle}}">
59
- {{text}}
60
- </view>
61
- <view class="rayui-slider-bar-steps_wrap">
62
- <view ty:if="{{showSteps}}" class="rayui-slider-steps">
63
- <view class="rayui-slider-steps-dot" ty:for="{{steps}}" style="{{activeStepStyle}}" ty:for-item="step">
64
- </view>
65
- </view>
66
- </view>
67
- </view>
68
- <view
69
- class="rayui-slider-thumb rayui-slider-thumb-start"
70
- data-name="start"
71
- bind:touchstart="{{computed.handleMouseDown(instanceId)}}"
72
- bind:touchend="{{computed.onMouseUp(instanceId)}}"
73
- >
74
- <view
75
- data-name="start"
76
- class="rayui-slider-thumb-render rayui-slider-thumb-start-render" style="{{thumbStartStyle}}"
77
- ></view>
78
- </view>
79
- <view
80
- class="rayui-slider-thumb rayui-slider-thumb-end"
81
- data-name="end"
82
- bind:touchstart="{{computed.handleMouseDown(instanceId)}}"
83
- bind:touchend="{{computed.onMouseUp(instanceId)}}"
84
- >
85
- <view
86
- data-name="end"
87
- class="rayui-slider-thumb-render rayui-slider-thumb-end-render" style="{{thumbEndStyle}}"
88
- ></view>
89
- </view>
90
- </view>