@web-fuse/wf-components 1.0.7 → 1.0.8

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.
Files changed (49) hide show
  1. package/dist/Display/Card/DarkCard.Title.d.ts +0 -1
  2. package/dist/Display/Card/DarkCard.d.ts +2 -2
  3. package/dist/Display/Card/LightCard.Title.d.ts +0 -1
  4. package/dist/Display/Card/LightCard.d.ts +2 -2
  5. package/dist/Display/Card/index.d.ts +4 -4
  6. package/dist/Display/CodeBlock/CodeBlockCopy.d.ts +2 -2
  7. package/dist/Display/CodeBlock/CodeHeader.d.ts +2 -1
  8. package/dist/Display/CodeBlock/index.d.ts +2 -3
  9. package/dist/Display/CodeBlock/languages.d.ts +10 -11
  10. package/dist/Display/Collapse/Collapse.d.ts +3 -3
  11. package/dist/Display/Collapse/CollapseBase.d.ts +8 -9
  12. package/dist/Display/Collapse/CollapseContent.d.ts +4 -5
  13. package/dist/Display/Collapse/index.d.ts +7 -6
  14. package/dist/Display/Selector/SelectorItem.d.ts +2 -2
  15. package/dist/Display/Selector/SelectorSubItem.d.ts +2 -2
  16. package/dist/Display/Selector/index.d.ts +2 -1
  17. package/dist/Display/Selector/style.d.ts +8 -11
  18. package/dist/Display/index.d.ts +7 -7
  19. package/dist/Form/Buttons.d.ts +14 -29
  20. package/dist/Form/Form/Form.Item.d.ts +3 -3
  21. package/dist/Form/Form/Form.d.ts +2 -2
  22. package/dist/Form/Form/index.d.ts +4 -3
  23. package/dist/Form/HoverLabel.d.ts +3 -2
  24. package/dist/Form/Input/Input.Password.d.ts +4 -4
  25. package/dist/Form/Input/Input.Search.d.ts +5 -5
  26. package/dist/Form/Input/Input.TextArea.d.ts +5 -5
  27. package/dist/Form/Input/Input.d.ts +11 -11
  28. package/dist/Form/Input/index.d.ts +6 -5
  29. package/dist/Form/index.d.ts +7 -7
  30. package/dist/Layout/Main/MainSelector.d.ts +5 -5
  31. package/dist/Layout/Main/MainSettings.d.ts +9 -9
  32. package/dist/Layout/Main/index.d.ts +3 -3
  33. package/dist/Layout/Navbar/NavbarDropdown.d.ts +2 -2
  34. package/dist/Layout/Navbar/index.d.ts +1 -2
  35. package/dist/Layout/Navbar/style.d.ts +4 -5
  36. package/dist/Layout/index.d.ts +5 -5
  37. package/dist/Oauth/ErrorBoundary.d.ts +0 -1
  38. package/dist/Oauth/LoginContainer.d.ts +4 -3
  39. package/dist/Oauth/PageBackground.d.ts +2 -1
  40. package/dist/Oauth/index.d.ts +5 -5
  41. package/dist/index.cjs.js +118 -110
  42. package/dist/index.cjs.js.map +1 -1
  43. package/dist/index.d.ts +5 -5
  44. package/dist/index.es.js +6211 -6098
  45. package/dist/index.es.js.map +1 -1
  46. package/dist/util/index.d.ts +2 -2
  47. package/dist/util/useMessageApi.d.ts +3 -3
  48. package/dist/util/wfDarkAlgorithm.d.ts +2 -1
  49. package/package.json +1 -1
@@ -1,5 +1,5 @@
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
+ 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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export interface LoginError {
3
2
  message: string;
4
3
  error_description?: React.ReactNode;
@@ -1,6 +1,7 @@
1
- import type { ParagraphProps } from "antd/es/typography/Paragraph";
2
- import type { TitleProps } from "antd/es/typography/Title";
3
- import type { PropsWithChildren } from "react";
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>;
@@ -1,4 +1,5 @@
1
- import { PropsWithChildren } from "react";
1
+ import { PropsWithChildren } from 'react';
2
+
2
3
  export type LoginPageBackgroundProps = {
3
4
  width?: React.CSSProperties["width"];
4
5
  height?: React.CSSProperties["height"];
@@ -1,5 +1,5 @@
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";
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';