Skip to content

Commit

Permalink
Add comments (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
JEAxero authored Aug 3, 2021
1 parent 435dbf7 commit d505bc0
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/components/DeferLoad/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
7 changes: 5 additions & 2 deletions src/components/FlowContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
6 changes: 6 additions & 0 deletions src/components/ModalViewContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
5 changes: 5 additions & 0 deletions src/components/PreviewViewContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 6 additions & 0 deletions src/components/RootContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
7 changes: 5 additions & 2 deletions src/components/View/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 6 additions & 0 deletions src/components/ViewContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d505bc0

Please sign in to comment.