plain-design 1.0.0-beta.5 → 1.0.0-beta.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plain-design",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "",
5
5
  "main": "dist/plain-design.min.js",
6
6
  "module": "dist/plain-design.commonjs.min.js",
@@ -123,3 +123,5 @@ export const ThemePrimaryColors: Record<string, { label: string, primary: string
123
123
  purple: { label: '酱紫', primary: '#722ed1', },
124
124
  magenta: { label: '洋红', primary: '#eb2f96', },
125
125
  };
126
+
127
+ export default PageThemeUtils;
@@ -0,0 +1,5 @@
1
+ import {ThemePrimaryColors} from "../PageThemeUtils";
2
+
3
+ export default ThemePrimaryColors;
4
+
5
+ export {ThemePrimaryColors};
@@ -0,0 +1,5 @@
1
+ import {createProvider} from "../../utils/createProvider";
2
+
3
+ export {createProvider};
4
+
5
+ export default createProvider;
@@ -0,0 +1,5 @@
1
+ import {nextPopupId} from "../usePopup/utils/popup.utils";
2
+
3
+ export default nextPopupId;
4
+
5
+ export {nextPopupId};
@@ -0,0 +1,5 @@
1
+ import {usePopupManager} from "../usePopup/usePopupManager";
2
+
3
+ export default usePopupManager;
4
+
5
+ export {usePopupManager};
@@ -0,0 +1,5 @@
1
+ import {usePopupTrigger} from '../usePopup/trigger/usePopupTrigger';
2
+
3
+ export default usePopupTrigger;
4
+
5
+ export {usePopupTrigger};
@@ -0,0 +1,5 @@
1
+ import {useReferenceTrigger} from '../usePopup/trigger/useReferenceTrigger';
2
+
3
+ export default useReferenceTrigger;
4
+
5
+ export {useReferenceTrigger};
@@ -0,0 +1,5 @@
1
+ import {useWatchAutoClear} from "../../utils/watchEffectAutoClear";
2
+
3
+ export {useWatchAutoClear};
4
+
5
+ export default useWatchAutoClear;
@@ -1,4 +1,5 @@
1
1
  import {setComponentPrefix} from "plain-design-composition";
2
+ import {createProvider} from "./utils/createProvider";
2
3
 
3
4
  export {Application} from "./components/Application";
4
5
  export type {iApplicationConfiguration} from './components/Application/utils/application.utils';
@@ -85,6 +86,23 @@ export {CascadePanel} from './components/CascadePanel';
85
86
  export {usePopup} from './components/usePopup';
86
87
  export {Popup} from './components/Popup';
87
88
  export {createPopup} from './components/createPopup';
89
+ export type {
90
+ iPopupAlign,
91
+ iPopupAnimation,
92
+ iPopupBoundary,
93
+ iPopupCustomOption,
94
+ iPopupDefaultOption,
95
+ iPopupDirection,
96
+ iPopupManager,
97
+ iPopupOption,
98
+ iPopupPlacement,
99
+ iPopupRects,
100
+ iPopupRefreshBuildParams,
101
+ iPopupRefreshParams,
102
+ iPopupRefs,
103
+ iPopupTrigger,
104
+ iPopupUseOption,
105
+ } from './components/usePopup/utils/popup.utils';
88
106
  export {createScrollUtils} from './components/createScrollUtils';
89
107
  export {useAutoScrollUtils} from './components/useAutoScrollUtils';
90
108
  export {ClientZoom} from './components/ClientZoom';
@@ -162,6 +180,13 @@ export type {
162
180
  iTableOptionCacheRegistryConfig,
163
181
  iTableOptionGetCacheParam
164
182
  } from './components/AutoTable/use/useTableOption.cache.utils';
165
- export {PageThemeUtils, ThemePrimaryColors} from './components/PageThemeUtils';
183
+ export {PageThemeUtils} from './components/PageThemeUtils';
184
+ export {ThemePrimaryColors} from './components/ThemePrimaryColors';
185
+ export {useReferenceTrigger} from './components/useReferenceTrigger';
186
+ export {usePopupTrigger} from './components/usePopupTrigger';
187
+ export {useWatchAutoClear} from './components/useWatchAutoClear';
188
+ export {nextPopupId} from './components/nextPopupId';
189
+ export {createProvider} from './components/createProvider';
190
+ export {usePopupManager} from './components/usePopupManager';
166
191
 
167
192
  setComponentPrefix(globalComponentPrefix);