rbro-tat-uds 1.0.16 → 1.0.18

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.
@@ -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
- buttonAction?(): void;
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
- helpButtonAction?(): void;
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,6 @@
1
+ import React from "react";
2
+ export type PlanulFinanciarTeaserProps = {
3
+ buttonOnClick?: () => void;
4
+ };
5
+ declare const PlanulFinanciarTeaser: React.FC<PlanulFinanciarTeaserProps>;
6
+ export default PlanulFinanciarTeaser;
@@ -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
- buttonText?: string;
6
+ buttonLabel?: string;
7
7
  disabled?: boolean;
8
- buttonAction?(): void;
8
+ buttonOnClick?(): void;
9
9
  };
10
10
  declare const ProductShortcut: React.FC<ProductShortcutProps>;
11
11
  export default ProductShortcut;
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- export interface SectionProps {
2
+ export interface SectionProps extends ContentTopRightProps {
3
3
  children: React.ReactNode;
4
4
  title: string;
5
5
  subtitle?: string;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ type SpinnerProps = Omit<React.SVGProps<SVGSVGElement>, "ref" | "direction"> & {
3
+ size?: 20 | 24;
4
+ text?: string;
5
+ direction?: "vertical" | "horizontal";
6
+ };
7
+ declare const Spinner: React.FC<SpinnerProps>;
8
+ export default Spinner;
@@ -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";