Skip to content

Commit 90f7bec

Browse files
committed
[@FOXONE/FINANCE-UI]: 0.1.0-rc.1
1 parent d2fc156 commit 90f7bec

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/cicd-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
token: ${{ secrets.NPM_TOKEN }}
4040
package: ./package.json
41-
tag: 'rc'
41+
tag: 'latest'
4242

4343

4444

omni.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ module.exports = {
9898
if (!fs.existsSync(filePath))
9999
return Promise.resolve();
100100
return new Promise(resolve => {
101-
const tag = options.tag;
101+
const tag = options.tag === 'rc' ? 'latest' : options.tag;
102102
fs.readFile(filePath, function (
103103
err,
104104
data

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@foxone/finance-ui",
3-
"version": "0.1.0-rc.0",
3+
"version": "0.1.0-rc.1",
44
"description": "The Financial UI Component Library Based on @foxone/uikit and vuetify",
55
"main": "lib/index.js",
66
"module": "es/index.js",

src/AssetRangeInput/AssetRangeInput.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ export default defineComponent({
206206
selectable={this.selectable}
207207
border={this.border}
208208
loading={this.loading}
209-
vOn={{
210-
...this.$listeners,
211-
input: (val, e) => {
212-
if (!this.isInRange(+val)) this.$emit('error:limit');
213-
this._value_input = val;
214-
this.$emit('input', val);
215-
if (!this.value) this.$nextTick(() => this.$forceUpdate());
216-
this.setSliderValueWithLimit(+val);
217-
}
209+
vOn:input={(val, e) => {
210+
if (!this.isInRange(+val)) this.$emit('error:limit');
211+
this._value_input = val;
212+
this.$emit('input', val);
213+
if (!this.value) this.$nextTick(() => this.$forceUpdate());
214+
this.setSliderValueWithLimit(+val);
215+
}}
216+
listeners={{
217+
...this.$listeners
218218
}}
219219
scopedSlots={scopedSlots}
220220
/>

0 commit comments

Comments
 (0)