@ledvance/group-ui-biz-bundle 1.0.101 → 1.0.102

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.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/group-ui-biz-bundle",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.101",
7
+ "version": "1.0.102",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -14,7 +14,7 @@ import {Utils, Dialog} from "tuya-panel-kit";
14
14
  import ItemCard from "./ItemCard";
15
15
  import InfoText from "@ledvance/base/src/components/InfoText";
16
16
  import ThemeType from '@ledvance/base/src/config/themeType'
17
- import { showDialog } from "@ledvance/base/src/utils/common";
17
+ import {isConflictTask, showDialog} from "@ledvance/base/src/utils/common";
18
18
 
19
19
  const {convertX: cx, topBarHeight} = Utils.RatioUtils;
20
20
  const { withTheme } = Utils.ThemeUtils
@@ -150,9 +150,9 @@ const FixedTimeForPlugPage = (props: { theme?: ThemeType}) => {
150
150
  subTitle: I18n.getLang('cancel_dialog_delete_item_fixedtimecycle_description'),
151
151
  onConfirm: async (_, {close}) => {
152
152
  close()
153
- state.loading = true
153
+ state.loading = true
154
154
  await onPost('del', item)
155
- state.loading = false
155
+ state.loading = false
156
156
  }
157
157
  })
158
158
  }}