@cloudtower/eagle 0.32.35 → 0.32.37

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.
@@ -10,6 +10,7 @@ export type ModalType<TProps> = TProps extends void ? {
10
10
  component: React.FC<TProps & CloseCb>;
11
11
  props: TProps & {
12
12
  onClose?: () => void;
13
+ closeAllModal?: () => void;
13
14
  };
14
15
  };
15
16
  export type ModalState = {
@@ -3,6 +3,14 @@ import { Meta } from "@storybook/react";
3
3
  import React from "react";
4
4
  declare const meta: Meta<typeof I18nNameTag>;
5
5
  export default meta;
6
+ /**
7
+ *
8
+ * 请注意,由于 I18nNameTag 存在 typo, 使用 I18nNameTag 的词条使用的 html tag index 都需要从 1 开始用起
9
+ *
10
+ * 例如: "delete_alert_group_policy_desc": "确认要删除通知聚合策略 <1>{name}</1> 吗?",
11
+ *
12
+ * slack: https://smartx1.slack.com/archives/GD3UU318A/p1700202217700279
13
+ */
6
14
  export declare const Default: {
7
15
  name: string;
8
16
  render: ({ name }: {