@apexcura/ui-components 0.0.16-Beta5 → 0.0.16-Beta7
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -77,6 +77,9 @@ type ElementType = {
|
|
|
77
77
|
mode?: "multiple" | "tags" | undefined;
|
|
78
78
|
picker?: "date" | "week" | "month" | "quarter" | "year";
|
|
79
79
|
weekrange?: boolean;
|
|
80
|
+
message?: string;
|
|
81
|
+
description?: string;
|
|
82
|
+
notificationType?: 'success' | 'info' | 'warning' | 'error';
|
|
80
83
|
};
|
|
81
84
|
|
|
82
85
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -77,6 +77,9 @@ type ElementType = {
|
|
|
77
77
|
mode?: "multiple" | "tags" | undefined;
|
|
78
78
|
picker?: "date" | "week" | "month" | "quarter" | "year";
|
|
79
79
|
weekrange?: boolean;
|
|
80
|
+
message?: string;
|
|
81
|
+
description?: string;
|
|
82
|
+
notificationType?: 'success' | 'info' | 'warning' | 'error';
|
|
80
83
|
};
|
|
81
84
|
|
|
82
85
|
declare const TextElement: (props: ElementType) => React$1.JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -92197,7 +92197,7 @@ var PasswordElement = (props) => {
|
|
|
92197
92197
|
},
|
|
92198
92198
|
iconRender: renderVisibilityIcon,
|
|
92199
92199
|
visibilityToggle: {
|
|
92200
|
-
visible: passwordVisible,
|
|
92200
|
+
visible: passwordVisible && passwordVisible,
|
|
92201
92201
|
onVisibleChange: handleVisibilityToggle
|
|
92202
92202
|
}
|
|
92203
92203
|
}
|
|
@@ -92344,7 +92344,7 @@ var RadioElement = (props) => {
|
|
|
92344
92344
|
// src/Components/Checkbox.tsx
|
|
92345
92345
|
var import_react140 = __toESM(require_react());
|
|
92346
92346
|
var CheckboxGroup2 = checkbox_default.Group;
|
|
92347
|
-
var defaultCheckedList = [];
|
|
92347
|
+
var defaultCheckedList = ["lakku"];
|
|
92348
92348
|
var CheckboxElement = (props) => {
|
|
92349
92349
|
const [checkedList, setCheckedList] = (0, import_react140.useState)(defaultCheckedList);
|
|
92350
92350
|
const options = props.options || [];
|
|
@@ -92381,7 +92381,7 @@ var CheckboxElement = (props) => {
|
|
|
92381
92381
|
style: props.styles,
|
|
92382
92382
|
className: props.className,
|
|
92383
92383
|
options,
|
|
92384
|
-
value: checkedList,
|
|
92384
|
+
value: checkedList && checkedList,
|
|
92385
92385
|
onChange: handleChange
|
|
92386
92386
|
}
|
|
92387
92387
|
));
|