rbro-tat-uds 1.2.0 → 1.2.1
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/components/GraficPensii/GraficPensii.d.ts +13 -0
- package/dist/components/GraficPensii/index.d.ts +1 -0
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +5 -0
- package/dist/components/Radio/Radio.d.ts +11 -0
- package/dist/components/Radio/index.d.ts +1 -0
- package/dist/components/ShortcutCard/ShortcutCard.d.ts +8 -0
- package/dist/components/Slider/Slider.d.ts +3 -3
- package/dist/components/index.d.ts +2 -0
- package/dist/index.cjs.js +312 -286
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2135 -1759
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -0,0 +1,13 @@
|
|
1
|
+
import React from "react";
|
2
|
+
type GraficPensiiProps = {
|
3
|
+
max?: number;
|
4
|
+
limit_min?: number;
|
5
|
+
limit_max?: number;
|
6
|
+
value?: number;
|
7
|
+
currency?: string;
|
8
|
+
label_top?: string;
|
9
|
+
label_limit_min?: string;
|
10
|
+
label_limit_max?: string;
|
11
|
+
};
|
12
|
+
declare const GraficPensii: React.FC<GraficPensiiProps>;
|
13
|
+
export default GraficPensii;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as GraficPensii } from "./GraficPensii";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part";
|
2
|
+
export type IconsListProp = "exit" | "home" | "go-right" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person" | "clear_filled" | "doc-sent" | "man-butterfly" | "satellite-2" | "warning_filled" | "warning-tr-filled" | "minus" | "add" | "doc_edit" | "calendar" | "branch" | "invoice_seal" | "money-bag-incoming" | "money-bag-outlined" | "forward" | "money-investment" | "libra" | "offer" | "man-outlined" | "retry-1" | "doc-error" | "to-person" | "clear-ring-filled" | "clear-ring-outlined" | "clear-ring" | "mail" | "mobile" | "rejected" | "new_tab" | "money-return" | "wallet-2" | "back" | "close" | "card" | "calculator-currency-3" | "inn-1" | "money" | "down-ring" | "up-ring" | "card-heart" | "premium" | "flag" | "document" | "up" | "plus" | "go-left" | "select-open-down" | "search" | "checkmark-part" | "doc-new" | "tag-price-4" | "cube" | "chat-ask-raif" | "code-qr";
|
3
3
|
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
|
4
4
|
icon: IconsListProp;
|
5
5
|
size?: 8 | 12 | 14 | 16 | 18 | 20 | 24 | 32 | 40;
|
@@ -32,6 +32,7 @@ declare const IconsList: {
|
|
32
32
|
"man-outlined": string;
|
33
33
|
"retry-1": string;
|
34
34
|
"doc-error": string;
|
35
|
+
"doc-new": string;
|
35
36
|
"clear-ring": string;
|
36
37
|
"clear-ring-filled": string;
|
37
38
|
"clear-ring-outlined": string;
|
@@ -59,5 +60,9 @@ declare const IconsList: {
|
|
59
60
|
"select-open-down": string;
|
60
61
|
search: string;
|
61
62
|
"checkmark-part": string;
|
63
|
+
"tag-price-4": string;
|
64
|
+
cube: string;
|
65
|
+
"chat-ask-raif": string;
|
66
|
+
"code-qr": string;
|
62
67
|
};
|
63
68
|
export default IconsList;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from "react";
|
2
|
+
export interface RadioProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
|
3
|
+
size?: "small" | "medium" | "large";
|
4
|
+
name?: string;
|
5
|
+
checked?: boolean;
|
6
|
+
disabled?: boolean;
|
7
|
+
id?: string;
|
8
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
9
|
+
}
|
10
|
+
declare const Radio: React.FC<RadioProps>;
|
11
|
+
export default Radio;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Radio } from './Radio';
|
@@ -1,9 +1,17 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
|
+
import { IconsListProp } from "../Icon/Icon.types";
|
2
3
|
export interface ShortcutCardProps extends HTMLAttributes<HTMLDivElement> {
|
4
|
+
filled?: boolean;
|
3
5
|
title?: string;
|
6
|
+
titleFontSize?: 16 | 20;
|
7
|
+
titleFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
4
8
|
text?: string;
|
9
|
+
textFontSize?: 14 | 16;
|
10
|
+
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
11
|
+
icon?: IconsListProp;
|
5
12
|
buttonVariant?: "primary" | "secondary" | "secondaryOutlined" | "tertiary";
|
6
13
|
buttonLabel?: string;
|
14
|
+
buttonGrow?: boolean;
|
7
15
|
disabled?: boolean;
|
8
16
|
buttonOnClick?(): void;
|
9
17
|
}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import React, {
|
2
|
-
export interface SliderProps extends
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface SliderProps extends HTMLAttributes<HTMLDivElement> {
|
3
3
|
id?: string;
|
4
4
|
name?: string;
|
5
5
|
value?: number;
|
6
|
-
setValue
|
6
|
+
setValue?: (newValue: number) => void;
|
7
7
|
min?: number;
|
8
8
|
max?: number;
|
9
9
|
showSteppers?: boolean;
|