Skip to content

Commit

Permalink
Fix version 2.3.0-alpha.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adnzaki committed Mar 13, 2023
1 parent fc49995 commit 8e0728d
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const paging = usePagingStore()
```
For use without build tool, you can include SSPaging via CDN:
```html
<script src="https://unpkg.com/[email protected]/dist/ss-paging.dist.js"></script>
<script src="https://unpkg.com/[email protected]-alpha.4/dist/ss-paging.dist.js"></script>
```
```javascript
// in your JS file
Expand Down
1 change: 1 addition & 0 deletions components/dist/ss-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ var SSComponents = (function (exports, vue) {
setTimeout(() => {
// showOptions.value = false
listWrapperActive.value = '';
activeIcon.value = '';
}, 100);
}

Expand Down
2 changes: 1 addition & 1 deletion components/dist/ss-components.prod.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"comp:build": "rollup index.js --file dist/ss-components.js --format iife --name SSComponents --globals vue:Vue && uglifyjs dist/ss-components.js -o dist/ss-components.prod.js"
"comp:build": "rollup index.js --file dist/ss-components.js --format iife --name SSComponents --globals vue:Vue && uglifyjs dist/ss-components.js -o dist/ss-components.prod.js",
"style:build": "css-combine style.css > dist/style.css"
},
"dependencies": {
"pinia": "^2.0.33",
Expand Down
1 change: 1 addition & 0 deletions components/src/components/select/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export default defineComponent({
setTimeout(() => {
// showOptions.value = false
listWrapperActive.value = ''
activeIcon.value = ''
}, 100)
}

Expand Down
22 changes: 11 additions & 11 deletions dist/ss-paging.dist.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var SSPaging = (function (exports, vue) {
'use strict';

var SSPaging = (function (exports, vue) {
'use strict';

/**
* Smartscore Pagination (SSPaging)
*
Expand All @@ -17,7 +17,7 @@ var SSPaging = (function (exports, vue) {
* @package Pagination
* @author Adnan Zaki
* @type Libraries
* @version 2.3.0
* @version 2.3.0-alpha.4
* @url https://wolestech.com
*/

Expand Down Expand Up @@ -456,10 +456,10 @@ var SSPaging = (function (exports, vue) {
}
}

};

exports.usePaging = usePaging;

return exports;

})({}, Vue);
};

exports.usePaging = usePaging;

return exports;

})({}, Vue);
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ss-paging-vue",
"version": "2.3.0-alpha.1",
"version": "2.3.0-alpha.4",
"description": "SSPaging: A Full Server-side pagination library for Vue.js",
"main": "index.js",
"directories": {},
Expand Down
2 changes: 1 addition & 1 deletion src/ss-paging-esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @package Pagination
* @author Adnan Zaki
* @type Libraries
* @version 2.3.0
* @version 2.3.0-alpha.4
* @url https://wolestech.com
*/
import { ref, reactive, computed } from 'vue'
Expand Down
2 changes: 1 addition & 1 deletion src/ss-paging-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @package Pagination
* @author Adnan Zaki
* @type Libraries
* @version 2.3.0
* @version 2.3.0-alpha.4
* @url https://wolestech.com
*/

Expand Down

0 comments on commit 8e0728d

Please sign in to comment.