├── .forceignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .sf ├── config.json └── orgs │ └── 00D5g00000KM6faEAD │ └── localSourceTracking │ ├── HEAD │ └── config ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── config └── project-scratch-def.json ├── force-app └── main │ └── default │ ├── aura │ ├── AccountNotications │ │ ├── AccountNotications.cmp │ │ ├── AccountNotications.cmp-meta.xml │ │ └── AccountNoticationsController.js │ ├── AccountOverride │ │ ├── AccountOverride.cmp │ │ ├── AccountOverride.cmp-meta.xml │ │ └── AccountOverrideController.js │ ├── AllPageTypes │ │ ├── AllPageTypes.cmp │ │ └── AllPageTypes.cmp-meta.xml │ ├── AppHostableComp │ │ ├── AppHostableComp.cmp │ │ └── AppHostableComp.cmp-meta.xml │ ├── AppforVF │ │ ├── AppforVF.app │ │ └── AppforVF.app-meta.xml │ ├── AssetClassSelector │ │ ├── AssetClassSelector.cmp │ │ ├── AssetClassSelector.cmp-meta.xml │ │ ├── AssetClassSelector.css │ │ ├── AssetClassSelectorController.js │ │ └── AssetClassSelectorHelper.js │ ├── AuramethodCaller │ │ ├── AuramethodCaller.cmp │ │ ├── AuramethodCaller.cmp-meta.xml │ │ └── AuramethodCallerController.js │ ├── AuramethodCallerApp │ │ ├── AuramethodCallerApp.app │ │ └── AuramethodCallerApp.app-meta.xml │ ├── AuramethodComponent │ │ ├── AuramethodComponent.cmp │ │ ├── AuramethodComponent.cmp-meta.xml │ │ └── AuramethodComponentController.js │ ├── CaclculatorEventExample │ │ ├── CaclculatorEventExample.app │ │ └── CaclculatorEventExample.app-meta.xml │ ├── Calculator │ │ ├── Calculator.cmp │ │ ├── Calculator.cmp-meta.xml │ │ ├── Calculator.design │ │ ├── CalculatorController.js │ │ └── CalculatorHelper.js │ ├── CalculatorAppEvent │ │ ├── CalculatorAppEvent.evt │ │ └── CalculatorAppEvent.evt-meta.xml │ ├── CalculatorAppExample │ │ ├── CalculatorAppExample.app │ │ └── CalculatorAppExample.app-meta.xml │ ├── CalculatorApplicationEvent │ │ ├── CalculatorApplicationEvent.evt │ │ └── CalculatorApplicationEvent.evt-meta.xml │ ├── CalculatorComponent │ │ ├── CalculatorComponent.cmp │ │ ├── CalculatorComponent.cmp-meta.xml │ │ └── CalculatorComponentController.js │ ├── CalculatorComponentEvent │ │ ├── CalculatorComponentEvent.evt │ │ └── CalculatorComponentEvent.evt-meta.xml │ ├── CalculatorExample │ │ ├── CalculatorExample.cmp │ │ ├── CalculatorExample.cmp-meta.xml │ │ └── CalculatorExampleController.js │ ├── CalculatorExampleApp │ │ ├── CalculatorExampleApp.app │ │ └── CalculatorExampleApp.app-meta.xml │ ├── CalculatorHandler │ │ ├── CalculatorHandler.cmp │ │ ├── CalculatorHandler.cmp-meta.xml │ │ └── CalculatorHandlerController.js │ ├── CalculatorNotifier │ │ ├── CalculatorNotifier.cmp │ │ ├── CalculatorNotifier.cmp-meta.xml │ │ └── CalculatorNotifierController.js │ ├── CalculatorNotifierApp │ │ ├── CalculatorNotifierApp.app │ │ └── CalculatorNotifierApp.app-meta.xml │ ├── CalculatorResultComponent │ │ ├── CalculatorResultComponent.cmp │ │ ├── CalculatorResultComponent.cmp-meta.xml │ │ └── CalculatorResultComponentController.js │ ├── ComboBoxComponent │ │ ├── ComboBoxComponent.cmp │ │ ├── ComboBoxComponent.cmp-meta.xml │ │ └── ComboBoxComponentController.js │ ├── ComboBoxComponentHandler │ │ ├── ComboBoxComponentHandler.cmp │ │ ├── ComboBoxComponentHandler.cmp-meta.xml │ │ └── ComboBoxComponentHandlerController.js │ ├── ComboBoxExample │ │ ├── ComboBoxExample.cmp │ │ ├── ComboBoxExample.cmp-meta.xml │ │ └── ComboBoxExampleController.js │ ├── ComponentMethoCaller │ │ ├── ComponentMethoCaller.cmp │ │ ├── ComponentMethoCaller.cmp-meta.xml │ │ └── ComponentMethoCallerController.js │ ├── ComponentMethod │ │ ├── ComponentMethod.cmp │ │ ├── ComponentMethod.cmp-meta.xml │ │ └── ComponentMethodController.js │ ├── ComponentMethodCaller │ │ ├── ComponentMethodCaller.cmp │ │ ├── ComponentMethodCaller.cmp-meta.xml │ │ └── ComponentMethodCallerController.js │ ├── ComponentMethodDefinition │ │ ├── ComponentMethodDefinition.cmp │ │ ├── ComponentMethodDefinition.cmp-meta.xml │ │ └── ComponentMethodDefinitionController.js │ ├── ContacsList │ │ ├── ContacsList.cmp │ │ ├── ContacsList.cmp-meta.xml │ │ └── ContacsListController.js │ ├── ContacsListApp │ │ ├── ContacsListApp.app │ │ └── ContacsListApp.app-meta.xml │ ├── ContactCreation │ │ ├── ContactCreation.cmp │ │ ├── ContactCreation.cmp-meta.xml │ │ └── ContactCreationController.js │ ├── ContactCreationApp │ │ ├── ContactCreationApp.app │ │ └── ContactCreationApp.app-meta.xml │ ├── ContactCreationComponent │ │ ├── ContactCreationComponent.cmp │ │ ├── ContactCreationComponent.cmp-meta.xml │ │ └── ContactCreationComponentController.js │ ├── ContactCreationComponentApp │ │ ├── ContactCreationComponentApp.app │ │ └── ContactCreationComponentApp.app-meta.xml │ ├── ContactRecCreation │ │ ├── ContactRecCreation.cmp │ │ ├── ContactRecCreation.cmp-meta.xml │ │ └── ContactRecCreationController.js │ ├── ContactRecCreationApp │ │ ├── ContactRecCreationApp.app │ │ └── ContactRecCreationApp.app-meta.xml │ ├── DataComponent │ │ ├── DataComponent.cmp │ │ ├── DataComponent.cmp-meta.xml │ │ ├── DataComponent.design │ │ ├── DataComponentController.js │ │ └── DataComponentRenderer.js │ ├── DataComponentApp │ │ ├── DataComponentApp.app │ │ └── DataComponentApp.app-meta.xml │ ├── DataRetrievalFromImperative │ │ ├── DataRetrievalFromImperative.app │ │ └── DataRetrievalFromImperative.app-meta.xml │ ├── DataRetrievalFromImperative1 │ │ ├── DataRetrievalFromImperative1.cmp │ │ └── DataRetrievalFromImperative1.cmp-meta.xml │ ├── Demo4APP │ │ ├── Demo4APP.app │ │ └── Demo4APP.app-meta.xml │ ├── Demo5App │ │ ├── Demo5App.app │ │ └── Demo5App.app-meta.xml │ ├── Demo6 │ │ ├── Demo6.app │ │ └── Demo6.app-meta.xml │ ├── DesignComponentExample │ │ ├── DesignComponentExample.cmp │ │ ├── DesignComponentExample.cmp-meta.xml │ │ ├── DesignComponentExample.design │ │ └── DesignComponentExampleController.js │ ├── DualListBoxExample │ │ ├── DualListBoxExample.cmp │ │ ├── DualListBoxExample.cmp-meta.xml │ │ └── DualListBoxExampleController.js │ ├── DualListBoxExampleApp │ │ ├── DualListBoxExampleApp.app │ │ └── DualListBoxExampleApp.app-meta.xml │ ├── ExampleApexProperties │ │ ├── ExampleApexProperties.cmp │ │ ├── ExampleApexProperties.cmp-meta.xml │ │ └── ExampleApexPropertiesController.js │ ├── ExampleApexPropertiescarouselImage │ │ ├── ExampleApexPropertiescarouselImage.app │ │ └── ExampleApexPropertiescarouselImage.app-meta.xml │ ├── ForceInputField │ │ ├── ForceInputField.cmp │ │ ├── ForceInputField.cmp-meta.xml │ │ └── ForceInputFieldController.js │ ├── ForceInputFieldApp │ │ ├── ForceInputFieldApp.app │ │ └── ForceInputFieldApp.app-meta.xml │ ├── FundFilter │ │ ├── FundFilter.cmp │ │ ├── FundFilter.cmp-meta.xml │ │ ├── FundFilter.css │ │ └── FundFilterController.js │ ├── FundFilterChange │ │ ├── FundFilterChange.evt │ │ └── FundFilterChange.evt-meta.xml │ ├── FundInfoPopup │ │ ├── FundInfoPopup.cmp │ │ ├── FundInfoPopup.cmp-meta.xml │ │ ├── FundInfoPopup.css │ │ ├── FundInfoPopupController.js │ │ └── FundInfoPopupHelper.js │ ├── FundTile │ │ ├── FundTile.cmp │ │ ├── FundTile.cmp-meta.xml │ │ ├── FundTile.css │ │ ├── FundTileController.js │ │ └── FundTileHelper.js │ ├── FundTileList │ │ ├── FundTileList.cmp │ │ ├── FundTileList.cmp-meta.xml │ │ ├── FundTileList.css │ │ ├── FundTileListController.js │ │ └── FundTileListHelper.js │ ├── HandlerComponent │ │ ├── HandlerComponent.cmp │ │ ├── HandlerComponent.cmp-meta.xml │ │ └── HandlerComponentController.js │ ├── HandlerComponentApp │ │ ├── HandlerComponentApp.app │ │ └── HandlerComponentApp.app-meta.xml │ ├── LightingDataTableExample │ │ ├── LightingDataTableExample.cmp │ │ ├── LightingDataTableExample.cmp-meta.xml │ │ └── LightingDataTableExampleController.js │ ├── LightningDataServiceExample │ │ ├── LightningDataServiceExample.cmp │ │ ├── LightningDataServiceExample.cmp-meta.xml │ │ └── LightningDataServiceExampleController.js │ ├── LightningPageExmple │ │ ├── LightningPageExmple.cmp │ │ └── LightningPageExmple.cmp-meta.xml │ ├── MesageComponentEvent │ │ ├── MesageComponentEvent.evt │ │ └── MesageComponentEvent.evt-meta.xml │ ├── MyCommunityComponent │ │ ├── MyCommunityComponent.cmp │ │ ├── MyCommunityComponent.cmp-meta.xml │ │ ├── MyCommunityComponent.design │ │ ├── MyCommunityComponent.svg │ │ ├── MyCommunityComponentController.js │ │ ├── MyCommunityComponentHelper.js │ │ └── MyCommunityComponentRenderer.js │ ├── NotifierComponent │ │ ├── NotifierComponent.cmp │ │ ├── NotifierComponent.cmp-meta.xml │ │ └── NotifierComponentController.js │ ├── PaginatorEvent │ │ ├── PaginatorEvent.evt │ │ └── PaginatorEvent.evt-meta.xml │ ├── PercentReturnRange │ │ ├── PercentReturnRange.cmp │ │ ├── PercentReturnRange.cmp-meta.xml │ │ ├── PercentReturnRange.css │ │ ├── PercentReturnRange.design │ │ └── PercentReturnRangeController.js │ ├── Publisher_Aura │ │ ├── Publisher_Aura.auradoc │ │ ├── Publisher_Aura.cmp │ │ ├── Publisher_Aura.cmp-meta.xml │ │ ├── Publisher_Aura.css │ │ ├── Publisher_Aura.design │ │ ├── Publisher_Aura.svg │ │ ├── Publisher_AuraController.js │ │ ├── Publisher_AuraHelper.js │ │ └── Publisher_AuraRenderer.js │ ├── Quick_Contact_Creation │ │ ├── Quick_Contact_Creation.cmp │ │ ├── Quick_Contact_Creation.cmp-meta.xml │ │ ├── Quick_Contact_Creation.design │ │ └── Quick_Contact_CreationController.js │ ├── RangeChange │ │ ├── RangeChange.evt │ │ └── RangeChange.evt-meta.xml │ ├── Rating │ │ ├── Rating.cmp │ │ ├── Rating.cmp-meta.xml │ │ └── Rating.css │ ├── SearchBar │ │ ├── SearchBar.cmp │ │ ├── SearchBar.cmp-meta.xml │ │ ├── SearchBar.css │ │ └── SearchBarController.js │ ├── SectorSelector │ │ ├── SectorSelector.cmp │ │ ├── SectorSelector.cmp-meta.xml │ │ ├── SectorSelector.css │ │ ├── SectorSelectorController.js │ │ └── SectorSelectorHelper.js │ ├── SelectValComponentEvent │ │ ├── SelectValComponentEvent.evt │ │ └── SelectValComponentEvent.evt-meta.xml │ ├── Subscriber_Aura │ │ ├── Subscriber_Aura.auradoc │ │ ├── Subscriber_Aura.cmp │ │ ├── Subscriber_Aura.cmp-meta.xml │ │ ├── Subscriber_Aura.css │ │ ├── Subscriber_Aura.design │ │ ├── Subscriber_Aura.svg │ │ ├── Subscriber_AuraController.js │ │ ├── Subscriber_AuraHelper.js │ │ └── Subscriber_AuraRenderer.js │ ├── TabExample │ │ ├── TabExample.cmp │ │ └── TabExample.cmp-meta.xml │ ├── TestComponent │ │ ├── TestComponent.cmp │ │ ├── TestComponent.cmp-meta.xml │ │ ├── TestComponentController.js │ │ └── TestComponentHelper.js │ ├── TestComponentApp │ │ ├── TestComponentApp.app │ │ └── TestComponentApp.app-meta.xml │ ├── TreeGridExample │ │ ├── TreeGridExample.cmp │ │ ├── TreeGridExample.cmp-meta.xml │ │ ├── TreeGridExampleController.js │ │ └── TreeGridExampleHelper.js │ ├── TreeGridExampleApp │ │ ├── TreeGridExampleApp.app │ │ └── TreeGridExampleApp.app-meta.xml │ ├── ValueChange │ │ ├── ValueChange.evt │ │ └── ValueChange.evt-meta.xml │ ├── colorPickerContainer │ │ ├── colorPickerContainer.auradoc │ │ ├── colorPickerContainer.cmp │ │ ├── colorPickerContainer.cmp-meta.xml │ │ ├── colorPickerContainer.css │ │ ├── colorPickerContainer.design │ │ ├── colorPickerContainer.svg │ │ ├── colorPickerContainerController.js │ │ ├── colorPickerContainerHelper.js │ │ └── colorPickerContainerRenderer.js │ ├── colorPickerContainerApp │ │ ├── colorPickerContainerApp.app │ │ ├── colorPickerContainerApp.app-meta.xml │ │ ├── colorPickerContainerApp.auradoc │ │ ├── colorPickerContainerApp.css │ │ ├── colorPickerContainerApp.svg │ │ ├── colorPickerContainerAppController.js │ │ ├── colorPickerContainerAppHelper.js │ │ └── colorPickerContainerAppRenderer.js │ ├── forgotPassword │ │ ├── forgotPassword.cmp │ │ ├── forgotPassword.cmp-meta.xml │ │ ├── forgotPassword.css │ │ ├── forgotPassword.design │ │ ├── forgotPasswordController.js │ │ └── forgotPasswordHelper.js │ ├── loginForm │ │ ├── loginForm.cmp │ │ ├── loginForm.cmp-meta.xml │ │ ├── loginForm.css │ │ ├── loginForm.design │ │ ├── loginFormController.js │ │ └── loginFormHelper.js │ ├── selfRegister │ │ ├── selfRegister.cmp │ │ ├── selfRegister.cmp-meta.xml │ │ ├── selfRegister.css │ │ ├── selfRegister.design │ │ ├── selfRegisterController.js │ │ └── selfRegisterHelper.js │ ├── setExpId │ │ ├── setExpId.evt │ │ └── setExpId.evt-meta.xml │ └── setStartUrl │ │ ├── setStartUrl.evt │ │ └── setStartUrl.evt-meta.xml │ ├── classes │ ├── AccountActionsHandler.cls │ ├── AccountActionsHandler.cls-meta.xml │ ├── AccountActionsTest.cls │ ├── AccountActionsTest.cls-meta.xml │ ├── AccountController.cls │ ├── AccountController.cls-meta.xml │ ├── AccountCreateServicecls.cls │ ├── AccountCreateServicecls.cls-meta.xml │ ├── AccountCreatecls.cls │ ├── AccountCreatecls.cls-meta.xml │ ├── AccountCreationController.cls │ ├── AccountCreationController.cls-meta.xml │ ├── AccountCreationcls.cls │ ├── AccountCreationcls.cls-meta.xml │ ├── AccountCreationclsTest.cls │ ├── AccountCreationclsTest.cls-meta.xml │ ├── AccountCretaionCtrl.cls │ ├── AccountCretaionCtrl.cls-meta.xml │ ├── AccountInsertAction.cls │ ├── AccountInsertAction.cls-meta.xml │ ├── AccountInsertActionforContacts.cls │ ├── AccountInsertActionforContacts.cls-meta.xml │ ├── AccountListController.cls │ ├── AccountListController.cls-meta.xml │ ├── AccountParser.cls │ ├── AccountParser.cls-meta.xml │ ├── AccountRecordsctrl.cls │ ├── AccountRecordsctrl.cls-meta.xml │ ├── AccountSaveController.cls │ ├── AccountSaveController.cls-meta.xml │ ├── AccountSearchCls.cls │ ├── AccountSearchCls.cls-meta.xml │ ├── AccountSearchController.cls │ ├── AccountSearchController.cls-meta.xml │ ├── AccountService.cls │ ├── AccountService.cls-meta.xml │ ├── Accountcls.cls │ ├── Accountcls.cls-meta.xml │ ├── AccountclsTest.cls │ ├── AccountclsTest.cls-meta.xml │ ├── AggregateResultController.cls │ ├── AggregateResultController.cls-meta.xml │ ├── CM_AccountService.cls │ ├── CM_AccountService.cls-meta.xml │ ├── CalculateNumbers.cls │ ├── CalculateNumbers.cls-meta.xml │ ├── Calculatorcontroller.cls │ ├── Calculatorcontroller.cls-meta.xml │ ├── Calculatorctrl.cls │ ├── Calculatorctrl.cls-meta.xml │ ├── ChangePasswordController.cls │ ├── ChangePasswordController.cls-meta.xml │ ├── ChangePasswordControllerTest.cls │ ├── ChangePasswordControllerTest.cls-meta.xml │ ├── CommunitiesLandingController.cls │ ├── CommunitiesLandingController.cls-meta.xml │ ├── CommunitiesLandingControllerTest.cls │ ├── CommunitiesLandingControllerTest.cls-meta.xml │ ├── CommunitiesLoginController.cls │ ├── CommunitiesLoginController.cls-meta.xml │ ├── CommunitiesLoginControllerTest.cls │ ├── CommunitiesLoginControllerTest.cls-meta.xml │ ├── CommunitiesSelfRegConfirmController.cls │ ├── CommunitiesSelfRegConfirmController.cls-meta.xml │ ├── CommunitiesSelfRegConfirmControllerTest.cls │ ├── CommunitiesSelfRegConfirmControllerTest.cls-meta.xml │ ├── CommunitiesSelfRegController.cls │ ├── CommunitiesSelfRegController.cls-meta.xml │ ├── CommunitiesSelfRegControllerTest.cls │ ├── CommunitiesSelfRegControllerTest.cls-meta.xml │ ├── ContactActionsTest.cls │ ├── ContactActionsTest.cls-meta.xml │ ├── ContactController.cls │ ├── ContactController.cls-meta.xml │ ├── ContactTriggerHandler.cls │ ├── ContactTriggerHandler.cls-meta.xml │ ├── ContentDocumentLinkTriggerHandler.cls │ ├── ContentDocumentLinkTriggerHandler.cls-meta.xml │ ├── ContentDocumentTriggerHandler.cls │ ├── ContentDocumentTriggerHandler.cls-meta.xml │ ├── CreateContactcls.cls │ ├── CreateContactcls.cls-meta.xml │ ├── CreateContactcls1.cls │ ├── CreateContactcls1.cls-meta.xml │ ├── DeleteOpportunities.cls │ ├── DeleteOpportunities.cls-meta.xml │ ├── DemoController.cls │ ├── DemoController.cls-meta.xml │ ├── DynamicColumnsController.cls │ ├── DynamicColumnsController.cls-meta.xml │ ├── Ecom_KM_cls_GuestFeedBack.cls │ ├── Ecom_KM_cls_GuestFeedBack.cls-meta.xml │ ├── EmployeeCtrl.cls │ ├── EmployeeCtrl.cls-meta.xml │ ├── ForgotPasswordController.cls │ ├── ForgotPasswordController.cls-meta.xml │ ├── ForgotPasswordControllerTest.cls │ ├── ForgotPasswordControllerTest.cls-meta.xml │ ├── FundController.cls │ ├── FundController.cls-meta.xml │ ├── FundControllerTest.cls │ ├── FundControllerTest.cls-meta.xml │ ├── LightningDataTable.cls │ ├── LightningDataTable.cls-meta.xml │ ├── LightningExamplecls.cls │ ├── LightningExamplecls.cls-meta.xml │ ├── LightningForgotPasswordController.cls │ ├── LightningForgotPasswordController.cls-meta.xml │ ├── LightningForgotPasswordControllerTest.cls │ ├── LightningForgotPasswordControllerTest.cls-meta.xml │ ├── LightningLoginFormController.cls │ ├── LightningLoginFormController.cls-meta.xml │ ├── LightningLoginFormControllerTest.cls │ ├── LightningLoginFormControllerTest.cls-meta.xml │ ├── LightningSelfRegisterController.cls │ ├── LightningSelfRegisterController.cls-meta.xml │ ├── LightningSelfRegisterControllerTest.cls │ ├── LightningSelfRegisterControllerTest.cls-meta.xml │ ├── MassDeleteContacts.cls │ ├── MassDeleteContacts.cls-meta.xml │ ├── MyCustomPickList.cls │ ├── MyCustomPickList.cls-meta.xml │ ├── MyProfilePageController.cls │ ├── MyProfilePageController.cls-meta.xml │ ├── MyProfilePageControllerTest.cls │ ├── MyProfilePageControllerTest.cls-meta.xml │ ├── PicklistHelper.cls │ ├── PicklistHelper.cls-meta.xml │ ├── PicklistUtilcls.cls │ ├── PicklistUtilcls.cls-meta.xml │ ├── QeryUtilcls.cls │ ├── QeryUtilcls.cls-meta.xml │ ├── QuickContactCreation.cls │ ├── QuickContactCreation.cls-meta.xml │ ├── RetrieveContacts.cls │ ├── RetrieveContacts.cls-meta.xml │ ├── SFDXController.cls │ ├── SFDXController.cls-meta.xml │ ├── SaveAccontwithProperties.cls │ ├── SaveAccontwithProperties.cls-meta.xml │ ├── SchoolController.cls │ ├── SchoolController.cls-meta.xml │ ├── ShowRelatedContacts.cls │ ├── ShowRelatedContacts.cls-meta.xml │ ├── SiteLoginController.cls │ ├── SiteLoginController.cls-meta.xml │ ├── SiteLoginControllerTest.cls │ ├── SiteLoginControllerTest.cls-meta.xml │ ├── SiteRegisterController.cls │ ├── SiteRegisterController.cls-meta.xml │ ├── SiteRegisterControllerTest.cls │ ├── SiteRegisterControllerTest.cls-meta.xml │ ├── TestApexClass.cls │ ├── TestApexClass.cls-meta.xml │ ├── TestClass1.cls │ ├── TestClass1.cls-meta.xml │ ├── TestCompoentController.cls │ ├── TestCompoentController.cls-meta.xml │ ├── Test_DataFactory.cls │ ├── Test_DataFactory.cls-meta.xml │ ├── TreeGridExamples.cls │ ├── TreeGridExamples.cls-meta.xml │ ├── WrapperExample.cls │ ├── WrapperExample.cls-meta.xml │ ├── exampleCon.cls │ └── exampleCon.cls-meta.xml │ ├── components │ ├── SiteFooter.component │ ├── SiteFooter.component-meta.xml │ ├── SiteHeader.component │ ├── SiteHeader.component-meta.xml │ ├── SiteLogin.component │ ├── SiteLogin.component-meta.xml │ ├── SitePoweredBy.component │ └── SitePoweredBy.component-meta.xml │ ├── flows │ ├── Contact_Creation.flow-meta.xml │ └── Contact_Creation_with_Repeater.flow-meta.xml │ ├── lwc │ ├── .eslintrc.json │ ├── accountCreateSampleComp │ │ ├── accountCreateSampleComp.html │ │ ├── accountCreateSampleComp.js │ │ └── accountCreateSampleComp.js-meta.xml │ ├── accountCreation_Apex │ │ ├── accountCreation_Apex.html │ │ ├── accountCreation_Apex.js │ │ └── accountCreation_Apex.js-meta.xml │ ├── accountRecordUpdateComp │ │ ├── accountRecordUpdateComp.html │ │ ├── accountRecordUpdateComp.js │ │ └── accountRecordUpdateComp.js-meta.xml │ ├── accountRecordsList │ │ ├── accountRecordsList.html │ │ ├── accountRecordsList.js │ │ └── accountRecordsList.js-meta.xml │ ├── caclulate2Numbers │ │ ├── caclulate2Numbers.html │ │ ├── caclulate2Numbers.js │ │ └── caclulate2Numbers.js-meta.xml │ ├── calResult │ │ ├── calResult.html │ │ ├── calResult.js │ │ └── calResult.js-meta.xml │ ├── calcTest │ │ ├── calcTest.html │ │ ├── calcTest.js │ │ └── calcTest.js-meta.xml │ ├── child │ │ ├── child.html │ │ ├── child.js │ │ └── child.js-meta.xml │ ├── colorPicker │ │ ├── colorPicker.html │ │ ├── colorPicker.js │ │ └── colorPicker.js-meta.xml │ ├── contactList │ │ ├── contactList.css │ │ ├── contactList.html │ │ ├── contactList.js │ │ └── contactList.js-meta.xml │ ├── contactQuickUpdate │ │ ├── contactQuickUpdate.html │ │ ├── contactQuickUpdate.js │ │ └── contactQuickUpdate.js-meta.xml │ ├── contactRecordsList │ │ ├── contactRecordsList.html │ │ ├── contactRecordsList.js │ │ └── contactRecordsList.js-meta.xml │ ├── createAccount_LWC │ │ ├── createAccount_LWC.html │ │ ├── createAccount_LWC.js │ │ └── createAccount_LWC.js-meta.xml │ ├── createContact │ │ ├── createContact.html │ │ ├── createContact.js │ │ └── createContact.js-meta.xml │ ├── customLookupComp │ │ ├── customLookupComp.css │ │ ├── customLookupComp.html │ │ ├── customLookupComp.js │ │ └── customLookupComp.js-meta.xml │ ├── dataDisplayWithImperative │ │ ├── dataDisplayWithImperative.html │ │ ├── dataDisplayWithImperative.js │ │ └── dataDisplayWithImperative.js-meta.xml │ ├── dataDisplayusingDataTable │ │ ├── dataDisplayusingDataTable.html │ │ ├── dataDisplayusingDataTable.js │ │ └── dataDisplayusingDataTable.js-meta.xml │ ├── dataRetrievalwithImperative │ │ ├── dataRetrievalwithImperative.html │ │ ├── dataRetrievalwithImperative.js │ │ └── dataRetrievalwithImperative.js-meta.xml │ ├── dataTablewithWire │ │ ├── dataTablewithWire.html │ │ ├── dataTablewithWire.js │ │ └── dataTablewithWire.js-meta.xml │ ├── displayDatausingWire │ │ ├── displayDatausingWire.html │ │ ├── displayDatausingWire.js │ │ └── displayDatausingWire.js-meta.xml │ ├── displayNotifications │ │ ├── displayNotifications.html │ │ ├── displayNotifications.js │ │ └── displayNotifications.js-meta.xml │ ├── displayRecordsfromflow │ │ ├── displayRecordsfromflow.html │ │ ├── displayRecordsfromflow.js │ │ └── displayRecordsfromflow.js-meta.xml │ ├── dragger_Component │ │ ├── dragger_Component.css │ │ ├── dragger_Component.html │ │ ├── dragger_Component.js │ │ └── dragger_Component.js-meta.xml │ ├── drop_Component │ │ ├── drop_Component.html │ │ ├── drop_Component.js │ │ └── drop_Component.js-meta.xml │ ├── externaJSCSS │ │ ├── externaJSCSS.html │ │ ├── externaJSCSS.js │ │ └── externaJSCSS.js-meta.xml │ ├── helloWorld │ │ ├── helloWorld.html │ │ ├── helloWorld.js │ │ └── helloWorld.js-meta.xml │ ├── listner │ │ ├── listner.html │ │ ├── listner.js │ │ └── listner.js-meta.xml │ ├── lwcwithflowExmaple │ │ ├── lwcwithflowExmaple.html │ │ ├── lwcwithflowExmaple.js │ │ └── lwcwithflowExmaple.js-meta.xml │ ├── massDelete_LWC │ │ ├── massDelete_LWC.html │ │ ├── massDelete_LWC.js │ │ └── massDelete_LWC.js-meta.xml │ ├── multipleAccountInsertion │ │ ├── multipleAccountInsertion.html │ │ ├── multipleAccountInsertion.js │ │ └── multipleAccountInsertion.js-meta.xml │ ├── myLWEBComponent │ │ ├── myLWEBComponent.html │ │ ├── myLWEBComponent.js │ │ └── myLWEBComponent.js-meta.xml │ ├── parent │ │ ├── parent.html │ │ ├── parent.js │ │ └── parent.js-meta.xml │ ├── pickListExample │ │ ├── pickListExample.html │ │ ├── pickListExample.js │ │ └── pickListExample.js-meta.xml │ ├── platformEventEg │ │ ├── platformEventEg.html │ │ ├── platformEventEg.js │ │ └── platformEventEg.js-meta.xml │ ├── publish_lwc │ │ ├── publish_lwc.html │ │ ├── publish_lwc.js │ │ └── publish_lwc.js-meta.xml │ ├── publisher │ │ ├── publisher.html │ │ ├── publisher.js │ │ └── publisher.js-meta.xml │ ├── pubsub │ │ ├── pubsub.html │ │ ├── pubsub.js │ │ └── pubsub.js-meta.xml │ ├── recordCreationformComp │ │ ├── recordCreationformComp.html │ │ ├── recordCreationformComp.js │ │ └── recordCreationformComp.js-meta.xml │ ├── recordPickerExample │ │ ├── __tests__ │ │ │ └── recordPickerExample.test.js │ │ ├── recordPickerExample.html │ │ ├── recordPickerExample.js │ │ └── recordPickerExample.js-meta.xml │ ├── resultComponent │ │ ├── resultComponent.html │ │ ├── resultComponent.js │ │ └── resultComponent.js-meta.xml │ ├── searchAccount │ │ ├── searchAccount.html │ │ ├── searchAccount.js │ │ └── searchAccount.js-meta.xml │ ├── showContactsfromFlow │ │ ├── showContactsfromFlow.html │ │ ├── showContactsfromFlow.js │ │ └── showContactsfromFlow.js-meta.xml │ ├── subscriber_lwc │ │ ├── subscriber_lwc.html │ │ ├── subscriber_lwc.js │ │ └── subscriber_lwc.js-meta.xml │ ├── testLocalDevelopment │ │ ├── testLocalDevelopment.html │ │ ├── testLocalDevelopment.js │ │ └── testLocalDevelopment.js-meta.xml │ ├── testlwc │ │ ├── testlwc.html │ │ ├── testlwc.js │ │ └── testlwc.js-meta.xml │ ├── welcomeComp │ │ ├── welcomeComp.html │ │ ├── welcomeComp.js │ │ └── welcomeComp.js-meta.xml │ └── welcometrackproperty │ │ ├── welcometrackproperty.html │ │ ├── welcometrackproperty.js │ │ └── welcometrackproperty.js-meta.xml │ ├── messageChannels │ └── SampleMessageChannel.messageChannel-meta.xml │ ├── objects │ ├── Account_Creation_Event__e │ │ ├── Account_Creation_Event__e.object-meta.xml │ │ └── fields │ │ │ └── Account_Name__c.field-meta.xml │ ├── Bank_Account__c │ │ ├── Bank_Account__c.object-meta.xml │ │ ├── fields │ │ │ ├── Account_Holder_Name__c.field-meta.xml │ │ │ ├── Account_Number__c.field-meta.xml │ │ │ ├── Firm_Name__c.field-meta.xml │ │ │ ├── Interest_Rate__c.field-meta.xml │ │ │ ├── Location__c.field-meta.xml │ │ │ ├── Maximum_Amount_of_With_Drawls__c.field-meta.xml │ │ │ ├── Maximum_Number_of_With_Drawls__c.field-meta.xml │ │ │ └── Service_Charges__c.field-meta.xml │ │ ├── listViews │ │ │ ├── All.listView-meta.xml │ │ │ ├── Current_Accounts.listView-meta.xml │ │ │ └── Savings_Accounts.listView-meta.xml │ │ └── recordTypes │ │ │ ├── Current_Account.recordType-meta.xml │ │ │ └── Savings_Account.recordType-meta.xml │ ├── Company__c │ │ ├── Company__c.object-meta.xml │ │ ├── fields │ │ │ ├── Date_Of_Establishment__c.field-meta.xml │ │ │ └── No_of_Employees__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Department__c │ │ ├── Department__c.object-meta.xml │ │ ├── fields │ │ │ └── Start_Date__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Employee__c │ │ ├── Employee__c.object-meta.xml │ │ ├── fields │ │ │ ├── Basic__c.field-meta.xml │ │ │ ├── Company__c.field-meta.xml │ │ │ ├── Department__c.field-meta.xml │ │ │ ├── Employee_Name__c.field-meta.xml │ │ │ ├── Gross__c.field-meta.xml │ │ │ └── HRA__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Flight_Passenger__c │ │ ├── Flight_Passenger__c.object-meta.xml │ │ └── fields │ │ │ ├── Flight__c.field-meta.xml │ │ │ ├── Passenger__c.field-meta.xml │ │ │ └── Travel_Date__c.field-meta.xml │ ├── Flight__c │ │ ├── Flight__c.object-meta.xml │ │ ├── fields │ │ │ └── Flight_Number__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Fund__c │ │ ├── Fund__c.object-meta.xml │ │ ├── fields │ │ │ ├── Abbreviation__c.field-meta.xml │ │ │ ├── Asset_Class__c.field-meta.xml │ │ │ ├── Five_Year_Return__c.field-meta.xml │ │ │ ├── One_Year_Return__c.field-meta.xml │ │ │ ├── Rating__c.field-meta.xml │ │ │ ├── Sector__c.field-meta.xml │ │ │ ├── Two_Year_Return__c.field-meta.xml │ │ │ └── YTD_Return__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Gym_Contact__c │ │ ├── Gym_Contact__c.object-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Passenger__c │ │ ├── Passenger__c.object-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Price_Tag__mdt │ │ ├── Price_Tag__mdt.object-meta.xml │ │ └── fields │ │ │ ├── Discount__c.field-meta.xml │ │ │ └── Rate__c.field-meta.xml │ ├── School__c │ │ ├── School__c.object-meta.xml │ │ ├── fields │ │ │ ├── Location__c.field-meta.xml │ │ │ └── School_Key__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Sector__c │ │ ├── Sector__c.object-meta.xml │ │ ├── fields │ │ │ └── Sector_Id__c.field-meta.xml │ │ └── listViews │ │ │ └── All.listView-meta.xml │ ├── Student__c │ │ ├── Student__c.object-meta.xml │ │ ├── fields │ │ │ ├── Date_of_Birth__c.field-meta.xml │ │ │ ├── Email__c.field-meta.xml │ │ │ └── School__c.field-meta.xml │ │ └── listViews │ │ │ ├── All.listView-meta.xml │ │ │ └── Student_Queue_Student.listView-meta.xml │ ├── Test_Object__c │ │ ├── Test_Object__c.object-meta.xml │ │ ├── fields │ │ │ ├── AlphaBets__c.field-meta.xml │ │ │ └── Email__c.field-meta.xml │ │ ├── listViews │ │ │ └── All.listView-meta.xml │ │ └── recordTypes │ │ │ ├── A.recordType-meta.xml │ │ │ ├── B.recordType-meta.xml │ │ │ └── C.recordType-meta.xml │ └── ValidateData__mdt │ │ ├── ValidateData__mdt.object-meta.xml │ │ └── fields │ │ └── Employee_Count__c.field-meta.xml │ ├── pages │ ├── AccountCreation.page │ ├── AccountCreation.page-meta.xml │ ├── AccountRecordsListDisplay.page │ ├── AccountRecordsListDisplay.page-meta.xml │ ├── AccountSavewithActionfunction.page │ ├── AccountSavewithActionfunction.page-meta.xml │ ├── AccountSavewithFieldSet.page │ ├── AccountSavewithFieldSet.page-meta.xml │ ├── Account_Publisher.page │ ├── Account_Publisher.page-meta.xml │ ├── Account_Subscriber.page │ ├── Account_Subscriber.page-meta.xml │ ├── AccountsavewithindProperties.page │ ├── AccountsavewithindProperties.page-meta.xml │ ├── ActionPoller.page │ ├── ActionPoller.page-meta.xml │ ├── ActionRegionExample.page │ ├── ActionRegionExample.page-meta.xml │ ├── ActionStatusExample.page │ ├── ActionStatusExample.page-meta.xml │ ├── ActionStatuswithScenario.page │ ├── ActionStatuswithScenario.page-meta.xml │ ├── ActionSupport.page │ ├── ActionSupport.page-meta.xml │ ├── AddtoCart.page │ ├── AddtoCart.page-meta.xml │ ├── AggregateResultPage.page │ ├── AggregateResultPage.page-meta.xml │ ├── AnswersHome.page │ ├── AnswersHome.page-meta.xml │ ├── BandwidthExceeded.page │ ├── BandwidthExceeded.page-meta.xml │ ├── CalculatorVfpage.page │ ├── CalculatorVfpage.page-meta.xml │ ├── Catelog.page │ ├── Catelog.page-meta.xml │ ├── ChangePassword.page │ ├── ChangePassword.page-meta.xml │ ├── CommunitiesLanding.page │ ├── CommunitiesLanding.page-meta.xml │ ├── CommunitiesLogin.page │ ├── CommunitiesLogin.page-meta.xml │ ├── CommunitiesSelfReg.page │ ├── CommunitiesSelfReg.page-meta.xml │ ├── CommunitiesSelfRegConfirm.page │ ├── CommunitiesSelfRegConfirm.page-meta.xml │ ├── CommunitiesTemplate.page │ ├── CommunitiesTemplate.page-meta.xml │ ├── DemoPage.page │ ├── DemoPage.page-meta.xml │ ├── DisplaySelectedRecords.page │ ├── DisplaySelectedRecords.page-meta.xml │ ├── DynamicColumnGenearionPage.page │ ├── DynamicColumnGenearionPage.page-meta.xml │ ├── EXCELSample.page │ ├── EXCELSample.page-meta.xml │ ├── Exception.page │ ├── Exception.page-meta.xml │ ├── FileNotFound.page │ ├── FileNotFound.page-meta.xml │ ├── ForgotPassword.page │ ├── ForgotPassword.page-meta.xml │ ├── ForgotPasswordConfirm.page │ ├── ForgotPasswordConfirm.page-meta.xml │ ├── IdeasHome.page │ ├── IdeasHome.page-meta.xml │ ├── InMaintenance.page │ ├── InMaintenance.page-meta.xml │ ├── MyProfilePage.page │ ├── MyProfilePage.page-meta.xml │ ├── PDFSample.page │ ├── PDFSample.page-meta.xml │ ├── SiteLogin.page │ ├── SiteLogin.page-meta.xml │ ├── SiteRegister.page │ ├── SiteRegister.page-meta.xml │ ├── SiteRegisterConfirm.page │ ├── SiteRegisterConfirm.page-meta.xml │ ├── SiteTemplate.page │ ├── SiteTemplate.page-meta.xml │ ├── StdExceptionTemplate.page │ ├── StdExceptionTemplate.page-meta.xml │ ├── Subscriber_vf.page │ ├── Subscriber_vf.page-meta.xml │ ├── Subsriber_Account_vf.page │ ├── Subsriber_Account_vf.page-meta.xml │ ├── Unauthorized.page │ ├── Unauthorized.page-meta.xml │ ├── UnderConstruction.page │ ├── UnderConstruction.page-meta.xml │ ├── VFWithLightning.page │ ├── VFWithLightning.page-meta.xml │ ├── VfPagewithLtngComponent.page │ ├── VfPagewithLtngComponent.page-meta.xml │ ├── WelcomeMatVfPage.page │ ├── WelcomeMatVfPage.page-meta.xml │ ├── WrapperExample1.page │ ├── WrapperExample1.page-meta.xml │ ├── actionSupportWithScenario.page │ ├── actionSupportWithScenario.page-meta.xml │ ├── publisher_vf.page │ └── publisher_vf.page-meta.xml │ ├── staticresources │ ├── Bootstrap_Ref.resource-meta.xml │ ├── Bootstrap_Ref │ │ └── bootstrap-3.3.7-dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── DataCache.js │ ├── DataCache.resource-meta.xml │ ├── Jquery_Ref.js │ ├── Jquery_Ref.resource-meta.xml │ ├── Loading.gif │ ├── Loading.resource-meta.xml │ ├── MyJavascript.js │ ├── MyJavascript.resource-meta.xml │ ├── SiteSamples.resource-meta.xml │ ├── SiteSamples │ │ ├── SiteStyles.css │ │ └── img │ │ │ ├── clock.png │ │ │ ├── construction.png │ │ │ ├── force_logo.png │ │ │ ├── maintenance.png │ │ │ ├── poweredby.png │ │ │ ├── tools.png │ │ │ ├── unauthorized.png │ │ │ └── warning.png │ ├── assets.resource-meta.xml │ ├── assets │ │ ├── BioTrue-oneday-for-prebyopia.jpg │ │ ├── BioTrue.jpg │ │ ├── Clariti-1-Day-30-Pack.jpg │ │ ├── Clariti-1-Day-Toric-90-Pack.jpg │ │ ├── DailyDisposa.jpg │ │ ├── Day-Acuvue-Moist-Multifocal-90-Pack.jpg │ │ ├── MyDay_DailyDisposal.jpg │ │ ├── OneSignalPageSDKES6.js │ │ ├── OneSignalSDK.js │ │ ├── acuvue.jpg │ │ ├── acuvue2.jpg │ │ ├── airoptix.jpg │ │ ├── alcon-lens.jpg │ │ ├── alcon-lens.png │ │ ├── app.min.js │ │ ├── avaira.jpg │ │ ├── banner-min.jpg │ │ ├── banner1-min.jpg │ │ ├── bar_bg_en.jpg │ │ ├── bashlamb-banner-lens.jpg │ │ ├── bausch-lomb.png │ │ ├── biofinity.jpg │ │ ├── biomedic-1-day-extra-30-pack.jpg │ │ ├── biomedics-1-day-extra-90-pack.jpg │ │ ├── checkout.js │ │ ├── cooper-vision.png │ │ ├── dailies.jpg │ │ ├── day-extra-90-pack786-131.jpg │ │ ├── define-block.jpg │ │ ├── define.jpg │ │ ├── download.png │ │ ├── download1.jpg │ │ ├── download2.png │ │ ├── download3.png │ │ ├── font-awesome.css │ │ ├── freshlook.jpg │ │ ├── johnson-banner-lens.jpg │ │ ├── johnson-johnson.png │ │ ├── jquery-ui.css │ │ ├── lens-Australia.png │ │ ├── loader.gif │ │ ├── logo_anzlens.gif │ │ ├── logo_anzlens.png │ │ ├── mayday.jpg │ │ ├── oneday.jpg │ │ ├── owl.carousel.css │ │ ├── paypal-anzlens.png │ │ ├── pptm.js │ │ ├── proclear.jpg │ │ ├── purevision.jpg │ │ ├── responsive.css │ │ ├── rtl.css │ │ ├── saved_resource │ │ ├── soflens.jpg │ │ ├── stripe.css │ │ └── style.css │ ├── draft.png │ ├── draft.resource-meta.xml │ ├── messageresource.js │ ├── messageresource.resource-meta.xml │ ├── nouislider.resource-meta.xml │ └── nouislider │ │ ├── nouislider.css │ │ ├── nouislider.js │ │ ├── nouislider.min.css │ │ └── nouislider.min.js │ └── triggers │ ├── AccountActions.trigger │ ├── AccountActions.trigger-meta.xml │ ├── ContactActions.trigger │ ├── ContactActions.trigger-meta.xml │ ├── ContentDocumentLinkTrigger.trigger │ ├── ContentDocumentLinkTrigger.trigger-meta.xml │ ├── ContentDocumentTrigger.trigger │ └── ContentDocumentTrigger.trigger-meta.xml ├── manifest ├── package.xml └── package1.xml ├── scripts ├── apex │ └── hello.apex └── soql │ └── account.soql └── sfdx-project.json /.forceignore: -------------------------------------------------------------------------------- 1 | # List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status 2 | # More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm 3 | # 4 | 5 | package.xml 6 | 7 | # LWC configuration files 8 | **/jsconfig.json 9 | **/.eslintrc.json 10 | 11 | # LWC Jest 12 | **/__tests__/** 13 | **/tsconfig.json 14 | 15 | **/*.ts 16 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # List files or directories below to ignore them when running prettier 2 | # More information: https://prettier.io/docs/en/ignore.html 3 | # 4 | 5 | .sfdx 6 | .localdevserver -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "overrides": [ 4 | { 5 | "files": "**/lwc/**/*.html", 6 | "options": { "parser": "lwc" } 7 | }, 8 | { 9 | "files": "*.{cmp,page,component}", 10 | "options": { "parser": "html" } 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.sf/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "target-org": "sftechbook" 3 | } -------------------------------------------------------------------------------- /.sf/orgs/00D5g00000KM6faEAD/localSourceTracking/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /.sf/orgs/00D5g00000KM6faEAD/localSourceTracking/config: -------------------------------------------------------------------------------- 1 | [core] 2 | repositoryformatversion = 0 3 | filemode = false 4 | bare = false 5 | logallrefupdates = true 6 | symlinks = false 7 | ignorecase = true 8 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "salesforce.salesforcedx-vscode", 4 | "redhat.vscode-xml", 5 | "dbaeumer.vscode-eslint", 6 | "esbenp.prettier-vscode" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "search.exclude": { 3 | "**/node_modules": true, 4 | "**/bower_components": true, 5 | "**/.sfdx": true 6 | } 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ExampleCodes 2 | Hi, 3 | This Repoitorhy contains sample codes of Salesforce Techbook you tube channel. 4 | It contains up to date codes from Salesforce Techbook Channel. 5 | 6 | https://www.youtube.com/channel/UCipDch4PvPqm0uY4SK7mi1A (Salesforce Techbook). 7 | 8 | -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Demo company", 3 | "edition": "Developer", 4 | "features": [] 5 | } 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AccountNotications/AccountNotications.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AccountOverride/AccountOverride.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AccountOverride/AccountOverrideController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleEdit : function(component, event, helper) { 3 | alert('hi'); 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/AllPageTypes/AllPageTypes.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | Welcome to Lightning Page component 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AllPageTypes/AllPageTypes.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AppHostableComp/AppHostableComp.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | Welcome to Tab component 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AppHostableComp/AppHostableComp.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AppforVF/AppforVF.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AppforVF/AppforVF.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AssetClassSelector/AssetClassSelector.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AssetClassSelector/AssetClassSelector.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | max-width: 436px; 3 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/AuramethodCaller/AuramethodCaller.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AuramethodCallerApp/AuramethodCallerApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AuramethodCallerApp/AuramethodCallerApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AuramethodComponent/AuramethodComponent.cmp: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/aura/AuramethodComponent/AuramethodComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CaclculatorEventExample/CaclculatorEventExample.app: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CaclculatorEventExample/CaclculatorEventExample.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Calculator/Calculator.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Calculator/Calculator.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Account 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Calculator/CalculatorHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorAppEvent/CalculatorAppEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorAppEvent/CalculatorAppEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorAppExample/CalculatorAppExample.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorAppExample/CalculatorAppExample.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorApplicationEvent/CalculatorApplicationEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorApplicationEvent/CalculatorApplicationEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorComponent/CalculatorComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorComponent/CalculatorComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleClick : function(component, event, helper) { 3 | var sum = parseInt(component.get("v.firstNumber"))+parseInt(component.get("v.secondNumber")); 4 | var eventObj = $A.get("e.c:CalculatorApplicationEvent"); 5 | eventObj.setParams({"sumresult":sum}); 6 | eventObj.fire(); 7 | } 8 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorComponentEvent/CalculatorComponentEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorComponentEvent/CalculatorComponentEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorExample/CalculatorExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorExample/CalculatorExampleController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | calculate : function(component, event, helper) { 3 | var fnumber = component.find("fnum").get("v.value"); 4 | var snumber = component.find("snum").get("v.value"); 5 | var result = component.find("Result"); 6 | result.set("v.value",fnumber+snumber); 7 | } 8 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorExampleApp/CalculatorExampleApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorExampleApp/CalculatorExampleApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorHandler/CalculatorHandler.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorHandler/CalculatorHandlerController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleClick : function(component, event, helper) { 3 | component.set("v.result",event.getParam("sumresult")); 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorNotifier/CalculatorNotifier.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorNotifier/CalculatorNotifierController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleClick : function(component, event, helper) { 3 | //component.set("v.result",parseInt(component.get("v.firstNumber"))+parseInt(component.get("v.secondNumber"))); 4 | var sum = parseInt(component.get("v.firstNumber"))+parseInt(component.get("v.secondNumber")); 5 | var appEvent = $A.get("e.c:CalculatorAppEvent"); 6 | appEvent.setParams({"sumresult":sum}); 7 | appEvent.fire(); 8 | } 9 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorNotifierApp/CalculatorNotifierApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorNotifierApp/CalculatorNotifierApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorResultComponent/CalculatorResultComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/CalculatorResultComponent/CalculatorResultComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | getResult : function(component, event, helper) { 3 | component.set("v.result",event.getParam("sumresult")); 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxComponent/ComboBoxComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxComponent/ComboBoxComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleChange : function(component, event, helper) { 3 | var compEvent = component.getEvent("msgEvent"); 4 | compEvent.setParams({"selectedVal":component.get("v.selOption")}); 5 | compEvent.fire(); 6 | } 7 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxComponentHandler/ComboBoxComponentHandler.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Selected Value -- >{!v.SelectedOptionValue} 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxComponentHandler/ComboBoxComponentHandler.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxComponentHandler/ComboBoxComponentHandlerController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | showSelectedValue : function(component, event, helper) { 3 | component.set("v.SelectedOptionValue",event.getParam("selectedVal")) 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/ComboBoxExample/ComboBoxExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethoCaller/ComponentMethoCaller.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethod/ComponentMethod.cmp: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethod/ComponentMethod.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethodCaller/ComponentMethodCaller.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethodDefinition/ComponentMethodDefinition.cmp: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ComponentMethodDefinition/ComponentMethodDefinition.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContacsList/ContacsList.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContacsListApp/ContacsListApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContacsListApp/ContacsListApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreation/ContactCreation.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreation/ContactCreationController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | doSave : function(component, event, helper) { 3 | var action = component.get("c.createContact"); 4 | action.setParams({'contObj':component.get('v.contactObj')}); 5 | action.setCallback(this,function(data){ 6 | component.set('v.contactId',data.getReturnValue()) 7 | }); 8 | $A.enqueueAction(action); 9 | } 10 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreationApp/ContactCreationApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreationApp/ContactCreationApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreationComponent/ContactCreationComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreationComponentApp/ContactCreationComponentApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactCreationComponentApp/ContactCreationComponentApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactRecCreation/ContactRecCreation.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactRecCreationApp/ContactRecCreationApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ContactRecCreationApp/ContactRecCreationApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataComponent/DataComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataComponent/DataComponent.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataComponent/DataComponentRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | // Your renderer method overrides go here 3 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/DataComponentApp/DataComponentApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataComponentApp/DataComponentApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataRetrievalFromImperative/DataRetrievalFromImperative.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataRetrievalFromImperative/DataRetrievalFromImperative.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataRetrievalFromImperative1/DataRetrievalFromImperative1.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DataRetrievalFromImperative1/DataRetrievalFromImperative1.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo4APP/Demo4APP.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo4APP/Demo4APP.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo5App/Demo5App.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo5App/Demo5App.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo6/Demo6.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Demo6/Demo6.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DesignComponentExample/DesignComponentExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DesignComponentExample/DesignComponentExample.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DualListBoxExample/DualListBoxExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DualListBoxExampleApp/DualListBoxExampleApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/DualListBoxExampleApp/DualListBoxExampleApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ExampleApexProperties/ExampleApexProperties.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ExampleApexProperties/ExampleApexPropertiesController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | myAction : function(component, event, helper) { 3 | var action = component.get("c.getDetails"); 4 | action.setCallback(this,function(response){ 5 | component.set("v.wrapRecord",response.getReturnValue()); 6 | }); 7 | $A.enqueueAction(action); 8 | } 9 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/ExampleApexPropertiescarouselImage/ExampleApexPropertiescarouselImage.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ExampleApexPropertiescarouselImage/ExampleApexPropertiescarouselImage.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ForceInputField/ForceInputField.cmp: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ForceInputField/ForceInputField.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ForceInputFieldApp/ForceInputFieldApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ForceInputFieldApp/ForceInputFieldApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundFilter/FundFilter.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundFilter/FundFilter.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | padding: 0 20px; 3 | } 4 | 5 | .THIS .slds-section__title { 6 | margin-bottom: 12px; 7 | } 8 | 9 | .THIS .popup-icon { 10 | margin-right: 8px; 11 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/FundFilterChange/FundFilterChange.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundFilterChange/FundFilterChange.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundInfoPopup/FundInfoPopup.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundTile/FundTile.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundTile/FundTileController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | fundSelected : function(component, event, helper) { 3 | var fund = component.get("v.fund"); 4 | var selectSObjectEvent = $A.get("e.ltng:selectSObject"); 5 | selectSObjectEvent.setParams({"recordId": fund.Id}); 6 | selectSObjectEvent.fire(); 7 | }, 8 | 9 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/FundTile/FundTileHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/FundTileList/FundTileList.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/FundTileList/FundTileList.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | position: relative; 3 | } 4 | 5 | .THIS .slds-app-launcher__tile { 6 | margin: 0 0 1rem 0; 7 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/HandlerComponent/HandlerComponent.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Selected Value -- >{!v.SelectedOptionValue} 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/aura/HandlerComponent/HandlerComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/HandlerComponent/HandlerComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | showSelectedValue : function(component, event, helper) { 3 | component.set("v.SelectedOptionValue",event.getParam("selectedVal")) 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/HandlerComponentApp/HandlerComponentApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/HandlerComponentApp/HandlerComponentApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/LightingDataTableExample/LightingDataTableExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/LightningDataServiceExample/LightningDataServiceExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/LightningDataServiceExample/LightningDataServiceExampleController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | myAction : function(component, event, helper) { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/LightningPageExmple/LightningPageExmple.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | Record Id:{!v.recordId} 4 | Welcome to Lightning Page 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/LightningPageExmple/LightningPageExmple.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MesageComponentEvent/MesageComponentEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MesageComponentEvent/MesageComponentEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponent.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponent.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | myAction : function(component, event, helper) { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponentHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/MyCommunityComponent/MyCommunityComponentRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | // Your renderer method overrides go here 3 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/NotifierComponent/NotifierComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/NotifierComponent/NotifierComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleChange : function(component, event, helper) { 3 | var compEvent = component.getEvent("messageEvent"); 4 | compEvent.setParams({"selectedVal":component.get("v.selOption")}); 5 | compEvent.fire(); 6 | } 7 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/PaginatorEvent/PaginatorEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force-app/main/default/aura/PaginatorEvent/PaginatorEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/PercentReturnRange/PercentReturnRange.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/PercentReturnRange/PercentReturnRange.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_Aura.auradoc: -------------------------------------------------------------------------------- 1 | 2 | Documentation 3 | 4 | Example Description 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_Aura.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_Aura.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_Aura.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_AuraHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | myAction : function(component, event, helper) { 3 | var action = component.get("c.getAccounts"); 4 | action.setCallback(this,function(response){ 5 | var accountRecs = response.getReturnValue(); 6 | component.set("v.accoultList",accountRecs); 7 | }); 8 | $A.enqueueAction(action); 9 | }, 10 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/Publisher_Aura/Publisher_AuraRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | 3 | // Your renderer method overrides go here 4 | 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/Quick_Contact_Creation/Quick_Contact_Creation.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/RangeChange/RangeChange.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/RangeChange/RangeChange.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Rating/Rating.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Rating/Rating.css: -------------------------------------------------------------------------------- 1 | .THIS .slds-icon { 2 | width: 14px; 3 | height: 14px; 4 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/SearchBar/SearchBar.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/SearchBar/SearchBar.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | height: 40px; 3 | } 4 | 5 | .THIS .bar { 6 | max-width: 400px; 7 | } 8 | 9 | .THIS button { 10 | margin-left: 4px; 11 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/SectorSelector/SectorSelector.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/SectorSelector/SectorSelector.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | max-width: 436px; 3 | margin-top: 4px; 4 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/SelectValComponentEvent/SelectValComponentEvent.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/SelectValComponentEvent/SelectValComponentEvent.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_Aura.auradoc: -------------------------------------------------------------------------------- 1 | 2 | Documentation 3 | 4 | Example Description 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_Aura.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_Aura.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_Aura.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_AuraController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | handleChanged: function(cmp, message, helper) { 3 | if (message != null && message.getParam("recordId") != null) { 4 | cmp.set("v.accountIdfrmMsgChannel", message.getParam("recordId")); 5 | } 6 | } 7 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_AuraHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/Subscriber_Aura/Subscriber_AuraRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | 3 | // Your renderer method overrides go here 4 | 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/TabExample/TabExample.cmp: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tab Example 4 | 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TabExample/TabExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TestComponent/TestComponent.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TestComponent/TestComponentController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | addition : function(component, event, helper) { 3 | helper.helperAdditionMethod(component, event); 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/TestComponentApp/TestComponentApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TestComponentApp/TestComponentApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TreeGridExample/TreeGridExample.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | TreeGridExample 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TreeGridExample/TreeGridExampleController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | doInit: function (cmp, event, helper) { 3 | cmp.set('v.gridColumns', [ 4 | {label: 'name', fieldName: 'name', type: 'text'}, 5 | {label: 'label', fieldName: 'label', type: 'text'}, 6 | ]); 7 | helper.getData(cmp); 8 | }, 9 | 10 | 11 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/TreeGridExampleApp/TreeGridExampleApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/TreeGridExampleApp/TreeGridExampleApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | TreeGridExampleApp 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ValueChange/ValueChange.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/ValueChange/ValueChange.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | A Lightning Component Bundle 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainer.auradoc: -------------------------------------------------------------------------------- 1 | 2 | Documentation 3 | 4 | Example Description 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainer.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Component Bundle 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainer.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainer.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainerController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | applyColor : function(component, event, helper) { 3 | component.set("v.colorCodeText",event.getParam('colorCodeVal')); 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainerHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainer/colorPickerContainerRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | 3 | // Your renderer method overrides go here 4 | 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerApp.app: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerApp.app-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | A Lightning Application Bundle 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerApp.auradoc: -------------------------------------------------------------------------------- 1 | 2 | Documentation 3 | 4 | Example Description 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerApp.css: -------------------------------------------------------------------------------- 1 | .THIS { 2 | } -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerAppController.js: -------------------------------------------------------------------------------- 1 | ({ 2 | myAction : function(component, event, helper) { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerAppHelper.js: -------------------------------------------------------------------------------- 1 | ({ 2 | helperMethod : function() { 3 | 4 | } 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/colorPickerContainerApp/colorPickerContainerAppRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | 3 | // Your renderer method overrides go here 4 | 5 | }) -------------------------------------------------------------------------------- /force-app/main/default/aura/forgotPassword/forgotPassword.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Sample Component for forgotPassword 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/forgotPassword/forgotPassword.design: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/aura/loginForm/loginForm.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Sample Component for loginForm 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/selfRegister/selfRegister.cmp-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Sample Component for selfRegister 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/setExpId/setExpId.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/setExpId/setExpId.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Sample Event for setExpId 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/aura/setStartUrl/setStartUrl.evt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/aura/setStartUrl/setStartUrl.evt-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Sample Event for setStartUrl 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountActionsHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountActionsTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreateServicecls.cls: -------------------------------------------------------------------------------- 1 | global class AccountCreateServicecls{ 2 | webservice static string actCreateService(String accountName,String type,String industry){ 3 | Account actobj = new Account(); 4 | actobj.Name = accountName; 5 | actObj.Type = type; 6 | actObj.industry = industry; 7 | insert actObj; 8 | return actObj.id; 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreateServicecls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreatecls.cls: -------------------------------------------------------------------------------- 1 | global class AccountCreatecls { 2 | 3 | webservice static string actCreateService(String accountName,String type,String industry){ 4 | Account actobj = new Account(); 5 | actobj.Name = accountName; 6 | actObj.Type = type; 7 | actObj.industry = industry; 8 | insert actObj; 9 | return actObj.id; 10 | } 11 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreatecls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreationController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreationcls.cls: -------------------------------------------------------------------------------- 1 | public with sharing class AccountCreationcls { 2 | public Account actObj{get;set;} 3 | public AccountCreationcls() { 4 | actObj = new Account(); 5 | } 6 | public Pagereference saveAccount(){ 7 | insert actObj; 8 | return new Pagereference('/'+actObj.id); 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreationcls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCreationclsTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountCretaionCtrl.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountInsertAction.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountInsertActionforContacts.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountListController.cls: -------------------------------------------------------------------------------- 1 | public class AccountListController { 2 | @AuraEnabled 3 | public static List < Account > fetchAccts() { 4 | return [ SELECT Id, Name, Industry, Type FROM Account LIMIT 10 ]; 5 | } 6 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountListController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountParser.cls: -------------------------------------------------------------------------------- 1 | global class AccountParser{ 2 | public string Name; 3 | public String Type; 4 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountParser.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountRecordsctrl.cls: -------------------------------------------------------------------------------- 1 | public class AccountRecordsctrl { 2 | @Auraenabled 3 | public static List getAccounts(){ 4 | return [select id,name,industry from Account limit 10]; 5 | } 6 | 7 | @Auraenabled 8 | public static List getAccountRecords(String objName,String fields){ 9 | return database.query('select id,'+fields+' from '+objName+' where leadSource!=null and FirstName!=null limit 10'); 10 | } 11 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountRecordsctrl.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountSaveController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountSearchCls.cls: -------------------------------------------------------------------------------- 1 | public with sharing class AccountSearchCls { 2 | public AccountSearchCls() { 3 | 4 | } 5 | @AuraEnabled(cacheable=true) 6 | public static List getAccounts(String actName){ 7 | String keyString = '%'+actName+'%'; 8 | return [select id,name from Account where name like:keyString]; 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountSearchCls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountSearchController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountService.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/Accountcls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountclsTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/AggregateResultController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CM_AccountService.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CalculateNumbers.cls: -------------------------------------------------------------------------------- 1 | public with sharing class CalculateNumbers { 2 | public CalculateNumbers() { 3 | 4 | } 5 | @AuraEnabled 6 | public static integer getSummResult(integer firstNumber,integer secondNumber){ 7 | 8 | return (firstNumber+secondNumber); 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CalculateNumbers.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/Calculatorcontroller.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/Calculatorctrl.cls: -------------------------------------------------------------------------------- 1 | public class Calculatorctrl { 2 | @Auraenabled 3 | public static decimal calculateValues(decimal firstnumber,decimal secondnumber){ 4 | decimal sum = firstnumber + secondnumber; 5 | return sum; 6 | } 7 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/Calculatorctrl.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ChangePasswordController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ChangePasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLandingController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that takes the user to the right start page based on credentials or lack thereof 3 | */ 4 | public with sharing class CommunitiesLandingController { 5 | 6 | // Code we will invoke on page load. 7 | public PageReference forwardToStartPage() { 8 | return Network.communitiesLanding(); 9 | } 10 | 11 | public CommunitiesLandingController() {} 12 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLandingControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLoginController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLoginControllerTest.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that exposes the site login functionality 3 | */ 4 | @IsTest global with sharing class CommunitiesLoginControllerTest { 5 | @IsTest(SeeAllData=true) 6 | global static void testCommunitiesLoginController () { 7 | CommunitiesLoginController controller = new CommunitiesLoginController(); 8 | System.assertEquals(null, controller.forwardToAuthPage()); 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLoginControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that takes the user to the right start page based on credentials or lack thereof 3 | */ 4 | public with sharing class CommunitiesSelfRegConfirmController { 5 | 6 | public CommunitiesSelfRegConfirmController() {} 7 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegConfirmControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactActionsTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactController.cls: -------------------------------------------------------------------------------- 1 | public with sharing class ContactController { 2 | @AuraEnabled(cacheable=true) 3 | public static List findContactByAccountId(String accountId) { 4 | return [ 5 | SELECT Id, FirstName,LastName,Email,Phone 6 | FROM Contact 7 | WHERE AccountId=:accountId 8 | 9 | LIMIT 10]; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactTriggerHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContentDocumentLinkTriggerHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 51.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ContentDocumentTriggerHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 51.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CreateContactcls.cls: -------------------------------------------------------------------------------- 1 | public class CreateContactcls { 2 | @Auraenabled 3 | public static string createContact(Contact contObj){ 4 | System.debug('contact::'+contObj.firstName); 5 | insert contObj; 6 | return contObj.Id; 7 | } 8 | @Auraenabled 9 | public static List retrieveContacts(){ 10 | 11 | return [select id,FirstName,LastName,email from Contact limit 10]; 12 | } 13 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CreateContactcls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CreateContactcls1.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/DeleteOpportunities.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/DemoController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 38.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/DynamicColumnsController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/Ecom_KM_cls_GuestFeedBack.cls: -------------------------------------------------------------------------------- 1 | @RestResource(urlMapping='/AccountCreator/*') 2 | global without sharing class Ecom_KM_cls_GuestFeedBack{ 3 | @HttpPost 4 | global static String createFeedBack(AccountParser accountObj){ 5 | Account actObj = new Account(); 6 | actObj.Name = accountObj.Name; 7 | actObj.Type = accountObj.Type; 8 | insert actObj; 9 | return actObj.Id; 10 | } 11 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/Ecom_KM_cls_GuestFeedBack.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/EmployeeCtrl.cls: -------------------------------------------------------------------------------- 1 | public class EmployeeCtrl { 2 | public Employee__c empObj{get;set;} 3 | public String empNo{get;set;} 4 | public EmployeeCtrl(){ 5 | empObj = new Employee__c(); 6 | } 7 | public pagereference rertrieEmaployeeRecord(){ 8 | 9 | empObj = [select id,name,Employee_Name__c,HRA__C,Basic__C,Gross__c From Employee__c where name=:empNo]; 10 | return null; 11 | } 12 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/EmployeeCtrl.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ForgotPasswordController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ForgotPasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/FundController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/FundControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 39.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningDataTable.cls: -------------------------------------------------------------------------------- 1 | public class LightningDataTable { 2 | 3 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningDataTable.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningExamplecls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningForgotPasswordController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningForgotPasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningLoginFormController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningLoginFormControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningSelfRegisterController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/LightningSelfRegisterControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/MassDeleteContacts.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/MyCustomPickList.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/MyProfilePageController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/MyProfilePageControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/PicklistHelper.cls: -------------------------------------------------------------------------------- 1 | public with sharing class PicklistHelper { 2 | public PicklistHelper() { 3 | 4 | } 5 | @AuraEnabled(cacheable=true) 6 | public static Map getProfiles(){ 7 | Map profileMap = new Map(); 8 | for(Profile profileObj:[select id,name from Profile limit 10]){ 9 | profileMap.put(profileObj.Id,profileObj.Name); 10 | } 11 | return profileMap; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /force-app/main/default/classes/PicklistHelper.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/PicklistUtilcls.cls: -------------------------------------------------------------------------------- 1 | public class PicklistUtilcls { 2 | @Auraenabled 3 | public static Map retrieveValues(){ 4 | Map dummyValuesMap = new Map(); 5 | 6 | for(Contact contObj:[select id,name from Contact limit 10]){ 7 | dummyValuesMap.put(contObj.Id,contObj.Name); 8 | } 9 | return dummyValuesMap; 10 | } 11 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/PicklistUtilcls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/QeryUtilcls.cls: -------------------------------------------------------------------------------- 1 | public class QeryUtilcls { 2 | @Auraenabled 3 | public static List retrieveDetails(String sobjectName){ 4 | List sObjectList = new List(); 5 | String query = 'select id,name from '+sobjectName+' order by createddate desc limit 5'; 6 | sObjectList = database.query(query); 7 | return sObjectList; 8 | } 9 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/QeryUtilcls.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/QuickContactCreation.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/RetrieveContacts.cls: -------------------------------------------------------------------------------- 1 | public with sharing class RetrieveContacts { 2 | public List contactList{get;set;} 3 | public RetrieveContacts() { 4 | contactList = [select id,firstName,lastName,phone from Contact 5 | where firstName!=null and lastName!=null and phone!=null limit 10]; 6 | } 7 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/RetrieveContacts.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SFDXController.cls: -------------------------------------------------------------------------------- 1 | public with sharing class SFDXController { 2 | public SFDXController() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/SFDXController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SaveAccontwithProperties.cls: -------------------------------------------------------------------------------- 1 | public class SaveAccontwithProperties { 2 | public String accountName{get;set;} 3 | public String accountType{get;set;} 4 | public pagereference saveAccount(){ 5 | 6 | Account actObj = new Account(); 7 | actObj.Name = accountName; 8 | actObj.Type = accountType; 9 | insert actObj; 10 | return new pagereference('/'+actObj.Id); 11 | } 12 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/SaveAccontwithProperties.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SchoolController.cls: -------------------------------------------------------------------------------- 1 | public with sharing class SchoolController { 2 | public SchoolController() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/SchoolController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/ShowRelatedContacts.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SiteLoginController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SiteLoginControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SiteRegisterController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SiteRegisterControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/TestApexClass.cls: -------------------------------------------------------------------------------- 1 | public class TestApexClass { 2 | public TestApexClass(){ 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/TestApexClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/TestClass1.cls: -------------------------------------------------------------------------------- 1 | @isTest 2 | private with sharing class TestClass1 { 3 | @TestSetup 4 | static void makeData(){ 5 | 6 | } 7 | @IsTest 8 | static void testFirstMethod(){ 9 | 10 | Test.startTest(); 11 | /*System.runAs(contextuser){ 12 | 13 | }*/ 14 | Test.stopTest(); 15 | 16 | } 17 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/TestClass1.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/TestCompoentController.cls: -------------------------------------------------------------------------------- 1 | public class TestCompoentController { 2 | @Auraenabled 3 | public static decimal getAdditionResult(decimal fstNumber,decimal secNumber){ 4 | return (fstNumber+ secNumber); 5 | } 6 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/TestCompoentController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/Test_DataFactory.cls: -------------------------------------------------------------------------------- 1 | @isTest 2 | public class Test_DataFactory { 3 | 4 | public static Account prepareAccount(boolean isInsert) { 5 | Account actObj = new Account(); 6 | actObj.Name = 'SalesforceTechbook'; 7 | actObj.Industry = 'Engineering'; 8 | actObj.Type = 'Other'; 9 | if(isInsert){ 10 | insert actObj; 11 | } 12 | return actobj; 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/Test_DataFactory.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/TreeGridExamples.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/WrapperExample.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/exampleCon.cls: -------------------------------------------------------------------------------- 1 | public class exampleCon { 2 | Integer count = 0; 3 | 4 | public PageReference incrementCounter() { 5 | count++; 6 | return null; 7 | } 8 | 9 | public Integer getCount() { 10 | return count; 11 | } 12 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/exampleCon.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/components/SiteFooter.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@salesforce/eslint-config-lwc/recommended"] 3 | } 4 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountCreateSampleComp/accountCreateSampleComp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountCreateSampleComp/accountCreateSampleComp.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountCreation_Apex/accountCreation_Apex.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | 7 | lightning__AppPage 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountRecordUpdateComp/accountRecordUpdateComp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountRecordsList/accountRecordsList.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,wire } from 'lwc'; 2 | import getAccounts from '@salesforce/apex/AccountController.getAccounts'; 3 | export default class AccountRecordsList extends LightningElement { 4 | @wire(getAccounts) accounts; 5 | accountidfrmparent; 6 | handleClick(event){ 7 | event.preventDefault(); 8 | this.accountidfrmparent = event.target.dataset.accountid; 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/accountRecordsList/accountRecordsList.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | 7 | lightning__AppPage 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/calResult/calResult.html: -------------------------------------------------------------------------------- 1 | 2 | Addition Result:{sum} 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/calResult/calResult.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,api } from 'lwc'; 2 | 3 | export default class CalResult extends LightningElement { 4 | @api sum; 5 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/calResult/calResult.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/calcTest/calcTest.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/child/child.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,api } from 'lwc'; 2 | 3 | export default class Child extends LightningElement { 4 | @api textMessage; 5 | sendMessagetoParent(event){ 6 | const sendMessageFromChild = new CustomEvent('childmessage', {detail: 'Hi I am your child'}); 7 | this.dispatchEvent(sendMessageFromChild); 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/child/child.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | false 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/colorPicker/colorPicker.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/colorPicker/colorPicker.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class ColorPicker extends LightningElement { 4 | handleColorChange(event){ 5 | const colorCodeVal = event.target.value; 6 | const colorCodeEvent = new CustomEvent('colorchange',{ 7 | detail:{colorCodeVal}, 8 | }); 9 | this.dispatchEvent(colorCodeEvent); 10 | } 11 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/colorPicker/colorPicker.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | false 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactList/contactList.css: -------------------------------------------------------------------------------- 1 | img { 2 | width: 30px; 3 | height: 30px; 4 | border-radius: 50%; 5 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactList/contactList.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | true 5 | 6 | lightning__AppPage 7 | lightning__RecordPage 8 | lightning__HomePage 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactQuickUpdate/contactQuickUpdate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactQuickUpdate/contactQuickUpdate.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__RecordPage 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactRecordsList/contactRecordsList.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/contactRecordsList/contactRecordsList.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | false 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/createAccount_LWC/createAccount_LWC.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/createContact/createContact.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/customLookupComp/customLookupComp.css: -------------------------------------------------------------------------------- 1 | .searchButtonStyle{ 2 | margin-top: 4px; 3 | margin-right: 0px; 4 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/customLookupComp/customLookupComp.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataDisplayWithImperative/dataDisplayWithImperative.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataDisplayWithImperative/dataDisplayWithImperative.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataDisplayusingDataTable/dataDisplayusingDataTable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataDisplayusingDataTable/dataDisplayusingDataTable.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | lightning__Tab 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataRetrievalwithImperative/dataRetrievalwithImperative.html: -------------------------------------------------------------------------------- 1 | 2 | {recordId} 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataRetrievalwithImperative/dataRetrievalwithImperative.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataTablewithWire/dataTablewithWire.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Imperative 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/dataTablewithWire/dataTablewithWire.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | lightning__Tab 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayDatausingWire/displayDatausingWire.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {account.Name} 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayDatausingWire/displayDatausingWire.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | lightning__Tab 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayNotifications/displayNotifications.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 55.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayRecordsfromflow/displayRecordsfromflow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayRecordsfromflow/displayRecordsfromflow.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,api } from 'lwc'; 2 | 3 | export default class DisplayRecordsfromflow extends LightningElement { 4 | @api contactRecords = []; 5 | @api fieldColumns = [ 6 | { label: 'First Name', fieldName: 'FirstName' }, 7 | { label: 'Last Name', fieldName: 'LastName'}, 8 | { label: 'Email', fieldName: 'Email' } 9 | ]; 10 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/dragger_Component/dragger_Component.css: -------------------------------------------------------------------------------- 1 | .bolder_style{ 2 | border-radius: 25px; 3 | background: #78dca0; 4 | padding: 20px; 5 | width: 288px; 6 | height: 92px; 7 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/dragger_Component/dragger_Component.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,wire } from 'lwc'; 2 | import getAccounts from '@salesforce/apex/Accountcls.getAccountList'; 3 | export default class Dragger_Component extends LightningElement { 4 | @wire(getAccounts) accounts; 5 | handleDragStart(event){ 6 | event.dataTransfer.setData("account_id", event.target.dataset.item); 7 | } 8 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/dragger_Component/dragger_Component.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/drop_Component/drop_Component.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/externaJSCSS/externaJSCSS.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | 7 | lightning__AppPage 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/helloWorld/helloWorld.html: -------------------------------------------------------------------------------- 1 | 2 | Hello World!! 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/helloWorld/helloWorld.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class HelloWorld extends LightningElement { 4 | //Properties and functions 5 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/helloWorld/helloWorld.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | false 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/listner/listner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Listner 6 | 7 | 8 | {message} 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/listner/listner.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/lwcwithflowExmaple/lwcwithflowExmaple.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/lwcwithflowExmaple/lwcwithflowExmaple.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 58.0 4 | true 5 | 6 | lightning__RecordPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/massDelete_LWC/massDelete_LWC.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | 7 | lightning__Tab 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/multipleAccountInsertion/multipleAccountInsertion.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/myLWEBComponent/myLWEBComponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class DemoAccordion extends LightningElement { 4 | multiple = true; 5 | 6 | handleSectionToggle(event){ 7 | const myOpenSections = event.detail.openSections; 8 | } 9 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/myLWEBComponent/myLWEBComponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | false 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/parent/parent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,track } from 'lwc'; 2 | 3 | export default class Parent extends LightningElement { 4 | @track message; 5 | @track messageFromChild; 6 | sendDatatoChild(event){ 7 | this.message = 'Message from Parent!!!'; 8 | } 9 | handlechildMessage(event){ 10 | this.messageFromChild = event.detail; 11 | } 12 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/parent/parent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/pickListExample/pickListExample.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | 7 | lightning__AppPage 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventEg/platformEventEg.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 52.0 4 | true 5 | 6 | 7 | lightning__AppPage 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/publish_lwc/publish_lwc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {account.Name} 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/publish_lwc/publish_lwc.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/publisher/publisher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Publisher 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/publisher/publisher.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,wire } from 'lwc'; 2 | import { CurrentPageReference } from 'lightning/navigation'; 3 | import { fireEvent } from 'c/pubsub'; 4 | 5 | export default class Publisher extends LightningElement { 6 | @wire(CurrentPageReference) pageRef; 7 | publishMessage(event){ 8 | fireEvent(this.pageRef,'messagesend','This message comes from Publisher'); 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/publisher/publisher.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/pubsub/pubsub.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/pubsub/pubsub.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | false 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/recordCreationformComp/recordCreationformComp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/recordPickerExample/recordPickerExample.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 58.0 4 | true 5 | 6 | lightning__HomePage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/resultComponent/resultComponent.html: -------------------------------------------------------------------------------- 1 | 2 | Addition Result:{result} 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/resultComponent/resultComponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,api } from 'lwc'; 2 | 3 | export default class ResultComponent extends LightningElement { 4 | @api result; 5 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/resultComponent/resultComponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/searchAccount/searchAccount.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {accountObj.Name} 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/searchAccount/searchAccount.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__Tab 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/showContactsfromFlow/showContactsfromFlow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/showContactsfromFlow/showContactsfromFlow.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,api } from 'lwc'; 2 | 3 | export default class ShowContactsfromFlow extends LightningElement { 4 | @api records = []; 5 | @api fieldColumns = [ 6 | { label: 'First Name', fieldName: 'FirstName' }, 7 | { label: 'Last Name', fieldName: 'LastName'}, 8 | { label: 'Email', fieldName: 'Email' } 9 | ]; 10 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/subscriber_lwc/subscriber_lwc.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/testLocalDevelopment/testLocalDevelopment.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class TestLocalDevelopment extends LightningElement {} -------------------------------------------------------------------------------- /force-app/main/default/lwc/testLocalDevelopment/testLocalDevelopment.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | false 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/testlwc/testlwc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/testlwc/testlwc.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class Testlwc extends LightningElement {} -------------------------------------------------------------------------------- /force-app/main/default/lwc/testlwc/testlwc.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | false 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcomeComp/welcomeComp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {welcomeMsg} 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcomeComp/welcomeComp.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class WelcomeComp extends LightningElement { 4 | welcomeMsg='Welcome to Lightning Web Components!!'; 5 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcomeComp/welcomeComp.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | lightning__RecordPage 8 | lightning__HomePage 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcometrackproperty/welcometrackproperty.html: -------------------------------------------------------------------------------- 1 | 2 | Hi {greetings} 3 | 4 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcometrackproperty/welcometrackproperty.js: -------------------------------------------------------------------------------- 1 | import { LightningElement,track } from 'lwc'; 2 | 3 | export default class Welcometrackproperty extends LightningElement { 4 | @track greetings; 5 | handleGreetingChanges(event){ 6 | this.greetings = event.target.value; 7 | console.log( this.greetings); 8 | } 9 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/welcometrackproperty/welcometrackproperty.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 47.0 4 | true 5 | 6 | lightning__AppPage 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Account_Creation_Event__e/Account_Creation_Event__e.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Deployed 4 | HighVolume 5 | Account Creation Event 6 | Account Creation Event 7 | PublishAfterCommit 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Bank_Account__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Company__c/fields/Date_Of_Establishment__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Date_Of_Establishment__c 4 | false 5 | Date Of Establishment 6 | false 7 | false 8 | Date 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Company__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Department__c/fields/Start_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Start_Date__c 4 | false 5 | Start Date 6 | false 7 | false 8 | Date 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Department__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Employee__c/fields/Basic__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Basic__c 4 | false 5 | Basic 6 | 5 7 | true 8 | 0 9 | false 10 | Currency 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Employee__c/fields/Employee_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Employee_Name__c 4 | false 5 | Employee Name 6 | 80 7 | true 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Employee__c/fields/Gross__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Gross__c 4 | false 5 | Gross 6 | 10 7 | true 8 | 0 9 | false 10 | Currency 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Employee__c/fields/HRA__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HRA__c 4 | false 5 | HRA 6 | 5 7 | true 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Employee__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Employee_Name__c 6 | HRA__c 7 | Basic__c 8 | Gross__c 9 | Everything 10 | All 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Flight_Passenger__c/fields/Travel_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Travel_Date__c 4 | false 5 | Travel Date 6 | false 7 | false 8 | Date 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Flight__c/fields/Flight_Number__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flight_Number__c 4 | false 5 | Flight Number 6 | 12 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Flight__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Flight_Number__c 6 | Everything 7 | All 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/Abbreviation__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Abbreviation__c 4 | false 5 | Abbreviation 6 | 3 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/Five_Year_Return__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Five_Year_Return__c 4 | false 5 | Five Year Return 6 | 8 7 | false 8 | 2 9 | false 10 | Percent 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/One_Year_Return__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | One_Year_Return__c 4 | false 5 | One Year Return 6 | 8 7 | false 8 | 2 9 | false 10 | Percent 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/Rating__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Rating__c 4 | false 5 | Rating 6 | 1 7 | false 8 | 0 9 | false 10 | Number 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/Two_Year_Return__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Two_Year_Return__c 4 | false 5 | Two Year Return 6 | 8 7 | false 8 | 2 9 | false 10 | Percent 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/fields/YTD_Return__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YTD_Return__c 4 | false 5 | YTD Return 6 | 8 7 | false 8 | 2 9 | false 10 | Percent 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Fund__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Gym_Contact__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Passenger__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Price_Tag__mdt/Price_Tag__mdt.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Price Tag 4 | Price Tag 5 | Public 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Price_Tag__mdt/fields/Rate__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Rate__c 4 | false 5 | DeveloperControlled 6 | Rate 7 | 18 8 | false 9 | 0 10 | Percent 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/School__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Location__c 6 | Everything 7 | All 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Sector__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Student__c/fields/Date_of_Birth__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Date_of_Birth__c 4 | false 5 | Date of Birth 6 | false 7 | false 8 | Date 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Student__c/fields/Email__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email__c 4 | false 5 | Email 6 | false 7 | false 8 | Email 9 | false 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Student__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Student__c/listViews/Student_Queue_Student.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Student_Queue_Student 4 | Queue 5 | Student Queue 6 | Student_Queue 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Test_Object__c/fields/Email__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email__c 4 | false 5 | Email 6 | false 7 | false 8 | Email 9 | false 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Test_Object__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | All 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/ValidateData__mdt/ValidateData__mdt.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ValidateData 4 | ValidateData 5 | Public 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/pages/AccountRecordsListDisplay.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionPoller.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionPoller.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | false 5 | false 6 | ActionPoller 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionStatusExample.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionStatusExample.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | false 5 | false 6 | ActionStatusExample 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionStatuswithScenario.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | false 5 | false 6 | ActionStatuswithScenario 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/ActionSupport.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | false 5 | false 6 | ActionSupport 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/AnswersHome.page: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLogin.page: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesTemplate.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/pages/EXCELSample.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/pages/IdeasHome.page: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SiteTemplate.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/pages/Subsriber_Account_vf.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | Congratulations 4 | This is your new Page 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/pages/Subsriber_Account_vf.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Subsriber_Account_vf 5 | -------------------------------------------------------------------------------- /force-app/main/default/pages/VFWithLightning.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/pages/VfPagewithLtngComponent.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/pages/actionSupportWithScenario.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | false 5 | false 6 | actionSupportWithScenario 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Bootstrap_Ref.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/zip 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/Bootstrap_Ref/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /force-app/main/default/staticresources/DataCache.js: -------------------------------------------------------------------------------- 1 | window.DataCache = (function() { 2 | 3 | var cache = {}; 4 | 5 | return { 6 | setData: function(name, data) { 7 | cache[name] = data; 8 | }, 9 | 10 | getData: function(name) { 11 | return cache[name]; 12 | } 13 | }; 14 | 15 | }()); -------------------------------------------------------------------------------- /force-app/main/default/staticresources/DataCache.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/javascript 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Jquery_Ref.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | text/javascript 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/Loading.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/Loading.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | image/gif 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/MyJavascript.js: -------------------------------------------------------------------------------- 1 | window.callme = function(message){ 2 | return message +' You called me boy'; 3 | } -------------------------------------------------------------------------------- /force-app/main/default/staticresources/MyJavascript.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | text/javascript 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/zip 5 | Static resource for sites sample pages 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/clock.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/construction.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/force_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/force_logo.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/maintenance.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/poweredby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/poweredby.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/tools.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/unauthorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/unauthorized.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SiteSamples/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/SiteSamples/img/warning.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/x-zip-compressed 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/BioTrue-oneday-for-prebyopia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/BioTrue-oneday-for-prebyopia.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/BioTrue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/BioTrue.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/Clariti-1-Day-30-Pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/Clariti-1-Day-30-Pack.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/Clariti-1-Day-Toric-90-Pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/Clariti-1-Day-Toric-90-Pack.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/DailyDisposa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/DailyDisposa.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/Day-Acuvue-Moist-Multifocal-90-Pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/Day-Acuvue-Moist-Multifocal-90-Pack.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/MyDay_DailyDisposal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/MyDay_DailyDisposal.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/acuvue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/acuvue.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/acuvue2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/acuvue2.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/airoptix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/airoptix.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/alcon-lens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/alcon-lens.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/alcon-lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/alcon-lens.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/avaira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/avaira.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/banner-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/banner-min.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/banner1-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/banner1-min.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/bar_bg_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/bar_bg_en.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/bashlamb-banner-lens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/bashlamb-banner-lens.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/bausch-lomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/bausch-lomb.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/biofinity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/biofinity.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/biomedic-1-day-extra-30-pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/biomedic-1-day-extra-30-pack.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/biomedics-1-day-extra-90-pack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/biomedics-1-day-extra-90-pack.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/cooper-vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/cooper-vision.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/dailies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/dailies.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/day-extra-90-pack786-131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/day-extra-90-pack786-131.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/define-block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/define-block.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/define.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/define.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/download.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/download1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/download1.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/download2.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/download3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/download3.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/freshlook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/freshlook.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/johnson-banner-lens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/johnson-banner-lens.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/johnson-johnson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/johnson-johnson.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/lens-Australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/lens-Australia.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/loader.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/logo_anzlens.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/logo_anzlens.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/logo_anzlens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/logo_anzlens.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/mayday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/mayday.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/oneday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/oneday.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/paypal-anzlens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/paypal-anzlens.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/proclear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/proclear.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/purevision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/purevision.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/assets/soflens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/assets/soflens.jpg -------------------------------------------------------------------------------- /force-app/main/default/staticresources/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcetechbook/ExampleCodesofSessions/9d2fb540ed54c5a05846e47b187a1e4984deadb6/force-app/main/default/staticresources/draft.png -------------------------------------------------------------------------------- /force-app/main/default/staticresources/draft.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | image/png 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/messageresource.js: -------------------------------------------------------------------------------- 1 | messageme(message){ 2 | 3 | console.log('hi'+message); 4 | } -------------------------------------------------------------------------------- /force-app/main/default/staticresources/messageresource.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | text/javascript 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/nouislider.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/zip 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/AccountActions.trigger: -------------------------------------------------------------------------------- 1 | trigger AccountActions on Account (after insert,after update) { 2 | if(trigger.isInsert && trigger.isAfter){ 3 | AccountActionsHandler.createContacts(trigger.new); 4 | } 5 | if(trigger.isUpdate && trigger.isAfter){ 6 | AccountActionsHandler.createOpportunities(trigger.newMap,trigger.oldMap); 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /force-app/main/default/triggers/AccountActions.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43.0 4 | Inactive 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContactActions.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentDocumentLinkTrigger.trigger: -------------------------------------------------------------------------------- 1 | trigger ContentDocumentLinkTrigger on ContentDocumentLink (after insert,before delete) { 2 | if(trigger.isInsert && trigger.isAfter){ 3 | ContentDocumentLinkTriggerHandler.updateAccountonFileInsert(trigger.new); 4 | } 5 | } -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentDocumentLinkTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 51.0 4 | Active 5 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentDocumentTrigger.trigger: -------------------------------------------------------------------------------- 1 | trigger ContentDocumentTrigger on ContentDocument (before delete) { 2 | if(trigger.isDelete && trigger.isBefore){ 3 | ContentDocumentTriggerHandler.updateAccountonFileDelete(trigger.old); 4 | } 5 | } -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentDocumentTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 51.0 4 | Active 5 | -------------------------------------------------------------------------------- /manifest/package1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contact_Creation_with_Repeater 5 | Flow 6 | 7 | 47.0 8 | -------------------------------------------------------------------------------- /scripts/apex/hello.apex: -------------------------------------------------------------------------------- 1 | // Use .apex files to store anonymous Apex. 2 | // You can execute anonymous Apex in VS Code by selecting the 3 | // apex text and running the command: 4 | // SFDX: Execute Anonymous Apex with Currently Selected Text 5 | // You can also execute the entire file by running the command: 6 | // SFDX: Execute Anonymous Apex with Editor Contents 7 | 8 | string tempvar = 'Enter_your_name_here'; 9 | System.debug('Hello World!'); 10 | System.debug('My name is ' + tempvar); -------------------------------------------------------------------------------- /scripts/soql/account.soql: -------------------------------------------------------------------------------- 1 | // Use .soql files to store SOQL queries. 2 | // You can execute queries in VS Code by selecting the 3 | // query text and running the command: 4 | // SFDX: Execute SOQL Query with Currently Selected Text 5 | 6 | SELECT Id, Name FROM Account; -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "namespace": "", 9 | "sfdcLoginUrl": "https://login.salesforce.com", 10 | "sourceApiVersion": "47.0" 11 | } --------------------------------------------------------------------------------
4 | 5 |
{recordId}
Imperative
{account.Name}
8 | {message} 9 |
4 | 5 | 6 | {account.Name} 7 | 8 | 9 |
8 | 9 |
{welcomeMsg}