reactive-bulma 1.16.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -1
- package/dist/cjs/index.js +14 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/atoms/Delete/index.d.ts +4 -0
- package/dist/cjs/types/components/atoms/index.d.ts +1 -0
- package/dist/cjs/types/interfaces/atomProps.d.ts +4 -0
- package/dist/esm/index.js +14 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/atoms/Delete/index.d.ts +4 -0
- package/dist/esm/types/components/atoms/index.d.ts +1 -0
- package/dist/esm/types/interfaces/atomProps.d.ts +4 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
@@ -90,4 +90,8 @@ export interface TextAreaProps extends Omit<InputProps, 'isRounded' | 'type'> {
|
|
90
90
|
rows?: number;
|
91
91
|
isFixedSize?: boolean;
|
92
92
|
}
|
93
|
+
export interface DeleteProps extends BasicProps {
|
94
|
+
size?: Exclude<basicSizeType, 'is-normal'>;
|
95
|
+
onClick?: () => void;
|
96
|
+
}
|
93
97
|
export {};
|
package/dist/esm/index.js
CHANGED
@@ -2921,21 +2921,21 @@ const Tag = ({ text, testId = null, style = null, color = null, isLight = null,
|
|
2921
2921
|
});
|
2922
2922
|
return withAddon ? (React.createElement("section", { "data-testid": _testId, style: style !== null && style !== void 0 ? style : undefined, className: tagsWrapperClasses },
|
2923
2923
|
React.createElement("span", { className: tagClasses }, text),
|
2924
|
-
withDelete ? (React.createElement("a", { "data-testid": `${_testId}-delete`, className: 'tag is-delete', onClick: onDeleteClick
|
2924
|
+
withDelete ? (React.createElement("a", { "data-testid": `${_testId}-delete`, className: 'tag is-delete', onClick: onDeleteClick !== null && onDeleteClick !== void 0 ? onDeleteClick : undefined })) : (React.createElement("span", { className: addonTagClasses }, addonText)))) : (React.createElement("span", { "data-testid": _testId, style: style !== null && style !== void 0 ? style : undefined, className: tagClasses },
|
2925
2925
|
text,
|
2926
|
-
withDelete ? (React.createElement("button", { "data-testid": `${_testId}-delete`, className: 'delete', onClick: onDeleteClick
|
2926
|
+
withDelete ? (React.createElement("button", { "data-testid": `${_testId}-delete`, className: 'delete', onClick: onDeleteClick !== null && onDeleteClick !== void 0 ? onDeleteClick : undefined })) : null));
|
2927
2927
|
};
|
2928
2928
|
|
2929
2929
|
const Box = ({ testId = 'test-box', style = null, children = null }) => children ? (React.createElement("section", { "data-testid": testId, className: 'box', style: style !== null && style !== void 0 ? style : undefined }, children)) : null;
|
2930
2930
|
|
2931
2931
|
const renderTitleSection = (section) => {
|
2932
|
-
var _a, _b;
|
2932
|
+
var _a, _b, _c;
|
2933
2933
|
const sectionClasses = parseClasses([
|
2934
2934
|
section === null || section === void 0 ? void 0 : section.prop,
|
2935
2935
|
(_a = section === null || section === void 0 ? void 0 : section.size) !== null && _a !== void 0 ? _a : 'is-6',
|
2936
2936
|
(section === null || section === void 0 ? void 0 : section.prop) === 'title' && (section === null || section === void 0 ? void 0 : section.isSpaced) ? 'is-spaced' : null
|
2937
2937
|
]);
|
2938
|
-
return section ? (React.createElement("p", { "data-testid": (_b = section === null || section === void 0 ? void 0 : section.testId) !== null && _b !== void 0 ? _b : `${section === null || section === void 0 ? void 0 : section.prop}-test`, className: sectionClasses, style: section.style
|
2938
|
+
return section ? (React.createElement("p", { "data-testid": (_b = section === null || section === void 0 ? void 0 : section.testId) !== null && _b !== void 0 ? _b : `${section === null || section === void 0 ? void 0 : section.prop}-test`, className: sectionClasses, style: (_c = section.style) !== null && _c !== void 0 ? _c : undefined }, section === null || section === void 0 ? void 0 : section.text)) : null;
|
2939
2939
|
};
|
2940
2940
|
const Title = ({ main, secondary }) => (React.createElement(React.Fragment, null,
|
2941
2941
|
renderTitleSection(main),
|
@@ -3036,5 +3036,14 @@ const TextArea = ({ testId = null, text = null, cols = null, rows = null, isDisa
|
|
3036
3036
|
return (React.createElement("textarea", { "data-testid": _testId, defaultValue: text !== null && text !== void 0 ? text : undefined, cols: cols !== null && cols !== void 0 ? cols : undefined, rows: rows !== null && rows !== void 0 ? rows : undefined, disabled: isDisabled, readOnly: isReadonly, style: style !== null && style !== void 0 ? style : undefined, className: textAreaClasses, onClick: onClick !== null && onClick !== void 0 ? onClick : undefined, onChange: onChange !== null && onChange !== void 0 ? onChange : undefined }));
|
3037
3037
|
};
|
3038
3038
|
|
3039
|
-
|
3039
|
+
const Delete = ({ testId = null, style = null, size = null, onClick = null }) => {
|
3040
|
+
const deleteClasses = parseClasses(['delete', size]);
|
3041
|
+
const _testId = testId !== null && testId !== void 0 ? testId : parseTestId({
|
3042
|
+
tag: 'delete',
|
3043
|
+
parsedClasses: deleteClasses
|
3044
|
+
});
|
3045
|
+
return (React.createElement("button", { "data-testid": _testId, style: style !== null && style !== void 0 ? style : undefined, className: deleteClasses, onClick: onClick !== null && onClick !== void 0 ? onClick : undefined }));
|
3046
|
+
};
|
3047
|
+
|
3048
|
+
export { Block, Box, Button, Column, Delete, Icon, Input, ProgressBar, Tag, TextArea, Title };
|
3040
3049
|
//# sourceMappingURL=index.js.map
|