@myrtex-org/form 1.0.2 → 1.0.4
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 +1 -1
- package/esm2022/lib/modules/object-form/components/elements/base/base-element/base-element.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/base/base-field/base-field.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/content/divider/content-divider.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/content/file/content-file.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/content/text/content-text.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/content/title/content-title.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/content/tooltip/content-tooltip.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/input/checkbox-group/input-checkbox-group.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/date/input-date.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/file/input-file.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/inn/input-inn.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/link/input-link.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/number/input-number.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/phone/input-phone.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/radio-group/input-radio-group.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/select/input-select.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/switch/input-switch.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/table/components/input-table-modal/form-dispenser-modal/form-dispenser-modal.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/table/helpers/get-row-model.helper.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/table/input-table.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/text/input-text.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/textarea/input-textarea.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/form-dispenser/form-dispenser.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/index.mjs +3 -0
- package/esm2022/lib/modules/object-form/factories/component-factory/component-factory.directive.mjs +1 -1
- package/esm2022/lib/modules/object-form/factories/component-factory/enums/component.enum.mjs +2 -2
- package/esm2022/lib/modules/object-form/factories/component-factory/models/component.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/helpers/check-dependence-rule.helper.mjs +2 -2
- package/esm2022/lib/modules/object-form/helpers/get-updated-values.mjs +2 -2
- package/esm2022/lib/modules/object-form/helpers/get-value-model.helper.mjs +2 -2
- package/esm2022/lib/modules/object-form/models/dependence-rules/dependence-condition.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/dependence-rules/field-dependence-check-result.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/dependence-rules/field-dependence.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/dependence-rules/template-field-simple.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/group-options.model.mjs +2 -2
- package/esm2022/lib/modules/object-form/models/elemets/inputs/content-divider.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/content-file.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/content-text.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/content-title.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/content-tooltip.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-checkbox-group.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-date.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-file.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-inn.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-link.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-number.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-phone.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-radio-group.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-select.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-switch.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-table.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-text.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/inputs/input-textarea.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/elemets/section-options.model.mjs +2 -2
- package/esm2022/lib/modules/object-form/models/object-property.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/template-component.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/template.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/models/value.model.mjs +1 -1
- package/esm2022/lib/modules/object-form/object-form-routing.module.mjs +3 -3
- package/esm2022/lib/modules/object-form/object-form.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/object-form.module.mjs +14 -15
- package/esm2022/lib/modules/object-form/services/object-form.service.mjs +2 -2
- package/esm2022/lib/modules/object-form/store/object-form.actions.mjs +1 -1
- package/esm2022/lib/modules/object-form/store/object-form.effects.mjs +4 -4
- package/esm2022/lib/modules/object-form/store/object-form.reducers.mjs +3 -4
- package/esm2022/lib/modules/object-form/store/object-form.selector.mjs +4 -4
- package/esm2022/lib/modules/object-form/store/object-form.state.mjs +1 -1
- package/esm2022/lib/modules/shared-form/constants/index.mjs +2 -0
- package/esm2022/lib/modules/shared-form/enums/component-size.enum.mjs +7 -0
- package/esm2022/lib/modules/shared-form/enums/component-type.enum.mjs +46 -0
- package/esm2022/lib/modules/shared-form/enums/condition-operator-type.enum.mjs +15 -0
- package/esm2022/lib/modules/shared-form/enums/date-format.enum.mjs +12 -0
- package/esm2022/lib/modules/shared-form/enums/date-type.enum.mjs +10 -0
- package/esm2022/lib/modules/shared-form/enums/dependence-action-type.enum.mjs +12 -0
- package/esm2022/lib/modules/shared-form/enums/index.mjs +13 -0
- package/esm2022/lib/modules/shared-form/enums/inn-type.enum.mjs +12 -0
- package/esm2022/lib/modules/shared-form/enums/input-state.enum.mjs +18 -0
- package/esm2022/lib/modules/shared-form/enums/logical-operator-type.enum.mjs +7 -0
- package/esm2022/lib/modules/shared-form/enums/template-components-group-type.enum.mjs +10 -0
- package/esm2022/lib/modules/shared-form/enums/template-status.enum.mjs +15 -0
- package/esm2022/lib/modules/shared-form/enums/value-type.enum.mjs +18 -0
- package/esm2022/lib/modules/shared-form/helpers/common.helpers.mjs +11 -0
- package/esm2022/lib/modules/{core → shared-form}/helpers/index.mjs +1 -1
- package/esm2022/lib/modules/shared-form/interceptors/concurrency.interceptor.mjs +32 -0
- package/esm2022/lib/modules/{core → shared-form}/interceptors/index.mjs +1 -1
- package/esm2022/lib/modules/shared-form/models/component-model-base.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/concurrency-info.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/file.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/index.mjs +8 -0
- package/esm2022/lib/modules/shared-form/models/navigation-tabs.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/options-base.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/select-list-item.model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/user/index.mjs +3 -0
- package/esm2022/lib/modules/shared-form/models/user/policy.type.mjs +2 -0
- package/esm2022/lib/modules/shared-form/models/user/route-data-model.mjs +2 -0
- package/esm2022/lib/modules/shared-form/services/concurrency-store.service.mjs +63 -0
- package/esm2022/lib/modules/{core → shared-form}/services/index.mjs +1 -1
- package/esm2022/lib/modules/shared-form/shared-form.module.mjs +27 -0
- package/esm2022/lib/modules/shared-form/store/index.mjs +5 -0
- package/esm2022/lib/modules/shared-form/store/shared-form.effects.mjs +2 -0
- package/esm2022/lib/modules/shared-form/store/shared-form.reducer.mjs +6 -0
- package/esm2022/lib/modules/shared-form/store/shared-form.selector.mjs +27 -0
- package/esm2022/lib/modules/shared-form/store/shared-form.state.mjs +2 -0
- package/esm2022/public-api.mjs +11 -11
- package/fesm2022/myrtex-org-form.mjs +10 -2318
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/components/elements/base/base-element/base-element.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/base/base-field/base-field.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/content/divider/content-divider.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/content/file/content-file.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/content/text/content-text.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/content/title/content-title.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/content/tooltip/content-tooltip.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/input/checkbox-group/input-checkbox-group.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/date/input-date.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/file/input-file.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/inn/input-inn.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/link/input-link.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/number/input-number.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/phone/input-phone.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/radio-group/input-radio-group.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/select/input-select.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/input/switch/input-switch.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/table/helpers/get-row-model.helper.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/table/input-table.component.d.ts +2 -2
- package/lib/modules/object-form/components/elements/input/text/input-text.component.d.ts +1 -1
- package/lib/modules/object-form/components/elements/input/textarea/input-textarea.component.d.ts +1 -1
- package/lib/modules/object-form/components/index.d.ts +2 -0
- package/lib/modules/object-form/factories/component-factory/component-factory.directive.d.ts +2 -2
- package/lib/modules/object-form/factories/component-factory/models/component.model.d.ts +1 -1
- package/lib/modules/object-form/helpers/get-value-model.helper.d.ts +3 -3
- package/lib/modules/object-form/models/dependence-rules/dependence-condition.model.d.ts +1 -1
- package/lib/modules/object-form/models/dependence-rules/field-dependence-check-result.model.d.ts +1 -1
- package/lib/modules/object-form/models/dependence-rules/field-dependence.model.d.ts +1 -1
- package/lib/modules/object-form/models/dependence-rules/template-field-simple.model.d.ts +1 -1
- package/lib/modules/object-form/models/elemets/group-options.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/content-divider.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/content-file.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/content-text.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/content-title.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/content-tooltip.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-checkbox-group.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-date.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-file.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-inn.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-link.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-number.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-phone.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-radio-group.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-select.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-switch.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-table.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-text.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/inputs/input-textarea.model.d.ts +2 -2
- package/lib/modules/object-form/models/elemets/section-options.model.d.ts +2 -2
- package/lib/modules/object-form/models/object-property.model.d.ts +1 -1
- package/lib/modules/object-form/models/template-component.model.d.ts +2 -2
- package/lib/modules/object-form/models/template.model.d.ts +1 -1
- package/lib/modules/object-form/models/value.model.d.ts +1 -1
- package/lib/modules/object-form/object-form.module.d.ts +13 -31
- package/lib/modules/object-form/services/object-form.service.d.ts +1 -1
- package/lib/modules/object-form/store/object-form.actions.d.ts +2 -3
- package/lib/modules/object-form/store/object-form.effects.d.ts +14 -15
- package/lib/modules/object-form/store/object-form.selector.d.ts +2 -2
- package/lib/modules/object-form/store/object-form.state.d.ts +2 -3
- package/lib/modules/shared-form/constants/index.d.ts +1 -0
- package/lib/modules/{core → shared-form}/models/component-model-base.model.d.ts +1 -1
- package/lib/modules/{core → shared-form}/models/navigation-tabs.model.d.ts +1 -1
- package/lib/modules/shared-form/shared-form.module.d.ts +9 -0
- package/lib/modules/shared-form/store/index.d.ts +4 -0
- package/lib/modules/shared-form/store/shared-form.reducer.d.ts +3 -0
- package/lib/modules/{shared-store/store/shared-store.state.d.ts → shared-form/store/shared-form.state.d.ts} +1 -2
- package/package.json +1 -1
- package/public-api.d.ts +7 -7
- package/esm2022/lib/modules/core/enums/component-size.enum.mjs +0 -7
- package/esm2022/lib/modules/core/enums/component-type.enum.mjs +0 -46
- package/esm2022/lib/modules/core/enums/condition-operator-type.enum.mjs +0 -15
- package/esm2022/lib/modules/core/enums/date-format.enum.mjs +0 -12
- package/esm2022/lib/modules/core/enums/date-type.enum.mjs +0 -10
- package/esm2022/lib/modules/core/enums/dependence-action-type.enum.mjs +0 -12
- package/esm2022/lib/modules/core/enums/index.mjs +0 -13
- package/esm2022/lib/modules/core/enums/inn-type.enum.mjs +0 -12
- package/esm2022/lib/modules/core/enums/input-state.enum.mjs +0 -18
- package/esm2022/lib/modules/core/enums/logical-operator-type.enum.mjs +0 -7
- package/esm2022/lib/modules/core/enums/template-components-group-type.enum.mjs +0 -10
- package/esm2022/lib/modules/core/enums/template-status.enum.mjs +0 -15
- package/esm2022/lib/modules/core/enums/value-type.enum.mjs +0 -18
- package/esm2022/lib/modules/core/helpers/common.helpers.mjs +0 -11
- package/esm2022/lib/modules/core/interceptors/concurrency.interceptor.mjs +0 -32
- package/esm2022/lib/modules/core/models/component-model-base.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/concurrency-info.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/file.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/index.mjs +0 -8
- package/esm2022/lib/modules/core/models/navigation-tabs.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/options-base.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/select-list-item.model.mjs +0 -2
- package/esm2022/lib/modules/core/models/user/index.mjs +0 -3
- package/esm2022/lib/modules/core/models/user/policy.type.mjs +0 -2
- package/esm2022/lib/modules/core/models/user/route-data-model.mjs +0 -2
- package/esm2022/lib/modules/core/services/concurrency-store.service.mjs +0 -63
- package/esm2022/lib/modules/shared-store/constants/index.mjs +0 -2
- package/esm2022/lib/modules/shared-store/shared-store.module.mjs +0 -27
- package/esm2022/lib/modules/shared-store/store/index.mjs +0 -5
- package/esm2022/lib/modules/shared-store/store/shared-store.effects.mjs +0 -2
- package/esm2022/lib/modules/shared-store/store/shared-store.reducer.mjs +0 -6
- package/esm2022/lib/modules/shared-store/store/shared-store.selector.mjs +0 -27
- package/esm2022/lib/modules/shared-store/store/shared-store.state.mjs +0 -3
- package/lib/modules/shared-store/constants/index.d.ts +0 -1
- package/lib/modules/shared-store/shared-store.module.d.ts +0 -9
- package/lib/modules/shared-store/store/index.d.ts +0 -4
- package/lib/modules/shared-store/store/shared-store.reducer.d.ts +0 -3
- /package/lib/modules/{core → shared-form}/enums/component-size.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/component-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/condition-operator-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/date-format.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/date-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/dependence-action-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/index.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/inn-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/input-state.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/logical-operator-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/template-components-group-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/template-status.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/enums/value-type.enum.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/helpers/common.helpers.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/helpers/index.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/interceptors/concurrency.interceptor.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/interceptors/index.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/concurrency-info.model.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/file.model.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/index.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/options-base.model.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/select-list-item.model.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/user/index.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/user/policy.type.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/models/user/route-data-model.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/services/concurrency-store.service.d.ts +0 -0
- /package/lib/modules/{core → shared-form}/services/index.d.ts +0 -0
- /package/lib/modules/{shared-store/store/shared-store.effects.d.ts → shared-form/store/shared-form.effects.d.ts} +0 -0
- /package/lib/modules/{shared-store/store/shared-store.selector.d.ts → shared-form/store/shared-form.selector.d.ts} +0 -0
package/lib/modules/object-form/components/elements/base/base-element/base-element.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentModelBase } from '../../../../../
|
|
2
|
+
import { ComponentModelBase } from '../../../../../shared-form/models';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ComponentValueModel, SectionValueModel } from '../../../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
package/lib/modules/object-form/components/elements/base/base-field/base-field.component.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
|
-
import { ComponentModelBase } from '../../../../../
|
|
4
|
+
import { ComponentModelBase } from '../../../../../shared-form/models';
|
|
5
5
|
import { Field } from '@myrtex-org/ui';
|
|
6
6
|
import { ComponentValueModel, ValueModel } from '../../../../models';
|
|
7
7
|
import * as i0 from "@angular/core";
|
package/lib/modules/object-form/components/elements/content/divider/content-divider.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentType } from '../../../../../
|
|
2
|
-
import { BaseElementComponent } from '
|
|
1
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
2
|
+
import { BaseElementComponent } from '../../base';
|
|
3
3
|
import { ContentDividerModel } from '../../../../models/elemets/inputs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ContentDividerComponent extends BaseElementComponent<ContentDividerModel> {
|
package/lib/modules/object-form/components/elements/content/file/content-file.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { formatBytes } from '@myrtex-org/ui-composite';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
3
|
-
import { BaseElementComponent } from '
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
|
+
import { BaseElementComponent } from '../../base';
|
|
4
4
|
import { ContentFileModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ContentFileComponent extends BaseElementComponent<ContentFileModel> {
|
package/lib/modules/object-form/components/elements/content/text/content-text.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentType } from '../../../../../
|
|
2
|
-
import { BaseElementComponent } from '
|
|
1
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
2
|
+
import { BaseElementComponent } from '../../base';
|
|
3
3
|
import { ContentTextModel } from '../../../../models/elemets/inputs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ContentTextComponent extends BaseElementComponent<ContentTextModel> {
|
package/lib/modules/object-form/components/elements/content/title/content-title.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentType } from '../../../../../
|
|
2
|
-
import { BaseElementComponent } from '
|
|
1
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
2
|
+
import { BaseElementComponent } from '../../base';
|
|
3
3
|
import { ContentTitleModel } from '../../../../models/elemets/inputs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ContentTitleComponent extends BaseElementComponent<ContentTitleModel> {
|
package/lib/modules/object-form/components/elements/content/tooltip/content-tooltip.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentType } from '../../../../../
|
|
2
|
-
import { BaseElementComponent } from '
|
|
1
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
2
|
+
import { BaseElementComponent } from '../../base';
|
|
3
3
|
import { ContentTooltipModel } from '../../../../models/elemets/inputs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ContentTooltipComponent extends BaseElementComponent<ContentTooltipModel> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputCheckboxGroupModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { CheckboxGroupItem } from '@myrtex-org/ui';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputDateModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { ComponentValueModel } from '../../../../models';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { BaseFieldComponent } from '../../base';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputINNModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { InputTextValueWithId } from '@myrtex-org/ui';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputLinkModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { InputTextValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/components/elements/input/number/input-number.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputNumberModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { InputNumberValueWithId } from '@myrtex-org/ui';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputPhoneModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { CountriesISO } from '@myrtex-org/ui';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputRadioGroupModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { RadioGroupItem, RadioGroupValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/components/elements/input/select/input-select.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
3
|
-
import { SelectListItem } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
|
+
import { SelectListItem } from '../../../../../shared-form/models';
|
|
4
4
|
import { BaseFieldComponent } from '../../base';
|
|
5
5
|
import { InputSelectModel } from '../../../../models/elemets/inputs';
|
|
6
6
|
import { InputSelectValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/components/elements/input/switch/input-switch.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputSwitchModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { SwitchValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/components/elements/input/table/helpers/get-row-model.helper.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ComponentModelBase } from '../../../../../../
|
|
1
|
+
import { ComponentModelBase } from '../../../../../../shared-form/models';
|
|
2
2
|
import { TableRowModel } from '../../../../../models';
|
|
3
3
|
export declare const getRowModel: (model: ComponentModelBase) => TableRowModel;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
3
|
-
import { ComponentModelBase } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
|
+
import { ComponentModelBase } from '../../../../../shared-form/models';
|
|
4
4
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
5
5
|
import { ComponentValueModel, SectionValueModel, TableValueModel } from '../../../../models';
|
|
6
6
|
import { InputTableModel } from '../../../../models/elemets/inputs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputTextModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { InputTextValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/components/elements/input/textarea/input-textarea.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../../../
|
|
2
|
+
import { ComponentType } from '../../../../../shared-form/enums';
|
|
3
3
|
import { BaseFieldComponent } from '../../base';
|
|
4
4
|
import { InputTextareaModel } from '../../../../models/elemets/inputs';
|
|
5
5
|
import { InputEditorValueWithId, InputTextareaValueWithId } from '@myrtex-org/ui';
|
package/lib/modules/object-form/factories/component-factory/component-factory.directive.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentRef, EventEmitter, OnChanges, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComponentType } from '../../../
|
|
3
|
-
import { ComponentModelBase } from '../../../
|
|
2
|
+
import { ComponentType } from '../../../shared-form/enums';
|
|
3
|
+
import { ComponentModelBase } from '../../../shared-form/models';
|
|
4
4
|
import { ComponentsMapType } from './enums/component.enum';
|
|
5
5
|
import { AbstractComponent } from './models/component.model';
|
|
6
6
|
import { ComponentValueModel, ValueModel } from '../../models';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentModelBase } from '../../../../
|
|
1
|
+
import { ComponentModelBase } from '../../../../shared-form/models';
|
|
2
2
|
import { ComponentValueModel, ValueModel } from '../../../models';
|
|
3
3
|
import { EventEmitter } from '@angular/core';
|
|
4
4
|
export interface ComponentIE {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ComponentModelBase } from '../../
|
|
2
|
-
import { ComponentType } from '../../
|
|
1
|
+
import { ComponentModelBase } from '../../shared-form/models';
|
|
2
|
+
import { ComponentType } from '../../shared-form/enums';
|
|
3
3
|
import { ComponentValueModel, ValueModel } from '../models';
|
|
4
4
|
export declare const defaultValueModel: (c: ComponentModelBase, defaultValue?: any) => {
|
|
5
5
|
sysName: string;
|
|
6
6
|
type: ComponentType;
|
|
7
|
-
valueType: import("../../
|
|
7
|
+
valueType: import("../../shared-form/enums").ValueType;
|
|
8
8
|
value: any;
|
|
9
9
|
};
|
|
10
10
|
export declare const getValueModel: (settings: ComponentModelBase, values: ValueModel[]) => ComponentValueModel | (ComponentValueModel | null)[] | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConditionOperatorType, LogicalOperatorType } from '../../../
|
|
1
|
+
import { ConditionOperatorType, LogicalOperatorType } from '../../../shared-form/enums';
|
|
2
2
|
import { TemplateFieldSimpleModel } from '../../models';
|
|
3
3
|
export interface DependenceCondidtionModel {
|
|
4
4
|
field: TemplateFieldSimpleModel | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../
|
|
2
|
-
import { ComponentType, ValueType } from '../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../shared-form/models';
|
|
2
|
+
import { ComponentType, ValueType } from '../../../shared-form/enums';
|
|
3
3
|
export declare class GroupComponent implements ComponentModelBase {
|
|
4
4
|
id: string;
|
|
5
5
|
previewTooltip: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { ComponentSizeEnum, InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { ComponentSizeEnum, InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface ContentDividerOptionsBase extends OptionsBase {
|
|
4
4
|
size: ComponentSizeEnum;
|
|
5
5
|
viewLine: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface ContentFileOptionsBase extends OptionsBase {
|
|
4
4
|
fileId?: string;
|
|
5
5
|
fileName?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface ContentTextOptionsBase extends OptionsBase {
|
|
4
4
|
text: string;
|
|
5
5
|
inputState: InputState;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { ComponentSizeEnum, InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { ComponentSizeEnum, InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface ContentTitleOptionsBase extends OptionsBase {
|
|
4
4
|
title: string;
|
|
5
5
|
text: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
import { AlertColors } from '@myrtex-org/ui';
|
|
4
4
|
export interface ContentTooltipOptionsBase extends OptionsBase {
|
|
5
5
|
title: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputCheckboxGroupOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { DateFormatEnum, DateTypeEnum, InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { DateFormatEnum, DateTypeEnum, InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputDateOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputFileOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InnTypeEnum, InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InnTypeEnum, InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputINNOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputLinkOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputNumberOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputPhoneOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
inputState: InputState;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputRadioGroupOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputSelectOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputSwitchOptionsBase extends OptionsBase {
|
|
4
4
|
tooltip?: string;
|
|
5
5
|
switchText: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputTableOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputTextOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../../
|
|
2
|
-
import { InputState } from '../../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models';
|
|
2
|
+
import { InputState } from '../../../../shared-form/enums';
|
|
3
3
|
export interface InputTextareaOptionsBase extends OptionsBase {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltip?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionsBase, ComponentModelBase } from '../../../
|
|
2
|
-
import { ComponentType, ValueType } from '../../../
|
|
1
|
+
import { OptionsBase, ComponentModelBase } from '../../../shared-form/models';
|
|
2
|
+
import { ComponentType, ValueType } from '../../../shared-form/enums';
|
|
3
3
|
export interface SectionOptions extends OptionsBase {
|
|
4
4
|
title?: string;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentModelBase } from '../../
|
|
2
|
-
import { ComponentType, TemplateComponentsGroupTypeEnum } from '../../
|
|
1
|
+
import { ComponentModelBase } from '../../shared-form/models';
|
|
2
|
+
import { ComponentType, TemplateComponentsGroupTypeEnum } from '../../shared-form/enums';
|
|
3
3
|
export interface TemplateComponentGroupFromServerModel {
|
|
4
4
|
type: TemplateComponentsGroupTypeEnum;
|
|
5
5
|
components: ComponentType[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentModelBase } from '../../
|
|
1
|
+
import { ComponentModelBase } from '../../shared-form/models';
|
|
2
2
|
import { TemplateComponentGroupFromServerModel, ObjectPropertyModel, FieldDependenceModel } from '../models';
|
|
3
3
|
export interface TemplateModel {
|
|
4
4
|
sysName: string;
|
|
@@ -1,37 +1,19 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./object-form.component";
|
|
3
|
-
import * as i2 from "./components
|
|
4
|
-
import * as i3 from "./components/elements
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "
|
|
15
|
-
import * as i14 from "./components/elements/input/radio-group/input-radio-group.component";
|
|
16
|
-
import * as i15 from "./components/elements/input/table/input-table.component";
|
|
17
|
-
import * as i16 from "./components/elements/content/title/content-title.component";
|
|
18
|
-
import * as i17 from "./components/elements/content/text/content-text.component";
|
|
19
|
-
import * as i18 from "./components/elements/content/tooltip/content-tooltip.component";
|
|
20
|
-
import * as i19 from "./components/elements/content/file/content-file.component";
|
|
21
|
-
import * as i20 from "./components/elements/content/divider/content-divider.component";
|
|
22
|
-
import * as i21 from "@angular/common";
|
|
23
|
-
import * as i22 from "./object-form-routing.module";
|
|
24
|
-
import * as i23 from "@ngrx/store";
|
|
25
|
-
import * as i24 from "@ngrx/effects";
|
|
26
|
-
import * as i25 from "./components/form-dispenser/form-dispenser.component";
|
|
27
|
-
import * as i26 from "@myrtex-org/templates";
|
|
28
|
-
import * as i27 from "@myrtex-org/ui";
|
|
29
|
-
import * as i28 from "@angular/forms";
|
|
30
|
-
import * as i29 from "devextreme-angular";
|
|
31
|
-
import * as i30 from "devextreme-angular/ui/nested";
|
|
32
|
-
import * as i31 from "../shared-store/shared-store.module";
|
|
3
|
+
import * as i2 from "./components";
|
|
4
|
+
import * as i3 from "./components/elements";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "./object-form-routing.module";
|
|
7
|
+
import * as i6 from "@ngrx/store";
|
|
8
|
+
import * as i7 from "@ngrx/effects";
|
|
9
|
+
import * as i8 from "@myrtex-org/templates";
|
|
10
|
+
import * as i9 from "@myrtex-org/ui";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "devextreme-angular";
|
|
13
|
+
import * as i12 from "devextreme-angular/ui/nested";
|
|
14
|
+
import * as i13 from "../shared-form/shared-form.module";
|
|
33
15
|
export declare class ObjectFormModule {
|
|
34
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectFormModule, never>;
|
|
35
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ObjectFormModule, [typeof i1.ObjectFormComponent, typeof i2.ApplicationContent, typeof i3.InputTextComponent, typeof
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ObjectFormModule, [typeof i1.ObjectFormComponent, typeof i2.ApplicationContent, typeof i3.InputTextComponent, typeof i3.InputTextareaComponent, typeof i3.InputLinkComponent, typeof i3.InputSwitchComponent, typeof i3.InputNumberComponent, typeof i3.InputSelectComponent, typeof i3.InputDateComponent, typeof i3.InputInnComponent, typeof i3.InputFileComponent, typeof i3.InputPhoneComponent, typeof i3.InputCheckboxGroupComponent, typeof i3.InputRadioGroupComponent, typeof i3.InputTableComponent, typeof i3.ContentTitleComponent, typeof i3.ContentTextComponent, typeof i3.ContentTooltipComponent, typeof i3.ContentFileComponent, typeof i3.ContentDividerComponent], [typeof i4.CommonModule, typeof i5.ObjectFormRoutingModule, typeof i6.StoreFeatureModule, typeof i7.EffectsFeatureModule, typeof i2.FormDispenser, typeof i8.FormHeaderModule, typeof i8.MenuAdminModule, typeof i9.LoaderModule, typeof i9.InputTextModule, typeof i9.LabelModule, typeof i9.ContentWrapperModule, typeof i9.EditorModule, typeof i9.InputTextareaModule, typeof i9.ButtonModule, typeof i10.FormsModule, typeof i9.CheckboxModule, typeof i9.SwitchModule, typeof i9.InputNumberModule, typeof i9.InputSelectModule, typeof i9.InputDateTimeModule, typeof i9.InputTimepickerModule, typeof i9.InputFileModule, typeof i9.AlertModule, typeof i9.CheckboxGroupModule, typeof i9.RadioGroupModule, typeof i9.DropdownModule, typeof i9.InputTelModule, typeof i9.LinkModule, typeof i9.ErrorMessageModule, typeof i11.DxDataGridModule, typeof i12.DxiColumnModule, typeof i12.DxiItemModule, typeof i12.DxoToolbarModule, typeof i9.ModalModule, typeof i9.ToasterServiceModule, typeof i13.SharedFormModule], never>;
|
|
36
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<ObjectFormModule>;
|
|
37
19
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { FileModel } from '../../
|
|
2
|
+
import { FileModel } from '../../shared-form/models';
|
|
3
3
|
import { ObjectValuesDto, SectionValueModel, UpdateValueResult, TemplateModel } from '../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ObjectFormService {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { TemplateModel } from '../models';
|
|
2
|
-
import {
|
|
3
|
-
import { FileModel } from '../../core/models';
|
|
1
|
+
import { SectionValueModel, UpdateValueResult, ValueModel, TemplateModel } from '../models';
|
|
2
|
+
import { FileModel } from '../../shared-form/models';
|
|
4
3
|
export declare enum EApplicationActions {
|
|
5
4
|
LoadTemplatePending = "[Application] Load Template Pending",
|
|
6
5
|
LoadTemplateSuccess = "[Application] Load Template Success",
|