@asaleh37/ui-base 1.2.15 → 1.2.16
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 +1 -10
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -17
- package/public/icons/LICENSE.md +5 -0
- package/public/icons/arrow-clockwise.svg +4 -0
- package/public/icons/arrow-counterclockwise.svg +4 -0
- package/public/icons/journal-text.svg +5 -0
- package/public/icons/justify.svg +3 -0
- package/public/icons/text-center.svg +3 -0
- package/public/icons/text-left.svg +3 -0
- package/public/icons/text-paragraph.svg +3 -0
- package/public/icons/text-right.svg +3 -0
- package/public/icons/type-bold.svg +3 -0
- package/public/icons/type-italic.svg +3 -0
- package/public/icons/type-strikethrough.svg +3 -0
- package/public/icons/type-underline.svg +3 -0
- package/src/components/administration/dev/MailBodyGrid.tsx +3 -2
- package/src/components/common/Home.tsx +23 -24
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +0 -20
- package/src/components/templates/index.ts +0 -1
- package/src/index.ts +0 -4
- package/src/redux/features/common/SideBarSlice.ts +0 -2
- package/vite.config.ts +1 -6
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/HtmlEditor.tsx +0 -144
- package/src/global-shim.ts +0 -4
package/dist/index.d.ts
CHANGED
|
@@ -407,15 +407,6 @@ 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
|
-
|
|
419
410
|
interface APIRequest {
|
|
420
411
|
endPointURI: string;
|
|
421
412
|
parameters?: any;
|
|
@@ -487,5 +478,5 @@ declare const LIGHT_THEME_INITIAL_SECANDARY_COLOR = "#ff6d00";
|
|
|
487
478
|
declare const DARK_THEME_INITIAL_MAIN_COLOR = "#ea690e";
|
|
488
479
|
declare const DARK_THEME_INITIAL_SECANDARY_COLOR = "#74776B";
|
|
489
480
|
|
|
490
|
-
export { BaseApp, CheckBox, ComboBox, DARK_THEME_INITIAL_MAIN_COLOR, DARK_THEME_INITIAL_SECANDARY_COLOR, DATE_FORMAT, DATE_TIME_FORMAT, Datefield, DatetimeField,
|
|
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 };
|
|
491
482
|
export type { EditDeleteAction, ExtendedTreeItemProps, FormActionProps, FormElementFieldProps, FormElementGroupProps, FormElementNodeProps, FormElementProps, FormElementSize, MakeOptional, ModalFormProps, RecordAction, RecordFieldProps, SystemRoute, TemplateFormProps, TemplateGridColDef, TemplateGridColumnProps, TemplateGridProps, TemplateGridTopBarProps, TransferListProps };
|