Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
fxy060608 committed Apr 30, 2024
1 parent f56f519 commit 45bae5a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions packages/uni-h5/dist-x/uni-h5.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6555,7 +6555,7 @@ const Refresher = /* @__PURE__ */ defineBuiltInComponent({
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
}
},
setup(props2, {
Expand Down Expand Up @@ -6697,7 +6697,7 @@ const props$g = {
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
},
refresherTriggered: {
type: [Boolean, String],
Expand Down Expand Up @@ -8359,7 +8359,7 @@ const props$a = {
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
},
refresherTriggered: {
type: [Boolean, String],
Expand Down
8 changes: 4 additions & 4 deletions packages/uni-h5/dist-x/uni-h5.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -13976,7 +13976,7 @@ const Refresher = /* @__PURE__ */ defineBuiltInComponent({
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
}
},
setup(props2, {
Expand Down Expand Up @@ -14119,7 +14119,7 @@ const props$n = {
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
},
refresherTriggered: {
type: [Boolean, String],
Expand Down Expand Up @@ -16212,7 +16212,7 @@ const props$h = {
},
refresherBackground: {
type: String,
default: "#fff"
default: "transparent"
},
refresherTriggered: {
type: [Boolean, String],
Expand Down Expand Up @@ -27569,7 +27569,7 @@ const PageBody = /* @__PURE__ */ defineSystemComponent({
setup(props2, ctx) {
const pageMeta = __UNI_FEATURE_PULL_DOWN_REFRESH__ && usePageMeta();
const refreshRef = __UNI_FEATURE_PULL_DOWN_REFRESH__ && ref(null);
const _pageRefresh = __UNI_FEATURE_PULL_DOWN_REFRESH__ ? usePageRefresh(refreshRef) : null;
const _pageRefresh = __UNI_FEATURE_PULL_DOWN_REFRESH__ && (pageMeta.enablePullDownRefresh || true) ? usePageRefresh(refreshRef) : null;
const pageRefresh = ref(null);
watch(() => {
return pageMeta.enablePullDownRefresh;
Expand Down
2 changes: 1 addition & 1 deletion packages/uni-h5/dist/uni-h5.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -25737,7 +25737,7 @@ const PageBody = /* @__PURE__ */ defineSystemComponent({
setup(props2, ctx) {
const pageMeta = __UNI_FEATURE_PULL_DOWN_REFRESH__ && usePageMeta();
const refreshRef = __UNI_FEATURE_PULL_DOWN_REFRESH__ && ref(null);
const _pageRefresh = __UNI_FEATURE_PULL_DOWN_REFRESH__ ? usePageRefresh(refreshRef) : null;
const _pageRefresh = __UNI_FEATURE_PULL_DOWN_REFRESH__ && (pageMeta.enablePullDownRefresh || false) ? usePageRefresh(refreshRef) : null;
const pageRefresh = ref(null);
watch(() => {
return pageMeta.enablePullDownRefresh;
Expand Down

0 comments on commit 45bae5a

Please sign in to comment.