@cloudtower/eagle 0.0.0-config-rc-3 → 0.0.0-config-rc-7

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.
@@ -1,5 +1,11 @@
1
1
  const EMPTY_FUNCTION = () => {
2
2
  };
3
3
  const Antd5PrefixCls = "antd5";
4
+ const Antd5ComponentPrefixCls = {
5
+ Cascader: `${Antd5PrefixCls}-cascader`,
6
+ Progress: `${Antd5PrefixCls}-progress`,
7
+ Segmented: `${Antd5PrefixCls}-segmented`,
8
+ Menu: `${Antd5PrefixCls}-menu`
9
+ };
4
10
 
5
- export { Antd5PrefixCls, EMPTY_FUNCTION };
11
+ export { Antd5ComponentPrefixCls, Antd5PrefixCls, EMPTY_FUNCTION };
@@ -4,3 +4,9 @@ export declare const EMPTY_OBJECT: {};
4
4
  export declare const EMPTY_COMPONENT: () => null;
5
5
  export declare const DAYJS_I18N_MAP: Record<string, string>;
6
6
  export declare const Antd5PrefixCls = "antd5";
7
+ export declare const Antd5ComponentPrefixCls: {
8
+ Cascader: string;
9
+ Progress: string;
10
+ Segmented: string;
11
+ Menu: string;
12
+ };