@modul/mbui 1.2.0-beta-dev-d5ef6f79 → 1.2.0-beta-dev-ed4b4a86
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/dist/LandingPage/WhiteBusiness/components/Hero.d.ts +2 -3
- package/dist/LandingPage/WhiteBusiness/components/PageNavbar.d.ts +1 -1
- package/dist/LandingPage/WhiteBusiness/components/index.js +7 -5
- package/dist/LandingPage/index.js +7 -5
- package/dist/Select/index.js +7 -5
- package/dist/hooks/useIntersectionObserver.d.ts +14 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +7 -5
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import React
|
1
|
+
import React from 'react';
|
2
2
|
import { TStatus } from './ProgressBarWidget';
|
3
3
|
import { TServiceStatus } from './types';
|
4
4
|
interface IProps {
|
@@ -8,12 +8,11 @@ interface IProps {
|
|
8
8
|
date: string;
|
9
9
|
suspendDate: string | null;
|
10
10
|
serviceStatus: TServiceStatus;
|
11
|
-
ref?: React.Ref<HTMLElement>;
|
12
11
|
}
|
13
12
|
export declare const progressColor: {
|
14
13
|
Ok: string;
|
15
14
|
Norm: string;
|
16
15
|
Fiasko: string;
|
17
16
|
};
|
18
|
-
export declare const Hero:
|
17
|
+
export declare const Hero: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLElement>>;
|
19
18
|
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
2
|
-
export declare const PageNavbarCSS = "\n\tfixed\n\ttop-0\n\tcontainer\n\tflex\n\tjustify-between\n\titems-center\n\tpx-[--page-content-padd-x]\n\tpt-[env(safe-area-inset-top)]\n\th-[--page-header-height]\n\tw-full\n";
|
2
|
+
export declare const PageNavbarCSS = "\n\tfixed\n\ttop-0\n\tcontainer\n\tflex\n\tjustify-between\n\titems-center\n\tpx-[--page-content-padd-x]\n\tpt-[env(safe-area-inset-top)]\n\th-[--page-header-height]\n\tw-full\n\tz-10\n";
|
3
3
|
interface IProps {
|
4
4
|
className?: string;
|
5
5
|
children: ReactNode;
|