jobsys-explore 4.2.7 → 4.2.8

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.
@@ -0,0 +1,5 @@
1
+ ---
2
+ "jobsys-explore": patch
3
+ ---
4
+
5
+ page
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # jobsys-explore
2
2
 
3
+ ## 4.2.8
4
+
5
+ ### Patch Changes
6
+
7
+ - select
8
+ - pagination add pullrefresh
9
+ - d
10
+ - page
11
+ - useFormFormat
12
+ - rate default null
13
+ - use Dayjs
14
+ - select
15
+
3
16
  ## 4.2.7
4
17
 
5
18
  ### Patch Changes
@@ -279,7 +279,7 @@ export default defineComponent({
279
279
  if (props.pullRefresh) {
280
280
  const pullRefreshObj = isObject(props.pullRefresh) ? props.pullRefresh : {}
281
281
  return (
282
- <PullRefresh v-model={state.refreshLoading} onRefresh={onPullRefresh} {...pullRefreshObj}>
282
+ <PullRefresh v-model={state.refreshLoading} class={`ex-pagination__refresh`} onRefresh={onPullRefresh} {...pullRefreshObj}>
283
283
  {() => paginationElem()}
284
284
  </PullRefresh>
285
285
  )
@@ -0,0 +1,3 @@
1
+ .ex-pagination__refresh {
2
+ overflow: auto;
3
+ }