@apexcura/ui-components 0.0.16-Beta6 → 0.0.16-Beta8
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 +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +5437 -3904
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5436 -3903
- 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;
|
|
@@ -148,4 +151,6 @@ declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
|
148
151
|
|
|
149
152
|
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
150
153
|
|
|
151
|
-
|
|
154
|
+
declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
|
|
155
|
+
|
|
156
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NotificationAlert, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|
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;
|
|
@@ -148,4 +151,6 @@ declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
|
148
151
|
|
|
149
152
|
declare const ColorPickerElement: (props: ElementType) => React$1.JSX.Element;
|
|
150
153
|
|
|
151
|
-
|
|
154
|
+
declare const NotificationAlert: (props: ElementType) => React$1.JSX.Element;
|
|
155
|
+
|
|
156
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, ColorPickerElement, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NotificationAlert, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|