diff --git a/src/components/DeferLoad/index.ts b/src/components/DeferLoad/index.ts index 0f933f6..339390b 100644 --- a/src/components/DeferLoad/index.ts +++ b/src/components/DeferLoad/index.ts @@ -10,6 +10,11 @@ import { deferLoadStyles } from './defer-load-styles'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// @customElement('defer-load-component') class DeferLoad extends BridgeBase { diff --git a/src/components/FlowContainer/index.ts b/src/components/FlowContainer/index.ts index b0534be..d7bf641 100644 --- a/src/components/FlowContainer/index.ts +++ b/src/components/FlowContainer/index.ts @@ -13,9 +13,12 @@ import { flowContainerStyles } from './flow-container-styles'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// -// NOTE: this is just a boilerplate component definition intended -// to be used as a starting point for any new components as they're built out @customElement('flow-container') class FlowContainer extends BridgeBase { diff --git a/src/components/ModalViewContainer/index.ts b/src/components/ModalViewContainer/index.ts index 877762d..1540ce2 100644 --- a/src/components/ModalViewContainer/index.ts +++ b/src/components/ModalViewContainer/index.ts @@ -11,6 +11,12 @@ import '../CancelAlert'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// + @customElement('modal-view-container-component') class ModalViewContainer extends BridgeBase { diff --git a/src/components/PreviewViewContainer/index.ts b/src/components/PreviewViewContainer/index.ts index 7ca7715..6dfb404 100644 --- a/src/components/PreviewViewContainer/index.ts +++ b/src/components/PreviewViewContainer/index.ts @@ -10,6 +10,11 @@ import '../designSystemExtension/ProgressIndicator'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// @customElement('preview-view-container') class PreviewViewContainer extends BridgeBase { diff --git a/src/components/RootContainer/index.ts b/src/components/RootContainer/index.ts index f9eb91e..f693e5e 100644 --- a/src/components/RootContainer/index.ts +++ b/src/components/RootContainer/index.ts @@ -10,6 +10,12 @@ import '../ReAuthenticationModal'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// + @customElement('root-container') class RootContainer extends BridgeBase { @property( {attribute: false, type: Object} ) previewViewContainerConn = null; diff --git a/src/components/View/index.ts b/src/components/View/index.ts index a78ddc3..908b977 100644 --- a/src/components/View/index.ts +++ b/src/components/View/index.ts @@ -19,8 +19,11 @@ import { getAllFields } from '../templates/utils'; import { viewStyles } from './view-styles'; -// Declare that PCore will be defined when this code is run -declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// @customElement('view-component') class View extends BridgeBase { diff --git a/src/components/ViewContainer/index.ts b/src/components/ViewContainer/index.ts index 551ec9c..f15a5cb 100644 --- a/src/components/ViewContainer/index.ts +++ b/src/components/ViewContainer/index.ts @@ -18,6 +18,12 @@ import { viewContainerStyles } from './view-container-styles'; // Declare that PCore will be defined when this code is run declare var PCore: any; +// +// WARNING: It is not expected that this file should be modified. It is part of infrastructure code that works with +// Redux and creation/update of Redux containers and PConnect. Modifying this code could have undesireable results and +// is totally at your own risk. +// + @customElement('view-container') class ViewContainer extends BridgeBase { @property( {attribute: true, type: Boolean} ) displayOnlyFA = false;