ui-beyable 1.0.6 → 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.
- package/lib/cjs/components/App/App.d.ts +7 -0
- package/lib/cjs/components/App/types.d.ts +20 -0
- package/lib/cjs/components/AppHeader/AppHeader.d.ts +4 -0
- package/lib/cjs/components/AppHeader/types.d.ts +14 -0
- package/lib/cjs/components/Panel/Panel.d.ts +6 -4
- package/lib/cjs/components/Panel/types.d.ts +24 -2
- package/lib/cjs/index.css +1448 -2
- package/lib/cjs/index.d.ts +15 -3
- package/lib/cjs/index.js +136 -17
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/components/App/App.d.ts +7 -0
- package/lib/esm/components/App/types.d.ts +20 -0
- package/lib/esm/components/AppHeader/AppHeader.d.ts +4 -0
- package/lib/esm/components/AppHeader/types.d.ts +14 -0
- package/lib/esm/components/Panel/Panel.d.ts +6 -4
- package/lib/esm/components/Panel/types.d.ts +24 -2
- package/lib/esm/index.d.ts +15 -3
- package/lib/esm/index.js +130 -18
- package/lib/esm/index.js.map +1 -1
- package/package.json +2 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
|
+
import { AppRoot, AppHeader, AppLinkWrapper, AppLogo } from './components/App/App';
|
|
1
2
|
import Btn from './components/Button/Btn';
|
|
2
3
|
import Modal from './components/Modal/Modal';
|
|
3
|
-
import { Panel, PanelClose } from './components/Panel/Panel';
|
|
4
|
+
import { Panel, PanelClose, PanelHeader, PanelBody } from './components/Panel/Panel';
|
|
4
5
|
import Portal from './components/Portal/BYportal';
|
|
5
6
|
import Collapse from './components/Collapse/Collapse';
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
declare const Theme: {
|
|
8
|
+
typo: {
|
|
9
|
+
readonly h1: string;
|
|
10
|
+
readonly h2: string;
|
|
11
|
+
readonly h3: string;
|
|
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 };
|