@archbase/components 3.0.0
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/admin/types.d.ts +65 -0
- package/dist/archbase-components-3.0.0.tgz +0 -0
- package/dist/buttons/ActionsDemo.d.ts +2 -0
- package/dist/buttons/ArchbaseActionButtons.d.ts +61 -0
- package/dist/buttons/index.d.ts +2 -0
- package/dist/charts/ArchbaseTimeline.d.ts +24 -0
- package/dist/charts/index.d.ts +3 -0
- package/dist/charts/vis-timeline/ArchbaseVisTimeline.d.ts +9 -0
- package/dist/charts/vis-timeline/ArchbaseVisTimeline.types.d.ts +284 -0
- package/dist/charts/vis-timeline/index.d.ts +9 -0
- package/dist/charts/vis-timeline/utils/timelineOptions.d.ts +68 -0
- package/dist/datagrid/components/index.d.ts +6 -0
- package/dist/datagrid/components/pagination/grid-pagination.d.ts +7 -0
- package/dist/datagrid/components/render/archbase-data-grid-item-renderer.d.ts +10 -0
- package/dist/datagrid/components/toolbar/global-search-input.d.ts +16 -0
- package/dist/datagrid/components/toolbar/grid-toolbar.d.ts +19 -0
- package/dist/datagrid/hooks/index.d.ts +3 -0
- package/dist/datagrid/hooks/use-grid-data-stable-rendering.d.ts +15 -0
- package/dist/datagrid/hooks/use-grid-data.d.ts +32 -0
- package/dist/datagrid/hooks/use-grid-details-panel.d.ts +51 -0
- package/dist/datagrid/index.d.ts +6 -0
- package/dist/datagrid/main/archbase-data-grid-column.d.ts +26 -0
- package/dist/datagrid/main/archbase-data-grid-formatters.d.ts +57 -0
- package/dist/datagrid/main/archbase-data-grid-pagination.d.ts +8 -0
- package/dist/datagrid/main/archbase-data-grid-toolbar.d.ts +7 -0
- package/dist/datagrid/main/archbase-data-grid-types.d.ts +252 -0
- package/dist/datagrid/main/archbase-data-grid-utils.d.ts +45 -0
- package/dist/datagrid/main/archbase-data-grid.d.ts +9 -0
- package/dist/datagrid/main/archbase-detail-panel-component.d.ts +52 -0
- package/dist/datagrid/main/archbase-expand-button.d.ts +22 -0
- package/dist/datagrid/main/archbase-grid-popover.d.ts +37 -0
- package/dist/datagrid/main/grid-row-actions.d.ts +15 -0
- package/dist/datagrid/main/index.d.ts +21 -0
- package/dist/datagrid/modals/export-data.d.ts +13 -0
- package/dist/datagrid/modals/export-modal.d.ts +9 -0
- package/dist/datagrid/modals/index.d.ts +6 -0
- package/dist/datagrid/modals/print-data.d.ts +16 -0
- package/dist/datagrid/modals/print-modal.d.ts +9 -0
- package/dist/datagrid/types/grid-props.d.ts +48 -0
- package/dist/datagrid/types/index.d.ts +1 -0
- package/dist/datagrid/utils/formatter.d.ts +39 -0
- package/dist/datagrid/utils/index.d.ts +1 -0
- package/dist/debug/index.d.ts +4 -0
- package/dist/debug/jsonpathpicker/ArchbaseJsonPathPicker.d.ts +37 -0
- package/dist/debug/jsonpathpicker/index.d.ts +1 -0
- package/dist/debug/jsonview/ArchbaseJsonViewDataRenderer.d.ts +34 -0
- package/dist/debug/jsonview/ArchbaseJsonViewDataTypeDetection.d.ts +8 -0
- package/dist/debug/jsonview/index.d.ts +11 -0
- package/dist/debug/objectinspector/ArchbaseDebugInspector.d.ts +23 -0
- package/dist/debug/objectinspector/ArchbaseFloatingWindow.d.ts +24 -0
- package/dist/debug/objectinspector/ArchbaseObjectInspector.d.ts +6 -0
- package/dist/debug/objectinspector/index.d.ts +3 -0
- package/dist/display/index.d.ts +4 -0
- package/dist/editors/ArchbaseAsyncMultiSelect.d.ts +112 -0
- package/dist/editors/ArchbaseAsyncSelect.context.d.ts +8 -0
- package/dist/editors/ArchbaseAsyncSelect.d.ts +102 -0
- package/dist/editors/ArchbaseAvatarEdit.d.ts +49 -0
- package/dist/editors/ArchbaseCheckbox.d.ts +45 -0
- package/dist/editors/ArchbaseChip.d.ts +43 -0
- package/dist/editors/ArchbaseChipGroup.d.ts +42 -0
- package/dist/editors/ArchbaseChipItem.d.ts +18 -0
- package/dist/editors/ArchbaseColorPicker.d.ts +3 -0
- package/dist/editors/ArchbaseCountdownProgress.d.ts +5 -0
- package/dist/editors/ArchbaseCronExpressionEdit.d.ts +16 -0
- package/dist/editors/ArchbaseCronExpressionEditor.d.ts +8 -0
- package/dist/editors/ArchbaseDatePicker.d.ts +2 -0
- package/dist/editors/ArchbaseDatePickerEdit.d.ts +85 -0
- package/dist/editors/ArchbaseDatePickerRange.d.ts +47 -0
- package/dist/editors/ArchbaseDateTimePickerEdit.d.ts +43 -0
- package/dist/editors/ArchbaseDateTimePickerRange.d.ts +58 -0
- package/dist/editors/ArchbaseEdit.d.ts +56 -0
- package/dist/editors/ArchbaseEdit.example.d.ts +8 -0
- package/dist/editors/ArchbaseFileAttachment.d.ts +17 -0
- package/dist/editors/ArchbaseImageEdit.d.ts +50 -0
- package/dist/editors/ArchbaseJsonEdit.d.ts +49 -0
- package/dist/editors/ArchbaseKeyValueEditor.d.ts +22 -0
- package/dist/editors/ArchbaseLookupEdit.d.ts +57 -0
- package/dist/editors/ArchbaseLookupNumber.d.ts +69 -0
- package/dist/editors/ArchbaseLookupSelect.d.ts +9 -0
- package/dist/editors/ArchbaseMarkdownEdit.d.ts +52 -0
- package/dist/editors/ArchbaseMaskEdit.d.ts +79 -0
- package/dist/editors/ArchbaseNumberEdit.d.ts +51 -0
- package/dist/editors/ArchbaseNumberInput.d.ts +2 -0
- package/dist/editors/ArchbaseOperationHoursEditor.d.ts +8 -0
- package/dist/editors/ArchbasePasswordEdit.d.ts +44 -0
- package/dist/editors/ArchbasePasswordInput.d.ts +2 -0
- package/dist/editors/ArchbaseRadio.d.ts +2 -0
- package/dist/editors/ArchbaseRadioGroup.d.ts +45 -0
- package/dist/editors/ArchbaseRadioItem.d.ts +12 -0
- package/dist/editors/ArchbaseRating.d.ts +52 -0
- package/dist/editors/ArchbaseRichTextEdit.d.ts +80 -0
- package/dist/editors/ArchbaseSelect.context.d.ts +8 -0
- package/dist/editors/ArchbaseSelect.d.ts +107 -0
- package/dist/editors/ArchbaseSelectItem.d.ts +15 -0
- package/dist/editors/ArchbaseSwitch.d.ts +53 -0
- package/dist/editors/ArchbaseTextArea.d.ts +47 -0
- package/dist/editors/ArchbaseTimeEdit.d.ts +52 -0
- package/dist/editors/ArchbaseTimeRangeSelector.d.ts +40 -0
- package/dist/editors/ArchbaseTreeSelect.d.ts +65 -0
- package/dist/editors/index.d.ts +81 -0
- package/dist/feedback/index.d.ts +4 -0
- package/dist/filters/ArchbaseCompositeFilters.d.ts +23 -0
- package/dist/filters/ArchbaseCompositeFilters.types.d.ts +303 -0
- package/dist/filters/ArchbaseCompositeFilters.utils.d.ts +69 -0
- package/dist/filters/components/FilterPill.d.ts +5 -0
- package/dist/filters/hooks/index.d.ts +4 -0
- package/dist/filters/hooks/useArchbaseFilterHistory.d.ts +24 -0
- package/dist/filters/hooks/useArchbaseFilterPresets.d.ts +23 -0
- package/dist/filters/hooks/useArchbaseFilters.d.ts +32 -0
- package/dist/filters/hooks/useArchbaseQuickFilters.d.ts +26 -0
- package/dist/filters/index.d.ts +8 -0
- package/dist/forms/index.d.ts +3 -0
- package/dist/hooks/index.d.ts +5 -0
- package/dist/hooks/useArchbaseContainerDimensions.d.ts +4 -0
- package/dist/hooks/useArchbaseElementSizeArea.d.ts +6 -0
- package/dist/hooks/useArchbaseListContext.d.ts +2 -0
- package/dist/hooks/useArchbaseNavigateParams.d.ts +3 -0
- package/dist/hooks/useArchbaseVisible.d.ts +2 -0
- package/dist/image/ArchbaseImage.d.ts +33 -0
- package/dist/image/ArchbaseMicrosoftAvatar.d.ts +7 -0
- package/dist/image/editor/components/BasicFilters/BasicFilter.d.ts +9 -0
- package/dist/image/editor/components/CropprWrapper/ArchbaseCropperWrapper.d.ts +12 -0
- package/dist/image/editor/components/EditImage/ArchbaseEditImage.d.ts +11 -0
- package/dist/image/editor/components/Input/Input.d.ts +9 -0
- package/dist/image/editor/components/Tab/Tab.d.ts +23 -0
- package/dist/image/editor/functions/croppr/box.d.ts +95 -0
- package/dist/image/editor/functions/croppr/core.d.ts +121 -0
- package/dist/image/editor/functions/croppr/croppr.d.ts +68 -0
- package/dist/image/editor/functions/croppr/handle.d.ts +23 -0
- package/dist/image/editor/functions/croppr/index.d.ts +2 -0
- package/dist/image/editor/functions/croppr/touch.d.ts +10 -0
- package/dist/image/editor/functions/image-processing.d.ts +11 -0
- package/dist/image/editor/index.d.ts +12 -0
- package/dist/image/editor/models/index.models.d.ts +45 -0
- package/dist/image/index.d.ts +7 -0
- package/dist/image/languages.d.ts +299 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +18368 -0
- package/dist/jsonschema/ArchbaseJsonSchemaEditor.types.d.ts +131 -0
- package/dist/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.context.d.ts +7 -0
- package/dist/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.d.ts +9 -0
- package/dist/jsonschema/JsonSchemaEditor/advanced-boolean/index.d.ts +2 -0
- package/dist/jsonschema/JsonSchemaEditor/advanced-number/index.d.ts +2 -0
- package/dist/jsonschema/JsonSchemaEditor/advanced-string/index.d.ts +2 -0
- package/dist/jsonschema/JsonSchemaEditor/drop-plus/index.d.ts +10 -0
- package/dist/jsonschema/JsonSchemaEditor/index.d.ts +2 -0
- package/dist/jsonschema/JsonSchemaEditor/schema-advanced/index.d.ts +6 -0
- package/dist/jsonschema/JsonSchemaEditor/schema-array/index.d.ts +8 -0
- package/dist/jsonschema/JsonSchemaEditor/schema-item/index.d.ts +11 -0
- package/dist/jsonschema/JsonSchemaEditor/schema-object/index.d.ts +7 -0
- package/dist/jsonschema/JsonSchemaEditor/schema-root/index.d.ts +8 -0
- package/dist/jsonschema/JsonSchemaEditor/utils.d.ts +25 -0
- package/dist/jsonschema/JsonSchemaEditor/whoops.d.ts +2 -0
- package/dist/jsonschema/index.d.ts +2 -0
- package/dist/list/ArchbaseList.context.d.ts +27 -0
- package/dist/list/ArchbaseList.d.ts +104 -0
- package/dist/list/ArchbaseListItem.d.ts +59 -0
- package/dist/list/index.d.ts +8 -0
- package/dist/list/treeview/ArchbaseTreeView.d.ts +44 -0
- package/dist/list/treeview/ArchbaseTreeView.types.d.ts +40 -0
- package/dist/list/treeview/ArchbaseTreeViewItem.d.ts +19 -0
- package/dist/list/treeview/index.d.ts +5 -0
- package/dist/list-view/ArchbaseListViewTable.d.ts +111 -0
- package/dist/list-view/index.d.ts +2 -0
- package/dist/markdown/ArchbaseMarkdown.d.ts +23 -0
- package/dist/markdown/ArchbaseMarkdown.types.d.ts +181 -0
- package/dist/markdown/components/CodeBlock.d.ts +23 -0
- package/dist/markdown/components/LinkRenderer.d.ts +16 -0
- package/dist/markdown/index.d.ts +11 -0
- package/dist/masonry/ArchbaseMasonry.context.d.ts +21 -0
- package/dist/masonry/ArchbaseMasonry.d.ts +35 -0
- package/dist/masonry/index.d.ts +5 -0
- package/dist/navigation/index.d.ts +3 -0
- package/dist/notification/ArchbaseAlert.d.ts +22 -0
- package/dist/notification/ArchbaseDialog.d.ts +16 -0
- package/dist/notification/ArchbaseNotifications.d.ts +5 -0
- package/dist/notification/index.d.ts +4 -0
- package/dist/onboarding/ArchbaseOnboardingTour.d.ts +99 -0
- package/dist/onboarding/index.d.ts +2 -0
- package/dist/printer/ArchbaseThermalPrinter.d.ts +27 -0
- package/dist/printer/ArchbaseThermalPrinter.types.d.ts +199 -0
- package/dist/printer/index.d.ts +9 -0
- package/dist/printer/utils/escpos.d.ts +127 -0
- package/dist/spreadsheet/ArchbaseSpreadsheetImport.d.ts +4 -0
- package/dist/spreadsheet/ArchbaseSpreadsheetImport.types.d.ts +65 -0
- package/dist/spreadsheet/index.d.ts +2 -0
- package/dist/theme-editor/ArchbaseThemeEditor.d.ts +17 -0
- package/dist/theme-editor/ArchbaseThemeEditor.types.d.ts +187 -0
- package/dist/theme-editor/index.d.ts +9 -0
- package/dist/theme-editor/utils/themeExport.d.ts +198 -0
- package/dist/themes/ArchbaseThemeEditor.d.ts +49 -0
- package/dist/types/index.d.ts +106 -0
- package/dist/video/ArchbaseVideoPlayer.d.ts +18 -0
- package/dist/video/ArchbaseVideoPlayer.types.d.ts +200 -0
- package/dist/video/hooks/useVideoPlayer.d.ts +58 -0
- package/dist/video/index.d.ts +10 -0
- package/dist/viewers/ArchbasePDFViewer.annotations.d.ts +20 -0
- package/dist/viewers/ArchbasePDFViewer.d.ts +2 -0
- package/dist/viewers/ArchbasePDFViewer.toolbar.d.ts +20 -0
- package/dist/viewers/ArchbasePDFViewer.types.d.ts +68 -0
- package/dist/viewers/file-preview/ArchbaseFilePreviewer.d.ts +19 -0
- package/dist/viewers/file-preview/ArchbaseFilePreviewer.types.d.ts +153 -0
- package/dist/viewers/file-preview/index.d.ts +13 -0
- package/dist/viewers/file-preview/utils/fileTypeDetector.d.ts +33 -0
- package/dist/viewers/index.d.ts +5 -0
- package/package.json +154 -0
- package/src/admin/types.ts +73 -0
- package/src/arco.css +6 -0
- package/src/buttons/ActionsDemo.tsx +107 -0
- package/src/buttons/ArchbaseActionButtons.d.ts.map +1 -0
- package/src/buttons/ArchbaseActionButtons.tsx +387 -0
- package/src/buttons/index.d.ts.map +1 -0
- package/src/buttons/index.ts +7 -0
- package/src/charts/ArchbaseTimeline.d.ts.map +1 -0
- package/src/charts/ArchbaseTimeline.tsx +332 -0
- package/src/charts/index.d.ts.map +1 -0
- package/src/charts/index.ts +5 -0
- package/src/charts/vis-timeline/ArchbaseVisTimeline.tsx +401 -0
- package/src/charts/vis-timeline/ArchbaseVisTimeline.types.ts +294 -0
- package/src/charts/vis-timeline/index.ts +36 -0
- package/src/charts/vis-timeline/utils/timelineOptions.ts +213 -0
- package/src/datagrid/components/index.d.ts.map +1 -0
- package/src/datagrid/components/index.tsx +14 -0
- package/src/datagrid/components/pagination/grid-pagination.d.ts.map +1 -0
- package/src/datagrid/components/pagination/grid-pagination.tsx +150 -0
- package/src/datagrid/components/render/archbase-data-grid-item-renderer.tsx +26 -0
- package/src/datagrid/components/toolbar/global-search-input.d.ts.map +1 -0
- package/src/datagrid/components/toolbar/global-search-input.tsx +118 -0
- package/src/datagrid/components/toolbar/grid-toolbar.d.ts.map +1 -0
- package/src/datagrid/components/toolbar/grid-toolbar.tsx +106 -0
- package/src/datagrid/hooks/index.d.ts.map +1 -0
- package/src/datagrid/hooks/index.tsx +18 -0
- package/src/datagrid/hooks/use-grid-data-stable-rendering.d.ts.map +1 -0
- package/src/datagrid/hooks/use-grid-data-stable-rendering.ts +168 -0
- package/src/datagrid/hooks/use-grid-data.d.ts.map +1 -0
- package/src/datagrid/hooks/use-grid-data.tsx +598 -0
- package/src/datagrid/hooks/use-grid-details-panel.d.ts.map +1 -0
- package/src/datagrid/hooks/use-grid-details-panel.ts +316 -0
- package/src/datagrid/index.d.ts.map +1 -0
- package/src/datagrid/index.tsx +12 -0
- package/src/datagrid/main/archbase-data-grid-column.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-column.ts +46 -0
- package/src/datagrid/main/archbase-data-grid-formatters.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-formatters.tsx +384 -0
- package/src/datagrid/main/archbase-data-grid-pagination.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-pagination.tsx +63 -0
- package/src/datagrid/main/archbase-data-grid-toolbar.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-toolbar.tsx +160 -0
- package/src/datagrid/main/archbase-data-grid-types.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-types.tsx +327 -0
- package/src/datagrid/main/archbase-data-grid-utils.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid-utils.ts +494 -0
- package/src/datagrid/main/archbase-data-grid.d.ts.map +1 -0
- package/src/datagrid/main/archbase-data-grid.tsx +1462 -0
- package/src/datagrid/main/archbase-detail-panel-component.d.ts.map +1 -0
- package/src/datagrid/main/archbase-detail-panel-component.tsx +186 -0
- package/src/datagrid/main/archbase-expand-button.d.ts.map +1 -0
- package/src/datagrid/main/archbase-expand-button.tsx +83 -0
- package/src/datagrid/main/archbase-grid-popover.d.ts.map +1 -0
- package/src/datagrid/main/archbase-grid-popover.tsx +188 -0
- package/src/datagrid/main/grid-row-actions.d.ts.map +1 -0
- package/src/datagrid/main/grid-row-actions.tsx +97 -0
- package/src/datagrid/main/index.d.ts.map +1 -0
- package/src/datagrid/main/index.tsx +75 -0
- package/src/datagrid/modals/export-data.d.ts.map +1 -0
- package/src/datagrid/modals/export-data.tsx +183 -0
- package/src/datagrid/modals/export-modal.d.ts.map +1 -0
- package/src/datagrid/modals/export-modal.tsx +168 -0
- package/src/datagrid/modals/index.d.ts.map +1 -0
- package/src/datagrid/modals/index.tsx +6 -0
- package/src/datagrid/modals/print-data.d.ts.map +1 -0
- package/src/datagrid/modals/print-data.tsx +267 -0
- package/src/datagrid/modals/print-modal.d.ts.map +1 -0
- package/src/datagrid/modals/print-modal.tsx +200 -0
- package/src/datagrid/types/grid-props.d.ts.map +1 -0
- package/src/datagrid/types/grid-props.tsx +53 -0
- package/src/datagrid/types/index.d.ts.map +1 -0
- package/src/datagrid/types/index.tsx +1 -0
- package/src/datagrid/utils/formatter.d.ts.map +1 -0
- package/src/datagrid/utils/formatter.tsx +308 -0
- package/src/datagrid/utils/index.d.ts.map +1 -0
- package/src/datagrid/utils/index.tsx +1 -0
- package/src/debug/index.d.ts.map +1 -0
- package/src/debug/index.ts +4 -0
- package/src/debug/jsonpathpicker/ArchbaseJsonPathPicker.css +46 -0
- package/src/debug/jsonpathpicker/ArchbaseJsonPathPicker.d.ts.map +1 -0
- package/src/debug/jsonpathpicker/ArchbaseJsonPathPicker.tsx +341 -0
- package/src/debug/jsonpathpicker/index.d.ts.map +1 -0
- package/src/debug/jsonpathpicker/index.ts +1 -0
- package/src/debug/jsonview/.eslintrc +5 -0
- package/src/debug/jsonview/ArchbaseJsonViewDataRenderer.d.ts.map +1 -0
- package/src/debug/jsonview/ArchbaseJsonViewDataRenderer.tsx +206 -0
- package/src/debug/jsonview/ArchbaseJsonViewDataTypeDetection.d.ts.map +1 -0
- package/src/debug/jsonview/ArchbaseJsonViewDataTypeDetection.ts +31 -0
- package/src/debug/jsonview/index.d.ts.map +1 -0
- package/src/debug/jsonview/index.tsx +60 -0
- package/src/debug/jsonview/styles.module.css +118 -0
- package/src/debug/jsonview/styles.module.css.d.ts +4 -0
- package/src/debug/objectinspector/ArchbaseDebugInspector.d.ts.map +1 -0
- package/src/debug/objectinspector/ArchbaseDebugInspector.tsx +79 -0
- package/src/debug/objectinspector/ArchbaseFloatingWindow.css +70 -0
- package/src/debug/objectinspector/ArchbaseFloatingWindow.d.ts.map +1 -0
- package/src/debug/objectinspector/ArchbaseFloatingWindow.tsx +266 -0
- package/src/debug/objectinspector/ArchbaseObjectInspector.d.ts.map +1 -0
- package/src/debug/objectinspector/ArchbaseObjectInspector.tsx +21 -0
- package/src/debug/objectinspector/index.d.ts.map +1 -0
- package/src/debug/objectinspector/index.ts +3 -0
- package/src/display/index.d.ts.map +1 -0
- package/src/display/index.ts +5 -0
- package/src/editors/ArchbaseAsyncMultiSelect.d.ts.map +1 -0
- package/src/editors/ArchbaseAsyncMultiSelect.tsx +667 -0
- package/src/editors/ArchbaseAsyncSelect.context.d.ts.map +1 -0
- package/src/editors/ArchbaseAsyncSelect.context.ts +9 -0
- package/src/editors/ArchbaseAsyncSelect.d.ts.map +1 -0
- package/src/editors/ArchbaseAsyncSelect.tsx +581 -0
- package/src/editors/ArchbaseAvatarEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseAvatarEdit.tsx +625 -0
- package/src/editors/ArchbaseCheckbox.d.ts.map +1 -0
- package/src/editors/ArchbaseCheckbox.tsx +250 -0
- package/src/editors/ArchbaseChip.d.ts.map +1 -0
- package/src/editors/ArchbaseChip.tsx +233 -0
- package/src/editors/ArchbaseChipGroup.d.ts.map +1 -0
- package/src/editors/ArchbaseChipGroup.tsx +282 -0
- package/src/editors/ArchbaseChipItem.d.ts.map +1 -0
- package/src/editors/ArchbaseChipItem.tsx +21 -0
- package/src/editors/ArchbaseColorPicker.d.ts.map +1 -0
- package/src/editors/ArchbaseColorPicker.tsx +7 -0
- package/src/editors/ArchbaseCountdownProgress.d.ts.map +1 -0
- package/src/editors/ArchbaseCountdownProgress.tsx +57 -0
- package/src/editors/ArchbaseCronExpressionEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseCronExpressionEdit.tsx +86 -0
- package/src/editors/ArchbaseCronExpressionEditor.d.ts.map +1 -0
- package/src/editors/ArchbaseCronExpressionEditor.tsx +133 -0
- package/src/editors/ArchbaseDatePicker.tsx +3 -0
- package/src/editors/ArchbaseDatePickerEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseDatePickerEdit.tsx +785 -0
- package/src/editors/ArchbaseDatePickerRange.d.ts.map +1 -0
- package/src/editors/ArchbaseDatePickerRange.tsx +142 -0
- package/src/editors/ArchbaseDateTimePickerEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseDateTimePickerEdit.tsx +259 -0
- package/src/editors/ArchbaseDateTimePickerRange.d.ts.map +1 -0
- package/src/editors/ArchbaseDateTimePickerRange.tsx +220 -0
- package/src/editors/ArchbaseEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseEdit.example.tsx +240 -0
- package/src/editors/ArchbaseEdit.tsx +325 -0
- package/src/editors/ArchbaseFileAttachment.d.ts.map +1 -0
- package/src/editors/ArchbaseFileAttachment.tsx +259 -0
- package/src/editors/ArchbaseImageEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseImageEdit.tsx +255 -0
- package/src/editors/ArchbaseJsonEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseJsonEdit.tsx +257 -0
- package/src/editors/ArchbaseKeyValueEditor.d.ts.map +1 -0
- package/src/editors/ArchbaseKeyValueEditor.tsx +180 -0
- package/src/editors/ArchbaseLookupEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseLookupEdit.tsx +368 -0
- package/src/editors/ArchbaseLookupNumber.d.ts.map +1 -0
- package/src/editors/ArchbaseLookupNumber.tsx +390 -0
- package/src/editors/ArchbaseLookupSelect.d.ts.map +1 -0
- package/src/editors/ArchbaseLookupSelect.tsx +225 -0
- package/src/editors/ArchbaseMarkdownEdit.tsx +367 -0
- package/src/editors/ArchbaseMaskEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseMaskEdit.tsx +346 -0
- package/src/editors/ArchbaseNumberEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseNumberEdit.tsx +626 -0
- package/src/editors/ArchbaseNumberInput.tsx +3 -0
- package/src/editors/ArchbaseOperationHoursEditor.d.ts.map +1 -0
- package/src/editors/ArchbaseOperationHoursEditor.tsx +206 -0
- package/src/editors/ArchbasePasswordEdit.d.ts.map +1 -0
- package/src/editors/ArchbasePasswordEdit.tsx +265 -0
- package/src/editors/ArchbasePasswordInput.tsx +3 -0
- package/src/editors/ArchbaseRadio.tsx +3 -0
- package/src/editors/ArchbaseRadioGroup.d.ts.map +1 -0
- package/src/editors/ArchbaseRadioGroup.tsx +293 -0
- package/src/editors/ArchbaseRadioItem.d.ts.map +1 -0
- package/src/editors/ArchbaseRadioItem.tsx +14 -0
- package/src/editors/ArchbaseRating.d.ts.map +1 -0
- package/src/editors/ArchbaseRating.tsx +236 -0
- package/src/editors/ArchbaseRichTextEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseRichTextEdit.tsx +435 -0
- package/src/editors/ArchbaseSelect.context.d.ts.map +1 -0
- package/src/editors/ArchbaseSelect.context.ts +9 -0
- package/src/editors/ArchbaseSelect.d.ts.map +1 -0
- package/src/editors/ArchbaseSelect.tsx +550 -0
- package/src/editors/ArchbaseSelectItem.d.ts.map +1 -0
- package/src/editors/ArchbaseSelectItem.tsx +18 -0
- package/src/editors/ArchbaseSwitch.d.ts.map +1 -0
- package/src/editors/ArchbaseSwitch.tsx +266 -0
- package/src/editors/ArchbaseTextArea.d.ts.map +1 -0
- package/src/editors/ArchbaseTextArea.tsx +263 -0
- package/src/editors/ArchbaseTimeEdit.d.ts.map +1 -0
- package/src/editors/ArchbaseTimeEdit.tsx +319 -0
- package/src/editors/ArchbaseTimeRangeSelector.d.ts.map +1 -0
- package/src/editors/ArchbaseTimeRangeSelector.tsx +397 -0
- package/src/editors/ArchbaseTreeSelect.d.ts.map +1 -0
- package/src/editors/ArchbaseTreeSelect.tsx +434 -0
- package/src/editors/index.d.ts.map +1 -0
- package/src/editors/index.tsx +121 -0
- package/src/editors/intro.mdx +4 -0
- package/src/feedback/index.d.ts.map +1 -0
- package/src/feedback/index.ts +5 -0
- package/src/filters/ArchbaseCompositeFilters.tsx +696 -0
- package/src/filters/ArchbaseCompositeFilters.types.ts +402 -0
- package/src/filters/ArchbaseCompositeFilters.utils.ts +378 -0
- package/src/filters/components/FilterPill.tsx +100 -0
- package/src/filters/hooks/index.ts +4 -0
- package/src/filters/hooks/useArchbaseFilterHistory.ts +111 -0
- package/src/filters/hooks/useArchbaseFilterPresets.ts +157 -0
- package/src/filters/hooks/useArchbaseFilters.ts +279 -0
- package/src/filters/hooks/useArchbaseQuickFilters.ts +80 -0
- package/src/filters/index.ts +55 -0
- package/src/forms/index.d.ts.map +1 -0
- package/src/forms/index.ts +4 -0
- package/src/hooks/index.d.ts.map +1 -0
- package/src/hooks/index.ts +5 -0
- package/src/hooks/useArchbaseContainerDimensions.d.ts.map +1 -0
- package/src/hooks/useArchbaseContainerDimensions.ts +28 -0
- package/src/hooks/useArchbaseElementSizeArea.d.ts.map +1 -0
- package/src/hooks/useArchbaseElementSizeArea.ts +39 -0
- package/src/hooks/useArchbaseListContext.d.ts.map +1 -0
- package/src/hooks/useArchbaseListContext.ts +10 -0
- package/src/hooks/useArchbaseNavigateParams.d.ts.map +1 -0
- package/src/hooks/useArchbaseNavigateParams.ts +17 -0
- package/src/hooks/useArchbaseVisible.d.ts.map +1 -0
- package/src/hooks/useArchbaseVisible.ts +35 -0
- package/src/image/.placeholder +0 -0
- package/src/image/ArchbaseImage.d.ts.map +1 -0
- package/src/image/ArchbaseImage.tsx +56 -0
- package/src/image/ArchbaseMicrosoftAvatar.d.ts.map +1 -0
- package/src/image/ArchbaseMicrosoftAvatar.tsx +50 -0
- package/src/image/editor/components/BasicFilters/BasicFilter.d.ts.map +1 -0
- package/src/image/editor/components/BasicFilters/BasicFilter.tsx +179 -0
- package/src/image/editor/components/CropprWrapper/ArchbaseCropper.scss +73 -0
- package/src/image/editor/components/CropprWrapper/ArchbaseCropperWrapper.d.ts.map +1 -0
- package/src/image/editor/components/CropprWrapper/ArchbaseCropperWrapper.tsx +50 -0
- package/src/image/editor/components/EditImage/ArchbaseEditImage.d.ts.map +1 -0
- package/src/image/editor/components/EditImage/ArchbaseEditImage.scss +221 -0
- package/src/image/editor/components/EditImage/ArchbaseEditImage.tsx +469 -0
- package/src/image/editor/components/Input/Input.d.ts.map +1 -0
- package/src/image/editor/components/Input/Input.tsx +70 -0
- package/src/image/editor/components/Tab/Tab.d.ts.map +1 -0
- package/src/image/editor/components/Tab/Tab.tsx +150 -0
- package/src/image/editor/components/Tab/TabsStyles.scss +72 -0
- package/src/image/editor/functions/croppr/box.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/box.ts +272 -0
- package/src/image/editor/functions/croppr/core.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/core.ts +820 -0
- package/src/image/editor/functions/croppr/croppr.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/croppr.ts +136 -0
- package/src/image/editor/functions/croppr/handle.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/handle.ts +75 -0
- package/src/image/editor/functions/croppr/index.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/index.ts +4 -0
- package/src/image/editor/functions/croppr/touch.d.ts.map +1 -0
- package/src/image/editor/functions/croppr/touch.ts +41 -0
- package/src/image/editor/functions/image-processing.d.ts.map +1 -0
- package/src/image/editor/functions/image-processing.ts +202 -0
- package/src/image/editor/image_editor_styles.scss +284 -0
- package/src/image/editor/index.d.ts.map +1 -0
- package/src/image/editor/index.tsx +437 -0
- package/src/image/editor/models/index.models.d.ts.map +1 -0
- package/src/image/editor/models/index.models.ts +48 -0
- package/src/image/index.d.ts.map +1 -0
- package/src/image/index.ts +7 -0
- package/src/image/intro.mdx +4 -0
- package/src/image/languages.d.ts.map +1 -0
- package/src/image/languages.ts +302 -0
- package/src/index.d.ts.map +1 -0
- package/src/index.ts +50 -0
- package/src/jsonschema/ArchbaseJsonSchemaEditor.types.d.ts.map +1 -0
- package/src/jsonschema/ArchbaseJsonSchemaEditor.types.ts +171 -0
- package/src/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.context.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.context.tsx +8 -0
- package/src/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/ArchbaseJsonSchemaEditor.tsx +99 -0
- package/src/jsonschema/JsonSchemaEditor/JsonSchemaEditor.scss +19 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-boolean/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-boolean/index.tsx +33 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-number/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-number/index.tsx +119 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-string/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/advanced-string/index.tsx +146 -0
- package/src/jsonschema/JsonSchemaEditor/drop-plus/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/drop-plus/index.tsx +80 -0
- package/src/jsonschema/JsonSchemaEditor/index.ts +2 -0
- package/src/jsonschema/JsonSchemaEditor/schema-advanced/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/schema-advanced/index.tsx +32 -0
- package/src/jsonschema/JsonSchemaEditor/schema-array/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/schema-array/index.tsx +164 -0
- package/src/jsonschema/JsonSchemaEditor/schema-item/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/schema-item/index.tsx +213 -0
- package/src/jsonschema/JsonSchemaEditor/schema-object/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/schema-object/index.tsx +68 -0
- package/src/jsonschema/JsonSchemaEditor/schema-root/index.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/schema-root/index.tsx +103 -0
- package/src/jsonschema/JsonSchemaEditor/utils.d.ts.map +1 -0
- package/src/jsonschema/JsonSchemaEditor/utils.ts +195 -0
- package/src/jsonschema/JsonSchemaEditor/whoops.tsx +79 -0
- package/src/jsonschema/index.d.ts.map +1 -0
- package/src/jsonschema/index.ts +2 -0
- package/src/list/ArchbaseList.context.d.ts.map +1 -0
- package/src/list/ArchbaseList.context.ts +28 -0
- package/src/list/ArchbaseList.d.ts.map +1 -0
- package/src/list/ArchbaseList.tsx +533 -0
- package/src/list/ArchbaseListItem.d.ts.map +1 -0
- package/src/list/ArchbaseListItem.tsx +161 -0
- package/src/list/index.d.ts.map +1 -0
- package/src/list/index.ts +9 -0
- package/src/list/treeview/ArchbaseTreeView.d.ts.map +1 -0
- package/src/list/treeview/ArchbaseTreeView.module.css +66 -0
- package/src/list/treeview/ArchbaseTreeView.tsx +657 -0
- package/src/list/treeview/ArchbaseTreeView.types.d.ts.map +1 -0
- package/src/list/treeview/ArchbaseTreeView.types.tsx +42 -0
- package/src/list/treeview/ArchbaseTreeViewItem.d.ts.map +1 -0
- package/src/list/treeview/ArchbaseTreeViewItem.tsx +210 -0
- package/src/list/treeview/index.d.ts.map +1 -0
- package/src/list/treeview/index.ts +5 -0
- package/src/list-view/ArchbaseListViewTable.tsx +150 -0
- package/src/list-view/index.ts +2 -0
- package/src/markdown/ArchbaseMarkdown.tsx +463 -0
- package/src/markdown/ArchbaseMarkdown.types.ts +213 -0
- package/src/markdown/components/CodeBlock.tsx +197 -0
- package/src/markdown/components/LinkRenderer.tsx +98 -0
- package/src/markdown/index.ts +29 -0
- package/src/masonry/ArchbaseMasonry.context.d.ts.map +1 -0
- package/src/masonry/ArchbaseMasonry.context.ts +24 -0
- package/src/masonry/ArchbaseMasonry.d.ts.map +1 -0
- package/src/masonry/ArchbaseMasonry.tsx +156 -0
- package/src/masonry/index.d.ts.map +1 -0
- package/src/masonry/index.ts +5 -0
- package/src/navigation/index.d.ts.map +1 -0
- package/src/navigation/index.ts +4 -0
- package/src/notification/ArchbaseAlert.d.ts.map +1 -0
- package/src/notification/ArchbaseAlert.tsx +77 -0
- package/src/notification/ArchbaseDialog.d.ts.map +1 -0
- package/src/notification/ArchbaseDialog.tsx +212 -0
- package/src/notification/ArchbaseNotifications.d.ts.map +1 -0
- package/src/notification/ArchbaseNotifications.tsx +64 -0
- package/src/notification/index.d.ts.map +1 -0
- package/src/notification/index.ts +4 -0
- package/src/notification/intro.mdx +4 -0
- package/src/onboarding/ArchbaseOnboardingTour.tsx +147 -0
- package/src/onboarding/index.ts +2 -0
- package/src/printer/ArchbaseThermalPrinter.tsx +465 -0
- package/src/printer/ArchbaseThermalPrinter.types.ts +221 -0
- package/src/printer/index.ts +54 -0
- package/src/printer/utils/escpos.ts +531 -0
- package/src/spreadsheet/ArchbaseSpreadsheetImport.tsx +223 -0
- package/src/spreadsheet/ArchbaseSpreadsheetImport.types.ts +66 -0
- package/src/spreadsheet/index.ts +10 -0
- package/src/theme-editor/ArchbaseThemeEditor.tsx +728 -0
- package/src/theme-editor/ArchbaseThemeEditor.types.ts +207 -0
- package/src/theme-editor/index.ts +45 -0
- package/src/theme-editor/utils/themeExport.ts +351 -0
- package/src/themes/.placeholder +0 -0
- package/src/themes/ArchbaseThemeEditor.d.ts.map +1 -0
- package/src/themes/ArchbaseThemeEditor.tsx +110 -0
- package/src/treeviews.scss +80 -0
- package/src/types/index.d.ts.map +1 -0
- package/src/types/index.ts +115 -0
- package/src/video/ArchbaseVideoPlayer.tsx +706 -0
- package/src/video/ArchbaseVideoPlayer.types.ts +221 -0
- package/src/video/hooks/useVideoPlayer.ts +362 -0
- package/src/video/index.ts +28 -0
- package/src/viewers/ArchbasePDFViewer.annotations.tsx +423 -0
- package/src/viewers/ArchbasePDFViewer.toolbar.tsx +218 -0
- package/src/viewers/ArchbasePDFViewer.tsx +317 -0
- package/src/viewers/ArchbasePDFViewer.types.ts +85 -0
- package/src/viewers/file-preview/ArchbaseFilePreviewer.tsx +756 -0
- package/src/viewers/file-preview/ArchbaseFilePreviewer.types.ts +186 -0
- package/src/viewers/file-preview/index.ts +43 -0
- package/src/viewers/file-preview/utils/fileTypeDetector.ts +317 -0
- package/src/viewers/index.ts +17 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Box component
|
|
3
|
+
*/
|
|
4
|
+
export default class Box {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new Box instance.
|
|
7
|
+
* @constructor
|
|
8
|
+
* @param {Number} x1
|
|
9
|
+
* @param {Number} y1
|
|
10
|
+
* @param {Number} x2
|
|
11
|
+
* @param {Number} y2
|
|
12
|
+
*/
|
|
13
|
+
x1: any;
|
|
14
|
+
y1: any;
|
|
15
|
+
x2: any;
|
|
16
|
+
y2: any;
|
|
17
|
+
constructor(x1: any, y1: any, x2: any, y2: any);
|
|
18
|
+
/**
|
|
19
|
+
* Sets the new dimensions of the box.
|
|
20
|
+
* @param {Number} x1
|
|
21
|
+
* @param {Number} y1
|
|
22
|
+
* @param {Number} x2
|
|
23
|
+
* @param {Number} y2
|
|
24
|
+
*/
|
|
25
|
+
set(x1?: any, y1?: any, x2?: any, y2?: any): this;
|
|
26
|
+
/**
|
|
27
|
+
* Calculates the width of the box.
|
|
28
|
+
* @returns {Number}
|
|
29
|
+
*/
|
|
30
|
+
width(): number;
|
|
31
|
+
/**
|
|
32
|
+
* Calculates the height of the box.
|
|
33
|
+
* @returns {Number}
|
|
34
|
+
*/
|
|
35
|
+
height(): number;
|
|
36
|
+
/**
|
|
37
|
+
* Resizes the box to a new size.
|
|
38
|
+
* @param {Number} newWidth
|
|
39
|
+
* @param {Number} newHeight
|
|
40
|
+
* @param {Array} [origin] The origin point to resize from.
|
|
41
|
+
* Defaults to [0, 0] (top left).
|
|
42
|
+
*/
|
|
43
|
+
resize(newWidth: any, newHeight: any, origin?: number[]): this;
|
|
44
|
+
/**
|
|
45
|
+
* Scale the box by a factor.
|
|
46
|
+
* @param {Number} factor
|
|
47
|
+
* @param {Array} [origin] The origin point to resize from.
|
|
48
|
+
* Defaults to [0, 0] (top left).
|
|
49
|
+
*/
|
|
50
|
+
scale(factor: any, origin?: number[]): this;
|
|
51
|
+
/**
|
|
52
|
+
* Move the box to the specified coordinates.
|
|
53
|
+
*/
|
|
54
|
+
move(x?: any, y?: any): this;
|
|
55
|
+
/**
|
|
56
|
+
* Get relative x and y coordinates of a given point within the box.
|
|
57
|
+
* @param {Array} point The x and y ratio position within the box.
|
|
58
|
+
* @returns {Array} The x and y coordinates [x, y].
|
|
59
|
+
*/
|
|
60
|
+
getRelativePoint(point?: number[]): number[];
|
|
61
|
+
/**
|
|
62
|
+
* Get absolute x and y coordinates of a given point within the box.
|
|
63
|
+
* @param {Array} point The x and y ratio position within the box.
|
|
64
|
+
* @returns {Array} The x and y coordinates [x, y].
|
|
65
|
+
*/
|
|
66
|
+
getAbsolutePoint(point?: number[]): any[];
|
|
67
|
+
/**
|
|
68
|
+
* Constrain the box to a fixed ratio.
|
|
69
|
+
* @param {Number} ratio
|
|
70
|
+
* @param {Array} [origin] The origin point to resize from.
|
|
71
|
+
* Defaults to [0, 0] (top left).
|
|
72
|
+
* @param {String} [grow] The axis to grow to maintain the ratio.
|
|
73
|
+
* Defaults to 'height'.
|
|
74
|
+
*/
|
|
75
|
+
constrainToRatio(ratio: any, origin?: number[], grow?: string): this;
|
|
76
|
+
/**
|
|
77
|
+
* Constrain the box within a boundary.
|
|
78
|
+
* @param {Number} boundaryWidth
|
|
79
|
+
* @param {Number} boundaryHeight
|
|
80
|
+
* @param {Array} [origin] The origin point to resize from.
|
|
81
|
+
* Defaults to [0, 0] (top left).
|
|
82
|
+
*/
|
|
83
|
+
constrainToBoundary(boundaryWidth: any, boundaryHeight: any, origin?: number[]): this;
|
|
84
|
+
/**
|
|
85
|
+
* Constrain the box to a maximum/minimum size.
|
|
86
|
+
* @param {Number} [maxWidth]
|
|
87
|
+
* @param {Number} [maxHeight]
|
|
88
|
+
* @param {Number} [minWidth]
|
|
89
|
+
* @param {Number} [minHeight]
|
|
90
|
+
* @param {Array} [origin] The origin point to resize from.
|
|
91
|
+
* Defaults to [0, 0] (top left).
|
|
92
|
+
* @param {Number} [ratio] Ratio to maintain.
|
|
93
|
+
*/
|
|
94
|
+
constrainToSize(maxWidth?: any, maxHeight?: any, minWidth?: any, minHeight?: any, origin?: number[], ratio?: any): this;
|
|
95
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CropprCore
|
|
3
|
+
* Here lies the main logic.
|
|
4
|
+
*/
|
|
5
|
+
import Box from "./box";
|
|
6
|
+
/**
|
|
7
|
+
* Core class for Croppr containing most of its functional logic.
|
|
8
|
+
*/
|
|
9
|
+
export default class CropprCore {
|
|
10
|
+
options: any;
|
|
11
|
+
_initialized: any;
|
|
12
|
+
_restore: any;
|
|
13
|
+
cropperEl: any;
|
|
14
|
+
box: any;
|
|
15
|
+
containerEl: any;
|
|
16
|
+
imageEl: any;
|
|
17
|
+
eventBus: any;
|
|
18
|
+
imageClippedEl: any;
|
|
19
|
+
regionEl: HTMLElement;
|
|
20
|
+
overlayEl: any;
|
|
21
|
+
handles: any;
|
|
22
|
+
activeHandle: any;
|
|
23
|
+
currentMove: any;
|
|
24
|
+
constructor(element: any, options: any, deferred?: boolean);
|
|
25
|
+
/**
|
|
26
|
+
* Initialize the Croppr instance
|
|
27
|
+
*/
|
|
28
|
+
initialize(element: any): void;
|
|
29
|
+
/**
|
|
30
|
+
* Create Croppr's DOM elements
|
|
31
|
+
*/
|
|
32
|
+
createDOM(targetEl: any): void;
|
|
33
|
+
/**
|
|
34
|
+
* Changes the image src.
|
|
35
|
+
* @param {String} src
|
|
36
|
+
*/
|
|
37
|
+
setImage(src: any): this;
|
|
38
|
+
/**
|
|
39
|
+
* Destroy the Croppr instance and replace with the original element.
|
|
40
|
+
*/
|
|
41
|
+
destroy(): void;
|
|
42
|
+
/**
|
|
43
|
+
* Create a new box region with a set of options.
|
|
44
|
+
* @param {Object} opts The options.
|
|
45
|
+
* @returns {Box}
|
|
46
|
+
*/
|
|
47
|
+
initializeBox(opts: any): Box;
|
|
48
|
+
/**
|
|
49
|
+
* Draw visuals (border, handles, etc) for the current box.
|
|
50
|
+
*/
|
|
51
|
+
redraw(): void;
|
|
52
|
+
/**
|
|
53
|
+
* Attach listeners for events emitted by the handles.
|
|
54
|
+
* Enables resizing of the region element.
|
|
55
|
+
*/
|
|
56
|
+
attachHandlerEvents(): void;
|
|
57
|
+
/**
|
|
58
|
+
* Attach event listeners for the crop region element.
|
|
59
|
+
* Enables dragging/moving of the region element.
|
|
60
|
+
*/
|
|
61
|
+
attachRegionEvents(): void;
|
|
62
|
+
/**
|
|
63
|
+
* Attach event listeners for the overlay element.
|
|
64
|
+
* Enables the creation of a new selection by dragging an empty area.
|
|
65
|
+
*/
|
|
66
|
+
attachOverlayEvents(): void;
|
|
67
|
+
/**
|
|
68
|
+
* EVENT HANDLER
|
|
69
|
+
* Executes when user begins dragging a handle.
|
|
70
|
+
*/
|
|
71
|
+
onHandleMoveStart(e: any): void;
|
|
72
|
+
/**
|
|
73
|
+
* EVENT HANDLER
|
|
74
|
+
* Executes on handle move. Main logic to manage the movement of handles.
|
|
75
|
+
*/
|
|
76
|
+
onHandleMoveMoving(e: any): void;
|
|
77
|
+
/**
|
|
78
|
+
* EVENT HANDLER
|
|
79
|
+
* Executes on handle move end.
|
|
80
|
+
*/
|
|
81
|
+
onHandleMoveEnd(e: any): void;
|
|
82
|
+
/**
|
|
83
|
+
* EVENT HANDLER
|
|
84
|
+
* Executes when user starts moving the crop region.
|
|
85
|
+
*/
|
|
86
|
+
onRegionMoveStart(e: any): void;
|
|
87
|
+
/**
|
|
88
|
+
* EVENT HANDLER
|
|
89
|
+
* Executes when user moves the crop region.
|
|
90
|
+
*/
|
|
91
|
+
onRegionMoveMoving(e: any): void;
|
|
92
|
+
/**
|
|
93
|
+
* EVENT HANDLER
|
|
94
|
+
* Executes when user stops moving the crop region (mouse up).
|
|
95
|
+
*/
|
|
96
|
+
onRegionMoveEnd(e: any): void;
|
|
97
|
+
/**
|
|
98
|
+
* Calculate the value of the crop region.
|
|
99
|
+
*/
|
|
100
|
+
getValue(mode?: any): {
|
|
101
|
+
x: number;
|
|
102
|
+
y: number;
|
|
103
|
+
width: number;
|
|
104
|
+
height: number;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Parse user options and set default values.
|
|
108
|
+
*/
|
|
109
|
+
static parseOptions(opts: any): {
|
|
110
|
+
aspectRatio: any;
|
|
111
|
+
maxSize: any;
|
|
112
|
+
minSize: any;
|
|
113
|
+
startSize: any;
|
|
114
|
+
returnMode: any;
|
|
115
|
+
onInitialize: any;
|
|
116
|
+
onCropStart: any;
|
|
117
|
+
onCropMove: any;
|
|
118
|
+
onCropEnd: any;
|
|
119
|
+
convertToPixels: (this: any, container: any) => void;
|
|
120
|
+
};
|
|
121
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Croppr.js
|
|
3
|
+
* https://github.com/jamesssooi/Croppr.js
|
|
4
|
+
*
|
|
5
|
+
* A JavaScript image cropper that's lightweight, awesome, and has
|
|
6
|
+
* zero dependencies.
|
|
7
|
+
*
|
|
8
|
+
* (C) 2017 James Ooi. Released under the MIT License.
|
|
9
|
+
*/
|
|
10
|
+
import CropprCore from "./core";
|
|
11
|
+
/**
|
|
12
|
+
* This class is a wrapper for CropprCore that merely implements the main
|
|
13
|
+
* interfaces for the Croppr instance. Look into CropprCore for all the
|
|
14
|
+
* main logic.
|
|
15
|
+
*/
|
|
16
|
+
export default class Croppr extends CropprCore {
|
|
17
|
+
/**
|
|
18
|
+
* @constructor
|
|
19
|
+
* Calls the CropprCore's constructor.
|
|
20
|
+
*/
|
|
21
|
+
constructor(element: any, options: any, _deferred?: boolean);
|
|
22
|
+
/**
|
|
23
|
+
* Gets the value of the crop region.
|
|
24
|
+
* @param {String} [mode] Which mode of calculation to use: 'real', 'ratio' or
|
|
25
|
+
* 'raw'.
|
|
26
|
+
*/
|
|
27
|
+
getValue(mode?: any): {
|
|
28
|
+
x: number;
|
|
29
|
+
y: number;
|
|
30
|
+
width: number;
|
|
31
|
+
height: number;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Changes the image src.
|
|
35
|
+
* @param {String} src
|
|
36
|
+
*/
|
|
37
|
+
setImage(src: any): this;
|
|
38
|
+
/**
|
|
39
|
+
* Destroys the Croppr instance
|
|
40
|
+
*/
|
|
41
|
+
destroy(): void;
|
|
42
|
+
/**
|
|
43
|
+
* Moves the crop region to a specified coordinate.
|
|
44
|
+
* @param {Number} x
|
|
45
|
+
* @param {Number} y
|
|
46
|
+
*/
|
|
47
|
+
moveTo(x: any, y: any): this;
|
|
48
|
+
/**
|
|
49
|
+
* Resizes the crop region to a specified width and height.
|
|
50
|
+
* @param {Number} width
|
|
51
|
+
* @param {Number} height
|
|
52
|
+
* @param {Array} origin The origin point to resize from.
|
|
53
|
+
* Defaults to [0.5, 0.5] (center).
|
|
54
|
+
*/
|
|
55
|
+
resizeTo(width: any, height: any, origin?: number[]): this;
|
|
56
|
+
/**
|
|
57
|
+
* Scale the crop region by a factor.
|
|
58
|
+
* @param {Number} factor
|
|
59
|
+
* @param {Array} origin The origin point to resize from.
|
|
60
|
+
* Defaults to [0.5, 0.5] (center).
|
|
61
|
+
*/
|
|
62
|
+
scaleBy(factor: any, origin?: number[]): this;
|
|
63
|
+
/**
|
|
64
|
+
* Resets the crop region to the initial settings.
|
|
65
|
+
*/
|
|
66
|
+
reset(newOptions?: any): this;
|
|
67
|
+
enableVisibility(state: boolean): void;
|
|
68
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Handle component
|
|
3
|
+
*/
|
|
4
|
+
export default class Handle {
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new Handle instance.
|
|
7
|
+
* @constructor
|
|
8
|
+
* @param {Array} position The x and y ratio position of the handle
|
|
9
|
+
* within the crop region. Accepts a value between 0 to 1 in the order
|
|
10
|
+
* of [X, Y].
|
|
11
|
+
* @param {Array} constraints Define the side of the crop region that
|
|
12
|
+
* is to be affected by this handle. Accepts a value of 0 or 1 in the
|
|
13
|
+
* order of [TOP, RIGHT, BOTTOM, LEFT].
|
|
14
|
+
* @param {String} cursor The CSS cursor of this handle.
|
|
15
|
+
* @param {Element} eventBus The element to dispatch events to.
|
|
16
|
+
*/
|
|
17
|
+
position: any;
|
|
18
|
+
constraints: any;
|
|
19
|
+
cursor: any;
|
|
20
|
+
eventBus: any;
|
|
21
|
+
el: any;
|
|
22
|
+
constructor(position: any, constraints: any, cursor: any, eventBus: any);
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Croppr Touch
|
|
3
|
+
* Enables support for touch devices by translating touch events to
|
|
4
|
+
* mouse events.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Binds an element's touch events to be simulated as mouse events.
|
|
8
|
+
* @param {Element} element
|
|
9
|
+
*/
|
|
10
|
+
export default function enableTouch(element: any): void;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IState } from '../models/index.models';
|
|
2
|
+
export declare const MAX_BUFFER_UNDO_MEMORY = 25;
|
|
3
|
+
export declare const convertImageUsingCanvas: (dataSrc: string, changeHeight: boolean, state: IState, options?: {
|
|
4
|
+
getDimFromImage?: boolean;
|
|
5
|
+
rotate?: number;
|
|
6
|
+
}) => Promise<{
|
|
7
|
+
imageUri: string;
|
|
8
|
+
state: any;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const dragElement: (element: any) => void;
|
|
11
|
+
export declare const saveState: (state: IState, lastImage?: string) => IState;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ActionIconVariant } from '@mantine/core';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import './image_editor_styles.scss';
|
|
4
|
+
import { ArchbaseImagePickerConf } from './models/index.models';
|
|
5
|
+
export * from './models/index.models';
|
|
6
|
+
export declare const ArchbaseImagePickerEditor: React.MemoExoticComponent<({ config, imageSrcProp, color, imageChanged, variant, }: {
|
|
7
|
+
config: ArchbaseImagePickerConf;
|
|
8
|
+
imageSrcProp?: string;
|
|
9
|
+
color?: string;
|
|
10
|
+
imageChanged?: Function;
|
|
11
|
+
variant?: ActionIconVariant;
|
|
12
|
+
}) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export interface ArchbaseImagePickerConf {
|
|
2
|
+
width?: string | number;
|
|
3
|
+
height?: string | number;
|
|
4
|
+
borderRadius?: string | number;
|
|
5
|
+
aspectRatio?: number | null;
|
|
6
|
+
objectFit?: "cover" | "contain" | "fill" | "revert" | "scale-down";
|
|
7
|
+
compressInitial?: number | undefined | null;
|
|
8
|
+
hideDeleteBtn?: boolean;
|
|
9
|
+
hideDownloadBtn?: boolean;
|
|
10
|
+
hideEditBtn?: boolean;
|
|
11
|
+
hideAddBtn?: boolean;
|
|
12
|
+
showImageSize?: boolean;
|
|
13
|
+
onChangeImage?: (image: string | undefined) => void;
|
|
14
|
+
imageBackgroundColor?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface IState {
|
|
17
|
+
quality: number;
|
|
18
|
+
maxHeight: number;
|
|
19
|
+
maxWidth: number;
|
|
20
|
+
cropHeight: number;
|
|
21
|
+
cropWidth: number;
|
|
22
|
+
maintainAspectRatio: boolean;
|
|
23
|
+
format: string;
|
|
24
|
+
arrayCopiedImages: Array<ICacheData>;
|
|
25
|
+
originImageSrc: string | null | undefined;
|
|
26
|
+
basicFilters?: IBasicFilterState;
|
|
27
|
+
}
|
|
28
|
+
export interface ICacheData {
|
|
29
|
+
lastImage: string;
|
|
30
|
+
originImageSrc: string;
|
|
31
|
+
width: number;
|
|
32
|
+
height: number;
|
|
33
|
+
quality: number;
|
|
34
|
+
format: string;
|
|
35
|
+
basicFilters?: IBasicFilterState | null | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface IBasicFilterState {
|
|
38
|
+
contrast: number;
|
|
39
|
+
blur: number;
|
|
40
|
+
brightness: number;
|
|
41
|
+
grayscale: number;
|
|
42
|
+
invert: number;
|
|
43
|
+
saturate: number;
|
|
44
|
+
sepia: number;
|
|
45
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { ArchbaseImage } from './ArchbaseImage';
|
|
2
|
+
export type { ArchbaseImageProps } from './ArchbaseImage';
|
|
3
|
+
export type { ArchbaseImagePickerConf } from './editor';
|
|
4
|
+
export { ArchbaseImagePickerEditor } from './editor';
|
|
5
|
+
export { ArchbaseMicrosoftAvatar, DEFAULT_AVATAR } from './ArchbaseMicrosoftAvatar';
|
|
6
|
+
export type { ArchbaseMicrosoftAvatarProps } from './ArchbaseMicrosoftAvatar';
|
|
7
|
+
export { languages } from './languages';
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
export declare const languages: {
|
|
2
|
+
pt_br: {
|
|
3
|
+
name: string;
|
|
4
|
+
save: string;
|
|
5
|
+
saveAs: string;
|
|
6
|
+
back: string;
|
|
7
|
+
loading: string;
|
|
8
|
+
resetOperations: string;
|
|
9
|
+
changesLoseConfirmation: string;
|
|
10
|
+
changesLoseConfirmationHint: string;
|
|
11
|
+
cancel: string;
|
|
12
|
+
continue: string;
|
|
13
|
+
undoTitle: string;
|
|
14
|
+
redoTitle: string;
|
|
15
|
+
showImageTitle: string;
|
|
16
|
+
zoomInTitle: string;
|
|
17
|
+
zoomOutTitle: string;
|
|
18
|
+
toggleZoomMenuTitle: string;
|
|
19
|
+
adjustTab: string;
|
|
20
|
+
finetuneTab: string;
|
|
21
|
+
filtersTab: string;
|
|
22
|
+
watermarkTab: string;
|
|
23
|
+
annotateTab: string;
|
|
24
|
+
resize: string;
|
|
25
|
+
resizeTab: string;
|
|
26
|
+
invalidImageError: string;
|
|
27
|
+
uploadImageError: string;
|
|
28
|
+
areNotImages: string;
|
|
29
|
+
isNotImage: string;
|
|
30
|
+
toBeUploaded: string;
|
|
31
|
+
cropTool: string;
|
|
32
|
+
original: string;
|
|
33
|
+
custom: string;
|
|
34
|
+
square: string;
|
|
35
|
+
landscape: string;
|
|
36
|
+
portrait: string;
|
|
37
|
+
ellipse: string;
|
|
38
|
+
classicTv: string;
|
|
39
|
+
cinemascope: string;
|
|
40
|
+
arrowTool: string;
|
|
41
|
+
blurTool: string;
|
|
42
|
+
brightnessTool: string;
|
|
43
|
+
contrastTool: string;
|
|
44
|
+
ellipseTool: string;
|
|
45
|
+
unFlipX: string;
|
|
46
|
+
flipX: string;
|
|
47
|
+
unFlipY: string;
|
|
48
|
+
flipY: string;
|
|
49
|
+
hsvTool: string;
|
|
50
|
+
hue: string;
|
|
51
|
+
saturation: string;
|
|
52
|
+
value: string;
|
|
53
|
+
imageTool: string;
|
|
54
|
+
importing: string;
|
|
55
|
+
addImage: string;
|
|
56
|
+
uploadImage: string;
|
|
57
|
+
fromGallery: string;
|
|
58
|
+
lineTool: string;
|
|
59
|
+
penTool: string;
|
|
60
|
+
polygonTool: string;
|
|
61
|
+
sides: string;
|
|
62
|
+
rectangleTool: string;
|
|
63
|
+
cornerRadius: string;
|
|
64
|
+
resizeWidthTitle: string;
|
|
65
|
+
resizeHeightTitle: string;
|
|
66
|
+
toggleRatioLockTitle: string;
|
|
67
|
+
reset: string;
|
|
68
|
+
resetSize: string;
|
|
69
|
+
rotateTool: string;
|
|
70
|
+
textTool: string;
|
|
71
|
+
textSpacings: string;
|
|
72
|
+
textAlignment: string;
|
|
73
|
+
fontFamily: string;
|
|
74
|
+
size: string;
|
|
75
|
+
letterSpacing: string;
|
|
76
|
+
lineHeight: string;
|
|
77
|
+
warmthTool: string;
|
|
78
|
+
addWatermark: string;
|
|
79
|
+
addTextWatermark: string;
|
|
80
|
+
addWatermarkTitle: string;
|
|
81
|
+
uploadWatermark: string;
|
|
82
|
+
addWatermarkAsText: string;
|
|
83
|
+
padding: string;
|
|
84
|
+
shadow: string;
|
|
85
|
+
horizontal: string;
|
|
86
|
+
vertical: string;
|
|
87
|
+
blur: string;
|
|
88
|
+
opacity: string;
|
|
89
|
+
position: string;
|
|
90
|
+
stroke: string;
|
|
91
|
+
saveAsModalLabel: string;
|
|
92
|
+
extension: string;
|
|
93
|
+
nameIsRequired: string;
|
|
94
|
+
quality: string;
|
|
95
|
+
imageDimensionsHoverTitle: string;
|
|
96
|
+
cropSizeLowerThanResizedWarning: string;
|
|
97
|
+
actualSize: string;
|
|
98
|
+
fitSize: string;
|
|
99
|
+
addImageTitle: string;
|
|
100
|
+
};
|
|
101
|
+
en: {
|
|
102
|
+
name: string;
|
|
103
|
+
save: string;
|
|
104
|
+
saveAs: string;
|
|
105
|
+
back: string;
|
|
106
|
+
loading: string;
|
|
107
|
+
resetOperations: string;
|
|
108
|
+
changesLoseConfirmation: string;
|
|
109
|
+
changesLoseConfirmationHint: string;
|
|
110
|
+
cancel: string;
|
|
111
|
+
continue: string;
|
|
112
|
+
undoTitle: string;
|
|
113
|
+
redoTitle: string;
|
|
114
|
+
showImageTitle: string;
|
|
115
|
+
zoomInTitle: string;
|
|
116
|
+
zoomOutTitle: string;
|
|
117
|
+
toggleZoomMenuTitle: string;
|
|
118
|
+
adjustTab: string;
|
|
119
|
+
finetuneTab: string;
|
|
120
|
+
filtersTab: string;
|
|
121
|
+
watermarkTab: string;
|
|
122
|
+
annotateTab: string;
|
|
123
|
+
resize: string;
|
|
124
|
+
resizeTab: string;
|
|
125
|
+
invalidImageError: string;
|
|
126
|
+
uploadImageError: string;
|
|
127
|
+
areNotImages: string;
|
|
128
|
+
isNotImage: string;
|
|
129
|
+
toBeUploaded: string;
|
|
130
|
+
cropTool: string;
|
|
131
|
+
original: string;
|
|
132
|
+
custom: string;
|
|
133
|
+
square: string;
|
|
134
|
+
landscape: string;
|
|
135
|
+
portrait: string;
|
|
136
|
+
ellipse: string;
|
|
137
|
+
classicTv: string;
|
|
138
|
+
cinemascope: string;
|
|
139
|
+
arrowTool: string;
|
|
140
|
+
blurTool: string;
|
|
141
|
+
brightnessTool: string;
|
|
142
|
+
contrastTool: string;
|
|
143
|
+
ellipseTool: string;
|
|
144
|
+
unFlipX: string;
|
|
145
|
+
flipX: string;
|
|
146
|
+
unFlipY: string;
|
|
147
|
+
flipY: string;
|
|
148
|
+
hsvTool: string;
|
|
149
|
+
hue: string;
|
|
150
|
+
saturation: string;
|
|
151
|
+
value: string;
|
|
152
|
+
imageTool: string;
|
|
153
|
+
importing: string;
|
|
154
|
+
addImage: string;
|
|
155
|
+
uploadImage: string;
|
|
156
|
+
fromGallery: string;
|
|
157
|
+
lineTool: string;
|
|
158
|
+
penTool: string;
|
|
159
|
+
polygonTool: string;
|
|
160
|
+
sides: string;
|
|
161
|
+
rectangleTool: string;
|
|
162
|
+
cornerRadius: string;
|
|
163
|
+
resizeWidthTitle: string;
|
|
164
|
+
resizeHeightTitle: string;
|
|
165
|
+
toggleRatioLockTitle: string;
|
|
166
|
+
reset: string;
|
|
167
|
+
resetSize: string;
|
|
168
|
+
rotateTool: string;
|
|
169
|
+
textTool: string;
|
|
170
|
+
textSpacings: string;
|
|
171
|
+
textAlignment: string;
|
|
172
|
+
fontFamily: string;
|
|
173
|
+
size: string;
|
|
174
|
+
letterSpacing: string;
|
|
175
|
+
lineHeight: string;
|
|
176
|
+
warmthTool: string;
|
|
177
|
+
addWatermark: string;
|
|
178
|
+
addTextWatermark: string;
|
|
179
|
+
addWatermarkTitle: string;
|
|
180
|
+
uploadWatermark: string;
|
|
181
|
+
addWatermarkAsText: string;
|
|
182
|
+
padding: string;
|
|
183
|
+
shadow: string;
|
|
184
|
+
horizontal: string;
|
|
185
|
+
vertical: string;
|
|
186
|
+
blur: string;
|
|
187
|
+
opacity: string;
|
|
188
|
+
position: string;
|
|
189
|
+
stroke: string;
|
|
190
|
+
saveAsModalLabel: string;
|
|
191
|
+
extension: string;
|
|
192
|
+
nameIsRequired: string;
|
|
193
|
+
quality: string;
|
|
194
|
+
imageDimensionsHoverTitle: string;
|
|
195
|
+
cropSizeLowerThanResizedWarning: string;
|
|
196
|
+
actualSize: string;
|
|
197
|
+
fitSize: string;
|
|
198
|
+
addImageTitle: string;
|
|
199
|
+
};
|
|
200
|
+
es: {
|
|
201
|
+
name: string;
|
|
202
|
+
save: string;
|
|
203
|
+
saveAs: string;
|
|
204
|
+
back: string;
|
|
205
|
+
loading: string;
|
|
206
|
+
resetOperations: string;
|
|
207
|
+
changesLoseConfirmation: string;
|
|
208
|
+
changesLoseConfirmationHint: string;
|
|
209
|
+
cancel: string;
|
|
210
|
+
continue: string;
|
|
211
|
+
undoTitle: string;
|
|
212
|
+
redoTitle: string;
|
|
213
|
+
showImageTitle: string;
|
|
214
|
+
zoomInTitle: string;
|
|
215
|
+
zoomOutTitle: string;
|
|
216
|
+
toggleZoomMenuTitle: string;
|
|
217
|
+
adjustTab: string;
|
|
218
|
+
finetuneTab: string;
|
|
219
|
+
filtersTab: string;
|
|
220
|
+
watermarkTab: string;
|
|
221
|
+
annotateTab: string;
|
|
222
|
+
resize: string;
|
|
223
|
+
resizeTab: string;
|
|
224
|
+
invalidImageError: string;
|
|
225
|
+
uploadImageError: string;
|
|
226
|
+
areNotImages: string;
|
|
227
|
+
isNotImage: string;
|
|
228
|
+
toBeUploaded: string;
|
|
229
|
+
cropTool: string;
|
|
230
|
+
original: string;
|
|
231
|
+
personalizado: string;
|
|
232
|
+
cuadrado: string;
|
|
233
|
+
paisaje: string;
|
|
234
|
+
retrato: string;
|
|
235
|
+
elipse: string;
|
|
236
|
+
classicTv: string;
|
|
237
|
+
cinemascope: string;
|
|
238
|
+
arrowTool: string;
|
|
239
|
+
blurTool: string;
|
|
240
|
+
brightnessTool: string;
|
|
241
|
+
contrastTool: string;
|
|
242
|
+
ellipseTool: string;
|
|
243
|
+
unFlipX: string;
|
|
244
|
+
flipX: string;
|
|
245
|
+
unFlipY: string;
|
|
246
|
+
flipY: string;
|
|
247
|
+
hsvTool: string;
|
|
248
|
+
hue: string;
|
|
249
|
+
saturation: string;
|
|
250
|
+
value: string;
|
|
251
|
+
imageTool: string;
|
|
252
|
+
importing: string;
|
|
253
|
+
addImage: string;
|
|
254
|
+
uploadImage: string;
|
|
255
|
+
fromGallery: string;
|
|
256
|
+
lineTool: string;
|
|
257
|
+
penTool: string;
|
|
258
|
+
polygonTool: string;
|
|
259
|
+
sides: string;
|
|
260
|
+
rectangleTool: string;
|
|
261
|
+
cornerRadius: string;
|
|
262
|
+
resizeWidthTitle: string;
|
|
263
|
+
resizeHeightTitle: string;
|
|
264
|
+
toggleRatioLockTitle: string;
|
|
265
|
+
reset: string;
|
|
266
|
+
resetSize: string;
|
|
267
|
+
rotateTool: string;
|
|
268
|
+
textTool: string;
|
|
269
|
+
textSpacings: string;
|
|
270
|
+
textAlignment: string;
|
|
271
|
+
fontFamily: string;
|
|
272
|
+
size: string;
|
|
273
|
+
letterSpacing: string;
|
|
274
|
+
lineHeight: string;
|
|
275
|
+
warmthTool: string;
|
|
276
|
+
addWatermark: string;
|
|
277
|
+
addTextWatermark: string;
|
|
278
|
+
addWatermarkTitle: string;
|
|
279
|
+
uploadWatermark: string;
|
|
280
|
+
addWatermarkAsText: string;
|
|
281
|
+
padding: string;
|
|
282
|
+
shadow: string;
|
|
283
|
+
horizontal: string;
|
|
284
|
+
vertical: string;
|
|
285
|
+
blur: string;
|
|
286
|
+
opacity: string;
|
|
287
|
+
position: string;
|
|
288
|
+
stroke: string;
|
|
289
|
+
saveAsModalLabel: string;
|
|
290
|
+
extension: string;
|
|
291
|
+
nameIsRequired: string;
|
|
292
|
+
quality: string;
|
|
293
|
+
imageDimensionsHoverTitle: string;
|
|
294
|
+
cropSizeLowerThanResizedWarning: string;
|
|
295
|
+
actualSize: string;
|
|
296
|
+
fitSize: string;
|
|
297
|
+
addImageTitle: string;
|
|
298
|
+
};
|
|
299
|
+
};
|