@asaleh37/ui-base 1.2.8 → 1.2.9
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.ts
CHANGED
|
@@ -407,6 +407,15 @@ declare const TemplateForm: react__default.FC<TemplateFormProps>;
|
|
|
407
407
|
|
|
408
408
|
declare const TemplateGrid: react__default.FC<TemplateGridProps>;
|
|
409
409
|
|
|
410
|
+
type HtmlEditorProps = {
|
|
411
|
+
label?: string;
|
|
412
|
+
value: string;
|
|
413
|
+
setValue: (v: any) => void;
|
|
414
|
+
maxLength: number;
|
|
415
|
+
errorMessage?: string;
|
|
416
|
+
};
|
|
417
|
+
declare const HtmlEditor: React.FC<HtmlEditorProps>;
|
|
418
|
+
|
|
410
419
|
interface APIRequest {
|
|
411
420
|
endPointURI: string;
|
|
412
421
|
parameters?: any;
|
|
@@ -478,5 +487,5 @@ declare const LIGHT_THEME_INITIAL_SECANDARY_COLOR = "#ff6d00";
|
|
|
478
487
|
declare const DARK_THEME_INITIAL_MAIN_COLOR = "#ea690e";
|
|
479
488
|
declare const DARK_THEME_INITIAL_SECANDARY_COLOR = "#74776B";
|
|
480
489
|
|
|
481
|
-
export { BaseApp, CheckBox, ComboBox, DARK_THEME_INITIAL_MAIN_COLOR, DARK_THEME_INITIAL_SECANDARY_COLOR, DATE_FORMAT, DATE_TIME_FORMAT, Datefield, DatetimeField, LIGHT_THEME_INITIAL_MAIN_COLOR, LIGHT_THEME_INITIAL_SECANDARY_COLOR, TemplateBarChart, TemplateDataCard, TemplateForm, TemplateGauge, TemplateGrid, TemplateLineChart, TemplateLineProgress, TemplatePieChart, TemplateTextField, TransferList, capitalizeFirstLetter, hasDigitsOnly, isNumber, isNumeric, isValidEmail, useApiActions, useAxios, useConfirmationWindow, useIsMobile, useLoadingMask, useSession, useWindow };
|
|
490
|
+
export { BaseApp, CheckBox, ComboBox, DARK_THEME_INITIAL_MAIN_COLOR, DARK_THEME_INITIAL_SECANDARY_COLOR, DATE_FORMAT, DATE_TIME_FORMAT, Datefield, DatetimeField, HtmlEditor, LIGHT_THEME_INITIAL_MAIN_COLOR, LIGHT_THEME_INITIAL_SECANDARY_COLOR, TemplateBarChart, TemplateDataCard, TemplateForm, TemplateGauge, TemplateGrid, TemplateLineChart, TemplateLineProgress, TemplatePieChart, TemplateTextField, TransferList, capitalizeFirstLetter, hasDigitsOnly, isNumber, isNumeric, isValidEmail, useApiActions, useAxios, useConfirmationWindow, useIsMobile, useLoadingMask, useSession, useWindow };
|
|
482
491
|
export type { EditDeleteAction, ExtendedTreeItemProps, FormActionProps, FormElementFieldProps, FormElementGroupProps, FormElementNodeProps, FormElementProps, FormElementSize, MakeOptional, ModalFormProps, RecordAction, RecordFieldProps, SystemRoute, TemplateFormProps, TemplateGridColDef, TemplateGridColumnProps, TemplateGridProps, TemplateGridTopBarProps, TransferListProps };
|