@web-fuse/wf-components 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Display/Card/DarkCard.Title.d.ts +0 -1
- package/dist/Display/Card/DarkCard.d.ts +2 -2
- package/dist/Display/Card/LightCard.Title.d.ts +0 -1
- package/dist/Display/Card/LightCard.d.ts +2 -2
- package/dist/Display/Card/index.d.ts +4 -4
- package/dist/Display/CodeBlock/CodeBlockCopy.d.ts +2 -2
- package/dist/Display/CodeBlock/CodeHeader.d.ts +2 -1
- package/dist/Display/CodeBlock/index.d.ts +2 -3
- package/dist/Display/CodeBlock/languages.d.ts +10 -11
- package/dist/Display/Collapse/Collapse.d.ts +3 -3
- package/dist/Display/Collapse/CollapseBase.d.ts +8 -9
- package/dist/Display/Collapse/CollapseContent.d.ts +4 -5
- package/dist/Display/Collapse/index.d.ts +7 -6
- package/dist/Display/Selector/SelectorItem.d.ts +2 -2
- package/dist/Display/Selector/SelectorSubItem.d.ts +2 -2
- package/dist/Display/Selector/index.d.ts +2 -1
- package/dist/Display/Selector/style.d.ts +8 -11
- package/dist/Display/index.d.ts +7 -7
- package/dist/Form/Buttons.d.ts +14 -29
- package/dist/Form/Form/Form.Item.d.ts +3 -3
- package/dist/Form/Form/Form.d.ts +2 -2
- package/dist/Form/Form/index.d.ts +4 -3
- package/dist/Form/HoverLabel.d.ts +3 -2
- package/dist/Form/Input/Input.Password.d.ts +4 -4
- package/dist/Form/Input/Input.Search.d.ts +5 -5
- package/dist/Form/Input/Input.TextArea.d.ts +5 -5
- package/dist/Form/Input/Input.d.ts +11 -11
- package/dist/Form/Input/index.d.ts +6 -5
- package/dist/Form/index.d.ts +7 -7
- package/dist/Layout/Main/MainSelector.d.ts +5 -5
- package/dist/Layout/Main/MainSettings.d.ts +9 -9
- package/dist/Layout/Main/index.d.ts +3 -3
- package/dist/Layout/Navbar/NavbarDropdown.d.ts +2 -2
- package/dist/Layout/Navbar/index.d.ts +1 -2
- package/dist/Layout/Navbar/style.d.ts +4 -5
- package/dist/Layout/index.d.ts +5 -5
- package/dist/Oauth/ErrorBoundary.d.ts +0 -1
- package/dist/Oauth/LoginContainer.d.ts +4 -3
- package/dist/Oauth/PageBackground.d.ts +2 -1
- package/dist/Oauth/index.d.ts +5 -5
- package/dist/index.cjs.js +118 -110
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.es.js +6211 -6098
- package/dist/index.es.js.map +1 -1
- package/dist/util/index.d.ts +2 -2
- package/dist/util/useMessageApi.d.ts +3 -3
- package/dist/util/wfDarkAlgorithm.d.ts +2 -1
- package/package.json +1 -1
package/dist/Layout/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
export { default as Navbar } from
|
2
|
-
export type { NavbarProps, NavbarRenderer } from
|
3
|
-
export { default as MainLayout } from
|
4
|
-
export type { MainProps } from
|
5
|
-
export type { MainSelectorProps } from
|
1
|
+
export { default as Navbar } from './Navbar';
|
2
|
+
export type { NavbarProps, NavbarRenderer } from './Navbar';
|
3
|
+
export { default as MainLayout } from './Main';
|
4
|
+
export type { MainProps } from './Main';
|
5
|
+
export type { MainSelectorProps } from './Main/MainSelector';
|
@@ -1,6 +1,7 @@
|
|
1
|
-
import
|
2
|
-
import
|
3
|
-
import
|
1
|
+
import { ParagraphProps } from 'antd/es/typography/Paragraph';
|
2
|
+
import { TitleProps } from 'antd/es/typography/Title';
|
3
|
+
import { PropsWithChildren } from 'react';
|
4
|
+
|
4
5
|
export type LoginContainer = React.FC<PropsWithChildren> & {
|
5
6
|
Header: React.FC;
|
6
7
|
Title: React.FC<TitleProps>;
|
package/dist/Oauth/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
export { default as LoginErrorBoundary } from
|
2
|
-
export type { LoginErrorBoundaryProps } from
|
3
|
-
export { default as LoginContainer } from
|
4
|
-
export { default as LoginPageBackground } from
|
5
|
-
export type { LoginPageBackgroundProps } from
|
1
|
+
export { default as LoginErrorBoundary } from './ErrorBoundary';
|
2
|
+
export type { LoginErrorBoundaryProps } from './ErrorBoundary';
|
3
|
+
export { default as LoginContainer } from './LoginContainer';
|
4
|
+
export { default as LoginPageBackground } from './PageBackground';
|
5
|
+
export type { LoginPageBackgroundProps } from './PageBackground';
|