@ksremp/ngx-ksremp-app-lib 1.0.26 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/chatbot-lex/chatbot-lex.component.mjs +609 -0
- package/esm2022/lib/components/footer/footer.component.mjs +11 -13
- package/esm2022/lib/components/header/header.component.mjs +50 -45
- package/esm2022/lib/components/user-login/user-login.component.mjs +43 -3
- package/esm2022/lib/models/LibConstants.mjs +2 -8
- package/esm2022/lib/ngx-reusa-app-lib.module.mjs +10 -5
- package/esm2022/lib/pages/BasePage.mjs +4 -1
- package/esm2022/lib/pages/common/landing2/landing2.component.mjs +12 -14
- package/esm2022/lib/services/lex-chat/lex-chat.service.mjs +86 -0
- package/esm2022/public-api.mjs +4 -3
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs +1016 -582
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs.map +1 -1
- package/lib/components/chatbot-lex/chatbot-lex.component.d.ts +79 -0
- package/lib/components/chatbot-lex/chatbot-lex.component.d.ts.map +1 -0
- package/lib/components/footer/footer.component.d.ts +1 -3
- package/lib/components/footer/footer.component.d.ts.map +1 -1
- package/lib/components/header/header.component.d.ts +2 -1
- package/lib/components/header/header.component.d.ts.map +1 -1
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts +1 -1
- package/lib/components/user-login/user-login.component.d.ts +4 -1
- package/lib/components/user-login/user-login.component.d.ts.map +1 -1
- package/lib/models/LibConstants.d.ts +1 -7
- package/lib/models/LibConstants.d.ts.map +1 -1
- package/lib/ngx-reusa-app-lib.module.d.ts +61 -60
- package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -1
- package/lib/pages/BasePage.d.ts +1 -0
- package/lib/pages/BasePage.d.ts.map +1 -1
- package/lib/pages/common/landing2/landing2.component.d.ts +1 -3
- package/lib/pages/common/landing2/landing2.component.d.ts.map +1 -1
- package/lib/services/lex-chat/lex-chat.service.d.ts +24 -0
- package/lib/services/lex-chat/lex-chat.service.d.ts.map +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -2
- package/public-api.d.ts.map +1 -1
- package/esm2022/lib/services/chatbot/chatbot.service.mjs +0 -258
- package/esm2022/lib/services/chatbot/script.const.mjs +0 -42
- package/lib/services/chatbot/chatbot.service.d.ts +0 -61
- package/lib/services/chatbot/chatbot.service.d.ts.map +0 -1
- package/lib/services/chatbot/script.const.d.ts +0 -16
- package/lib/services/chatbot/script.const.d.ts.map +0 -1
|
@@ -21,7 +21,7 @@ import * as i5 from '@ngx-loading-bar/core';
|
|
|
21
21
|
import { LoadingBarModule } from '@ngx-loading-bar/core';
|
|
22
22
|
import * as i1$1 from 'ngx-logger';
|
|
23
23
|
import * as i6 from '@angular/platform-browser';
|
|
24
|
-
import { BehaviorSubject, interval, throwError, catchError, of, tap, from, timer, finalize, combineLatest } from 'rxjs';
|
|
24
|
+
import { BehaviorSubject, interval, throwError, catchError, of, tap, from, timer, firstValueFrom, finalize, combineLatest } from 'rxjs';
|
|
25
25
|
import * as i2$1 from 'ngx-joyride';
|
|
26
26
|
import { JoyrideModule } from 'ngx-joyride';
|
|
27
27
|
import { LoadingBarHttpClientModule } from '@ngx-loading-bar/http-client';
|
|
@@ -231,13 +231,7 @@ const LibConstants = {
|
|
|
231
231
|
oauthClientUser: window["env"]["oauthClientUser"] || "mobile",
|
|
232
232
|
oauthClientSecret: window["env"]["oauthClientSecret"] || "pin",
|
|
233
233
|
enableChatbot: window["env"]["enableChatbot"] || 'true',
|
|
234
|
-
|
|
235
|
-
koreAiJwtService: window["env"]["koreAiJwtService"] || "http://localhost:9012/jwt-service/users/sts",
|
|
236
|
-
koreAiChatbotServer: window["env"]["koreAiChatbotServer"] || "http://stchatbot.mdes.ms.gov:8081/api/",
|
|
237
|
-
koreAiClientId: window["env"]["koreAiClientId"] || "cs-fdc968c6-eb64-5c9a-a784-1d47d0a6f94b",
|
|
238
|
-
koreAiClientSecret: window["env"]["koreAiClientSecret"] || "+Y10D8ys3jO+espPHarfGP2CbtFHELYvRCZkzs/yZMk=",
|
|
239
|
-
koreAiBotId: window["env"]["koreAiBotId"] || "st-1c88bdf7-ae3c-5f33-8120-1a838c1abbb1",
|
|
240
|
-
koreAiBotName: window["env"]["koreAiBotName"] || "ReEmployMSChat",
|
|
234
|
+
chatbotLambdaUrl: window["env"]["chatbotLambdaUrl"] || "https://lcj379ydk0.execute-api.us-east-1.amazonaws.com/sit/chat",
|
|
241
235
|
blankString: '',
|
|
242
236
|
forwardSlash: '/',
|
|
243
237
|
doubleForwardSlash: '//',
|
|
@@ -1759,298 +1753,6 @@ class LoginService {
|
|
|
1759
1753
|
}]
|
|
1760
1754
|
}], () => [{ type: UtilService }, { type: i1$5.Storage }, { type: ClaimantContextService }], null); })();
|
|
1761
1755
|
|
|
1762
|
-
class ScriptConstant {
|
|
1763
|
-
static { this.cssProperty = 'css'; }
|
|
1764
|
-
static { this.cssPropertyAbsolute = 'cssAbsolute'; }
|
|
1765
|
-
static { this.jsProperty = 'js'; }
|
|
1766
|
-
static { this.donotLoad = 'donot-load'; }
|
|
1767
|
-
static { this.importUrls = [
|
|
1768
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/kore-no-conflict-start.js', async: false },
|
|
1769
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/jquery.js', async: false },
|
|
1770
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/jquery.tmpl.min.js', async: false },
|
|
1771
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/jquery-ui.min.js', async: false },
|
|
1772
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/moment.js' },
|
|
1773
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/ie11CustomProperties.js' },
|
|
1774
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/lodash.min.js' },
|
|
1775
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/d3.v4.min.js' },
|
|
1776
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/KoreGraphAdapter.js' },
|
|
1777
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/anonymousassertion.js' },
|
|
1778
|
-
{ type: ScriptConstant.jsProperty, url: '/kore-bot-sdk-client.js' },
|
|
1779
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/chatWindow.js' },
|
|
1780
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/jquery.daterangepicker.js' },
|
|
1781
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/jquery-clockpicker.js' },
|
|
1782
|
-
{ type: ScriptConstant.donotLoad, url: '/libs/kore-pickers.js' },
|
|
1783
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/emoji.js' },
|
|
1784
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/recorder.js' },
|
|
1785
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/recorderWorker.js' },
|
|
1786
|
-
{ type: ScriptConstant.jsProperty, url: '/libs/purejscarousel.js' },
|
|
1787
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/custom/customTemplate.js' },
|
|
1788
|
-
{ type: ScriptConstant.donotLoad, url: '/UI/kore-config.js' },
|
|
1789
|
-
{ type: ScriptConstant.donotLoad, url: '/UI/kore-main.js' },
|
|
1790
|
-
{ type: ScriptConstant.jsProperty, url: '/UI/libs/kore-no-conflict-end.js', async: false },
|
|
1791
|
-
{ type: ScriptConstant.donotLoad, url: '/UI/libs/jquery-ui.min.css' },
|
|
1792
|
-
{ type: ScriptConstant.cssProperty, url: '/UI/libs/daterangepicker.css' },
|
|
1793
|
-
{ type: ScriptConstant.donotLoad, url: '/UI/libs/jquery-clockpicker.css' },
|
|
1794
|
-
{ type: ScriptConstant.cssProperty, url: '/libs/kore-pickers.css' },
|
|
1795
|
-
{ type: ScriptConstant.cssProperty, url: '/libs/emojione.sprites.css' },
|
|
1796
|
-
{ type: ScriptConstant.cssProperty, url: '/UI/custom/customTemplate.css' },
|
|
1797
|
-
{ type: ScriptConstant.cssPropertyAbsolute, url: 'https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css' },
|
|
1798
|
-
{ type: ScriptConstant.cssPropertyAbsolute, url: 'https://fonts.googleapis.com/icon?family=Material+Icons' },
|
|
1799
|
-
{ type: ScriptConstant.cssProperty, url: '/libs/purejscarousel.css' },
|
|
1800
|
-
{ type: ScriptConstant.cssProperty, url: '/UI/chatWindow.css' }
|
|
1801
|
-
]; }
|
|
1802
|
-
}
|
|
1803
|
-
|
|
1804
|
-
class ChatbotService {
|
|
1805
|
-
constructor(rendererFactory, logger, ls, util) {
|
|
1806
|
-
this.logger = logger;
|
|
1807
|
-
this.ls = ls;
|
|
1808
|
-
this.util = util;
|
|
1809
|
-
this.map = new Map();
|
|
1810
|
-
//todo: add ksCustomData
|
|
1811
|
-
this.msCustomData = {
|
|
1812
|
-
connectingMessage: "Welcome to ReEmployMS. I am your virtual assistant to help you with MDES related queries.",
|
|
1813
|
-
hoverMessage: "Ask chat bot",
|
|
1814
|
-
botState: "MS",
|
|
1815
|
-
showCollectUserDetailForm: true,
|
|
1816
|
-
showDisclaimerPopUp: true,
|
|
1817
|
-
showChatBubbleAtClosed: false,
|
|
1818
|
-
botAvatarImageName: "AvatarIcon.png",
|
|
1819
|
-
botIconImageName: "AvatarIcon.png",
|
|
1820
|
-
formBannerPath: "",
|
|
1821
|
-
rootFilePath: "UI/",
|
|
1822
|
-
supportedLanguages: ["en"],
|
|
1823
|
-
initialLanguage: "en",
|
|
1824
|
-
// starterTask: {en:"Forgot Password", es:"Forgot Password"},
|
|
1825
|
-
disclaimerPopup: {
|
|
1826
|
-
header: "Important message",
|
|
1827
|
-
message: `MDES' virtual assistant will ask for specific identifying information, such as Social Security Number and Date of Birth, that is needed to answer your question(s).</br></br> MDES follows strict federal security guidelines to protect your sensitive information.</br></br>To further protect your information you should close the chat window and browser when you are finished.</p>`
|
|
1828
|
-
},
|
|
1829
|
-
headerConfig: {
|
|
1830
|
-
showLanguageToggle: false,
|
|
1831
|
-
showMinimizeButton: false,
|
|
1832
|
-
showExpandButton: false,
|
|
1833
|
-
showReloadButton: false,
|
|
1834
|
-
}
|
|
1835
|
-
};
|
|
1836
|
-
this.meCustomData = {
|
|
1837
|
-
connectingMessage: "Welcome to ReEmployME. I am your virtual assistant to help you with ME related queries.",
|
|
1838
|
-
hoverMessage: "Ask Blue",
|
|
1839
|
-
botState: "ME",
|
|
1840
|
-
showCollectUserDetailForm: false,
|
|
1841
|
-
showDisclaimerPopUp: true,
|
|
1842
|
-
showChatBubbleAtClosed: false,
|
|
1843
|
-
botIconImageName: "BlueIcon.svg",
|
|
1844
|
-
botAvatarImageName: "BlueIcon.svg",
|
|
1845
|
-
formBannerPath: "",
|
|
1846
|
-
rootFilePath: "UI/",
|
|
1847
|
-
supportedLanguages: ["en"],
|
|
1848
|
-
initialLanguage: "en",
|
|
1849
|
-
disclaimerPopup: {
|
|
1850
|
-
header: "Important message",
|
|
1851
|
-
message: `MEDOL's virtual assistant may ask you specific identifying information, such as Social Security Number and Date of Birth, that is needed to answer your question(s). ME DOL follows strict federal security guidelines to protect your sensitive information. To further protect your information you should close the chat window and browser when you are finished.`
|
|
1852
|
-
},
|
|
1853
|
-
headerConfig: {
|
|
1854
|
-
showLanguageToggle: false,
|
|
1855
|
-
showMinimizeButton: true,
|
|
1856
|
-
showExpandButton: false,
|
|
1857
|
-
showReloadButton: true,
|
|
1858
|
-
}
|
|
1859
|
-
};
|
|
1860
|
-
this.ctCustomData = {
|
|
1861
|
-
connectingMessage: "Welcome to ReEmployCT. I am your virtual assistant to help you with ME related queries.",
|
|
1862
|
-
hoverMessage: "Ask Blue",
|
|
1863
|
-
botState: "CT",
|
|
1864
|
-
showCollectUserDetailForm: true,
|
|
1865
|
-
showDisclaimerPopUp: true,
|
|
1866
|
-
showChatBubbleAtClosed: false,
|
|
1867
|
-
botIconImageName: "chatboticon.png",
|
|
1868
|
-
botAvatarImageName: "chatboticon.png",
|
|
1869
|
-
formBannerPath: "",
|
|
1870
|
-
rootFilePath: "UI/",
|
|
1871
|
-
supportedLanguages: ["en", "es"],
|
|
1872
|
-
initialLanguage: "en",
|
|
1873
|
-
disclaimerPopup: {
|
|
1874
|
-
header: "Important message",
|
|
1875
|
-
message: `The CTDOL virtual assistant will need to ask for specific identifying information that is needed to answer your question(s) such as date of birth or Social Security number. The agency follows strict federal security guidelines to protect your sensitive information. To further protect your information, if you are on a public computer, please log out and close your browser when you are finished.`
|
|
1876
|
-
},
|
|
1877
|
-
headerConfig: {
|
|
1878
|
-
showLanguageToggle: true,
|
|
1879
|
-
showMinimizeButton: true,
|
|
1880
|
-
showExpandButton: false,
|
|
1881
|
-
showReloadButton: true,
|
|
1882
|
-
}
|
|
1883
|
-
};
|
|
1884
|
-
this.botOptions = {};
|
|
1885
|
-
this.koreBot = {};
|
|
1886
|
-
this.initChatbot = new BehaviorSubject(false);
|
|
1887
|
-
this.showChatbot = (LibConstants.enableChatbot == 'true');
|
|
1888
|
-
this.renderer = rendererFactory.createRenderer(null, null);
|
|
1889
|
-
this.logger.info('ChatbotService initializzed successfully.');
|
|
1890
|
-
this.map.set("ms", this.msCustomData);
|
|
1891
|
-
this.map.set("me", this.meCustomData);
|
|
1892
|
-
this.map.set("ct", this.ctCustomData);
|
|
1893
|
-
this.getChatbotBs().subscribe(val => {
|
|
1894
|
-
if (val) {
|
|
1895
|
-
this.logger.info('Initializing Chatbot.');
|
|
1896
|
-
this.initializeChatbot();
|
|
1897
|
-
}
|
|
1898
|
-
});
|
|
1899
|
-
}
|
|
1900
|
-
getChatbotBs() {
|
|
1901
|
-
return this.initChatbot;
|
|
1902
|
-
}
|
|
1903
|
-
initialize() {
|
|
1904
|
-
this.initChatbot.next(true);
|
|
1905
|
-
}
|
|
1906
|
-
loadScripAndStyle() {
|
|
1907
|
-
if (!LibConstants.production && this.showChatbot) { //set this property to true if you want to test this in local env.
|
|
1908
|
-
this.logger.info('Not Loading Chatbot as current environment is not production. Set "production=true" and "showChatbot=true" if you want to test chatbot in local env.');
|
|
1909
|
-
return;
|
|
1910
|
-
;
|
|
1911
|
-
}
|
|
1912
|
-
else {
|
|
1913
|
-
this.logger.info('Loading chatbot ...');
|
|
1914
|
-
}
|
|
1915
|
-
ScriptConstant.importUrls.forEach(scriptElement => {
|
|
1916
|
-
// other than js and stylesheet are ignored
|
|
1917
|
-
if (scriptElement.type === ScriptConstant.jsProperty) {
|
|
1918
|
-
const jsScriptNode = document.createElement('script');
|
|
1919
|
-
//// jsScriptNode.src = environment.koreAiWebSdkUrl + scriptElement.url;
|
|
1920
|
-
jsScriptNode.src = LibConstants.koreAiWebSdkUrl + scriptElement.url;
|
|
1921
|
-
jsScriptNode.type = 'text/javascript';
|
|
1922
|
-
if (scriptElement.async == null) {
|
|
1923
|
-
this.logger.info(jsScriptNode.src + " will be loaded as async because of null async value");
|
|
1924
|
-
jsScriptNode.async = true;
|
|
1925
|
-
}
|
|
1926
|
-
else if (scriptElement.async == true) {
|
|
1927
|
-
this.logger.info(scriptElement.url + " will be loaded as async because of null async true");
|
|
1928
|
-
jsScriptNode.async = true;
|
|
1929
|
-
}
|
|
1930
|
-
else {
|
|
1931
|
-
this.logger.info(scriptElement.url + " will be loaded as async=false");
|
|
1932
|
-
jsScriptNode.async = false;
|
|
1933
|
-
}
|
|
1934
|
-
this.renderer.appendChild(document.getElementsByTagName('head')[0], jsScriptNode);
|
|
1935
|
-
document.getElementsByTagName('head')[0].appendChild(jsScriptNode);
|
|
1936
|
-
}
|
|
1937
|
-
else if (scriptElement.type === ScriptConstant.cssProperty) {
|
|
1938
|
-
const styleNode = document.createElement('link');
|
|
1939
|
-
styleNode.rel = 'stylesheet';
|
|
1940
|
-
styleNode.href = LibConstants.koreAiWebSdkUrl + scriptElement.url;
|
|
1941
|
-
this.renderer.appendChild(document.getElementsByTagName('head')[0], styleNode);
|
|
1942
|
-
}
|
|
1943
|
-
else if (scriptElement.type === ScriptConstant.cssPropertyAbsolute) {
|
|
1944
|
-
const styleNode = document.createElement('link');
|
|
1945
|
-
styleNode.rel = 'stylesheet';
|
|
1946
|
-
styleNode.href = scriptElement.url;
|
|
1947
|
-
this.renderer.appendChild(document.getElementsByTagName('head')[0], styleNode);
|
|
1948
|
-
}
|
|
1949
|
-
else {
|
|
1950
|
-
this.logger.error('url ' + scriptElement.url + ' is not going to be loaded because of invalid type ' + scriptElement.type);
|
|
1951
|
-
}
|
|
1952
|
-
}); // for each
|
|
1953
|
-
}
|
|
1954
|
-
initializeChatbot() {
|
|
1955
|
-
this.openbot();
|
|
1956
|
-
}
|
|
1957
|
-
/***
|
|
1958
|
-
*
|
|
1959
|
-
* @description Initialize the chatbot with logged-in user. If user is not logged-in then bot session will be created using unique timestamp.
|
|
1960
|
-
*/
|
|
1961
|
-
openbot() {
|
|
1962
|
-
let userId = null;
|
|
1963
|
-
if (this.ls.getUser()) {
|
|
1964
|
-
userId = this.ls.getUser().username + '_' + this.ls.getUser().userType;
|
|
1965
|
-
this.botOptions.accessToken = this.ls.getUser().access_token;
|
|
1966
|
-
}
|
|
1967
|
-
else {
|
|
1968
|
-
userId = Math.floor((Math.random() * 10000000) + 1) + "_" + new Date().getMilliseconds() + "@mdes.ms.gov";
|
|
1969
|
-
}
|
|
1970
|
-
//***CODE_START
|
|
1971
|
-
this.botOptions.logLevel = 'debug';
|
|
1972
|
-
this.botOptions.koreAPIUrl = LibConstants.koreAiChatbotServer;
|
|
1973
|
-
//botOptions.koreSpeechAPIUrl = "https://speech.kore.ai/";
|
|
1974
|
-
//botOptions.bearer = "bearer xyz-------------------";
|
|
1975
|
-
//botOptions.ttsSocketUrl = 'wss://speech.kore.ai/tts/ws';
|
|
1976
|
-
this.botOptions.recorderWorkerPath = './libs/recorderWorker.js';
|
|
1977
|
-
this.botOptions.assertionFn = (options, callback) => this.assertion(options, callback);
|
|
1978
|
-
//botOptions.koreAnonymousFn = koreAnonymousFn;
|
|
1979
|
-
this.botOptions.JWTUrl = LibConstants.koreAiJwtService;
|
|
1980
|
-
this.botOptions.userIdentity = userId; // Provide users email id here
|
|
1981
|
-
this.botOptions.botInfo = {
|
|
1982
|
-
name: LibConstants.koreAiBotName,
|
|
1983
|
-
"_id": LibConstants.koreAiBotId,
|
|
1984
|
-
customData: this.map.get(this.util.getStateLowercase()) ? this.map.get(this.util.getStateLowercase()) : this.map.get('ms'),
|
|
1985
|
-
// customData: { connectingMessage: "Welcome to ReEmployME. I am your virtual assistant to help you with ME related queries.", hoverMessage: "Ask Blue", botState: "ME", showCollectUserDetailForm: false, showDisclaimerPopUp: true, botIconImageName: "chatboticon.png", botAvatarImageName: "chatboticon.png", rootFilePath: "UI/", supportedLanguages: ["en", "es"], initialLanguage: "en", disclaimerPopup: { header: "Important Message", message: `The virtual assistant will need to ask for specific identifying information that is needed to answer you question(s) such as date of birth or Social Security number. The agency follows strict federal security guidelines to protect your sensitive information. To further protect your information, if you are on a public computer, please log out and close your browser when you are finished.`, }, headerConfig: { showLanguageToggle: true, showMinimizeButton: true, showExpandbutton: false, showReloadButton: true, } }
|
|
1986
|
-
}; // bot name is case sensitive
|
|
1987
|
-
this.botOptions.clientId = LibConstants.koreAiClientId;
|
|
1988
|
-
//this.botOptions.clientSecret = LibConstants.koreAiClientSecret;
|
|
1989
|
-
//this.botOptions.reemployUsBearerToken= "";
|
|
1990
|
-
// will need to pass token to koreAiChatBotServer when authentication needs to be validated for server side api call
|
|
1991
|
-
var chatConfig = {
|
|
1992
|
-
botOptions: this.botOptions,
|
|
1993
|
-
allowIframe: false,
|
|
1994
|
-
isSendButton: true,
|
|
1995
|
-
isTTSEnabled: false,
|
|
1996
|
-
isSpeechEnabled: false,
|
|
1997
|
-
allowGoogleSpeech: false,
|
|
1998
|
-
allowLocation: false,
|
|
1999
|
-
loadHistory: false,
|
|
2000
|
-
messageHistoryLimit: 10,
|
|
2001
|
-
autoEnableSpeechAndTTS: false,
|
|
2002
|
-
graphLib: "d3"
|
|
2003
|
-
};
|
|
2004
|
-
if (Object.keys(this.koreBot).length === 0) {
|
|
2005
|
-
this.koreBot = koreBotChat();
|
|
2006
|
-
this.koreBot.show(chatConfig);
|
|
2007
|
-
}
|
|
2008
|
-
else {
|
|
2009
|
-
this.koreBot.resumeChatWindow();
|
|
2010
|
-
}
|
|
2011
|
-
//***CODE_END
|
|
2012
|
-
}
|
|
2013
|
-
assertion(options, callback) {
|
|
2014
|
-
var jsonData = {
|
|
2015
|
-
"clientId": this.botOptions.clientId,
|
|
2016
|
-
"clientSecret": this.botOptions.clientSecret,
|
|
2017
|
-
"identity": options.userIdentity || this.botOptions.userIdentity,
|
|
2018
|
-
"aud": "",
|
|
2019
|
-
"isAnonymous": (this.ls.getUser() == null),
|
|
2020
|
-
"accessToken": this.botOptions.accessToken
|
|
2021
|
-
};
|
|
2022
|
-
$.ajax({
|
|
2023
|
-
url: this.botOptions.JWTUrl,
|
|
2024
|
-
type: 'post',
|
|
2025
|
-
data: jsonData,
|
|
2026
|
-
dataType: 'json',
|
|
2027
|
-
success: (data) => {
|
|
2028
|
-
options.assertion = data.jwt;
|
|
2029
|
-
options.handleError = this.koreBot.showError;
|
|
2030
|
-
options.chatHistory = this.koreBot.chatHistory;
|
|
2031
|
-
options.botDetails = this.koreBot.botDetails;
|
|
2032
|
-
callback(null, options);
|
|
2033
|
-
setTimeout(function () {
|
|
2034
|
-
if (this.koreBot && this.koreBot.initToken) {
|
|
2035
|
-
this.koreBot.initToken(options);
|
|
2036
|
-
}
|
|
2037
|
-
}, 2000);
|
|
2038
|
-
},
|
|
2039
|
-
error: (err) => {
|
|
2040
|
-
this.koreBot.showError(err.responseText);
|
|
2041
|
-
}
|
|
2042
|
-
});
|
|
2043
|
-
}
|
|
2044
|
-
static { this.ɵfac = function ChatbotService_Factory(t) { return new (t || ChatbotService)(i0.ɵɵinject(i0.RendererFactory2), i0.ɵɵinject(LoggerService), i0.ɵɵinject(LoginService), i0.ɵɵinject(UtilService)); }; }
|
|
2045
|
-
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ChatbotService, factory: ChatbotService.ɵfac, providedIn: 'root' }); }
|
|
2046
|
-
}
|
|
2047
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChatbotService, [{
|
|
2048
|
-
type: Injectable,
|
|
2049
|
-
args: [{
|
|
2050
|
-
providedIn: 'root'
|
|
2051
|
-
}]
|
|
2052
|
-
}], () => [{ type: i0.RendererFactory2 }, { type: LoggerService }, { type: LoginService }, { type: UtilService }], null); })();
|
|
2053
|
-
|
|
2054
1756
|
function FooterComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
2055
1757
|
i0.ɵɵelementStart(0, "div", 4)(1, "div", 5)(2, "div", 6)(3, "div", 7)(4, "div", 8)(5, "b");
|
|
2056
1758
|
i0.ɵɵtext(6, "Policies");
|
|
@@ -2286,13 +1988,12 @@ function FooterComponent_ion_fab_3_Template(rf, ctx) { if (rf & 1) {
|
|
|
2286
1988
|
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(2, 1, "Chat with Blue"));
|
|
2287
1989
|
} }
|
|
2288
1990
|
class FooterComponent {
|
|
2289
|
-
constructor(popup, joyride, util, tourService, ls,
|
|
1991
|
+
constructor(popup, joyride, util, tourService, ls, log) {
|
|
2290
1992
|
this.popup = popup;
|
|
2291
1993
|
this.joyride = joyride;
|
|
2292
1994
|
this.util = util;
|
|
2293
1995
|
this.tourService = tourService;
|
|
2294
1996
|
this.ls = ls;
|
|
2295
|
-
this.cs = cs;
|
|
2296
1997
|
this.log = log;
|
|
2297
1998
|
this.showHelp = false;
|
|
2298
1999
|
this.appVersion = LibConstants.appVersion;
|
|
@@ -2362,9 +2063,9 @@ class FooterComponent {
|
|
|
2362
2063
|
window.open(`${footerLink.url}`, "_blank", `width=526, height=626`);
|
|
2363
2064
|
}
|
|
2364
2065
|
initializeChatbot() {
|
|
2365
|
-
|
|
2066
|
+
// Chatbot is now handled by ChatbotLexComponent in app shell
|
|
2366
2067
|
}
|
|
2367
|
-
static { this.ɵfac = function FooterComponent_Factory(t) { return new (t || FooterComponent)(i0.ɵɵdirectiveInject(i1$3.PopoverController), i0.ɵɵdirectiveInject(i2$1.JoyrideService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(TourService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(
|
|
2068
|
+
static { this.ɵfac = function FooterComponent_Factory(t) { return new (t || FooterComponent)(i0.ɵɵdirectiveInject(i1$3.PopoverController), i0.ɵɵdirectiveInject(i2$1.JoyrideService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(TourService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(LoggerService)); }; }
|
|
2368
2069
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FooterComponent, selectors: [["app-footer"]], inputs: { showHelp: "showHelp" }, decls: 4, vars: 4, consts: [["class", "app-body", 4, "ngIf"], ["class", "app-footer", 4, "ngIf"], ["vertical", "bottom", "horizontal", "end", "slot", "fixed", "color", "success", "style", "position: fixed !important;", 4, "ngIf"], ["vertical", "bottom", "horizontal", "end", "edge", "", "slot", "fixed", "class", "me-chat-fab", 4, "ngIf"], [1, "app-body"], [1, "app-wrapper"], [1, "app-footer"], [1, "grid"], [1, "col-12", "lg:col-2", "md:col-2", "lg:col-offset-1", "md:col-offset-1"], ["href", "https://www.facebook.com/MaineDOL", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/facebook.jpg", "alt", "Follow us on Facebook", "width", "120", "height", "39"], ["href", "https://twitter.com/maine_labor", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/twitter.jpg", "alt", "Follow us on Twitter", "width", "120", "height", "39"], ["href", "https://public.govdelivery.com/accounts/MEDOL/subscriber/new", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/email.jpg", "alt", "Sign-up for Email Updates", "width", "120", "height", "39"], [1, "col-12", "lg:col-2", "md:col-2"], ["href", "http://www.maine.gov/labor/labor_laws/publications/minorsguide.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.mainecareercenter.com", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/posters/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.safetyworksmaine.com/consultations/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/cwri/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/labor_laws/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/rehab/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/appeals/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/benefits.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/cwri/laus.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/tax.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/labor_laws/publications/minorsguide.html#Work", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "https://www.maine.gov/labor/for_workers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "https://www.maine.gov/labor/for_job_seekers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/for_employers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/bes/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/bls/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/rehab", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/reemployme", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "assets/icon/reme_footer.jpg", "alt", "File for Unemployment", "width", "150", "height", "31"], ["href", "http://www.mainecareercenter.gov", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/ccenterlogoamericanjobcenter2017.gif", "alt", "CareerCenter"], ["href", "http://www.safetyworksmaine.gov", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/safetyworks.gif", "alt", "SafetyWorks!", "width", "150", "height", "80"], [1, "footer-copy"], ["size", "12"], [1, "footer-links", "ion-text-center", "footer-grid"], ["button", "", "tabindex", "0", "role", "button", "class", "ion-padding-start ion-padding-end ion-padding-bottom link", 3, "keydown.enter", "click", 4, "ngFor", "ngForOf"], [1, "social-media"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Facebook page", "href", "https://www.facebook.com/KansasDOL"], [1, "pi", "pi-facebook"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Twitter page", "href", "https://twitter.com/KansasDOL"], [1, "pi", "pi-twitter"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor linkedin page", "href", "https://www.linkedin.com/company/kdol"], [1, "pi", "pi-linkedin"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Instagram page", "href", "https://www.instagram.com/ks_dol/"], [1, "pi", "pi-instagram"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Youtube channel", "href", "https://www.youtube.com/channel/UCNtiSdvj_w22SGaO7qsxMFg"], [1, "pi", "pi-youtube"], [2, "font-size", "x-small"], ["button", "", "tabindex", "0", "role", "button", 1, "ion-padding-start", "ion-padding-end", "ion-padding-bottom", "link", 3, "keydown.enter", "click"], ["vertical", "bottom", "horizontal", "end", "slot", "fixed", "color", "success", 2, "position", "fixed !important"], ["color", "success", "pTooltip", "Select for options to self-help", "tooltipPosition", "left"], ["name", "caret-up-circle-sharp"], ["side", "top"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://mdes.ms.gov/unemployment-faqs/", "target", "_blank", 3, "pTooltip", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://www.maine.gov/labor/faqs.html", "target", "_blank", 3, "pTooltip", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", 3, "pTooltip", "click", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://mdes.ms.gov/unemployment-faqs/", "target", "_blank", 3, "pTooltip"], ["name", "help-sharp"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://www.maine.gov/labor/faqs.html", "target", "_blank", 3, "pTooltip"], ["tooltipPosition", "left", "color", "success", 3, "pTooltip", "click"], ["name", "eye-sharp"], ["name", "chatbubbles-sharp"], ["vertical", "bottom", "horizontal", "end", "edge", "", "slot", "fixed", 1, "me-chat-fab"], ["tooltipPosition", "left", 1, "me-chat-button", 3, "pTooltip", "click"], ["src", "assets/icon/me-chatbot-icon.svg", 2, "max-width", "95%"]], template: function FooterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2369
2070
|
i0.ɵɵtemplate(0, FooterComponent_div_0_Template, 123, 1, "div", 0)(1, FooterComponent_div_1_Template, 25, 9, "div", 1)(2, FooterComponent_ion_fab_2_Template, 8, 4, "ion-fab", 2)(3, FooterComponent_ion_fab_3_Template, 4, 3, "ion-fab", 3);
|
|
2370
2071
|
} if (rf & 2) {
|
|
@@ -2380,11 +2081,11 @@ class FooterComponent {
|
|
|
2380
2081
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterComponent, [{
|
|
2381
2082
|
type: Component,
|
|
2382
2083
|
args: [{ selector: 'app-footer', template: "<div class=\"app-body\" *ngIf=\"util.getState() == 'ME'\">\r\n <div class=\"app-wrapper\">\r\n <div class=\"app-footer\">\r\n <div class=\"grid\">\r\n <div class=\"col-12 lg:col-2 md:col-2 lg:col-offset-1 md:col-offset-1\">\r\n <b>Policies</b>\r\n <br/>\r\n <ul>\r\n <li>Follow us on social media or sign<br/>up for email alerts.</li>\r\n </ul>\r\n <ul>\r\n <li><a href=\"https://www.facebook.com/MaineDOL\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/facebook.jpg\" alt=\"Follow us on Facebook\" width=\"120\" height=\"39\"></a></li>\r\n <li><a href=\"https://twitter.com/maine_labor\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/twitter.jpg\" alt=\"Follow us on Twitter\" width=\"120\" height=\"39\"></a></li>\r\n <li><a href=\"https://public.govdelivery.com/accounts/MEDOL/subscriber/new\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/email.jpg\" alt=\"Sign-up for Email Updates\" width=\"120\" height=\"39\"></a></li>\r\n </ul>\r\n <ul>\r\n <li>Copyright @ 2017<br/>\r\n All rights reserved.</li>\r\n <li>Build No. {{appVersion}}</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Topic</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/publications/minorsguide.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Child Labor Laws </a>\r\n </li>\r\n <li><a href=\"http://www.mainecareercenter.com\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Employment and Training Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/posters/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Free Labor Posters</a>\r\n </li>\r\n <li><a href=\"http://www.safetyworksmaine.com/consultations/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Workplace Safety Consultations</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Labor Market Information</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Labor Laws</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/rehab/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Rehabilitation/Disability Services</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/appeals/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Appeals </a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/benefits.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Benefits</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/laus.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Rate</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/tax.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Tax </a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/publications/minorsguide.html#Work\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Work Permits</a>\r\n </li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Audience</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"https://www.maine.gov/labor/for_workers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Workers</a></li>\r\n\t\t\t\t\t\t<li><a href=\"https://www.maine.gov/labor/for_job_seekers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Job Seekers</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/for_employers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Employers / Businesses</a></li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Agency</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/labor/bes/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Employment Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/bls/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Labor Standards</a></li>\r\n <li><a href=\"http://www.maine.gov/rehab\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Rehabilitation Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Unemployment Compensation</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Center for Workforce Research and Information</a></li>\r\n </ul>\r\n\r\n <br/>\r\n <ul>\r\n <li>The Department of Labor is an equal opportunity provider. Auxiliary aids and services are available to individuals with disabilities upon request.</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Services</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/reemployme\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"assets/icon/reme_footer.jpg\" alt=\"File for Unemployment\" width=\"150\" height=\"31\"></a></li>\r\n <li><a href=\"http://www.mainecareercenter.gov\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/ccenterlogoamericanjobcenter2017.gif\" alt=\"CareerCenter\"></a></li>\r\n <li><a href=\"http://www.safetyworksmaine.gov\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/safetyworks.gif\" alt=\"SafetyWorks!\" width=\"150\" height=\"80\"></a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n</div>\r\n\r\n<div class=\"app-footer\" *ngIf=\"util.getState() == 'KS'\">\r\n <div class=\"grid\">\r\n <ion-footer class=\"footer-copy\">\r\n <ion-row>\r\n <ion-col size=\"12\">\r\n <div class=\"footer-links ion-text-center footer-grid\" >\r\n <a button tabindex=\"0\" role=\"button\" (keydown.enter)=\"openPopup(footerLink)\" (click)=\"openPopup(footerLink)\" class=\"ion-padding-start ion-padding-end ion-padding-bottom link\" *ngFor=\"let footerLink of footerLinks\">{{footerLink.name | translate}}</a>\r\n <div class=\"social-media\">\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Facebook page\" href=\"https://www.facebook.com/KansasDOL\"><i class=\"pi pi-facebook\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Twitter page\" href=\"https://twitter.com/KansasDOL\"><i class=\"pi pi-twitter\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor linkedin page\" href=\"https://www.linkedin.com/company/kdol\"><i class=\"pi pi-linkedin\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Instagram page\" href=\"https://www.instagram.com/ks_dol/\"><i class=\"pi pi-instagram\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Youtube channel\" href=\"https://www.youtube.com/channel/UCNtiSdvj_w22SGaO7qsxMFg\"><i class=\"pi pi-youtube\"></i></a>\r\n </div>\r\n <ion-text>© 2024 - {{currentYear}} {{'kdol.title' | translate}}</ion-text><br/>\r\n <p style=\"font-size: x-small;\">{{'Build No.' | translate}} {{appVersion}}</p>\r\n </div>\r\n </ion-col>\r\n </ion-row>\r\n </ion-footer>\r\n </div>\r\n</div>\r\n<!-- fab placed in the center of the content with a list on each side -->\r\n<ion-fab vertical=\"bottom\" horizontal=\"end\" slot=\"fixed\" color=\"success\" style=\"position: fixed !important;\" *ngIf=\"showHelp && !util.isState('me')\">\r\n <ion-fab-button color=\"success\" pTooltip=\"Select for options to self-help\" tooltipPosition=\"left\">\r\n <ion-icon name=\"caret-up-circle-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-list side=\"top\">\r\n <ion-fab-button pTooltip=\"{{'FAQ' | translate}}\" tooltipPosition=\"left\" color=\"success\" rel=\"noreferrer\" href=\"https://mdes.ms.gov/unemployment-faqs/\" target=\"_blank\" *ngIf=\"util.getState() == 'MS'\">\r\n <ion-icon name=\"help-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'FAQ' | translate}}\" tooltipPosition=\"left\" color=\"success\" rel=\"noreferrer\" href=\"https://www.maine.gov/labor/faqs.html\" target=\"_blank\" *ngIf=\"util.getState() == 'ME'\">\r\n <ion-icon name=\"help-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'Screen Guide' | translate}}\" tooltipPosition=\"left\" color=\"success\" (click)=\"tour()\" *ngIf=\"stepCounts!=0\">\r\n <ion-icon name=\"eye-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'Chat with Sippi' | translate}}\" tooltipPosition=\"left\" (click)=\"initializeChatbot()\" color=\"success\" *ngIf=\"util.getState() == 'MS' && showChatbot\">\r\n <ion-icon name=\"chatbubbles-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n </ion-fab-list>\r\n</ion-fab>\r\n<ion-fab vertical=\"bottom\" horizontal=\"end\" edge slot=\"fixed\" class=\"me-chat-fab\" *ngIf=\"showHelp && util.isState('me')\">\r\n <ion-fab-button (click)=\"initializeChatbot()\" pTooltip=\"{{'Chat with Blue' | translate}}\" tooltipPosition=\"left\" class=\"me-chat-button\">\r\n <img src=\"assets/icon/me-chatbot-icon.svg\" style=\"max-width: 95%\"/>\r\n </ion-fab-button>\r\n</ion-fab>\r\n", styles: [".social-media{margin:10px 5px 0 0}.social-media ion-icon,.social-media i{color:#fff;background-color:#00008b;height:24px;margin:4px;border-radius:4px;width:28px;padding:4px 2px;cursor:pointer}ion-chip{background:#3e465c}a{cursor:pointer;text-decoration:none}.white{color:#fff}.app-big-icon{font-size:20px}ion-toolbar{border-bottom-left-radius:5px!important;border-bottom-right-radius:5px!important}.app-body{padding:0}.app-body .app-wrapper .app-header{background:var(--ion-color-dark);background-size:cover;height:60px;position:relative}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 150px;background-color:var(--ion-color-dark);position:fixed;z-index:100;width:100%;box-shadow:0 2px 6px #0000003d}.app-body .app-wrapper .app-header .app-topbar:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-header .app-topbar img{height:30px;vertical-align:middle}.app-body .app-wrapper .app-header .app-topbar .app-title{color:#fff;font-size:24px;vertical-align:middle;margin-left:24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:none;color:#fff;font-size:24px}.app-body .app-wrapper .app-header .app-topbar ul{list-style:none;float:right;margin:6px 0 0}.app-body .app-wrapper .app-header .app-topbar ul li{display:inline-block;margin-left:36px}.app-body .app-wrapper .app-header .app-topbar ul li a{color:#dadada;transition:color .2s}.app-body .app-wrapper .app-header .app-topbar ul li a:hover{color:#ffb900}.app-body .app-wrapper .app-header .app-topbar ul li:first-child{margin-left:0}.app-body .app-wrapper .app-header .app-header-content{padding:85px 0 0 150px}.app-body .app-wrapper .app-header .app-header-content h1{font-size:28px;font-weight:700;color:#fff;margin:0}.app-body .app-wrapper .app-header .app-header-content p{font-size:17px;color:#fff;margin:16px 0 32px;text-align:center}.app-body .app-wrapper .app-features{padding:12px 200px}.app-body .app-wrapper .app-features .feature-box{padding:12px;position:relative;border:1px solid rgba(218,218,218,.5);box-shadow:0 2px 16px #00000014;height:100%}.app-body .app-wrapper .app-features .feature-box:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-features .feature-box img{width:32px;top:50%;left:24px;margin-top:-16px;position:absolute}.app-body .app-wrapper .app-features .feature-box>div h3{color:var(--ion-color-dark);margin:0 0 8px;text-align:center}.app-body .app-wrapper .app-features .feature-box>div p{margin:0;text-align:justify}.app-body .app-wrapper .app-news{background-color:#2e353a;padding:24px 12px;text-align:center}.app-body .app-wrapper .app-news h3{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body .app-wrapper .app-news p{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body .app-wrapper .app-services{background-color:#fff;padding:12px 200px}.app-body .app-wrapper .app-services .services-box{box-shadow:0 2px 16px #00000014;background-color:#fff;border:1px solid rgba(218,218,218,.5);height:100%}.app-body .app-wrapper .app-services .services-box .services-box-header{padding:12px;background-color:#feedbc;text-align:center}.app-body .app-wrapper .app-services .services-box .services-box-header h3{font-size:21px;color:var(--ion-color-dark);margin:0 0 4px}.app-body .app-wrapper .app-services .services-box .services-box-header span{font-weight:700}.app-body .app-wrapper .app-services .services-box .services-box-content{padding:32px;position:relative;min-height:300px}.app-body .app-wrapper .app-services .services-box .services-box-content ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-services .services-box .services-box-content ul li{padding-top:8px;padding-bottom:8px;font-size:16px}.app-body .app-wrapper .app-services .services-box .services-box-content ul li i{margin-right:8px;color:#61b5a1}.app-body .app-wrapper .app-services .services-box .services-box-content button{width:100px;position:absolute;bottom:32px;left:50%;margin-left:-50px}.app-body .app-wrapper .app-multimedia{background-color:#2e353a;padding:24px;color:var(--ion-color-primary);text-align:center}.app-body .app-wrapper .app-multimedia h3{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body .app-wrapper .app-multimedia p{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body .app-wrapper .app-multimedia .video-container iframe{width:560px;height:315px}.app-body .app-wrapper .app-footer{background-color:var(--ion-color-light-grey);padding:15px 70px 25px;font-size:12px}.app-body .app-wrapper .app-footer a{color:var(--ion-color-primary);transition:color .2s}.app-body .app-wrapper .app-footer a:hover{text-decoration:underline;text-underline-offset:3px}.app-body .app-wrapper .app-footer img{height:30px}.app-body .app-wrapper .app-footer h4{margin:0 0 12px;font-size:16px}.app-body .app-wrapper .app-footer ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-footer ul li{padding:4px 0}.app-body .app-wrapper .app-footer i{font-size:24px;margin-right:8px}@media screen and (max-width: 64em){.app-body .app-wrapper .app-header{height:auto}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:block;float:right}.app-body .app-wrapper .app-header .app-topbar ul{display:none;animation-duration:.2s;position:fixed;margin:0;padding:16px 24px;top:61px;left:0;width:100%;z-index:100;background-color:#3a3e45;box-shadow:0 2px 10px #00000029}.app-body .app-wrapper .app-header .app-topbar ul li{display:block;padding:8px 0;margin:0;font-size:16px}.app-body .app-wrapper .app-header .app-topbar ul.app-menu-active{display:block}.app-body .app-wrapper .app-header .app-header-content{padding:108px 24px;text-align:center}.app-body .app-wrapper .app-features,.app-body .app-wrapper .app-services{padding:70px 24px}.app-body .app-wrapper .app-multimedia .video-container iframe{width:auto;height:auto}.app-body .app-wrapper .app-footer{text-align:center;padding:24px 0}.app-body .app-wrapper .app-footer h4{margin-top:12px}.app-body.app-body-block-scroll{overflow:hidden}}ion-footer{background:var(--ion-color-light-grey)!important;bottom:-10px}ion-toolbar{--background: var(--ion-color-light-grey) !important}ion-title{font-size:10pt;justify-content:center;margin-bottom:20px;display:inline-block}.footer-links{color:var(--ion-color-primary-shade)!important;font-size:.9rem}.footer-links .link{color:var(--ion-color-primary-shade)!important}@media (max-width: 576px){.footer-grid{display:grid}}@media (max-width: 768px){.footer-grid{display:grid}}\n"] }]
|
|
2383
|
-
}], () => [{ type: i1$3.PopoverController }, { type: i2$1.JoyrideService }, { type: UtilService }, { type: TourService }, { type: LoginService }, { type:
|
|
2084
|
+
}], () => [{ type: i1$3.PopoverController }, { type: i2$1.JoyrideService }, { type: UtilService }, { type: TourService }, { type: LoginService }, { type: LoggerService }], { showHelp: [{
|
|
2384
2085
|
type: Input,
|
|
2385
2086
|
args: ['showHelp']
|
|
2386
2087
|
}] }); })();
|
|
2387
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FooterComponent, { className: "FooterComponent", filePath: "lib\\components\\footer\\footer.component.ts", lineNumber:
|
|
2088
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FooterComponent, { className: "FooterComponent", filePath: "lib\\components\\footer\\footer.component.ts", lineNumber: 18 }); })();
|
|
2388
2089
|
|
|
2389
2090
|
class TestComponent {
|
|
2390
2091
|
constructor() { }
|
|
@@ -2452,7 +2153,7 @@ function PageComponent_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
|
2452
2153
|
i0.ɵɵprojection(1);
|
|
2453
2154
|
i0.ɵɵelementEnd();
|
|
2454
2155
|
} }
|
|
2455
|
-
const _c0$
|
|
2156
|
+
const _c0$N = ["*"];
|
|
2456
2157
|
class PageComponent {
|
|
2457
2158
|
constructor(nav, ls, util) {
|
|
2458
2159
|
this.nav = nav;
|
|
@@ -2484,7 +2185,7 @@ class PageComponent {
|
|
|
2484
2185
|
}
|
|
2485
2186
|
}
|
|
2486
2187
|
static { this.ɵfac = function PageComponent_Factory(t) { return new (t || PageComponent)(i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(UtilService)); }; }
|
|
2487
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PageComponent, selectors: [["app-page"]], inputs: { src: "src", style: "style", alt: "alt", icon: "icon", headingText: "headingText", detailText: "detailText", homeButton: "homeButton", hideCard: "hideCard" }, ngContentSelectors: _c0$
|
|
2188
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PageComponent, selectors: [["app-page"]], inputs: { src: "src", style: "style", alt: "alt", icon: "icon", headingText: "headingText", detailText: "detailText", homeButton: "homeButton", hideCard: "hideCard" }, ngContentSelectors: _c0$N, decls: 8, vars: 6, consts: [[1, "page-body", "notfound-page"], [1, "page-type"], [3, "src", "alt"], ["size", "12", "size-xl", "6", "size-lg", "8", "size-md", "10", "size-sm", "12", "offset-lg", "3", "offset-md", "3", "offset-xl", "3"], ["class", "card page-panel", 4, "ngIf"], ["style", "margin: -13% auto 0 auto;", 4, "ngIf"], [1, "card", "page-panel"], [3, "value"], [4, "ngIf"], ["class", "page-detail", 4, "ngIf"], ["color", "dark", "shape", "round", "value", "Home", 3, "click", 4, "ngIf"], [1, "page-detail"], ["color", "dark", "shape", "round", "value", "Home", 3, "click"], ["name", "home", "slot", "start"], [2, "margin", "-13% auto 0 auto"]], template: function PageComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2488
2189
|
i0.ɵɵprojectionDef();
|
|
2489
2190
|
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
2490
2191
|
i0.ɵɵelement(2, "img", 2);
|
|
@@ -2623,7 +2324,7 @@ function ContentComponent_app_footer_3_Template(rf, ctx) { if (rf & 1) {
|
|
|
2623
2324
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
2624
2325
|
i0.ɵɵproperty("showHelp", ctx_r1.showHelp);
|
|
2625
2326
|
} }
|
|
2626
|
-
const _c0$
|
|
2327
|
+
const _c0$M = ["*"];
|
|
2627
2328
|
class ContentComponent {
|
|
2628
2329
|
constructor(util) {
|
|
2629
2330
|
this.util = util;
|
|
@@ -2634,7 +2335,7 @@ class ContentComponent {
|
|
|
2634
2335
|
ngOnInit() {
|
|
2635
2336
|
}
|
|
2636
2337
|
static { this.ɵfac = function ContentComponent_Factory(t) { return new (t || ContentComponent)(i0.ɵɵdirectiveInject(UtilService)); }; }
|
|
2637
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContentComponent, selectors: [["app-content"]], inputs: { showError: "showError", hideFooter: "hideFooter", showHelp: "showHelp" }, ngContentSelectors: _c0$
|
|
2338
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContentComponent, selectors: [["app-content"]], inputs: { showError: "showError", hideFooter: "hideFooter", showHelp: "showHelp" }, ngContentSelectors: _c0$M, decls: 4, vars: 2, consts: [["ion-fixed", ""], [3, "value", "valueChange", 4, "ngIf"], [3, "showHelp", 4, "ngIf"], [3, "value", "valueChange"], [3, "showHelp"]], template: function ContentComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2638
2339
|
i0.ɵɵprojectionDef();
|
|
2639
2340
|
i0.ɵɵelementStart(0, "div", 0);
|
|
2640
2341
|
i0.ɵɵtemplate(1, ContentComponent_p_messages_1_Template, 1, 1, "p-messages", 1);
|
|
@@ -3262,6 +2963,9 @@ class BasePage {
|
|
|
3262
2963
|
isRI() {
|
|
3263
2964
|
return LibConstants.state === 'ri';
|
|
3264
2965
|
}
|
|
2966
|
+
isKS() {
|
|
2967
|
+
return LibConstants.state === 'ks';
|
|
2968
|
+
}
|
|
3265
2969
|
isCT() {
|
|
3266
2970
|
return LibConstants.state === 'ct';
|
|
3267
2971
|
}
|
|
@@ -4645,7 +4349,7 @@ class QuestionService {
|
|
|
4645
4349
|
}]
|
|
4646
4350
|
}], () => [{ type: QuestionnaireService }], null); })();
|
|
4647
4351
|
|
|
4648
|
-
const _c0$
|
|
4352
|
+
const _c0$L = ["questionnaire"];
|
|
4649
4353
|
function FormBuilderPage_ion_header_0_Template(rf, ctx) { if (rf & 1) {
|
|
4650
4354
|
i0.ɵɵelementStart(0, "ion-header");
|
|
4651
4355
|
i0.ɵɵelement(1, "app-header", 3);
|
|
@@ -4813,7 +4517,7 @@ class FormBuilderPage extends BasePage {
|
|
|
4813
4517
|
}
|
|
4814
4518
|
static { this.ɵfac = function FormBuilderPage_Factory(t) { return new (t || FormBuilderPage)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(QuestionService), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(i6.Title), i0.ɵɵdirectiveInject(LoginService)); }; }
|
|
4815
4519
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormBuilderPage, selectors: [["app-form-builder"]], viewQuery: function FormBuilderPage_Query(rf, ctx) { if (rf & 1) {
|
|
4816
|
-
i0.ɵɵviewQuery(_c0$
|
|
4520
|
+
i0.ɵɵviewQuery(_c0$L, 5);
|
|
4817
4521
|
} if (rf & 2) {
|
|
4818
4522
|
let _t;
|
|
4819
4523
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.questionnaire = _t.first);
|
|
@@ -4964,8 +4668,8 @@ function SecurityQuestionComponent_ng_template_6_Template(rf, ctx) { if (rf & 1)
|
|
|
4964
4668
|
i0.ɵɵadvance(3);
|
|
4965
4669
|
i0.ɵɵproperty("ngIf", !(ctx_r5.showSuccess || ctx_r5.showError));
|
|
4966
4670
|
} }
|
|
4967
|
-
const _c0$
|
|
4968
|
-
const _c1$
|
|
4671
|
+
const _c0$K = () => ({ width: "60vw" });
|
|
4672
|
+
const _c1$A = () => ({ "1024px": "75vw", "768px": "85vw", "640px": "100vw" });
|
|
4969
4673
|
class SecurityQuestionComponent {
|
|
4970
4674
|
constructor(util, ls, nav) {
|
|
4971
4675
|
this.util = util;
|
|
@@ -5049,8 +4753,8 @@ class SecurityQuestionComponent {
|
|
|
5049
4753
|
i0.ɵɵtemplate(1, SecurityQuestionComponent_ng_template_1_Template, 5, 3, "ng-template", 1)(2, SecurityQuestionComponent_div_2_Template, 2, 1, "div", 2)(3, SecurityQuestionComponent_div_3_Template, 3, 3, "div", 3)(4, SecurityQuestionComponent_div_4_Template, 2, 0, "div", 4)(5, SecurityQuestionComponent_div_5_Template, 2, 0, "div", 4)(6, SecurityQuestionComponent_ng_template_6_Template, 4, 1, "ng-template", 5);
|
|
5050
4754
|
i0.ɵɵelementEnd();
|
|
5051
4755
|
} if (rf & 2) {
|
|
5052
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(7, _c0$
|
|
5053
|
-
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(8, _c1$
|
|
4756
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(7, _c0$K));
|
|
4757
|
+
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(8, _c1$A));
|
|
5054
4758
|
i0.ɵɵadvance(2);
|
|
5055
4759
|
i0.ɵɵproperty("ngIf", !(ctx.showSuccess || ctx.showError));
|
|
5056
4760
|
i0.ɵɵadvance(1);
|
|
@@ -5079,8 +4783,8 @@ class SecurityQuestionComponent {
|
|
|
5079
4783
|
}] }); })();
|
|
5080
4784
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SecurityQuestionComponent, { className: "SecurityQuestionComponent", filePath: "lib\\components\\security-question\\security-question.component.ts", lineNumber: 11 }); })();
|
|
5081
4785
|
|
|
5082
|
-
const _c0$
|
|
5083
|
-
const _c1$
|
|
4786
|
+
const _c0$J = a0 => ({ Choice: a0 });
|
|
4787
|
+
const _c1$z = a0 => [a0];
|
|
5084
4788
|
const _c2$r = (a0, a1) => ({ Choices: a0, QuestionId: a1 });
|
|
5085
4789
|
function LexisNexisComponent_div_3_div_1_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
5086
4790
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
@@ -5098,7 +4802,7 @@ function LexisNexisComponent_div_3_div_1_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
|
5098
4802
|
const q_r4 = ctx_r12.$implicit;
|
|
5099
4803
|
const ctx_r6 = i0.ɵɵnextContext(2);
|
|
5100
4804
|
i0.ɵɵadvance(1);
|
|
5101
|
-
i0.ɵɵproperty("name", "question-" + i_r5)("id", "question-" + i_r5 + "-" + j_r8)("ngModel", ctx_r6.answers["iidqa.answers"].Questions[i_r5])("value", i0.ɵɵpureFunction2(10, _c2$r, i0.ɵɵpureFunction1(8, _c1$
|
|
4805
|
+
i0.ɵɵproperty("name", "question-" + i_r5)("id", "question-" + i_r5 + "-" + j_r8)("ngModel", ctx_r6.answers["iidqa.answers"].Questions[i_r5])("value", i0.ɵɵpureFunction2(10, _c2$r, i0.ɵɵpureFunction1(8, _c1$z, i0.ɵɵpureFunction1(6, _c0$J, choices_r7.ChoiceId)), q_r4.QuestionId));
|
|
5102
4806
|
i0.ɵɵadvance(1);
|
|
5103
4807
|
i0.ɵɵproperty("for", "question-" + i_r5 + "-" + j_r8);
|
|
5104
4808
|
i0.ɵɵadvance(1);
|
|
@@ -5468,7 +5172,7 @@ class LexisNexisComponent {
|
|
|
5468
5172
|
}] }); })();
|
|
5469
5173
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LexisNexisComponent, { className: "LexisNexisComponent", filePath: "lib\\components\\lexis-nexis\\lexis-nexis.component.ts", lineNumber: 18 }); })();
|
|
5470
5174
|
|
|
5471
|
-
const _c0$
|
|
5175
|
+
const _c0$I = ["fb"];
|
|
5472
5176
|
function ProfileComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
5473
5177
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
5474
5178
|
i0.ɵɵelementStart(0, "ion-grid")(1, "ion-row")(2, "ion-col", 7);
|
|
@@ -5630,7 +5334,7 @@ function ProfileComponent_app_security_question_7_Template(rf, ctx) { if (rf & 1
|
|
|
5630
5334
|
const ctx_r6 = i0.ɵɵnextContext();
|
|
5631
5335
|
i0.ɵɵproperty("display", ctx_r6.isSecurityQuestionEnabled)("questionsAndAnswers", ctx_r6.usersQuesAndAns)("questionsAndKeysOfUser", ctx_r6.mappedKeysQuestionsForUser);
|
|
5632
5336
|
} }
|
|
5633
|
-
const _c1$
|
|
5337
|
+
const _c1$y = () => ({ width: "60vw" });
|
|
5634
5338
|
const _c2$q = () => ({ "1024px": "75vw", "768px": "85vw", "640px": "100vw" });
|
|
5635
5339
|
class ProfileComponent {
|
|
5636
5340
|
constructor(util, ls, nav, cs, router, ur, ln) {
|
|
@@ -5918,7 +5622,7 @@ class ProfileComponent {
|
|
|
5918
5622
|
}
|
|
5919
5623
|
static { this.ɵfac = function ProfileComponent_Factory(t) { return new (t || ProfileComponent)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(ClaimantService), i0.ɵɵdirectiveInject(i4.Router), i0.ɵɵdirectiveInject(ClaimantUspsRedirectService), i0.ɵɵdirectiveInject(LexisNexisService)); }; }
|
|
5920
5624
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileComponent, selectors: [["app-profile"]], viewQuery: function ProfileComponent_Query(rf, ctx) { if (rf & 1) {
|
|
5921
|
-
i0.ɵɵviewQuery(_c0$
|
|
5625
|
+
i0.ɵɵviewQuery(_c0$I, 5);
|
|
5922
5626
|
} if (rf & 2) {
|
|
5923
5627
|
let _t;
|
|
5924
5628
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fb = _t.first);
|
|
@@ -5927,7 +5631,7 @@ class ProfileComponent {
|
|
|
5927
5631
|
i0.ɵɵtemplate(1, ProfileComponent_ng_template_1_Template, 10, 6, "ng-template", 1)(2, ProfileComponent_div_2_Template, 5, 4, "div", 2)(3, ProfileComponent_div_3_Template, 6, 3, "div", 3)(4, ProfileComponent_div_4_Template, 6, 3, "div", 3)(5, ProfileComponent_ng_template_5_Template, 11, 9, "ng-template", 4)(6, ProfileComponent_app_lexis_nexis_6_Template, 1, 3, "app-lexis-nexis", 5)(7, ProfileComponent_app_security_question_7_Template, 1, 3, "app-security-question", 6);
|
|
5928
5632
|
i0.ɵɵelementEnd();
|
|
5929
5633
|
} if (rf & 2) {
|
|
5930
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(8, _c1$
|
|
5634
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(8, _c1$y));
|
|
5931
5635
|
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(9, _c2$q));
|
|
5932
5636
|
i0.ɵɵadvance(2);
|
|
5933
5637
|
i0.ɵɵproperty("ngIf", !(ctx.showSuccess || ctx.showError));
|
|
@@ -5980,21 +5684,21 @@ class ProperCasePipe {
|
|
|
5980
5684
|
}], null, null); })();
|
|
5981
5685
|
|
|
5982
5686
|
function HeaderComponent_mat_progress_bar_0_Template(rf, ctx) { if (rf & 1) {
|
|
5983
|
-
i0.ɵɵelement(0, "mat-progress-bar",
|
|
5687
|
+
i0.ɵɵelement(0, "mat-progress-bar", 13);
|
|
5984
5688
|
i0.ɵɵpipe(1, "async");
|
|
5985
5689
|
} if (rf & 2) {
|
|
5986
5690
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
5987
5691
|
i0.ɵɵproperty("value", i0.ɵɵpipeBind1(1, 1, ctx_r0.util.loader.value$));
|
|
5988
5692
|
} }
|
|
5989
5693
|
function HeaderComponent_ion_menu_button_4_Template(rf, ctx) { if (rf & 1) {
|
|
5990
|
-
i0.ɵɵelement(0, "ion-menu-button",
|
|
5694
|
+
i0.ɵɵelement(0, "ion-menu-button", 14);
|
|
5991
5695
|
i0.ɵɵpipe(1, "translate");
|
|
5992
5696
|
} if (rf & 2) {
|
|
5993
5697
|
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "header.menu"));
|
|
5994
5698
|
} }
|
|
5995
5699
|
function HeaderComponent_ion_buttons_9_ion_button_4_Template(rf, ctx) { if (rf & 1) {
|
|
5996
5700
|
const _r14 = i0.ɵɵgetCurrentView();
|
|
5997
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5701
|
+
i0.ɵɵelementStart(0, "ion-button", 19);
|
|
5998
5702
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_9_ion_button_4_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r13 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r13.openWeeklies()); });
|
|
5999
5703
|
i0.ɵɵpipe(1, "translate");
|
|
6000
5704
|
i0.ɵɵtext(2);
|
|
@@ -6008,7 +5712,7 @@ function HeaderComponent_ion_buttons_9_ion_button_4_Template(rf, ctx) { if (rf &
|
|
|
6008
5712
|
} }
|
|
6009
5713
|
function HeaderComponent_ion_buttons_9_ion_button_5_Template(rf, ctx) { if (rf & 1) {
|
|
6010
5714
|
const _r16 = i0.ɵɵgetCurrentView();
|
|
6011
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5715
|
+
i0.ɵɵelementStart(0, "ion-button", 16);
|
|
6012
5716
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_9_ion_button_5_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r15 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r15.openWeeklies()); });
|
|
6013
5717
|
i0.ɵɵpipe(1, "translate");
|
|
6014
5718
|
i0.ɵɵtext(2);
|
|
@@ -6022,7 +5726,7 @@ function HeaderComponent_ion_buttons_9_ion_button_5_Template(rf, ctx) { if (rf &
|
|
|
6022
5726
|
} }
|
|
6023
5727
|
function HeaderComponent_ion_buttons_9_ion_button_6_Template(rf, ctx) { if (rf & 1) {
|
|
6024
5728
|
const _r18 = i0.ɵɵgetCurrentView();
|
|
6025
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5729
|
+
i0.ɵɵelementStart(0, "ion-button", 16);
|
|
6026
5730
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_9_ion_button_6_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r17.openWeeklies()); });
|
|
6027
5731
|
i0.ɵɵpipe(1, "translate");
|
|
6028
5732
|
i0.ɵɵtext(2);
|
|
@@ -6036,7 +5740,7 @@ function HeaderComponent_ion_buttons_9_ion_button_6_Template(rf, ctx) { if (rf &
|
|
|
6036
5740
|
} }
|
|
6037
5741
|
function HeaderComponent_ion_buttons_9_ion_button_7_Template(rf, ctx) { if (rf & 1) {
|
|
6038
5742
|
const _r20 = i0.ɵɵgetCurrentView();
|
|
6039
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5743
|
+
i0.ɵɵelementStart(0, "ion-button", 19);
|
|
6040
5744
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_9_ion_button_7_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r19.openPage("cp", "history")); });
|
|
6041
5745
|
i0.ɵɵpipe(1, "translate");
|
|
6042
5746
|
i0.ɵɵtext(2);
|
|
@@ -6050,12 +5754,12 @@ function HeaderComponent_ion_buttons_9_ion_button_7_Template(rf, ctx) { if (rf &
|
|
|
6050
5754
|
} }
|
|
6051
5755
|
function HeaderComponent_ion_buttons_9_Template(rf, ctx) { if (rf & 1) {
|
|
6052
5756
|
const _r22 = i0.ɵɵgetCurrentView();
|
|
6053
|
-
i0.ɵɵelementStart(0, "ion-buttons",
|
|
5757
|
+
i0.ɵɵelementStart(0, "ion-buttons", 15)(1, "ion-button", 16);
|
|
6054
5758
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_9_Template_ion_button_click_1_listener() { i0.ɵɵrestoreView(_r22); const ctx_r21 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r21.openHome()); });
|
|
6055
5759
|
i0.ɵɵpipe(2, "translate");
|
|
6056
5760
|
i0.ɵɵtext(3);
|
|
6057
5761
|
i0.ɵɵelementEnd();
|
|
6058
|
-
i0.ɵɵtemplate(4, HeaderComponent_ion_buttons_9_ion_button_4_Template, 3, 5, "ion-button",
|
|
5762
|
+
i0.ɵɵtemplate(4, HeaderComponent_ion_buttons_9_ion_button_4_Template, 3, 5, "ion-button", 17)(5, HeaderComponent_ion_buttons_9_ion_button_5_Template, 3, 5, "ion-button", 18)(6, HeaderComponent_ion_buttons_9_ion_button_6_Template, 3, 5, "ion-button", 18)(7, HeaderComponent_ion_buttons_9_ion_button_7_Template, 3, 5, "ion-button", 17);
|
|
6059
5763
|
i0.ɵɵelementEnd();
|
|
6060
5764
|
} if (rf & 2) {
|
|
6061
5765
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -6074,15 +5778,15 @@ function HeaderComponent_ion_buttons_9_Template(rf, ctx) { if (rf & 1) {
|
|
|
6074
5778
|
i0.ɵɵproperty("ngIf", ctx_r2.ls.isClaimant() && ctx_r2.legacyMenu == "false");
|
|
6075
5779
|
} }
|
|
6076
5780
|
function HeaderComponent_div_10_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
6077
|
-
i0.ɵɵelementStart(0, "ion-row")(1, "ion-col",
|
|
5781
|
+
i0.ɵɵelementStart(0, "ion-row")(1, "ion-col", 23)(2, "ion-text");
|
|
6078
5782
|
i0.ɵɵtext(3);
|
|
6079
5783
|
i0.ɵɵpipe(4, "properCase");
|
|
6080
5784
|
i0.ɵɵpipe(5, "properCase");
|
|
6081
5785
|
i0.ɵɵelementEnd()();
|
|
6082
|
-
i0.ɵɵelementStart(6, "ion-col",
|
|
5786
|
+
i0.ɵɵelementStart(6, "ion-col", 23)(7, "ion-text");
|
|
6083
5787
|
i0.ɵɵtext(8);
|
|
6084
5788
|
i0.ɵɵelementEnd()();
|
|
6085
|
-
i0.ɵɵelementStart(9, "ion-col",
|
|
5789
|
+
i0.ɵɵelementStart(9, "ion-col", 23)(10, "ion-text");
|
|
6086
5790
|
i0.ɵɵtext(11);
|
|
6087
5791
|
i0.ɵɵelementEnd()()();
|
|
6088
5792
|
} if (rf & 2) {
|
|
@@ -6097,9 +5801,9 @@ function HeaderComponent_div_10_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
6097
5801
|
} }
|
|
6098
5802
|
function HeaderComponent_div_10_Template(rf, ctx) { if (rf & 1) {
|
|
6099
5803
|
const _r26 = i0.ɵɵgetCurrentView();
|
|
6100
|
-
i0.ɵɵelementStart(0, "div",
|
|
5804
|
+
i0.ɵɵelementStart(0, "div", 20)(1, "p-autoComplete", 21);
|
|
6101
5805
|
i0.ɵɵlistener("ngModelChange", function HeaderComponent_div_10_Template_p_autoComplete_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r25 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r25.searchText = $event); })("completeMethod", function HeaderComponent_div_10_Template_p_autoComplete_completeMethod_1_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r27 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r27.search($event)); })("onSelect", function HeaderComponent_div_10_Template_p_autoComplete_onSelect_1_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r28 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r28.onSelectAction($event)); });
|
|
6102
|
-
i0.ɵɵtemplate(2, HeaderComponent_div_10_ng_template_2_Template, 12, 8, "ng-template",
|
|
5806
|
+
i0.ɵɵtemplate(2, HeaderComponent_div_10_ng_template_2_Template, 12, 8, "ng-template", 22);
|
|
6103
5807
|
i0.ɵɵelementEnd()();
|
|
6104
5808
|
} if (rf & 2) {
|
|
6105
5809
|
const ctx_r3 = i0.ɵɵnextContext();
|
|
@@ -6108,10 +5812,10 @@ function HeaderComponent_div_10_Template(rf, ctx) { if (rf & 1) {
|
|
|
6108
5812
|
} }
|
|
6109
5813
|
function HeaderComponent_ion_buttons_11_ion_button_7_Template(rf, ctx) { if (rf & 1) {
|
|
6110
5814
|
const _r33 = i0.ɵɵgetCurrentView();
|
|
6111
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5815
|
+
i0.ɵɵelementStart(0, "ion-button", 16);
|
|
6112
5816
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_11_ion_button_7_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r33); const ctx_r32 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r32.openPage("cp", "documents")); });
|
|
6113
5817
|
i0.ɵɵpipe(1, "translate");
|
|
6114
|
-
i0.ɵɵelement(2, "ion-icon",
|
|
5818
|
+
i0.ɵɵelement(2, "ion-icon", 27);
|
|
6115
5819
|
i0.ɵɵelementEnd();
|
|
6116
5820
|
} if (rf & 2) {
|
|
6117
5821
|
const ctx_r29 = i0.ɵɵnextContext(2);
|
|
@@ -6120,36 +5824,36 @@ function HeaderComponent_ion_buttons_11_ion_button_7_Template(rf, ctx) { if (rf
|
|
|
6120
5824
|
} }
|
|
6121
5825
|
function HeaderComponent_ion_buttons_11_ion_button_8_Template(rf, ctx) { if (rf & 1) {
|
|
6122
5826
|
const _r35 = i0.ɵɵgetCurrentView();
|
|
6123
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5827
|
+
i0.ɵɵelementStart(0, "ion-button", 28);
|
|
6124
5828
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_11_ion_button_8_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r35); const ctx_r34 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r34.openPage("cp", "documents")); });
|
|
6125
5829
|
i0.ɵɵpipe(1, "translate");
|
|
6126
|
-
i0.ɵɵelement(2, "ion-icon",
|
|
5830
|
+
i0.ɵɵelement(2, "ion-icon", 27);
|
|
6127
5831
|
i0.ɵɵelementEnd();
|
|
6128
5832
|
} if (rf & 2) {
|
|
6129
5833
|
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "header.my-documents"));
|
|
6130
5834
|
} }
|
|
6131
5835
|
function HeaderComponent_ion_buttons_11_ion_button_9_Template(rf, ctx) { if (rf & 1) {
|
|
6132
5836
|
const _r37 = i0.ɵɵgetCurrentView();
|
|
6133
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
5837
|
+
i0.ɵɵelementStart(0, "ion-button", 28);
|
|
6134
5838
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_11_ion_button_9_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r37); const ctx_r36 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r36.hs.show()); });
|
|
6135
5839
|
i0.ɵɵpipe(1, "translate");
|
|
6136
|
-
i0.ɵɵelement(2, "ion-icon",
|
|
5840
|
+
i0.ɵɵelement(2, "ion-icon", 29);
|
|
6137
5841
|
i0.ɵɵelementEnd();
|
|
6138
5842
|
} if (rf & 2) {
|
|
6139
5843
|
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "header.help"));
|
|
6140
5844
|
} }
|
|
6141
5845
|
function HeaderComponent_ion_buttons_11_Template(rf, ctx) { if (rf & 1) {
|
|
6142
5846
|
const _r39 = i0.ɵɵgetCurrentView();
|
|
6143
|
-
i0.ɵɵelementStart(0, "ion-buttons",
|
|
5847
|
+
i0.ɵɵelementStart(0, "ion-buttons", 24)(1, "ion-button", 16);
|
|
6144
5848
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_11_Template_ion_button_click_1_listener($event) { i0.ɵɵrestoreView(_r39); const ctx_r38 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r38.presentMyProfilePopover($event)); });
|
|
6145
5849
|
i0.ɵɵpipe(2, "translate");
|
|
6146
5850
|
i0.ɵɵelementStart(3, "h4");
|
|
6147
5851
|
i0.ɵɵtext(4);
|
|
6148
5852
|
i0.ɵɵpipe(5, "properCase");
|
|
6149
5853
|
i0.ɵɵelementEnd();
|
|
6150
|
-
i0.ɵɵelement(6, "ion-icon",
|
|
5854
|
+
i0.ɵɵelement(6, "ion-icon", 25);
|
|
6151
5855
|
i0.ɵɵelementEnd();
|
|
6152
|
-
i0.ɵɵtemplate(7, HeaderComponent_ion_buttons_11_ion_button_7_Template, 3, 4, "ion-button",
|
|
5856
|
+
i0.ɵɵtemplate(7, HeaderComponent_ion_buttons_11_ion_button_7_Template, 3, 4, "ion-button", 18)(8, HeaderComponent_ion_buttons_11_ion_button_8_Template, 3, 3, "ion-button", 26)(9, HeaderComponent_ion_buttons_11_ion_button_9_Template, 3, 3, "ion-button", 26);
|
|
6153
5857
|
i0.ɵɵpipe(10, "async");
|
|
6154
5858
|
i0.ɵɵelementEnd();
|
|
6155
5859
|
} if (rf & 2) {
|
|
@@ -6168,10 +5872,10 @@ function HeaderComponent_ion_buttons_11_Template(rf, ctx) { if (rf & 1) {
|
|
|
6168
5872
|
} }
|
|
6169
5873
|
function HeaderComponent_ion_buttons_12_Template(rf, ctx) { if (rf & 1) {
|
|
6170
5874
|
const _r41 = i0.ɵɵgetCurrentView();
|
|
6171
|
-
i0.ɵɵelementStart(0, "ion-buttons",
|
|
5875
|
+
i0.ɵɵelementStart(0, "ion-buttons", 30)(1, "ion-button", 28);
|
|
6172
5876
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_12_Template_ion_button_click_1_listener() { i0.ɵɵrestoreView(_r41); const ctx_r40 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r40.logout()); });
|
|
6173
5877
|
i0.ɵɵpipe(2, "translate");
|
|
6174
|
-
i0.ɵɵelement(3, "ion-icon",
|
|
5878
|
+
i0.ɵɵelement(3, "ion-icon", 31);
|
|
6175
5879
|
i0.ɵɵelementEnd()();
|
|
6176
5880
|
} if (rf & 2) {
|
|
6177
5881
|
i0.ɵɵadvance(1);
|
|
@@ -6179,22 +5883,23 @@ function HeaderComponent_ion_buttons_12_Template(rf, ctx) { if (rf & 1) {
|
|
|
6179
5883
|
} }
|
|
6180
5884
|
function HeaderComponent_ion_buttons_13_Template(rf, ctx) { if (rf & 1) {
|
|
6181
5885
|
const _r44 = i0.ɵɵgetCurrentView();
|
|
6182
|
-
i0.ɵɵelementStart(0, "ion-buttons",
|
|
6183
|
-
i0.ɵɵelement(1, "p-menu",
|
|
6184
|
-
i0.ɵɵelementStart(3, "ion-button",
|
|
5886
|
+
i0.ɵɵelementStart(0, "ion-buttons", 32);
|
|
5887
|
+
i0.ɵɵelement(1, "p-menu", 33, 34);
|
|
5888
|
+
i0.ɵɵelementStart(3, "ion-button", 35);
|
|
6185
5889
|
i0.ɵɵlistener("click", function HeaderComponent_ion_buttons_13_Template_ion_button_click_3_listener($event) { i0.ɵɵrestoreView(_r44); const _r42 = i0.ɵɵreference(2); return i0.ɵɵresetView(_r42.toggle($event)); });
|
|
6186
5890
|
i0.ɵɵpipe(4, "translate");
|
|
6187
|
-
i0.ɵɵelement(5, "ion-icon",
|
|
5891
|
+
i0.ɵɵelement(5, "ion-icon", 36);
|
|
6188
5892
|
i0.ɵɵelementEnd()();
|
|
6189
5893
|
} if (rf & 2) {
|
|
6190
5894
|
const ctx_r6 = i0.ɵɵnextContext();
|
|
5895
|
+
i0.ɵɵproperty("disabled", ctx_r6.isEmployer);
|
|
6191
5896
|
i0.ɵɵadvance(1);
|
|
6192
5897
|
i0.ɵɵproperty("popup", true)("model", ctx_r6.items);
|
|
6193
5898
|
i0.ɵɵadvance(2);
|
|
6194
|
-
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(4,
|
|
5899
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(4, 4, "header.language"));
|
|
6195
5900
|
} }
|
|
6196
5901
|
function HeaderComponent_ion_toolbar_14_ion_title_3_Template(rf, ctx) { if (rf & 1) {
|
|
6197
|
-
i0.ɵɵelementStart(0, "ion-title",
|
|
5902
|
+
i0.ɵɵelementStart(0, "ion-title", 41);
|
|
6198
5903
|
i0.ɵɵtext(1);
|
|
6199
5904
|
i0.ɵɵelementEnd();
|
|
6200
5905
|
} if (rf & 2) {
|
|
@@ -6203,7 +5908,7 @@ function HeaderComponent_ion_toolbar_14_ion_title_3_Template(rf, ctx) { if (rf &
|
|
|
6203
5908
|
i0.ɵɵtextInterpolate(ctx_r45.title);
|
|
6204
5909
|
} }
|
|
6205
5910
|
function HeaderComponent_ion_toolbar_14_ion_title_6_Template(rf, ctx) { if (rf & 1) {
|
|
6206
|
-
i0.ɵɵelementStart(0, "ion-title",
|
|
5911
|
+
i0.ɵɵelementStart(0, "ion-title", 42);
|
|
6207
5912
|
i0.ɵɵtext(1);
|
|
6208
5913
|
i0.ɵɵelementEnd();
|
|
6209
5914
|
} if (rf & 2) {
|
|
@@ -6212,13 +5917,13 @@ function HeaderComponent_ion_toolbar_14_ion_title_6_Template(rf, ctx) { if (rf &
|
|
|
6212
5917
|
i0.ɵɵtextInterpolate1(" ", ctx_r46.pageId, "");
|
|
6213
5918
|
} }
|
|
6214
5919
|
function HeaderComponent_ion_toolbar_14_Template(rf, ctx) { if (rf & 1) {
|
|
6215
|
-
i0.ɵɵelementStart(0, "ion-toolbar",
|
|
6216
|
-
i0.ɵɵelement(2, "ion-back-button",
|
|
6217
|
-
i0.ɵɵtemplate(3, HeaderComponent_ion_toolbar_14_ion_title_3_Template, 2, 1, "ion-title",
|
|
5920
|
+
i0.ɵɵelementStart(0, "ion-toolbar", 37)(1, "ion-buttons", 15);
|
|
5921
|
+
i0.ɵɵelement(2, "ion-back-button", 38);
|
|
5922
|
+
i0.ɵɵtemplate(3, HeaderComponent_ion_toolbar_14_ion_title_3_Template, 2, 1, "ion-title", 39);
|
|
6218
5923
|
i0.ɵɵelementEnd();
|
|
6219
5924
|
i0.ɵɵprojection(4, 1);
|
|
6220
|
-
i0.ɵɵelementStart(5, "ion-buttons",
|
|
6221
|
-
i0.ɵɵtemplate(6, HeaderComponent_ion_toolbar_14_ion_title_6_Template, 2, 1, "ion-title",
|
|
5925
|
+
i0.ɵɵelementStart(5, "ion-buttons", 24);
|
|
5926
|
+
i0.ɵɵtemplate(6, HeaderComponent_ion_toolbar_14_ion_title_6_Template, 2, 1, "ion-title", 40);
|
|
6222
5927
|
i0.ɵɵelementEnd()();
|
|
6223
5928
|
} if (rf & 2) {
|
|
6224
5929
|
const ctx_r7 = i0.ɵɵnextContext();
|
|
@@ -6231,11 +5936,11 @@ function HeaderComponent_ion_toolbar_14_Template(rf, ctx) { if (rf & 1) {
|
|
|
6231
5936
|
} }
|
|
6232
5937
|
function HeaderComponent_app_profile_16_Template(rf, ctx) { if (rf & 1) {
|
|
6233
5938
|
const _r48 = i0.ɵɵgetCurrentView();
|
|
6234
|
-
i0.ɵɵelementStart(0, "app-profile",
|
|
5939
|
+
i0.ɵɵelementStart(0, "app-profile", 43);
|
|
6235
5940
|
i0.ɵɵlistener("onCancel", function HeaderComponent_app_profile_16_Template_app_profile_onCancel_0_listener() { i0.ɵɵrestoreView(_r48); const ctx_r47 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r47.showProfilePopup = false); });
|
|
6236
5941
|
i0.ɵɵelementEnd();
|
|
6237
5942
|
} }
|
|
6238
|
-
const _c0$
|
|
5943
|
+
const _c0$H = ["*", "*"];
|
|
6239
5944
|
class HeaderComponent extends BasePage {
|
|
6240
5945
|
constructor(ls, util, r, popup, cs, nav, modalController, ns, hs, translateService) {
|
|
6241
5946
|
super();
|
|
@@ -6252,6 +5957,7 @@ class HeaderComponent extends BasePage {
|
|
|
6252
5957
|
this.secondToolbar = false;
|
|
6253
5958
|
this.displayLogo = false;
|
|
6254
5959
|
this.showHistory = false;
|
|
5960
|
+
this.isEmployer = false;
|
|
6255
5961
|
this.showNotificationLoader = false;
|
|
6256
5962
|
this.legacyMenu = LibConstants.legacyMenu;
|
|
6257
5963
|
this.showProfilePopup = false;
|
|
@@ -6423,8 +6129,8 @@ class HeaderComponent extends BasePage {
|
|
|
6423
6129
|
return this.translateService.instant('common.history');
|
|
6424
6130
|
}
|
|
6425
6131
|
static { this.ɵfac = function HeaderComponent_Factory(t) { return new (t || HeaderComponent)(i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i4.Router), i0.ɵɵdirectiveInject(i1$3.PopoverController), i0.ɵɵdirectiveInject(ClaimantService$1), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(i1$3.ModalController), i0.ɵɵdirectiveInject(NotificationService), i0.ɵɵdirectiveInject(HelpService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
6426
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HeaderComponent, selectors: [["app-header"]], inputs: { title: "title", pageId: "pageId", secondToolbar: "secondToolbar", displayLogo: "displayLogo", showHistory: "showHistory", backPage: "backPage" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$
|
|
6427
|
-
i0.ɵɵprojectionDef(_c0$
|
|
6132
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HeaderComponent, selectors: [["app-header"]], inputs: { title: "title", pageId: "pageId", secondToolbar: "secondToolbar", displayLogo: "displayLogo", showHistory: "showHistory", backPage: "backPage", isEmployer: "isEmployer" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$H, decls: 17, vars: 16, consts: [["mode", "determinate", 3, "value", 4, "ngIf"], ["slot", "start", 2, "margin-left", "-5px"], ["autoHide", "false", "tooltipPosition", "bottom", 3, "pTooltip", 4, "ngIf"], ["slot", "start", 3, "ngClass"], ["alt", "Logo of the Kansas Department of Labor", "tooltipPosition", "bottom", "aria-label", "Logo of the Kansas Department of Labor", "id", "header_reemployme_logo", "src", "assets/icon/kdol_logo.png", 3, "pTooltip", "ngClass"], ["slot", "start", 4, "ngIf"], ["class", "toolbar-content hide-xs", 4, "ngIf"], ["slot", "end", 4, "ngIf"], ["slot", "secondary", 4, "ngIf"], ["slot", "end", 3, "disabled", 4, "ngIf"], ["color", "light", "id", "secondToolbar", 4, "ngIf"], ["position", "top-center"], [3, "onCancel", 4, "ngIf"], ["mode", "determinate", 3, "value"], ["autoHide", "false", "tooltipPosition", "bottom", 3, "pTooltip"], ["slot", "start"], ["tooltipPosition", "bottom", 3, "pTooltip", "ngClass", "click"], ["tooltipPosition", "bottom", "class", "hide-xs hide-md", 3, "pTooltip", "ngClass", "click", 4, "ngIf"], ["tooltipPosition", "bottom", 3, "pTooltip", "ngClass", "click", 4, "ngIf"], ["tooltipPosition", "bottom", 1, "hide-xs", "hide-md", 3, "pTooltip", "ngClass", "click"], [1, "toolbar-content", "hide-xs"], ["appendTo", "body", "placeholder", "Search Claimants", "emptyMessage", "No Results Found.", "size", "25", 3, "ngModel", "suggestions", "ngModelChange", "completeMethod", "onSelect"], ["pTemplate", "item"], ["size", "4"], ["slot", "end"], ["aria-label", "user icon", "slot", "end", "name", "person-circle-outline"], ["tooltipPosition", "bottom", 3, "pTooltip", "click", 4, "ngIf"], ["aria-label", "documents", "name", "document-text-outline"], ["tooltipPosition", "bottom", 3, "pTooltip", "click"], ["aria-label", "help", "name", "help-circle-outline"], ["slot", "secondary"], ["name", "log-out-sharp"], ["slot", "end", 3, "disabled"], ["appendTo", "body", 3, "popup", "model"], ["menu", ""], ["aria-label", "language", "tooltipPosition", "bottom", 3, "pTooltip", "click"], ["aria-label", "language", "name", "language", "slot", "end"], ["color", "light", "id", "secondToolbar"], ["pTooltip", "Back", "alt", "Back", "tooltipPosition", "bottom", 3, "defaultHref"], ["color", "primary", "style", "font-size: 18px", 4, "ngIf"], ["color", "primary", "style", "font-size: xx-small; float: right; padding-right: 8px;", 4, "ngIf"], ["color", "primary", 2, "font-size", "18px"], ["color", "primary", 2, "font-size", "xx-small", "float", "right", "padding-right", "8px"], [3, "onCancel"]], template: function HeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
6133
|
+
i0.ɵɵprojectionDef(_c0$H);
|
|
6428
6134
|
i0.ɵɵtemplate(0, HeaderComponent_mat_progress_bar_0_Template, 2, 3, "mat-progress-bar", 0);
|
|
6429
6135
|
i0.ɵɵpipe(1, "async");
|
|
6430
6136
|
i0.ɵɵelementStart(2, "ion-toolbar")(3, "ion-buttons", 1);
|
|
@@ -6435,11 +6141,11 @@ class HeaderComponent extends BasePage {
|
|
|
6435
6141
|
i0.ɵɵpipe(7, "translate");
|
|
6436
6142
|
i0.ɵɵelementEnd();
|
|
6437
6143
|
i0.ɵɵprojection(8);
|
|
6438
|
-
i0.ɵɵtemplate(9, HeaderComponent_ion_buttons_9_Template, 8, 9, "ion-buttons", 5)(10, HeaderComponent_div_10_Template, 3, 2, "div", 6)(11, HeaderComponent_ion_buttons_11_Template, 11, 12, "ion-buttons", 7)(12, HeaderComponent_ion_buttons_12_Template, 4, 3, "ion-buttons", 8)(13, HeaderComponent_ion_buttons_13_Template, 6,
|
|
6144
|
+
i0.ɵɵtemplate(9, HeaderComponent_ion_buttons_9_Template, 8, 9, "ion-buttons", 5)(10, HeaderComponent_div_10_Template, 3, 2, "div", 6)(11, HeaderComponent_ion_buttons_11_Template, 11, 12, "ion-buttons", 7)(12, HeaderComponent_ion_buttons_12_Template, 4, 3, "ion-buttons", 8)(13, HeaderComponent_ion_buttons_13_Template, 6, 6, "ion-buttons", 9);
|
|
6439
6145
|
i0.ɵɵelementEnd();
|
|
6440
|
-
i0.ɵɵtemplate(14, HeaderComponent_ion_toolbar_14_Template, 7, 3, "ion-toolbar",
|
|
6441
|
-
i0.ɵɵelement(15, "p-toast",
|
|
6442
|
-
i0.ɵɵtemplate(16, HeaderComponent_app_profile_16_Template, 1, 0, "app-profile",
|
|
6146
|
+
i0.ɵɵtemplate(14, HeaderComponent_ion_toolbar_14_Template, 7, 3, "ion-toolbar", 10);
|
|
6147
|
+
i0.ɵɵelement(15, "p-toast", 11);
|
|
6148
|
+
i0.ɵɵtemplate(16, HeaderComponent_app_profile_16_Template, 1, 0, "app-profile", 12);
|
|
6443
6149
|
} if (rf & 2) {
|
|
6444
6150
|
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(1, 12, ctx.util.loader.value$) != 0);
|
|
6445
6151
|
i0.ɵɵadvance(4);
|
|
@@ -6458,7 +6164,7 @@ class HeaderComponent extends BasePage {
|
|
|
6458
6164
|
i0.ɵɵadvance(1);
|
|
6459
6165
|
i0.ɵɵproperty("ngIf", !ctx.ls.isLoggedIn() && ctx.ls.getUser());
|
|
6460
6166
|
i0.ɵɵadvance(1);
|
|
6461
|
-
i0.ɵɵproperty("ngIf", !ctx.ls.isLoggedIn());
|
|
6167
|
+
i0.ɵɵproperty("ngIf", !ctx.ls.isLoggedIn() && !ctx.isEmployer);
|
|
6462
6168
|
i0.ɵɵadvance(1);
|
|
6463
6169
|
i0.ɵɵproperty("ngIf", ctx.secondToolbar);
|
|
6464
6170
|
i0.ɵɵadvance(2);
|
|
@@ -6467,7 +6173,7 @@ class HeaderComponent extends BasePage {
|
|
|
6467
6173
|
}
|
|
6468
6174
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HeaderComponent, [{
|
|
6469
6175
|
type: Component,
|
|
6470
|
-
args: [{ selector: 'app-header', template: "<mat-progress-bar mode=\"determinate\" [value]=\"util.loader.value$ | async\" *ngIf=\"(util.loader.value$ | async) != 0\">\r\n</mat-progress-bar>\r\n<ion-toolbar>\r\n <ion-buttons slot=\"start\" style=\"margin-left: -5px;\">\r\n <ion-menu-button autoHide=\"false\" pTooltip=\"{{'header.menu' | translate}}\" tooltipPosition=\"bottom\"\r\n *ngIf=\"ls.isLoggedIn()\"></ion-menu-button>\r\n </ion-buttons>\r\n <ion-buttons slot=\"start\" [ngClass]=\"displayLogo ? 'header_button_white' : 'header_button hide-xs hide-md'\">\r\n <img alt=\"Logo of the Kansas Department of Labor\" pTooltip=\"{{'header.kdol-logo' | translate}}\" tooltipPosition=\"bottom\"\r\n aria-label=\"Logo of the Kansas Department of Labor\" id=\"header_reemployme_logo\" src=\"assets/icon/kdol_logo.png\" [ngClass]=\"displayLogo ? 'app-logo' : 'app-logo hide-xs hide-md'\"/>\r\n </ion-buttons>\r\n <ng-content></ng-content>\r\n <ion-buttons slot=\"start\" *ngIf=\"ls.isLoggedIn()\">\r\n <ion-button (click)=\"openHome()\" pTooltip=\"{{'header.home' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('welcome') ? 'header-button' : ''\">{{homeLabel}}</ion-button>\r\n \r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false'\" (click)=\"openWeeklies()\" class=\"hide-xs hide-md\">{{legacyMenu == 'true' ? 'Weekly Cert' :weeklyLabel }}</ion-button>\r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'true' && !util.isState('ME')\" (click)=\"openWeeklies()\">{{legacyMenu == 'true' ? 'Weekly Cert' : weeklyLabel }}</ion-button>\r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'true' && util.isState('ME')\" (click)=\"openWeeklies()\">{{legacyMenu == 'true' ? 'Weekly Claim' : weeklyLabel }}</ion-button>\r\n \r\n <ion-button pTooltip=\"{{'header.history' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '') == 'history' ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false'\" (click)=\"openPage('cp', 'history')\" class=\"hide-xs hide-md\">{{historyLabel}}</ion-button>\r\n </ion-buttons>\r\n <div class=\"toolbar-content hide-xs\" *ngIf=\"ls.isLoggedIn() && ls.isCsr()\">\r\n <p-autoComplete appendTo=\"body\" [(ngModel)]=\"searchText\" [suggestions]=\"results\"\r\n (completeMethod)=\"search($event)\" placeholder=\"Search Claimants\" (onSelect)=\"onSelectAction($event)\"\r\n emptyMessage=\"No Results Found.\" size=\"25\">\r\n <ng-template let-user pTemplate=\"item\">\r\n <ion-row>\r\n <ion-col size=\"4\">\r\n <ion-text>{{user.firstName | properCase}} {{user.lastName | properCase}}</ion-text>\r\n </ion-col>\r\n <ion-col size=\"4\">\r\n <ion-text>{{user.userId}}</ion-text>\r\n </ion-col>\r\n <ion-col size=\"4\">\r\n <ion-text>{{util.maskSsn(user.ssn)}}</ion-text>\r\n </ion-col>\r\n </ion-row>\r\n </ng-template>\r\n </p-autoComplete>\r\n </div>\r\n <ion-buttons slot=\"end\" *ngIf=\"ls.isLoggedIn()\" >\r\n <ion-button (click)=\"presentMyProfilePopover($event)\" pTooltip=\"{{'header.my-account' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"legacyMenu == 'false' && ls.isClaimant() && showProfilePopup ? 'hide-xs hide-md header-button' : (legacyMenu == 'false' && ls.isClaimant() ? 'hide-xs hide-md' : '')\">\r\n <h4>{{ls.getFullName() | properCase}}</h4>\r\n <ion-icon aria-label=\"user icon\" slot=\"end\" name=\"person-circle-outline\"></ion-icon>\r\n </ion-button>\r\n <ion-button (click)=\"openPage('cp', 'documents')\" pTooltip=\"{{'header.my-documents' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"!ls.isCsr() && legacyMenu == 'false' && !util.isState('ME')\" [ngClass]=\"r.url.replace('/', '') == 'documents' ? 'header-button hide-xs hide-md' : 'hide-xs hide-md'\">\r\n <ion-icon aria-label=\"documents\" name=\"document-text-outline\"></ion-icon>\r\n </ion-button>\r\n <ion-button (click)=\"openPage('cp', 'documents')\" pTooltip=\"{{'header.my-documents' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"!ls.isCsr() && legacyMenu == 'true'\">\r\n <ion-icon aria-label=\"documents\" name=\"document-text-outline\"></ion-icon>\r\n </ion-button>\r\n\r\n \r\n\r\n <ion-button (click)=\"this.hs.show()\" pTooltip=\"{{'header.help' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false' && (hs.shouldDisplayHelpButton() | async)\">\r\n <ion-icon aria-label=\"help\" name=\"help-circle-outline\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n <ion-buttons slot=\"secondary\" *ngIf=\"!ls.isLoggedIn() && ls.getUser()\">\r\n <ion-button (click)=\"logout()\" pTooltip=\"{{'header.logout' | translate}}\" tooltipPosition=\"bottom\">\r\n <ion-icon name=\"log-out-sharp\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n <ion-buttons slot=\"end\" *ngIf=\"!ls.isLoggedIn()\" >\r\n <p-menu #menu [popup]=\"true\" [model]=\"items\" appendTo=\"body\"></p-menu>\r\n <ion-button aria-label=\"language\" (click)=\"menu.toggle($event)\" pTooltip=\"{{'header.language' | translate}}\" tooltipPosition=\"bottom\">\r\n <ion-icon aria-label=\"language\" name=\"language\" slot=\"end\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n</ion-toolbar>\r\n<ion-toolbar color=\"light\" id=\"secondToolbar\" *ngIf=\"secondToolbar\">\r\n <ion-buttons slot=\"start\">\r\n <ion-back-button pTooltip=\"Back\" alt=\"Back\" tooltipPosition=\"bottom\" [defaultHref]=\"backPage ? backPage : '/welcome'\"></ion-back-button>\r\n <ion-title color=\"primary\" *ngIf=\"title\" style=\"font-size: 18px\">{{title}}</ion-title>\r\n </ion-buttons>\r\n <ng-content></ng-content>\r\n <ion-buttons slot=\"end\">\r\n <ion-title color=\"primary\" style=\"font-size: xx-small; float: right; padding-right: 8px;\" *ngIf=\"pageId\">\r\n {{pageId}}</ion-title>\r\n </ion-buttons>\r\n</ion-toolbar>\r\n<p-toast position=\"top-center\" ></p-toast>\r\n\r\n<app-profile *ngIf=\"showProfilePopup\" (onCancel)=\"showProfilePopup = false\"></app-profile>\r\n\r\n\r\n", styles: ["#secondToolbar{--min-height: 45px !important}#header_reemployms_logo{margin-right:10px;margin-left:-5px;padding:5px;height:40px}.header_logo{height:35px}.app-logo{height:55px}.header_button_white{height:60px;margin:0 0 4px;padding:8px}.header_button{height:56px;margin:0 0 4px;padding:8px}.toolbar-content{text-align:center}ion-toolbar{padding-right:10px;--ion-toolbar-background: var(--ion-color-primary) !important;--color: white !important;--font-weight: 500;--font-size: 13px;--position: relative;--z-index: 10;--text-align: center;--letter-spacing: .004em}ion-button{--color-hover: var(---yellow-300);text-transform:none!important;font-size:20px}.header-button{text-transform:none!important;font-weight:700;font-size:20px}.ios ion-button::part(native){color:#fff!important}ion-menu-button::part(native){color:#fff!important}ion-popover{--width: 40% !important}img{visibility:visible;position:relative}:host ::ng-deep p-autoComplete .p-inputtext{height:40px;color:#000}:host ::ng-deep p-autoComplete .p-autocomplete-item{padding:.5rem!important}:host ::ng-deep .p-toast-bottom-center,:host ::ng-deep .p-toast-top-center{transform:none!important;z-index:100001!important}@media (min-width: 768px){:host ::ng-deep .header-popover{--width: 55%}}@media (min-width: 992px){:host ::ng-deep .header-popover{--width: 40%}}@media (min-width: 1200px){:host ::ng-deep .header-popover{--width: 35%}}@media (min-width: 1400px){:host ::ng-deep .header-popover{--width: 30%}}\n"] }]
|
|
6176
|
+
args: [{ selector: 'app-header', template: "<mat-progress-bar mode=\"determinate\" [value]=\"util.loader.value$ | async\" *ngIf=\"(util.loader.value$ | async) != 0\">\r\n</mat-progress-bar>\r\n<ion-toolbar>\r\n <ion-buttons slot=\"start\" style=\"margin-left: -5px;\">\r\n <ion-menu-button autoHide=\"false\" pTooltip=\"{{'header.menu' | translate}}\" tooltipPosition=\"bottom\"\r\n *ngIf=\"ls.isLoggedIn()\"></ion-menu-button>\r\n </ion-buttons>\r\n <ion-buttons slot=\"start\" [ngClass]=\"displayLogo ? 'header_button_white' : 'header_button hide-xs hide-md'\">\r\n <img alt=\"Logo of the Kansas Department of Labor\" pTooltip=\"{{'header.kdol-logo' | translate}}\" tooltipPosition=\"bottom\"\r\n aria-label=\"Logo of the Kansas Department of Labor\" id=\"header_reemployme_logo\" src=\"assets/icon/kdol_logo.png\" [ngClass]=\"displayLogo ? 'app-logo' : 'app-logo hide-xs hide-md'\"/>\r\n </ion-buttons>\r\n <ng-content></ng-content>\r\n <ion-buttons slot=\"start\" *ngIf=\"ls.isLoggedIn()\">\r\n <ion-button (click)=\"openHome()\" pTooltip=\"{{'header.home' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('welcome') ? 'header-button' : ''\">{{homeLabel}}</ion-button>\r\n \r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false'\" (click)=\"openWeeklies()\" class=\"hide-xs hide-md\">{{legacyMenu == 'true' ? 'Weekly Cert' :weeklyLabel }}</ion-button>\r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'true' && !util.isState('ME')\" (click)=\"openWeeklies()\">{{legacyMenu == 'true' ? 'Weekly Cert' : weeklyLabel }}</ion-button>\r\n <ion-button pTooltip=\"{{'header.weekly.tooltip' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '').includes('weeklies') ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'true' && util.isState('ME')\" (click)=\"openWeeklies()\">{{legacyMenu == 'true' ? 'Weekly Claim' : weeklyLabel }}</ion-button>\r\n \r\n <ion-button pTooltip=\"{{'header.history' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"r.url.replace('/', '') == 'history' ? 'header-button' : ''\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false'\" (click)=\"openPage('cp', 'history')\" class=\"hide-xs hide-md\">{{historyLabel}}</ion-button>\r\n </ion-buttons>\r\n <div class=\"toolbar-content hide-xs\" *ngIf=\"ls.isLoggedIn() && ls.isCsr()\">\r\n <p-autoComplete appendTo=\"body\" [(ngModel)]=\"searchText\" [suggestions]=\"results\"\r\n (completeMethod)=\"search($event)\" placeholder=\"Search Claimants\" (onSelect)=\"onSelectAction($event)\"\r\n emptyMessage=\"No Results Found.\" size=\"25\">\r\n <ng-template let-user pTemplate=\"item\">\r\n <ion-row>\r\n <ion-col size=\"4\">\r\n <ion-text>{{user.firstName | properCase}} {{user.lastName | properCase}}</ion-text>\r\n </ion-col>\r\n <ion-col size=\"4\">\r\n <ion-text>{{user.userId}}</ion-text>\r\n </ion-col>\r\n <ion-col size=\"4\">\r\n <ion-text>{{util.maskSsn(user.ssn)}}</ion-text>\r\n </ion-col>\r\n </ion-row>\r\n </ng-template>\r\n </p-autoComplete>\r\n </div>\r\n <ion-buttons slot=\"end\" *ngIf=\"ls.isLoggedIn()\" >\r\n <ion-button (click)=\"presentMyProfilePopover($event)\" pTooltip=\"{{'header.my-account' | translate}}\" tooltipPosition=\"bottom\" [ngClass]=\"legacyMenu == 'false' && ls.isClaimant() && showProfilePopup ? 'hide-xs hide-md header-button' : (legacyMenu == 'false' && ls.isClaimant() ? 'hide-xs hide-md' : '')\">\r\n <h4>{{ls.getFullName() | properCase}}</h4>\r\n <ion-icon aria-label=\"user icon\" slot=\"end\" name=\"person-circle-outline\"></ion-icon>\r\n </ion-button>\r\n <ion-button (click)=\"openPage('cp', 'documents')\" pTooltip=\"{{'header.my-documents' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"!ls.isCsr() && legacyMenu == 'false' && !util.isState('ME')\" [ngClass]=\"r.url.replace('/', '') == 'documents' ? 'header-button hide-xs hide-md' : 'hide-xs hide-md'\">\r\n <ion-icon aria-label=\"documents\" name=\"document-text-outline\"></ion-icon>\r\n </ion-button>\r\n <ion-button (click)=\"openPage('cp', 'documents')\" pTooltip=\"{{'header.my-documents' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"!ls.isCsr() && legacyMenu == 'true'\">\r\n <ion-icon aria-label=\"documents\" name=\"document-text-outline\"></ion-icon>\r\n </ion-button>\r\n\r\n \r\n\r\n <ion-button (click)=\"this.hs.show()\" pTooltip=\"{{'header.help' | translate}}\" tooltipPosition=\"bottom\" *ngIf=\"ls.isClaimant() && legacyMenu == 'false' && (hs.shouldDisplayHelpButton() | async)\">\r\n <ion-icon aria-label=\"help\" name=\"help-circle-outline\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n <ion-buttons slot=\"secondary\" *ngIf=\"!ls.isLoggedIn() && ls.getUser()\">\r\n <ion-button (click)=\"logout()\" pTooltip=\"{{'header.logout' | translate}}\" tooltipPosition=\"bottom\">\r\n <ion-icon name=\"log-out-sharp\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n <ion-buttons slot=\"end\" *ngIf=\"!ls.isLoggedIn() && !isEmployer\" [disabled] = \"isEmployer\">\r\n <p-menu #menu [popup]=\"true\" [model]=\"items\" appendTo=\"body\"></p-menu>\r\n <ion-button aria-label=\"language\" (click)=\"menu.toggle($event)\" pTooltip=\"{{'header.language' | translate}}\" tooltipPosition=\"bottom\">\r\n <ion-icon aria-label=\"language\" name=\"language\" slot=\"end\"></ion-icon>\r\n </ion-button>\r\n </ion-buttons>\r\n\r\n</ion-toolbar>\r\n<ion-toolbar color=\"light\" id=\"secondToolbar\" *ngIf=\"secondToolbar\">\r\n <ion-buttons slot=\"start\">\r\n <ion-back-button pTooltip=\"Back\" alt=\"Back\" tooltipPosition=\"bottom\" [defaultHref]=\"backPage ? backPage : '/welcome'\"></ion-back-button>\r\n <ion-title color=\"primary\" *ngIf=\"title\" style=\"font-size: 18px\">{{title}}</ion-title>\r\n </ion-buttons>\r\n <ng-content></ng-content>\r\n <ion-buttons slot=\"end\">\r\n <ion-title color=\"primary\" style=\"font-size: xx-small; float: right; padding-right: 8px;\" *ngIf=\"pageId\">\r\n {{pageId}}</ion-title>\r\n </ion-buttons>\r\n</ion-toolbar>\r\n<p-toast position=\"top-center\" ></p-toast>\r\n\r\n<app-profile *ngIf=\"showProfilePopup\" (onCancel)=\"showProfilePopup = false\"></app-profile>\r\n\r\n\r\n", styles: ["#secondToolbar{--min-height: 45px !important}#header_reemployms_logo{margin-right:10px;margin-left:-5px;padding:5px;height:40px}.header_logo{height:35px}.app-logo{height:55px}.header_button_white{height:60px;margin:0 0 4px;padding:8px}.header_button{height:56px;margin:0 0 4px;padding:8px}.toolbar-content{text-align:center}ion-toolbar{padding-right:10px;--ion-toolbar-background: var(--ion-color-primary) !important;--color: white !important;--font-weight: 500;--font-size: 13px;--position: relative;--z-index: 10;--text-align: center;--letter-spacing: .004em}ion-button{--color-hover: var(---yellow-300);text-transform:none!important;font-size:20px}.header-button{text-transform:none!important;font-weight:700;font-size:20px}.ios ion-button::part(native){color:#fff!important}ion-menu-button::part(native){color:#fff!important}ion-popover{--width: 40% !important}img{visibility:visible;position:relative}:host ::ng-deep p-autoComplete .p-inputtext{height:40px;color:#000}:host ::ng-deep p-autoComplete .p-autocomplete-item{padding:.5rem!important}:host ::ng-deep .p-toast-bottom-center,:host ::ng-deep .p-toast-top-center{transform:none!important;z-index:100001!important}@media (min-width: 768px){:host ::ng-deep .header-popover{--width: 55%}}@media (min-width: 992px){:host ::ng-deep .header-popover{--width: 40%}}@media (min-width: 1200px){:host ::ng-deep .header-popover{--width: 35%}}@media (min-width: 1400px){:host ::ng-deep .header-popover{--width: 30%}}\n"] }]
|
|
6471
6177
|
}], () => [{ type: LoginService }, { type: UtilService }, { type: i4.Router }, { type: i1$3.PopoverController }, { type: ClaimantService$1 }, { type: i1$3.NavController }, { type: i1$3.ModalController }, { type: NotificationService }, { type: HelpService }, { type: i6$1.TranslateService }], { title: [{
|
|
6472
6178
|
type: Input,
|
|
6473
6179
|
args: ['title']
|
|
@@ -6486,6 +6192,9 @@ class HeaderComponent extends BasePage {
|
|
|
6486
6192
|
}], backPage: [{
|
|
6487
6193
|
type: Input,
|
|
6488
6194
|
args: ['backPage']
|
|
6195
|
+
}], isEmployer: [{
|
|
6196
|
+
type: Input,
|
|
6197
|
+
args: ['isEmployer']
|
|
6489
6198
|
}] }); })();
|
|
6490
6199
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(HeaderComponent, { className: "HeaderComponent", filePath: "lib\\components\\header\\header.component.ts", lineNumber: 23 }); })();
|
|
6491
6200
|
|
|
@@ -6957,7 +6666,7 @@ function InfoComponent_div_1_ion_col_6_ion_button_11_Template(rf, ctx) { if (rf
|
|
|
6957
6666
|
function InfoComponent_div_1_ion_col_6_p_divider_12_Template(rf, ctx) { if (rf & 1) {
|
|
6958
6667
|
i0.ɵɵelement(0, "p-divider", 18);
|
|
6959
6668
|
} }
|
|
6960
|
-
const _c0$
|
|
6669
|
+
const _c0$G = a1 => ["far", a1];
|
|
6961
6670
|
function InfoComponent_div_1_ion_col_6_Template(rf, ctx) { if (rf & 1) {
|
|
6962
6671
|
i0.ɵɵelementStart(0, "ion-col", 7)(1, "div", 8)(2, "div")(3, "p", 9);
|
|
6963
6672
|
i0.ɵɵtext(4);
|
|
@@ -6981,7 +6690,7 @@ function InfoComponent_div_1_ion_col_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
6981
6690
|
i0.ɵɵadvance(2);
|
|
6982
6691
|
i0.ɵɵproperty("innerHTML", trend_r4.subHeader, i0.ɵɵsanitizeHtml);
|
|
6983
6692
|
i0.ɵɵadvance(3);
|
|
6984
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(5, _c0$
|
|
6693
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(5, _c0$G, trend_r4.image));
|
|
6985
6694
|
i0.ɵɵadvance(2);
|
|
6986
6695
|
i0.ɵɵproperty("ngForOf", trend_r4.links);
|
|
6987
6696
|
i0.ɵɵadvance(1);
|
|
@@ -7141,7 +6850,7 @@ function Landing2Component_div_10_Template(rf, ctx) { if (rf & 1) {
|
|
|
7141
6850
|
i0.ɵɵlistener("onLinkClick", function Landing2Component_div_10_Template_app_info_onLinkClick_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r5.processLink($event)); });
|
|
7142
6851
|
i0.ɵɵelementEnd()();
|
|
7143
6852
|
} }
|
|
7144
|
-
const _c0$
|
|
6853
|
+
const _c0$F = () => ["fas", "user-tie"];
|
|
7145
6854
|
function Landing2Component_div_13_Template(rf, ctx) { if (rf & 1) {
|
|
7146
6855
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
7147
6856
|
i0.ɵɵelementStart(0, "div", 34)(1, "ion-card", 13);
|
|
@@ -7162,9 +6871,9 @@ function Landing2Component_div_13_Template(rf, ctx) { if (rf & 1) {
|
|
|
7162
6871
|
i0.ɵɵadvance(5);
|
|
7163
6872
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 2, "KS WORKS"));
|
|
7164
6873
|
i0.ɵɵadvance(6);
|
|
7165
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c0$
|
|
6874
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c0$F));
|
|
7166
6875
|
} }
|
|
7167
|
-
const _c1$
|
|
6876
|
+
const _c1$x = () => ["fas", "comments"];
|
|
7168
6877
|
function Landing2Component_div_81_Template(rf, ctx) { if (rf & 1) {
|
|
7169
6878
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
7170
6879
|
i0.ɵɵelementStart(0, "div", 19)(1, "ion-card", 13);
|
|
@@ -7185,17 +6894,16 @@ function Landing2Component_div_81_Template(rf, ctx) { if (rf & 1) {
|
|
|
7185
6894
|
i0.ɵɵadvance(5);
|
|
7186
6895
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 2, "MESSAGING"));
|
|
7187
6896
|
i0.ɵɵadvance(6);
|
|
7188
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c1$
|
|
6897
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c1$x));
|
|
7189
6898
|
} }
|
|
7190
6899
|
const _c2$p = () => ["fas", "handshake-simple"];
|
|
7191
6900
|
const _c3$k = () => ["fas", "building-columns"];
|
|
7192
6901
|
const _c4$j = () => ["fas", "chart-column"];
|
|
7193
6902
|
const _c5$d = () => ["fas", "user-shield"];
|
|
7194
6903
|
class Landing2Component {
|
|
7195
|
-
constructor(util, nav
|
|
6904
|
+
constructor(util, nav) {
|
|
7196
6905
|
this.util = util;
|
|
7197
6906
|
this.nav = nav;
|
|
7198
|
-
this.cs = cs;
|
|
7199
6907
|
this.appVersion = LibConstants.appVersion;
|
|
7200
6908
|
}
|
|
7201
6909
|
ngOnInit() {
|
|
@@ -7224,9 +6932,9 @@ class Landing2Component {
|
|
|
7224
6932
|
}
|
|
7225
6933
|
}
|
|
7226
6934
|
openChatbot() {
|
|
7227
|
-
|
|
6935
|
+
// Chatbot is now handled by ChatbotLexComponent in app shell
|
|
7228
6936
|
}
|
|
7229
|
-
static { this.ɵfac = function Landing2Component_Factory(t) { return new (t || Landing2Component)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.NavController)
|
|
6937
|
+
static { this.ɵfac = function Landing2Component_Factory(t) { return new (t || Landing2Component)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.NavController)); }; }
|
|
7230
6938
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Landing2Component, selectors: [["app-landing2"]], decls: 82, vars: 36, consts: [[3, "showError", "showHelp"], [1, "app-body"], [1, "app-wrapper"], ["id", "home", 1, "app-header"], [1, "app-topbar"], [3, "src", "alt"], [1, "app-title"], ["id", "app-menu", 4, "ngIf"], ["id", "news", "class", "app-news ion-text-center", 4, "ngIf"], ["id", "features", 1, "app-features"], [1, "grid"], ["class", "col-12 md:col-6 lg:col-2 lg:col-offset-1", 4, "ngIf"], [3, "ngClass"], ["button", "true", 1, "full-height", "app-box", 3, "click"], [1, "ion-text-center", "ion-padding"], ["color", "dark"], [1, "feature-box"], [1, "ion-text-center"], [2, "color", "#4472c4", "font-size", "50px", 3, "icon"], [1, "col-12", "md:col-6", "lg:col-2"], [2, "color", "#70ad47", "font-size", "50px", 3, "icon"], [2, "color", "#ed7d31", "font-size", "50px", 3, "icon"], [2, "color", "#ffc000", "font-size", "50px", 3, "icon"], ["class", "col-12 md:col-6 lg:col-2", 4, "ngIf"], ["id", "app-menu"], ["href", "https://mdes.ms.gov/", "target", "_blank"], ["href", "https://mdes.ms.gov/unemployment-faqs/", "target", "_blank"], ["href", "https://mdes.ms.gov/unemployment-claims/covid19/", "target", "_blank"], ["href", "http://www.maine.gov/portal/government/state-agencies.php", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/portal/online_services/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/portal/help/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/search/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget", "state_search"], ["id", "news", 1, "app-news", "ion-text-center"], ["display", "slider", "type", "ANNC", 3, "onLinkClick"], [1, "col-12", "md:col-6", "lg:col-2", "lg:col-offset-1"], [2, "color", "#22584d", "font-size", "50px", 3, "icon"]], template: function Landing2Component_Template(rf, ctx) { if (rf & 1) {
|
|
7231
6939
|
i0.ɵɵelementStart(0, "ion-content")(1, "app-content", 0)(2, "div", 1)(3, "div", 2)(4, "div", 3)(5, "div", 4);
|
|
7232
6940
|
i0.ɵɵelement(6, "img", 5)(7, "span", 6);
|
|
@@ -7340,8 +7048,8 @@ class Landing2Component {
|
|
|
7340
7048
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Landing2Component, [{
|
|
7341
7049
|
type: Component,
|
|
7342
7050
|
args: [{ selector: 'app-landing2', template: "<ion-content>\r\n <app-content [showError]=\"false\" [showHelp]=\"true\">\r\n <div class=\"app-body\">\r\n <div class=\"app-wrapper\">\r\n <div id=\"home\" class=\"app-header\">\r\n <div class=\"app-topbar\">\r\n <img src=\"assets/icon/ReEmploy{{util.getState()}}.svg\" alt=\"ReEmploy{{util.getState()}} Logo\">\r\n <span class=\"app-title\"></span>\r\n <ul id=\"app-menu\" *ngIf=\"util.isState('ms')\">\r\n <li><a href=\"https://mdes.ms.gov/\" target=\"_blank\">MDES</a></li>\r\n <li><a href=\"https://mdes.ms.gov/unemployment-faqs/\" target=\"_blank\">FAQ</a></li>\r\n <li><a href=\"https://mdes.ms.gov/unemployment-claims/covid19/\" target=\"_blank\">Covid-19</a></li>\r\n </ul>\r\n <ul id=\"app-menu\" *ngIf=\"util.isState('me')\">\r\n <li><a href=\"http://www.maine.gov/portal/government/state-agencies.php\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Agencies</a></li>\r\n <li><a href=\"http://www.maine.gov/portal/online_services/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Online Services</a></li>\r\n <li><a href=\"http://www.maine.gov/portal/help/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Help</a></li>\r\n <li><a href=\"http://www.maine.gov/search/\" class=\"ui-link ui-widget state_search\" rel=\"noreferrer noopener\" target=\"_blank\">Search Maine.gov</a></li>\r\n </ul>\r\n <!--todo: add KS-->\r\n </div>\r\n </div>\r\n\r\n <div id=\"news\" class=\"app-news ion-text-center\" *ngIf=\"util.isState('ms')\">\r\n <app-info display=\"slider\" type=\"ANNC\" (onLinkClick)=\"processLink($event)\"></app-info>\r\n </div>\r\n\r\n <div id=\"features\" class=\"app-features\">\r\n <div class=\"grid\">\r\n <div class=\"col-12 md:col-6 lg:col-2 lg:col-offset-1\" *ngIf=\"util.isState('ms')\">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"openMsWorksApp()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'KS WORKS' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'user-tie']\" style=\"color:#4472c4; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <p>Workforce and Employment Services</p>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n <div [ngClass]=\"util.isState('me') ? 'col-12 md:col-6 lg:col-2 lg:col-offset-1' : 'col-12 md:col-6 lg:col-2' \">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"openBenApp()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'BENEFITS' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'handshake-simple']\" style=\"color:#4472c4; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <p>Unemployment Insurance Claims and Payments</p>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n <div class=\"col-12 md:col-6 lg:col-2\">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"openTaxApp()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'TAX' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'building-columns']\" style=\"color:#70ad47; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <p>Unemployment Insurance Tax\r\n </p>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n <div class=\"col-12 md:col-6 lg:col-2 \">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"openCognosApp()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'EXECUTIVE' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'chart-column']\" style=\"color:#ed7d31; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <p>{{'guide.landing.executive.message' | translate}}</p>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n <div class=\"col-12 md:col-6 lg:col-2\">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"gotToLogin()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'ADMINISTRATION' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'user-shield']\" style=\"color:#ffc000; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <ul>\r\n <li><p>Claimant and Employer Password Reset</p></li>\r\n <li><p>{{'KDOL Staff Roles and Credentials' | translate}}</p></li>\r\n </ul>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n <div class=\"col-12 md:col-6 lg:col-2\" *ngIf=\"util.isState('me')\">\r\n <ion-card button=\"true\" class=\"full-height app-box\" (click)=\"gotToLogin()\">\r\n <ion-card-header class=\"ion-text-center ion-padding\">\r\n <ion-card-title>\r\n <ion-label color=\"dark\">{{'MESSAGING' | translate}}</ion-label>\r\n </ion-card-title>\r\n </ion-card-header>\r\n <ion-card-content>\r\n <br />\r\n <div class=\"feature-box\">\r\n <div class=\"ion-text-center\">\r\n <fa-icon [icon]=\"['fas', 'comments']\" style=\"color:#22584d; font-size: 50px;\"></fa-icon>\r\n </div>\r\n <div>\r\n <ul>\r\n <li>Constituent Messaging Portal (CMP)</li>\r\n </ul>\r\n </div>\r\n </div>\r\n </ion-card-content>\r\n </ion-card>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </app-content>\r\n</ion-content>", styles: ["[ion-fixed]{min-height:calc(100% - 170px)}ion-card-content{padding:0 10px}.app-body{padding:0}.app-body .app-wrapper .app-header{background:var(--ion-color-primary);background-size:cover;height:60px;position:relative}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 150px;background:var(--ion-color-primary);position:fixed;z-index:100;width:100%;box-shadow:0 2px 6px #0000003d}.app-body .app-wrapper .app-header .app-topbar:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-header .app-topbar img{height:30px;vertical-align:middle}.app-body .app-wrapper .app-header .app-topbar .app-title{color:#fff;font-size:24px;vertical-align:middle;margin-left:24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:none;color:#fff;font-size:24px}.app-body .app-wrapper .app-header .app-topbar ul{list-style:none;float:right;margin:6px 0 0}.app-body .app-wrapper .app-header .app-topbar ul li{display:inline-block;margin-left:36px}.app-body .app-wrapper .app-header .app-topbar ul li a{color:#dadada;transition:color .2s}.app-body .app-wrapper .app-header .app-topbar ul li a:hover{color:#ffb900}.app-body .app-wrapper .app-header .app-topbar ul li:first-child{margin-left:0}.app-body .app-wrapper .app-header .app-header-content{padding:85px 0 0 150px}.app-body .app-wrapper .app-header .app-header-content h1{font-size:28px;font-weight:700;color:#fff;margin:0}.app-body .app-wrapper .app-header .app-header-content p{font-size:17px;color:#fff;margin:16px 0 32px;text-align:center}.app-body .app-wrapper .app-features{padding:10px}.app-body .app-wrapper .app-features .feature-box{padding:0 10px 0 24px;position:relative;height:100%}.app-body .app-wrapper .app-features .feature-box:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-features .feature-box img{width:60px;text-align:center}.app-body .app-wrapper .app-features .feature-box>div h3{color:var(--ion-color-primary);margin:0 0 8px;text-align:center}.app-body .app-wrapper .app-features .feature-box>div p{margin:0;text-align:justify}.app-body .app-wrapper .app-news{background-color:var(--ion-color-light-grey);padding:24px 100px;text-align:center}.app-body .app-wrapper .app-news h3{font-size:28px;color:var(--ion-color-primary);font-weight:400;margin:0}.app-body .app-wrapper .app-news p{font-size:17px;color:#000;margin:5px 225px}.app-body .app-wrapper .app-news a{font-size:17px;font-weight:700;color:var(--ion-color-primary);margin:5px 225px}.app-body .app-wrapper .app-services{background-color:#fff;padding:12px 200px}.app-body .app-wrapper .app-services .services-box{box-shadow:0 2px 16px #00000014;background-color:#fff;border:1px solid rgba(218,218,218,.5);height:100%}.app-body .app-wrapper .app-services .services-box .services-box-header{padding:12px;background-color:var(--ion-color-light);text-align:center}.app-body .app-wrapper .app-services .services-box .services-box-header h3{font-size:21px;color:var(--ion-color-primary);margin:0 0 4px}.app-body .app-wrapper .app-services .services-box .services-box-header span{font-weight:700}.app-body .app-wrapper .app-services .services-box .services-box-content{padding:32px;position:relative;min-height:300px}.app-body .app-wrapper .app-services .services-box .services-box-content ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-services .services-box .services-box-content ul li{padding-top:8px;padding-bottom:8px;font-size:16px}.app-body .app-wrapper .app-services .services-box .services-box-content ul li i{margin-right:8px}.app-body .app-wrapper .app-services .services-box .services-box-content button{width:100px;position:absolute;bottom:32px;left:50%;margin-left:-50px}.app-body .app-wrapper .app-multimedia{background-color:#2e353a;padding:48px 24px;text-align:center}.app-body .app-wrapper .app-multimedia h3{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body .app-wrapper .app-multimedia p{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body .app-wrapper .app-multimedia .video-container iframe{width:560px;height:315px}.app-body .app-wrapper .app-footer{background-color:#1e1f20;padding:42px 150px;color:#c8c8c8}.app-body .app-wrapper .app-footer a{color:#c8c8c8;transition:color .2s}.app-body .app-wrapper .app-footer a:hover{color:#fff}.app-body .app-wrapper .app-footer img{height:30px}.app-body .app-wrapper .app-footer h4{margin:0 0 12px;font-size:16px}.app-body .app-wrapper .app-footer ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-footer ul li{padding:4px 0}.app-body .app-wrapper .app-footer i{font-size:24px;margin-right:8px}@media screen and (max-width: 576px){.app-body .app-wrapper .app-header{height:auto}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:block;float:right}.app-body .app-wrapper .app-header .app-topbar ul{display:none;animation-duration:.2s;position:fixed;margin:0;padding:16px 24px;top:61px;left:0;width:100%;z-index:100;background-color:#3a3e45;box-shadow:0 2px 10px #00000029}.app-body .app-wrapper .app-header .app-topbar ul li{display:block;padding:8px 0;margin:0;font-size:16px}.app-body .app-wrapper .app-header .app-topbar ul.app-menu-active{display:block}.app-body .app-wrapper .app-header .app-header-content{padding:108px 24px;text-align:center}.app-body .app-wrapper .app-features{padding:20px 24px}.app-body .app-wrapper .app-services{padding:70px 24px}.app-body .app-wrapper .app-news{padding:0}.app-body .app-wrapper .app-multimedia .video-container iframe{width:auto;height:auto}.app-body .app-wrapper .app-footer{text-align:center;padding:24px 0}.app-body .app-wrapper .app-footer h4{margin-top:12px}.app-body.app-body-block-scroll{overflow:hidden}.app-body .app-wrapper .app-news{padding:68px 12px 12px}.app-body .app-wrapper .app-news p,.app-body .app-wrapper .app-news a{margin:5px}}@media screen and (max-width: 768px){.app-body .app-wrapper .app-news{padding:24px 0}.app-body .app-wrapper .app-news p,.app-body .app-wrapper .app-news a{margin:20px}.app-body .app-wrapper .app-news{padding:68px 12px 12px}}\n"] }]
|
|
7343
|
-
}], () => [{ type: UtilService }, { type: i1$3.NavController }
|
|
7344
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(Landing2Component, { className: "Landing2Component", filePath: "lib\\pages\\common\\landing2\\landing2.component.ts", lineNumber:
|
|
7051
|
+
}], () => [{ type: UtilService }, { type: i1$3.NavController }], null); })();
|
|
7052
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(Landing2Component, { className: "Landing2Component", filePath: "lib\\pages\\common\\landing2\\landing2.component.ts", lineNumber: 11 }); })();
|
|
7345
7053
|
|
|
7346
7054
|
function CardComponent_ion_card_header_1_Template(rf, ctx) { if (rf & 1) {
|
|
7347
7055
|
i0.ɵɵelementStart(0, "ion-card-header")(1, "ion-card-title")(2, "ion-label", 1);
|
|
@@ -7354,7 +7062,7 @@ function CardComponent_ion_card_header_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
7354
7062
|
i0.ɵɵadvance(3);
|
|
7355
7063
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 3, ctx_r0.title));
|
|
7356
7064
|
} }
|
|
7357
|
-
const _c0$
|
|
7065
|
+
const _c0$E = ["*"];
|
|
7358
7066
|
class CardComponent {
|
|
7359
7067
|
constructor() {
|
|
7360
7068
|
this.class = 'app-box';
|
|
@@ -7363,7 +7071,7 @@ class CardComponent {
|
|
|
7363
7071
|
ngOnInit() {
|
|
7364
7072
|
}
|
|
7365
7073
|
static { this.ɵfac = function CardComponent_Factory(t) { return new (t || CardComponent)(); }; }
|
|
7366
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CardComponent, selectors: [["app-card"]], inputs: { title: "title", class: "class", headerClass: "headerClass" }, ngContentSelectors: _c0$
|
|
7074
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CardComponent, selectors: [["app-card"]], inputs: { title: "title", class: "class", headerClass: "headerClass" }, ngContentSelectors: _c0$E, decls: 6, vars: 3, consts: [[3, "class", 4, "ngIf"], ["color", "dark"]], template: function CardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
7367
7075
|
i0.ɵɵprojectionDef();
|
|
7368
7076
|
i0.ɵɵelementStart(0, "ion-card");
|
|
7369
7077
|
i0.ɵɵtemplate(1, CardComponent_ion_card_header_1_Template, 5, 5, "ion-card-header", 0);
|
|
@@ -7544,8 +7252,8 @@ class ErrorComponent {
|
|
|
7544
7252
|
}] }); })();
|
|
7545
7253
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ErrorComponent, { className: "ErrorComponent", filePath: "lib\\components\\error\\error.component.ts", lineNumber: 11 }); })();
|
|
7546
7254
|
|
|
7547
|
-
const _c0$
|
|
7548
|
-
const _c1$
|
|
7255
|
+
const _c0$D = ["loginRef"];
|
|
7256
|
+
const _c1$w = ["stepper"];
|
|
7549
7257
|
const _c2$o = ["loginFormDirective"];
|
|
7550
7258
|
const _c3$j = ["loginTypeFormDirective"];
|
|
7551
7259
|
function LoginComponent_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -7891,8 +7599,8 @@ class LoginComponent extends BasePage {
|
|
|
7891
7599
|
}
|
|
7892
7600
|
static { this.ɵfac = function LoginComponent_Factory(t) { return new (t || LoginComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i4.Router), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.PopoverController), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(CaptchaService)); }; }
|
|
7893
7601
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LoginComponent, selectors: [["app-login"]], viewQuery: function LoginComponent_Query(rf, ctx) { if (rf & 1) {
|
|
7894
|
-
i0.ɵɵviewQuery(_c0$
|
|
7895
|
-
i0.ɵɵviewQuery(_c1$
|
|
7602
|
+
i0.ɵɵviewQuery(_c0$D, 7);
|
|
7603
|
+
i0.ɵɵviewQuery(_c1$w, 5);
|
|
7896
7604
|
i0.ɵɵviewQuery(_c2$o, 5);
|
|
7897
7605
|
i0.ɵɵviewQuery(_c3$j, 5);
|
|
7898
7606
|
} if (rf & 2) {
|
|
@@ -8398,7 +8106,7 @@ function UserSearchComponent_div_44_ng_template_4_Template(rf, ctx) { if (rf & 1
|
|
|
8398
8106
|
i0.ɵɵadvance(2);
|
|
8399
8107
|
i0.ɵɵtextInterpolate(claimant_r9.userId);
|
|
8400
8108
|
} }
|
|
8401
|
-
const _c0$
|
|
8109
|
+
const _c0$C = () => [5, 15, 30];
|
|
8402
8110
|
function UserSearchComponent_div_44_Template(rf, ctx) { if (rf & 1) {
|
|
8403
8111
|
i0.ɵɵelementStart(0, "div")(1, "p-table", 19, 20);
|
|
8404
8112
|
i0.ɵɵtemplate(3, UserSearchComponent_div_44_ng_template_3_Template, 14, 0, "ng-template", 21)(4, UserSearchComponent_div_44_ng_template_4_Template, 13, 4, "ng-template", 22);
|
|
@@ -8406,7 +8114,7 @@ function UserSearchComponent_div_44_Template(rf, ctx) { if (rf & 1) {
|
|
|
8406
8114
|
} if (rf & 2) {
|
|
8407
8115
|
const ctx_r5 = i0.ɵɵnextContext();
|
|
8408
8116
|
i0.ɵɵadvance(1);
|
|
8409
|
-
i0.ɵɵproperty("value", ctx_r5.results)("rowHover", true)("rows", 5)("showCurrentPageReport", true)("rowsPerPageOptions", i0.ɵɵpureFunction0(7, _c0$
|
|
8117
|
+
i0.ɵɵproperty("value", ctx_r5.results)("rowHover", true)("rows", 5)("showCurrentPageReport", true)("rowsPerPageOptions", i0.ɵɵpureFunction0(7, _c0$C))("paginator", true)("filterDelay", 0);
|
|
8410
8118
|
} }
|
|
8411
8119
|
class UserSearchComponent extends BasePage {
|
|
8412
8120
|
constructor(fb, cs, util, nav, popup) {
|
|
@@ -8990,8 +8698,8 @@ class MenuComponent {
|
|
|
8990
8698
|
}], () => [{ type: i1$3.NavController }, { type: i1$3.PopoverController }, { type: LoginService }, { type: NotificationService }, { type: i4.Router }, { type: i1$3.MenuController }, { type: UtilService }, { type: i4.ActivatedRoute }, { type: i6$1.TranslateService }], null); })();
|
|
8991
8699
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MenuComponent, { className: "MenuComponent", filePath: "lib\\components\\menu\\menu.component.ts", lineNumber: 19 }); })();
|
|
8992
8700
|
|
|
8993
|
-
const _c0$
|
|
8994
|
-
const _c1$
|
|
8701
|
+
const _c0$B = () => ({ width: "45vw" });
|
|
8702
|
+
const _c1$v = () => ({ "1200px": "660px", "992px": "660px", "768px": "660px", "576px": "100vw" });
|
|
8995
8703
|
class DisclosureComponent {
|
|
8996
8704
|
constructor(storage) {
|
|
8997
8705
|
this.storage = storage;
|
|
@@ -9027,8 +8735,8 @@ class DisclosureComponent {
|
|
|
9027
8735
|
i0.ɵɵtext(16, " Ok ");
|
|
9028
8736
|
i0.ɵɵelementEnd()()()();
|
|
9029
8737
|
} if (rf & 2) {
|
|
9030
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(17, _c0$
|
|
9031
|
-
i0.ɵɵproperty("visible", ctx.showDisclosure)("modal", true)("breakpoints", i0.ɵɵpureFunction0(18, _c1$
|
|
8738
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(17, _c0$B));
|
|
8739
|
+
i0.ɵɵproperty("visible", ctx.showDisclosure)("modal", true)("breakpoints", i0.ɵɵpureFunction0(18, _c1$v))("baseZIndex", 5000)("draggable", false)("resizable", false);
|
|
9032
8740
|
i0.ɵɵadvance(2);
|
|
9033
8741
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 11, "DISCLOSURE"));
|
|
9034
8742
|
i0.ɵɵadvance(4);
|
|
@@ -9965,7 +9673,7 @@ class MaskEmailPipe {
|
|
|
9965
9673
|
}]
|
|
9966
9674
|
}], () => [{ type: UtilService }], null); })();
|
|
9967
9675
|
|
|
9968
|
-
const _c0$
|
|
9676
|
+
const _c0$A = ["otpField"];
|
|
9969
9677
|
function MfaComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
9970
9678
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
9971
9679
|
i0.ɵɵelementStart(0, "div", 6)(1, "div", 7)(2, "div", 8)(3, "label", 9);
|
|
@@ -10057,12 +9765,12 @@ function MfaComponent_div_5_label_13_Template(rf, ctx) { if (rf & 1) {
|
|
|
10057
9765
|
i0.ɵɵadvance(1);
|
|
10058
9766
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "mfa.enter.code.received"));
|
|
10059
9767
|
} }
|
|
10060
|
-
const _c1$
|
|
9768
|
+
const _c1$u = (a0, a1, a2) => ({ required: a0, min: a1, max: a2 });
|
|
10061
9769
|
function MfaComponent_div_5_app_error_17_Template(rf, ctx) { if (rf & 1) {
|
|
10062
9770
|
i0.ɵɵelement(0, "app-error", 20);
|
|
10063
9771
|
} if (rf & 2) {
|
|
10064
9772
|
const ctx_r15 = i0.ɵɵnextContext(2);
|
|
10065
|
-
i0.ɵɵproperty("field", ctx_r15.otp)("form", ctx_r15.otpForm)("errDef", i0.ɵɵpureFunction3(3, _c1$
|
|
9773
|
+
i0.ɵɵproperty("field", ctx_r15.otp)("form", ctx_r15.otpForm)("errDef", i0.ɵɵpureFunction3(3, _c1$u, ctx_r15.AccessRequired, ctx_r15.AccessVerify, ctx_r15.AccessVerify));
|
|
10066
9774
|
} }
|
|
10067
9775
|
function MfaComponent_div_5_ion_item_18_Template(rf, ctx) { if (rf & 1) {
|
|
10068
9776
|
i0.ɵɵelementStart(0, "ion-item", 21);
|
|
@@ -10479,7 +10187,7 @@ class MfaComponent {
|
|
|
10479
10187
|
}
|
|
10480
10188
|
static { this.ɵfac = function MfaComponent_Factory(t) { return new (t || MfaComponent)(i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(CaptchaService), i0.ɵɵdirectiveInject(SecurityService), i0.ɵɵdirectiveInject(i4.Router), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
10481
10189
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MfaComponent, selectors: [["app-mfa"]], viewQuery: function MfaComponent_Query(rf, ctx) { if (rf & 1) {
|
|
10482
|
-
i0.ɵɵviewQuery(_c0$
|
|
10190
|
+
i0.ɵɵviewQuery(_c0$A, 5);
|
|
10483
10191
|
} if (rf & 2) {
|
|
10484
10192
|
let _t;
|
|
10485
10193
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.otpField = _t.first);
|
|
@@ -10664,7 +10372,7 @@ class AppRegex {
|
|
|
10664
10372
|
static { this.ROUTING_NUMBER_REGEX = /^[0-4]{1}[0-9]{8}$/; }
|
|
10665
10373
|
}
|
|
10666
10374
|
|
|
10667
|
-
const _c0$
|
|
10375
|
+
const _c0$z = ["authCodeFormDirective"];
|
|
10668
10376
|
function EmailUpdateComponent_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
10669
10377
|
i0.ɵɵelementStart(0, "span");
|
|
10670
10378
|
i0.ɵɵtext(1);
|
|
@@ -10731,7 +10439,7 @@ function EmailUpdateComponent_div_7_p_21_Template(rf, ctx) { if (rf & 1) {
|
|
|
10731
10439
|
i0.ɵɵadvance(2);
|
|
10732
10440
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, "email.update.email"));
|
|
10733
10441
|
} }
|
|
10734
|
-
const _c1$
|
|
10442
|
+
const _c1$t = a0 => ({ required: a0 });
|
|
10735
10443
|
function EmailUpdateComponent_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
10736
10444
|
i0.ɵɵelementStart(0, "div", 10)(1, "p");
|
|
10737
10445
|
i0.ɵɵtext(2);
|
|
@@ -10768,7 +10476,7 @@ function EmailUpdateComponent_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
|
10768
10476
|
i0.ɵɵadvance(3);
|
|
10769
10477
|
i0.ɵɵproperty("id", "authCode");
|
|
10770
10478
|
i0.ɵɵadvance(1);
|
|
10771
|
-
i0.ɵɵproperty("field", ctx_r4.authCode)("form", _r0)("errDef", i0.ɵɵpureFunction1(20, _c1$
|
|
10479
|
+
i0.ɵɵproperty("field", ctx_r4.authCode)("form", _r0)("errDef", i0.ɵɵpureFunction1(20, _c1$t, ctx_r4.codeRequired));
|
|
10772
10480
|
i0.ɵɵadvance(1);
|
|
10773
10481
|
i0.ɵɵproperty("ngIf", ctx_r4.errorDtls);
|
|
10774
10482
|
i0.ɵɵadvance(1);
|
|
@@ -10974,7 +10682,7 @@ class EmailUpdateComponent {
|
|
|
10974
10682
|
}
|
|
10975
10683
|
static { this.ɵfac = function EmailUpdateComponent_Factory(t) { return new (t || EmailUpdateComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(WeeklyCertServiceV2), i0.ɵɵdirectiveInject(OvpService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
10976
10684
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EmailUpdateComponent, selectors: [["app-email-update"]], viewQuery: function EmailUpdateComponent_Query(rf, ctx) { if (rf & 1) {
|
|
10977
|
-
i0.ɵɵviewQuery(_c0$
|
|
10685
|
+
i0.ɵɵviewQuery(_c0$z, 5);
|
|
10978
10686
|
} if (rf & 2) {
|
|
10979
10687
|
let _t;
|
|
10980
10688
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.authCodeFormDirective = _t.first);
|
|
@@ -11021,8 +10729,8 @@ class EmailUpdateComponent {
|
|
|
11021
10729
|
}] }); })();
|
|
11022
10730
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(EmailUpdateComponent, { className: "EmailUpdateComponent", filePath: "lib\\components\\email-update\\email-update.component.ts", lineNumber: 18 }); })();
|
|
11023
10731
|
|
|
11024
|
-
const _c0$
|
|
11025
|
-
const _c1$
|
|
10732
|
+
const _c0$y = () => ({ width: "50vw" });
|
|
10733
|
+
const _c1$s = () => ({ "960px": "40vw", "640px": "100vw" });
|
|
11026
10734
|
class MfaPopupComponent {
|
|
11027
10735
|
constructor() {
|
|
11028
10736
|
this.clear = new EventEmitter();
|
|
@@ -11048,8 +10756,8 @@ class MfaPopupComponent {
|
|
|
11048
10756
|
i0.ɵɵlistener("success", function MfaPopupComponent_Template_app_mfa_success_1_listener($event) { return ctx.loginSuccess($event); })("clear", function MfaPopupComponent_Template_app_mfa_clear_1_listener($event) { return ctx.close($event); });
|
|
11049
10757
|
i0.ɵɵelementEnd()();
|
|
11050
10758
|
} if (rf & 2) {
|
|
11051
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(9, _c0$
|
|
11052
|
-
i0.ɵɵproperty("visible", ctx.display)("modal", true)("breakpoints", i0.ɵɵpureFunction0(10, _c1$
|
|
10759
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(9, _c0$y));
|
|
10760
|
+
i0.ɵɵproperty("visible", ctx.display)("modal", true)("breakpoints", i0.ɵɵpureFunction0(10, _c1$s));
|
|
11053
10761
|
i0.ɵɵadvance(1);
|
|
11054
10762
|
i0.ɵɵproperty("display", ctx.display)("user", ctx.user)("returningUser", ctx.returningUser)("heading", ctx.heading);
|
|
11055
10763
|
} }, dependencies: [i7$1.Dialog, MfaComponent] }); }
|
|
@@ -11094,7 +10802,7 @@ function Mfa2Component_a_20_Template(rf, ctx) { if (rf & 1) {
|
|
|
11094
10802
|
i0.ɵɵadvance(1);
|
|
11095
10803
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(2, 1, "mfa.change.phone.number"), " ");
|
|
11096
10804
|
} }
|
|
11097
|
-
const _c0$
|
|
10805
|
+
const _c0$x = () => ({ required: "Authcode is required." });
|
|
11098
10806
|
class Mfa2Component {
|
|
11099
10807
|
constructor(ls, fb, util, nav, document, router, cs, ur) {
|
|
11100
10808
|
this.ls = ls;
|
|
@@ -11301,7 +11009,7 @@ class Mfa2Component {
|
|
|
11301
11009
|
i0.ɵɵadvance(4);
|
|
11302
11010
|
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(9, 16, "mfa.enter.validation.code"), ": ");
|
|
11303
11011
|
i0.ɵɵadvance(3);
|
|
11304
|
-
i0.ɵɵproperty("field", ctx.vCode)("form", ctx.vCodeForm)("errDef", i0.ɵɵpureFunction0(24, _c0$
|
|
11012
|
+
i0.ɵɵproperty("field", ctx.vCode)("form", ctx.vCodeForm)("errDef", i0.ɵɵpureFunction0(24, _c0$x));
|
|
11305
11013
|
i0.ɵɵadvance(1);
|
|
11306
11014
|
i0.ɵɵproperty("ngIf", ctx.incorrectGuess);
|
|
11307
11015
|
i0.ɵɵadvance(1);
|
|
@@ -11343,8 +11051,8 @@ class Mfa2Component {
|
|
|
11343
11051
|
}] }); })();
|
|
11344
11052
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(Mfa2Component, { className: "Mfa2Component", filePath: "lib\\components\\mfa2\\mfa2.component.ts", lineNumber: 18 }); })();
|
|
11345
11053
|
|
|
11346
|
-
const _c0$
|
|
11347
|
-
const _c1$
|
|
11054
|
+
const _c0$w = ["loginFormDirective"];
|
|
11055
|
+
const _c1$r = ["resetFormDirective"];
|
|
11348
11056
|
function UserLoginComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
11349
11057
|
i0.ɵɵelementStart(0, "div")(1, "ul")(2, "li");
|
|
11350
11058
|
i0.ɵɵtext(3, "Employers may call 601-493-9427");
|
|
@@ -11554,6 +11262,7 @@ class UserLoginComponent {
|
|
|
11554
11262
|
this.isLexisNexisPopupEnabled = false;
|
|
11555
11263
|
this.mfaLoginHeader = "";
|
|
11556
11264
|
this.isUSPSExpired = false;
|
|
11265
|
+
this.employerLogin = false;
|
|
11557
11266
|
this.isPhoneMfaRequiredForAccountActivation = true;
|
|
11558
11267
|
this.success = new EventEmitter();
|
|
11559
11268
|
this.error = new EventEmitter();
|
|
@@ -11608,6 +11317,11 @@ class UserLoginComponent {
|
|
|
11608
11317
|
return this.resetForm.controls['captcha'];
|
|
11609
11318
|
}
|
|
11610
11319
|
signIn() {
|
|
11320
|
+
this.employerLogin
|
|
11321
|
+
? this.signInEmployer()
|
|
11322
|
+
: this.signInCp();
|
|
11323
|
+
}
|
|
11324
|
+
signInCp() {
|
|
11611
11325
|
if (this.loginForm.invalid) {
|
|
11612
11326
|
return;
|
|
11613
11327
|
}
|
|
@@ -11665,6 +11379,37 @@ class UserLoginComponent {
|
|
|
11665
11379
|
this.util.hideLoader();
|
|
11666
11380
|
});
|
|
11667
11381
|
}
|
|
11382
|
+
async signInEmployer() {
|
|
11383
|
+
if (this.loginForm.invalid || this.isLoginInProgress) {
|
|
11384
|
+
return;
|
|
11385
|
+
}
|
|
11386
|
+
this.isLoginInProgress = true;
|
|
11387
|
+
const auth = {
|
|
11388
|
+
userId: this.username.value,
|
|
11389
|
+
password: this.password.value,
|
|
11390
|
+
language: localStorage.getItem('language'),
|
|
11391
|
+
};
|
|
11392
|
+
try {
|
|
11393
|
+
await this.util.showLoader();
|
|
11394
|
+
const userModel = await firstValueFrom(this.loginService.login(auth));
|
|
11395
|
+
userModel.language = auth.language;
|
|
11396
|
+
await this.loginService.setUser(userModel);
|
|
11397
|
+
this.userModel = userModel;
|
|
11398
|
+
this.ssn = userModel?.ssn;
|
|
11399
|
+
this.success.emit();
|
|
11400
|
+
// this.loginSuccess();
|
|
11401
|
+
}
|
|
11402
|
+
catch (err) {
|
|
11403
|
+
console.error(err);
|
|
11404
|
+
this.util.errorHandler(err);
|
|
11405
|
+
this.util.hideLoader();
|
|
11406
|
+
this.error.emit(err);
|
|
11407
|
+
}
|
|
11408
|
+
finally {
|
|
11409
|
+
this.isLoginInProgress = false;
|
|
11410
|
+
this.util.hideLoader();
|
|
11411
|
+
}
|
|
11412
|
+
}
|
|
11668
11413
|
enableLexisNexis(triggerExitAPI = true) {
|
|
11669
11414
|
this.show2FADialog = false;
|
|
11670
11415
|
if (!triggerExitAPI) {
|
|
@@ -11849,13 +11594,13 @@ class UserLoginComponent {
|
|
|
11849
11594
|
}
|
|
11850
11595
|
static { this.ɵfac = function UserLoginComponent_Factory(t) { return new (t || UserLoginComponent)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i1$3.Platform), i0.ɵɵdirectiveInject(WeeklyCertServiceV2), i0.ɵɵdirectiveInject(OvpService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i4.Router), i0.ɵɵdirectiveInject(ClaimantService), i0.ɵɵdirectiveInject(LexisNexisService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
11851
11596
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UserLoginComponent, selectors: [["app-user-login"]], viewQuery: function UserLoginComponent_Query(rf, ctx) { if (rf & 1) {
|
|
11852
|
-
i0.ɵɵviewQuery(_c0$
|
|
11853
|
-
i0.ɵɵviewQuery(_c1$
|
|
11597
|
+
i0.ɵɵviewQuery(_c0$w, 5);
|
|
11598
|
+
i0.ɵɵviewQuery(_c1$r, 5);
|
|
11854
11599
|
} if (rf & 2) {
|
|
11855
11600
|
let _t;
|
|
11856
11601
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.loginFormDirective = _t.first);
|
|
11857
11602
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.resetFormDirective = _t.first);
|
|
11858
|
-
} }, inputs: { fontSize: "fontSize", color: "color", isPhoneMfaRequiredForAccountActivation: "isPhoneMfaRequiredForAccountActivation" }, outputs: { success: "success", error: "error" }, decls: 26, vars: 35, consts: [["appendTo", "body", 3, "visible", "modal", "visibleChange"], [1, "heading"], [4, "ngIf"], [1, "ion-text-center"], ["shape", "round", "type", "submit", "color", "success", 3, "click"], ["slot", "start", "name", "close-sharp"], [3, "display", "returningUser", "verificationPreference", "ssn", "displayChange", "success", "clear", 4, "ngIf"], [3, "display", "userModel", "success", "error", "usps", 4, "ngIf"], [3, "display", "user", "returningUser", "heading", "displayChange", "success", "clear"], [3, "formGroup", 4, "ngIf"], ["appendTo", "body", "position", "top", "closeOnEscape", "false", 3, "visible", "modal", "breakpoints", "baseZIndex", "draggable", "resizable"], ["pTemplate", "footer"], [3, "email", "onClose", "onSuccess", 4, "ngIf"], [3, "display", "returningUser", "verificationPreference", "ssn", "displayChange", "success", "clear"], [3, "display", "userModel", "success", "error", "usps"], [3, "formGroup"], ["loginFormDirective", "ngForm"], [1, "p-fluid", "p-formgrid", "p-grid"], [1, "field", "ion-text-left", 2, "width", "-webkit-fill-available"], ["for", "userProfileId"], ["id", "userProfileId", "type", "text", "pInputText", "", "maxlength", "30", "minlength", "5", 3, "formControl"], [3, "field", "form", "errDef"], ["for", "userProfilePassword"], ["inputId", "userProfilePassword", 3, "formControl", "toggleMask", "feedback"], ["class", "ion-padding-start ion-padding-end ion-text-left", "style", "margin-top: -8px;", 4, "ngIf"], [1, "p-fluid"], [1, "ion-text-right"], ["color", "primary", "type", "submit", "shape", "round", "fill", "outline", 1, "white-background", 3, "click"], ["name", "power-outline", "slot", "start"], [1, "ion-padding-top"], [1, "ion-text-left"], ["tabindex", "0", "role", "button", 1, "link", 2, "font-size", "14px", 3, "click", "keydown.enter"], ["tabindex", "0", "role", "button", "type", "submit", 1, "link", 2, "font-size", "14px", 3, "click", "keydown.enter"], [1, "ion-padding-start", "ion-padding-end", "ion-text-left", 2, "margin-top", "-8px"], [3, "formControl"], ["resetFormDirective", "ngForm"], ["name", "arrow-back-outline", "slot", "start"], ["color", "primary", "type", "submit", "shape", "round", "fill", "outline", 1, "white-background", 3, "disabled", "click"], ["name", "mail-outline", "slot", "start"], ["shape", "round", "type", "submit", "fill", "outline", 3, "click"], ["shape", "round", "type", "submit", "fill", "solid", 3, "click"], [3, "email", "onClose", "onSuccess"]], template: function UserLoginComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11603
|
+
} }, inputs: { fontSize: "fontSize", color: "color", employerLogin: "employerLogin", isPhoneMfaRequiredForAccountActivation: "isPhoneMfaRequiredForAccountActivation" }, outputs: { success: "success", error: "error" }, decls: 26, vars: 35, consts: [["appendTo", "body", 3, "visible", "modal", "visibleChange"], [1, "heading"], [4, "ngIf"], [1, "ion-text-center"], ["shape", "round", "type", "submit", "color", "success", 3, "click"], ["slot", "start", "name", "close-sharp"], [3, "display", "returningUser", "verificationPreference", "ssn", "displayChange", "success", "clear", 4, "ngIf"], [3, "display", "userModel", "success", "error", "usps", 4, "ngIf"], [3, "display", "user", "returningUser", "heading", "displayChange", "success", "clear"], [3, "formGroup", 4, "ngIf"], ["appendTo", "body", "position", "top", "closeOnEscape", "false", 3, "visible", "modal", "breakpoints", "baseZIndex", "draggable", "resizable"], ["pTemplate", "footer"], [3, "email", "onClose", "onSuccess", 4, "ngIf"], [3, "display", "returningUser", "verificationPreference", "ssn", "displayChange", "success", "clear"], [3, "display", "userModel", "success", "error", "usps"], [3, "formGroup"], ["loginFormDirective", "ngForm"], [1, "p-fluid", "p-formgrid", "p-grid"], [1, "field", "ion-text-left", 2, "width", "-webkit-fill-available"], ["for", "userProfileId"], ["id", "userProfileId", "type", "text", "pInputText", "", "maxlength", "30", "minlength", "5", 3, "formControl"], [3, "field", "form", "errDef"], ["for", "userProfilePassword"], ["inputId", "userProfilePassword", 3, "formControl", "toggleMask", "feedback"], ["class", "ion-padding-start ion-padding-end ion-text-left", "style", "margin-top: -8px;", 4, "ngIf"], [1, "p-fluid"], [1, "ion-text-right"], ["color", "primary", "type", "submit", "shape", "round", "fill", "outline", 1, "white-background", 3, "click"], ["name", "power-outline", "slot", "start"], [1, "ion-padding-top"], [1, "ion-text-left"], ["tabindex", "0", "role", "button", 1, "link", 2, "font-size", "14px", 3, "click", "keydown.enter"], ["tabindex", "0", "role", "button", "type", "submit", 1, "link", 2, "font-size", "14px", 3, "click", "keydown.enter"], [1, "ion-padding-start", "ion-padding-end", "ion-text-left", 2, "margin-top", "-8px"], [3, "formControl"], ["resetFormDirective", "ngForm"], ["name", "arrow-back-outline", "slot", "start"], ["color", "primary", "type", "submit", "shape", "round", "fill", "outline", 1, "white-background", 3, "disabled", "click"], ["name", "mail-outline", "slot", "start"], ["shape", "round", "type", "submit", "fill", "outline", 3, "click"], ["shape", "round", "type", "submit", "fill", "solid", 3, "click"], [3, "email", "onClose", "onSuccess"]], template: function UserLoginComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11859
11604
|
i0.ɵɵelementStart(0, "p-dialog", 0);
|
|
11860
11605
|
i0.ɵɵlistener("visibleChange", function UserLoginComponent_Template_p_dialog_visibleChange_0_listener($event) { return ctx.displayDialog = $event; });
|
|
11861
11606
|
i0.ɵɵelementStart(1, "h4", 1);
|
|
@@ -11928,6 +11673,8 @@ class UserLoginComponent {
|
|
|
11928
11673
|
type: Input
|
|
11929
11674
|
}], color: [{
|
|
11930
11675
|
type: Input
|
|
11676
|
+
}], employerLogin: [{
|
|
11677
|
+
type: Input
|
|
11931
11678
|
}], isPhoneMfaRequiredForAccountActivation: [{
|
|
11932
11679
|
type: Input
|
|
11933
11680
|
}], success: [{
|
|
@@ -11935,10 +11682,10 @@ class UserLoginComponent {
|
|
|
11935
11682
|
}], error: [{
|
|
11936
11683
|
type: Output
|
|
11937
11684
|
}] }); })();
|
|
11938
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UserLoginComponent, { className: "UserLoginComponent", filePath: "lib\\components\\user-login\\user-login.component.ts", lineNumber:
|
|
11685
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UserLoginComponent, { className: "UserLoginComponent", filePath: "lib\\components\\user-login\\user-login.component.ts", lineNumber: 22 }); })();
|
|
11939
11686
|
|
|
11940
|
-
const _c0$
|
|
11941
|
-
const _c1$
|
|
11687
|
+
const _c0$v = ["uploadFileFormDirective"];
|
|
11688
|
+
const _c1$q = ["fileInput"];
|
|
11942
11689
|
function FileUploaderComponent_ng_template_3_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
11943
11690
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
11944
11691
|
i0.ɵɵelementStart(0, "div", 8)(1, "input", 9, 10);
|
|
@@ -12190,8 +11937,8 @@ class FileUploaderComponent {
|
|
|
12190
11937
|
}
|
|
12191
11938
|
static { this.ɵfac = function FileUploaderComponent_Factory(t) { return new (t || FileUploaderComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(DmsService), i0.ɵɵdirectiveInject(i1$3.ToastController), i0.ɵɵdirectiveInject(CaptchaService)); }; }
|
|
12192
11939
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FileUploaderComponent, selectors: [["app-file-uploader"]], viewQuery: function FileUploaderComponent_Query(rf, ctx) { if (rf & 1) {
|
|
12193
|
-
i0.ɵɵviewQuery(_c0$
|
|
12194
|
-
i0.ɵɵviewQuery(_c1$
|
|
11940
|
+
i0.ɵɵviewQuery(_c0$v, 5);
|
|
11941
|
+
i0.ɵɵviewQuery(_c1$q, 5);
|
|
12195
11942
|
} if (rf & 2) {
|
|
12196
11943
|
let _t;
|
|
12197
11944
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.uploadFileFormDirective = _t.first);
|
|
@@ -12354,8 +12101,8 @@ class TrustHtmlPipe {
|
|
|
12354
12101
|
}]
|
|
12355
12102
|
}], () => [{ type: i6.DomSanitizer }], null); })();
|
|
12356
12103
|
|
|
12357
|
-
const _c0$
|
|
12358
|
-
const _c1$
|
|
12104
|
+
const _c0$u = ["op1"];
|
|
12105
|
+
const _c1$p = ["popup"];
|
|
12359
12106
|
function OverlayInfoComponent_ng_template_2_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
12360
12107
|
i0.ɵɵelement(0, "div", 8);
|
|
12361
12108
|
i0.ɵɵpipe(1, "dynamicTranslate");
|
|
@@ -12475,8 +12222,8 @@ class OverlayInfoComponent {
|
|
|
12475
12222
|
}
|
|
12476
12223
|
static { this.ɵfac = function OverlayInfoComponent_Factory(t) { return new (t || OverlayInfoComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder)); }; }
|
|
12477
12224
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: OverlayInfoComponent, selectors: [["app-overlay-info"]], viewQuery: function OverlayInfoComponent_Query(rf, ctx) { if (rf & 1) {
|
|
12478
|
-
i0.ɵɵviewQuery(_c0$
|
|
12479
|
-
i0.ɵɵviewQuery(_c1$
|
|
12225
|
+
i0.ɵɵviewQuery(_c0$u, 5);
|
|
12226
|
+
i0.ɵɵviewQuery(_c1$p, 5);
|
|
12480
12227
|
} if (rf & 2) {
|
|
12481
12228
|
let _t;
|
|
12482
12229
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.op1 = _t.first);
|
|
@@ -12567,7 +12314,7 @@ class ClaimAppEmpResponseModel {
|
|
|
12567
12314
|
}
|
|
12568
12315
|
}
|
|
12569
12316
|
|
|
12570
|
-
const _c0$
|
|
12317
|
+
const _c0$t = () => ["far", "sack-dollar"];
|
|
12571
12318
|
function MoneyExpectComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
12572
12319
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2)(2, "div", 3)(3, "ion-row")(4, "ion-col", 4);
|
|
12573
12320
|
i0.ɵɵelement(5, "fa-icon", 5);
|
|
@@ -12598,7 +12345,7 @@ function MoneyExpectComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
12598
12345
|
} if (rf & 2) {
|
|
12599
12346
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
12600
12347
|
i0.ɵɵadvance(5);
|
|
12601
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(22, _c0$
|
|
12348
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(22, _c0$t));
|
|
12602
12349
|
i0.ɵɵadvance(3);
|
|
12603
12350
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 7, "dashboard.money-expect.max.expect"));
|
|
12604
12351
|
i0.ɵɵadvance(5);
|
|
@@ -12669,7 +12416,7 @@ function DynamicFormPanelComponent_p_dialog_1_ng_template_3_Template(rf, ctx) {
|
|
|
12669
12416
|
i0.ɵɵadvance(2);
|
|
12670
12417
|
i0.ɵɵtextInterpolate1(" ", ctx_r25.popUpYesActionLabel, " ");
|
|
12671
12418
|
} }
|
|
12672
|
-
const _c0$
|
|
12419
|
+
const _c0$s = () => ({ width: "80vw" });
|
|
12673
12420
|
function DynamicFormPanelComponent_p_dialog_1_Template(rf, ctx) { if (rf & 1) {
|
|
12674
12421
|
const _r30 = i0.ɵɵgetCurrentView();
|
|
12675
12422
|
i0.ɵɵelementStart(0, "p-dialog", 8);
|
|
@@ -12681,7 +12428,7 @@ function DynamicFormPanelComponent_p_dialog_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
12681
12428
|
i0.ɵɵelementEnd();
|
|
12682
12429
|
} if (rf & 2) {
|
|
12683
12430
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
12684
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(10, _c0$
|
|
12431
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(10, _c0$s));
|
|
12685
12432
|
i0.ɵɵproperty("header", ctx_r0.popUpHeader)("visible", ctx_r0.displayPosition)("position", ctx_r0.position)("modal", true)("baseZIndex", 5000)("draggable", false)("resizable", false);
|
|
12686
12433
|
i0.ɵɵadvance(2);
|
|
12687
12434
|
i0.ɵɵtextInterpolate1("", ctx_r0.popUpText, " ");
|
|
@@ -14286,7 +14033,7 @@ function SearchEmployerComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
|
14286
14033
|
i0.ɵɵadvance(2);
|
|
14287
14034
|
i0.ɵɵtextInterpolate2("", employer_r1.city, ", ", employer_r1.state.value, "");
|
|
14288
14035
|
} }
|
|
14289
|
-
const _c0$
|
|
14036
|
+
const _c0$r = () => ({ standalone: true });
|
|
14290
14037
|
class SearchEmployerComponent {
|
|
14291
14038
|
constructor(validationService) {
|
|
14292
14039
|
this.validationService = validationService;
|
|
@@ -14364,7 +14111,7 @@ class SearchEmployerComponent {
|
|
|
14364
14111
|
i0.ɵɵelementEnd();
|
|
14365
14112
|
} if (rf & 2) {
|
|
14366
14113
|
i0.ɵɵpropertyInterpolate("placeholder", i0.ɵɵpipeBind1(2, 6, "access.qe.cin.abtyrsituation.add.emp.placeholder"));
|
|
14367
|
-
i0.ɵɵproperty("formControl", ctx.formControl)("suggestions", i0.ɵɵpipeBind1(1, 4, ctx.employersBs))("ngModelOptions", i0.ɵɵpureFunction0(8, _c0$
|
|
14114
|
+
i0.ɵɵproperty("formControl", ctx.formControl)("suggestions", i0.ɵɵpipeBind1(1, 4, ctx.employersBs))("ngModelOptions", i0.ɵɵpureFunction0(8, _c0$r));
|
|
14368
14115
|
} }, dependencies: [i4$1.PrimeTemplate, i1$6.NgControlStatus, i1$6.FormControlDirective, i8$2.AutoComplete, i1$4.AsyncPipe, i6$1.TranslatePipe], styles: ["[_nghost-%COMP%] .p-autocomplete{display:block!important;position:relative!important}[_nghost-%COMP%] .p-autocomplete-input{width:100%}[_nghost-%COMP%] .app-text{font-size:14px}div.ng-star-inserted[_ngcontent-%COMP%]{font-size:14px}"] }); }
|
|
14369
14116
|
}
|
|
14370
14117
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SearchEmployerComponent, [{
|
|
@@ -14405,8 +14152,8 @@ function DropdownItem_span_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
14405
14152
|
function DropdownItem_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
14406
14153
|
i0.ɵɵelementContainer(0);
|
|
14407
14154
|
} }
|
|
14408
|
-
const _c0$
|
|
14409
|
-
const _c1$
|
|
14155
|
+
const _c0$q = a0 => ({ height: a0 });
|
|
14156
|
+
const _c1$o = (a1, a2, a3) => ({ "p-dropdown-item": true, "p-highlight": a1, "p-disabled": a2, "p-focus": a3 });
|
|
14410
14157
|
const _c2$k = a0 => ({ $implicit: a0 });
|
|
14411
14158
|
const _c3$f = ["container"];
|
|
14412
14159
|
const _c4$e = ["filter"];
|
|
@@ -14639,7 +14386,7 @@ function Dropdown_ng_template_10_p_scroller_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
14639
14386
|
i0.ɵɵelementEnd();
|
|
14640
14387
|
} if (rf & 2) {
|
|
14641
14388
|
const ctx_r39 = i0.ɵɵnextContext(2);
|
|
14642
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction1(8, _c0$
|
|
14389
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction1(8, _c0$q, ctx_r39.scrollHeight));
|
|
14643
14390
|
i0.ɵɵproperty("items", ctx_r39.visibleOptions())("itemSize", ctx_r39.virtualScrollItemSize || ctx_r39._itemSize)("autoSize", true)("lazy", ctx_r39.lazy)("options", ctx_r39.virtualScrollOptions);
|
|
14644
14391
|
i0.ɵɵadvance(3);
|
|
14645
14392
|
i0.ɵɵproperty("ngIf", ctx_r39.loaderTemplate);
|
|
@@ -14685,7 +14432,7 @@ function Dropdown_ng_template_10_ng_template_8_ng_template_2_ng_container_0_Temp
|
|
|
14685
14432
|
const scrollerOptions_r72 = i0.ɵɵnextContext().options;
|
|
14686
14433
|
const ctx_r79 = i0.ɵɵnextContext(2);
|
|
14687
14434
|
i0.ɵɵadvance(1);
|
|
14688
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(5, _c0$
|
|
14435
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(5, _c0$q, scrollerOptions_r72.itemSize + "px"));
|
|
14689
14436
|
i0.ɵɵattribute("id", ctx_r79.inputId ? ctx_r79.inputId + "-" + (ctx_r79.optionValue ? option_r77[ctx_r79.optionValue] : i_r78) : "optId-" + (ctx_r79.optionValue ? option_r77[ctx_r79.optionValue] : i_r78));
|
|
14690
14437
|
i0.ɵɵadvance(1);
|
|
14691
14438
|
i0.ɵɵproperty("ngIf", !ctx_r79.groupTemplate);
|
|
@@ -14744,7 +14491,7 @@ function Dropdown_ng_template_10_ng_template_8_li_3_Template(rf, ctx) { if (rf &
|
|
|
14744
14491
|
} if (rf & 2) {
|
|
14745
14492
|
const scrollerOptions_r72 = i0.ɵɵnextContext().options;
|
|
14746
14493
|
const ctx_r75 = i0.ɵɵnextContext(2);
|
|
14747
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(3, _c0$
|
|
14494
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(3, _c0$q, scrollerOptions_r72.itemSize + "px"));
|
|
14748
14495
|
i0.ɵɵadvance(1);
|
|
14749
14496
|
i0.ɵɵproperty("ngIf", !ctx_r75.emptyFilterTemplate && !ctx_r75.emptyTemplate);
|
|
14750
14497
|
i0.ɵɵadvance(1);
|
|
@@ -14778,7 +14525,7 @@ function Dropdown_ng_template_10_ng_template_8_li_4_Template(rf, ctx) { if (rf &
|
|
|
14778
14525
|
} if (rf & 2) {
|
|
14779
14526
|
const scrollerOptions_r72 = i0.ɵɵnextContext().options;
|
|
14780
14527
|
const ctx_r76 = i0.ɵɵnextContext(2);
|
|
14781
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(3, _c0$
|
|
14528
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(3, _c0$q, scrollerOptions_r72.itemSize + "px"));
|
|
14782
14529
|
i0.ɵɵadvance(1);
|
|
14783
14530
|
i0.ɵɵproperty("ngIf", !ctx_r76.emptyTemplate);
|
|
14784
14531
|
i0.ɵɵadvance(1);
|
|
@@ -14863,7 +14610,7 @@ class DropdownItem {
|
|
|
14863
14610
|
i0.ɵɵtemplate(1, DropdownItem_span_1_Template, 2, 1, "span", 1)(2, DropdownItem_ng_container_2_Template, 1, 0, "ng-container", 2);
|
|
14864
14611
|
i0.ɵɵelementEnd();
|
|
14865
14612
|
} if (rf & 2) {
|
|
14866
|
-
i0.ɵɵproperty("id", ctx.id)("ngStyle", i0.ɵɵpureFunction1(13, _c0$
|
|
14613
|
+
i0.ɵɵproperty("id", ctx.id)("ngStyle", i0.ɵɵpureFunction1(13, _c0$q, ctx.itemSize + "px"))("ngClass", i0.ɵɵpureFunction3(15, _c1$o, ctx.selected, ctx.disabled, ctx.focused));
|
|
14867
14614
|
i0.ɵɵattribute("aria-label", ctx.label)("aria-setsize", ctx.ariaSetSize)("aria-posinset", ctx.ariaPosInset)("aria-selected", ctx.selected)("data-p-focused", ctx.focused)("data-p-highlight", ctx.selected)("data-p-disabled", ctx.disabled);
|
|
14868
14615
|
i0.ɵɵadvance(1);
|
|
14869
14616
|
i0.ɵɵproperty("ngIf", !ctx.template);
|
|
@@ -16350,8 +16097,8 @@ class Dropdown {
|
|
|
16350
16097
|
}] }); })();
|
|
16351
16098
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(Dropdown, { className: "Dropdown", filePath: "lib\\components\\dropdown\\dropdown.component.ts", lineNumber: 334 }); })();
|
|
16352
16099
|
|
|
16353
|
-
const _c0$
|
|
16354
|
-
const _c1$
|
|
16100
|
+
const _c0$p = ["addressFormDirective"];
|
|
16101
|
+
const _c1$n = () => ({ required: "required" });
|
|
16355
16102
|
function AddressComponent_ion_col_55_Template(rf, ctx) { if (rf & 1) {
|
|
16356
16103
|
i0.ɵɵelementStart(0, "ion-col", 18)(1, "div", 14)(2, "label", 5);
|
|
16357
16104
|
i0.ɵɵtext(3);
|
|
@@ -16371,7 +16118,7 @@ function AddressComponent_ion_col_55_Template(rf, ctx) { if (rf & 1) {
|
|
|
16371
16118
|
i0.ɵɵproperty("readonly", ctx_r1.readonly)("options", ctx_r1.countyOptions)("formControl", ctx_r1.county)("autoDisplayFirst", false)("inputId", ctx_r1.inputId ? ctx_r1.inputId + "-county" : "county");
|
|
16372
16119
|
i0.ɵɵadvance(2);
|
|
16373
16120
|
i0.ɵɵclassMap("app-grid");
|
|
16374
|
-
i0.ɵɵproperty("field", ctx_r1.county)("form", _r0)("errDef", i0.ɵɵpureFunction0(15, _c1$
|
|
16121
|
+
i0.ɵɵproperty("field", ctx_r1.county)("form", _r0)("errDef", i0.ɵɵpureFunction0(15, _c1$n));
|
|
16375
16122
|
} }
|
|
16376
16123
|
const _c2$j = a0 => ({ required: a0 });
|
|
16377
16124
|
function AddressComponent_ion_col_56_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -16755,7 +16502,7 @@ class AddressComponent {
|
|
|
16755
16502
|
}
|
|
16756
16503
|
static { this.ɵfac = function AddressComponent_Factory(t) { return new (t || AddressComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(QuestionnaireService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(DmsService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
16757
16504
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AddressComponent, selectors: [["app-address"]], viewQuery: function AddressComponent_Query(rf, ctx) { if (rf & 1) {
|
|
16758
|
-
i0.ɵɵviewQuery(_c0$
|
|
16505
|
+
i0.ɵɵviewQuery(_c0$p, 5);
|
|
16759
16506
|
} if (rf & 2) {
|
|
16760
16507
|
let _t;
|
|
16761
16508
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.addressFormDirective = _t.first);
|
|
@@ -16912,8 +16659,8 @@ class AddressComponent {
|
|
|
16912
16659
|
}] }); })();
|
|
16913
16660
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(AddressComponent, { className: "AddressComponent", filePath: "lib\\components\\address\\address.component.ts", lineNumber: 31 }); })();
|
|
16914
16661
|
|
|
16915
|
-
const _c0$
|
|
16916
|
-
const _c1$
|
|
16662
|
+
const _c0$o = ["address1"];
|
|
16663
|
+
const _c1$m = ["address2"];
|
|
16917
16664
|
const _c2$i = ["employerForm"];
|
|
16918
16665
|
function AddEmployerComponent_ion_grid_6_div_4_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
16919
16666
|
i0.ɵɵelementStart(0, "div");
|
|
@@ -19530,8 +19277,8 @@ class AddEmployerComponent {
|
|
|
19530
19277
|
}
|
|
19531
19278
|
static { this.ɵfac = function AddEmployerComponent_Factory(t) { return new (t || AddEmployerComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i4$1.FilterService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(i6.DomSanitizer), i0.ɵɵdirectiveInject(ClaimService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
19532
19279
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AddEmployerComponent, selectors: [["app-add-employer"]], viewQuery: function AddEmployerComponent_Query(rf, ctx) { if (rf & 1) {
|
|
19533
|
-
i0.ɵɵviewQuery(_c0$
|
|
19534
|
-
i0.ɵɵviewQuery(_c1$
|
|
19280
|
+
i0.ɵɵviewQuery(_c0$o, 5);
|
|
19281
|
+
i0.ɵɵviewQuery(_c1$m, 5);
|
|
19535
19282
|
i0.ɵɵviewQuery(_c2$i, 5);
|
|
19536
19283
|
} if (rf & 2) {
|
|
19537
19284
|
let _t;
|
|
@@ -19673,7 +19420,7 @@ function EmployerGridComponent_p_table_27_ng_template_3_td_3_Template(rf, ctx) {
|
|
|
19673
19420
|
i0.ɵɵadvance(3);
|
|
19674
19421
|
i0.ɵɵtextInterpolate1(" ", employer_r9.serviceBranch.text, " ");
|
|
19675
19422
|
} }
|
|
19676
|
-
const _c0$
|
|
19423
|
+
const _c0$n = () => ["fal", "edit"];
|
|
19677
19424
|
function EmployerGridComponent_p_table_27_ng_template_3_ion_button_5_Template(rf, ctx) { if (rf & 1) {
|
|
19678
19425
|
const _r36 = i0.ɵɵgetCurrentView();
|
|
19679
19426
|
i0.ɵɵelementStart(0, "ion-button", 25);
|
|
@@ -19682,7 +19429,7 @@ function EmployerGridComponent_p_table_27_ng_template_3_ion_button_5_Template(rf
|
|
|
19682
19429
|
i0.ɵɵelementEnd();
|
|
19683
19430
|
} if (rf & 2) {
|
|
19684
19431
|
i0.ɵɵadvance(1);
|
|
19685
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c0$
|
|
19432
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c0$n));
|
|
19686
19433
|
} }
|
|
19687
19434
|
function EmployerGridComponent_p_table_27_ng_template_3_ion_button_6_Template(rf, ctx) { if (rf & 1) {
|
|
19688
19435
|
const _r39 = i0.ɵɵgetCurrentView();
|
|
@@ -19692,9 +19439,9 @@ function EmployerGridComponent_p_table_27_ng_template_3_ion_button_6_Template(rf
|
|
|
19692
19439
|
i0.ɵɵelementEnd();
|
|
19693
19440
|
} if (rf & 2) {
|
|
19694
19441
|
i0.ɵɵadvance(1);
|
|
19695
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c0$
|
|
19442
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c0$n));
|
|
19696
19443
|
} }
|
|
19697
|
-
const _c1$
|
|
19444
|
+
const _c1$l = () => ["fal", "check-circle"];
|
|
19698
19445
|
function EmployerGridComponent_p_table_27_ng_template_3_ion_button_7_Template(rf, ctx) { if (rf & 1) {
|
|
19699
19446
|
const _r42 = i0.ɵɵgetCurrentView();
|
|
19700
19447
|
i0.ɵɵelementStart(0, "ion-button", 28);
|
|
@@ -19703,7 +19450,7 @@ function EmployerGridComponent_p_table_27_ng_template_3_ion_button_7_Template(rf
|
|
|
19703
19450
|
i0.ɵɵelementEnd();
|
|
19704
19451
|
} if (rf & 2) {
|
|
19705
19452
|
i0.ɵɵadvance(1);
|
|
19706
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c1$
|
|
19453
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(1, _c1$l));
|
|
19707
19454
|
} }
|
|
19708
19455
|
const _c2$h = () => ["fal", "trash-alt"];
|
|
19709
19456
|
function EmployerGridComponent_p_table_27_ng_template_3_ion_button_8_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -20680,7 +20427,7 @@ class EmployerGridComponent {
|
|
|
20680
20427
|
} if (rf & 2) {
|
|
20681
20428
|
i0.ɵɵproperty("formGroup", ctx.form);
|
|
20682
20429
|
i0.ɵɵadvance(3);
|
|
20683
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(35, _c1$
|
|
20430
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(35, _c1$l));
|
|
20684
20431
|
i0.ɵɵadvance(1);
|
|
20685
20432
|
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(5, 15, i0.ɵɵpipeBind1(6, 17, "induction.employment.subheader.confirm")), i0.ɵɵsanitizeHtml);
|
|
20686
20433
|
i0.ɵɵadvance(4);
|
|
@@ -20692,7 +20439,7 @@ class EmployerGridComponent {
|
|
|
20692
20439
|
i0.ɵɵadvance(1);
|
|
20693
20440
|
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(15, 23, i0.ɵɵpipeBind1(16, 25, "induction.employment.subheader.add")), i0.ɵɵsanitizeHtml);
|
|
20694
20441
|
i0.ɵɵadvance(4);
|
|
20695
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(38, _c0$
|
|
20442
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(38, _c0$n));
|
|
20696
20443
|
i0.ɵɵadvance(1);
|
|
20697
20444
|
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(20, 27, i0.ɵɵpipeBind1(21, 29, "induction.employment.subheader.edit")), i0.ɵɵsanitizeHtml);
|
|
20698
20445
|
i0.ɵɵadvance(4);
|
|
@@ -21306,15 +21053,15 @@ class AppValidators {
|
|
|
21306
21053
|
}
|
|
21307
21054
|
}
|
|
21308
21055
|
|
|
21309
|
-
const _c0$
|
|
21310
|
-
const _c1$
|
|
21056
|
+
const _c0$m = ["qeFormDirective"];
|
|
21057
|
+
const _c1$k = (a0, a1) => ({ required: a0, notEqual: a1 });
|
|
21311
21058
|
function LegalDisclaimarComponent_div_2_ng_template_268_app_error_9_Template(rf, ctx) { if (rf & 1) {
|
|
21312
21059
|
i0.ɵɵelement(0, "app-error", 35);
|
|
21313
21060
|
} if (rf & 2) {
|
|
21314
21061
|
const ctx_r3 = i0.ɵɵnextContext(3);
|
|
21315
21062
|
const _r0 = i0.ɵɵreference(1);
|
|
21316
21063
|
i0.ɵɵclassMap("app-grid");
|
|
21317
|
-
i0.ɵɵproperty("field", ctx_r3.lastfourssn)("form", _r0)("errDef", i0.ɵɵpureFunction2(5, _c1$
|
|
21064
|
+
i0.ɵɵproperty("field", ctx_r3.lastfourssn)("form", _r0)("errDef", i0.ɵɵpureFunction2(5, _c1$k, ctx_r3.required, ctx_r3.ssnNotMatched));
|
|
21318
21065
|
} }
|
|
21319
21066
|
function LegalDisclaimarComponent_div_2_ng_template_268_Template(rf, ctx) { if (rf & 1) {
|
|
21320
21067
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
@@ -21877,7 +21624,7 @@ class LegalDisclaimarComponent {
|
|
|
21877
21624
|
}
|
|
21878
21625
|
static { this.ɵfac = function LegalDisclaimarComponent_Factory(t) { return new (t || LegalDisclaimarComponent)(i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
21879
21626
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LegalDisclaimarComponent, selectors: [["app-legal-disclaimar"]], viewQuery: function LegalDisclaimarComponent_Query(rf, ctx) { if (rf & 1) {
|
|
21880
|
-
i0.ɵɵviewQuery(_c0$
|
|
21627
|
+
i0.ɵɵviewQuery(_c0$m, 5);
|
|
21881
21628
|
} if (rf & 2) {
|
|
21882
21629
|
let _t;
|
|
21883
21630
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.qeFormDirective = _t.first);
|
|
@@ -21911,8 +21658,8 @@ class LegalDisclaimarComponent {
|
|
|
21911
21658
|
class BankDetailsModel {
|
|
21912
21659
|
}
|
|
21913
21660
|
|
|
21914
|
-
const _c0$
|
|
21915
|
-
const _c1$
|
|
21661
|
+
const _c0$l = ["bankDetailsFormDirective"];
|
|
21662
|
+
const _c1$j = (a0, a1) => ({ required: a0, pattern: a1 });
|
|
21916
21663
|
const _c2$f = a0 => ({ required: a0 });
|
|
21917
21664
|
const _c3$a = (a0, a1, a2, a3) => ({ required: a0, invalidLengthRouting: a1, hasRouting: a2, isRoutingNumberNotValid: a3 });
|
|
21918
21665
|
const _c4$9 = (a0, a1, a2, a3, a4) => ({ required: a0, pattern: a1, hasNumber: a2, maxlength: a3, minlength: a4 });
|
|
@@ -22150,7 +21897,7 @@ class BankDetailsComponent {
|
|
|
22150
21897
|
}
|
|
22151
21898
|
static { this.ɵfac = function BankDetailsComponent_Factory(t) { return new (t || BankDetailsComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(DmsService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
22152
21899
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BankDetailsComponent, selectors: [["app-bank-details"]], viewQuery: function BankDetailsComponent_Query(rf, ctx) { if (rf & 1) {
|
|
22153
|
-
i0.ɵɵviewQuery(_c0$
|
|
21900
|
+
i0.ɵɵviewQuery(_c0$l, 5);
|
|
22154
21901
|
} if (rf & 2) {
|
|
22155
21902
|
let _t;
|
|
22156
21903
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.bankDetailsFormDirective = _t.first);
|
|
@@ -22245,7 +21992,7 @@ class BankDetailsComponent {
|
|
|
22245
21992
|
i0.ɵɵproperty("formControl", ctx.nameOnAccount);
|
|
22246
21993
|
i0.ɵɵadvance(2);
|
|
22247
21994
|
i0.ɵɵclassMap("app-grid");
|
|
22248
|
-
i0.ɵɵproperty("field", ctx.nameOnAccount)("form", _r0)("errDef", i0.ɵɵpureFunction2(71, _c1$
|
|
21995
|
+
i0.ɵɵproperty("field", ctx.nameOnAccount)("form", _r0)("errDef", i0.ɵɵpureFunction2(71, _c1$j, ctx.required, ctx.onlyLetters));
|
|
22249
21996
|
i0.ɵɵadvance(3);
|
|
22250
21997
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(15, 51, "bank.account.type"));
|
|
22251
21998
|
i0.ɵɵadvance(5);
|
|
@@ -22340,8 +22087,8 @@ function DependentGridComponent_ng_template_4_span_15_Template(rf, ctx) { if (rf
|
|
|
22340
22087
|
i0.ɵɵtext(1, "--");
|
|
22341
22088
|
i0.ɵɵelementEnd();
|
|
22342
22089
|
} }
|
|
22343
|
-
const _c0$
|
|
22344
|
-
const _c1$
|
|
22090
|
+
const _c0$k = () => ["fal", "edit"];
|
|
22091
|
+
const _c1$i = () => ["fal", "trash-alt"];
|
|
22345
22092
|
function DependentGridComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
|
|
22346
22093
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
22347
22094
|
i0.ɵɵelementStart(0, "tr", 12)(1, "td")(2, "span", 13);
|
|
@@ -22394,9 +22141,9 @@ function DependentGridComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
|
|
|
22394
22141
|
i0.ɵɵadvance(2);
|
|
22395
22142
|
i0.ɵɵtextInterpolate1(" ", dependent_r7.relationship == null ? null : dependent_r7.relationship.text, " ");
|
|
22396
22143
|
i0.ɵɵadvance(3);
|
|
22397
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(21, _c0$
|
|
22144
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(21, _c0$k));
|
|
22398
22145
|
i0.ɵɵadvance(2);
|
|
22399
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(22, _c1$
|
|
22146
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(22, _c1$i));
|
|
22400
22147
|
} }
|
|
22401
22148
|
const _c2$e = () => ["fal", "plus"];
|
|
22402
22149
|
function DependentGridComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -22609,8 +22356,8 @@ class EmployerInfoModel {
|
|
|
22609
22356
|
constructor() { }
|
|
22610
22357
|
}
|
|
22611
22358
|
|
|
22612
|
-
const _c0$
|
|
22613
|
-
const _c1$
|
|
22359
|
+
const _c0$j = ["empFormDirective"];
|
|
22360
|
+
const _c1$h = a0 => ({ required: a0 });
|
|
22614
22361
|
function WeeklyCertEmployerComponentQe_ion_row_3_div_73_Template(rf, ctx) { if (rf & 1) {
|
|
22615
22362
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 36);
|
|
22616
22363
|
i0.ɵɵtext(2);
|
|
@@ -22627,7 +22374,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_div_73_Template(rf, ctx) { if (
|
|
|
22627
22374
|
i0.ɵɵproperty("options", ctx_r5.yesNoOption)("formControl", ctx_r5.haveReturnToWorkDate);
|
|
22628
22375
|
i0.ɵɵadvance(1);
|
|
22629
22376
|
i0.ɵɵclassMap("app-grid");
|
|
22630
|
-
i0.ɵɵproperty("field", ctx_r5.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$
|
|
22377
|
+
i0.ɵɵproperty("field", ctx_r5.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$h, ctx_r5.required));
|
|
22631
22378
|
} }
|
|
22632
22379
|
function WeeklyCertEmployerComponentQe_ion_row_3_div_74_Template(rf, ctx) { if (rf & 1) {
|
|
22633
22380
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
@@ -22655,7 +22402,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_div_74_Template(rf, ctx) { if (
|
|
|
22655
22402
|
i0.ɵɵproperty("overlayText", i0.ɵɵpipeBind1(7, 13, i0.ɵɵpipeBind1(8, 15, "weeklies.v2.employment.rtw.info.popup.2155")));
|
|
22656
22403
|
i0.ɵɵadvance(3);
|
|
22657
22404
|
i0.ɵɵclassMap("app-grid");
|
|
22658
|
-
i0.ɵɵproperty("field", ctx_r6.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$
|
|
22405
|
+
i0.ɵɵproperty("field", ctx_r6.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$h, ctx_r6.required));
|
|
22659
22406
|
} }
|
|
22660
22407
|
function WeeklyCertEmployerComponentQe_ion_row_3_div_75_Template(rf, ctx) { if (rf & 1) {
|
|
22661
22408
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
@@ -22677,7 +22424,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_div_75_Template(rf, ctx) { if (
|
|
|
22677
22424
|
i0.ɵɵproperty("showIcon", true)("formControl", ctx_r7.wcEmpRtwDate)("showOnFocus", false)("iconAriaLabel", "Return to work date");
|
|
22678
22425
|
i0.ɵɵadvance(1);
|
|
22679
22426
|
i0.ɵɵclassMap("app-grid");
|
|
22680
|
-
i0.ɵɵproperty("field", ctx_r7.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$
|
|
22427
|
+
i0.ɵɵproperty("field", ctx_r7.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$h, ctx_r7.required));
|
|
22681
22428
|
} }
|
|
22682
22429
|
function WeeklyCertEmployerComponentQe_ion_row_3_div_76_Template(rf, ctx) { if (rf & 1) {
|
|
22683
22430
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 43);
|
|
@@ -22695,7 +22442,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_div_76_Template(rf, ctx) { if (
|
|
|
22695
22442
|
i0.ɵɵproperty("options", ctx_r8.dischargeReasonOptionsAll)("formControl", ctx_r8.discharged)("autoDisplayFirst", false);
|
|
22696
22443
|
i0.ɵɵadvance(1);
|
|
22697
22444
|
i0.ɵɵclassMap("app-grid");
|
|
22698
|
-
i0.ɵɵproperty("field", ctx_r8.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
22445
|
+
i0.ɵɵproperty("field", ctx_r8.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$h, ctx_r8.required));
|
|
22699
22446
|
} }
|
|
22700
22447
|
function WeeklyCertEmployerComponentQe_ion_row_3_div_77_Template(rf, ctx) { if (rf & 1) {
|
|
22701
22448
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 45);
|
|
@@ -22713,7 +22460,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_div_77_Template(rf, ctx) { if (
|
|
|
22713
22460
|
i0.ɵɵproperty("options", ctx_r9.volQuitReasonOptionsAll)("formControl", ctx_r9.voluntaryQuit)("autoDisplayFirst", false);
|
|
22714
22461
|
i0.ɵɵadvance(1);
|
|
22715
22462
|
i0.ɵɵclassMap("app-grid");
|
|
22716
|
-
i0.ɵɵproperty("field", ctx_r9.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
22463
|
+
i0.ɵɵproperty("field", ctx_r9.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$h, ctx_r9.required));
|
|
22717
22464
|
} }
|
|
22718
22465
|
const _c2$d = (a0, a1, a2) => ({ required: a0, invalidLength: a1, invalidNumber: a2 });
|
|
22719
22466
|
const _c3$8 = (a0, a1) => ({ required: a0, dateNotBetween: a1 });
|
|
@@ -22800,28 +22547,28 @@ function WeeklyCertEmployerComponentQe_ion_row_3_Template(rf, ctx) { if (rf & 1)
|
|
|
22800
22547
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpName)("empType", "REG");
|
|
22801
22548
|
i0.ɵɵadvance(1);
|
|
22802
22549
|
i0.ɵɵclassMap("app-grid");
|
|
22803
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpName)("form", _r0)("errDef", i0.ɵɵpureFunction1(111, _c1$
|
|
22550
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpName)("form", _r0)("errDef", i0.ɵɵpureFunction1(111, _c1$h, ctx_r1.required));
|
|
22804
22551
|
i0.ɵɵadvance(3);
|
|
22805
22552
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 89, "weeklies.weeklycert.employer.address"));
|
|
22806
22553
|
i0.ɵɵadvance(2);
|
|
22807
22554
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpAddressLine1);
|
|
22808
22555
|
i0.ɵɵadvance(1);
|
|
22809
22556
|
i0.ɵɵclassMap("app-grid");
|
|
22810
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpAddressLine1)("form", _r0)("errDef", i0.ɵɵpureFunction1(113, _c1$
|
|
22557
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpAddressLine1)("form", _r0)("errDef", i0.ɵɵpureFunction1(113, _c1$h, ctx_r1.required));
|
|
22811
22558
|
i0.ɵɵadvance(3);
|
|
22812
22559
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(18, 91, "weeklies.weeklycert.employer.city"));
|
|
22813
22560
|
i0.ɵɵadvance(2);
|
|
22814
22561
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpCity);
|
|
22815
22562
|
i0.ɵɵadvance(1);
|
|
22816
22563
|
i0.ɵɵclassMap("app-grid");
|
|
22817
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpCity)("form", _r0)("errDef", i0.ɵɵpureFunction1(115, _c1$
|
|
22564
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpCity)("form", _r0)("errDef", i0.ɵɵpureFunction1(115, _c1$h, ctx_r1.required));
|
|
22818
22565
|
i0.ɵɵadvance(5);
|
|
22819
22566
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(26, 93, "weeklies.weeklycert.employer.state"));
|
|
22820
22567
|
i0.ɵɵadvance(2);
|
|
22821
22568
|
i0.ɵɵproperty("options", ctx_r1.statesCombo)("formControl", ctx_r1.wcEmpState)("autoDisplayFirst", false);
|
|
22822
22569
|
i0.ɵɵadvance(1);
|
|
22823
22570
|
i0.ɵɵclassMap("app-grid");
|
|
22824
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpState)("form", _r0)("errDef", i0.ɵɵpureFunction1(117, _c1$
|
|
22571
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpState)("form", _r0)("errDef", i0.ɵɵpureFunction1(117, _c1$h, ctx_r1.required));
|
|
22825
22572
|
i0.ɵɵadvance(5);
|
|
22826
22573
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 95, "weeklies.weeklycert.employer.zipcode"));
|
|
22827
22574
|
i0.ɵɵadvance(2);
|
|
@@ -22842,7 +22589,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_Template(rf, ctx) { if (rf & 1)
|
|
|
22842
22589
|
i0.ɵɵproperty("formControl", ctx_r1.wsPhoneNumber);
|
|
22843
22590
|
i0.ɵɵadvance(1);
|
|
22844
22591
|
i0.ɵɵclassMap("app-grid");
|
|
22845
|
-
i0.ɵɵproperty("field", ctx_r1.wsPhoneNumber)("form", _r0)("errDef", i0.ɵɵpureFunction1(126, _c1$
|
|
22592
|
+
i0.ɵɵproperty("field", ctx_r1.wsPhoneNumber)("form", _r0)("errDef", i0.ɵɵpureFunction1(126, _c1$h, ctx_r1.required));
|
|
22846
22593
|
i0.ɵɵadvance(3);
|
|
22847
22594
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(54, 101, "weeklies.weeklycert.employer.total.gross.earnings"));
|
|
22848
22595
|
i0.ɵɵadvance(2);
|
|
@@ -22865,7 +22612,7 @@ function WeeklyCertEmployerComponentQe_ion_row_3_Template(rf, ctx) { if (rf & 1)
|
|
|
22865
22612
|
i0.ɵɵproperty("options", ctx_r1.employmentStatusOptionsAll)("formControl", ctx_r1.wcEmpStatus)("autoDisplayFirst", false);
|
|
22866
22613
|
i0.ɵɵadvance(2);
|
|
22867
22614
|
i0.ɵɵclassMap("app-grid");
|
|
22868
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(134, _c1$
|
|
22615
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(134, _c1$h, ctx_r1.required));
|
|
22869
22616
|
i0.ɵɵadvance(1);
|
|
22870
22617
|
i0.ɵɵproperty("ngIf", ctx_r1.wcEmpStatus.value == "LWLO");
|
|
22871
22618
|
i0.ɵɵadvance(1);
|
|
@@ -22895,7 +22642,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_div_22_Template(rf, ctx) { if (
|
|
|
22895
22642
|
i0.ɵɵproperty("options", ctx_r16.yesNoOption)("formControl", ctx_r16.haveReturnToWorkDate);
|
|
22896
22643
|
i0.ɵɵadvance(1);
|
|
22897
22644
|
i0.ɵɵclassMap("app-grid");
|
|
22898
|
-
i0.ɵɵproperty("field", ctx_r16.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$
|
|
22645
|
+
i0.ɵɵproperty("field", ctx_r16.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$h, ctx_r16.required));
|
|
22899
22646
|
} }
|
|
22900
22647
|
function WeeklyCertEmployerComponentQe_ion_row_4_div_23_Template(rf, ctx) { if (rf & 1) {
|
|
22901
22648
|
const _r22 = i0.ɵɵgetCurrentView();
|
|
@@ -22923,7 +22670,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_div_23_Template(rf, ctx) { if (
|
|
|
22923
22670
|
i0.ɵɵproperty("overlayText", i0.ɵɵpipeBind1(7, 13, i0.ɵɵpipeBind1(8, 15, "weeklies.v2.employment.rtw.info.popup.2050")));
|
|
22924
22671
|
i0.ɵɵadvance(3);
|
|
22925
22672
|
i0.ɵɵclassMap("app-grid");
|
|
22926
|
-
i0.ɵɵproperty("field", ctx_r17.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$
|
|
22673
|
+
i0.ɵɵproperty("field", ctx_r17.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$h, ctx_r17.required));
|
|
22927
22674
|
} }
|
|
22928
22675
|
function WeeklyCertEmployerComponentQe_ion_row_4_div_24_Template(rf, ctx) { if (rf & 1) {
|
|
22929
22676
|
const _r24 = i0.ɵɵgetCurrentView();
|
|
@@ -22945,7 +22692,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_div_24_Template(rf, ctx) { if (
|
|
|
22945
22692
|
i0.ɵɵproperty("showIcon", true)("formControl", ctx_r18.wcEmpRtwDate)("showOnFocus", false)("iconAriaLabel", "Return to work date");
|
|
22946
22693
|
i0.ɵɵadvance(1);
|
|
22947
22694
|
i0.ɵɵclassMap("app-grid");
|
|
22948
|
-
i0.ɵɵproperty("field", ctx_r18.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$
|
|
22695
|
+
i0.ɵɵproperty("field", ctx_r18.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$h, ctx_r18.required));
|
|
22949
22696
|
} }
|
|
22950
22697
|
function WeeklyCertEmployerComponentQe_ion_row_4_div_25_Template(rf, ctx) { if (rf & 1) {
|
|
22951
22698
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 43);
|
|
@@ -22963,7 +22710,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_div_25_Template(rf, ctx) { if (
|
|
|
22963
22710
|
i0.ɵɵproperty("options", ctx_r19.dischargeReasonOptionsAll)("formControl", ctx_r19.discharged)("autoDisplayFirst", false);
|
|
22964
22711
|
i0.ɵɵadvance(1);
|
|
22965
22712
|
i0.ɵɵclassMap("app-grid");
|
|
22966
|
-
i0.ɵɵproperty("field", ctx_r19.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
22713
|
+
i0.ɵɵproperty("field", ctx_r19.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$h, ctx_r19.required));
|
|
22967
22714
|
} }
|
|
22968
22715
|
function WeeklyCertEmployerComponentQe_ion_row_4_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
22969
22716
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 45);
|
|
@@ -22981,7 +22728,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_div_26_Template(rf, ctx) { if (
|
|
|
22981
22728
|
i0.ɵɵproperty("options", ctx_r20.volQuitReasonOptionsAll)("formControl", ctx_r20.voluntaryQuit)("autoDisplayFirst", false);
|
|
22982
22729
|
i0.ɵɵadvance(1);
|
|
22983
22730
|
i0.ɵɵclassMap("app-grid");
|
|
22984
|
-
i0.ɵɵproperty("field", ctx_r20.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
22731
|
+
i0.ɵɵproperty("field", ctx_r20.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$h, ctx_r20.required));
|
|
22985
22732
|
} }
|
|
22986
22733
|
function WeeklyCertEmployerComponentQe_ion_row_4_Template(rf, ctx) { if (rf & 1) {
|
|
22987
22734
|
i0.ɵɵelementStart(0, "ion-row")(1, "ion-col", 8)(2, "div", 9)(3, "div", 10)(4, "b");
|
|
@@ -23045,7 +22792,7 @@ function WeeklyCertEmployerComponentQe_ion_row_4_Template(rf, ctx) { if (rf & 1)
|
|
|
23045
22792
|
i0.ɵɵproperty("options", ctx_r2.employmentStatusOptionsAll)("formControl", ctx_r2.wcEmpStatus)("autoDisplayFirst", false);
|
|
23046
22793
|
i0.ɵɵadvance(2);
|
|
23047
22794
|
i0.ɵɵclassMap("app-grid");
|
|
23048
|
-
i0.ɵɵproperty("field", ctx_r2.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(62, _c1$
|
|
22795
|
+
i0.ɵɵproperty("field", ctx_r2.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(62, _c1$h, ctx_r2.required));
|
|
23049
22796
|
i0.ɵɵadvance(1);
|
|
23050
22797
|
i0.ɵɵproperty("ngIf", ctx_r2.wcEmpStatus.value == "LWLO");
|
|
23051
22798
|
i0.ɵɵadvance(1);
|
|
@@ -23341,7 +23088,7 @@ class WeeklyCertEmployerComponentQe {
|
|
|
23341
23088
|
}
|
|
23342
23089
|
static { this.ɵfac = function WeeklyCertEmployerComponentQe_Factory(t) { return new (t || WeeklyCertEmployerComponentQe)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(ClaimService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
23343
23090
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WeeklyCertEmployerComponentQe, selectors: [["app-weekly-cert-employer-qe"]], viewQuery: function WeeklyCertEmployerComponentQe_Query(rf, ctx) { if (rf & 1) {
|
|
23344
|
-
i0.ɵɵviewQuery(_c0$
|
|
23091
|
+
i0.ɵɵviewQuery(_c0$j, 5);
|
|
23345
23092
|
} if (rf & 2) {
|
|
23346
23093
|
let _t;
|
|
23347
23094
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.empFormDirective = _t.first);
|
|
@@ -23397,7 +23144,7 @@ class WeeklyCertEmployerComponentQe {
|
|
|
23397
23144
|
}] }); })();
|
|
23398
23145
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeeklyCertEmployerComponentQe, { className: "WeeklyCertEmployerComponentQe", filePath: "lib\\components\\weekly-cert-employer\\weekly-cert-employer.component.ts", lineNumber: 16 }); })();
|
|
23399
23146
|
|
|
23400
|
-
const _c0$
|
|
23147
|
+
const _c0$i = ["accordionTab"];
|
|
23401
23148
|
function WeeklyCertEmployerGridComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
23402
23149
|
i0.ɵɵelementStart(0, "tr")(1, "th");
|
|
23403
23150
|
i0.ɵɵtext(2);
|
|
@@ -23422,7 +23169,7 @@ function WeeklyCertEmployerGridComponent_ng_template_3_Template(rf, ctx) { if (r
|
|
|
23422
23169
|
i0.ɵɵadvance(3);
|
|
23423
23170
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(10, 7, "weeklies.employer.grid.header.status"), " ");
|
|
23424
23171
|
} }
|
|
23425
|
-
const _c1$
|
|
23172
|
+
const _c1$g = () => ["far", "arrows-rotate"];
|
|
23426
23173
|
function WeeklyCertEmployerGridComponent_ng_template_4_ion_button_13_Template(rf, ctx) { if (rf & 1) {
|
|
23427
23174
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
23428
23175
|
i0.ɵɵelementStart(0, "ion-button", 14);
|
|
@@ -23438,7 +23185,7 @@ function WeeklyCertEmployerGridComponent_ng_template_4_ion_button_13_Template(rf
|
|
|
23438
23185
|
const ctx_r8 = i0.ɵɵnextContext();
|
|
23439
23186
|
i0.ɵɵproperty("disabled", ctx_r8.isDisabled)("color", employer_r6.isPartTimeEmployer && !employer_r6.isPartTimeEmployerEdited && employer_r6.isEmployerGridSubmitted ? "danger" : "");
|
|
23440
23187
|
i0.ɵɵadvance(1);
|
|
23441
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(3, _c1$
|
|
23188
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(3, _c1$g));
|
|
23442
23189
|
} }
|
|
23443
23190
|
const _c2$c = () => ["fal", "edit"];
|
|
23444
23191
|
function WeeklyCertEmployerGridComponent_ng_template_4_ion_button_14_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -23692,7 +23439,7 @@ class WeeklyCertEmployerGridComponent {
|
|
|
23692
23439
|
}
|
|
23693
23440
|
static { this.ɵfac = function WeeklyCertEmployerGridComponent_Factory(t) { return new (t || WeeklyCertEmployerGridComponent)(i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(ClaimService)); }; }
|
|
23694
23441
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WeeklyCertEmployerGridComponent, selectors: [["app-weekly-cert-employer-grid"]], viewQuery: function WeeklyCertEmployerGridComponent_Query(rf, ctx) { if (rf & 1) {
|
|
23695
|
-
i0.ɵɵviewQuery(_c0$
|
|
23442
|
+
i0.ɵɵviewQuery(_c0$i, 5);
|
|
23696
23443
|
} if (rf & 2) {
|
|
23697
23444
|
let _t;
|
|
23698
23445
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.accordionTab = _t.first);
|
|
@@ -23739,8 +23486,8 @@ class WeeklyCertEmployerGridComponent {
|
|
|
23739
23486
|
}] }); })();
|
|
23740
23487
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeeklyCertEmployerGridComponent, { className: "WeeklyCertEmployerGridComponent", filePath: "lib\\components\\weekly-cert-employer-grid\\weekly-cert-employer-grid.component.ts", lineNumber: 23 }); })();
|
|
23741
23488
|
|
|
23742
|
-
const _c0$
|
|
23743
|
-
const _c1$
|
|
23489
|
+
const _c0$h = ["empFormDirective"];
|
|
23490
|
+
const _c1$f = a0 => ({ required: a0 });
|
|
23744
23491
|
function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_58_Template(rf, ctx) { if (rf & 1) {
|
|
23745
23492
|
i0.ɵɵelementStart(0, "div", 8)(1, "label", 30);
|
|
23746
23493
|
i0.ɵɵtext(2);
|
|
@@ -23757,7 +23504,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_58_Template(rf, ctx) {
|
|
|
23757
23504
|
i0.ɵɵproperty("options", ctx_r3.yesNoOption)("formControl", ctx_r3.haveReturnToWorkDate);
|
|
23758
23505
|
i0.ɵɵadvance(1);
|
|
23759
23506
|
i0.ɵɵclassMap("app-grid");
|
|
23760
|
-
i0.ɵɵproperty("field", ctx_r3.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$
|
|
23507
|
+
i0.ɵɵproperty("field", ctx_r3.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$f, ctx_r3.required));
|
|
23761
23508
|
} }
|
|
23762
23509
|
function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_59_Template(rf, ctx) { if (rf & 1) {
|
|
23763
23510
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
@@ -23785,7 +23532,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_59_Template(rf, ctx) {
|
|
|
23785
23532
|
i0.ɵɵproperty("overlayText", i0.ɵɵpipeBind1(7, 13, i0.ɵɵpipeBind1(8, 15, "weeklies.v2.employment.rtw.info.popup.2155")));
|
|
23786
23533
|
i0.ɵɵadvance(3);
|
|
23787
23534
|
i0.ɵɵclassMap("app-grid");
|
|
23788
|
-
i0.ɵɵproperty("field", ctx_r4.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$
|
|
23535
|
+
i0.ɵɵproperty("field", ctx_r4.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$f, ctx_r4.required));
|
|
23789
23536
|
} }
|
|
23790
23537
|
function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_60_Template(rf, ctx) { if (rf & 1) {
|
|
23791
23538
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
@@ -23807,7 +23554,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_60_Template(rf, ctx) {
|
|
|
23807
23554
|
i0.ɵɵproperty("showIcon", true)("formControl", ctx_r5.wcEmpRtwDate)("showOnFocus", false)("iconAriaLabel", "Return to work date");
|
|
23808
23555
|
i0.ɵɵadvance(1);
|
|
23809
23556
|
i0.ɵɵclassMap("app-grid");
|
|
23810
|
-
i0.ɵɵproperty("field", ctx_r5.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$
|
|
23557
|
+
i0.ɵɵproperty("field", ctx_r5.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$f, ctx_r5.required));
|
|
23811
23558
|
} }
|
|
23812
23559
|
function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_61_Template(rf, ctx) { if (rf & 1) {
|
|
23813
23560
|
i0.ɵɵelementStart(0, "div", 8)(1, "label", 38);
|
|
@@ -23825,7 +23572,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_61_Template(rf, ctx) {
|
|
|
23825
23572
|
i0.ɵɵproperty("options", ctx_r6.dischargeReasonOptionsAll)("formControl", ctx_r6.discharged)("autoDisplayFirst", false);
|
|
23826
23573
|
i0.ɵɵadvance(1);
|
|
23827
23574
|
i0.ɵɵclassMap("app-grid");
|
|
23828
|
-
i0.ɵɵproperty("field", ctx_r6.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
23575
|
+
i0.ɵɵproperty("field", ctx_r6.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$f, ctx_r6.required));
|
|
23829
23576
|
} }
|
|
23830
23577
|
function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_62_Template(rf, ctx) { if (rf & 1) {
|
|
23831
23578
|
i0.ɵɵelementStart(0, "div", 8)(1, "label", 40);
|
|
@@ -23843,7 +23590,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_div_62_Template(rf, ctx) {
|
|
|
23843
23590
|
i0.ɵɵproperty("options", ctx_r7.volQuitReasonOptionsAll)("formControl", ctx_r7.voluntaryQuit)("autoDisplayFirst", false);
|
|
23844
23591
|
i0.ɵɵadvance(1);
|
|
23845
23592
|
i0.ɵɵclassMap("app-grid");
|
|
23846
|
-
i0.ɵɵproperty("field", ctx_r7.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
23593
|
+
i0.ɵɵproperty("field", ctx_r7.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$f, ctx_r7.required));
|
|
23847
23594
|
} }
|
|
23848
23595
|
const _c2$b = (a0, a1, a2) => ({ required: a0, invalidLength: a1, invalidNumber: a2 });
|
|
23849
23596
|
const _c3$6 = (a0, a1) => ({ required: a0, dateNotBetween: a1 });
|
|
@@ -23914,28 +23661,28 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_Template(rf, ctx) { if (rf
|
|
|
23914
23661
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpName)("empType", "REG");
|
|
23915
23662
|
i0.ɵɵadvance(1);
|
|
23916
23663
|
i0.ɵɵclassMap("app-grid");
|
|
23917
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpName)("form", _r0)("errDef", i0.ɵɵpureFunction1(88, _c1$
|
|
23664
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpName)("form", _r0)("errDef", i0.ɵɵpureFunction1(88, _c1$f, ctx_r1.required));
|
|
23918
23665
|
i0.ɵɵadvance(3);
|
|
23919
23666
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 74, "weeklies.weeklycert.employer.address"));
|
|
23920
23667
|
i0.ɵɵadvance(2);
|
|
23921
23668
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpAddressLine1);
|
|
23922
23669
|
i0.ɵɵadvance(1);
|
|
23923
23670
|
i0.ɵɵclassMap("app-grid");
|
|
23924
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpAddressLine1)("form", _r0)("errDef", i0.ɵɵpureFunction1(90, _c1$
|
|
23671
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpAddressLine1)("form", _r0)("errDef", i0.ɵɵpureFunction1(90, _c1$f, ctx_r1.required));
|
|
23925
23672
|
i0.ɵɵadvance(3);
|
|
23926
23673
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(18, 76, "weeklies.weeklycert.employer.city"));
|
|
23927
23674
|
i0.ɵɵadvance(2);
|
|
23928
23675
|
i0.ɵɵproperty("formControl", ctx_r1.wcEmpCity);
|
|
23929
23676
|
i0.ɵɵadvance(1);
|
|
23930
23677
|
i0.ɵɵclassMap("app-grid");
|
|
23931
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpCity)("form", _r0)("errDef", i0.ɵɵpureFunction1(92, _c1$
|
|
23678
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpCity)("form", _r0)("errDef", i0.ɵɵpureFunction1(92, _c1$f, ctx_r1.required));
|
|
23932
23679
|
i0.ɵɵadvance(5);
|
|
23933
23680
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(26, 78, "weeklies.weeklycert.employer.state"));
|
|
23934
23681
|
i0.ɵɵadvance(2);
|
|
23935
23682
|
i0.ɵɵproperty("options", ctx_r1.statesCombo)("formControl", ctx_r1.wcEmpState)("autoDisplayFirst", false);
|
|
23936
23683
|
i0.ɵɵadvance(1);
|
|
23937
23684
|
i0.ɵɵclassMap("app-grid");
|
|
23938
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpState)("form", _r0)("errDef", i0.ɵɵpureFunction1(94, _c1$
|
|
23685
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpState)("form", _r0)("errDef", i0.ɵɵpureFunction1(94, _c1$f, ctx_r1.required));
|
|
23939
23686
|
i0.ɵɵadvance(5);
|
|
23940
23687
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 80, "weeklies.weeklycert.employer.zipcode"));
|
|
23941
23688
|
i0.ɵɵadvance(2);
|
|
@@ -23956,14 +23703,14 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_3_Template(rf, ctx) { if (rf
|
|
|
23956
23703
|
i0.ɵɵproperty("formControl", ctx_r1.wsPhoneNumber);
|
|
23957
23704
|
i0.ɵɵadvance(1);
|
|
23958
23705
|
i0.ɵɵclassMap("app-grid");
|
|
23959
|
-
i0.ɵɵproperty("field", ctx_r1.wsPhoneNumber)("form", _r0)("errDef", i0.ɵɵpureFunction1(103, _c1$
|
|
23706
|
+
i0.ɵɵproperty("field", ctx_r1.wsPhoneNumber)("form", _r0)("errDef", i0.ɵɵpureFunction1(103, _c1$f, ctx_r1.required));
|
|
23960
23707
|
i0.ɵɵadvance(3);
|
|
23961
23708
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(54, 86, "weeklies.weeklycert.employer.status"));
|
|
23962
23709
|
i0.ɵɵadvance(2);
|
|
23963
23710
|
i0.ɵɵproperty("options", ctx_r1.employmentStatusOptionsAll)("formControl", ctx_r1.wcEmpStatus)("autoDisplayFirst", false);
|
|
23964
23711
|
i0.ɵɵadvance(2);
|
|
23965
23712
|
i0.ɵɵclassMap("app-grid");
|
|
23966
|
-
i0.ɵɵproperty("field", ctx_r1.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(105, _c1$
|
|
23713
|
+
i0.ɵɵproperty("field", ctx_r1.wcEmpStatus)("form", _r0)("errDef", i0.ɵɵpureFunction1(105, _c1$f, ctx_r1.required));
|
|
23967
23714
|
i0.ɵɵadvance(1);
|
|
23968
23715
|
i0.ɵɵproperty("ngIf", ctx_r1.wcEmpStatus.value == "LWLO");
|
|
23969
23716
|
i0.ɵɵadvance(1);
|
|
@@ -23993,7 +23740,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_22_Template(rf, ctx) {
|
|
|
23993
23740
|
i0.ɵɵproperty("options", ctx_r14.yesNoOption)("formControl", ctx_r14.haveReturnToWorkDate);
|
|
23994
23741
|
i0.ɵɵadvance(1);
|
|
23995
23742
|
i0.ɵɵclassMap("app-grid");
|
|
23996
|
-
i0.ɵɵproperty("field", ctx_r14.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$
|
|
23743
|
+
i0.ɵɵproperty("field", ctx_r14.haveReturnToWorkDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(10, _c1$f, ctx_r14.required));
|
|
23997
23744
|
} }
|
|
23998
23745
|
function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_23_Template(rf, ctx) { if (rf & 1) {
|
|
23999
23746
|
const _r20 = i0.ɵɵgetCurrentView();
|
|
@@ -24021,7 +23768,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_23_Template(rf, ctx) {
|
|
|
24021
23768
|
i0.ɵɵproperty("overlayText", i0.ɵɵpipeBind1(7, 13, i0.ɵɵpipeBind1(8, 15, "weeklies.v2.employment.rtw.info.popup.2050")));
|
|
24022
23769
|
i0.ɵɵadvance(3);
|
|
24023
23770
|
i0.ɵɵclassMap("app-grid");
|
|
24024
|
-
i0.ɵɵproperty("field", ctx_r15.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$
|
|
23771
|
+
i0.ɵɵproperty("field", ctx_r15.wcEmpLowRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(17, _c1$f, ctx_r15.required));
|
|
24025
23772
|
} }
|
|
24026
23773
|
function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_24_Template(rf, ctx) { if (rf & 1) {
|
|
24027
23774
|
const _r22 = i0.ɵɵgetCurrentView();
|
|
@@ -24043,7 +23790,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_24_Template(rf, ctx) {
|
|
|
24043
23790
|
i0.ɵɵproperty("showIcon", true)("formControl", ctx_r16.wcEmpRtwDate)("showOnFocus", false)("iconAriaLabel", "Return to work date");
|
|
24044
23791
|
i0.ɵɵadvance(1);
|
|
24045
23792
|
i0.ɵɵclassMap("app-grid");
|
|
24046
|
-
i0.ɵɵproperty("field", ctx_r16.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$
|
|
23793
|
+
i0.ɵɵproperty("field", ctx_r16.wcEmpRtwDate)("form", _r0)("errDef", i0.ɵɵpureFunction1(12, _c1$f, ctx_r16.required));
|
|
24047
23794
|
} }
|
|
24048
23795
|
function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_25_Template(rf, ctx) { if (rf & 1) {
|
|
24049
23796
|
i0.ɵɵelementStart(0, "div", 8)(1, "label", 38);
|
|
@@ -24061,7 +23808,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_25_Template(rf, ctx) {
|
|
|
24061
23808
|
i0.ɵɵproperty("options", ctx_r17.dischargeReasonOptionsAll)("formControl", ctx_r17.discharged)("autoDisplayFirst", false);
|
|
24062
23809
|
i0.ɵɵadvance(1);
|
|
24063
23810
|
i0.ɵɵclassMap("app-grid");
|
|
24064
|
-
i0.ɵɵproperty("field", ctx_r17.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
23811
|
+
i0.ɵɵproperty("field", ctx_r17.discharged)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$f, ctx_r17.required));
|
|
24065
23812
|
} }
|
|
24066
23813
|
function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
24067
23814
|
i0.ɵɵelementStart(0, "div", 8)(1, "label", 40);
|
|
@@ -24079,7 +23826,7 @@ function WeeklyCertWrptEmployerComponentQe_ion_row_4_div_26_Template(rf, ctx) {
|
|
|
24079
23826
|
i0.ɵɵproperty("options", ctx_r18.volQuitReasonOptionsAll)("formControl", ctx_r18.voluntaryQuit)("autoDisplayFirst", false);
|
|
24080
23827
|
i0.ɵɵadvance(1);
|
|
24081
23828
|
i0.ɵɵclassMap("app-grid");
|
|
24082
|
-
i0.ɵɵproperty("field", ctx_r18.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$
|
|
23829
|
+
i0.ɵɵproperty("field", ctx_r18.voluntaryQuit)("form", _r0)("errDef", i0.ɵɵpureFunction1(11, _c1$f, ctx_r18.required));
|
|
24083
23830
|
} }
|
|
24084
23831
|
const _c4$5 = (a0, a1) => ({ required: a0, wrptCheck: a1 });
|
|
24085
23832
|
function WeeklyCertWrptEmployerComponentQe_ion_row_4_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -24367,7 +24114,7 @@ class WeeklyCertWrptEmployerComponentQe {
|
|
|
24367
24114
|
}
|
|
24368
24115
|
static { this.ɵfac = function WeeklyCertWrptEmployerComponentQe_Factory(t) { return new (t || WeeklyCertWrptEmployerComponentQe)(i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(ClaimService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
24369
24116
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WeeklyCertWrptEmployerComponentQe, selectors: [["app-weekly-cert-wrpt-employer-qe"]], viewQuery: function WeeklyCertWrptEmployerComponentQe_Query(rf, ctx) { if (rf & 1) {
|
|
24370
|
-
i0.ɵɵviewQuery(_c0$
|
|
24117
|
+
i0.ɵɵviewQuery(_c0$h, 5);
|
|
24371
24118
|
} if (rf & 2) {
|
|
24372
24119
|
let _t;
|
|
24373
24120
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.empFormDirective = _t.first);
|
|
@@ -24413,7 +24160,7 @@ class WeeklyCertWrptEmployerComponentQe {
|
|
|
24413
24160
|
}] }); })();
|
|
24414
24161
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeeklyCertWrptEmployerComponentQe, { className: "WeeklyCertWrptEmployerComponentQe", filePath: "lib\\components\\weekly-cert-wrpt-employer\\weekly-cert-wrpt-employer.component.ts", lineNumber: 16 }); })();
|
|
24415
24162
|
|
|
24416
|
-
const _c0$
|
|
24163
|
+
const _c0$g = ["accordionTab"];
|
|
24417
24164
|
function WeeklyCertWrptEmployerGridComponent_ion_label_1_Template(rf, ctx) { if (rf & 1) {
|
|
24418
24165
|
i0.ɵɵelementStart(0, "ion-label");
|
|
24419
24166
|
i0.ɵɵtext(1);
|
|
@@ -24445,7 +24192,7 @@ function WeeklyCertWrptEmployerGridComponent_p_table_2_ng_template_2_Template(rf
|
|
|
24445
24192
|
i0.ɵɵadvance(3);
|
|
24446
24193
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(10, 7, "weeklies.employer.grid.header.status"), " ");
|
|
24447
24194
|
} }
|
|
24448
|
-
const _c1$
|
|
24195
|
+
const _c1$e = () => ["far", "arrows-rotate"];
|
|
24449
24196
|
function WeeklyCertWrptEmployerGridComponent_p_table_2_ng_template_3_ion_button_13_Template(rf, ctx) { if (rf & 1) {
|
|
24450
24197
|
const _r15 = i0.ɵɵgetCurrentView();
|
|
24451
24198
|
i0.ɵɵelementStart(0, "ion-button", 15);
|
|
@@ -24461,7 +24208,7 @@ function WeeklyCertWrptEmployerGridComponent_p_table_2_ng_template_3_ion_button_
|
|
|
24461
24208
|
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
24462
24209
|
i0.ɵɵproperty("disabled", ctx_r10.isDisabled)("color", employer_r8.isPartTimeEmployer && !employer_r8.isPartTimeEmployerEdited && employer_r8.isEmployerGridSubmitted ? "danger" : "");
|
|
24463
24210
|
i0.ɵɵadvance(1);
|
|
24464
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(3, _c1$
|
|
24211
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(3, _c1$e));
|
|
24465
24212
|
} }
|
|
24466
24213
|
const _c2$a = () => ["fal", "edit"];
|
|
24467
24214
|
function WeeklyCertWrptEmployerGridComponent_p_table_2_ng_template_3_ion_button_14_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -24760,7 +24507,7 @@ class WeeklyCertWrptEmployerGridComponent {
|
|
|
24760
24507
|
}
|
|
24761
24508
|
static { this.ɵfac = function WeeklyCertWrptEmployerGridComponent_Factory(t) { return new (t || WeeklyCertWrptEmployerGridComponent)(i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(ClaimService)); }; }
|
|
24762
24509
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WeeklyCertWrptEmployerGridComponent, selectors: [["app-wrpt-weekly-cert-employer-grid"]], viewQuery: function WeeklyCertWrptEmployerGridComponent_Query(rf, ctx) { if (rf & 1) {
|
|
24763
|
-
i0.ɵɵviewQuery(_c0$
|
|
24510
|
+
i0.ɵɵviewQuery(_c0$g, 5);
|
|
24764
24511
|
} if (rf & 2) {
|
|
24765
24512
|
let _t;
|
|
24766
24513
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.accordionTab = _t.first);
|
|
@@ -24806,8 +24553,8 @@ class WeeklyCertWrptEmployerGridComponent {
|
|
|
24806
24553
|
}] }); })();
|
|
24807
24554
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WeeklyCertWrptEmployerGridComponent, { className: "WeeklyCertWrptEmployerGridComponent", filePath: "lib\\components\\weekly-cert-wrpt-employer-grid\\weekly-cert-wrpt-employer-grid.component.ts", lineNumber: 23 }); })();
|
|
24808
24555
|
|
|
24809
|
-
const _c0$
|
|
24810
|
-
const _c1$
|
|
24556
|
+
const _c0$f = ["participantAddress"];
|
|
24557
|
+
const _c1$d = ["participantForm"];
|
|
24811
24558
|
function AddParticipantComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
24812
24559
|
i0.ɵɵelementStart(0, "tr")(1, "th");
|
|
24813
24560
|
i0.ɵɵtext(2);
|
|
@@ -25149,8 +24896,8 @@ class AddParticipantComponent {
|
|
|
25149
24896
|
}
|
|
25150
24897
|
static { this.ɵfac = function AddParticipantComponent_Factory(t) { return new (t || AddParticipantComponent)(i0.ɵɵdirectiveInject(i1$6.FormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
25151
24898
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AddParticipantComponent, selectors: [["app-add-participant"]], viewQuery: function AddParticipantComponent_Query(rf, ctx) { if (rf & 1) {
|
|
25152
|
-
i0.ɵɵviewQuery(_c0$
|
|
25153
|
-
i0.ɵɵviewQuery(_c1$
|
|
24899
|
+
i0.ɵɵviewQuery(_c0$f, 5);
|
|
24900
|
+
i0.ɵɵviewQuery(_c1$d, 5);
|
|
25154
24901
|
} if (rf & 2) {
|
|
25155
24902
|
let _t;
|
|
25156
24903
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.participantAddress = _t.first);
|
|
@@ -25199,7 +24946,7 @@ class RequalifyLiftPageModel {
|
|
|
25199
24946
|
}
|
|
25200
24947
|
}
|
|
25201
24948
|
|
|
25202
|
-
const _c0$
|
|
24949
|
+
const _c0$e = ["requalifyFormDirective"];
|
|
25203
24950
|
function RequalifyLiftPreviousIssuesComponent_div_12_Template(rf, ctx) { if (rf & 1) {
|
|
25204
24951
|
i0.ɵɵelementStart(0, "div", 15);
|
|
25205
24952
|
i0.ɵɵelement(1, "ion-spinner", 16);
|
|
@@ -25555,7 +25302,7 @@ function RequalifyLiftPreviousIssuesComponent_div_48_Template(rf, ctx) { if (rf
|
|
|
25555
25302
|
i0.ɵɵadvance(1);
|
|
25556
25303
|
i0.ɵɵproperty("value", ctx_r9.allowedSepIssueList)("columns", ctx_r9.colAllowIssueLst);
|
|
25557
25304
|
} }
|
|
25558
|
-
const _c1$
|
|
25305
|
+
const _c1$c = () => ({ width: "60vw" });
|
|
25559
25306
|
const _c2$8 = () => ({ "960px": "80vw", "640px": "100vw" });
|
|
25560
25307
|
const _c3$3 = () => ({ required: "required" });
|
|
25561
25308
|
class RequalifyLiftPreviousIssuesComponent {
|
|
@@ -25728,7 +25475,7 @@ class RequalifyLiftPreviousIssuesComponent {
|
|
|
25728
25475
|
}
|
|
25729
25476
|
static { this.ɵfac = function RequalifyLiftPreviousIssuesComponent_Factory(t) { return new (t || RequalifyLiftPreviousIssuesComponent)(i0.ɵɵdirectiveInject(ClaimService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i1$6.FormBuilder), i0.ɵɵdirectiveInject(LoggerService)); }; }
|
|
25730
25477
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RequalifyLiftPreviousIssuesComponent, selectors: [["app-requalify-lift-previous-issues"]], viewQuery: function RequalifyLiftPreviousIssuesComponent_Query(rf, ctx) { if (rf & 1) {
|
|
25731
|
-
i0.ɵɵviewQuery(_c0$
|
|
25478
|
+
i0.ɵɵviewQuery(_c0$e, 5);
|
|
25732
25479
|
} if (rf & 2) {
|
|
25733
25480
|
let _t;
|
|
25734
25481
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.requalifyFormDirective = _t.first);
|
|
@@ -25797,7 +25544,7 @@ class RequalifyLiftPreviousIssuesComponent {
|
|
|
25797
25544
|
} if (rf & 2) {
|
|
25798
25545
|
i0.ɵɵproperty("formGroup", ctx.form);
|
|
25799
25546
|
i0.ɵɵadvance(1);
|
|
25800
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(33, _c1$
|
|
25547
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(33, _c1$c));
|
|
25801
25548
|
i0.ɵɵproperty("showHeader", false)("breakpoints", i0.ɵɵpureFunction0(34, _c2$8))("visible", ctx.showData);
|
|
25802
25549
|
i0.ɵɵadvance(5);
|
|
25803
25550
|
i0.ɵɵtextInterpolate(ctx.requalifyLiftIssuesData.pageTitle);
|
|
@@ -25870,7 +25617,7 @@ class RequalifyLiftPreviousIssuesComponent {
|
|
|
25870
25617
|
}] }); })();
|
|
25871
25618
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RequalifyLiftPreviousIssuesComponent, { className: "RequalifyLiftPreviousIssuesComponent", filePath: "lib\\components\\requalify-lift-previous-issues\\requalify-lift-previous-issues.component.ts", lineNumber: 30 }); })();
|
|
25872
25619
|
|
|
25873
|
-
const _c0$
|
|
25620
|
+
const _c0$d = () => ["fal", "trash-alt"];
|
|
25874
25621
|
function AddPaymentComponent_ion_row_2_Template(rf, ctx) { if (rf & 1) {
|
|
25875
25622
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
25876
25623
|
i0.ɵɵelementStart(0, "ion-row", 7)(1, "ion-col", 8)(2, "div", 9)(3, "div", 10)(4, "label", 11);
|
|
@@ -25919,9 +25666,9 @@ function AddPaymentComponent_ion_row_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
25919
25666
|
i0.ɵɵadvance(3);
|
|
25920
25667
|
i0.ɵɵproperty("showIcon", true);
|
|
25921
25668
|
i0.ɵɵadvance(8);
|
|
25922
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(17, _c0$
|
|
25669
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(17, _c0$d));
|
|
25923
25670
|
} }
|
|
25924
|
-
const _c1$
|
|
25671
|
+
const _c1$b = () => ["fal", "plus"];
|
|
25925
25672
|
class AddPaymentComponent {
|
|
25926
25673
|
constructor(fb, questionnaireService) {
|
|
25927
25674
|
this.fb = fb;
|
|
@@ -26037,7 +25784,7 @@ class AddPaymentComponent {
|
|
|
26037
25784
|
i0.ɵɵadvance(2);
|
|
26038
25785
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(11, 8, "add.payment.header.payment"), "");
|
|
26039
25786
|
i0.ɵɵadvance(4);
|
|
26040
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(10, _c1$
|
|
25787
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(10, _c1$b));
|
|
26041
25788
|
} }, dependencies: [i1$3.IonButton, i1$3.IonCol, i1$3.IonRow, i1$4.NgForOf, i1$6.ɵNgNoValidate, i1$6.NgControlStatus, i1$6.NgControlStatusGroup, i1$6.MaxLengthValidator, i1$6.FormGroupDirective, i1$6.FormControlName, i9$4.Calendar, i13.InputNumber, i10.FaIconComponent, Dropdown, i6$1.TranslatePipe], styles: [".help-block[_ngcontent-%COMP%]{color:red}.text-align[_ngcontent-%COMP%]{padding-top:15px;font-weight:700}.divider[_ngcontent-%COMP%]{border-bottom:1px solid lightgrey}[_nghost-%COMP%] .p-calendar .p-inputtext{max-width:134px!important}.app-fit-content[_ngcontent-%COMP%]{max-width:-moz-fit-content!important;max-width:fit-content!important;margin-left:12px}"] }); }
|
|
26042
25789
|
}
|
|
26043
25790
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AddPaymentComponent, [{
|
|
@@ -26058,8 +25805,8 @@ class AddPaymentComponent {
|
|
|
26058
25805
|
}] }); })();
|
|
26059
25806
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(AddPaymentComponent, { className: "AddPaymentComponent", filePath: "lib\\components\\add-payment\\add-payment.component.ts", lineNumber: 25 }); })();
|
|
26060
25807
|
|
|
26061
|
-
const _c0$
|
|
26062
|
-
const _c1$
|
|
25808
|
+
const _c0$c = ["formDirective"];
|
|
25809
|
+
const _c1$a = () => ({ required: "required." });
|
|
26063
25810
|
class LinkComponent {
|
|
26064
25811
|
constructor(fb) {
|
|
26065
25812
|
this.fb = fb;
|
|
@@ -26119,7 +25866,7 @@ class LinkComponent {
|
|
|
26119
25866
|
}
|
|
26120
25867
|
static { this.ɵfac = function LinkComponent_Factory(t) { return new (t || LinkComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder)); }; }
|
|
26121
25868
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LinkComponent, selectors: [["app-link"]], viewQuery: function LinkComponent_Query(rf, ctx) { if (rf & 1) {
|
|
26122
|
-
i0.ɵɵviewQuery(_c0$
|
|
25869
|
+
i0.ɵɵviewQuery(_c0$c, 5);
|
|
26123
25870
|
} if (rf & 2) {
|
|
26124
25871
|
let _t;
|
|
26125
25872
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.formDirective = _t.first);
|
|
@@ -26150,7 +25897,7 @@ class LinkComponent {
|
|
|
26150
25897
|
i0.ɵɵadvance(1);
|
|
26151
25898
|
i0.ɵɵtextInterpolate1(" ", ctx.text, " ");
|
|
26152
25899
|
i0.ɵɵadvance(1);
|
|
26153
|
-
i0.ɵɵproperty("field", ctx.isClicked)("form", _r0)("errDef", i0.ɵɵpureFunction0(6, _c1$
|
|
25900
|
+
i0.ɵɵproperty("field", ctx.isClicked)("form", _r0)("errDef", i0.ɵɵpureFunction0(6, _c1$a));
|
|
26154
25901
|
} }, dependencies: [i1$3.IonButton, i1$3.IonIcon, i1$6.DefaultValueAccessor, i1$6.NgControlStatus, i1$6.NgControlStatusGroup, i1$6.FormGroupDirective, i1$6.FormControlName, i7$3.InputText, ErrorComponent] }); }
|
|
26155
25902
|
}
|
|
26156
25903
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LinkComponent, [{
|
|
@@ -26181,9 +25928,9 @@ class LinkComponent {
|
|
|
26181
25928
|
}] }); })();
|
|
26182
25929
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LinkComponent, { className: "LinkComponent", filePath: "lib\\components\\link\\link.component.ts", lineNumber: 21 }); })();
|
|
26183
25930
|
|
|
26184
|
-
const _c0$
|
|
26185
|
-
const _c1$
|
|
26186
|
-
const _c2$7 = () => ({ notEqual: _c1$
|
|
25931
|
+
const _c0$b = ["formDirective"];
|
|
25932
|
+
const _c1$9 = "The last 4 digits you have entered do not match the SSN on record.";
|
|
25933
|
+
const _c2$7 = () => ({ notEqual: _c1$9 });
|
|
26187
25934
|
function SignSsnComponent_app_error_4_Template(rf, ctx) { if (rf & 1) {
|
|
26188
25935
|
i0.ɵɵelement(0, "app-error", 4);
|
|
26189
25936
|
} if (rf & 2) {
|
|
@@ -26262,7 +26009,7 @@ class SignSsnComponent {
|
|
|
26262
26009
|
}
|
|
26263
26010
|
static { this.ɵfac = function SignSsnComponent_Factory(t) { return new (t || SignSsnComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(ClaimantContextService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(i4.ActivatedRoute)); }; }
|
|
26264
26011
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignSsnComponent, selectors: [["app-sign-ssn"]], viewQuery: function SignSsnComponent_Query(rf, ctx) { if (rf & 1) {
|
|
26265
|
-
i0.ɵɵviewQuery(_c0$
|
|
26012
|
+
i0.ɵɵviewQuery(_c0$b, 5);
|
|
26266
26013
|
} if (rf & 2) {
|
|
26267
26014
|
let _t;
|
|
26268
26015
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.formDirective = _t.first);
|
|
@@ -26314,7 +26061,7 @@ class SignSsnComponent {
|
|
|
26314
26061
|
class AutocoderModel {
|
|
26315
26062
|
}
|
|
26316
26063
|
|
|
26317
|
-
const _c0$
|
|
26064
|
+
const _c0$a = ["jobTitleFormDirective"];
|
|
26318
26065
|
function JobTitleComponent_ng_template_7_Template(rf, ctx) { if (rf & 1) {
|
|
26319
26066
|
i0.ɵɵelementStart(0, "div")(1, "div");
|
|
26320
26067
|
i0.ɵɵtext(2);
|
|
@@ -26410,7 +26157,7 @@ class JobTitleComponent {
|
|
|
26410
26157
|
}
|
|
26411
26158
|
static { this.ɵfac = function JobTitleComponent_Factory(t) { return new (t || JobTitleComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(QuestionnaireService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(ClaimService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
26412
26159
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: JobTitleComponent, selectors: [["app-job-title"]], viewQuery: function JobTitleComponent_Query(rf, ctx) { if (rf & 1) {
|
|
26413
|
-
i0.ɵɵviewQuery(_c0$
|
|
26160
|
+
i0.ɵɵviewQuery(_c0$a, 5);
|
|
26414
26161
|
} if (rf & 2) {
|
|
26415
26162
|
let _t;
|
|
26416
26163
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.jobTitleFormDirective = _t.first);
|
|
@@ -26464,8 +26211,8 @@ class JobTitleComponent {
|
|
|
26464
26211
|
}] }); })();
|
|
26465
26212
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(JobTitleComponent, { className: "JobTitleComponent", filePath: "lib\\components\\job-title\\job-title.component.ts", lineNumber: 28 }); })();
|
|
26466
26213
|
|
|
26467
|
-
const _c0$
|
|
26468
|
-
const _c1$
|
|
26214
|
+
const _c0$9 = ["bankdtls"];
|
|
26215
|
+
const _c1$8 = ["wcEmployerGrid"];
|
|
26469
26216
|
const _c2$6 = ["wcWrptEmployerGrid"];
|
|
26470
26217
|
const _c3$2 = ["pCalendar"];
|
|
26471
26218
|
const _c4$2 = ["address"];
|
|
@@ -28905,8 +28652,8 @@ class DynamicFormQuestionComponent {
|
|
|
28905
28652
|
}
|
|
28906
28653
|
static { this.ɵfac = function DynamicFormQuestionComponent_Factory(t) { return new (t || DynamicFormQuestionComponent)(i0.ɵɵdirectiveInject(QuestionControlService), i0.ɵɵdirectiveInject(QuestionService), i0.ɵɵdirectiveInject(i6$1.TranslateService), i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(ClaimantService), i0.ɵɵdirectiveInject(WeeklyCertServiceV2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(LoginService)); }; }
|
|
28907
28654
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DynamicFormQuestionComponent, selectors: [["app-question"]], viewQuery: function DynamicFormQuestionComponent_Query(rf, ctx) { if (rf & 1) {
|
|
28908
|
-
i0.ɵɵviewQuery(_c0$
|
|
28909
|
-
i0.ɵɵviewQuery(_c1$
|
|
28655
|
+
i0.ɵɵviewQuery(_c0$9, 5);
|
|
28656
|
+
i0.ɵɵviewQuery(_c1$8, 5);
|
|
28910
28657
|
i0.ɵɵviewQuery(_c2$6, 5);
|
|
28911
28658
|
i0.ɵɵviewQuery(_c3$2, 5);
|
|
28912
28659
|
i0.ɵɵviewQuery(_c4$2, 5);
|
|
@@ -29060,8 +28807,8 @@ class InputFocus {
|
|
|
29060
28807
|
args: ['submit']
|
|
29061
28808
|
}] }); })();
|
|
29062
28809
|
|
|
29063
|
-
const _c0$
|
|
29064
|
-
const _c1$
|
|
28810
|
+
const _c0$8 = ["mfa"];
|
|
28811
|
+
const _c1$7 = ["questionnaireForm"];
|
|
29065
28812
|
const _c2$5 = ["matHorizontalStepper"];
|
|
29066
28813
|
function DynamicFormComponent_div_2_ion_row_5_Template(rf, ctx) { if (rf & 1) {
|
|
29067
28814
|
i0.ɵɵelementStart(0, "ion-row")(1, "ion-col", 13)(2, "div", 14);
|
|
@@ -31042,8 +30789,8 @@ class DynamicFormComponent extends BasePage {
|
|
|
31042
30789
|
}
|
|
31043
30790
|
static { this.ɵfac = function DynamicFormComponent_Factory(t) { return new (t || DynamicFormComponent)(i0.ɵɵdirectiveInject(QuestionService), i0.ɵɵdirectiveInject(QuestionnaireService), i0.ɵɵdirectiveInject(i1$3.NavController), i0.ɵɵdirectiveInject(QuestionControlService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(i6$1.TranslateService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i1$5.Storage), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(CaptchaService), i0.ɵɵdirectiveInject(LexisNexisService), i0.ɵɵdirectiveInject(i4.Router)); }; }
|
|
31044
30791
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DynamicFormComponent, selectors: [["app-dynamic-form"]], viewQuery: function DynamicFormComponent_Query(rf, ctx) { if (rf & 1) {
|
|
31045
|
-
i0.ɵɵviewQuery(_c0$
|
|
31046
|
-
i0.ɵɵviewQuery(_c1$
|
|
30792
|
+
i0.ɵɵviewQuery(_c0$8, 5);
|
|
30793
|
+
i0.ɵɵviewQuery(_c1$7, 5);
|
|
31047
30794
|
i0.ɵɵviewQuery(_c2$5, 5);
|
|
31048
30795
|
} if (rf & 2) {
|
|
31049
30796
|
let _t;
|
|
@@ -31162,7 +30909,7 @@ class StatusModel {
|
|
|
31162
30909
|
}
|
|
31163
30910
|
}
|
|
31164
30911
|
|
|
31165
|
-
const _c0$
|
|
30912
|
+
const _c0$7 = ["questionnaire"];
|
|
31166
30913
|
function RenderQuestionnairePage_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
31167
30914
|
i0.ɵɵelementStart(0, "div", 4);
|
|
31168
30915
|
i0.ɵɵelement(1, "ion-spinner", 5);
|
|
@@ -31339,7 +31086,7 @@ class RenderQuestionnairePage extends BasePage {
|
|
|
31339
31086
|
}
|
|
31340
31087
|
static { this.ɵfac = function RenderQuestionnairePage_Factory(t) { return new (t || RenderQuestionnairePage)(i0.ɵɵdirectiveInject(QuestionService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(QuestionnaireService), i0.ɵɵdirectiveInject(LoginService), i0.ɵɵdirectiveInject(ValidationService), i0.ɵɵdirectiveInject(i4.ActivatedRoute)); }; }
|
|
31341
31088
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RenderQuestionnairePage, selectors: [["app-questionnaire"]], viewQuery: function RenderQuestionnairePage_Query(rf, ctx) { if (rf & 1) {
|
|
31342
|
-
i0.ɵɵviewQuery(_c0$
|
|
31089
|
+
i0.ɵɵviewQuery(_c0$7, 5);
|
|
31343
31090
|
} if (rf & 2) {
|
|
31344
31091
|
let _t;
|
|
31345
31092
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.questionnaire = _t.first);
|
|
@@ -31428,7 +31175,7 @@ class RenderQuestionnairePage extends BasePage {
|
|
|
31428
31175
|
}] }); })();
|
|
31429
31176
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RenderQuestionnairePage, { className: "RenderQuestionnairePage", filePath: "lib\\components\\questionnaire\\render-questionnaire\\render-questionnaire.page.ts", lineNumber: 22 }); })();
|
|
31430
31177
|
|
|
31431
|
-
const _c0$
|
|
31178
|
+
const _c0$6 = ["fbs"];
|
|
31432
31179
|
function MultiQuestionnaireComponent_1_ng_template_0_Template(rf, ctx) { if (rf & 1) {
|
|
31433
31180
|
i0.ɵɵelementStart(0, "span", 3);
|
|
31434
31181
|
i0.ɵɵtext(1);
|
|
@@ -31527,7 +31274,7 @@ function MultiQuestionnaireComponent_p_footer_5_Template(rf, ctx) { if (rf & 1)
|
|
|
31527
31274
|
i0.ɵɵadvance(2);
|
|
31528
31275
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 2, "common.submit"));
|
|
31529
31276
|
} }
|
|
31530
|
-
const _c1$
|
|
31277
|
+
const _c1$6 = () => ({ width: "45vw", height: "inherit" });
|
|
31531
31278
|
const _c2$4 = () => ({ "1200px": "660px", "992px": "660px", "768px": "660px", "576px": "100vw" });
|
|
31532
31279
|
class MultiQuestionnaireComponent {
|
|
31533
31280
|
constructor(questionnaireService) {
|
|
@@ -31623,7 +31370,7 @@ class MultiQuestionnaireComponent {
|
|
|
31623
31370
|
}
|
|
31624
31371
|
static { this.ɵfac = function MultiQuestionnaireComponent_Factory(t) { return new (t || MultiQuestionnaireComponent)(i0.ɵɵdirectiveInject(QuestionnaireService)); }; }
|
|
31625
31372
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MultiQuestionnaireComponent, selectors: [["app-multi-questionnaire"]], viewQuery: function MultiQuestionnaireComponent_Query(rf, ctx) { if (rf & 1) {
|
|
31626
|
-
i0.ɵɵviewQuery(_c0$
|
|
31373
|
+
i0.ɵɵviewQuery(_c0$6, 5);
|
|
31627
31374
|
} if (rf & 2) {
|
|
31628
31375
|
let _t;
|
|
31629
31376
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fbs = _t);
|
|
@@ -31632,7 +31379,7 @@ class MultiQuestionnaireComponent {
|
|
|
31632
31379
|
i0.ɵɵtemplate(1, MultiQuestionnaireComponent_1_Template, 1, 0, null, 1)(2, MultiQuestionnaireComponent_div_2_Template, 2, 1, "div", 1)(3, MultiQuestionnaireComponent_div_3_Template, 11, 6, "div", 1)(4, MultiQuestionnaireComponent_div_4_Template, 11, 6, "div", 1)(5, MultiQuestionnaireComponent_p_footer_5_Template, 7, 4, "p-footer", 1);
|
|
31633
31380
|
i0.ɵɵelementEnd();
|
|
31634
31381
|
} if (rf & 2) {
|
|
31635
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(10, _c1$
|
|
31382
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(10, _c1$6));
|
|
31636
31383
|
i0.ɵɵproperty("visible", ctx.isVisible)("breakpoints", i0.ɵɵpureFunction0(11, _c2$4))("showHeader", ctx.header != null && ctx.header != undefined);
|
|
31637
31384
|
i0.ɵɵadvance(1);
|
|
31638
31385
|
i0.ɵɵproperty("ngIf", ctx.header);
|
|
@@ -32179,8 +31926,8 @@ class CommonSuccessPage extends BasePage {
|
|
|
32179
31926
|
class SsaVerificationModel {
|
|
32180
31927
|
}
|
|
32181
31928
|
|
|
32182
|
-
const _c0$
|
|
32183
|
-
const _c1$
|
|
31929
|
+
const _c0$5 = () => ({ width: "50vw" });
|
|
31930
|
+
const _c1$5 = () => ({ "960px": "60vw", "640px": "100vw" });
|
|
32184
31931
|
class ProfileRedirectComponent {
|
|
32185
31932
|
constructor() {
|
|
32186
31933
|
this.onSuccess = new EventEmitter();
|
|
@@ -32222,8 +31969,8 @@ class ProfileRedirectComponent {
|
|
|
32222
31969
|
i0.ɵɵpipe(21, "translate");
|
|
32223
31970
|
i0.ɵɵelementEnd()()()()()();
|
|
32224
31971
|
} if (rf & 2) {
|
|
32225
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(9, _c0$
|
|
32226
|
-
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(10, _c1$
|
|
31972
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(9, _c0$5));
|
|
31973
|
+
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(10, _c1$5));
|
|
32227
31974
|
i0.ɵɵadvance(17);
|
|
32228
31975
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(18, 5, "common.close"));
|
|
32229
31976
|
i0.ɵɵadvance(3);
|
|
@@ -32242,8 +31989,8 @@ class ProfileRedirectComponent {
|
|
|
32242
31989
|
}] }); })();
|
|
32243
31990
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileRedirectComponent, { className: "ProfileRedirectComponent", filePath: "lib\\components\\profile-redirect\\profile-redirect.component.ts", lineNumber: 8 }); })();
|
|
32244
31991
|
|
|
32245
|
-
const _c0$
|
|
32246
|
-
const _c1$
|
|
31992
|
+
const _c0$4 = ["ssnReverifyFormDirective"];
|
|
31993
|
+
const _c1$4 = () => ({ width: "50vw" });
|
|
32247
31994
|
const _c2$3 = () => ({ "960px": "60vw", "640px": "100vw" });
|
|
32248
31995
|
const _c3$1 = (a0, a1) => ({ required: a0, pattern: a1 });
|
|
32249
31996
|
const _c4$1 = a0 => ({ required: a0 });
|
|
@@ -32301,7 +32048,7 @@ class SsnReverifyComponent {
|
|
|
32301
32048
|
}
|
|
32302
32049
|
static { this.ɵfac = function SsnReverifyComponent_Factory(t) { return new (t || SsnReverifyComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
32303
32050
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SsnReverifyComponent, selectors: [["app-ssn-reverify"]], viewQuery: function SsnReverifyComponent_Query(rf, ctx) { if (rf & 1) {
|
|
32304
|
-
i0.ɵɵviewQuery(_c0$
|
|
32051
|
+
i0.ɵɵviewQuery(_c0$4, 5);
|
|
32305
32052
|
} if (rf & 2) {
|
|
32306
32053
|
let _t;
|
|
32307
32054
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.ssnReverifyFormDirective = _t.first);
|
|
@@ -32351,7 +32098,7 @@ class SsnReverifyComponent {
|
|
|
32351
32098
|
i0.ɵɵelementEnd()()()()();
|
|
32352
32099
|
} if (rf & 2) {
|
|
32353
32100
|
const _r0 = i0.ɵɵreference(2);
|
|
32354
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(46, _c1$
|
|
32101
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(46, _c1$4));
|
|
32355
32102
|
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(47, _c2$3));
|
|
32356
32103
|
i0.ɵɵadvance(1);
|
|
32357
32104
|
i0.ɵɵproperty("formGroup", ctx.form);
|
|
@@ -32861,7 +32608,7 @@ function JobSearchResultPageComponent_p_table_8_ng_template_1_Template(rf, ctx)
|
|
|
32861
32608
|
i0.ɵɵadvance(3);
|
|
32862
32609
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(15, 13, "job.search.results.table.header.View"));
|
|
32863
32610
|
} }
|
|
32864
|
-
const _c0$
|
|
32611
|
+
const _c0$3 = () => ["far", "angle-right"];
|
|
32865
32612
|
function JobSearchResultPageComponent_p_table_8_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
32866
32613
|
i0.ɵɵelementStart(0, "tr", 8)(1, "td", 7);
|
|
32867
32614
|
i0.ɵɵtext(2);
|
|
@@ -32891,7 +32638,7 @@ function JobSearchResultPageComponent_p_table_8_ng_template_2_Template(rf, ctx)
|
|
|
32891
32638
|
i0.ɵɵadvance(2);
|
|
32892
32639
|
i0.ɵɵpropertyInterpolate("href", matchingJobs_r9.jobOrderURL ? matchingJobs_r9.jobOrderURL : "N/A");
|
|
32893
32640
|
i0.ɵɵadvance(1);
|
|
32894
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(6, _c0$
|
|
32641
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(6, _c0$3));
|
|
32895
32642
|
} }
|
|
32896
32643
|
function JobSearchResultPageComponent_p_table_8_Template(rf, ctx) { if (rf & 1) {
|
|
32897
32644
|
i0.ɵɵelementStart(0, "p-table", 5);
|
|
@@ -32914,7 +32661,7 @@ function JobSearchResultPageComponent_ng_template_9_Template(rf, ctx) { if (rf &
|
|
|
32914
32661
|
i0.ɵɵadvance(5);
|
|
32915
32662
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 1, "common.close"));
|
|
32916
32663
|
} }
|
|
32917
|
-
const _c1$
|
|
32664
|
+
const _c1$3 = () => ({ width: "60vw" });
|
|
32918
32665
|
const _c2$2 = () => ({ "1024px": "75vw", "768px": "85vw", "640px": "100vw" });
|
|
32919
32666
|
class JobSearchResultPageComponent {
|
|
32920
32667
|
constructor(cs, loggerService, translateService) {
|
|
@@ -32952,7 +32699,7 @@ class JobSearchResultPageComponent {
|
|
|
32952
32699
|
i0.ɵɵtemplate(9, JobSearchResultPageComponent_ng_template_9_Template, 7, 3, "ng-template", 4);
|
|
32953
32700
|
i0.ɵɵelementEnd();
|
|
32954
32701
|
} if (rf & 2) {
|
|
32955
|
-
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(7, _c1$
|
|
32702
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(7, _c1$3));
|
|
32956
32703
|
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(8, _c2$2));
|
|
32957
32704
|
i0.ɵɵadvance(5);
|
|
32958
32705
|
i0.ɵɵproperty("ngIf", ctx.matchingJobs == null && ctx.areJobsFetched == false);
|
|
@@ -32972,22 +32719,22 @@ class JobSearchResultPageComponent {
|
|
|
32972
32719
|
}] }); })();
|
|
32973
32720
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(JobSearchResultPageComponent, { className: "JobSearchResultPageComponent", filePath: "lib\\components\\job-search-result-page\\job-search-result-page.component.ts", lineNumber: 14 }); })();
|
|
32974
32721
|
|
|
32975
|
-
const _c0$
|
|
32722
|
+
const _c0$2 = a1 => ["far", a1];
|
|
32976
32723
|
function DashboardCardComponent_ion_card_content_4_p_scrollPanel_1_ion_row_1_fa_icon_2_Template(rf, ctx) { if (rf & 1) {
|
|
32977
32724
|
i0.ɵɵelement(0, "fa-icon", 14);
|
|
32978
32725
|
} if (rf & 2) {
|
|
32979
32726
|
const c_r5 = i0.ɵɵnextContext().$implicit;
|
|
32980
32727
|
const ctx_r6 = i0.ɵɵnextContext(3);
|
|
32981
32728
|
i0.ɵɵclassMapInterpolate1("icon-", ctx_r6.type, "");
|
|
32982
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c0$
|
|
32729
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c0$2, c_r5.icon));
|
|
32983
32730
|
} }
|
|
32984
|
-
const _c1$
|
|
32731
|
+
const _c1$2 = () => ["far", "info-circle"];
|
|
32985
32732
|
function DashboardCardComponent_ion_card_content_4_p_scrollPanel_1_ion_row_1_fa_icon_3_Template(rf, ctx) { if (rf & 1) {
|
|
32986
32733
|
i0.ɵɵelement(0, "fa-icon", 14);
|
|
32987
32734
|
} if (rf & 2) {
|
|
32988
32735
|
const ctx_r7 = i0.ɵɵnextContext(4);
|
|
32989
32736
|
i0.ɵɵclassMapInterpolate1("icon-", ctx_r7.type, "");
|
|
32990
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c1$
|
|
32737
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c1$2));
|
|
32991
32738
|
} }
|
|
32992
32739
|
function DashboardCardComponent_ion_card_content_4_p_scrollPanel_1_ion_row_1_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
32993
32740
|
i0.ɵɵelementStart(0, "div");
|
|
@@ -33767,7 +33514,7 @@ class CmpService extends BaseService {
|
|
|
33767
33514
|
}]
|
|
33768
33515
|
}], () => [{ type: i1$2.HttpClient }], null); })();
|
|
33769
33516
|
|
|
33770
|
-
const _c0 = ["contactFormDirective"];
|
|
33517
|
+
const _c0$1 = ["contactFormDirective"];
|
|
33771
33518
|
function ContactUsComponent_h1_0_Template(rf, ctx) { if (rf & 1) {
|
|
33772
33519
|
i0.ɵɵelementStart(0, "h1", 4);
|
|
33773
33520
|
i0.ɵɵtext(1);
|
|
@@ -33786,7 +33533,7 @@ function ContactUsComponent_div_1_p_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
33786
33533
|
i0.ɵɵadvance(1);
|
|
33787
33534
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(2, 1, "contact.us.pageHeader"), " ");
|
|
33788
33535
|
} }
|
|
33789
|
-
const _c1 = () => ({ required: "required" });
|
|
33536
|
+
const _c1$1 = () => ({ required: "required" });
|
|
33790
33537
|
function ContactUsComponent_div_1_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
33791
33538
|
const _r20 = i0.ɵɵgetCurrentView();
|
|
33792
33539
|
i0.ɵɵelementStart(0, "div", 32)(1, "label", 33);
|
|
@@ -33809,7 +33556,7 @@ function ContactUsComponent_div_1_div_26_Template(rf, ctx) { if (rf & 1) {
|
|
|
33809
33556
|
i0.ɵɵproperty("type", ctx_r7.inputType);
|
|
33810
33557
|
i0.ɵɵadvance(1);
|
|
33811
33558
|
i0.ɵɵclassMap("app-grid");
|
|
33812
|
-
i0.ɵɵproperty("field", ctx_r7.ssn)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1));
|
|
33559
|
+
i0.ɵɵproperty("field", ctx_r7.ssn)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1$1));
|
|
33813
33560
|
} }
|
|
33814
33561
|
function ContactUsComponent_div_1_div_27_Template(rf, ctx) { if (rf & 1) {
|
|
33815
33562
|
i0.ɵɵelementStart(0, "div", 32)(1, "label", 35);
|
|
@@ -33848,7 +33595,7 @@ function ContactUsComponent_div_1_div_28_Template(rf, ctx) { if (rf & 1) {
|
|
|
33848
33595
|
i0.ɵɵproperty("type", ctx_r9.inputType);
|
|
33849
33596
|
i0.ɵɵadvance(1);
|
|
33850
33597
|
i0.ɵɵclassMap("app-grid");
|
|
33851
|
-
i0.ɵɵproperty("field", ctx_r9.ean)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1));
|
|
33598
|
+
i0.ɵɵproperty("field", ctx_r9.ean)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1$1));
|
|
33852
33599
|
} }
|
|
33853
33600
|
function ContactUsComponent_div_1_div_29_Template(rf, ctx) { if (rf & 1) {
|
|
33854
33601
|
const _r26 = i0.ɵɵgetCurrentView();
|
|
@@ -33872,7 +33619,7 @@ function ContactUsComponent_div_1_div_29_Template(rf, ctx) { if (rf & 1) {
|
|
|
33872
33619
|
i0.ɵɵproperty("type", ctx_r10.inputType);
|
|
33873
33620
|
i0.ɵɵadvance(1);
|
|
33874
33621
|
i0.ɵɵclassMap("app-grid");
|
|
33875
|
-
i0.ɵɵproperty("field", ctx_r10.fein)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1));
|
|
33622
|
+
i0.ɵɵproperty("field", ctx_r10.fein)("form", _r6)("errDef", i0.ɵɵpureFunction0(9, _c1$1));
|
|
33876
33623
|
} }
|
|
33877
33624
|
function ContactUsComponent_div_1_div_30_Template(rf, ctx) { if (rf & 1) {
|
|
33878
33625
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 41);
|
|
@@ -33891,7 +33638,7 @@ function ContactUsComponent_div_1_div_30_Template(rf, ctx) { if (rf & 1) {
|
|
|
33891
33638
|
i0.ɵɵproperty("options", ctx_r11.activeComplaintCategory)("autoDisplayFirst", false);
|
|
33892
33639
|
i0.ɵɵadvance(1);
|
|
33893
33640
|
i0.ɵɵclassMap("app-grid");
|
|
33894
|
-
i0.ɵɵproperty("field", ctx_r11.selectedReason)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33641
|
+
i0.ɵɵproperty("field", ctx_r11.selectedReason)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
33895
33642
|
} }
|
|
33896
33643
|
function ContactUsComponent_div_1_div_60_Template(rf, ctx) { if (rf & 1) {
|
|
33897
33644
|
i0.ɵɵelementStart(0, "div", 10);
|
|
@@ -33903,7 +33650,7 @@ function ContactUsComponent_div_1_div_60_Template(rf, ctx) { if (rf & 1) {
|
|
|
33903
33650
|
const ctx_r12 = i0.ɵɵnextContext();
|
|
33904
33651
|
i0.ɵɵadvance(2);
|
|
33905
33652
|
i0.ɵɵclassMap("app-grid");
|
|
33906
|
-
i0.ɵɵproperty("field", ctx_r12.captcha)("form", _r6)("errDef", i0.ɵɵpureFunction0(5, _c1));
|
|
33653
|
+
i0.ɵɵproperty("field", ctx_r12.captcha)("form", _r6)("errDef", i0.ɵɵpureFunction0(5, _c1$1));
|
|
33907
33654
|
} }
|
|
33908
33655
|
function ContactUsComponent_div_1_div_61_Template(rf, ctx) { if (rf & 1) {
|
|
33909
33656
|
const _r29 = i0.ɵɵgetCurrentView();
|
|
@@ -33926,7 +33673,7 @@ function ContactUsComponent_div_1_div_61_Template(rf, ctx) { if (rf & 1) {
|
|
|
33926
33673
|
i0.ɵɵproperty("options", ctx_r13.allDepartments)("autoDisplayFirst", false);
|
|
33927
33674
|
i0.ɵɵadvance(1);
|
|
33928
33675
|
i0.ɵɵclassMap("app-grid");
|
|
33929
|
-
i0.ɵɵproperty("field", ctx_r13.division)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33676
|
+
i0.ɵɵproperty("field", ctx_r13.division)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
33930
33677
|
} }
|
|
33931
33678
|
function ContactUsComponent_div_1_div_62_Template(rf, ctx) { if (rf & 1) {
|
|
33932
33679
|
const _r31 = i0.ɵɵgetCurrentView();
|
|
@@ -33949,7 +33696,7 @@ function ContactUsComponent_div_1_div_62_Template(rf, ctx) { if (rf & 1) {
|
|
|
33949
33696
|
i0.ɵɵproperty("options", ctx_r14.unitsBasedOnDept)("autoDisplayFirst", false);
|
|
33950
33697
|
i0.ɵɵadvance(1);
|
|
33951
33698
|
i0.ɵɵclassMap("app-grid");
|
|
33952
|
-
i0.ɵɵproperty("field", ctx_r14.unit)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33699
|
+
i0.ɵɵproperty("field", ctx_r14.unit)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
33953
33700
|
} }
|
|
33954
33701
|
function ContactUsComponent_div_1_div_63_Template(rf, ctx) { if (rf & 1) {
|
|
33955
33702
|
const _r33 = i0.ɵɵgetCurrentView();
|
|
@@ -33973,7 +33720,7 @@ function ContactUsComponent_div_1_div_63_Template(rf, ctx) { if (rf & 1) {
|
|
|
33973
33720
|
i0.ɵɵproperty("options", ctx_r15.allRoles)("autoDisplayFirst", false);
|
|
33974
33721
|
i0.ɵɵadvance(1);
|
|
33975
33722
|
i0.ɵɵclassMap("app-grid");
|
|
33976
|
-
i0.ɵɵproperty("field", ctx_r15.generalAssignment)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33723
|
+
i0.ɵɵproperty("field", ctx_r15.generalAssignment)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
33977
33724
|
} }
|
|
33978
33725
|
function ContactUsComponent_div_1_div_64_Template(rf, ctx) { if (rf & 1) {
|
|
33979
33726
|
i0.ɵɵelementStart(0, "div", 32)(1, "label", 50);
|
|
@@ -33992,7 +33739,7 @@ function ContactUsComponent_div_1_div_64_Template(rf, ctx) { if (rf & 1) {
|
|
|
33992
33739
|
i0.ɵɵproperty("options", ctx_r16.usersFLname)("autoDisplayFirst", false);
|
|
33993
33740
|
i0.ɵɵadvance(1);
|
|
33994
33741
|
i0.ɵɵclassMap("app-grid");
|
|
33995
|
-
i0.ɵɵproperty("field", ctx_r16.assignCaseTo)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33742
|
+
i0.ɵɵproperty("field", ctx_r16.assignCaseTo)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
33996
33743
|
} }
|
|
33997
33744
|
function ContactUsComponent_div_1_div_65_Template(rf, ctx) { if (rf & 1) {
|
|
33998
33745
|
i0.ɵɵelementStart(0, "div", 14)(1, "label", 52);
|
|
@@ -34011,7 +33758,7 @@ function ContactUsComponent_div_1_div_65_Template(rf, ctx) { if (rf & 1) {
|
|
|
34011
33758
|
i0.ɵɵproperty("options", ctx_r17.msgGeneratedThroughList)("autoDisplayFirst", false);
|
|
34012
33759
|
i0.ɵɵadvance(1);
|
|
34013
33760
|
i0.ɵɵclassMap("app-grid");
|
|
34014
|
-
i0.ɵɵproperty("field", ctx_r17.generatedThrough)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1));
|
|
33761
|
+
i0.ɵɵproperty("field", ctx_r17.generatedThrough)("form", _r6)("errDef", i0.ɵɵpureFunction0(10, _c1$1));
|
|
34015
33762
|
} }
|
|
34016
33763
|
function ContactUsComponent_div_1_div_66_Template(rf, ctx) { if (rf & 1) {
|
|
34017
33764
|
i0.ɵɵelementStart(0, "div", 10)(1, "label", 54);
|
|
@@ -34102,17 +33849,17 @@ function ContactUsComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
34102
33849
|
i0.ɵɵproperty("options", ctx_r1.type);
|
|
34103
33850
|
i0.ɵɵadvance(1);
|
|
34104
33851
|
i0.ɵɵclassMap("app-grid");
|
|
34105
|
-
i0.ɵɵproperty("field", ctx_r1.userType)("form", _r6)("errDef", i0.ɵɵpureFunction0(65, _c1));
|
|
33852
|
+
i0.ɵɵproperty("field", ctx_r1.userType)("form", _r6)("errDef", i0.ɵɵpureFunction0(65, _c1$1));
|
|
34106
33853
|
i0.ɵɵadvance(3);
|
|
34107
33854
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(15, 51, "contact.us.firstname"));
|
|
34108
33855
|
i0.ɵɵadvance(4);
|
|
34109
33856
|
i0.ɵɵclassMap("app-grid");
|
|
34110
|
-
i0.ɵɵproperty("field", ctx_r1.firstName)("form", _r6)("errDef", i0.ɵɵpureFunction0(66, _c1));
|
|
33857
|
+
i0.ɵɵproperty("field", ctx_r1.firstName)("form", _r6)("errDef", i0.ɵɵpureFunction0(66, _c1$1));
|
|
34111
33858
|
i0.ɵɵadvance(3);
|
|
34112
33859
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(22, 53, "contact.us.lastName"));
|
|
34113
33860
|
i0.ɵɵadvance(4);
|
|
34114
33861
|
i0.ɵɵclassMap("app-grid");
|
|
34115
|
-
i0.ɵɵproperty("field", ctx_r1.lastName)("form", _r6)("errDef", i0.ɵɵpureFunction0(67, _c1));
|
|
33862
|
+
i0.ɵɵproperty("field", ctx_r1.lastName)("form", _r6)("errDef", i0.ɵɵpureFunction0(67, _c1$1));
|
|
34116
33863
|
i0.ɵɵadvance(1);
|
|
34117
33864
|
i0.ɵɵproperty("ngIf", ctx_r1.userType.value == "CLMT");
|
|
34118
33865
|
i0.ɵɵadvance(1);
|
|
@@ -34127,7 +33874,7 @@ function ContactUsComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
34127
33874
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 55, "contact.us.issue"));
|
|
34128
33875
|
i0.ɵɵadvance(5);
|
|
34129
33876
|
i0.ɵɵclassMap("app-grid");
|
|
34130
|
-
i0.ɵɵproperty("field", ctx_r1.issue)("form", _r6)("errDef", i0.ɵɵpureFunction0(68, _c1));
|
|
33877
|
+
i0.ɵɵproperty("field", ctx_r1.issue)("form", _r6)("errDef", i0.ɵɵpureFunction0(68, _c1$1));
|
|
34131
33878
|
i0.ɵɵadvance(2);
|
|
34132
33879
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(41, 57, "contact.us.issueNotes"));
|
|
34133
33880
|
i0.ɵɵadvance(4);
|
|
@@ -34672,7 +34419,7 @@ class ContactUsComponent {
|
|
|
34672
34419
|
}
|
|
34673
34420
|
static { this.ɵfac = function ContactUsComponent_Factory(t) { return new (t || ContactUsComponent)(i0.ɵɵdirectiveInject(i1$6.UntypedFormBuilder), i0.ɵɵdirectiveInject(CaseService), i0.ɵɵdirectiveInject(CmpService), i0.ɵɵdirectiveInject(SecurityService), i0.ɵɵdirectiveInject(UtilService), i0.ɵɵdirectiveInject(LoggerService), i0.ɵɵdirectiveInject(i6$1.TranslateService)); }; }
|
|
34674
34421
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContactUsComponent, selectors: [["app-contact-us"]], viewQuery: function ContactUsComponent_Query(rf, ctx) { if (rf & 1) {
|
|
34675
|
-
i0.ɵɵviewQuery(_c0, 5);
|
|
34422
|
+
i0.ɵɵviewQuery(_c0$1, 5);
|
|
34676
34423
|
} if (rf & 2) {
|
|
34677
34424
|
let _t;
|
|
34678
34425
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contactFormDirective = _t.first);
|
|
@@ -34888,6 +34635,689 @@ class FileDownloadComponent {
|
|
|
34888
34635
|
}] }); })();
|
|
34889
34636
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FileDownloadComponent, { className: "FileDownloadComponent", filePath: "lib\\components\\file-download\\file-download.component.ts", lineNumber: 15 }); })();
|
|
34890
34637
|
|
|
34638
|
+
class LexChatService {
|
|
34639
|
+
constructor(http, loginService) {
|
|
34640
|
+
this.http = http;
|
|
34641
|
+
this.loginService = loginService;
|
|
34642
|
+
this.chatIDtheft = false;
|
|
34643
|
+
this.sessionAttributes = {};
|
|
34644
|
+
/** Emit true to open the chatbot popup from anywhere */
|
|
34645
|
+
this.chatOpen$ = new BehaviorSubject(false);
|
|
34646
|
+
this.sessionId = this.generateSessionId();
|
|
34647
|
+
}
|
|
34648
|
+
generateSessionId() {
|
|
34649
|
+
if (typeof crypto !== 'undefined' && 'randomUUID' in crypto) {
|
|
34650
|
+
return 'web-' + crypto.randomUUID();
|
|
34651
|
+
}
|
|
34652
|
+
return 'web-' + Math.random().toString(36).substring(2);
|
|
34653
|
+
}
|
|
34654
|
+
async sendMessage(text, clientFilter) {
|
|
34655
|
+
const mergedSessionAttrs = { ...this.sessionAttributes };
|
|
34656
|
+
if (clientFilter && clientFilter.trim()) {
|
|
34657
|
+
mergedSessionAttrs['QNAClientFilter'] = clientFilter.trim();
|
|
34658
|
+
}
|
|
34659
|
+
const headers = new HttpHeaders({ 'Content-Type': 'application/json' });
|
|
34660
|
+
// Use CP's access_token as sessionId when authenticated so Lambda can call backend APIs
|
|
34661
|
+
// Pre-login sends null since no backend API access is needed for basic FAQ
|
|
34662
|
+
const user = this.loginService.getUser();
|
|
34663
|
+
const effectiveSessionId = user?.access_token || this.sessionId;
|
|
34664
|
+
// console.log('Chat session ID:', effectiveSessionId);
|
|
34665
|
+
const payload = {
|
|
34666
|
+
sessionId: effectiveSessionId,
|
|
34667
|
+
text,
|
|
34668
|
+
sessionState: Object.keys(mergedSessionAttrs).length
|
|
34669
|
+
? { sessionAttributes: mergedSessionAttrs }
|
|
34670
|
+
: undefined,
|
|
34671
|
+
};
|
|
34672
|
+
try {
|
|
34673
|
+
const response = await this.http
|
|
34674
|
+
.post(LibConstants.chatbotLambdaUrl, payload, { headers })
|
|
34675
|
+
.toPromise();
|
|
34676
|
+
const messages = response?.messages ?? [];
|
|
34677
|
+
this.sessionAttributes = {
|
|
34678
|
+
...mergedSessionAttrs,
|
|
34679
|
+
...(response?.sessionState?.sessionAttributes ?? {})
|
|
34680
|
+
};
|
|
34681
|
+
return {
|
|
34682
|
+
content: messages[0]?.content ?? "Sorry, I didn't get a response.",
|
|
34683
|
+
url: messages[0]?.url ?? [],
|
|
34684
|
+
isPwd: this.sessionAttributes['isPwd'] ?? '',
|
|
34685
|
+
isAck: this.sessionAttributes['isAck'] ?? '',
|
|
34686
|
+
is_end_session: this.sessionAttributes['end_session'] ?? ''
|
|
34687
|
+
};
|
|
34688
|
+
}
|
|
34689
|
+
catch (err) {
|
|
34690
|
+
console.error('LexChatService error:', err);
|
|
34691
|
+
throw err;
|
|
34692
|
+
}
|
|
34693
|
+
}
|
|
34694
|
+
resetSession(options) {
|
|
34695
|
+
this.sessionAttributes = {};
|
|
34696
|
+
if (options?.regenerateSessionId) {
|
|
34697
|
+
this.sessionId = this.generateSessionId();
|
|
34698
|
+
}
|
|
34699
|
+
}
|
|
34700
|
+
openChat(chatIDtheft = false) {
|
|
34701
|
+
this.chatIDtheft = chatIDtheft;
|
|
34702
|
+
this.chatOpen$.next(true);
|
|
34703
|
+
}
|
|
34704
|
+
closeChat() {
|
|
34705
|
+
this.chatOpen$.next(false);
|
|
34706
|
+
}
|
|
34707
|
+
static { this.ɵfac = function LexChatService_Factory(t) { return new (t || LexChatService)(i0.ɵɵinject(i1$2.HttpClient), i0.ɵɵinject(LoginService)); }; }
|
|
34708
|
+
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LexChatService, factory: LexChatService.ɵfac, providedIn: 'root' }); }
|
|
34709
|
+
}
|
|
34710
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LexChatService, [{
|
|
34711
|
+
type: Injectable,
|
|
34712
|
+
args: [{
|
|
34713
|
+
providedIn: 'root'
|
|
34714
|
+
}]
|
|
34715
|
+
}], () => [{ type: i1$2.HttpClient }, { type: LoginService }], null); })();
|
|
34716
|
+
|
|
34717
|
+
const _c0 = ["messageInput"];
|
|
34718
|
+
const _c1 = ["chatWindow"];
|
|
34719
|
+
function ChatbotLexComponent_button_0_Template(rf, ctx) { if (rf & 1) {
|
|
34720
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
34721
|
+
i0.ɵɵelementStart(0, "button", 2);
|
|
34722
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_button_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.toggleChat()); });
|
|
34723
|
+
i0.ɵɵtext(1, " \uD83D\uDCAC\n");
|
|
34724
|
+
i0.ɵɵelementEnd();
|
|
34725
|
+
} }
|
|
34726
|
+
function ChatbotLexComponent_div_1_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
34727
|
+
i0.ɵɵelementStart(0, "span");
|
|
34728
|
+
i0.ɵɵtext(1, "\u26F6");
|
|
34729
|
+
i0.ɵɵelementEnd();
|
|
34730
|
+
} }
|
|
34731
|
+
function ChatbotLexComponent_div_1_div_22_img_2_Template(rf, ctx) { if (rf & 1) {
|
|
34732
|
+
i0.ɵɵelement(0, "img", 31);
|
|
34733
|
+
} }
|
|
34734
|
+
function ChatbotLexComponent_div_1_div_22_ng_container_3_button_4_Template(rf, ctx) { if (rf & 1) {
|
|
34735
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
34736
|
+
i0.ɵɵelementStart(0, "button", 34);
|
|
34737
|
+
i0.ɵɵlistener("mouseenter", function ChatbotLexComponent_div_1_div_22_ng_container_3_button_4_Template_button_mouseenter_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r18); const s_r15 = restoredCtx.$implicit; const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r16 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r16.onStarEnter(i_r9, s_r15)); })("click", function ChatbotLexComponent_div_1_div_22_ng_container_3_button_4_Template_button_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r18); const s_r15 = restoredCtx.$implicit; const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r19 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r19.onStarClick(s_r15, i_r9)); });
|
|
34738
|
+
i0.ɵɵtext(1, " \u2605 ");
|
|
34739
|
+
i0.ɵɵelementEnd();
|
|
34740
|
+
} if (rf & 2) {
|
|
34741
|
+
const s_r15 = ctx.$implicit;
|
|
34742
|
+
const i_r9 = i0.ɵɵnextContext(2).index;
|
|
34743
|
+
const ctx_r14 = i0.ɵɵnextContext(2);
|
|
34744
|
+
i0.ɵɵclassProp("filled", ctx_r14.isStarFilled(i_r9, s_r15));
|
|
34745
|
+
i0.ɵɵpropertyInterpolate1("title", "Rate ", s_r15, " star(s)");
|
|
34746
|
+
i0.ɵɵattribute("aria-label", "Rate " + s_r15 + " star(s)");
|
|
34747
|
+
} }
|
|
34748
|
+
function ChatbotLexComponent_div_1_div_22_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
34749
|
+
const _r24 = i0.ɵɵgetCurrentView();
|
|
34750
|
+
i0.ɵɵelementContainerStart(0);
|
|
34751
|
+
i0.ɵɵelementStart(1, "div");
|
|
34752
|
+
i0.ɵɵtext(2, "Your feedback matters to us");
|
|
34753
|
+
i0.ɵɵelementEnd();
|
|
34754
|
+
i0.ɵɵelementStart(3, "div", 32);
|
|
34755
|
+
i0.ɵɵlistener("mouseleave", function ChatbotLexComponent_div_1_div_22_ng_container_3_Template_div_mouseleave_3_listener() { i0.ɵɵrestoreView(_r24); const i_r9 = i0.ɵɵnextContext().index; const ctx_r22 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r22.onStarLeave(i_r9)); });
|
|
34756
|
+
i0.ɵɵtemplate(4, ChatbotLexComponent_div_1_div_22_ng_container_3_button_4_Template, 2, 4, "button", 33);
|
|
34757
|
+
i0.ɵɵelementEnd();
|
|
34758
|
+
i0.ɵɵelementContainerEnd();
|
|
34759
|
+
} if (rf & 2) {
|
|
34760
|
+
const ctx_r11 = i0.ɵɵnextContext(3);
|
|
34761
|
+
i0.ɵɵadvance(4);
|
|
34762
|
+
i0.ɵɵproperty("ngForOf", ctx_r11.getStars());
|
|
34763
|
+
} }
|
|
34764
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
34765
|
+
const _r30 = i0.ɵɵgetCurrentView();
|
|
34766
|
+
i0.ɵɵelementStart(0, "div", 39)(1, "button", 40);
|
|
34767
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_div_22_ng_template_4_div_3_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r30); const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r28 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r28.onYesNoClick("Yes", i_r9)); });
|
|
34768
|
+
i0.ɵɵtext(2, "Yes");
|
|
34769
|
+
i0.ɵɵelementEnd();
|
|
34770
|
+
i0.ɵɵelementStart(3, "button", 41);
|
|
34771
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_div_22_ng_template_4_div_3_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r30); const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r31 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r31.onYesNoClick("No", i_r9)); });
|
|
34772
|
+
i0.ɵɵtext(4, "No");
|
|
34773
|
+
i0.ɵɵelementEnd()();
|
|
34774
|
+
} }
|
|
34775
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
34776
|
+
const _r35 = i0.ɵɵgetCurrentView();
|
|
34777
|
+
i0.ɵɵelementStart(0, "div", 42)(1, "button", 43);
|
|
34778
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_div_22_ng_template_4_div_4_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r35); const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r33 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r33.sendFeedback("Thumbs up", i_r9)); });
|
|
34779
|
+
i0.ɵɵtext(2, "\uD83D\uDC4D");
|
|
34780
|
+
i0.ɵɵelementEnd();
|
|
34781
|
+
i0.ɵɵelementStart(3, "button", 44);
|
|
34782
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_div_22_ng_template_4_div_4_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r35); const i_r9 = i0.ɵɵnextContext(2).index; const ctx_r36 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r36.sendFeedback("Thumbs down", i_r9)); });
|
|
34783
|
+
i0.ɵɵtext(4, "\uD83D\uDC4E");
|
|
34784
|
+
i0.ɵɵelementEnd()();
|
|
34785
|
+
} }
|
|
34786
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_div_1_button_1_Template(rf, ctx) { if (rf & 1) {
|
|
34787
|
+
const _r43 = i0.ɵɵgetCurrentView();
|
|
34788
|
+
i0.ɵɵelementStart(0, "button", 40);
|
|
34789
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_div_1_button_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r43); const url_r39 = i0.ɵɵnextContext().$implicit; const ctx_r41 = i0.ɵɵnextContext(5); return i0.ɵɵresetView(ctx_r41.openLink(url_r39)); });
|
|
34790
|
+
i0.ɵɵtext(1);
|
|
34791
|
+
i0.ɵɵelementEnd();
|
|
34792
|
+
} if (rf & 2) {
|
|
34793
|
+
const url_r39 = i0.ɵɵnextContext().$implicit;
|
|
34794
|
+
i0.ɵɵadvance(1);
|
|
34795
|
+
i0.ɵɵtextInterpolate(url_r39);
|
|
34796
|
+
} }
|
|
34797
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
34798
|
+
i0.ɵɵelementStart(0, "div");
|
|
34799
|
+
i0.ɵɵtemplate(1, ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_div_1_button_1_Template, 2, 1, "button", 46);
|
|
34800
|
+
i0.ɵɵelementEnd();
|
|
34801
|
+
} if (rf & 2) {
|
|
34802
|
+
const msg_r8 = i0.ɵɵnextContext(3).$implicit;
|
|
34803
|
+
i0.ɵɵadvance(1);
|
|
34804
|
+
i0.ɵɵproperty("ngIf", msg_r8.from === "bot");
|
|
34805
|
+
} }
|
|
34806
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
34807
|
+
i0.ɵɵelementStart(0, "div");
|
|
34808
|
+
i0.ɵɵtemplate(1, ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_div_1_Template, 2, 1, "div", 45);
|
|
34809
|
+
i0.ɵɵelementEnd();
|
|
34810
|
+
} if (rf & 2) {
|
|
34811
|
+
const msg_r8 = i0.ɵɵnextContext(2).$implicit;
|
|
34812
|
+
i0.ɵɵadvance(1);
|
|
34813
|
+
i0.ɵɵproperty("ngForOf", msg_r8.url);
|
|
34814
|
+
} }
|
|
34815
|
+
function ChatbotLexComponent_div_1_div_22_ng_template_4_Template(rf, ctx) { if (rf & 1) {
|
|
34816
|
+
i0.ɵɵelementStart(0, "div", 35)(1, "span", 36);
|
|
34817
|
+
i0.ɵɵtext(2);
|
|
34818
|
+
i0.ɵɵelementEnd();
|
|
34819
|
+
i0.ɵɵtemplate(3, ChatbotLexComponent_div_1_div_22_ng_template_4_div_3_Template, 5, 0, "div", 37)(4, ChatbotLexComponent_div_1_div_22_ng_template_4_div_4_Template, 5, 0, "div", 38)(5, ChatbotLexComponent_div_1_div_22_ng_template_4_div_5_Template, 2, 1, "div", 6);
|
|
34820
|
+
i0.ɵɵelementEnd();
|
|
34821
|
+
} if (rf & 2) {
|
|
34822
|
+
const ctx_r47 = i0.ɵɵnextContext();
|
|
34823
|
+
const msg_r8 = ctx_r47.$implicit;
|
|
34824
|
+
const i_r9 = ctx_r47.index;
|
|
34825
|
+
const ctx_r12 = i0.ɵɵnextContext(2);
|
|
34826
|
+
i0.ɵɵadvance(2);
|
|
34827
|
+
i0.ɵɵtextInterpolate(ctx_r12.displayText(msg_r8.text));
|
|
34828
|
+
i0.ɵɵadvance(1);
|
|
34829
|
+
i0.ɵɵproperty("ngIf", msg_r8.from === "bot" && ctx_r12.isYesNoPrompt(msg_r8.text, i_r9));
|
|
34830
|
+
i0.ɵɵadvance(1);
|
|
34831
|
+
i0.ɵɵproperty("ngIf", msg_r8.from === "bot" && !ctx_r12.isMessageRated(i_r9) && i_r9 === ctx_r12.messages.length - 1 && !ctx_r12.isAck);
|
|
34832
|
+
i0.ɵɵadvance(1);
|
|
34833
|
+
i0.ɵɵproperty("ngIf", msg_r8.url && msg_r8.url.length);
|
|
34834
|
+
} }
|
|
34835
|
+
function ChatbotLexComponent_div_1_div_22_Template(rf, ctx) { if (rf & 1) {
|
|
34836
|
+
i0.ɵɵelementStart(0, "div", 26)(1, "div", 27);
|
|
34837
|
+
i0.ɵɵtemplate(2, ChatbotLexComponent_div_1_div_22_img_2_Template, 1, 0, "img", 28)(3, ChatbotLexComponent_div_1_div_22_ng_container_3_Template, 5, 1, "ng-container", 29)(4, ChatbotLexComponent_div_1_div_22_ng_template_4_Template, 6, 4, "ng-template", null, 30, i0.ɵɵtemplateRefExtractor);
|
|
34838
|
+
i0.ɵɵelementEnd()();
|
|
34839
|
+
} if (rf & 2) {
|
|
34840
|
+
const msg_r8 = ctx.$implicit;
|
|
34841
|
+
const i_r9 = ctx.index;
|
|
34842
|
+
const _r13 = i0.ɵɵreference(5);
|
|
34843
|
+
const ctx_r6 = i0.ɵɵnextContext(2);
|
|
34844
|
+
i0.ɵɵproperty("ngClass", msg_r8.from);
|
|
34845
|
+
i0.ɵɵadvance(2);
|
|
34846
|
+
i0.ɵɵproperty("ngIf", msg_r8.from === "bot");
|
|
34847
|
+
i0.ɵɵadvance(1);
|
|
34848
|
+
i0.ɵɵproperty("ngIf", msg_r8.from === "bot" && ctx_r6.isStarRatingPrompt(msg_r8.text, i_r9))("ngIfElse", _r13);
|
|
34849
|
+
} }
|
|
34850
|
+
function ChatbotLexComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
34851
|
+
const _r49 = i0.ɵɵgetCurrentView();
|
|
34852
|
+
i0.ɵɵelementStart(0, "div", 3)(1, "div", 4)(2, "button", 5);
|
|
34853
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r49); const ctx_r48 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r48.toggleExpand()); });
|
|
34854
|
+
i0.ɵɵtemplate(3, ChatbotLexComponent_div_1_span_3_Template, 2, 0, "span", 6);
|
|
34855
|
+
i0.ɵɵelementEnd();
|
|
34856
|
+
i0.ɵɵelementStart(4, "button", 7);
|
|
34857
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r49); const ctx_r50 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r50.minimizeChat()); });
|
|
34858
|
+
i0.ɵɵtext(5, " _ ");
|
|
34859
|
+
i0.ɵɵelementEnd();
|
|
34860
|
+
i0.ɵɵelementStart(6, "button", 8);
|
|
34861
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_Template_button_click_6_listener() { i0.ɵɵrestoreView(_r49); const ctx_r51 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r51.toggleChat()); });
|
|
34862
|
+
i0.ɵɵtext(7, " \u2715 ");
|
|
34863
|
+
i0.ɵɵelementEnd()();
|
|
34864
|
+
i0.ɵɵelementStart(8, "div", 9)(9, "span", 10);
|
|
34865
|
+
i0.ɵɵelement(10, "img", 11);
|
|
34866
|
+
i0.ɵɵelementStart(11, "span", 12)(12, "span", 13);
|
|
34867
|
+
i0.ɵɵtext(13, "Amelia");
|
|
34868
|
+
i0.ɵɵelementEnd();
|
|
34869
|
+
i0.ɵɵelementStart(14, "span", 14);
|
|
34870
|
+
i0.ɵɵtext(15);
|
|
34871
|
+
i0.ɵɵelementEnd()()();
|
|
34872
|
+
i0.ɵɵelementStart(16, "div", 15)(17, "button", 16);
|
|
34873
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_Template_button_click_17_listener() { i0.ɵɵrestoreView(_r49); const ctx_r52 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r52.refreshChat()); });
|
|
34874
|
+
i0.ɵɵtext(18, " \u27F3 ");
|
|
34875
|
+
i0.ɵɵelementEnd()()();
|
|
34876
|
+
i0.ɵɵelementStart(19, "div", 17)(20, "div", 18, 19);
|
|
34877
|
+
i0.ɵɵtemplate(22, ChatbotLexComponent_div_1_div_22_Template, 6, 4, "div", 20);
|
|
34878
|
+
i0.ɵɵelementEnd()();
|
|
34879
|
+
i0.ɵɵelementStart(23, "div", 21)(24, "div", 22)(25, "textarea", 23, 24);
|
|
34880
|
+
i0.ɵɵlistener("ngModelChange", function ChatbotLexComponent_div_1_Template_textarea_ngModelChange_25_listener($event) { i0.ɵɵrestoreView(_r49); const ctx_r53 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r53.userInput = $event); })("input", function ChatbotLexComponent_div_1_Template_textarea_input_25_listener() { i0.ɵɵrestoreView(_r49); const ctx_r54 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r54.autoGrow()); })("keydown.enter", function ChatbotLexComponent_div_1_Template_textarea_keydown_enter_25_listener($event) { i0.ɵɵrestoreView(_r49); const ctx_r55 = i0.ɵɵnextContext(); $event.preventDefault(); return i0.ɵɵresetView(ctx_r55.handleEnter()); });
|
|
34881
|
+
i0.ɵɵtext(27, " ");
|
|
34882
|
+
i0.ɵɵelementEnd()();
|
|
34883
|
+
i0.ɵɵelementStart(28, "button", 25);
|
|
34884
|
+
i0.ɵɵlistener("click", function ChatbotLexComponent_div_1_Template_button_click_28_listener() { i0.ɵɵrestoreView(_r49); const ctx_r56 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r56.sendMessage()); });
|
|
34885
|
+
i0.ɵɵtext(29, " Send ");
|
|
34886
|
+
i0.ɵɵelementEnd()()();
|
|
34887
|
+
} if (rf & 2) {
|
|
34888
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
34889
|
+
i0.ɵɵclassProp("expanded", ctx_r1.isExpanded);
|
|
34890
|
+
i0.ɵɵadvance(3);
|
|
34891
|
+
i0.ɵɵproperty("ngIf", !ctx_r1.isExpanded);
|
|
34892
|
+
i0.ɵɵadvance(11);
|
|
34893
|
+
i0.ɵɵclassProp("online-text", !ctx_r1.botOffline)("offline-text", ctx_r1.botOffline);
|
|
34894
|
+
i0.ɵɵadvance(1);
|
|
34895
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.botOffline ? "offline" : "online", " ");
|
|
34896
|
+
i0.ɵɵadvance(7);
|
|
34897
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.messages);
|
|
34898
|
+
i0.ɵɵadvance(3);
|
|
34899
|
+
i0.ɵɵproperty("ngModel", ctx_r1.userInput)("disabled", ctx_r1.sending || ctx_r1.isDisabled);
|
|
34900
|
+
i0.ɵɵadvance(3);
|
|
34901
|
+
i0.ɵɵproperty("disabled", ctx_r1.sending || ctx_r1.isDisabled);
|
|
34902
|
+
} }
|
|
34903
|
+
class ChatbotLexComponent {
|
|
34904
|
+
toggleExpand() {
|
|
34905
|
+
this.isExpanded = !this.isExpanded;
|
|
34906
|
+
}
|
|
34907
|
+
minimizeChat() {
|
|
34908
|
+
this.chatOpen = false;
|
|
34909
|
+
this.isExpanded = false;
|
|
34910
|
+
}
|
|
34911
|
+
constructor(lexChat, ngZone, cdr) {
|
|
34912
|
+
this.lexChat = lexChat;
|
|
34913
|
+
this.ngZone = ngZone;
|
|
34914
|
+
this.cdr = cdr;
|
|
34915
|
+
this.isExpanded = false;
|
|
34916
|
+
this.chatIDtheft = false;
|
|
34917
|
+
this.clientFilter = '';
|
|
34918
|
+
this.messages = [];
|
|
34919
|
+
this.userInput = '';
|
|
34920
|
+
this.sending = false;
|
|
34921
|
+
this.sendingRating = false;
|
|
34922
|
+
this.isAck = false;
|
|
34923
|
+
this.is_end_session = false;
|
|
34924
|
+
this.expectingPassword = false;
|
|
34925
|
+
this.isDisabled = false;
|
|
34926
|
+
this.botOffline = true;
|
|
34927
|
+
this.chatOpen = false;
|
|
34928
|
+
this.autoGrown = false;
|
|
34929
|
+
this.idleTimeoutMs = 0.15 * 60 * 1000;
|
|
34930
|
+
this.isIdle = false;
|
|
34931
|
+
this.idleRequestInFlight = false;
|
|
34932
|
+
this.idleDetectCount = 0;
|
|
34933
|
+
this.idleActions = ['idle', 'no', 'End Session'];
|
|
34934
|
+
this.endedByIdleCounter = false;
|
|
34935
|
+
this.ratedMessageIndexes = new Set();
|
|
34936
|
+
this.yesNoHandled = new Set();
|
|
34937
|
+
this.starSelected = {};
|
|
34938
|
+
this.starHover = {};
|
|
34939
|
+
this.starLocked = new Set();
|
|
34940
|
+
}
|
|
34941
|
+
setWelcomeMessage() {
|
|
34942
|
+
const welcomeText = this.chatIDtheft
|
|
34943
|
+
? 'Hi! I can help you report identity theft. Please tell me what happened or select the option that best describes your situation.'
|
|
34944
|
+
: 'Hi! How may I help you?';
|
|
34945
|
+
this.messages = [
|
|
34946
|
+
{ from: 'bot', text: welcomeText }
|
|
34947
|
+
];
|
|
34948
|
+
}
|
|
34949
|
+
async sendReportIdTheftMessage() {
|
|
34950
|
+
this.messages = [];
|
|
34951
|
+
this.userInput = 'report fraud';
|
|
34952
|
+
await this.sendMessage(true);
|
|
34953
|
+
}
|
|
34954
|
+
ngOnInit() {
|
|
34955
|
+
this.lexChat.chatOpen$.subscribe(open => {
|
|
34956
|
+
if (open && !this.chatOpen) {
|
|
34957
|
+
this.chatIDtheft = this.lexChat.chatIDtheft;
|
|
34958
|
+
this.toggleChat();
|
|
34959
|
+
if (this.chatIDtheft) {
|
|
34960
|
+
this.sendReportIdTheftMessage();
|
|
34961
|
+
}
|
|
34962
|
+
else {
|
|
34963
|
+
this.setWelcomeMessage();
|
|
34964
|
+
}
|
|
34965
|
+
}
|
|
34966
|
+
});
|
|
34967
|
+
}
|
|
34968
|
+
ngAfterViewInit() {
|
|
34969
|
+
this.scrollToBottom();
|
|
34970
|
+
}
|
|
34971
|
+
ngOnDestroy() {
|
|
34972
|
+
if (this.idleTimerId)
|
|
34973
|
+
window.clearTimeout(this.idleTimerId);
|
|
34974
|
+
}
|
|
34975
|
+
toggleChat() {
|
|
34976
|
+
this.chatOpen = !this.chatOpen;
|
|
34977
|
+
if (this.chatOpen) {
|
|
34978
|
+
this.isExpanded = false;
|
|
34979
|
+
this.botOffline = false;
|
|
34980
|
+
setTimeout(() => this.focusInput(), 100);
|
|
34981
|
+
}
|
|
34982
|
+
}
|
|
34983
|
+
async sendMessage(hideUserMessage = false) {
|
|
34984
|
+
const trimmed = this.userInput.trim();
|
|
34985
|
+
if (!trimmed || this.sending) {
|
|
34986
|
+
this.focusInput();
|
|
34987
|
+
return;
|
|
34988
|
+
}
|
|
34989
|
+
this.clearIdleTimer();
|
|
34990
|
+
const isPwd = this.expectingPassword;
|
|
34991
|
+
const displayText = isPwd ? this.maskText(trimmed) : trimmed;
|
|
34992
|
+
if (!hideUserMessage) {
|
|
34993
|
+
this.messages.push({
|
|
34994
|
+
from: 'user',
|
|
34995
|
+
text: displayText,
|
|
34996
|
+
masked: isPwd
|
|
34997
|
+
});
|
|
34998
|
+
}
|
|
34999
|
+
this.scrollToBottom();
|
|
35000
|
+
this.userInput = '';
|
|
35001
|
+
const el = this.messageInput?.nativeElement;
|
|
35002
|
+
if (el)
|
|
35003
|
+
el.style.height = 'auto';
|
|
35004
|
+
this.sending = true;
|
|
35005
|
+
this.cdr.detectChanges();
|
|
35006
|
+
try {
|
|
35007
|
+
const reply = await this.lexChat.sendMessage(trimmed, this.clientFilter);
|
|
35008
|
+
this.isAck = reply['isAck'] === 'True';
|
|
35009
|
+
this.is_end_session = reply['is_end_session'] === 'True';
|
|
35010
|
+
if (this.is_end_session) {
|
|
35011
|
+
this.endedByIdleCounter = true;
|
|
35012
|
+
this.isDisabled = true;
|
|
35013
|
+
this.botOffline = true;
|
|
35014
|
+
}
|
|
35015
|
+
this.messages.push({ from: 'bot', text: reply['content'], url: reply['url'] });
|
|
35016
|
+
this.scrollToBottom();
|
|
35017
|
+
this.expectingPassword = reply['isPwd'] === 'True';
|
|
35018
|
+
this.armIdleTimerAfterBotReply();
|
|
35019
|
+
this.cdr.detectChanges();
|
|
35020
|
+
}
|
|
35021
|
+
catch (err) {
|
|
35022
|
+
this.messages.push({ from: 'bot', text: 'Sorry, something went wrong while contacting the bot.' });
|
|
35023
|
+
this.scrollToBottom();
|
|
35024
|
+
this.expectingPassword = false;
|
|
35025
|
+
}
|
|
35026
|
+
finally {
|
|
35027
|
+
this.sending = false;
|
|
35028
|
+
this.focusInput();
|
|
35029
|
+
this.idleDetectCount = 0;
|
|
35030
|
+
this.endedByIdleCounter = false;
|
|
35031
|
+
if (this.is_end_session) {
|
|
35032
|
+
this.endedByIdleCounter = true;
|
|
35033
|
+
this.isDisabled = true;
|
|
35034
|
+
this.botOffline = true;
|
|
35035
|
+
}
|
|
35036
|
+
this.cdr.detectChanges();
|
|
35037
|
+
}
|
|
35038
|
+
}
|
|
35039
|
+
isMessageRated(index) {
|
|
35040
|
+
return this.ratedMessageIndexes.has(index);
|
|
35041
|
+
}
|
|
35042
|
+
async sendFeedback(kind, index) {
|
|
35043
|
+
if (this.isDisabled)
|
|
35044
|
+
return;
|
|
35045
|
+
try {
|
|
35046
|
+
this.sending = true;
|
|
35047
|
+
const reply = await this.lexChat.sendMessage(kind, this.clientFilter);
|
|
35048
|
+
this.isAck = true;
|
|
35049
|
+
this.messages.push({ from: 'bot', text: reply['content'] });
|
|
35050
|
+
this.scrollToBottom();
|
|
35051
|
+
this.ratedMessageIndexes.add(index);
|
|
35052
|
+
this.cdr.detectChanges();
|
|
35053
|
+
this.focusInput();
|
|
35054
|
+
}
|
|
35055
|
+
catch (e) {
|
|
35056
|
+
console.error('Error sending feedback:', e);
|
|
35057
|
+
}
|
|
35058
|
+
finally {
|
|
35059
|
+
this.sending = false;
|
|
35060
|
+
this.cdr.detectChanges();
|
|
35061
|
+
this.focusInput();
|
|
35062
|
+
}
|
|
35063
|
+
}
|
|
35064
|
+
// Star rating
|
|
35065
|
+
isStarLocked(index) {
|
|
35066
|
+
return this.starLocked.has(index);
|
|
35067
|
+
}
|
|
35068
|
+
isStarRatingPrompt(text, _index) {
|
|
35069
|
+
if (!text)
|
|
35070
|
+
return false;
|
|
35071
|
+
const marker = /\[rate\]|\[stars\]/i.test(text);
|
|
35072
|
+
const t = text.toLowerCase();
|
|
35073
|
+
const phrase = (t.includes('please rate') || t.includes('rate this') || t.includes('csat')) &&
|
|
35074
|
+
(t.includes('1-5') || t.includes('1 to 5') || t.includes('one to five'));
|
|
35075
|
+
return marker || phrase;
|
|
35076
|
+
}
|
|
35077
|
+
getStars() {
|
|
35078
|
+
return [1, 2, 3, 4, 5];
|
|
35079
|
+
}
|
|
35080
|
+
onStarEnter(index, star) {
|
|
35081
|
+
if (this.isStarLocked(index))
|
|
35082
|
+
return;
|
|
35083
|
+
this.starHover[index] = star;
|
|
35084
|
+
}
|
|
35085
|
+
onStarLeave(index) {
|
|
35086
|
+
if (this.isStarLocked(index))
|
|
35087
|
+
return;
|
|
35088
|
+
delete this.starHover[index];
|
|
35089
|
+
}
|
|
35090
|
+
isStarFilled(index, star) {
|
|
35091
|
+
if (this.isStarLocked(index)) {
|
|
35092
|
+
return star <= (this.starSelected[index] ?? 0);
|
|
35093
|
+
}
|
|
35094
|
+
const hover = this.starHover[index] ?? 0;
|
|
35095
|
+
if (hover)
|
|
35096
|
+
return star <= hover;
|
|
35097
|
+
return star <= (this.starSelected[index] ?? 0);
|
|
35098
|
+
}
|
|
35099
|
+
async onStarClick(star, index) {
|
|
35100
|
+
if (this.isDisabled || this.isStarLocked(index))
|
|
35101
|
+
return;
|
|
35102
|
+
this.starSelected[index] = star;
|
|
35103
|
+
this.starLocked.add(index);
|
|
35104
|
+
this.cdr.detectChanges();
|
|
35105
|
+
if (this.sendingRating)
|
|
35106
|
+
return;
|
|
35107
|
+
this.sendingRating = true;
|
|
35108
|
+
try {
|
|
35109
|
+
const reply = await this.lexChat.sendMessage(String(star), this.clientFilter);
|
|
35110
|
+
this.messages.push({ from: 'bot', text: reply['content'] ?? 'Thank you for your feedback!' });
|
|
35111
|
+
this.scrollToBottom();
|
|
35112
|
+
if (typeof reply['isPwd'] !== 'undefined') {
|
|
35113
|
+
this.expectingPassword = reply['isPwd'] === 'True';
|
|
35114
|
+
}
|
|
35115
|
+
this.armIdleTimerAfterBotReply();
|
|
35116
|
+
}
|
|
35117
|
+
catch (err) {
|
|
35118
|
+
this.messages.push({ from: 'bot', text: 'Sorry, could not record your feedback right now.' });
|
|
35119
|
+
this.scrollToBottom();
|
|
35120
|
+
}
|
|
35121
|
+
finally {
|
|
35122
|
+
this.sendingRating = false;
|
|
35123
|
+
this.cdr.detectChanges();
|
|
35124
|
+
this.focusInput();
|
|
35125
|
+
}
|
|
35126
|
+
}
|
|
35127
|
+
// Yes/No
|
|
35128
|
+
isYesNoPrompt(text, index) {
|
|
35129
|
+
if (!text)
|
|
35130
|
+
return false;
|
|
35131
|
+
return /\[yes\/no\]/i.test(text) && !this.yesNoHandled.has(index);
|
|
35132
|
+
}
|
|
35133
|
+
displayText(text) {
|
|
35134
|
+
if (!text)
|
|
35135
|
+
return '';
|
|
35136
|
+
return text
|
|
35137
|
+
.replace(/\s*\[yes\/no\]\s*/i, '')
|
|
35138
|
+
.replace(/\s*\[rate\]\s*|\s*\[stars\]\s*/ig, '')
|
|
35139
|
+
.trim();
|
|
35140
|
+
}
|
|
35141
|
+
async onYesNoClick(choice, index) {
|
|
35142
|
+
if (this.isDisabled)
|
|
35143
|
+
return;
|
|
35144
|
+
this.yesNoHandled.add(index);
|
|
35145
|
+
this.messages.push({ from: 'user', text: choice });
|
|
35146
|
+
this.scrollToBottom();
|
|
35147
|
+
try {
|
|
35148
|
+
const reply = await this.lexChat.sendMessage(choice, this.clientFilter);
|
|
35149
|
+
this.messages.push({ from: 'bot', text: reply['content'] });
|
|
35150
|
+
this.scrollToBottom();
|
|
35151
|
+
if (typeof reply['isPwd'] !== 'undefined') {
|
|
35152
|
+
this.expectingPassword = reply['isPwd'] === 'True';
|
|
35153
|
+
}
|
|
35154
|
+
this.armIdleTimerAfterBotReply();
|
|
35155
|
+
this.idleDetectCount = 0;
|
|
35156
|
+
}
|
|
35157
|
+
catch (e) {
|
|
35158
|
+
this.messages.push({ from: 'bot', text: 'Sorry, I could not record your selection.' });
|
|
35159
|
+
this.scrollToBottom();
|
|
35160
|
+
}
|
|
35161
|
+
finally {
|
|
35162
|
+
this.cdr.detectChanges();
|
|
35163
|
+
}
|
|
35164
|
+
}
|
|
35165
|
+
openLink(url) {
|
|
35166
|
+
window.open(url, '_blank');
|
|
35167
|
+
}
|
|
35168
|
+
handleEnter() {
|
|
35169
|
+
this.sendMessage();
|
|
35170
|
+
}
|
|
35171
|
+
autoGrow() {
|
|
35172
|
+
const el = this.messageInput?.nativeElement;
|
|
35173
|
+
if (!el)
|
|
35174
|
+
return;
|
|
35175
|
+
el.style.height = 'auto';
|
|
35176
|
+
el.style.height = el.scrollHeight + 'px';
|
|
35177
|
+
this.autoGrown = el.scrollHeight > 40;
|
|
35178
|
+
}
|
|
35179
|
+
refreshChat() {
|
|
35180
|
+
this.resetChat();
|
|
35181
|
+
}
|
|
35182
|
+
// Private helpers
|
|
35183
|
+
async resetChat() {
|
|
35184
|
+
this.botOffline = false;
|
|
35185
|
+
this.messages = [{ from: 'bot', text: 'Hi! How may I help you?' }];
|
|
35186
|
+
try {
|
|
35187
|
+
await this.lexChat.sendMessage(this.idleActions[2], this.clientFilter);
|
|
35188
|
+
}
|
|
35189
|
+
catch (err) {
|
|
35190
|
+
console.error('Error resetting chat:', err);
|
|
35191
|
+
}
|
|
35192
|
+
finally {
|
|
35193
|
+
this.userInput = '';
|
|
35194
|
+
const el = this.messageInput?.nativeElement;
|
|
35195
|
+
if (el)
|
|
35196
|
+
el.style.height = 'auto';
|
|
35197
|
+
this.sending = false;
|
|
35198
|
+
this.sendingRating = false;
|
|
35199
|
+
this.expectingPassword = false;
|
|
35200
|
+
this.isAck = false;
|
|
35201
|
+
this.is_end_session = false;
|
|
35202
|
+
this.ratedMessageIndexes.clear();
|
|
35203
|
+
this.yesNoHandled.clear();
|
|
35204
|
+
this.starSelected = {};
|
|
35205
|
+
this.starHover = {};
|
|
35206
|
+
this.starLocked.clear();
|
|
35207
|
+
this.clearIdleTimer();
|
|
35208
|
+
this.isIdle = false;
|
|
35209
|
+
this.idleRequestInFlight = false;
|
|
35210
|
+
this.idleDetectCount = 0;
|
|
35211
|
+
this.endedByIdleCounter = false;
|
|
35212
|
+
this.isDisabled = false;
|
|
35213
|
+
this.lexChat.resetSession({ regenerateSessionId: true });
|
|
35214
|
+
this.cdr.detectChanges();
|
|
35215
|
+
this.scrollToBottom();
|
|
35216
|
+
this.focusInput();
|
|
35217
|
+
}
|
|
35218
|
+
}
|
|
35219
|
+
maskText(s) {
|
|
35220
|
+
return s.replace(/./g, '*');
|
|
35221
|
+
}
|
|
35222
|
+
clearIdleTimer() {
|
|
35223
|
+
if (this.idleTimerId) {
|
|
35224
|
+
window.clearTimeout(this.idleTimerId);
|
|
35225
|
+
this.idleTimerId = undefined;
|
|
35226
|
+
}
|
|
35227
|
+
if (this.isIdle) {
|
|
35228
|
+
this.isIdle = false;
|
|
35229
|
+
this.idleRequestInFlight = false;
|
|
35230
|
+
}
|
|
35231
|
+
}
|
|
35232
|
+
armIdleTimerAfterBotReply() {
|
|
35233
|
+
this.clearIdleTimer();
|
|
35234
|
+
this.idleTimerId = window.setTimeout(() => {
|
|
35235
|
+
this.ngZone.run(() => this.onIdleAfterBotReply());
|
|
35236
|
+
}, this.idleTimeoutMs);
|
|
35237
|
+
}
|
|
35238
|
+
async onIdleAfterBotReply() {
|
|
35239
|
+
if (this.isDisabled || this.isIdle)
|
|
35240
|
+
return;
|
|
35241
|
+
this.isIdle = true;
|
|
35242
|
+
if (this.idleRequestInFlight)
|
|
35243
|
+
return;
|
|
35244
|
+
this.idleRequestInFlight = true;
|
|
35245
|
+
this.idleDetectCount++;
|
|
35246
|
+
const idlePrompt = this.idleActions[this.idleDetectCount - 1];
|
|
35247
|
+
try {
|
|
35248
|
+
if (this.idleDetectCount < 4) {
|
|
35249
|
+
const reply = await this.lexChat.sendMessage(idlePrompt, this.clientFilter);
|
|
35250
|
+
this.isAck = true;
|
|
35251
|
+
this.messages.push({ from: 'bot', text: reply['content'] });
|
|
35252
|
+
this.scrollToBottom();
|
|
35253
|
+
}
|
|
35254
|
+
}
|
|
35255
|
+
catch (err) {
|
|
35256
|
+
this.messages.push({ from: 'bot', text: 'Unable to process idle notification at the moment.' });
|
|
35257
|
+
this.scrollToBottom();
|
|
35258
|
+
}
|
|
35259
|
+
finally {
|
|
35260
|
+
this.idleRequestInFlight = false;
|
|
35261
|
+
this.focusInput();
|
|
35262
|
+
this.armIdleTimerAfterBotReply();
|
|
35263
|
+
if (this.idleDetectCount === 3) {
|
|
35264
|
+
this.isDisabled = true;
|
|
35265
|
+
this.endedByIdleCounter = true;
|
|
35266
|
+
this.botOffline = true;
|
|
35267
|
+
}
|
|
35268
|
+
this.cdr.detectChanges();
|
|
35269
|
+
}
|
|
35270
|
+
}
|
|
35271
|
+
scrollToBottom() {
|
|
35272
|
+
if (!this.chatWindow)
|
|
35273
|
+
return;
|
|
35274
|
+
requestAnimationFrame(() => {
|
|
35275
|
+
const el = this.chatWindow.nativeElement;
|
|
35276
|
+
el.scrollTop = el.scrollHeight;
|
|
35277
|
+
});
|
|
35278
|
+
}
|
|
35279
|
+
focusInput() {
|
|
35280
|
+
this.ngZone.runOutsideAngular(() => {
|
|
35281
|
+
requestAnimationFrame(() => {
|
|
35282
|
+
const el = this.messageInput?.nativeElement;
|
|
35283
|
+
if (!el || el.disabled)
|
|
35284
|
+
return;
|
|
35285
|
+
el.focus();
|
|
35286
|
+
const val = el.value ?? '';
|
|
35287
|
+
el.setSelectionRange(val.length, val.length);
|
|
35288
|
+
});
|
|
35289
|
+
});
|
|
35290
|
+
}
|
|
35291
|
+
static { this.ɵfac = function ChatbotLexComponent_Factory(t) { return new (t || ChatbotLexComponent)(i0.ɵɵdirectiveInject(LexChatService), i0.ɵɵdirectiveInject(i0.NgZone), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
35292
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ChatbotLexComponent, selectors: [["app-chatbot-lex"]], viewQuery: function ChatbotLexComponent_Query(rf, ctx) { if (rf & 1) {
|
|
35293
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
35294
|
+
i0.ɵɵviewQuery(_c1, 5);
|
|
35295
|
+
} if (rf & 2) {
|
|
35296
|
+
let _t;
|
|
35297
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.messageInput = _t.first);
|
|
35298
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.chatWindow = _t.first);
|
|
35299
|
+
} }, inputs: { clientFilter: "clientFilter" }, decls: 2, vars: 2, consts: [["class", "chatbot-fab", "aria-label", "Open chat", "title", "Chat with us", 3, "click", 4, "ngIf"], ["class", "chat-popup", 3, "expanded", 4, "ngIf"], ["aria-label", "Open chat", "title", "Chat with us", 1, "chatbot-fab", 3, "click"], [1, "chat-popup"], [1, "chat-top-actions"], ["type", "button", "title", "Expand", 1, "top-action-btn", 3, "click"], [4, "ngIf"], ["type", "button", "title", "Minimize", "aria-label", "Minimize", 1, "top-action-btn", 3, "click"], ["type", "button", "title", "Close", "aria-label", "Close", 1, "top-action-btn", 3, "click"], [1, "chat-popup-header"], [1, "icon-label"], ["src", "assets/icon/chaticon.png", "alt", "Amelia", 1, "amelia-header-icon"], [1, "text-block"], [1, "label-text"], [1, "status"], [1, "chat-popup-actions"], ["type", "button", "title", "Refresh", "aria-label", "Refresh", 1, "action-btn", 3, "click"], [1, "chat-body"], ["role", "log", "aria-live", "polite", 1, "chat-window"], ["chatWindow", ""], [3, "ngClass", 4, "ngFor", "ngForOf"], [1, "input-row"], [1, "chat-input-wrapper"], ["placeholder", "Type your message...", "rows", "1", 1, "chat-input", 3, "ngModel", "disabled", "ngModelChange", "input", "keydown.enter"], ["messageInput", ""], [1, "send-btn", 3, "disabled", "click"], [3, "ngClass"], [1, "bubble"], ["class", "amelia-message-icon", "src", "assets/icon/chaticon.png", "alt", "Amelia", 4, "ngIf"], [4, "ngIf", "ngIfElse"], ["normalBubble", ""], ["src", "assets/icon/chaticon.png", "alt", "Amelia", 1, "amelia-message-icon"], [1, "star-group", 3, "mouseleave"], ["type", "button", "class", "star", 3, "filled", "title", "mouseenter", "click", 4, "ngFor", "ngForOf"], ["type", "button", 1, "star", 3, "title", "mouseenter", "click"], [1, "bubble-content"], [1, "formatted-text"], ["class", "yn-group", 4, "ngIf"], ["class", "feedback", 4, "ngIf"], [1, "yn-group"], [1, "yn-btn", "yes", 3, "click"], [1, "yn-btn", "no", 3, "click"], [1, "feedback"], ["aria-label", "Thumbs up", "title", "Thumbs up", 1, "fb-btn", "up", 3, "click"], ["aria-label", "Thumbs down", "title", "Thumbs down", 1, "fb-btn", "down", 3, "click"], [4, "ngFor", "ngForOf"], ["class", "yn-btn yes", 3, "click", 4, "ngIf"]], template: function ChatbotLexComponent_Template(rf, ctx) { if (rf & 1) {
|
|
35300
|
+
i0.ɵɵtemplate(0, ChatbotLexComponent_button_0_Template, 2, 0, "button", 0)(1, ChatbotLexComponent_div_1_Template, 30, 12, "div", 1);
|
|
35301
|
+
} if (rf & 2) {
|
|
35302
|
+
i0.ɵɵproperty("ngIf", !ctx.chatOpen);
|
|
35303
|
+
i0.ɵɵadvance(1);
|
|
35304
|
+
i0.ɵɵproperty("ngIf", ctx.chatOpen);
|
|
35305
|
+
} }, dependencies: [i1$4.NgClass, i1$4.NgForOf, i1$4.NgIf, i1$6.DefaultValueAccessor, i1$6.NgControlStatus, i1$6.NgModel], styles: [".chatbot-fab[_ngcontent-%COMP%]{position:fixed;bottom:20px;right:20px;width:56px;height:56px;border-radius:50%;background:#00bcd4;color:#fff;border:none;font-size:24px;cursor:pointer;box-shadow:0 4px 12px #0003;z-index:9998;display:flex;align-items:center;justify-content:center}.chatbot-fab[_ngcontent-%COMP%]:hover{background:#00a5bb}.chat-popup[_ngcontent-%COMP%]{position:fixed;bottom:20px;right:20px;width:380px;height:520px;max-height:80vh;display:flex;flex-direction:column;background:#fff;border:1px solid #e6e9ee;border-radius:12px;box-shadow:0 12px 24px #0000001f;overflow:visible!important;z-index:9999;padding-top:30px;overflow:visible}.chat-popup-header[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:space-between;background:var(--ion-color-primary)!important;color:#fff;padding:10px 12px;font-weight:600;flex-shrink:0}.icon-label[_ngcontent-%COMP%]{display:inline-flex;align-items:center;gap:8px}.text-block[_ngcontent-%COMP%]{display:inline-flex;flex-direction:column;line-height:1.1}.label-text[_ngcontent-%COMP%]{font-size:15px;font-weight:600}.status[_ngcontent-%COMP%]{font-size:11px;margin-top:2px;text-transform:lowercase;opacity:.95}.status.online-text[_ngcontent-%COMP%]{color:#b9f6ca}.status.offline-text[_ngcontent-%COMP%]{color:#ffcdd2}.chat-popup-actions[_ngcontent-%COMP%]{display:inline-flex;align-items:center;gap:6px}.action-btn[_ngcontent-%COMP%]{background:transparent;color:#fff;border:none;font-size:16px;cursor:pointer;width:28px;height:28px;line-height:1;padding:0;border-radius:4px}.action-btn[_ngcontent-%COMP%]:hover{background:#ffffff26}.chat-body[_ngcontent-%COMP%]{flex:1;display:flex;flex-direction:column;overflow:hidden;min-height:0}.chat-window[_ngcontent-%COMP%]{padding:12px;flex:1;overflow-y:auto;background:#f6f8fb;min-height:0}.user[_ngcontent-%COMP%], .bot[_ngcontent-%COMP%]{margin:8px 0;display:flex}.user[_ngcontent-%COMP%]{justify-content:flex-end}.bot[_ngcontent-%COMP%]{justify-content:flex-start}.bubble[_ngcontent-%COMP%]{display:inline-block;padding:8px 12px;border-radius:14px;max-width:80%;font-size:14px;line-height:1.4;word-wrap:break-word;position:relative}.user[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]{background:#e8eaf6;color:#000;border-bottom-right-radius:4px}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]{background:#fff;color:#111827;border:1px solid #e6e9ee;border-bottom-left-radius:4px;margin-bottom:24px}.chat-window[_ngcontent-%COMP%] .bot[_ngcontent-%COMP%]:first-of-type .bubble[_ngcontent-%COMP%] .feedback[_ngcontent-%COMP%]{display:none!important}.fb-btn[_ngcontent-%COMP%]{appearance:none;border:none;background:transparent;cursor:pointer;font-size:13px;line-height:1;padding:2px 4px;border-radius:4px;opacity:.9}.fb-btn[_ngcontent-%COMP%]:hover{background:#00bcd414}.fb-btn.up[_ngcontent-%COMP%]{color:#16a34a}.fb-btn.down[_ngcontent-%COMP%]{color:#dc2626}.yn-group[_ngcontent-%COMP%]{margin-top:8px}.yn-btn[_ngcontent-%COMP%]{appearance:none;border:1px solid #cfd8e3;background:#fff;color:#111827;font-size:12px;padding:4px 8px;border-radius:999px;cursor:pointer;margin-right:6px}.yn-btn[_ngcontent-%COMP%]:hover{background:#f3f4f6}.yn-btn.yes[_ngcontent-%COMP%]{border-color:#16a34a33}.yn-btn.no[_ngcontent-%COMP%]{border-color:#dc262633}.star-group[_ngcontent-%COMP%]{display:inline-flex;gap:6px;align-items:center;margin-top:7px;position:relative!important;top:12px!important}.star-group[_ngcontent-%COMP%] .star[_ngcontent-%COMP%]{appearance:none;border:none;background:transparent;cursor:pointer;font-size:18px;line-height:1;color:#444547;padding:0 1px;transition:transform .08s ease,color .08s ease}.star-group[_ngcontent-%COMP%] .star.filled[_ngcontent-%COMP%]{color:#f59e0b}.star-group[_ngcontent-%COMP%] .star[_ngcontent-%COMP%]:hover{transform:scale(1.08)}.input-row[_ngcontent-%COMP%]{display:flex;gap:8px;padding:10px;background:#fff;border-top:1px solid #e6e9ee;align-items:flex-end;flex-shrink:0}.chat-input-wrapper[_ngcontent-%COMP%]{flex:1;border-radius:8px;border:1px solid #d1d5db;overflow:hidden;background:#fff;display:flex}.chat-input[_ngcontent-%COMP%]{width:100%;resize:none;border:none;outline:none;padding:8px 10px;font-size:14px;line-height:1.2;min-height:20px;max-height:100px;overflow-y:auto;box-sizing:border-box;background:transparent}.chat-input[_ngcontent-%COMP%]:focus{outline:none;box-shadow:none}.send-btn[_ngcontent-%COMP%]{height:36px;align-self:flex-end;padding:0 14px;background:var(--ion-color-primary)!important;color:#fff!important;border:none;border-radius:8px;cursor:pointer;white-space:nowrap;font-size:14px}.send-btn[_ngcontent-%COMP%]:disabled{opacity:.6;cursor:not-allowed}.formatted-text[_ngcontent-%COMP%]{white-space:pre-line}.icon-label[_ngcontent-%COMP%]{display:flex;align-items:center;gap:8px}.amelia-header-icon[_ngcontent-%COMP%]{width:26px;height:26px;border-radius:50%;object-fit:cover;background:#fff;flex-shrink:0}.text-block[_ngcontent-%COMP%]{display:flex;flex-direction:column;line-height:1.1}.bubble.bot[_ngcontent-%COMP%], .bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]{display:flex;align-items:flex-start;gap:8px}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%] .feedback-block[_ngcontent-%COMP%]{display:flex;flex-direction:column;align-items:flex-start;flex:1;min-width:0}.feedback-message[_ngcontent-%COMP%]{width:100%;display:block;white-space:normal;overflow-wrap:anywhere}.feedback-actions[_ngcontent-%COMP%]{display:flex;align-items:center;gap:8px;width:100%;justify-content:flex-start}.feedback-actions[_ngcontent-%COMP%] .yn-btn[_ngcontent-%COMP%]{flex:0 0 auto}.bubble-content[_ngcontent-%COMP%]{display:flex;flex-direction:column;align-items:flex-start;flex:1;min-width:0}.formatted-text[_ngcontent-%COMP%]{display:block;width:100%;white-space:normal;overflow-wrap:anywhere}.feedback[_ngcontent-%COMP%]{display:flex;align-items:center;gap:8px;margin-top:8px;width:100%}.yn-group[_ngcontent-%COMP%]{display:flex;align-items:center;gap:8px;margin-top:8px}.amelia-message-icon[_ngcontent-%COMP%]{width:24px;height:24px;border-radius:50%;object-fit:cover;background:#fff;flex-shrink:0}.chat-popup.expanded[_ngcontent-%COMP%]{width:40vw!important;height:86vh!important;position:fixed!important;bottom:16px!important;right:40px!important;left:auto!important;max-width:650px!important;max-height:calc(100vh - 80px)!important;border-radius:8px!important;display:flex!important;flex-direction:column!important;visibility:visible!important;opacity:1!important;z-index:9999!important}.chat-top-actions[_ngcontent-%COMP%]{display:flex;justify-content:flex=end;align-items:center;gap:6px;padding:4px 8px;background:transparent;flex-shrink:0;position:absolute;top:-1px;right:0!important;width:auto!important;z-index:10000;position:absolute!important}.top-action-btn[_ngcontent-%COMP%]{border:none;background:transparent!important;color:#000!important;font-size:16px;font-weight:700;line-height:22px;cursor:pointer;padding:0;border-radius:none!important;width:24px;height:24px;text-align:center}.top-action-btn[_ngcontent-%COMP%]:hover{background:#eee;border-radius:4px}.top-action-btn[_ngcontent-%COMP%] .pi[_ngcontent-%COMP%]{font-size:16px}.chat-top-actions.top-action-btn[_ngcontent-%COMP%]{color:#000!important;background:transparent!important;border:none!important;font-size:16px;font-weight:700;cursor:pointer;width:24px;height:24px;line-height:24px;padding:0;border-radius:5px 0 0}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.star-group){display:grid!important;grid-template-columns:24px 1fr!important;grid-template-rows:auto auto!important;column-gap:8px!important;row-gap:6px!important;align-items:start!important;min-width:270px!important;padding:12px!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.star-group) .amelia-message-icon[_ngcontent-%COMP%]{grid-column:1!important;grid-row:1 / span 2!important;margin-top:0!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.star-group) > div[_ngcontent-%COMP%]:first-of-type{grid-column:2!important;grid-row:1!important;white-space:no wrap!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.star-group) .star-group[_ngcontent-%COMP%]{grid-column:2!important;grid-row:2!important;display:flex!important;flex-direction:row!important;gap:8px!important;margin:0!important;padding:0!important;position:static!important;inset:auto!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.yn-group){display:grid!important;grid-template-columns:24px minmax(0,1fr)!important;grid-template-rows:auto auto!important;column-gap:8px!important;row-gap:8px!important;align-items:start!important;width:100%!important;max-width:100%!important;min-width:0!important;padding:10px!important;box-sizing:border-box!important;overflow:hidden!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.yn-group) .amelia-message-icon[_ngcontent-%COMP%]{grid-column:1!important;grid-row:1 / span 2!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.yn-group) .formatted-text[_ngcontent-%COMP%]{display:block!important;width:auto!important;max-width:100%!important;min-width:0!important;grid-template-columns:24px minmax(0,1fr)!important;grid-template-rows:auto auto!important;white-space:normal!important;overflow-wrap:break-word!important;word-break:normal!important}.bot[_ngcontent-%COMP%] .bubble[_ngcontent-%COMP%]:has(.yn-group) .yn-group[_ngcontent-%COMP%]{grid-column:2!important;grid-row:2!important;display:flex!important;flex-direction:row!important;gap:8px!important;margin:0!important;padding:0!important;position:static!important}@media (max-width: 480px){.chat-popup[_ngcontent-%COMP%]{width:calc(100vw - 16px);right:8px;bottom:8px;height:70vh}.bubble[_ngcontent-%COMP%]{max-width:90%;font-size:13px}}"] }); }
|
|
35306
|
+
}
|
|
35307
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChatbotLexComponent, [{
|
|
35308
|
+
type: Component,
|
|
35309
|
+
args: [{ selector: 'app-chatbot-lex', template: "<!-- Floating chat toggle button -->\r\n<button\r\n class=\"chatbot-fab\"\r\n (click)=\"toggleChat()\"\r\n *ngIf=\"!chatOpen\"\r\n aria-label=\"Open chat\"\r\n title=\"Chat with us\">\r\n \uD83D\uDCAC\r\n</button>\r\n\r\n<!-- Chat popup -->\r\n<div class=\"chat-popup\" *ngIf=\"chatOpen\" [class.expanded]=\"isExpanded\">\r\n <div class=\"chat-top-actions\">\r\n <button\r\n class=\"top-action-btn\"\r\n type=\"button\"\r\n (click)=\"toggleExpand()\"\r\n title=\"Expand\">\r\n <span *ngIf=\"!isExpanded\">\u26F6</span>\r\n </button>\r\n <button \r\n class=\"top-action-btn\" \r\n type=\"button\" \r\n (click)=\"minimizeChat()\" \r\n title=\"Minimize\" \r\n aria-label=\"Minimize\">\r\n _\r\n </button>\r\n <button \r\n class=\"top-action-btn\" \r\n type=\"button\" \r\n (click)=\"toggleChat()\" \r\n title=\"Close\" \r\n aria-label=\"Close\">\r\n \u2715\r\n </button>\r\n </div>\r\n <div class=\"chat-popup-header\">\r\n <span class=\"icon-label\">\r\n <img\r\n class=\"amelia-header-icon\"\r\n src=\"assets/icon/chaticon.png\"\r\n alt=\"Amelia\"\r\n />\r\n <span class=\"text-block\">\r\n <span class=\"label-text\">Amelia</span>\r\n <span\r\n class=\"status\"\r\n [class.online-text]=\"!botOffline\"\r\n [class.offline-text]=\"botOffline\">\r\n {{ botOffline ? 'offline' : 'online' }}\r\n </span>\r\n </span>\r\n </span>\r\n\r\n <div class=\"chat-popup-actions\">\r\n \r\n <button \r\n class=\"action-btn\" \r\n type=\"button\" \r\n (click)=\"refreshChat()\" \r\n title=\"Refresh\" \r\n aria-label=\"Refresh\">\r\n \u27F3\r\n </button>\r\n </div>\r\n </div>\r\n\r\n <div class=\"chat-body\">\r\n <div class=\"chat-window\" #chatWindow role=\"log\" aria-live=\"polite\">\r\n <div *ngFor=\"let msg of messages; let i = index\" [ngClass]=\"msg.from\">\r\n <div class=\"bubble\">\r\n <img\r\n *ngIf=\"msg.from === 'bot'\"\r\n class=\"amelia-message-icon\"\r\n src=\"assets/icon/chaticon.png\"\r\n alt=\"Amelia\"\r\n />\r\n <!-- Star rating prompt -->\r\n <ng-container *ngIf=\"msg.from === 'bot' && isStarRatingPrompt(msg.text, i); else normalBubble\">\r\n <div>Your feedback matters to us</div>\r\n <div class=\"star-group\" (mouseleave)=\"onStarLeave(i)\">\r\n <button\r\n *ngFor=\"let s of getStars()\"\r\n type=\"button\"\r\n class=\"star\"\r\n [class.filled]=\"isStarFilled(i, s)\"\r\n (mouseenter)=\"onStarEnter(i, s)\"\r\n (click)=\"onStarClick(s, i)\"\r\n [attr.aria-label]=\"'Rate ' + s + ' star(s)'\"\r\n title=\"Rate {{s}} star(s)\">\r\n \u2605\r\n </button>\r\n </div>\r\n </ng-container>\r\n\r\n <!-- Normal bubble -->\r\n <ng-template #normalBubble>\r\n <div class=\"bubble-content\">\r\n <span class=\"formatted-text\">{{ displayText(msg.text) }}</span>\r\n\r\n <!-- Yes/No buttons -->\r\n <div class=\"yn-group\" *ngIf=\"msg.from === 'bot' && isYesNoPrompt(msg.text, i)\">\r\n <button class=\"yn-btn yes\" (click)=\"onYesNoClick('Yes', i)\">Yes</button>\r\n <button class=\"yn-btn no\" (click)=\"onYesNoClick('No', i)\">No</button>\r\n </div>\r\n\r\n <!-- Feedback thumbs -->\r\n <div\r\n class=\"feedback\"\r\n *ngIf=\"msg.from === 'bot'\r\n && !isMessageRated(i)\r\n && i === messages.length - 1\r\n && !isAck\">\r\n <button class=\"fb-btn up\" (click)=\"sendFeedback('Thumbs up', i)\" aria-label=\"Thumbs up\" title=\"Thumbs up\">\uD83D\uDC4D</button>\r\n <button class=\"fb-btn down\" (click)=\"sendFeedback('Thumbs down', i)\" aria-label=\"Thumbs down\" title=\"Thumbs down\">\uD83D\uDC4E</button>\r\n </div>\r\n\r\n <!-- Links -->\r\n <div *ngIf=\"msg.url && msg.url.length\">\r\n <div *ngFor=\"let url of msg.url\">\r\n <button *ngIf=\"msg.from === 'bot'\" class=\"yn-btn yes\" (click)=\"openLink(url)\">{{url}}</button>\r\n </div>\r\n </div>\r\n </div> <!--closes bubble content -->\r\n </ng-template>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"input-row\">\r\n <div class=\"chat-input-wrapper\">\r\n <textarea\r\n #messageInput\r\n class=\"chat-input\"\r\n [(ngModel)]=\"userInput\"\r\n (input)=\"autoGrow()\"\r\n (keydown.enter)=\"$event.preventDefault(); handleEnter()\"\r\n [disabled]=\"sending || isDisabled\"\r\n placeholder=\"Type your message...\"\r\n rows=\"1\">\r\n </textarea>\r\n </div>\r\n <button\r\n class=\"send-btn\"\r\n (click)=\"sendMessage()\"\r\n [disabled]=\"sending || isDisabled\">\r\n Send\r\n </button>\r\n </div>\r\n</div>\r\n", styles: [".chatbot-fab{position:fixed;bottom:20px;right:20px;width:56px;height:56px;border-radius:50%;background:#00bcd4;color:#fff;border:none;font-size:24px;cursor:pointer;box-shadow:0 4px 12px #0003;z-index:9998;display:flex;align-items:center;justify-content:center}.chatbot-fab:hover{background:#00a5bb}.chat-popup{position:fixed;bottom:20px;right:20px;width:380px;height:520px;max-height:80vh;display:flex;flex-direction:column;background:#fff;border:1px solid #e6e9ee;border-radius:12px;box-shadow:0 12px 24px #0000001f;overflow:visible!important;z-index:9999;padding-top:30px;overflow:visible}.chat-popup-header{display:flex;align-items:center;justify-content:space-between;background:var(--ion-color-primary)!important;color:#fff;padding:10px 12px;font-weight:600;flex-shrink:0}.icon-label{display:inline-flex;align-items:center;gap:8px}.text-block{display:inline-flex;flex-direction:column;line-height:1.1}.label-text{font-size:15px;font-weight:600}.status{font-size:11px;margin-top:2px;text-transform:lowercase;opacity:.95}.status.online-text{color:#b9f6ca}.status.offline-text{color:#ffcdd2}.chat-popup-actions{display:inline-flex;align-items:center;gap:6px}.action-btn{background:transparent;color:#fff;border:none;font-size:16px;cursor:pointer;width:28px;height:28px;line-height:1;padding:0;border-radius:4px}.action-btn:hover{background:#ffffff26}.chat-body{flex:1;display:flex;flex-direction:column;overflow:hidden;min-height:0}.chat-window{padding:12px;flex:1;overflow-y:auto;background:#f6f8fb;min-height:0}.user,.bot{margin:8px 0;display:flex}.user{justify-content:flex-end}.bot{justify-content:flex-start}.bubble{display:inline-block;padding:8px 12px;border-radius:14px;max-width:80%;font-size:14px;line-height:1.4;word-wrap:break-word;position:relative}.user .bubble{background:#e8eaf6;color:#000;border-bottom-right-radius:4px}.bot .bubble{background:#fff;color:#111827;border:1px solid #e6e9ee;border-bottom-left-radius:4px;margin-bottom:24px}.chat-window .bot:first-of-type .bubble .feedback{display:none!important}.fb-btn{appearance:none;border:none;background:transparent;cursor:pointer;font-size:13px;line-height:1;padding:2px 4px;border-radius:4px;opacity:.9}.fb-btn:hover{background:#00bcd414}.fb-btn.up{color:#16a34a}.fb-btn.down{color:#dc2626}.yn-group{margin-top:8px}.yn-btn{appearance:none;border:1px solid #cfd8e3;background:#fff;color:#111827;font-size:12px;padding:4px 8px;border-radius:999px;cursor:pointer;margin-right:6px}.yn-btn:hover{background:#f3f4f6}.yn-btn.yes{border-color:#16a34a33}.yn-btn.no{border-color:#dc262633}.star-group{display:inline-flex;gap:6px;align-items:center;margin-top:7px;position:relative!important;top:12px!important}.star-group .star{appearance:none;border:none;background:transparent;cursor:pointer;font-size:18px;line-height:1;color:#444547;padding:0 1px;transition:transform .08s ease,color .08s ease}.star-group .star.filled{color:#f59e0b}.star-group .star:hover{transform:scale(1.08)}.input-row{display:flex;gap:8px;padding:10px;background:#fff;border-top:1px solid #e6e9ee;align-items:flex-end;flex-shrink:0}.chat-input-wrapper{flex:1;border-radius:8px;border:1px solid #d1d5db;overflow:hidden;background:#fff;display:flex}.chat-input{width:100%;resize:none;border:none;outline:none;padding:8px 10px;font-size:14px;line-height:1.2;min-height:20px;max-height:100px;overflow-y:auto;box-sizing:border-box;background:transparent}.chat-input:focus{outline:none;box-shadow:none}.send-btn{height:36px;align-self:flex-end;padding:0 14px;background:var(--ion-color-primary)!important;color:#fff!important;border:none;border-radius:8px;cursor:pointer;white-space:nowrap;font-size:14px}.send-btn:disabled{opacity:.6;cursor:not-allowed}.formatted-text{white-space:pre-line}.icon-label{display:flex;align-items:center;gap:8px}.amelia-header-icon{width:26px;height:26px;border-radius:50%;object-fit:cover;background:#fff;flex-shrink:0}.text-block{display:flex;flex-direction:column;line-height:1.1}.bubble.bot,.bot .bubble{display:flex;align-items:flex-start;gap:8px}.bot .bubble .feedback-block{display:flex;flex-direction:column;align-items:flex-start;flex:1;min-width:0}.feedback-message{width:100%;display:block;white-space:normal;overflow-wrap:anywhere}.feedback-actions{display:flex;align-items:center;gap:8px;width:100%;justify-content:flex-start}.feedback-actions .yn-btn{flex:0 0 auto}.bubble-content{display:flex;flex-direction:column;align-items:flex-start;flex:1;min-width:0}.formatted-text{display:block;width:100%;white-space:normal;overflow-wrap:anywhere}.feedback{display:flex;align-items:center;gap:8px;margin-top:8px;width:100%}.yn-group{display:flex;align-items:center;gap:8px;margin-top:8px}.amelia-message-icon{width:24px;height:24px;border-radius:50%;object-fit:cover;background:#fff;flex-shrink:0}.chat-popup.expanded{width:40vw!important;height:86vh!important;position:fixed!important;bottom:16px!important;right:40px!important;left:auto!important;max-width:650px!important;max-height:calc(100vh - 80px)!important;border-radius:8px!important;display:flex!important;flex-direction:column!important;visibility:visible!important;opacity:1!important;z-index:9999!important}.chat-top-actions{display:flex;justify-content:flex=end;align-items:center;gap:6px;padding:4px 8px;background:transparent;flex-shrink:0;position:absolute;top:-1px;right:0!important;width:auto!important;z-index:10000;position:absolute!important}.top-action-btn{border:none;background:transparent!important;color:#000!important;font-size:16px;font-weight:700;line-height:22px;cursor:pointer;padding:0;border-radius:none!important;width:24px;height:24px;text-align:center}.top-action-btn:hover{background:#eee;border-radius:4px}.top-action-btn .pi{font-size:16px}.chat-top-actions.top-action-btn{color:#000!important;background:transparent!important;border:none!important;font-size:16px;font-weight:700;cursor:pointer;width:24px;height:24px;line-height:24px;padding:0;border-radius:5px 0 0}.bot .bubble:has(.star-group){display:grid!important;grid-template-columns:24px 1fr!important;grid-template-rows:auto auto!important;column-gap:8px!important;row-gap:6px!important;align-items:start!important;min-width:270px!important;padding:12px!important}.bot .bubble:has(.star-group) .amelia-message-icon{grid-column:1!important;grid-row:1 / span 2!important;margin-top:0!important}.bot .bubble:has(.star-group)>div:first-of-type{grid-column:2!important;grid-row:1!important;white-space:no wrap!important}.bot .bubble:has(.star-group) .star-group{grid-column:2!important;grid-row:2!important;display:flex!important;flex-direction:row!important;gap:8px!important;margin:0!important;padding:0!important;position:static!important;inset:auto!important}.bot .bubble:has(.yn-group){display:grid!important;grid-template-columns:24px minmax(0,1fr)!important;grid-template-rows:auto auto!important;column-gap:8px!important;row-gap:8px!important;align-items:start!important;width:100%!important;max-width:100%!important;min-width:0!important;padding:10px!important;box-sizing:border-box!important;overflow:hidden!important}.bot .bubble:has(.yn-group) .amelia-message-icon{grid-column:1!important;grid-row:1 / span 2!important}.bot .bubble:has(.yn-group) .formatted-text{display:block!important;width:auto!important;max-width:100%!important;min-width:0!important;grid-template-columns:24px minmax(0,1fr)!important;grid-template-rows:auto auto!important;white-space:normal!important;overflow-wrap:break-word!important;word-break:normal!important}.bot .bubble:has(.yn-group) .yn-group{grid-column:2!important;grid-row:2!important;display:flex!important;flex-direction:row!important;gap:8px!important;margin:0!important;padding:0!important;position:static!important}@media (max-width: 480px){.chat-popup{width:calc(100vw - 16px);right:8px;bottom:8px;height:70vh}.bubble{max-width:90%;font-size:13px}}\n"] }]
|
|
35310
|
+
}], () => [{ type: LexChatService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }], { clientFilter: [{
|
|
35311
|
+
type: Input
|
|
35312
|
+
}], messageInput: [{
|
|
35313
|
+
type: ViewChild,
|
|
35314
|
+
args: ['messageInput']
|
|
35315
|
+
}], chatWindow: [{
|
|
35316
|
+
type: ViewChild,
|
|
35317
|
+
args: ['chatWindow']
|
|
35318
|
+
}] }); })();
|
|
35319
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ChatbotLexComponent, { className: "ChatbotLexComponent", filePath: "lib\\components\\chatbot-lex\\chatbot-lex.component.ts", lineNumber: 26 }); })();
|
|
35320
|
+
|
|
34891
35321
|
function createTranslateLoader(http) {
|
|
34892
35322
|
// return new TranslateHttpLoader(http, `./assets/i18n/${environment.state}/`, ".json");
|
|
34893
35323
|
return new MultiTranslateHttpLoader(http, [
|
|
@@ -34978,7 +35408,8 @@ class NgxReusaAppLibModule {
|
|
|
34978
35408
|
CaptchaComponent, MfaComponent, UserLoginComponent, FileUploaderComponent, DynamicFormPanelComponent, DynamicFormQuestionComponent, DynamicFormComponent, RenderQuestionnairePage, FormBuilderPage, InputFocus, CommonSuccessPage, AccountSuccessPage, OverlayInfoComponent,
|
|
34979
35409
|
EmployerGridComponent, LegalDisclaimarComponent, MoneyExpectComponent, SearchEmployerComponent, AddEmployerComponent, AddressComponent, MultiQuestionnaireComponent, BankDetailsComponent, ProfileComponent, EmailUpdateComponent, MfaPopupComponent,
|
|
34980
35410
|
MaintenanceDetectorComponent, Mfa2Component, SecurityQuestionComponent, LexisNexisComponent, RequiredRolesDirective, JobSearchResultPageComponent, MaskEmailPipe, ProperCasePipe, DependentGridComponent, WeeklyCertEmployerComponentQe, WeeklyCertEmployerGridComponent, WeeklyCertWrptEmployerComponentQe, WeeklyCertWrptEmployerGridComponent, DynamicTranslatePipe, TrustHtmlPipe, AddParticipantComponent, ProfileRedirectComponent,
|
|
34981
|
-
Dropdown, DropdownItem, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, ContactUsComponent, ReadMoreComponent, FileDownloadComponent, SsnReverifyComponent, AddPaymentComponent, LinkComponent, SignSsnComponent, JobTitleComponent
|
|
35411
|
+
Dropdown, DropdownItem, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, ContactUsComponent, ReadMoreComponent, FileDownloadComponent, SsnReverifyComponent, AddPaymentComponent, LinkComponent, SignSsnComponent, JobTitleComponent,
|
|
35412
|
+
ChatbotLexComponent
|
|
34982
35413
|
],
|
|
34983
35414
|
imports: [
|
|
34984
35415
|
IonicModule,
|
|
@@ -35058,7 +35489,8 @@ class NgxReusaAppLibModule {
|
|
|
35058
35489
|
EmployerGridComponent, LegalDisclaimarComponent, MoneyExpectComponent, SearchEmployerComponent, AddEmployerComponent, AddressComponent, MultiQuestionnaireComponent, MyNotificationsPage, MyProfilePage, BankDetailsComponent, EmailUpdateComponent, MfaPopupComponent,
|
|
35059
35490
|
MaintenanceDetectorComponent, RequiredRolesDirective, JobSearchResultPageComponent, MaskEmailPipe, DependentGridComponent, WeeklyCertEmployerComponentQe, WeeklyCertEmployerGridComponent, WeeklyCertWrptEmployerComponentQe, WeeklyCertWrptEmployerGridComponent, DynamicTranslatePipe, AddParticipantComponent,
|
|
35060
35491
|
OverlayModule, SharedModule, ScrollerModule, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, Dropdown, DropdownItem, ContactUsComponent, SidebarModule, ReadMoreComponent, FileDownloadComponent, AddPaymentComponent,
|
|
35061
|
-
ProperCasePipe, TrustHtmlPipe, LinkComponent, SignSsnComponent, JobTitleComponent
|
|
35492
|
+
ProperCasePipe, TrustHtmlPipe, LinkComponent, SignSsnComponent, JobTitleComponent,
|
|
35493
|
+
ChatbotLexComponent
|
|
35062
35494
|
],
|
|
35063
35495
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
35064
35496
|
}]
|
|
@@ -35071,7 +35503,8 @@ class NgxReusaAppLibModule {
|
|
|
35071
35503
|
CaptchaComponent, MfaComponent, UserLoginComponent, FileUploaderComponent, DynamicFormPanelComponent, DynamicFormQuestionComponent, DynamicFormComponent, RenderQuestionnairePage, FormBuilderPage, InputFocus, CommonSuccessPage, AccountSuccessPage, OverlayInfoComponent,
|
|
35072
35504
|
EmployerGridComponent, LegalDisclaimarComponent, MoneyExpectComponent, SearchEmployerComponent, AddEmployerComponent, AddressComponent, MultiQuestionnaireComponent, BankDetailsComponent, ProfileComponent, EmailUpdateComponent, MfaPopupComponent,
|
|
35073
35505
|
MaintenanceDetectorComponent, Mfa2Component, SecurityQuestionComponent, LexisNexisComponent, RequiredRolesDirective, JobSearchResultPageComponent, MaskEmailPipe, ProperCasePipe, DependentGridComponent, WeeklyCertEmployerComponentQe, WeeklyCertEmployerGridComponent, WeeklyCertWrptEmployerComponentQe, WeeklyCertWrptEmployerGridComponent, DynamicTranslatePipe, TrustHtmlPipe, AddParticipantComponent, ProfileRedirectComponent,
|
|
35074
|
-
Dropdown, DropdownItem, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, ContactUsComponent, ReadMoreComponent, FileDownloadComponent, SsnReverifyComponent, AddPaymentComponent, LinkComponent, SignSsnComponent, JobTitleComponent
|
|
35506
|
+
Dropdown, DropdownItem, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, ContactUsComponent, ReadMoreComponent, FileDownloadComponent, SsnReverifyComponent, AddPaymentComponent, LinkComponent, SignSsnComponent, JobTitleComponent,
|
|
35507
|
+
ChatbotLexComponent], imports: [IonicModule,
|
|
35075
35508
|
CommonModule, i2$1.JoyrideModule, LoadingBarHttpClientModule,
|
|
35076
35509
|
InplaceModule,
|
|
35077
35510
|
TooltipModule,
|
|
@@ -35133,7 +35566,8 @@ class NgxReusaAppLibModule {
|
|
|
35133
35566
|
EmployerGridComponent, LegalDisclaimarComponent, MoneyExpectComponent, SearchEmployerComponent, AddEmployerComponent, AddressComponent, MultiQuestionnaireComponent, MyNotificationsPage, MyProfilePage, BankDetailsComponent, EmailUpdateComponent, MfaPopupComponent,
|
|
35134
35567
|
MaintenanceDetectorComponent, RequiredRolesDirective, JobSearchResultPageComponent, MaskEmailPipe, DependentGridComponent, WeeklyCertEmployerComponentQe, WeeklyCertEmployerGridComponent, WeeklyCertWrptEmployerComponentQe, WeeklyCertWrptEmployerGridComponent, DynamicTranslatePipe, AddParticipantComponent,
|
|
35135
35568
|
OverlayModule, SharedModule, ScrollerModule, DashboardCardComponent, ChangePasswordPage, RequalifyLiftPreviousIssuesComponent, Dropdown, DropdownItem, ContactUsComponent, SidebarModule, ReadMoreComponent, FileDownloadComponent, AddPaymentComponent,
|
|
35136
|
-
ProperCasePipe, TrustHtmlPipe, LinkComponent, SignSsnComponent, JobTitleComponent
|
|
35569
|
+
ProperCasePipe, TrustHtmlPipe, LinkComponent, SignSsnComponent, JobTitleComponent,
|
|
35570
|
+
ChatbotLexComponent] }); })();
|
|
35137
35571
|
i0.ɵɵsetComponentScope(FormBuilderPage, function () { return [i1$3.IonContent, i1$3.IonHeader, i1$3.IonSpinner, i1$4.NgIf, ContentComponent, HeaderComponent,
|
|
35138
35572
|
RenderQuestionnairePage]; }, []);
|
|
35139
35573
|
i0.ɵɵsetComponentScope(DependentGridComponent, function () { return [i1$3.IonButton, i1$3.IonLabel, i1$4.NgClass, i1$4.NgIf, i4$1.PrimeTemplate, i7$1.Dialog, i8$3.Table, i10.FaIconComponent, SsnComponent,
|
|
@@ -35608,5 +36042,5 @@ class CaseCoreModel {
|
|
|
35608
36042
|
* Generated bundle index. Do not edit.
|
|
35609
36043
|
*/
|
|
35610
36044
|
|
|
35611
|
-
export { AccessibilityPolicyPage, AccountSuccessPage, AddEmployerComponent, AddParticipantComponent, AddPaymentComponent, AddressComponent, AuthGuard, AutofocusDirective, BankDetailsComponent, BasePage, BaseService, CapsLockDirective, CaptchaComponent, CaptchaService, CardComponent, CaseCoreModel, ChangePasswordPage,
|
|
36045
|
+
export { AccessibilityPolicyPage, AccountSuccessPage, AddEmployerComponent, AddParticipantComponent, AddPaymentComponent, AddressComponent, AuthGuard, AutofocusDirective, BankDetailsComponent, BasePage, BaseService, CapsLockDirective, CaptchaComponent, CaptchaService, CardComponent, CaseCoreModel, ChangePasswordPage, ChatbotLexComponent, Choices, ChoicesModel, ClaimAppEmpRequestModel, ClaimantContextService, ClaimantService$1 as ClaimantService, CmpService, ComboOption, CommonSuccessPage, ComplaintCategoryModel, ComplaintCategoryOutputModel, ContactUsComponent, ContactUsInqueryModel, ContactUsModel, ContentComponent, CorrespondenceDownloadComponent, CustomErrorStateMatcher, DROPDOWN_VALUE_ACCESSOR, DashboardCardComponent, DependentGridComponent, DisclosureComponent, DmsService, Dropdown, DropdownItem, DynamicFormComponent, DynamicFormPanelComponent, DynamicFormQuestionComponent, DynamicTranslatePipe, ElementsModel, EmailStatusEnum, EmailTemplateModle, EmailUpdateComponent, EmployerGridComponent, ErrorComponent, ErrorModel, FavMenuComponent, FileDownloadComponent, FileUploaderComponent, FilterPipe, FooterComponent, FormBuilderPage, GoogleAnalyticsService, HeaderComponent, HelpComponent, HelpService, HttpErrorInterceptor, HttpHeaderInterceptor, IdleDetectorComponent, IdleService, InfoComponent, InputFocus, JobSearchResultPageComponent, JobTitleComponent, Landing2Component, LegalDisclaimarComponent, LegalDisclaimarModel, LexChatService, LexisNexisComponent, LibConstants, LinkComponent, LoggerService, LoginComponent, LoginService, MaintenanceDetectorComponent, MaintenanceService, MaskComponent, MaskEmailPipe, MenuComponent, Mfa2Component, MfaComponent, MfaPopupComponent, MoneyExpectComponent, MsgComponent, MultiQuestionnaireComponent, MyNotificationsPage, MyProfilePage, NewsComponent, NgxReusaAppLibComponent, NgxReusaAppLibModule, NgxReusaAppLibService, NoLoginGuard, NotFoundPage, NotificationService, OverlayInfoComponent, PageComponent, PrivacyDisclaimerPage, ProperCasePipe, QuestionBase, QuestionService, QuestionnaireQueryModel, ReadMoreComponent, RenderQuestionnairePage, RequalifyLiftPreviousIssuesComponent, RequiredRolesDirective, SearchEmployerComponent, SecurityPolicyPage, SecurityQuestionComponent, SelectComponent, SignSsnComponent, SsnComponent, TestComponent, TourService, TrendModel, TrustHtmlPipe, UnauthorizedPage, UserLoginComponent, UserModel, UserSearchComponent, UtilService, ValidationModel, ValidationService, WeeklyCertEmployerComponentQe, WeeklyCertEmployerGridComponent, WeeklyCertWrptEmployerComponentQe, WeeklyCertWrptEmployerGridComponent, createTranslateLoader, enterAnimation, getBaseUrl, rowExpansionTrigger };
|
|
35612
36046
|
//# sourceMappingURL=ksremp-ngx-ksremp-app-lib.mjs.map
|