fictoan-react 1.10.6 → 1.10.8
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/{Heading-3Es9F3zQ.js → Heading-BsMbA6hR.js} +52 -96
- package/dist/components/Element/constants.d.ts +3 -1
- package/dist/components/Element/constants.d.ts.map +1 -1
- package/dist/components/Form/BaseInputComponent/BaseInputComponent.d.ts.map +1 -1
- package/dist/components/Form/BaseInputComponent/constants.d.ts +7 -2
- package/dist/components/Form/BaseInputComponent/constants.d.ts.map +1 -1
- package/dist/components/Form/Checkbox/Switch.d.ts +2 -5
- package/dist/components/Form/Checkbox/Switch.d.ts.map +1 -1
- package/dist/components/Form/InputField/InputField.d.ts.map +1 -1
- package/dist/components/Form/ListBox/ListBox.d.ts.map +1 -1
- package/dist/components/Form/ListBox/constants.d.ts +2 -2
- package/dist/components/Form/ListBox/constants.d.ts.map +1 -1
- package/dist/components/index.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -1342,7 +1342,7 @@ var FormItem = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
1342
1342
|
role: "group"
|
|
1343
1343
|
}, props));
|
|
1344
1344
|
});
|
|
1345
|
-
var _excluded$B = ["as", "className", "label", "helpText", "errorText", "validateThis", "classNames", "children"];
|
|
1345
|
+
var _excluded$B = ["as", "className", "label", "helpText", "errorText", "validateThis", "classNames", "children", "onChange"];
|
|
1346
1346
|
function _extends$C() {
|
|
1347
1347
|
return _extends$C = Object.assign ? Object.assign.bind() : function(n) {
|
|
1348
1348
|
for (var e = 1; e < arguments.length; e++) {
|
|
@@ -1371,7 +1371,7 @@ function _objectWithoutPropertiesLoose$B(r, e) {
|
|
|
1371
1371
|
return t;
|
|
1372
1372
|
}
|
|
1373
1373
|
var BaseInputComponent = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
1374
|
-
var Component = _ref.as, className = _ref.className, label = _ref.label, helpText = _ref.helpText, errorText = _ref.errorText, validateThis = _ref.validateThis, classNames = _ref.classNames, children = _ref.children, inputProps = _objectWithoutProperties$B(_ref, _excluded$B);
|
|
1374
|
+
var Component = _ref.as, className = _ref.className, label = _ref.label, helpText = _ref.helpText, errorText = _ref.errorText, validateThis = _ref.validateThis, classNames = _ref.classNames, children = _ref.children, onChange = _ref.onChange, inputProps = _objectWithoutProperties$B(_ref, _excluded$B);
|
|
1375
1375
|
return /* @__PURE__ */ React.createElement(FormItem, {
|
|
1376
1376
|
"data-form-item": true,
|
|
1377
1377
|
required: inputProps.required
|
|
@@ -1383,7 +1383,8 @@ var BaseInputComponent = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
1383
1383
|
}, /* @__PURE__ */ React.createElement(Element, _extends$C({
|
|
1384
1384
|
as: Component,
|
|
1385
1385
|
ref,
|
|
1386
|
-
classNames: [className || "", validateThis ? "validate-this" : ""].concat(classNames || [])
|
|
1386
|
+
classNames: [className || "", validateThis ? "validate-this" : ""].concat(classNames || []),
|
|
1387
|
+
onChange
|
|
1387
1388
|
}, inputProps)), children), (helpText || errorText) && /* @__PURE__ */ React.createElement(Div, {
|
|
1388
1389
|
className: "info-section vertically-center-items"
|
|
1389
1390
|
}, helpText && /* @__PURE__ */ React.createElement(Element, {
|
|
@@ -1662,7 +1663,7 @@ var Portion = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
1662
1663
|
role
|
|
1663
1664
|
}, props));
|
|
1664
1665
|
});
|
|
1665
|
-
var _excluded$v = ["id", "name", "value"
|
|
1666
|
+
var _excluded$v = ["id", "name", "value"];
|
|
1666
1667
|
function _extends$w() {
|
|
1667
1668
|
return _extends$w = Object.assign ? Object.assign.bind() : function(n) {
|
|
1668
1669
|
for (var e = 1; e < arguments.length; e++) {
|
|
@@ -1691,7 +1692,7 @@ function _objectWithoutPropertiesLoose$v(r, e) {
|
|
|
1691
1692
|
return t;
|
|
1692
1693
|
}
|
|
1693
1694
|
var Switch = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
1694
|
-
var id = _ref.id, name = _ref.name, value = _ref.value,
|
|
1695
|
+
var id = _ref.id, name = _ref.name, value = _ref.value, props = _objectWithoutProperties$v(_ref, _excluded$v);
|
|
1695
1696
|
var derivedName = useMemo(function() {
|
|
1696
1697
|
return name || id;
|
|
1697
1698
|
}, [name, id]);
|
|
@@ -1701,8 +1702,7 @@ var Switch = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
1701
1702
|
return /* @__PURE__ */ React.createElement(Element, {
|
|
1702
1703
|
as: "div",
|
|
1703
1704
|
"data-switch": true,
|
|
1704
|
-
ref
|
|
1705
|
-
className: "size-".concat(size)
|
|
1705
|
+
ref
|
|
1706
1706
|
}, /* @__PURE__ */ React.createElement(BaseInputComponent, _extends$w({
|
|
1707
1707
|
as: "input",
|
|
1708
1708
|
type: "checkbox",
|
|
@@ -2150,7 +2150,7 @@ var searchOptions = function searchOptions2(options, searchTerm) {
|
|
|
2150
2150
|
});
|
|
2151
2151
|
return matchedOptions;
|
|
2152
2152
|
};
|
|
2153
|
-
var _excluded$o = ["
|
|
2153
|
+
var _excluded$o = ["id", "options", "placeholder", "defaultValue", "onChange", "allowMultiSelect", "disabled", "badgeBgColour", "badgeBgColor", "badgeTextColour", "badgeTextColor", "selectionLimit", "allowCustomEntries", "className"];
|
|
2154
2154
|
function _extends$o() {
|
|
2155
2155
|
return _extends$o = Object.assign ? Object.assign.bind() : function(n) {
|
|
2156
2156
|
for (var e = 1; e < arguments.length; e++) {
|
|
@@ -2230,8 +2230,8 @@ function _objectWithoutPropertiesLoose$o(r, e) {
|
|
|
2230
2230
|
}
|
|
2231
2231
|
return t;
|
|
2232
2232
|
}
|
|
2233
|
-
var
|
|
2234
|
-
var
|
|
2233
|
+
var ListBoxWithOptions = function ListBoxWithOptions2(_ref) {
|
|
2234
|
+
var id = _ref.id, options = _ref.options, _ref$placeholder = _ref.placeholder, placeholder = _ref$placeholder === void 0 ? "Select an option" : _ref$placeholder, defaultValue = _ref.defaultValue, onChange = _ref.onChange, _ref$allowMultiSelect = _ref.allowMultiSelect, allowMultiSelect = _ref$allowMultiSelect === void 0 ? false : _ref$allowMultiSelect, disabled = _ref.disabled, badgeBgColour = _ref.badgeBgColour, badgeBgColor = _ref.badgeBgColor, badgeTextColour = _ref.badgeTextColour, badgeTextColor = _ref.badgeTextColor, selectionLimit = _ref.selectionLimit, _ref$allowCustomEntri = _ref.allowCustomEntries, allowCustomEntries = _ref$allowCustomEntri === void 0 ? false : _ref$allowCustomEntri, className = _ref.className, props = _objectWithoutProperties$o(_ref, _excluded$o);
|
|
2235
2235
|
var _useState = useState(false), _useState2 = _slicedToArray$9(_useState, 2), isOpen = _useState2[0], setIsOpen = _useState2[1];
|
|
2236
2236
|
var _useState3 = useState([]), _useState4 = _slicedToArray$9(_useState3, 2), selectedOptions = _useState4[0], setSelectedOptions = _useState4[1];
|
|
2237
2237
|
var _useState5 = useState(""), _useState6 = _slicedToArray$9(_useState5, 2), searchValue = _useState6[0], setSearchValue = _useState6[1];
|
|
@@ -2245,15 +2245,25 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2245
2245
|
return null;
|
|
2246
2246
|
}), _useState10 = _slicedToArray$9(_useState9, 2), selectedOption = _useState10[0], setSelectedOption = _useState10[1];
|
|
2247
2247
|
useEffect(function() {
|
|
2248
|
-
if (defaultValue
|
|
2249
|
-
|
|
2248
|
+
if (defaultValue) {
|
|
2249
|
+
handleChange(defaultValue);
|
|
2250
2250
|
}
|
|
2251
2251
|
}, []);
|
|
2252
2252
|
var dropdownRef = useRef();
|
|
2253
2253
|
var searchInputRef = useRef(null);
|
|
2254
|
-
var effectiveRef = ref || dropdownRef;
|
|
2255
2254
|
var listboxId = id || "listbox-".concat(Math.random().toString(36).substring(2, 9));
|
|
2256
2255
|
var filteredOptions = searchOptions(options, searchValue);
|
|
2256
|
+
var handleChange = function handleChange2(value) {
|
|
2257
|
+
if (!onChange) return;
|
|
2258
|
+
var target = {
|
|
2259
|
+
value
|
|
2260
|
+
};
|
|
2261
|
+
var event = {
|
|
2262
|
+
target,
|
|
2263
|
+
currentTarget: target
|
|
2264
|
+
};
|
|
2265
|
+
onChange(event);
|
|
2266
|
+
};
|
|
2257
2267
|
var handleSelectOption = function handleSelectOption2(option) {
|
|
2258
2268
|
if (option.disabled) return;
|
|
2259
2269
|
var newSelectedOptions;
|
|
@@ -2272,30 +2282,18 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2272
2282
|
newSelectedOptions = [].concat(_toConsumableArray$3(selectedOptions), [option]);
|
|
2273
2283
|
}
|
|
2274
2284
|
setSelectedOptions(newSelectedOptions);
|
|
2275
|
-
|
|
2285
|
+
handleChange(newSelectedOptions.map(function(opt) {
|
|
2276
2286
|
return opt.value;
|
|
2277
2287
|
}));
|
|
2278
|
-
setSearchValue("");
|
|
2279
|
-
setActiveIndex(-1);
|
|
2280
2288
|
} else {
|
|
2281
2289
|
newSelectedOptions = [option];
|
|
2282
2290
|
setSelectedOption(option);
|
|
2283
2291
|
setSelectedOptions(newSelectedOptions);
|
|
2284
|
-
|
|
2292
|
+
handleChange(option.value);
|
|
2285
2293
|
setIsOpen(false);
|
|
2286
|
-
setSearchValue("");
|
|
2287
|
-
setActiveIndex(-1);
|
|
2288
2294
|
}
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
e.stopPropagation();
|
|
2292
|
-
var newSelectedOptions = selectedOptions.filter(function(opt) {
|
|
2293
|
-
return opt.value !== valueToRemove;
|
|
2294
|
-
});
|
|
2295
|
-
setSelectedOptions(newSelectedOptions);
|
|
2296
|
-
onChange === null || onChange === void 0 || onChange(newSelectedOptions.map(function(opt) {
|
|
2297
|
-
return opt.value;
|
|
2298
|
-
}));
|
|
2295
|
+
setSearchValue("");
|
|
2296
|
+
setActiveIndex(-1);
|
|
2299
2297
|
};
|
|
2300
2298
|
var handleCustomEntry = function handleCustomEntry2() {
|
|
2301
2299
|
if (!searchValue.trim() || !allowCustomEntries) return;
|
|
@@ -2307,10 +2305,15 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2307
2305
|
setSearchValue("");
|
|
2308
2306
|
setActiveIndex(-1);
|
|
2309
2307
|
};
|
|
2310
|
-
var
|
|
2308
|
+
var handleDeleteOption = function handleDeleteOption2(e, valueToRemove) {
|
|
2311
2309
|
e.stopPropagation();
|
|
2312
|
-
|
|
2313
|
-
|
|
2310
|
+
var newSelectedOptions = selectedOptions.filter(function(opt) {
|
|
2311
|
+
return opt.value !== valueToRemove;
|
|
2312
|
+
});
|
|
2313
|
+
setSelectedOptions(newSelectedOptions);
|
|
2314
|
+
handleChange(newSelectedOptions.map(function(opt) {
|
|
2315
|
+
return opt.value;
|
|
2316
|
+
}));
|
|
2314
2317
|
};
|
|
2315
2318
|
var handleKeyDown = function handleKeyDown2(event) {
|
|
2316
2319
|
switch (event.key) {
|
|
@@ -2358,21 +2361,9 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2358
2361
|
setActiveIndex(0);
|
|
2359
2362
|
}
|
|
2360
2363
|
break;
|
|
2361
|
-
case "Home":
|
|
2362
|
-
if (isOpen) {
|
|
2363
|
-
event.preventDefault();
|
|
2364
|
-
setActiveIndex(0);
|
|
2365
|
-
}
|
|
2366
|
-
break;
|
|
2367
|
-
case "End":
|
|
2368
|
-
if (isOpen) {
|
|
2369
|
-
event.preventDefault();
|
|
2370
|
-
setActiveIndex(filteredOptions.length - 1);
|
|
2371
|
-
}
|
|
2372
|
-
break;
|
|
2373
2364
|
}
|
|
2374
2365
|
};
|
|
2375
|
-
useClickOutside(
|
|
2366
|
+
useClickOutside(dropdownRef, function() {
|
|
2376
2367
|
setIsOpen(false);
|
|
2377
2368
|
setActiveIndex(-1);
|
|
2378
2369
|
});
|
|
@@ -2381,33 +2372,18 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2381
2372
|
searchInputRef.current.focus();
|
|
2382
2373
|
}
|
|
2383
2374
|
}, [isOpen]);
|
|
2384
|
-
|
|
2385
|
-
if (activeIndex >= 0) {
|
|
2386
|
-
var activeOption = document.querySelector('[data-index="'.concat(activeIndex, '"]'));
|
|
2387
|
-
activeOption === null || activeOption === void 0 || activeOption.scrollIntoView({
|
|
2388
|
-
block: "nearest"
|
|
2389
|
-
});
|
|
2390
|
-
}
|
|
2391
|
-
}, [activeIndex]);
|
|
2392
|
-
return /* @__PURE__ */ React.createElement(BaseInputComponent, _extends$o({
|
|
2375
|
+
return /* @__PURE__ */ React.createElement(Div, {
|
|
2393
2376
|
"data-list-box": true,
|
|
2394
|
-
className: "list-box-wrapper ".concat(disabled ? "disabled" : ""),
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
}, props), label && /* @__PURE__ */ React.createElement("label", {
|
|
2398
|
-
id: "".concat(listboxId, "-label"),
|
|
2399
|
-
htmlFor: "".concat(listboxId, "-listbox"),
|
|
2400
|
-
className: "list-box-label"
|
|
2401
|
-
}, label), /* @__PURE__ */ React.createElement(Div, {
|
|
2377
|
+
className: "".concat(className || "", " list-box-wrapper ").concat(disabled ? "disabled" : ""),
|
|
2378
|
+
ref: dropdownRef
|
|
2379
|
+
}, /* @__PURE__ */ React.createElement(Div, {
|
|
2402
2380
|
className: "list-box-input-wrapper",
|
|
2403
2381
|
onClick: function onClick() {
|
|
2404
2382
|
return !disabled && setIsOpen(!isOpen);
|
|
2405
2383
|
},
|
|
2406
|
-
onKeyDown: handleKeyDown,
|
|
2407
2384
|
role: "combobox",
|
|
2408
2385
|
"aria-haspopup": "listbox",
|
|
2409
2386
|
"aria-expanded": isOpen,
|
|
2410
|
-
"aria-labelledby": "".concat(listboxId, "-label"),
|
|
2411
2387
|
"aria-controls": "".concat(listboxId, "-listbox"),
|
|
2412
2388
|
"aria-owns": "".concat(listboxId, "-listbox"),
|
|
2413
2389
|
tabIndex: disabled ? -1 : 0
|
|
@@ -2434,34 +2410,11 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2434
2410
|
role: "alert"
|
|
2435
2411
|
}, "You can choose only ", selectionLimit, " option", selectionLimit === 1 ? "" : "s")) : /* @__PURE__ */ React.createElement("span", {
|
|
2436
2412
|
className: "placeholder"
|
|
2437
|
-
}, placeholder)
|
|
2438
|
-
className: "
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
tabIndex: 0,
|
|
2443
|
-
"aria-label": "Clear all selected options"
|
|
2444
|
-
}, /* @__PURE__ */ React.createElement("svg", {
|
|
2445
|
-
viewBox: "0 0 24 24",
|
|
2446
|
-
"aria-hidden": "true"
|
|
2447
|
-
}, /* @__PURE__ */ React.createElement("line", {
|
|
2448
|
-
x1: "5",
|
|
2449
|
-
y1: "5",
|
|
2450
|
-
x2: "19",
|
|
2451
|
-
y2: "19"
|
|
2452
|
-
}), /* @__PURE__ */ React.createElement("line", {
|
|
2453
|
-
x1: "5",
|
|
2454
|
-
y1: "19",
|
|
2455
|
-
x2: "19",
|
|
2456
|
-
y2: "5"
|
|
2457
|
-
})))) : (
|
|
2458
|
-
// FOR PLAIN TEXT SINGLE-SELECT OPTION =========================================================
|
|
2459
|
-
selectedOption ? /* @__PURE__ */ React.createElement(Text, {
|
|
2460
|
-
className: "selected-option"
|
|
2461
|
-
}, selectedOption.label) : /* @__PURE__ */ React.createElement("span", {
|
|
2462
|
-
className: "placeholder"
|
|
2463
|
-
}, placeholder)
|
|
2464
|
-
), /* @__PURE__ */ React.createElement(Div, {
|
|
2413
|
+
}, placeholder)) : selectedOption ? /* @__PURE__ */ React.createElement(Text, {
|
|
2414
|
+
className: "selected-option"
|
|
2415
|
+
}, selectedOption.label) : /* @__PURE__ */ React.createElement("span", {
|
|
2416
|
+
className: "placeholder"
|
|
2417
|
+
}, placeholder), /* @__PURE__ */ React.createElement(Div, {
|
|
2465
2418
|
className: "icon-wrapper chevrons"
|
|
2466
2419
|
}, /* @__PURE__ */ React.createElement("svg", {
|
|
2467
2420
|
viewBox: "0 0 24 24",
|
|
@@ -2471,9 +2424,7 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2471
2424
|
}), /* @__PURE__ */ React.createElement("polyline", {
|
|
2472
2425
|
points: "6 15 12 20 18 15"
|
|
2473
2426
|
})))), isOpen && !disabled && /* @__PURE__ */ React.createElement(Div, {
|
|
2474
|
-
className: "list-box-dropdown"
|
|
2475
|
-
role: "dialog",
|
|
2476
|
-
"aria-label": "".concat(label || "Options", " dropdown")
|
|
2427
|
+
className: "list-box-dropdown"
|
|
2477
2428
|
}, /* @__PURE__ */ React.createElement(Div, {
|
|
2478
2429
|
className: "list-box-search-wrapper"
|
|
2479
2430
|
}, /* @__PURE__ */ React.createElement(InputField, {
|
|
@@ -2497,7 +2448,6 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2497
2448
|
id: "".concat(listboxId, "-listbox"),
|
|
2498
2449
|
className: "list-box-options",
|
|
2499
2450
|
role: "listbox",
|
|
2500
|
-
"aria-label": label || "Select options",
|
|
2501
2451
|
"aria-multiselectable": allowMultiSelect,
|
|
2502
2452
|
"aria-busy": props.isLoading,
|
|
2503
2453
|
tabIndex: -1
|
|
@@ -2522,6 +2472,12 @@ var ListBox = /* @__PURE__ */ React.forwardRef(function(_ref, ref) {
|
|
|
2522
2472
|
role: "alert",
|
|
2523
2473
|
"aria-live": "polite"
|
|
2524
2474
|
}, "No matches found"))));
|
|
2475
|
+
};
|
|
2476
|
+
var ListBox = /* @__PURE__ */ React.forwardRef(function(props, ref) {
|
|
2477
|
+
return /* @__PURE__ */ React.createElement(BaseInputComponent, _extends$o({
|
|
2478
|
+
as: ListBoxWithOptions,
|
|
2479
|
+
ref
|
|
2480
|
+
}, props));
|
|
2525
2481
|
});
|
|
2526
2482
|
function _typeof$2(o) {
|
|
2527
2483
|
"@babel/helpers - typeof";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementType, HTMLProps } from 'react';
|
|
1
|
+
import { ElementType, FormEvent, HTMLProps } from 'react';
|
|
2
2
|
|
|
3
3
|
export declare const DefaultColours: readonly ["red", "salmon", "orange", "amber", "yellow", "spring", "pistachio", "green", "teal", "cyan", "sky", "blue", "indigo", "violet", "purple", "pink", "crimson", "brick", "sienna", "brown", "slate", "grey"];
|
|
4
4
|
export declare const BasicColours: readonly ["transparent", "black", "white"];
|
|
@@ -68,10 +68,12 @@ export interface CommonProps {
|
|
|
68
68
|
}
|
|
69
69
|
export interface CommonAndHTMLProps<T extends {}> extends CommonProps, Omit<HTMLProps<T>, "as" | "size" | "ref" | "shape"> {
|
|
70
70
|
}
|
|
71
|
+
export type FlexibleEventHandler<T, V = any> = ((event: T) => void) | ((value: V) => void);
|
|
71
72
|
export interface ElementProps<T extends {}> extends CommonProps, Omit<HTMLProps<T>, "as" | "ref" | "shape"> {
|
|
72
73
|
as?: ElementType;
|
|
73
74
|
className?: string;
|
|
74
75
|
ariaLabel?: string;
|
|
76
|
+
onChange?: FlexibleEventHandler<FormEvent<T>, any>;
|
|
75
77
|
}
|
|
76
78
|
export {};
|
|
77
79
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/components/Element/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/components/Element/constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseInputComponent.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/BaseInputComponent/BaseInputComponent.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"BaseInputComponent.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/BaseInputComponent/BaseInputComponent.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AASzC,OAAO,EAAE,+BAA+B,EAAE,MAAM,aAAa,CAAC;AAE9D,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,GAAG,cAAc,GAAG,iBAAiB,CAAC;AAGrF,eAAO,MAAM,kBAAkB,EA0D1B,CAAC,CAAC,SAAS,gBAAgB,EAC5B,KAAK,EAAE,+BAA+B,CAAC,CAAC,CAAC,GAAG;IACxC,GAAI,CAAC,EAAG,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAA;CAC5C,KACA,KAAK,CAAC,YAAY,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import { default as React, FormEventHandler } from 'react';
|
|
2
2
|
import { ElementProps } from '../../Element/constants';
|
|
3
3
|
import { InputLabelCustomProps } from '../InputLabel/InputLabel';
|
|
4
4
|
|
|
@@ -36,7 +36,12 @@ export type NoSideElements = {
|
|
|
36
36
|
stringRight?: never;
|
|
37
37
|
};
|
|
38
38
|
export type InputSideElementProps = LeftSideProps & RightSideProps;
|
|
39
|
-
export type
|
|
39
|
+
export type FormChangeHandler<K> = FormEventHandler<K>;
|
|
40
|
+
export type ValueChangeHandler = (value: string | string[]) => void;
|
|
41
|
+
export type FlexibleChangeHandler<K> = FormChangeHandler<K> | ValueChangeHandler;
|
|
42
|
+
export type BaseInputComponentProps<K extends {}> = Omit<ElementProps<K>, "onChange"> & InputLabelCustomProps & InputCommonProps & {
|
|
43
|
+
onChange?: FlexibleChangeHandler<K>;
|
|
44
|
+
};
|
|
40
45
|
export type BaseInputComponentWithIconProps<K extends {}> = BaseInputComponentProps<K> & InputSideElementProps;
|
|
41
46
|
export {};
|
|
42
47
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/BaseInputComponent/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/BaseInputComponent/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAGjE,MAAM,WAAW,gBAAgB;IAC7B,QAAa,CAAC,EAAG,MAAM,CAAC;IACxB,SAAa,CAAC,EAAG,MAAM,CAAC;IACxB,YAAa,CAAC,EAAG,OAAO,CAAC;IACzB,KAAa,CAAC,EAAG,OAAO,CAAC;IACzB,OAAa,CAAC,EAAG,OAAO,CAAC;CAC5B;AAID,KAAK,aAAa,GACZ;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAAC,UAAW,CAAC,EAAG,KAAK,CAAA;CAAE,GACnD;IAAE,UAAU,EAAE,MAAM,CAAC;IAAC,QAAS,CAAC,EAAG,KAAK,CAAA;CAAE,GAC1C;IAAE,QAAS,CAAC,EAAG,KAAK,CAAC;IAAC,UAAW,CAAC,EAAG,KAAK,CAAA;CAAE,CAAC;AAGnD,KAAK,cAAc,GACb;IAAE,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;IAAC,WAAY,CAAC,EAAG,KAAK,CAAA;CAAE,GACrD;IAAE,WAAW,EAAE,MAAM,CAAC;IAAC,SAAU,CAAC,EAAG,KAAK,CAAA;CAAE,GAC5C;IAAE,SAAU,CAAC,EAAG,KAAK,CAAC;IAAC,WAAY,CAAC,EAAG,KAAK,CAAA;CAAE,CAAC;AAGrD,MAAM,MAAM,cAAc,GAAG;IACzB,QAAY,CAAC,EAAG,KAAK,CAAC;IACtB,SAAY,CAAC,EAAG,KAAK,CAAC;IACtB,UAAY,CAAC,EAAG,KAAK,CAAC;IACtB,WAAY,CAAC,EAAG,KAAK,CAAC;CACzB,CAAC;AAGF,MAAM,MAAM,qBAAqB,GAAG,aAAa,GAAG,cAAc,CAAC;AAEnE,MAAM,MAAM,iBAAiB,CAAC,CAAC,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC;AACvD,MAAM,MAAM,kBAAkB,GAAG,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,IAAI,CAAC;AACpE,MAAM,MAAM,qBAAqB,CAAC,CAAC,IAAI,iBAAiB,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC;AAEjF,MAAM,MAAM,uBAAuB,CAAC,CAAC,SAAS,EAAE,IAC5C,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,GACjC,qBAAqB,GACrB,gBAAgB,GAAG;IACnB,QAAQ,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC;CACvC,CAAC;AAGF,MAAM,MAAM,+BAA+B,CAAC,CAAC,SAAS,EAAE,IACpD,uBAAuB,CAAC,CAAC,CAAC,GAC1B,qBAAqB,CAAC"}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { BaseInputComponentProps } from '../BaseInputComponent/constants';
|
|
3
3
|
|
|
4
|
-
export interface SwitchCustomProps {
|
|
5
|
-
size?: "small" | "medium" | "large";
|
|
6
|
-
}
|
|
7
4
|
export type SwitchElementType = HTMLInputElement;
|
|
8
|
-
export type SwitchProps = Omit<BaseInputComponentProps<SwitchElementType>,
|
|
9
|
-
export declare const Switch: React.ForwardRefExoticComponent<
|
|
5
|
+
export type SwitchProps = Omit<BaseInputComponentProps<SwitchElementType>, "as">;
|
|
6
|
+
export declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
|
|
10
7
|
//# sourceMappingURL=Switch.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/Checkbox/Switch.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAOvC,OAAO,cAAc,CAAC;AAGtB,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAE1E,MAAM,
|
|
1
|
+
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/Checkbox/Switch.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAOvC,OAAO,cAAc,CAAC;AAGtB,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAE1E,MAAM,MAAM,iBAAiB,GAAG,gBAAgB,CAAC;AACjD,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,uBAAuB,CAAC,iBAAiB,CAAC,EAAE,IAAI,CAAC,CAAC;AAGjF,eAAO,MAAM,MAAM,sFAmBlB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputField.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/InputField/InputField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,mBAAmB,CAAC;AAG3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAC1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAEjE,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,kBAAkB,CAAC,qBAAqB,CAAC,GACnE,qBAAqB,GACrB,gBAAgB,GAChB,qBAAqB,CAAC;AAG1B,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"InputField.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/InputField/InputField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,mBAAmB,CAAC;AAG3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAC1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAEjE,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,kBAAkB,CAAC,qBAAqB,CAAC,GACnE,qBAAqB,GACrB,gBAAgB,GAChB,qBAAqB,CAAC;AAG1B,eAAO,MAAM,UAAU,0FA8EtB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListBox.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/ListBox/ListBox.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"ListBox.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/ListBox/ListBox.tsx"],"names":[],"mappings":"AACA,OAAO,KAON,MAAM,OAAO,CAAC;AAgBf,OAAO,gBAAgB,CAAC;AAoTxB,eAAO,MAAM,OAAO,8OAQlB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from
|
|
1
|
+
import { default as React, FormEvent } from 'react';
|
|
2
2
|
import { ColourPropTypes, CommonAndHTMLProps } from '../../Element/constants';
|
|
3
3
|
|
|
4
4
|
type NonZeroNumber = Exclude<number, 0>;
|
|
@@ -15,7 +15,6 @@ export interface ListBoxCustomProps {
|
|
|
15
15
|
helpText?: string;
|
|
16
16
|
errorText?: string;
|
|
17
17
|
allowMultiSelect?: boolean;
|
|
18
|
-
onChange?: (value: string | string[]) => void;
|
|
19
18
|
disabled?: boolean;
|
|
20
19
|
placeholder?: string;
|
|
21
20
|
id?: string;
|
|
@@ -27,6 +26,7 @@ export interface ListBoxCustomProps {
|
|
|
27
26
|
selectionLimit?: NonZeroNumber;
|
|
28
27
|
allowCustomEntries?: boolean;
|
|
29
28
|
isLoading?: boolean;
|
|
29
|
+
onChange?: (event: FormEvent<HTMLDivElement>) => void;
|
|
30
30
|
}
|
|
31
31
|
export type ListBoxProps = Omit<CommonAndHTMLProps<ListBoxElementType>, keyof ListBoxCustomProps> & ListBoxCustomProps;
|
|
32
32
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/ListBox/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/ListBox/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAErF,KAAK,aAAa,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;AAExC,MAAM,MAAM,kBAAkB,GAAG,cAAc,CAAC;AAEhD,MAAM,WAAW,qBAAqB;IAClC,KAAK,EAAW,MAAM,CAAC;IACvB,KAAK,EAAW,MAAM,CAAC;IACvB,WAAY,CAAC,EAAG,KAAK,CAAC,SAAS,CAAC;IAChC,QAAY,CAAC,EAAG,OAAO,CAAC;CAC3B;AAED,MAAM,WAAW,kBAAkB;IAC/B,OAAO,EAAgB,qBAAqB,EAAE,CAAC;IAC/C,KAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,QAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,SAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,gBAAmB,CAAC,EAAG,OAAO,CAAC;IAC/B,QAAmB,CAAC,EAAG,OAAO,CAAC;IAC/B,WAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,EAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,YAAmB,CAAC,EAAG,MAAM,CAAC;IAC9B,aAAmB,CAAC,EAAG,eAAe,CAAC;IACvC,YAAmB,CAAC,EAAG,eAAe,CAAC;IACvC,eAAmB,CAAC,EAAG,eAAe,CAAC;IACvC,cAAmB,CAAC,EAAG,eAAe,CAAC;IACvC,cAAmB,CAAC,EAAG,aAAa,CAAC;IACrC,kBAAmB,CAAC,EAAG,OAAO,CAAC;IAC/B,SAAmB,CAAC,EAAG,OAAO,CAAC;IAC/B,QAAmB,CAAC,EAAG,CAAC,KAAK,EAAE,SAAS,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC;CACrE;AAED,MAAM,MAAM,YAAY,GACpB,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,EAAE,MAAM,kBAAkB,CAAC,GACpE,kBAAkB,CAAC"}
|
package/dist/components/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
"use client;";
|
|
3
|
-
import { A, g, h, B, i, b, a, C, c, r, d, W, f, e, D, E, p, F, k, l, m, H, a8, a9, aa, ab, ac, ad, I, n, L, M, v, w, N, y, x, O, Q, z, P, G, J, q, R, u, t, K, S, o, Z, X, Y, V, _, $, j, a0, s, a1, a2, ae, T, a3, a6, a5, a7, U, a4 } from "../Heading-
|
|
3
|
+
import { A, g, h, B, i, b, a, C, c, r, d, W, f, e, D, E, p, F, k, l, m, H, a8, a9, aa, ab, ac, ad, I, n, L, M, v, w, N, y, x, O, Q, z, P, G, J, q, R, u, t, K, S, o, Z, X, Y, V, _, $, j, a0, s, a1, a2, ae, T, a3, a6, a5, a7, U, a4 } from "../Heading-BsMbA6hR.js";
|
|
4
4
|
export {
|
|
5
5
|
A as Accordion,
|
|
6
6
|
g as Article,
|