ui-beyable 1.0.8 → 1.0.10
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/README.md +5 -0
- package/lib/cjs/components/App/App.d.ts +1 -1
- package/lib/cjs/components/App/types.d.ts +2 -0
- package/lib/cjs/components/Mask/Mask.d.ts +4 -0
- package/lib/cjs/components/Mask/types.d.ts +7 -0
- package/lib/cjs/components/Section/Section.d.ts +4 -0
- package/lib/cjs/components/Section/types.d.ts +6 -0
- package/lib/cjs/components/Spinner/Spinner.d.ts +6 -0
- package/lib/cjs/components/Spinner/types.d.ts +6 -0
- package/lib/cjs/index.d.ts +9 -14
- package/lib/cjs/index.js +180 -87
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/components/App/App.d.ts +1 -1
- package/lib/esm/components/App/types.d.ts +2 -0
- package/lib/esm/components/Mask/Mask.d.ts +4 -0
- package/lib/esm/components/Mask/types.d.ts +7 -0
- package/lib/esm/components/Section/Section.d.ts +4 -0
- package/lib/esm/components/Section/types.d.ts +6 -0
- package/lib/esm/components/Spinner/Spinner.d.ts +6 -0
- package/lib/esm/components/Spinner/types.d.ts +6 -0
- package/lib/esm/index.d.ts +9 -14
- package/lib/esm/index.js +178 -88
- package/lib/esm/index.js.map +1 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
import { IAppRoot, IAppHeader, IAppLinkWrapper, IAppLogo } from './types';
|
|
3
3
|
declare function AppRoot({ children }: IAppRoot): JSX.Element;
|
|
4
4
|
declare function AppHeader({ logo, primaryLinks, secondaryLinks }: IAppHeader): JSX.Element;
|
|
5
|
-
declare function AppLinkWrapper({ children, isActive }: IAppLinkWrapper): JSX.Element;
|
|
5
|
+
declare function AppLinkWrapper({ children, isActive, isTab, theme }: IAppLinkWrapper): JSX.Element;
|
|
6
6
|
declare function AppLogo({ name, overlayLink }: IAppLogo): JSX.Element;
|
|
7
7
|
export { AppRoot, AppHeader, AppLinkWrapper, AppLogo };
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
import { AppRoot, AppHeader, AppLinkWrapper, AppLogo } from './components/App/App';
|
|
2
2
|
import Btn from './components/Button/Btn';
|
|
3
|
+
import Collapse from './components/Collapse/Collapse';
|
|
4
|
+
import Mask from './components/Mask/Mask';
|
|
3
5
|
import Modal from './components/Modal/Modal';
|
|
4
6
|
import { Panel, PanelClose, PanelHeader, PanelBody } from './components/Panel/Panel';
|
|
5
7
|
import Portal from './components/Portal/BYportal';
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
colors: {
|
|
14
|
-
readonly red: string;
|
|
15
|
-
readonly blue: string;
|
|
16
|
-
readonly green: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export { Theme, AppRoot, AppHeader, AppLinkWrapper, AppLogo, Btn, Modal, Panel, PanelClose, PanelHeader, PanelBody, Portal, Collapse };
|
|
8
|
+
import Section from './components/Section/Section';
|
|
9
|
+
import Spinner from './components/Spinner/Spinner';
|
|
10
|
+
declare const Theme: any;
|
|
11
|
+
export { Theme, AppRoot, AppHeader, AppLinkWrapper, AppLogo, Btn, // Not OK
|
|
12
|
+
Collapse, // Not OK
|
|
13
|
+
Mask, Modal, // Not OK
|
|
14
|
+
Panel, PanelClose, PanelHeader, PanelBody, Portal, Section, Spinner };
|