profinansy-ui-lib 3.1.22 → 3.1.24

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.
@@ -0,0 +1,3 @@
1
+ import { ICounter } from './Counter.typed';
2
+ declare const Counter: ({ number, type }: ICounter) => JSX.Element;
3
+ export { Counter };
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: ({ number, type }: import("./Counter.typed").ICounter) => JSX.Element;
4
+ tags: string[];
5
+ parameters: {
6
+ design: {
7
+ type: string;
8
+ url: string;
9
+ };
10
+ };
11
+ };
12
+ export default _default;
13
+ export declare const Counter: () => JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { TCounterType } from './Counter.typed';
2
+ export declare const Wrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
3
+ type: TCounterType;
4
+ }, never>;
@@ -0,0 +1,7 @@
1
+ export type TCounterType = 'notification' | 'brand' | 'neutral';
2
+ export interface ICounter {
3
+ /**Число, которое будет отображаться внутри */
4
+ number: number;
5
+ /**Тип counter */
6
+ type?: TCounterType;
7
+ }
@@ -0,0 +1 @@
1
+ export { Counter } from './Counter';
@@ -1,3 +1,3 @@
1
1
  import { TTypographyVariant } from './Typography.typed';
2
- export declare const typographyVariants: readonly ["header1-Bold", "header2-ExtraBold", "header2-Bold", "header3-Bold", "header3-SemiBold", "header4-Bold", "header4-SemiBold", "header5-Bold", "header5-SemiBold", "header6-Bold", "header6-SemiBold", "paragraph-Regular", "paragraph-Medium", "text-Regular", "text-Medium", "text-Bold", "description-Regular", "description-Medium", "description-SemiBold", "description-Bold", "caption-Medium", "caption-SemiBold", "caption-Bold", "caption2-Medium", "caption2-SemiBold", "caption2-Bold", "tag-Medium1", "tag-Medium2", "tag-Medium3", "controls-Regular", "controls-Medium", "controls-SemiBold"];
2
+ export declare const typographyVariants: readonly ["header1-Bold", "header2-ExtraBold", "header2-Bold", "header3-Bold", "header3-SemiBold", "header4-Bold", "header4-SemiBold", "header5-Bold", "header5-SemiBold", "header6-Bold", "header6-SemiBold", "paragraph-Regular", "paragraph-Medium", "text-Regular", "text-Medium", "text-Bold", "description-Regular", "description-Medium", "description-SemiBold", "description-Bold", "caption-Medium", "caption-SemiBold", "caption-Bold", "caption2-Medium", "caption2-SemiBold", "caption2-Bold", "tag-Medium11", "tag-Medium10", "tag-Medium9", "controls-Regular", "controls-Medium", "controls-SemiBold"];
3
3
  export declare const getTypographyParameters: (variant: TTypographyVariant) => number[];
@@ -0,0 +1,4 @@
1
+ export declare const AnimationFunctions: {
2
+ animation_1: string;
3
+ animation_2: string;
4
+ };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ title: string;
3
+ };
4
+ export default _default;
5
+ export declare const Animations: () => JSX.Element;
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ import { useHidingFromApp } from './hooks/useHiddingFromApp';
6
6
  import { useHidingChat } from './hooks/useHidingChat';
7
7
  import { useGetHeaderHeight, useHeaderHeightListener } from './hooks/useHeaderHeight';
8
8
  import { Alert } from './components/uikit/Alert';
9
+ import { Counter } from './components/uikit/Counter';
9
10
  import { Checkbox } from './components/uikit/Checkbox';
10
11
  import { Radio } from './components/uikit/Radio';
11
12
  import { Portal } from './components/uikit/Portal';
@@ -40,4 +41,5 @@ import { ThemeProvider, useMode } from './theme/ThemeProvider';
40
41
  import eventBus from './utils/eventBus';
41
42
  import { BusEvent } from './utils/eventBus/events';
42
43
  import { INSTRUMENTS_TYPES } from './hooks/useSearchInstruments';
43
- export { INSTRUMENTS_TYPES, eventBus, BusEvent, Footer, Header, SideMenu, Alert, Checkbox, Radio, Portal, Loader, Button, TextButton, RegexPattern, Input, Textarea, ErrorText, Avatar, Tooltip, Typography, DefaultTooltip, Modal, SideModal, CircleButton, ArrowButton, Tabs, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, Switch, Spinner, Skeleton, TabListCell, palette, ThemeProvider, useMode, useHidingChat, useHidingFromApp, useGetHeaderHeight, useHeaderHeightListener, LayoutSideMenu };
44
+ import { AnimationFunctions } from './constants/animation/animation';
45
+ export { AnimationFunctions, INSTRUMENTS_TYPES, eventBus, BusEvent, Footer, Header, SideMenu, Alert, Counter, Checkbox, Radio, Portal, Loader, Button, TextButton, RegexPattern, Input, Textarea, ErrorText, Avatar, Tooltip, Typography, DefaultTooltip, Modal, SideModal, CircleButton, ArrowButton, Tabs, HiddenText, PasswordInput, Dropdown, ModalMobile, Popup, IPopup, FieldRow, Card, Switch, Spinner, Skeleton, TabListCell, palette, ThemeProvider, useMode, useHidingChat, useHidingFromApp, useGetHeaderHeight, useHeaderHeightListener, LayoutSideMenu };