fui-material 2.2.0 → 2.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.
@@ -2123,7 +2123,6 @@ const FCheckbox = forwardRef(
2123
2123
  ({
2124
2124
  label,
2125
2125
  className,
2126
- id,
2127
2126
  st: st2,
2128
2127
  ...props
2129
2128
  }, ref) => {
@@ -2131,7 +2130,6 @@ const FCheckbox = forwardRef(
2131
2130
  "div",
2132
2131
  {
2133
2132
  className: `${styles$m["f-checkbox"]} ${className || ""}`,
2134
- id,
2135
2133
  style: st2,
2136
2134
  children: /* @__PURE__ */ jsxRuntimeExports.jsxs("label", { children: [
2137
2135
  /* @__PURE__ */ jsxRuntimeExports.jsx("input", { ref, type: "checkbox", ...props }),
@@ -2144,36 +2142,26 @@ const FCheckbox = forwardRef(
2144
2142
  const styles$l = {
2145
2143
  "f-radio": "_f-radio_cwhmx_1"
2146
2144
  };
2147
- const FRadioButton = ({
2148
- label,
2149
- onClick,
2150
- className,
2151
- id,
2152
- st: st2,
2153
- checked,
2154
- disabled: disabled2
2155
- }) => {
2156
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
2157
- "div",
2158
- {
2159
- className: `${styles$l["f-radio"]} ${className || ""}`,
2160
- style: st2,
2161
- id,
2162
- children: /* @__PURE__ */ jsxRuntimeExports.jsxs("label", { children: [
2163
- /* @__PURE__ */ jsxRuntimeExports.jsx(
2164
- "input",
2165
- {
2166
- type: "radio",
2167
- onClick,
2168
- checked,
2169
- disabled: disabled2
2170
- }
2171
- ),
2172
- label
2173
- ] })
2174
- }
2175
- );
2176
- };
2145
+ const FRadioButton = forwardRef(
2146
+ ({
2147
+ label,
2148
+ className,
2149
+ st: st2,
2150
+ ...props
2151
+ }, ref) => {
2152
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
2153
+ "div",
2154
+ {
2155
+ className: `${styles$l["f-radio"]} ${className || ""}`,
2156
+ style: st2,
2157
+ children: /* @__PURE__ */ jsxRuntimeExports.jsxs("label", { children: [
2158
+ /* @__PURE__ */ jsxRuntimeExports.jsx("input", { ref, type: "radio", ...props }),
2159
+ label
2160
+ ] })
2161
+ }
2162
+ );
2163
+ }
2164
+ );
2177
2165
  const DOTS = "...";
2178
2166
  const range = (start, end) => {
2179
2167
  const length = end - start + 1;