fixed MOE pending issues

MOE_MAIN-COLOR_CHANGES
umasoodch 3 years ago
parent c45e478a66
commit 081fea13a7

@ -47,7 +47,7 @@
<ion-item lines="none"> <ion-item lines="none">
<ion-label>{{ts.trPK('vacation-rule','itemType')}}</ion-label> <ion-label>{{ts.trPK('vacation-rule','itemType')}}</ion-label>
<ion-select okText="{{ts.trPK('general','ok')}}" cancelText="{{ts.trPK('general','cancel')}}" <ion-select class="myCustomSelect" okText="{{ts.trPK('general','ok')}}" cancelText="{{ts.trPK('general','cancel')}}"
[(ngModel)]="itemType"> [(ngModel)]="itemType">
<ion-select-option value="HRSSA">{{text}}</ion-select-option> <ion-select-option value="HRSSA">{{text}}</ion-select-option>
<!-- <ion-select-option value="POAPPRV">PO</ion-select-option> <!-- <ion-select-option value="POAPPRV">PO</ion-select-option>

@ -68,3 +68,7 @@
.enable-overflow { .enable-overflow {
overflow: visible !important; overflow: visible !important;
} }
.myCustomSelect{
max-width: 100% !important;
}

@ -53,7 +53,7 @@ export class DateTimeInput extends UiElement {
"<ion-item class='dynamicField ion-item-position'>" + "<ion-item class='dynamicField ion-item-position'>" +
" <ion-label position='floating' style='font-size: medium !important;' class='daynamicForm-Label " + requiredClass + "' id='title' >" + this.label + "</ion-label>" + " <ion-label position='floating' style='font-size: medium !important;' class='daynamicForm-Label " + requiredClass + "' id='title' >" + this.label + "</ion-label>" +
// " <div class='daynamicForm-DateTime " + disaledClass + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + ">" + this.value + "</div>" + // " <div class='daynamicForm-DateTime " + disaledClass + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + ">" + this.value + "</div>" +
"<ion-datetime style='width: 85%;' min='1900' max='2100' displayFormat='DD/MM/YYYY' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + "></ion-datetime>" + "<ion-datetime style='width: 85%; color: #004D71;' min='1900' max='2100' displayFormat='DD/MM/YYYY' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + "></ion-datetime>" +
// " <input class='daynamicForm-DateTime' type='text' id='" + this.elementId + "' value='" + this.value + "' "+this.disabled+" (click)='showDateTimePicker()'/>"+ // " <input class='daynamicForm-DateTime' type='text' id='" + this.elementId + "' value='" + this.value + "' "+this.disabled+" (click)='showDateTimePicker()'/>"+
// " <input class='daynamicForm-DateTime' type='date' id='" + this.elementId + "' value='" + dateValue+ "' "+this.disabled+" />"+ // " <input class='daynamicForm-DateTime' type='date' id='" + this.elementId + "' value='" + dateValue+ "' "+this.disabled+" />"+
// " <input class='daynamicForm-DateTime' type='time' id='" + this.elementId + "Time' value='" + timeValue + "' "+this.disabled+" />"+ // " <input class='daynamicForm-DateTime' type='time' id='" + this.elementId + "Time' value='" + timeValue + "' "+this.disabled+" />"+

@ -50,7 +50,7 @@ export class DateInput extends UiElement {
"<ion-item class='dynamicField ion-item-position'>" + "<ion-item class='dynamicField ion-item-position'>" +
" <ion-label position='floating' style='font-size: medium !important;' class='dynamiclable-float " + requiredClass + "' id='title' >" + this.label + "</ion-label>" + " <ion-label position='floating' style='font-size: medium !important;' class='dynamiclable-float " + requiredClass + "' id='title' >" + this.label + "</ion-label>" +
// " <div class='daynamicForm-DateTime " + disaledClass + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + ">" + this.value + "</div>" + // " <div class='daynamicForm-DateTime " + disaledClass + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + ">" + this.value + "</div>" +
"<ion-datetime style='width: 85%;' min='1900' max='2100' class='onic-date' (ionChange)='setDate()' displayFormat='MMM/DD/YYYY' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + " ></ion-datetime>" + "<ion-datetime style='width: 85%; color: #004D71;' min='1900' max='2100' class='onic-date' (ionChange)='setDate()' displayFormat='MMM/DD/YYYY' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + " ></ion-datetime>" +
// " <input class='daynamicForm-DateTime' type='text' id='" + this.elementId + "' value='" + this.value + "' "+this.disabled+" (click)='showDateTimePicker()'/>"+ // " <input class='daynamicForm-DateTime' type='text' id='" + this.elementId + "' value='" + this.value + "' "+this.disabled+" (click)='showDateTimePicker()'/>"+
// " <input class='daynamicForm-DateTime' type='date' id='" + this.elementId + "' value='" + dateValue+ "' "+this.disabled+" />"+ // " <input class='daynamicForm-DateTime' type='date' id='" + this.elementId + "' value='" + dateValue+ "' "+this.disabled+" />"+
// " <input class='daynamicForm-DateTime' type='time' id='" + this.elementId + "Time' value='" + timeValue + "' "+this.disabled+" />"+ // " <input class='daynamicForm-DateTime' type='time' id='" + this.elementId + "Time' value='" + timeValue + "' "+this.disabled+" />"+

@ -31,7 +31,7 @@ export class NumberInput extends UiElement {
"<ion-item style='" + this.hidden + "' class='dynamicField ion-item-position'> " + "<ion-item style='" + this.hidden + "' class='dynamicField ion-item-position'> " +
"<ion-label position='floating' style='font-size: medium !important;' class='" + requiredClass + " dynamiclable-float'>" + this.label + "</ion-label>" + "<ion-label position='floating' style='font-size: medium !important;' class='" + requiredClass + " dynamiclable-float'>" + this.label + "</ion-label>" +
"<ion-input style='width: 85%;' type='number' id='" + this.elementId + "' value='" + this.value + "' " + this.disabled + "> </ion-input>" + "<ion-input style='width: 85%; color: #004D71;' type='number' id='" + this.elementId + "' value='" + this.value + "' " + this.disabled + "> </ion-input>" +
" <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" + " <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" +
"</ion-item> "; "</ion-item> ";

@ -28,7 +28,7 @@ export class TextInput extends UiElement {
// "<div class='custom-text-area-element' style='" + this.hidden + "'>" + // "<div class='custom-text-area-element' style='" + this.hidden + "'>" +
"<ion-item style='" + this.hidden + "' class='dynamicField ion-item-position'>" + "<ion-item style='" + this.hidden + "' class='dynamicField ion-item-position'>" +
" <ion-label position='floating' style='font-size: medium;' class='" + requiredClass + " dynamiclable-float'>" + this.label + "</ion-label>" + " <ion-label position='floating' style='font-size: medium;' class='" + requiredClass + " dynamiclable-float'>" + this.label + "</ion-label>" +
" <ion-input style='width: 85%;' type='text' data-colm-text='" + this.value + "' id='" + this.elementId + "' value='" + this.textVal + "' " + this.disabled + "></ion-input>" + " <ion-input style='width: 85%; color: #004D71;' type='text' data-colm-text='" + this.value + "' id='" + this.elementId + "' value='" + this.textVal + "' " + this.disabled + "></ion-input>" +
" <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" + " <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" +
"</ion-item> "; "</ion-item> ";

@ -46,7 +46,7 @@ export class TimeInput extends UiElement {
const template = const template =
"<ion-item class='dynamicField ion-item-position' style='" + this.hidden + "'>" + "<ion-item class='dynamicField ion-item-position' style='" + this.hidden + "'>" +
" <ion-label position='floating' style='font-size: medium !important;' class='dynamiclable-float " + requiredClass + "' id='title' >" + this.label + "</ion-label>" + " <ion-label position='floating' style='font-size: medium !important;' class='dynamiclable-float " + requiredClass + "' id='title' >" + this.label + "</ion-label>" +
"<ion-datetime style='width: 85%;' display-format='HH:mm' picker-format='HH:mm' class='onic-date' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + " ></ion-datetime>" + "<ion-datetime style='width: 85%; color: #004D71;' display-format='HH:mm' picker-format='HH:mm' class='onic-date' value='" + this.value + "' done-text='" + doneText + "' cancel-text='" + cancelText + "' id='" + this.elementId + "' data-dtvalue='" + this.value + "' " + this.disabled + " ></ion-datetime>" +
" <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" + " <div style='" + hideToolTipClass + "' data-tooltip='" + this.toolTipText + "' class='toolTip'><ion-icon style='font-size: 20px' name='information-circle-outline'></ion-icon> </div>" +
"</ion-item>" "</ion-item>"
return template; return template;

@ -475,7 +475,7 @@
}, },
"send-copy": { "send-copy": {
"en": "Send Copy", "en": "Send Copy",
"ar": "أرسل نسخة" "ar": "تقديم نسخة"
}, },
"personal-info": { "personal-info": {
"en": "Personal Information", "en": "Personal Information",
@ -655,7 +655,7 @@
}, },
"submit": { "submit": {
"en": "Submit", "en": "Submit",
"ar": "أرسل" "ar": "تقديم"
}, },
"enter-sms-code": { "enter-sms-code": {
"en": "Enter verification code", "en": "Enter verification code",
@ -1099,7 +1099,7 @@
}, },
"marital-status": { "marital-status": {
"en": "Marital Status", "en": "Marital Status",
"ar": "الاحالة الاجتماعية" "ar": "الحالة الاجتماعية"
}, },
"civil-identity-number": { "civil-identity-number": {
"en": "Civil identity number", "en": "Civil identity number",
@ -1421,7 +1421,7 @@
}, },
"role": { "role": {
"en": "Role", "en": "Role",
"ar": "الدور الوظيفي" "ar": "المسمى الوظيفي"
}, },
"address": { "address": {
"en": "Address", "en": "Address",
@ -1533,7 +1533,7 @@
}, },
"contact-details": { "contact-details": {
"en": "Contact Details", "en": "Contact Details",
"ar": "بيانات المتصل" "ar": "بيانات الهواتف"
}, },
"family-members": { "family-members": {
"en": "Family Members", "en": "Family Members",
@ -2745,7 +2745,7 @@
}, },
"template-name": { "template-name": {
"en": "Template Name", "en": "Template Name",
"ar": "اسم القالب" "ar": "اسم التقرير"
}, },
"item-creation-status": { "item-creation-status": {
"en": "Item Creation Status", "en": "Item Creation Status",

Loading…
Cancel
Save