@snack-uikit/info-block 0.6.6 → 0.6.7-preview-95f36d41.0
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.
|
@@ -6,5 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.InfoBlock = void 0;
|
|
7
7
|
const Footer_1 = require("./Footer");
|
|
8
8
|
const InfoBlock_1 = require("./InfoBlock");
|
|
9
|
+
// eslint-disable-next-line import/export
|
|
9
10
|
exports.InfoBlock = InfoBlock_1.InfoBlock;
|
|
10
11
|
exports.InfoBlock.Footer = Footer_1.Footer;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Info Block",
|
|
7
|
-
"version": "0.6.
|
|
7
|
+
"version": "0.6.7-preview-95f36d41.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@snack-uikit/button": "0.19.5",
|
|
40
40
|
"@snack-uikit/icon-predefined": "0.7.2",
|
|
41
|
-
"@snack-uikit/tooltip": "0.15.
|
|
41
|
+
"@snack-uikit/tooltip": "0.15.3-preview-95f36d41.0",
|
|
42
42
|
"@snack-uikit/typography": "0.8.3",
|
|
43
43
|
"@snack-uikit/utils": "3.6.0",
|
|
44
44
|
"classnames": "2.5.1"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "e866724aaa8b037109a05efa3e188a2c17989aa6"
|
|
47
47
|
}
|
package/src/components/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Footer, FooterProps as FooterComponentProps } from './Footer';
|
|
2
2
|
import { InfoBlock as InfoBlockComponent, InfoBlockProps } from './InfoBlock';
|
|
3
3
|
|
|
4
|
+
// eslint-disable-next-line import/export
|
|
4
5
|
export const InfoBlock = InfoBlockComponent as typeof InfoBlockComponent & {
|
|
5
6
|
Footer: typeof Footer;
|
|
6
7
|
};
|
|
@@ -9,6 +10,7 @@ InfoBlock.Footer = Footer;
|
|
|
9
10
|
|
|
10
11
|
export { type InfoBlockProps };
|
|
11
12
|
|
|
13
|
+
// eslint-disable-next-line import/export
|
|
12
14
|
export namespace InfoBlock {
|
|
13
15
|
export type FooterProps = FooterComponentProps;
|
|
14
16
|
}
|