pge-front-common 14.2.5-beta.3 → 14.2.5-beta.4

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/package.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "module": "lib/index.esm.js",
50
50
  "types": "lib/index.d.ts",
51
51
  "name": "pge-front-common",
52
- "version": "14.2.5-beta.3",
52
+ "version": "14.2.5-beta.4",
53
53
  "description": "",
54
54
  "keywords": [],
55
55
  "author": "sturmer cesar",
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { RadioButtonProps } from "./radioButton.types";
3
- declare const RadioButton: ({ name, label, value, checked, message, textError, hasError, required, disabled, onChange, customClass, id, "aria-label": ariaLabel, "aria-describedby": ariaDescribedBy, ...props }: RadioButtonProps) => React.JSX.Element;
4
- export default RadioButton;
@@ -1,11 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/react";
2
- import RadioButton from "./RadioButton";
3
- declare const meta: Meta<typeof RadioButton>;
4
- export default meta;
5
- type Story = StoryObj<typeof meta>;
6
- export declare const Default: Story;
7
- export declare const Checked: Story;
8
- export declare const WithError: Story;
9
- export declare const Disabled: Story;
10
- export declare const Required: Story;
11
- export declare const WithoutLabel: Story;
@@ -1,16 +0,0 @@
1
- import { ChangeEvent, InputHTMLAttributes, ReactNode } from "react";
2
- export interface RadioButtonProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "type" | "checked" | "accept" | "alt" | "capture" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "list" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "pattern" | "placeholder" | "readOnly" | "size" | "src" | "step" | "width"> {
3
- name: string;
4
- label?: ReactNode;
5
- value: string;
6
- checked?: boolean;
7
- hasError?: boolean;
8
- textError?: string;
9
- message?: string;
10
- onChange: (event: ChangeEvent<HTMLInputElement>) => void;
11
- customClass?: string;
12
- required?: boolean;
13
- disabled?: boolean;
14
- "aria-label"?: string;
15
- "aria-describedby"?: string;
16
- }