├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── src ├── aura ├── ChildCreatorApp │ ├── ChildCreatorApp.app │ └── ChildCreatorApp.app-meta.xml ├── ChildCreatorComponent │ ├── ChildCreatorComponent.auradoc │ ├── ChildCreatorComponent.cmp │ ├── ChildCreatorComponent.cmp-meta.xml │ ├── ChildCreatorComponent.design │ ├── ChildCreatorComponentController.js │ ├── ChildCreatorComponentHelper.js │ └── ChildCreatorComponentRenderer.js ├── ChildCreatorItem │ ├── ChildCreatorItem.cmp │ ├── ChildCreatorItem.cmp-meta.xml │ ├── ChildCreatorItemController.js │ └── ChildCreatorItemHelper.js ├── ContactsCustomCreator │ ├── ContactsCustomCreator.cmp │ ├── ContactsCustomCreator.cmp-meta.xml │ ├── ContactsCustomCreator.design │ └── ContactsCustomCreatorController.js ├── changeFieldValue │ ├── changeFieldValue.evt │ └── changeFieldValue.evt-meta.xml ├── customInputField │ ├── customInputField.cmp │ ├── customInputField.cmp-meta.xml │ ├── customInputFieldController.js │ └── customInputFieldHelper.js ├── removeItem │ ├── removeItem.evt │ └── removeItem.evt-meta.xml ├── returnItemList │ ├── returnItemList.evt │ └── returnItemList.evt-meta.xml ├── savedItemList │ ├── savedItemList.evt │ └── savedItemList.evt-meta.xml └── validationError │ ├── validationError.evt │ └── validationError.evt-meta.xml ├── classes ├── ChildCreatorController.cls ├── ChildCreatorController.cls-meta.xml ├── ChildCreatorControllerTest.cls └── ChildCreatorControllerTest.cls-meta.xml ├── package.xml └── staticresources ├── SLDS212.resource └── SLDS212.resource-meta.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/README.md -------------------------------------------------------------------------------- /src/aura/ChildCreatorApp/ChildCreatorApp.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorApp/ChildCreatorApp.app -------------------------------------------------------------------------------- /src/aura/ChildCreatorApp/ChildCreatorApp.app-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorApp/ChildCreatorApp.app-meta.xml -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponent.auradoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponent.auradoc -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponent.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponent.cmp -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponent.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponent.cmp-meta.xml -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponent.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponent.design -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponentController.js -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponentHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorComponent/ChildCreatorComponentHelper.js -------------------------------------------------------------------------------- /src/aura/ChildCreatorComponent/ChildCreatorComponentRenderer.js: -------------------------------------------------------------------------------- 1 | ({ 2 | // Your renderer method overrides go here 3 | }) -------------------------------------------------------------------------------- /src/aura/ChildCreatorItem/ChildCreatorItem.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorItem/ChildCreatorItem.cmp -------------------------------------------------------------------------------- /src/aura/ChildCreatorItem/ChildCreatorItem.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorItem/ChildCreatorItem.cmp-meta.xml -------------------------------------------------------------------------------- /src/aura/ChildCreatorItem/ChildCreatorItemController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorItem/ChildCreatorItemController.js -------------------------------------------------------------------------------- /src/aura/ChildCreatorItem/ChildCreatorItemHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ChildCreatorItem/ChildCreatorItemHelper.js -------------------------------------------------------------------------------- /src/aura/ContactsCustomCreator/ContactsCustomCreator.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ContactsCustomCreator/ContactsCustomCreator.cmp -------------------------------------------------------------------------------- /src/aura/ContactsCustomCreator/ContactsCustomCreator.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ContactsCustomCreator/ContactsCustomCreator.cmp-meta.xml -------------------------------------------------------------------------------- /src/aura/ContactsCustomCreator/ContactsCustomCreator.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ContactsCustomCreator/ContactsCustomCreator.design -------------------------------------------------------------------------------- /src/aura/ContactsCustomCreator/ContactsCustomCreatorController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/ContactsCustomCreator/ContactsCustomCreatorController.js -------------------------------------------------------------------------------- /src/aura/changeFieldValue/changeFieldValue.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/changeFieldValue/changeFieldValue.evt -------------------------------------------------------------------------------- /src/aura/changeFieldValue/changeFieldValue.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/changeFieldValue/changeFieldValue.evt-meta.xml -------------------------------------------------------------------------------- /src/aura/customInputField/customInputField.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/customInputField/customInputField.cmp -------------------------------------------------------------------------------- /src/aura/customInputField/customInputField.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/customInputField/customInputField.cmp-meta.xml -------------------------------------------------------------------------------- /src/aura/customInputField/customInputFieldController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/customInputField/customInputFieldController.js -------------------------------------------------------------------------------- /src/aura/customInputField/customInputFieldHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/customInputField/customInputFieldHelper.js -------------------------------------------------------------------------------- /src/aura/removeItem/removeItem.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/removeItem/removeItem.evt -------------------------------------------------------------------------------- /src/aura/removeItem/removeItem.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/removeItem/removeItem.evt-meta.xml -------------------------------------------------------------------------------- /src/aura/returnItemList/returnItemList.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/returnItemList/returnItemList.evt -------------------------------------------------------------------------------- /src/aura/returnItemList/returnItemList.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/returnItemList/returnItemList.evt-meta.xml -------------------------------------------------------------------------------- /src/aura/savedItemList/savedItemList.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/savedItemList/savedItemList.evt -------------------------------------------------------------------------------- /src/aura/savedItemList/savedItemList.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/savedItemList/savedItemList.evt-meta.xml -------------------------------------------------------------------------------- /src/aura/validationError/validationError.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/validationError/validationError.evt -------------------------------------------------------------------------------- /src/aura/validationError/validationError.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/aura/validationError/validationError.evt-meta.xml -------------------------------------------------------------------------------- /src/classes/ChildCreatorController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/classes/ChildCreatorController.cls -------------------------------------------------------------------------------- /src/classes/ChildCreatorController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/classes/ChildCreatorController.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ChildCreatorControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/classes/ChildCreatorControllerTest.cls -------------------------------------------------------------------------------- /src/classes/ChildCreatorControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/classes/ChildCreatorControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /src/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/package.xml -------------------------------------------------------------------------------- /src/staticresources/SLDS212.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/staticresources/SLDS212.resource -------------------------------------------------------------------------------- /src/staticresources/SLDS212.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracarma/Lightning-Object-Creator-Component/HEAD/src/staticresources/SLDS212.resource-meta.xml --------------------------------------------------------------------------------