nuxeo-development-framework 0.0.2 → 0.0.6
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/README.md +24 -24
- package/bundles/nuxeo-development-framework.umd.js +18534 -50
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/Core/adapters/adapter.service.js +50 -0
- package/esm2015/lib/Core/core.module.js +104 -0
- package/esm2015/lib/Core/enums/language.enum.js +6 -0
- package/esm2015/lib/Core/models/component.model.js +8 -0
- package/esm2015/lib/Core/services/callApi/call-api.service.js +33 -0
- package/esm2015/lib/Core/services/initialization/initialization.service.js +57 -0
- package/esm2015/lib/Core/services/localStorag/local-storag.service.js +123 -0
- package/esm2015/lib/Core/services/nuxeo/nuxeo-override.js +82 -0
- package/esm2015/lib/Core/services/nuxeo/nuxeo.service.js +120 -0
- package/esm2015/lib/Core/services/roles/roles.service.js +103 -0
- package/esm2015/lib/Core/services/translation/translate-loader.service.js +150 -0
- package/esm2015/lib/Core/services/translation/translation.service.js +171 -0
- package/esm2015/lib/Core/services/user/user-preferences.service.js +153 -0
- package/esm2015/lib/Core/utilities/moment-date-adapter.js +178 -0
- package/esm2015/lib/Core/utilities/utility.service.js +81 -0
- package/esm2015/lib/components/activity/activity/activity.component.js +28 -0
- package/esm2015/lib/components/activity/activity.module.js +37 -0
- package/esm2015/lib/components/avatar/avatar/avatar.component.js +55 -0
- package/esm2015/lib/components/avatar/avatar.module.js +32 -0
- package/esm2015/lib/components/card/card.component.js +48 -0
- package/esm2015/lib/components/card/card.module.js +23 -0
- package/esm2015/lib/components/comments/comments.module.js +76 -0
- package/esm2015/lib/components/comments/components/comment-item/comment-item.component.js +33 -0
- package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +78 -0
- package/esm2015/lib/components/comments/components/comments-list/comments-list.component.js +68 -0
- package/esm2015/lib/components/comments/constants/comment.js +25 -0
- package/esm2015/lib/components/comments/services/comment-api.service.js +49 -0
- package/esm2015/lib/components/confirm-caller/confirm-caller.dialog.js +73 -0
- package/esm2015/lib/components/confirm-caller/confirm-caller.module.js +27 -0
- package/esm2015/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.js +29 -0
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +134 -0
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.js +133 -0
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.js +110 -0
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.js +49 -0
- package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +61 -0
- package/esm2015/lib/components/correspondence-relation/correspondence-relation.module.js +111 -0
- package/esm2015/lib/components/correspondence-relation/services/correspondence-realation.service.js +115 -0
- package/esm2015/lib/components/correspondence-relation/services/viewer-files.service.js +50 -0
- package/esm2015/lib/components/create-entity/create-entity/create-entity.component.js +62 -0
- package/esm2015/lib/components/create-entity/create-entity.module.js +36 -0
- package/esm2015/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.js +73 -0
- package/esm2015/lib/components/cts-tags/cts-tags.module.js +65 -0
- package/esm2015/lib/components/cts-tags/services/tags-api.service.js +61 -0
- package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +82 -0
- package/esm2015/lib/components/custom-toastr/custom-toastr.module.js +36 -0
- package/esm2015/lib/components/custom-toastr/interfaces/toast-type.interface.js +2 -0
- package/esm2015/lib/components/custom-toastr/services/custom-toastr.service.js +41 -0
- package/esm2015/lib/components/documents/components/attachments-list/attachments-list.component.js +156 -0
- package/esm2015/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.js +72 -0
- package/esm2015/lib/components/documents/components/document-list/documents-list.component.js +255 -0
- package/esm2015/lib/components/documents/components/document-scan/document-scan.component.js +929 -0
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +159 -0
- package/esm2015/lib/components/documents/components/documents/documents.component.js +61 -0
- package/esm2015/lib/components/documents/constants/document-templates.js +32 -0
- package/esm2015/lib/components/documents/constants/documents.js +86 -0
- package/esm2015/lib/components/documents/documents.module.js +123 -0
- package/esm2015/lib/components/documents/services/document-templates.service.js +115 -0
- package/esm2015/lib/components/documents/services/documents.service.js +217 -0
- package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +342 -0
- package/esm2015/lib/components/dynamic-chart/dynamic-chart.module.js +34 -0
- package/esm2015/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.js +164 -0
- package/esm2015/lib/components/dynamic-chart/services/chart-data.service.js +542 -0
- package/esm2015/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.js +106 -0
- package/esm2015/lib/components/dynamic-filter/dynamic-filter.module.js +26 -0
- package/esm2015/lib/components/dynamic-form/components/department-form/department-form.component.js +124 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.js +94 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/fields.adapter.js +127 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/form-builder.service.js +102 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.js +35 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.js +165 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.js +71 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.js +202 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.js +78 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/constants/department.js +13 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.js +185 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.js +207 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.js +94 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.js +85 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.js +128 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.js +81 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.js +36 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.js +106 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.js +93 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.js +207 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +302 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.js +44 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.js +176 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.js +76 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.js +180 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.js +250 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.js +63 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.js +269 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.js +47 -0
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.js +172 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.js +768 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.js +35 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.js +17 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.js +34 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.js +17 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.js +38 -0
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.js +30 -0
- package/esm2015/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.js +17 -0
- package/esm2015/lib/components/dynamic-form/dynamic-form.module.js +289 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.js +2 -0
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.js +10 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-baseitem.model.js +63 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-boolitem.model.js +20 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-dateitem.model.js +24 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.js +12 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-mapitem.model.js +16 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-selectitem.model.js +17 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-textitem.model.js +32 -0
- package/esm2015/lib/components/dynamic-form/models/dynamic-form.models.js +8 -0
- package/esm2015/lib/components/dynamic-form/services/card-item-types.service.js +46 -0
- package/esm2015/lib/components/dynamic-form/services/dynamic-component-mapper.service.js +60 -0
- package/esm2015/lib/components/dynamic-form/services/dynamic-form-update.service.js +74 -0
- package/esm2015/lib/components/dynamic-form/validators/length-validator.js +15 -0
- package/esm2015/lib/components/dynamic-form/validators/regex-validator.js +15 -0
- package/esm2015/lib/components/dynamic-form/validators/required-validator.js +9 -0
- package/esm2015/lib/components/dynamic-form/validators/value-validator.js +15 -0
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +148 -0
- package/esm2015/lib/components/dynamic-search/dynamic-search.module.js +57 -0
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +204 -0
- package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +44 -0
- package/esm2015/lib/components/dynamic-table/services/dynamic-table.service.js +16 -0
- package/esm2015/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.js +36 -0
- package/esm2015/lib/components/dynamic-view/data-viewer/data-viewer.component.js +32 -0
- package/esm2015/lib/components/dynamic-view/date-viewer/date-viewer.component.js +49 -0
- package/esm2015/lib/components/dynamic-view/department-viewer/department-viewer.component.js +71 -0
- package/esm2015/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.js +60 -0
- package/esm2015/lib/components/dynamic-view/dynamic-view.module.js +54 -0
- package/esm2015/lib/components/dynamic-view/list-viewer/list-viewer.component.js +40 -0
- package/esm2015/lib/components/filter/filter/filter.component.js +94 -0
- package/esm2015/lib/components/filter/filter.module.js +45 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.js +114 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.js +111 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.js +165 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.js +32 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.js +54 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.js +71 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-helper.service.js +25 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.js +43 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.js +26 -0
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/consts.js +5 -0
- package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +75 -0
- package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +70 -0
- package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +27 -0
- package/esm2015/lib/components/latest-activity/constants/activitylog.js +80 -0
- package/esm2015/lib/components/latest-activity/latest-activity.module.js +53 -0
- package/esm2015/lib/components/latest-activity/services/activity-log.service.js +33 -0
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +69 -0
- package/esm2015/lib/components/notifications/components/notification-options/notification-options.component.js +22 -0
- package/esm2015/lib/components/notifications/components/notification-toast/notification-toast.component.js +57 -0
- package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +129 -0
- package/esm2015/lib/components/notifications/components/notifications-list/notifications-list.component.js +149 -0
- package/esm2015/lib/components/notifications/notifications.module.js +109 -0
- package/esm2015/lib/components/notifications/notifications.service.js +277 -0
- package/esm2015/lib/components/pagination/pagination/pagination.component.js +123 -0
- package/esm2015/lib/components/pagination/pagination.module.js +32 -0
- package/esm2015/lib/components/pdf-tron/pdf-tron.module.js +24 -0
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +228 -0
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.service.js +181 -0
- package/esm2015/lib/components/select/select/select.component.js +130 -0
- package/esm2015/lib/components/select/select.module.js +37 -0
- package/esm2015/lib/components/table/table/table.component.js +174 -0
- package/esm2015/lib/components/table/table.module.js +57 -0
- package/esm2015/lib/components/users-card/users-card.component.js +43 -0
- package/esm2015/lib/components/users-card/users-card.module.js +28 -0
- package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +33 -0
- package/esm2015/lib/components/viewer-log/viewer-log.module.js +20 -0
- package/esm2015/lib/components/vocabulary/interfaces/op-type.interface.js +2 -0
- package/esm2015/lib/components/vocabulary/services/vocabulary-api.service.js +49 -0
- package/esm2015/lib/components/vocabulary/vocabulary/vocabulary.component.js +106 -0
- package/esm2015/lib/components/vocabulary/vocabulary.module.js +34 -0
- package/esm2015/lib/configuration/app-config.service.js +26 -0
- package/esm2015/lib/configuration/helpers/app-initializer.js +4 -0
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +61 -0
- package/esm2015/lib/directive/clickOutSide/click-outside.directive.js +29 -0
- package/esm2015/lib/directive/directive.module.js +48 -0
- package/esm2015/lib/directive/permissions/evaluators.service.js +118 -0
- package/esm2015/lib/directive/permissions/permissions.directive.js +106 -0
- package/esm2015/lib/directive/rtl/set-dir-rtl.directive.js +28 -0
- package/esm2015/lib/directive/rtl/set-rtl.directive.js +29 -0
- package/esm2015/lib/nuxeo-development-framework.component.js +26 -18
- package/esm2015/lib/nuxeo-development-framework.module.js +45 -16
- package/esm2015/lib/nuxeo-development-framework.service.js +14 -13
- package/esm2015/lib/pipes/file-size.pipe.js +57 -0
- package/esm2015/lib/pipes/hijri-date.pipe.js +46 -0
- package/esm2015/lib/pipes/localized-date.pipe.js +81 -0
- package/esm2015/lib/pipes/multi-value.pipe.js +42 -0
- package/esm2015/lib/pipes/pipes.module.js +29 -0
- package/esm2015/lib/pipes/secure-html.pipe.js +34 -0
- package/esm2015/lib/pipes/secure.pipe.js +40 -0
- package/esm2015/lib/pipes/time-ago.pipe.js +68 -0
- package/esm2015/lib/shared/components/button/button.component.js +87 -0
- package/esm2015/lib/shared/components/item-list/item-list.component.js +76 -0
- package/esm2015/lib/shared/components/no-data/no-data.component.js +37 -0
- package/esm2015/lib/shared/components/read-more/read-more.component.js +107 -0
- package/esm2015/lib/shared/components/search-autocomplete/search-autocomplete.component.js +144 -0
- package/esm2015/lib/shared/components/spinner/spinner.component.js +29 -0
- package/esm2015/lib/shared/components/user-card/user-card.component.js +49 -0
- package/esm2015/lib/shared/libraryShared.module.js +80 -0
- package/esm2015/nuxeo-development-framework.js +4 -4
- package/esm2015/public-api.js +156 -7
- package/fesm2015/nuxeo-development-framework.js +17027 -49
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/Core/adapters/adapter.service.d.ts +11 -0
- package/lib/Core/core.module.d.ts +14 -0
- package/lib/Core/enums/language.enum.d.ts +4 -0
- package/lib/Core/models/component.model.d.ts +6 -0
- package/lib/Core/services/callApi/call-api.service.d.ts +11 -0
- package/lib/Core/services/initialization/initialization.service.d.ts +14 -0
- package/lib/Core/services/localStorag/local-storag.service.d.ts +41 -0
- package/lib/Core/services/nuxeo/nuxeo-override.d.ts +8 -0
- package/lib/Core/services/nuxeo/nuxeo.service.d.ts +33 -0
- package/lib/Core/services/roles/roles.service.d.ts +11 -0
- package/lib/Core/services/translation/translate-loader.service.d.ts +26 -0
- package/lib/Core/services/translation/translation.service.d.ts +71 -0
- package/lib/Core/services/user/user-preferences.service.d.ts +80 -0
- package/lib/Core/utilities/moment-date-adapter.d.ts +37 -0
- package/lib/Core/utilities/utility.service.d.ts +11 -0
- package/lib/components/activity/activity/activity.component.d.ts +13 -0
- package/lib/components/activity/activity.module.d.ts +13 -0
- package/lib/components/avatar/avatar/avatar.component.d.ts +23 -0
- package/lib/components/avatar/avatar.module.d.ts +13 -0
- package/lib/components/card/card.component.d.ts +32 -0
- package/lib/components/card/card.module.d.ts +12 -0
- package/lib/components/comments/comments.module.d.ts +25 -0
- package/lib/components/comments/components/comment-item/comment-item.component.d.ts +13 -0
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +45 -0
- package/lib/components/comments/components/comments-list/comments-list.component.d.ts +26 -0
- package/lib/components/comments/constants/comment.d.ts +25 -0
- package/lib/components/comments/services/comment-api.service.d.ts +14 -0
- package/lib/components/confirm-caller/confirm-caller.dialog.d.ts +46 -0
- package/lib/components/confirm-caller/confirm-caller.module.d.ts +16 -0
- package/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.d.ts +12 -0
- package/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.d.ts +34 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.d.ts +42 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.d.ts +31 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.d.ts +18 -0
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +31 -0
- package/lib/components/correspondence-relation/correspondence-relation.module.d.ts +30 -0
- package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts +24 -0
- package/lib/components/correspondence-relation/services/viewer-files.service.d.ts +18 -0
- package/lib/components/create-entity/create-entity/create-entity.component.d.ts +17 -0
- package/lib/components/create-entity/create-entity.module.d.ts +11 -0
- package/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.d.ts +28 -0
- package/lib/components/cts-tags/cts-tags.module.d.ts +21 -0
- package/lib/components/cts-tags/services/tags-api.service.d.ts +15 -0
- package/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.d.ts +30 -0
- package/lib/components/custom-toastr/custom-toastr.module.d.ts +12 -0
- package/lib/components/custom-toastr/interfaces/toast-type.interface.d.ts +1 -0
- package/lib/components/custom-toastr/services/custom-toastr.service.d.ts +18 -0
- package/lib/components/documents/components/attachments-list/attachments-list.component.d.ts +54 -0
- package/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.d.ts +37 -0
- package/lib/components/documents/components/document-list/documents-list.component.d.ts +81 -0
- package/lib/components/documents/components/document-scan/document-scan.component.d.ts +103 -0
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +58 -0
- package/lib/components/documents/components/documents/documents.component.d.ts +27 -0
- package/lib/components/documents/constants/document-templates.d.ts +33 -0
- package/lib/components/documents/constants/documents.d.ts +95 -0
- package/lib/components/documents/documents.module.d.ts +33 -0
- package/lib/components/documents/services/document-templates.service.d.ts +24 -0
- package/lib/components/documents/services/documents.service.d.ts +36 -0
- package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +63 -0
- package/lib/components/dynamic-chart/dynamic-chart.module.d.ts +16 -0
- package/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.d.ts +33 -0
- package/lib/components/dynamic-chart/services/chart-data.service.d.ts +37 -0
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +45 -0
- package/lib/components/dynamic-filter/dynamic-filter.module.d.ts +16 -0
- package/lib/components/dynamic-form/components/department-form/department-form.component.d.ts +28 -0
- package/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.d.ts +26 -0
- package/lib/components/dynamic-form/components/dynamic-form/fields.adapter.d.ts +6 -0
- package/lib/components/dynamic-form/components/dynamic-form/form-builder.service.d.ts +21 -0
- package/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.d.ts +17 -0
- package/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.d.ts +57 -0
- package/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.d.ts +35 -0
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.d.ts +70 -0
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.d.ts +52 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/constants/department.d.ts +12 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.d.ts +65 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.d.ts +29 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.d.ts +21 -0
- package/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.d.ts +30 -0
- package/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.d.ts +61 -0
- package/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.d.ts +25 -0
- package/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.d.ts +15 -0
- package/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.d.ts +45 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.d.ts +41 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.d.ts +65 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.d.ts +83 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.d.ts +13 -0
- package/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.d.ts +79 -0
- package/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.d.ts +37 -0
- package/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.d.ts +71 -0
- package/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.d.ts +86 -0
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.d.ts +19 -0
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.d.ts +88 -0
- package/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.d.ts +16 -0
- package/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.d.ts +76 -0
- package/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.d.ts +599 -0
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.d.ts +13 -0
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.d.ts +13 -0
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.d.ts +16 -0
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.d.ts +9 -0
- package/lib/components/dynamic-form/dynamic-form.module.d.ts +64 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.d.ts +15 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.d.ts +4 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.d.ts +12 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.d.ts +8 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.d.ts +10 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.d.ts +8 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.d.ts +9 -0
- package/lib/components/dynamic-form/models/dynamic-form-baseitem.model.d.ts +21 -0
- package/lib/components/dynamic-form/models/dynamic-form-boolitem.model.d.ts +11 -0
- package/lib/components/dynamic-form/models/dynamic-form-dateitem.model.d.ts +13 -0
- package/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.d.ts +9 -0
- package/lib/components/dynamic-form/models/dynamic-form-mapitem.model.d.ts +8 -0
- package/lib/components/dynamic-form/models/dynamic-form-selectitem.model.d.ts +11 -0
- package/lib/components/dynamic-form/models/dynamic-form-textitem.model.d.ts +15 -0
- package/lib/components/dynamic-form/models/dynamic-form.models.d.ts +7 -0
- package/lib/components/dynamic-form/services/card-item-types.service.d.ts +13 -0
- package/lib/components/dynamic-form/services/dynamic-component-mapper.service.d.ts +36 -0
- package/lib/components/dynamic-form/services/dynamic-form-update.service.d.ts +30 -0
- package/lib/components/dynamic-form/validators/length-validator.d.ts +7 -0
- package/lib/components/dynamic-form/validators/regex-validator.d.ts +7 -0
- package/lib/components/dynamic-form/validators/required-validator.d.ts +5 -0
- package/lib/components/dynamic-form/validators/value-validator.d.ts +7 -0
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +71 -0
- package/lib/components/dynamic-search/dynamic-search.module.d.ts +19 -0
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +96 -0
- package/lib/components/dynamic-table/dynamic-table.module.d.ts +16 -0
- package/lib/components/dynamic-table/services/dynamic-table.service.d.ts +8 -0
- package/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.d.ts +13 -0
- package/lib/components/dynamic-view/data-viewer/data-viewer.component.d.ts +12 -0
- package/lib/components/dynamic-view/date-viewer/date-viewer.component.d.ts +17 -0
- package/lib/components/dynamic-view/department-viewer/department-viewer.component.d.ts +29 -0
- package/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.d.ts +37 -0
- package/lib/components/dynamic-view/dynamic-view.module.d.ts +20 -0
- package/lib/components/dynamic-view/list-viewer/list-viewer.component.d.ts +20 -0
- package/lib/components/filter/filter/filter.component.d.ts +31 -0
- package/lib/components/filter/filter.module.d.ts +15 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.d.ts +34 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.d.ts +32 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.d.ts +39 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.d.ts +9 -0
- package/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.d.ts +14 -0
- package/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.d.ts +15 -0
- package/lib/components/hijri-gregorian-datepicker/services/date-helper.service.d.ts +8 -0
- package/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.d.ts +11 -0
- package/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.d.ts +10 -0
- package/lib/components/hijri-gregorian-datepicker/utils/consts.d.ts +4 -0
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +19 -0
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +22 -0
- package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts +10 -0
- package/lib/components/latest-activity/constants/activitylog.d.ts +82 -0
- package/lib/components/latest-activity/latest-activity.module.d.ts +19 -0
- package/lib/components/latest-activity/services/activity-log.service.d.ts +12 -0
- package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +15 -0
- package/lib/components/notifications/components/notification-options/notification-options.component.d.ts +10 -0
- package/lib/components/notifications/components/notification-toast/notification-toast.component.d.ts +19 -0
- package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +25 -0
- package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +45 -0
- package/lib/components/notifications/notifications.module.d.ts +24 -0
- package/lib/components/notifications/notifications.service.d.ts +61 -0
- package/lib/components/pagination/pagination/pagination.component.d.ts +46 -0
- package/lib/components/pagination/pagination.module.d.ts +13 -0
- package/lib/components/pdf-tron/pdf-tron.module.d.ts +8 -0
- package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +54 -0
- package/lib/components/pdf-tron/pdftron/pdftron.service.d.ts +30 -0
- package/lib/components/select/select/select.component.d.ts +43 -0
- package/lib/components/select/select.module.d.ts +12 -0
- package/lib/components/table/table/table.component.d.ts +89 -0
- package/lib/components/table/table.module.d.ts +18 -0
- package/lib/components/users-card/users-card.component.d.ts +22 -0
- package/lib/components/users-card/users-card.module.d.ts +17 -0
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +12 -0
- package/lib/components/viewer-log/viewer-log.module.d.ts +10 -0
- package/lib/components/vocabulary/interfaces/op-type.interface.d.ts +1 -0
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +16 -0
- package/lib/components/vocabulary/vocabulary/vocabulary.component.d.ts +37 -0
- package/lib/components/vocabulary/vocabulary.module.d.ts +11 -0
- package/lib/configuration/app-config.service.d.ts +11 -0
- package/lib/configuration/helpers/app-initializer.d.ts +2 -0
- package/lib/directive/app-has-role/app-has-role.directive.d.ts +18 -0
- package/lib/directive/clickOutSide/click-outside.directive.d.ts +11 -0
- package/lib/directive/directive.module.d.ts +16 -0
- package/lib/directive/permissions/evaluators.service.d.ts +26 -0
- package/lib/directive/permissions/permissions.directive.d.ts +46 -0
- package/lib/directive/rtl/set-dir-rtl.directive.d.ts +13 -0
- package/lib/directive/rtl/set-rtl.directive.d.ts +13 -0
- package/lib/nuxeo-development-framework.component.d.ts +8 -5
- package/lib/nuxeo-development-framework.module.d.ts +12 -2
- package/lib/nuxeo-development-framework.service.d.ts +6 -3
- package/lib/pipes/file-size.pipe.d.ts +34 -0
- package/lib/pipes/hijri-date.pipe.d.ts +32 -0
- package/lib/pipes/localized-date.pipe.d.ts +44 -0
- package/lib/pipes/multi-value.pipe.d.ts +32 -0
- package/lib/pipes/pipes.module.d.ts +18 -0
- package/lib/pipes/secure-html.pipe.d.ts +26 -0
- package/lib/pipes/secure.pipe.d.ts +29 -0
- package/lib/pipes/time-ago.pipe.d.ts +34 -0
- package/lib/shared/components/button/button.component.d.ts +38 -0
- package/lib/shared/components/item-list/item-list.component.d.ts +45 -0
- package/lib/shared/components/no-data/no-data.component.d.ts +21 -0
- package/lib/shared/components/read-more/read-more.component.d.ts +37 -0
- package/lib/shared/components/search-autocomplete/search-autocomplete.component.d.ts +49 -0
- package/lib/shared/components/spinner/spinner.component.d.ts +18 -0
- package/lib/shared/components/user-card/user-card.component.d.ts +30 -0
- package/lib/shared/libraryShared.module.d.ts +25 -0
- package/nuxeo-development-framework.d.ts +5 -4
- package/package.json +57 -16
- package/public-api.d.ts +145 -3
- package/bundles/nuxeo-development-framework.umd.min.js +0 -2
- package/bundles/nuxeo-development-framework.umd.min.js.map +0 -1
- package/nuxeo-development-framework.metadata.json +0 -1
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { VocabularyApiService } from '../../../vocabulary/services/vocabulary-api.service';
|
|
5
|
+
import { DynamicFormSelectItemComponent } from '../dynamic-form-selectitem/dynamic-form-selectitem.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* A vocabulary dropdown input integrated with nuxeo vocabulary API,
|
|
9
|
+
* that can be used inside reactive or template driven forms
|
|
10
|
+
* @title
|
|
11
|
+
* vocabulary dropdown
|
|
12
|
+
* @example
|
|
13
|
+
* <app-dynamic-form-vocabulary-item
|
|
14
|
+
* [label]="'PATH.TO.LABEL.TRANSLATION'"
|
|
15
|
+
* [bindLabel]="'bindLabelPropertyName'"
|
|
16
|
+
* [bindValue]="'bindValuePropertyName'"
|
|
17
|
+
* placeholder="'PATH.TO.PLACEHOLDER.TRANSLATION'"
|
|
18
|
+
* [multiple]="false"
|
|
19
|
+
* [searchable]="false"
|
|
20
|
+
* [closeOnSelect]="true"
|
|
21
|
+
* [hideSelectedItems]="false"
|
|
22
|
+
* [vocabularyType]="'VocabularyKey'"
|
|
23
|
+
* formControlName="controlName"
|
|
24
|
+
* >
|
|
25
|
+
* </app-dynamic-form-vocabulary-item>
|
|
26
|
+
*/
|
|
27
|
+
export declare class DynamicFormVocabularyItemComponent implements ControlValueAccessor {
|
|
28
|
+
private vocabularyApi;
|
|
29
|
+
control: NgControl;
|
|
30
|
+
DynamicFormSelectItemComponent: DynamicFormSelectItemComponent;
|
|
31
|
+
data: any[];
|
|
32
|
+
/** Bind value to property name */
|
|
33
|
+
bindValue: any;
|
|
34
|
+
/** Bind label to property name */
|
|
35
|
+
bindLabel: any;
|
|
36
|
+
/** Placeholder string */
|
|
37
|
+
placeholder: any;
|
|
38
|
+
/** Can select multiple */
|
|
39
|
+
multiple: boolean;
|
|
40
|
+
/** Is searchable */
|
|
41
|
+
searchable: boolean;
|
|
42
|
+
/** Should close on select */
|
|
43
|
+
closeOnSelect: boolean;
|
|
44
|
+
/** Should hide selected items */
|
|
45
|
+
hideSelectedItems: boolean;
|
|
46
|
+
/** Vocabulary list API Key */
|
|
47
|
+
vocabularyType: string;
|
|
48
|
+
/** Field Label */
|
|
49
|
+
label: any;
|
|
50
|
+
cacheable: boolean;
|
|
51
|
+
shwoAllValues: boolean;
|
|
52
|
+
/** Event emitted on value is selected */
|
|
53
|
+
onSelecting: EventEmitter<any>;
|
|
54
|
+
loading: boolean;
|
|
55
|
+
selection: any;
|
|
56
|
+
propagateChange: any;
|
|
57
|
+
validateFn: any;
|
|
58
|
+
onTouched: any;
|
|
59
|
+
get invalid(): boolean;
|
|
60
|
+
get showError(): boolean;
|
|
61
|
+
constructor(vocabularyApi: VocabularyApiService, control: NgControl);
|
|
62
|
+
ngOnInit(): void;
|
|
63
|
+
getLisOfOptions(type: any): void;
|
|
64
|
+
getCacheableVocabularyList(type: any): Observable<any>;
|
|
65
|
+
getVocabularyList(type: any): Observable<any>;
|
|
66
|
+
getSelecteditems(selectedItems: any): void;
|
|
67
|
+
writeValue(value: any): void;
|
|
68
|
+
registerOnChange(fn: any): void;
|
|
69
|
+
registerOnTouched(fn: any): void;
|
|
70
|
+
validate(c: FormControl): any;
|
|
71
|
+
isRequired(): any;
|
|
72
|
+
hasErrors(): boolean;
|
|
73
|
+
reset(): void;
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormVocabularyItemComponent, [null, { optional: true; self: true; }]>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormVocabularyItemComponent, "app-dynamic-form-vocabulary-item", never, { "bindValue": "bindValue"; "bindLabel": "bindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "vocabularyType": "vocabularyType"; "label": "label"; "cacheable": "cacheable"; "shwoAllValues": "shwoAllValues"; }, { "onSelecting": "onSelecting"; }, never, never>;
|
|
76
|
+
}
|
package/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.d.ts
ADDED
|
@@ -0,0 +1,599 @@
|
|
|
1
|
+
export declare const baseDisplay: ({
|
|
2
|
+
weight: number;
|
|
3
|
+
type: string;
|
|
4
|
+
input: boolean;
|
|
5
|
+
hidden: boolean;
|
|
6
|
+
key: string;
|
|
7
|
+
label: string;
|
|
8
|
+
tooltip: string;
|
|
9
|
+
validate: {
|
|
10
|
+
pattern: string;
|
|
11
|
+
patternMessage: string;
|
|
12
|
+
required: boolean;
|
|
13
|
+
min?: undefined;
|
|
14
|
+
max?: undefined;
|
|
15
|
+
};
|
|
16
|
+
placeholder?: undefined;
|
|
17
|
+
defaultValue?: undefined;
|
|
18
|
+
dataSrc?: undefined;
|
|
19
|
+
data?: undefined;
|
|
20
|
+
clearOnHide?: undefined;
|
|
21
|
+
suffix?: undefined;
|
|
22
|
+
conditional?: undefined;
|
|
23
|
+
editor?: undefined;
|
|
24
|
+
as?: undefined;
|
|
25
|
+
wysiwyg?: undefined;
|
|
26
|
+
validation?: undefined;
|
|
27
|
+
} | {
|
|
28
|
+
weight: number;
|
|
29
|
+
type: string;
|
|
30
|
+
input: boolean;
|
|
31
|
+
key: string;
|
|
32
|
+
label: string;
|
|
33
|
+
placeholder: string;
|
|
34
|
+
tooltip: string;
|
|
35
|
+
validate: {
|
|
36
|
+
required: boolean;
|
|
37
|
+
pattern?: undefined;
|
|
38
|
+
patternMessage?: undefined;
|
|
39
|
+
min?: undefined;
|
|
40
|
+
max?: undefined;
|
|
41
|
+
};
|
|
42
|
+
hidden?: undefined;
|
|
43
|
+
defaultValue?: undefined;
|
|
44
|
+
dataSrc?: undefined;
|
|
45
|
+
data?: undefined;
|
|
46
|
+
clearOnHide?: undefined;
|
|
47
|
+
suffix?: undefined;
|
|
48
|
+
conditional?: undefined;
|
|
49
|
+
editor?: undefined;
|
|
50
|
+
as?: undefined;
|
|
51
|
+
wysiwyg?: undefined;
|
|
52
|
+
validation?: undefined;
|
|
53
|
+
} | {
|
|
54
|
+
type: string;
|
|
55
|
+
input: boolean;
|
|
56
|
+
key: string;
|
|
57
|
+
label: string;
|
|
58
|
+
tooltip: string;
|
|
59
|
+
weight: number;
|
|
60
|
+
defaultValue: string;
|
|
61
|
+
dataSrc: string;
|
|
62
|
+
data: {
|
|
63
|
+
values: {
|
|
64
|
+
label: string;
|
|
65
|
+
value: string;
|
|
66
|
+
}[];
|
|
67
|
+
};
|
|
68
|
+
hidden?: undefined;
|
|
69
|
+
validate?: undefined;
|
|
70
|
+
placeholder?: undefined;
|
|
71
|
+
clearOnHide?: undefined;
|
|
72
|
+
suffix?: undefined;
|
|
73
|
+
conditional?: undefined;
|
|
74
|
+
editor?: undefined;
|
|
75
|
+
as?: undefined;
|
|
76
|
+
wysiwyg?: undefined;
|
|
77
|
+
validation?: undefined;
|
|
78
|
+
} | {
|
|
79
|
+
type: string;
|
|
80
|
+
input: boolean;
|
|
81
|
+
key: string;
|
|
82
|
+
label: string;
|
|
83
|
+
tooltip: string;
|
|
84
|
+
clearOnHide: boolean;
|
|
85
|
+
weight: number;
|
|
86
|
+
placeholder: string;
|
|
87
|
+
suffix: string;
|
|
88
|
+
validate: {
|
|
89
|
+
min: number;
|
|
90
|
+
max: number;
|
|
91
|
+
pattern?: undefined;
|
|
92
|
+
patternMessage?: undefined;
|
|
93
|
+
required?: undefined;
|
|
94
|
+
};
|
|
95
|
+
conditional: {
|
|
96
|
+
json: {
|
|
97
|
+
and: {
|
|
98
|
+
'!==': (string | {
|
|
99
|
+
var: string;
|
|
100
|
+
})[];
|
|
101
|
+
}[];
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
hidden?: undefined;
|
|
105
|
+
defaultValue?: undefined;
|
|
106
|
+
dataSrc?: undefined;
|
|
107
|
+
data?: undefined;
|
|
108
|
+
editor?: undefined;
|
|
109
|
+
as?: undefined;
|
|
110
|
+
wysiwyg?: undefined;
|
|
111
|
+
validation?: undefined;
|
|
112
|
+
} | {
|
|
113
|
+
weight: number;
|
|
114
|
+
type: string;
|
|
115
|
+
input: boolean;
|
|
116
|
+
key: string;
|
|
117
|
+
label: string;
|
|
118
|
+
placeholder: string;
|
|
119
|
+
tooltip: string;
|
|
120
|
+
editor: string;
|
|
121
|
+
as: string;
|
|
122
|
+
wysiwyg: {
|
|
123
|
+
minLines: number;
|
|
124
|
+
isUseWorkerDisabled: boolean;
|
|
125
|
+
};
|
|
126
|
+
hidden?: undefined;
|
|
127
|
+
validate?: undefined;
|
|
128
|
+
defaultValue?: undefined;
|
|
129
|
+
dataSrc?: undefined;
|
|
130
|
+
data?: undefined;
|
|
131
|
+
clearOnHide?: undefined;
|
|
132
|
+
suffix?: undefined;
|
|
133
|
+
conditional?: undefined;
|
|
134
|
+
validation?: undefined;
|
|
135
|
+
} | {
|
|
136
|
+
weight: number;
|
|
137
|
+
type: string;
|
|
138
|
+
input: boolean;
|
|
139
|
+
key: string;
|
|
140
|
+
label: string;
|
|
141
|
+
tooltip: string;
|
|
142
|
+
hidden?: undefined;
|
|
143
|
+
validate?: undefined;
|
|
144
|
+
placeholder?: undefined;
|
|
145
|
+
defaultValue?: undefined;
|
|
146
|
+
dataSrc?: undefined;
|
|
147
|
+
data?: undefined;
|
|
148
|
+
clearOnHide?: undefined;
|
|
149
|
+
suffix?: undefined;
|
|
150
|
+
conditional?: undefined;
|
|
151
|
+
editor?: undefined;
|
|
152
|
+
as?: undefined;
|
|
153
|
+
wysiwyg?: undefined;
|
|
154
|
+
validation?: undefined;
|
|
155
|
+
} | {
|
|
156
|
+
weight: number;
|
|
157
|
+
type: string;
|
|
158
|
+
input: boolean;
|
|
159
|
+
key: string;
|
|
160
|
+
label: string;
|
|
161
|
+
tooltip: string;
|
|
162
|
+
validation: {
|
|
163
|
+
maxLength: number;
|
|
164
|
+
};
|
|
165
|
+
hidden?: undefined;
|
|
166
|
+
validate?: undefined;
|
|
167
|
+
placeholder?: undefined;
|
|
168
|
+
defaultValue?: undefined;
|
|
169
|
+
dataSrc?: undefined;
|
|
170
|
+
data?: undefined;
|
|
171
|
+
clearOnHide?: undefined;
|
|
172
|
+
suffix?: undefined;
|
|
173
|
+
conditional?: undefined;
|
|
174
|
+
editor?: undefined;
|
|
175
|
+
as?: undefined;
|
|
176
|
+
wysiwyg?: undefined;
|
|
177
|
+
})[];
|
|
178
|
+
export declare const baseData: ({
|
|
179
|
+
weight: number;
|
|
180
|
+
type: string;
|
|
181
|
+
label: string;
|
|
182
|
+
tooltip: string;
|
|
183
|
+
key: string;
|
|
184
|
+
input: boolean;
|
|
185
|
+
placeholder?: undefined;
|
|
186
|
+
dataSrc?: undefined;
|
|
187
|
+
valueProperty?: undefined;
|
|
188
|
+
data?: undefined;
|
|
189
|
+
conditional?: undefined;
|
|
190
|
+
defaultValue?: undefined;
|
|
191
|
+
title?: undefined;
|
|
192
|
+
theme?: undefined;
|
|
193
|
+
collapsible?: undefined;
|
|
194
|
+
collapsed?: undefined;
|
|
195
|
+
components?: undefined;
|
|
196
|
+
} | {
|
|
197
|
+
type: string;
|
|
198
|
+
label: string;
|
|
199
|
+
key: string;
|
|
200
|
+
weight: number;
|
|
201
|
+
placeholder: string;
|
|
202
|
+
tooltip: string;
|
|
203
|
+
input: boolean;
|
|
204
|
+
dataSrc?: undefined;
|
|
205
|
+
valueProperty?: undefined;
|
|
206
|
+
data?: undefined;
|
|
207
|
+
conditional?: undefined;
|
|
208
|
+
defaultValue?: undefined;
|
|
209
|
+
title?: undefined;
|
|
210
|
+
theme?: undefined;
|
|
211
|
+
collapsible?: undefined;
|
|
212
|
+
collapsed?: undefined;
|
|
213
|
+
components?: undefined;
|
|
214
|
+
} | {
|
|
215
|
+
type: string;
|
|
216
|
+
input: boolean;
|
|
217
|
+
key: string;
|
|
218
|
+
label: string;
|
|
219
|
+
weight: number;
|
|
220
|
+
tooltip: string;
|
|
221
|
+
dataSrc: string;
|
|
222
|
+
valueProperty: string;
|
|
223
|
+
data: {};
|
|
224
|
+
conditional: {
|
|
225
|
+
json: {
|
|
226
|
+
'!': {
|
|
227
|
+
var: string;
|
|
228
|
+
}[];
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
placeholder?: undefined;
|
|
232
|
+
defaultValue?: undefined;
|
|
233
|
+
title?: undefined;
|
|
234
|
+
theme?: undefined;
|
|
235
|
+
collapsible?: undefined;
|
|
236
|
+
collapsed?: undefined;
|
|
237
|
+
components?: undefined;
|
|
238
|
+
} | {
|
|
239
|
+
weight: number;
|
|
240
|
+
type: string;
|
|
241
|
+
label: string;
|
|
242
|
+
key: string;
|
|
243
|
+
defaultValue: boolean;
|
|
244
|
+
tooltip: string;
|
|
245
|
+
input: boolean;
|
|
246
|
+
placeholder?: undefined;
|
|
247
|
+
dataSrc?: undefined;
|
|
248
|
+
valueProperty?: undefined;
|
|
249
|
+
data?: undefined;
|
|
250
|
+
conditional?: undefined;
|
|
251
|
+
title?: undefined;
|
|
252
|
+
theme?: undefined;
|
|
253
|
+
collapsible?: undefined;
|
|
254
|
+
collapsed?: undefined;
|
|
255
|
+
components?: undefined;
|
|
256
|
+
} | {
|
|
257
|
+
type: string;
|
|
258
|
+
title: string;
|
|
259
|
+
theme: string;
|
|
260
|
+
collapsible: boolean;
|
|
261
|
+
collapsed: boolean;
|
|
262
|
+
key: string;
|
|
263
|
+
weight: number;
|
|
264
|
+
components: ({
|
|
265
|
+
type: string;
|
|
266
|
+
tag: string;
|
|
267
|
+
content: string;
|
|
268
|
+
title?: undefined;
|
|
269
|
+
collapsible?: undefined;
|
|
270
|
+
collapsed?: undefined;
|
|
271
|
+
style?: undefined;
|
|
272
|
+
key?: undefined;
|
|
273
|
+
components?: undefined;
|
|
274
|
+
} | {
|
|
275
|
+
type: string;
|
|
276
|
+
title: string;
|
|
277
|
+
collapsible: boolean;
|
|
278
|
+
collapsed: boolean;
|
|
279
|
+
style: {
|
|
280
|
+
'margin-bottom': string;
|
|
281
|
+
};
|
|
282
|
+
key: string;
|
|
283
|
+
components: ({
|
|
284
|
+
type: string;
|
|
285
|
+
key: string;
|
|
286
|
+
rows: number;
|
|
287
|
+
editor: string;
|
|
288
|
+
hideLabel: boolean;
|
|
289
|
+
as: string;
|
|
290
|
+
input: boolean;
|
|
291
|
+
tag?: undefined;
|
|
292
|
+
content?: undefined;
|
|
293
|
+
} | {
|
|
294
|
+
type: string;
|
|
295
|
+
tag: string;
|
|
296
|
+
content: string;
|
|
297
|
+
key?: undefined;
|
|
298
|
+
rows?: undefined;
|
|
299
|
+
editor?: undefined;
|
|
300
|
+
hideLabel?: undefined;
|
|
301
|
+
as?: undefined;
|
|
302
|
+
input?: undefined;
|
|
303
|
+
})[];
|
|
304
|
+
tag?: undefined;
|
|
305
|
+
content?: undefined;
|
|
306
|
+
} | {
|
|
307
|
+
type: string;
|
|
308
|
+
title: string;
|
|
309
|
+
collapsible: boolean;
|
|
310
|
+
collapsed: boolean;
|
|
311
|
+
key: string;
|
|
312
|
+
components: ({
|
|
313
|
+
type: string;
|
|
314
|
+
tag: string;
|
|
315
|
+
content: string;
|
|
316
|
+
key?: undefined;
|
|
317
|
+
rows?: undefined;
|
|
318
|
+
editor?: undefined;
|
|
319
|
+
hideLabel?: undefined;
|
|
320
|
+
as?: undefined;
|
|
321
|
+
input?: undefined;
|
|
322
|
+
} | {
|
|
323
|
+
type: string;
|
|
324
|
+
key: string;
|
|
325
|
+
rows: number;
|
|
326
|
+
editor: string;
|
|
327
|
+
hideLabel: boolean;
|
|
328
|
+
as: string;
|
|
329
|
+
input: boolean;
|
|
330
|
+
tag?: undefined;
|
|
331
|
+
content?: undefined;
|
|
332
|
+
})[];
|
|
333
|
+
tag?: undefined;
|
|
334
|
+
content?: undefined;
|
|
335
|
+
style?: undefined;
|
|
336
|
+
})[];
|
|
337
|
+
label?: undefined;
|
|
338
|
+
tooltip?: undefined;
|
|
339
|
+
input?: undefined;
|
|
340
|
+
placeholder?: undefined;
|
|
341
|
+
dataSrc?: undefined;
|
|
342
|
+
valueProperty?: undefined;
|
|
343
|
+
data?: undefined;
|
|
344
|
+
conditional?: undefined;
|
|
345
|
+
defaultValue?: undefined;
|
|
346
|
+
})[];
|
|
347
|
+
export declare const baseValidation: ({
|
|
348
|
+
weight: number;
|
|
349
|
+
type: string;
|
|
350
|
+
key: string;
|
|
351
|
+
defaultValue: string;
|
|
352
|
+
input: boolean;
|
|
353
|
+
label: string;
|
|
354
|
+
tooltip: string;
|
|
355
|
+
dataSrc: string;
|
|
356
|
+
data: {
|
|
357
|
+
values: {
|
|
358
|
+
label: string;
|
|
359
|
+
value: string;
|
|
360
|
+
}[];
|
|
361
|
+
};
|
|
362
|
+
placeholder?: undefined;
|
|
363
|
+
title?: undefined;
|
|
364
|
+
collapsible?: undefined;
|
|
365
|
+
collapsed?: undefined;
|
|
366
|
+
style?: undefined;
|
|
367
|
+
components?: undefined;
|
|
368
|
+
} | {
|
|
369
|
+
weight: number;
|
|
370
|
+
type: string;
|
|
371
|
+
label: string;
|
|
372
|
+
tooltip: string;
|
|
373
|
+
key: string;
|
|
374
|
+
input: boolean;
|
|
375
|
+
defaultValue?: undefined;
|
|
376
|
+
dataSrc?: undefined;
|
|
377
|
+
data?: undefined;
|
|
378
|
+
placeholder?: undefined;
|
|
379
|
+
title?: undefined;
|
|
380
|
+
collapsible?: undefined;
|
|
381
|
+
collapsed?: undefined;
|
|
382
|
+
style?: undefined;
|
|
383
|
+
components?: undefined;
|
|
384
|
+
} | {
|
|
385
|
+
weight: number;
|
|
386
|
+
key: string;
|
|
387
|
+
label: string;
|
|
388
|
+
placeholder: string;
|
|
389
|
+
type: string;
|
|
390
|
+
tooltip: string;
|
|
391
|
+
input: boolean;
|
|
392
|
+
defaultValue?: undefined;
|
|
393
|
+
dataSrc?: undefined;
|
|
394
|
+
data?: undefined;
|
|
395
|
+
title?: undefined;
|
|
396
|
+
collapsible?: undefined;
|
|
397
|
+
collapsed?: undefined;
|
|
398
|
+
style?: undefined;
|
|
399
|
+
components?: undefined;
|
|
400
|
+
} | {
|
|
401
|
+
type: string;
|
|
402
|
+
title: string;
|
|
403
|
+
collapsible: boolean;
|
|
404
|
+
collapsed: boolean;
|
|
405
|
+
style: {
|
|
406
|
+
'margin-bottom': string;
|
|
407
|
+
};
|
|
408
|
+
key: string;
|
|
409
|
+
weight: number;
|
|
410
|
+
components: ({
|
|
411
|
+
type: string;
|
|
412
|
+
tag: string;
|
|
413
|
+
content: string;
|
|
414
|
+
key?: undefined;
|
|
415
|
+
rows?: undefined;
|
|
416
|
+
editor?: undefined;
|
|
417
|
+
hideLabel?: undefined;
|
|
418
|
+
as?: undefined;
|
|
419
|
+
input?: undefined;
|
|
420
|
+
} | {
|
|
421
|
+
type: string;
|
|
422
|
+
key: string;
|
|
423
|
+
rows: number;
|
|
424
|
+
editor: string;
|
|
425
|
+
hideLabel: boolean;
|
|
426
|
+
as: string;
|
|
427
|
+
input: boolean;
|
|
428
|
+
tag?: undefined;
|
|
429
|
+
content?: undefined;
|
|
430
|
+
})[];
|
|
431
|
+
defaultValue?: undefined;
|
|
432
|
+
input?: undefined;
|
|
433
|
+
label?: undefined;
|
|
434
|
+
tooltip?: undefined;
|
|
435
|
+
dataSrc?: undefined;
|
|
436
|
+
data?: undefined;
|
|
437
|
+
placeholder?: undefined;
|
|
438
|
+
} | {
|
|
439
|
+
type: string;
|
|
440
|
+
title: string;
|
|
441
|
+
collapsible: boolean;
|
|
442
|
+
collapsed: boolean;
|
|
443
|
+
key: string;
|
|
444
|
+
weight: number;
|
|
445
|
+
components: ({
|
|
446
|
+
type: string;
|
|
447
|
+
tag: string;
|
|
448
|
+
content: string;
|
|
449
|
+
key?: undefined;
|
|
450
|
+
hideLabel?: undefined;
|
|
451
|
+
rows?: undefined;
|
|
452
|
+
editor?: undefined;
|
|
453
|
+
as?: undefined;
|
|
454
|
+
input?: undefined;
|
|
455
|
+
} | {
|
|
456
|
+
type: string;
|
|
457
|
+
key: string;
|
|
458
|
+
hideLabel: boolean;
|
|
459
|
+
rows: number;
|
|
460
|
+
editor: string;
|
|
461
|
+
as: string;
|
|
462
|
+
input: boolean;
|
|
463
|
+
tag?: undefined;
|
|
464
|
+
content?: undefined;
|
|
465
|
+
})[];
|
|
466
|
+
defaultValue?: undefined;
|
|
467
|
+
input?: undefined;
|
|
468
|
+
label?: undefined;
|
|
469
|
+
tooltip?: undefined;
|
|
470
|
+
dataSrc?: undefined;
|
|
471
|
+
data?: undefined;
|
|
472
|
+
placeholder?: undefined;
|
|
473
|
+
style?: undefined;
|
|
474
|
+
})[];
|
|
475
|
+
export declare const baseConditional: ({
|
|
476
|
+
type: string;
|
|
477
|
+
title: string;
|
|
478
|
+
key: string;
|
|
479
|
+
theme: string;
|
|
480
|
+
components: ({
|
|
481
|
+
type: string;
|
|
482
|
+
input: boolean;
|
|
483
|
+
label: string;
|
|
484
|
+
key: string;
|
|
485
|
+
dataSrc: string;
|
|
486
|
+
data: {
|
|
487
|
+
values: {
|
|
488
|
+
label: string;
|
|
489
|
+
value: string;
|
|
490
|
+
}[];
|
|
491
|
+
};
|
|
492
|
+
valueProperty?: undefined;
|
|
493
|
+
} | {
|
|
494
|
+
type: string;
|
|
495
|
+
input: boolean;
|
|
496
|
+
label: string;
|
|
497
|
+
key: string;
|
|
498
|
+
dataSrc: string;
|
|
499
|
+
valueProperty: string;
|
|
500
|
+
data: {
|
|
501
|
+
values?: undefined;
|
|
502
|
+
};
|
|
503
|
+
} | {
|
|
504
|
+
type: string;
|
|
505
|
+
input: boolean;
|
|
506
|
+
label: string;
|
|
507
|
+
key: string;
|
|
508
|
+
dataSrc?: undefined;
|
|
509
|
+
data?: undefined;
|
|
510
|
+
valueProperty?: undefined;
|
|
511
|
+
})[];
|
|
512
|
+
collapsible?: undefined;
|
|
513
|
+
collapsed?: undefined;
|
|
514
|
+
weight?: undefined;
|
|
515
|
+
} | {
|
|
516
|
+
type: string;
|
|
517
|
+
title: string;
|
|
518
|
+
theme: string;
|
|
519
|
+
collapsible: boolean;
|
|
520
|
+
collapsed: boolean;
|
|
521
|
+
key: string;
|
|
522
|
+
weight: number;
|
|
523
|
+
components: ({
|
|
524
|
+
type: string;
|
|
525
|
+
tag: string;
|
|
526
|
+
content: string;
|
|
527
|
+
title?: undefined;
|
|
528
|
+
collapsible?: undefined;
|
|
529
|
+
collapsed?: undefined;
|
|
530
|
+
style?: undefined;
|
|
531
|
+
key?: undefined;
|
|
532
|
+
components?: undefined;
|
|
533
|
+
} | {
|
|
534
|
+
type: string;
|
|
535
|
+
title: string;
|
|
536
|
+
collapsible: boolean;
|
|
537
|
+
collapsed: boolean;
|
|
538
|
+
style: {
|
|
539
|
+
'margin-bottom': string;
|
|
540
|
+
};
|
|
541
|
+
key: string;
|
|
542
|
+
components: ({
|
|
543
|
+
type: string;
|
|
544
|
+
key: string;
|
|
545
|
+
rows: number;
|
|
546
|
+
editor: string;
|
|
547
|
+
hideLabel: boolean;
|
|
548
|
+
as: string;
|
|
549
|
+
input: boolean;
|
|
550
|
+
tag?: undefined;
|
|
551
|
+
content?: undefined;
|
|
552
|
+
} | {
|
|
553
|
+
type: string;
|
|
554
|
+
tag: string;
|
|
555
|
+
content: string;
|
|
556
|
+
key?: undefined;
|
|
557
|
+
rows?: undefined;
|
|
558
|
+
editor?: undefined;
|
|
559
|
+
hideLabel?: undefined;
|
|
560
|
+
as?: undefined;
|
|
561
|
+
input?: undefined;
|
|
562
|
+
})[];
|
|
563
|
+
tag?: undefined;
|
|
564
|
+
content?: undefined;
|
|
565
|
+
} | {
|
|
566
|
+
type: string;
|
|
567
|
+
title: string;
|
|
568
|
+
collapsible: boolean;
|
|
569
|
+
collapsed: boolean;
|
|
570
|
+
key: string;
|
|
571
|
+
components: ({
|
|
572
|
+
type: string;
|
|
573
|
+
tag: string;
|
|
574
|
+
content: string;
|
|
575
|
+
key?: undefined;
|
|
576
|
+
rows?: undefined;
|
|
577
|
+
editor?: undefined;
|
|
578
|
+
hideLabel?: undefined;
|
|
579
|
+
as?: undefined;
|
|
580
|
+
input?: undefined;
|
|
581
|
+
} | {
|
|
582
|
+
type: string;
|
|
583
|
+
key: string;
|
|
584
|
+
rows: number;
|
|
585
|
+
editor: string;
|
|
586
|
+
hideLabel: boolean;
|
|
587
|
+
as: string;
|
|
588
|
+
input: boolean;
|
|
589
|
+
tag?: undefined;
|
|
590
|
+
content?: undefined;
|
|
591
|
+
})[];
|
|
592
|
+
tag?: undefined;
|
|
593
|
+
content?: undefined;
|
|
594
|
+
style?: undefined;
|
|
595
|
+
})[];
|
|
596
|
+
})[];
|
|
597
|
+
export declare const baseEditForm: (...extend: any[]) => {
|
|
598
|
+
components: any;
|
|
599
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormioCustomComponent } from 'angular-formio';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DateWrapperComponent implements FormioCustomComponent<any> {
|
|
5
|
+
value: number;
|
|
6
|
+
fixedKey: string;
|
|
7
|
+
valueChange: EventEmitter<any>;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
constructor();
|
|
10
|
+
excuteFunction(event: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateWrapperComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateWrapperComponent, "app-date-wrapper", never, { "value": "value"; "fixedKey": "fixedKey"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToggleWrapperComponent {
|
|
4
|
+
value: number;
|
|
5
|
+
fixedKey: string;
|
|
6
|
+
customOptions: string;
|
|
7
|
+
valueChange: EventEmitter<number>;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
constructor();
|
|
10
|
+
executeFunction(event: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleWrapperComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleWrapperComponent, "cts-toggle-wrapper", never, { "value": "value"; "fixedKey": "fixedKey"; "customOptions": "customOptions"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
13
|
+
}
|