rbro-tat-uds 1.0.16 → 1.0.17
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/Checkbox/Checkbox.d.ts +1 -0
- package/dist/components/ConfigurationSaveInfo/ConfigurationSaveInfo.d.ts +1 -1
- package/dist/components/FormField/FormField.d.ts +1 -1
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/IconsList.d.ts +2 -1
- package/dist/components/ObjectiveCard/ObjectiveCard.d.ts +12 -0
- package/dist/components/ObjectiveCard/index.d.ts +1 -0
- package/dist/components/PageMessage/PageMessage.d.ts +10 -0
- package/dist/components/PageMessage/index.d.ts +1 -0
- package/dist/components/PlanulFinanciarTeaser/PlanulFinanciarTeaser.d.ts +6 -0
- package/dist/components/PlanulFinanciarTeaser/index.d.ts +1 -0
- package/dist/components/ProductShortcut/ProductShortcut.d.ts +2 -2
- package/dist/components/Section/Section.d.ts +1 -1
- package/dist/components/Spinner/Spinner.d.ts +8 -0
- package/dist/components/Spinner/index.d.ts +1 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.cjs.js +177 -70
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1299 -1041
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +5 -1
@@ -3,6 +3,7 @@ export interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputE
|
|
3
3
|
size?: "small" | "medium" | "large";
|
4
4
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
5
5
|
checked?: boolean;
|
6
|
+
id?: string;
|
6
7
|
}
|
7
8
|
declare const Checkbox: React.FC<CheckboxProps>;
|
8
9
|
export default Checkbox;
|
@@ -3,7 +3,7 @@ export type ConfigurationSaveInfoProps = {
|
|
3
3
|
configurationId?: string;
|
4
4
|
date?: string;
|
5
5
|
branchName?: string;
|
6
|
-
|
6
|
+
buttonOnClick?(): void;
|
7
7
|
};
|
8
8
|
declare const ConfigurationSaveInfo: React.FC<ConfigurationSaveInfoProps>;
|
9
9
|
export default ConfigurationSaveInfo;
|
@@ -9,7 +9,7 @@ export type FormFieldProps = {
|
|
9
9
|
rightHelperText?: string;
|
10
10
|
helperIntent?: "info" | "success" | "danger";
|
11
11
|
labelFor?: string;
|
12
|
-
|
12
|
+
helpButtonOnClick?(): void;
|
13
13
|
};
|
14
14
|
declare const FormField: React.FC<FormFieldProps>;
|
15
15
|
export default FormField;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
export type IconsListProp = "empty" | "enter" | "home" | "go-right" | "spinner" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark";
|
2
|
+
export type IconsListProp = "empty" | "enter" | "home" | "go-right" | "spinner" | "trash" | "asterix" | "hint" | "info_filled" | "checkmark_filled" | "warning_filled" | "checkmark" | "checkmark_ring" | "remove_person";
|
3
3
|
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, "ref"> & {
|
4
4
|
icon: IconsListProp;
|
5
5
|
size?: 8 | 12 | 14 | 16 | 20 | 24 | 32 | 40;
|
@@ -2,7 +2,6 @@ declare const IconsList: {
|
|
2
2
|
enter: string;
|
3
3
|
home: string;
|
4
4
|
"go-right": string;
|
5
|
-
spinner: string;
|
6
5
|
trash: string;
|
7
6
|
asterix: string;
|
8
7
|
hint: string;
|
@@ -10,5 +9,7 @@ declare const IconsList: {
|
|
10
9
|
checkmark_filled: string;
|
11
10
|
warning_filled: string;
|
12
11
|
checkmark: string;
|
12
|
+
checkmark_ring: string;
|
13
|
+
remove_person: string;
|
13
14
|
};
|
14
15
|
export default IconsList;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from "react";
|
2
|
+
export type ObjectiveCardProps = {
|
3
|
+
text: string;
|
4
|
+
img?: string;
|
5
|
+
selected?: boolean;
|
6
|
+
disabled?: boolean;
|
7
|
+
buttonLabel?: string;
|
8
|
+
buttonOnClick?: () => void;
|
9
|
+
width?: string;
|
10
|
+
};
|
11
|
+
declare const ObjectiveCard: React.FC<ObjectiveCardProps>;
|
12
|
+
export default ObjectiveCard;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ObjectiveCard } from './ObjectiveCard';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import IconsList from "../Icon/IconsList";
|
3
|
+
export type PageMessageProps = {
|
4
|
+
intent?: "default" | "info" | "success" | "warning" | "danger";
|
5
|
+
icon?: keyof typeof IconsList;
|
6
|
+
pillText?: string;
|
7
|
+
children: React.ReactNode;
|
8
|
+
};
|
9
|
+
declare const PageMessage: React.FC<PageMessageProps>;
|
10
|
+
export default PageMessage;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PageMessage } from './PageMessage';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlanulFinanciarTeaser } from './PlanulFinanciarTeaser';
|
@@ -3,9 +3,9 @@ export type ProductShortcutProps = {
|
|
3
3
|
title?: string;
|
4
4
|
text?: string;
|
5
5
|
buttonVariant?: "primary" | "secondary" | "secondaryOutlined" | "tertiary";
|
6
|
-
|
6
|
+
buttonLabel?: string;
|
7
7
|
disabled?: boolean;
|
8
|
-
|
8
|
+
buttonOnClick?(): void;
|
9
9
|
};
|
10
10
|
declare const ProductShortcut: React.FC<ProductShortcutProps>;
|
11
11
|
export default ProductShortcut;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Spinner } from "./Spinner.tsx";
|
@@ -18,3 +18,7 @@ export * from "./ProductShortcut";
|
|
18
18
|
export * from "./IconButton";
|
19
19
|
export * from "./Checkbox";
|
20
20
|
export * from "./Section";
|
21
|
+
export * from "./ObjectiveCard";
|
22
|
+
export * from "./Spinner";
|
23
|
+
export * from "./PlanulFinanciarTeaser";
|
24
|
+
export * from "./PageMessage";
|