@fuentis/phoenix-ui 0.0.9-alpha.69 → 0.0.9-alpha.73
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/fesm2022/fuentis-phoenix-ui.mjs +3148 -68
- package/fesm2022/fuentis-phoenix-ui.mjs.map +1 -1
- package/lib/components/meta-form/meta-field-error/inline-field-error.component.d.ts +20 -0
- package/lib/components/meta-form/meta-field-label/meta-label.component.d.ts +10 -0
- package/lib/components/meta-form/meta-form-abstract.d.ts +40 -0
- package/lib/components/meta-form/meta-form-buttons/meta-form-buttons.component.d.ts +21 -0
- package/lib/components/meta-form/meta-form-fields/meta-assign-responsible/meta-assign-responsible.component.d.ts +20 -0
- package/lib/components/meta-form/meta-form-fields/meta-calendar/meta-calendar.component.d.ts +7 -0
- package/lib/components/meta-form/meta-form-fields/meta-checkbox/meta-checkbox.component.d.ts +8 -0
- package/lib/components/meta-form/meta-form-fields/meta-checkbox-color-picker/meta-checkbox-color-picker.component.d.ts +10 -0
- package/lib/components/meta-form/meta-form-fields/meta-color-picker/meta-color-picker.component.d.ts +6 -0
- package/lib/components/meta-form/meta-form-fields/meta-currency/meta-currency.component.d.ts +9 -0
- package/lib/components/meta-form/meta-form-fields/meta-multiple-select/meta-multiple-select.component.d.ts +6 -0
- package/lib/components/meta-form/meta-form-fields/meta-number-input/meta-number-input.component.d.ts +7 -0
- package/lib/components/meta-form/meta-form-fields/meta-password-feild/meta-password-feild.component.d.ts +6 -0
- package/lib/components/meta-form/meta-form-fields/meta-select-button/meta-select-button.component.d.ts +6 -0
- package/lib/components/meta-form/meta-form-fields/meta-single-select/meta-single-select.component.d.ts +12 -0
- package/lib/components/meta-form/meta-form-fields/meta-single-select-object-based/meta-single-select-object_based.component.d.ts +11 -0
- package/lib/components/meta-form/meta-form-fields/meta-start-due-date/meta-start-due-date.component.d.ts +23 -0
- package/lib/components/meta-form/meta-form-fields/meta-switch/meta-switch.component.d.ts +6 -0
- package/lib/components/meta-form/meta-form-fields/meta-text-area/meta-text-area.component.d.ts +7 -0
- package/lib/components/meta-form/meta-form-fields/meta-text-editor/meta-text-editor.component.d.ts +7 -0
- package/lib/components/meta-form/meta-form-fields/meta-text-input/meta-text-input.component.d.ts +7 -0
- package/lib/components/meta-form/meta-form-fields/meta-timeperiod/meta-timeperiod.component.d.ts +19 -0
- package/lib/components/meta-form/meta-form-fields/meta-upload/meta-upload.component.d.ts +12 -0
- package/lib/components/meta-form/meta-form-fields/object-item-dialog/object-item-dialog.component.d.ts +20 -0
- package/lib/components/meta-form/meta-form-interface/interfaces.d.ts +40 -0
- package/lib/components/meta-form/meta-form-templates/groups-form/groups-form.component.d.ts +14 -0
- package/lib/components/meta-form/meta-form-templates/read-only-input/read-only-input.component.d.ts +24 -0
- package/lib/components/meta-form/meta-form.component.d.ts +16 -0
- package/lib/components/meta-form/meta-validators/due-date/start-due-date.validator.d.ts +4 -0
- package/lib/components/meta-form/meta-validators/timeperiod/timeperiod.validator.d.ts +2 -0
- package/lib/components/meta-form/meta-validators/white-space-validator.d.ts +9 -0
- package/lib/components/meta-form/services/meta-form.service.d.ts +36 -0
- package/lib/components/meta-form/utils/base-meta-field.d.ts +24 -0
- package/lib/components/meta-form/utils/control-type.enum.d.ts +23 -0
- package/lib/components/meta-form/utils/error-type.util.d.ts +17 -0
- package/lib/components/meta-form/utils/field-col.pipe.d.ts +7 -0
- package/lib/components/meta-form/utils/field-label.pipe.d.ts +7 -0
- package/lib/components/meta-form/utils/get-field-type.utils.d.ts +1 -0
- package/lib/components/meta-form/utils/global-phase.utils.d.ts +19 -0
- package/lib/components/meta-form/utils/lang.utils.d.ts +1 -0
- package/lib/components/meta-form/utils/so-types.d.ts +22 -0
- package/lib/components/meta-form/utils/translate-dropdown-data.pipe.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare class SoTypes {
|
|
2
|
+
static readonly COMPL_APPLIED_MODULE = "COMPL_APPLIED_MODULE";
|
|
3
|
+
static readonly COMPL_APPLIED_MEASURE = "COMPL_APPLIED_MEASURE";
|
|
4
|
+
static readonly COMPL_APPLIED_REQUIREMENT = "COMPL_APPLIED_REQUIREMENT";
|
|
5
|
+
static readonly COMPL_APPLIED_THREAT = "COMPL_APPLIED_THREAT";
|
|
6
|
+
static readonly COMPL_APPLIED_RISK = "COMPL_APPLIED_RISK";
|
|
7
|
+
static readonly COMPL_APPLIED_CONTROL = "COMPL_APPLIED_CONTROL";
|
|
8
|
+
static resolveUrlType(typeLabelKey: SoTypes | string): SoTypesString.MODULES | SoTypesString.REQUIREMENTS | SoTypesString.MEASURES | SoTypesString.THREATS | SoTypesString.RISKS | SoTypesString.CONTROLS;
|
|
9
|
+
static resolveUrlTypeByString(stringType: SoTypesString | string): "COMPL_APPLIED_MODULE" | "COMPL_APPLIED_REQUIREMENT" | "COMPL_APPLIED_MEASURE" | "COMPL_APPLIED_THREAT" | "COMPL_APPLIED_RISK" | "COMPL_APPLIED_CONTROL";
|
|
10
|
+
}
|
|
11
|
+
export declare enum SoTypesString {
|
|
12
|
+
MODULES = "modules",
|
|
13
|
+
REQUIREMENTS = "requirements",
|
|
14
|
+
MEASURES = "measures",
|
|
15
|
+
THREATS = "threats",
|
|
16
|
+
RISKS = "risks",
|
|
17
|
+
VULNERABILITIES = "vulnerabilities",
|
|
18
|
+
DAMAGE_SCENARIO = "damagescenarios",
|
|
19
|
+
RISK_TREATMENT = "risktreatments",
|
|
20
|
+
CONTROLS = "controls",
|
|
21
|
+
ADDITIONAL_MEASURES = "additionalmeasures"
|
|
22
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TranslateDropdownData implements PipeTransform {
|
|
5
|
+
protected translateService: TranslateService;
|
|
6
|
+
transform(data: any, paramName: string): any;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslateDropdownData, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TranslateDropdownData, "translateDropdownData", true>;
|
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -7,5 +7,9 @@ export * from './lib/components/status-header/status-header.component';
|
|
|
7
7
|
export * from './lib/components/shell/shell.component';
|
|
8
8
|
export * from './lib/components/data-table/phoenix-data-table/phoenix-data-table.component';
|
|
9
9
|
export * from './lib/components/data-table/table/table.component';
|
|
10
|
+
export * from './lib/components/meta-form/meta-form.component';
|
|
11
|
+
export * from './lib/components/meta-form/meta-form-buttons/meta-form-buttons.component';
|
|
12
|
+
export * from './lib/components/meta-form/meta-form-templates/groups-form/groups-form.component';
|
|
13
|
+
export * from './lib/components/meta-form/services/meta-form.service';
|
|
10
14
|
export * from './lib/models/shell-config.model';
|
|
11
15
|
export * from './lib/components/data-table/utils/dataTable.enum';
|