@opendesign-plus-test/components 0.0.1-rc.38 → 0.0.1-rc.40

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.
@@ -6265,7 +6265,7 @@ const LT = { name: "components-icon-header-menu", render: IT }, OT = { class: "h
6265
6265
  },
6266
6266
  setup(s) {
6267
6267
  s1((se) => ({
6268
- v6201327d: P.value
6268
+ b4820f16: P.value
6269
6269
  }));
6270
6270
  const e = s, { t, locale: i, meetingTabs: n, getConfig: r } = yn(), a = Ve(() => i.value === ku.EN), o = le(""), u = le([]), c = le([]), m = le([]), g = le([]), E = le([]), b = le([]), S = le([]), _ = le(Ke.ALL), A = Ve(() => {
6271
6271
  let se = n.value;
@@ -6296,7 +6296,7 @@ const LT = { name: "components-icon-header-menu", render: IT }, OT = { class: "h
6296
6296
  } else
6297
6297
  g.value = [];
6298
6298
  }, x = async (se) => {
6299
- e.getDateListRequest && e.getDateListRequest(se).then((oe) => {
6299
+ e.getDateListRequest && e.getDateListRequest(se, z.value).then((oe) => {
6300
6300
  u.value = oe;
6301
6301
  }), e.getEventsDatesRequest && e.getEventsDatesRequest(se).then((oe) => {
6302
6302
  E.value = oe;
@@ -6363,7 +6363,7 @@ const LT = { name: "components-icon-header-menu", render: IT }, OT = { class: "h
6363
6363
  D({
6364
6364
  date: G.value,
6365
6365
  type: _.value
6366
- });
6366
+ }), x(G.value);
6367
6367
  });
6368
6368
  }, Y = (se) => se.replace(/^0+(?=\d)/, ""), j = (se) => {
6369
6369
  new MutationObserver(function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendesign-plus-test/components",
3
- "version": "0.0.1-rc.38",
3
+ "version": "0.0.1-rc.40",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -32,8 +32,8 @@
32
32
  "dayjs": "^1.11.13",
33
33
  "video.js": "^8.23.7",
34
34
  "vue-dompurify-html": "^3.1.2",
35
- "@opendesign-plus/composables": "0.0.1-rc.6",
36
- "@opendesign-plus/styles": "0.0.1-rc.2"
35
+ "@opendesign-plus/styles": "0.0.1-rc.2",
36
+ "@opendesign-plus/composables": "0.0.1-rc.6"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@vitejs/plugin-vue": "^5.1.0",
@@ -100,7 +100,7 @@ const getActivityData = async (date) => {
100
100
 
101
101
  const getDateList = async (date) => {
102
102
  if (props.getDateListRequest) {
103
- props.getDateListRequest(date).then(res => {
103
+ props.getDateListRequest(date, group.value).then(res => {
104
104
  dateList.value = res;
105
105
  });
106
106
  }
@@ -208,6 +208,7 @@ const changeGroup = () => {
208
208
  date: currentDay.value,
209
209
  type: tabType.value,
210
210
  });
211
+ getDateList(currentDay.value);
211
212
  });
212
213
  };
213
214