fui-material 2.5.16 → 2.5.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.
@@ -4143,7 +4143,7 @@ const FArrowRightCircleIcon = React.forwardRef(({
4143
4143
  st,
4144
4144
  id,
4145
4145
  className,
4146
- handleClose,
4146
+ handleClick,
4147
4147
  ["data-testid"]: dataTestId,
4148
4148
  ...props
4149
4149
  }, ref) => {
@@ -4153,9 +4153,9 @@ const FArrowRightCircleIcon = React.forwardRef(({
4153
4153
  ref,
4154
4154
  width: size,
4155
4155
  style: st,
4156
- className: `f-icon ${handleClose ? " clicking-icon" : ""} ${color} ${className || ""}`,
4156
+ className: `f-icon ${handleClick ? " clicking-icon" : ""} ${color} ${className || ""}`,
4157
4157
  viewBox: "0 0 16 16",
4158
- onClick: handleClose,
4158
+ onClick: handleClick,
4159
4159
  id,
4160
4160
  "data-testid": dataTestId,
4161
4161
  ...props,
@@ -4164,6 +4164,87 @@ const FArrowRightCircleIcon = React.forwardRef(({
4164
4164
  );
4165
4165
  });
4166
4166
  FArrowRightCircleIcon.displayName = "FArrowRightCircleIcon";
4167
+ const FArrowLeftCircleIcon = React.forwardRef(({
4168
+ color = "primary",
4169
+ size = 30,
4170
+ st,
4171
+ id,
4172
+ className,
4173
+ handleClick,
4174
+ ["data-testid"]: dataTestId,
4175
+ ...props
4176
+ }, ref) => {
4177
+ return /* @__PURE__ */ jsx(
4178
+ "svg",
4179
+ {
4180
+ ref,
4181
+ width: size,
4182
+ style: st,
4183
+ className: `f-icon ${handleClick ? " clicking-icon" : ""} ${color} ${className || ""}`,
4184
+ viewBox: "0 0 16 16",
4185
+ onClick: handleClick,
4186
+ id,
4187
+ "data-testid": dataTestId,
4188
+ ...props,
4189
+ children: /* @__PURE__ */ jsx("path", { "fill-rule": "evenodd", d: "M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z" })
4190
+ }
4191
+ );
4192
+ });
4193
+ FArrowLeftCircleIcon.displayName = "FArrowLeftCircleIcon";
4194
+ const FArrowUpCircleIcon = React.forwardRef(({
4195
+ color = "primary",
4196
+ size = 30,
4197
+ st,
4198
+ id,
4199
+ className,
4200
+ handleClick,
4201
+ ["data-testid"]: dataTestId,
4202
+ ...props
4203
+ }, ref) => {
4204
+ return /* @__PURE__ */ jsx(
4205
+ "svg",
4206
+ {
4207
+ ref,
4208
+ width: size,
4209
+ style: st,
4210
+ className: `f-icon ${handleClick ? " clicking-icon" : ""} ${color} ${className || ""}`,
4211
+ viewBox: "0 0 16 16",
4212
+ onClick: handleClick,
4213
+ id,
4214
+ "data-testid": dataTestId,
4215
+ ...props,
4216
+ children: /* @__PURE__ */ jsx("path", { "fill-rule": "evenodd", d: "M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z" })
4217
+ }
4218
+ );
4219
+ });
4220
+ FArrowUpCircleIcon.displayName = "FArrowUpCircleIcon";
4221
+ const FArrowDownCircleIcon = React.forwardRef(({
4222
+ color = "primary",
4223
+ size = 30,
4224
+ st,
4225
+ id,
4226
+ className,
4227
+ handleClick,
4228
+ ["data-testid"]: dataTestId,
4229
+ ...props
4230
+ }, ref) => {
4231
+ return /* @__PURE__ */ jsx(
4232
+ "svg",
4233
+ {
4234
+ ref,
4235
+ width: size,
4236
+ style: st,
4237
+ className: `f-icon ${handleClick ? " clicking-icon" : ""} ${color} ${className || ""}`,
4238
+ viewBox: "0 0 16 16",
4239
+ onClick: handleClick,
4240
+ id,
4241
+ "data-testid": dataTestId,
4242
+ ...props,
4243
+ children: /* @__PURE__ */ jsx("path", { "fill-rule": "evenodd", d: "M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z" })
4244
+ }
4245
+ );
4246
+ });
4247
+ FArrowDownCircleIcon.displayName = "FArrowDownCircleIcon";
4167
4248
  const styles$5 = {
4168
4249
  "f-function-block-alert": "_f-function-block-alert_1jotv_1",
4169
4250
  "f-function-alert": "_f-function-alert_1jotv_16",
@@ -7896,8 +7977,11 @@ const FWaterErrorBoundaryPage = () => {
7896
7977
  export {
7897
7978
  FAccordion,
7898
7979
  FAlert,
7980
+ FArrowDownCircleIcon,
7899
7981
  FArrowIcon,
7982
+ FArrowLeftCircleIcon,
7900
7983
  FArrowRightCircleIcon,
7984
+ FArrowUpCircleIcon,
7901
7985
  FButton,
7902
7986
  FButtonFile,
7903
7987
  FCarousel,