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/dist/plain-design.commonjs.min.js +1 -1
- package/dist/plain-design.min.js +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
- package/src/packages/components/PageThemeUtils/index.tsx +2 -0
- package/src/packages/components/ThemePrimaryColors/index.ts +5 -0
- package/src/packages/components/createProvider/index.ts +5 -0
- package/src/packages/components/nextPopupId/index.ts +5 -0
- package/src/packages/components/usePopupManager/index.ts +5 -0
- package/src/packages/components/usePopupTrigger/index.tsx +5 -0
- package/src/packages/components/useReferenceTrigger/index.tsx +5 -0
- package/src/packages/components/useWatchAutoClear/index.ts +5 -0
- package/src/packages/entry.tsx +26 -1
package/package.json
CHANGED
package/src/packages/entry.tsx
CHANGED
@@ -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
|
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);
|