Skip to content

feat(print-properties): Adding dorContainer in each component and pageTemplate in FormContainer and new print specific components #1567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 579 commits into from
Jul 15, 2025

Conversation

DhruvSharma-845
Copy link
Contributor

@DhruvSharma-845 DhruvSharma-845 commented Mar 27, 2025

Description

  • Adding pageTemplate in FormContainer to describe master page related properties for DoR.
  • Adding dorContainer in each Component to describe print related properties for DoR.
  • Print specific properties will be exported in CRISPR json only when present in JCR(i.e. in case of print only).
  • Adding new components for print: PageSet, PageArea, Content, Medium and Proto. Keeping the implementations in a separate module.

Related Issue

Motivation and Context

It will enable the support for print related properties in CRISPR json(mainly layout and style related properties).

How Has This Been Tested?

UTs have been added.

Screenshots (if appropriate):

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • I have signed the Adobe Open Source CLA.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.
  • I have added tests to cover my changes and the overall coverage did not decrease.
  • All unit tests pass on CircleCi.
  • I ran all tests locally and they pass.

Sorry, something went wrong.

Copy link

codecov bot commented Mar 27, 2025

Codecov Report

Attention: Patch coverage is 78.57143% with 3 lines in your changes missing coverage. Please review.

Project coverage is 82.73%. Comparing base (e4a040e) to head (27c99d9).
Report is 2 commits behind head on dev.

Files with missing lines Patch % Lines
...ms/core/components/util/AbstractContainerImpl.java 71.42% 1 Missing and 1 partial ⚠️
...ore/components/util/AbstractFormComponentImpl.java 0.00% 0 Missing and 1 partial ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##                dev    #1567      +/-   ##
============================================
+ Coverage     82.51%   82.73%   +0.22%     
- Complexity     1011     1022      +11     
============================================
  Files           108      108              
  Lines          2625     2653      +28     
  Branches        378      384       +6     
============================================
+ Hits           2166     2195      +29     
+ Misses          270      268       -2     
- Partials        189      190       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@DhruvSharma-845 DhruvSharma-845 changed the title feat(print-properties): Adding dorContainer in each component and pageTemplate in FormContainer and new print specific components feat(print-properties): RTC - Adding dorContainer in each component and pageTemplate in FormContainer and new print specific components Mar 27, 2025
@DhruvSharma-845 DhruvSharma-845 changed the title feat(print-properties): RTC - Adding dorContainer in each component and pageTemplate in FormContainer and new print specific components feat(print-properties): Adding dorContainer in each component and pageTemplate in FormContainer and new print specific components Mar 27, 2025
@adobe-bot
Copy link

Lighthouse scores (desktop)

Performance Accessibility Best-Practices SEO
Scores 99 96 96 75

@adobe-bot
Copy link

Lighthouse scores (mobile)

Performance Accessibility Best-Practices SEO
Scores 86 96 96 75

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
page-has-heading-one moderate
target-size serious

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
target-size serious

1 similar comment
@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
target-size serious

@DhruvSharma-845 DhruvSharma-845 self-assigned this Mar 27, 2025
@DhruvSharma-845 DhruvSharma-845 added enhancement New feature or request java Pull requests that update Java code labels Mar 27, 2025
@adobe-bot
Copy link

Lighthouse scores (mobile)

Performance Accessibility Best-Practices SEO
Scores 88 96 96 75

@adobe-bot
Copy link

Lighthouse scores (desktop)

Performance Accessibility Best-Practices SEO
Scores 99 96 96 75

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
target-size serious

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
page-has-heading-one moderate
target-size serious

1 similar comment
@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
page-has-heading-one moderate
target-size serious

@@ -0,0 +1,21 @@
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add these interfaces in a different package inside form

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@adobe-bot
Copy link

Lighthouse scores (desktop)

Performance Accessibility Best-Practices SEO
Scores 100 96 96 75

@adobe-bot
Copy link

Lighthouse scores (mobile)

Performance Accessibility Best-Practices SEO
Scores 92 96 96 75

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
target-size serious

1 similar comment
@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
target-size serious

@adobe-bot
Copy link

Accessibility Violations Found

Id Impact
label-title-only serious
page-has-heading-one moderate
target-size serious

@JsonIgnore
public Map<String, Object> getDorContainer() {
if (resource != null) {
Resource dorContainerResource = resource.getChild("fd:dorContainer");
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rismehta : Here I am assuming dorContainer node will be named as fd:dorContainer in JCR, keeping it in consistency with fd:rules and 'fd:events. I hope it is okay.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

take this in spec review meeting

return customDorProperties;
}

private Map<String, Object> getPageTemplate() {
if (resource != null) {
Resource pageTemplateResource = resource.getChild("fd:pagetemplate");
Copy link
Contributor Author

@DhruvSharma-845 DhruvSharma-845 Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rismehta : pageTemplate node is assumed to be persisted with name fd:pageTemplate. I hope it is fine.

@@ -126,14 +128,14 @@ public static void testSchemaValidation(@NotNull Object model) {
// create an instance of the JsonSchemaFactory using version flag
JsonSchemaFactory schemaFactory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V7);
try {
InputStream schemaStream = Utils.class.getResourceAsStream("/schema/0.14.2/adaptive-form.schema.json");
InputStream schemaStream = Utils.class.getResourceAsStream("/schema/0.15.1/adaptive-form.schema.json");
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rismehta : Have added new schema files versioned 0.15.1. Also, have updated version number here in schema validation. Please let me know if anything else needs to be done w.r.t. new schema

@@ -52,6 +52,6 @@
"grammar": "json-formula-1.0.0",
"version": "1.0.0"
},
"adaptiveform": "0.14.2",
"adaptiveform": "0.15.1",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rismehta :
Updating version number here in test baseline files is breaking a PR check. What is the right way to update this files?

@adobe-bot
Copy link

Lighthouse scores (mobile)

Performance Accessibility Best-Practices SEO
Scores 87 96 96 75

@adobe-bot
Copy link

Lighthouse scores (desktop)

Performance Accessibility Best-Practices SEO
Scores 100 96 96 75

DhruvSharma-845 and others added 25 commits July 15, 2025 19:58
…ew (#1593)

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* updating crispr spec version in dialog

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion in formcontainerv2

* RTC Updated AdaptiveFormVersion in formcontainerv2WithAutoSave

* Fixing code formatting

---------

Co-authored-by: srivastv <[email protected]>
Co-authored-by: Rishi Mehta <[email protected]>
@DhruvSharma-845 DhruvSharma-845 force-pushed the print-core-components-models branch from 709ec54 to 27c99d9 Compare July 15, 2025 14:38
@DhruvSharma-845 DhruvSharma-845 merged commit 42077bb into dev Jul 15, 2025
9 of 10 checks passed
@DhruvSharma-845 DhruvSharma-845 deleted the print-core-components-models branch July 15, 2025 16:03
rismehta added a commit that referenced this pull request Jul 17, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
* FORMS-18801: State of active component lacks 3 to 1 contrast ratio @sunnym @vavarshn (#1632)

Co-authored-by: Stefan Dragomir <[email protected]>

* Fixing circle ci configuration (#1643)

* feat: update token name and accesibility config (#1644)

Co-authored-by: Prateek Awasthi <[email protected]>

* FORMS-20749: Update af-core version to 0.22.143 (#1647)

* Fixing adobe bot github token environment variable (#1646)

* Support for fd:customDisplayFormat (#1619)

* FORMS-18718: Desktop, RWD Tablet, RWD Mobile - Visual heading text is not marked as heading @sunnym @vavarshn (#1631)

* FORMS-18633: Desktop, RWD Tablet, RWD Mobile - Visual heading text is not marked as heading @sunnym @vavarshn (#1630)

* FORMS-20431: Update excludeFromDoRIfHidden prefix (#1617)

* FORMS-20431: Update excludeFromDoRIfHidden prefix

* FORMS-20431: Update test cases

* FORMS-20431: Update the af-core version

* FORMS-20431: Revert changes on package-lock.json

---------

Co-authored-by: Rishi Mehta <[email protected]>

* Forms-20262: FileInput v4 (#1618)

* FORMS-20262: Handle invalid file attachments on client-side
* add functionality to get collated alert message with multiple invalid errors

* FORMS-20262: Update alert message content

* FORMS-20262: Update alert message content

* FORMS-20262: revert the fileinput base class to clean state

* FORMS-20262: add size zero file error in error list

* FORMS-20262: create fileinput v4
* checks for file size of 0 and throws error
* collates all error messages in single alert

* FORMS-20262: Update file input v4 readme

* FORMS-20262: Update component version to v4 in readme

* FORMS-20262: test cases for fileinput v4
* add collateral
* create page for fileinput v4

* FORMS-20262: Update copyright year

* FORMS-20262: fix resource super type

* FORMS-20262: fix tracking feature for file input

* FORMS-20262: add error message for zero-bytes file in all locale

* FORMS-20262: mark head text as isHeading

* FORMS-20262: pom replace fileinput v4 in libs

* FORMS-19758: Addition of fragmentPath to the CRISPR JSON in Author View (#1593)

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* updating crispr spec version in dialog

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion in formcontainerv2

* RTC Updated AdaptiveFormVersion in formcontainerv2WithAutoSave

* Fixing code formatting

---------

Co-authored-by: srivastv <[email protected]>
Co-authored-by: Rishi Mehta <[email protected]>

* feat(print-properties): Adding `dorContainer` in each component and `pageTemplate` in FormContainer and new print specific components (#1567)

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): Fixing issues with rebasing

* feat(print-properties): Import sorting

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): Fixing issues with rebasing

* feat(print-properties): Import sorting

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing synthetic resource changes

* feat(print-properties): Adding test case for channel based fragment resolution

* feat(print-properties): Removing the pageTemplate handling as it is not in separate PrintContainer

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): Fixing issues with rebasing

* feat(print-properties): Import sorting

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Adding the change to resolve fragment based on its guideContainer in hierarchy

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): Fixing issues with rebasing

* feat(print-properties): Import sorting

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Adding channel check while resolving fragment

* feat(print-properties): Adding interfaces and model implementations

* feat(print-properties): Moving print related model implementations in separate bundle

* feat(print-properties): Updating schema version for more test files

* feat(print-properties): RTC - Adding components - Barcode, Line and Rectangle

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): RTC - Adding UTs for print specific interfaces

* feat(print-properties): Adding DoR view and correcting a typo

* feat(print-properties): Adding more UTs

* feat(print-properties): Removing print related files

* feat(print-properties): Reformatting to avoid unnecessary changes

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Refactoring changes

* feat(print-properties): Fixing issues with rebasing

* feat(print-properties): Import sorting

* feat(print-properties): Removing unnecessary file

* feat(print-properties): Removing synthetic resource changes

* feat(print-properties): Adding test case for channel based fragment resolution

* feat(print-properties): Removing the pageTemplate handling as it is not in separate PrintContainer

* feat(print-properties): Removing code came due to merge conflicts

* feat(print-properties): Removing new schema; it is used in print specific sdk

* feat(print-properties): Removing new field types

* feat(print-properties): Updating version of dor api package

* feat(print-properties): Converting string literals to constants

* feat(print-properties): Adding test case for getDorContainer in the FormComponent inetrface

* feat(print-cc): Adding changes to pass down channel info to correctly resolve fragment

* feat(print-cc): Removing unnecessary change

* feat(print-cc): Adding dorcontainer check in UT

* feat(print-cc): Fixing conflict issues

* feat(print-cc): Fixing conflict issues

* feat(print-cc): Adding test cases for Views classes

* feat(print-cc): Adding test case

* FORMS-19758: Addition of fragmentPath to the CRISPR JSON in Author View (#1593)

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* updating crispr spec version in dialog

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Adding Default specVersionfor formcontainerv2 test

* Added fragment path in Crispr json for Author view

* RTC Adding Default specVersionfor formcontainerv2 test

* RTC updating test baseline

* updated baseline

* updating baseline

* Added test cases and addressed review comments

* RTC Removed duplicate function

* RTC Updated AdaptiveFormVersion

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion or rest-submission

* RTC Updated AdaptiveFormVersion in formcontainerv2

* RTC Updated AdaptiveFormVersion in formcontainerv2WithAutoSave

* Fixing code formatting

---------

Co-authored-by: srivastv <[email protected]>
Co-authored-by: Rishi Mehta <[email protected]>

* feat(print-cc): Updating version in test case

---------

Co-authored-by: dhrsharm <[email protected]>
Co-authored-by: vjystva <[email protected]>
Co-authored-by: srivastv <[email protected]>
Co-authored-by: Rishi Mehta <[email protected]>

* Adding scribble signature support. (#1651)

* Adding scribble signature support.

* Adding scribble signature support.

* Adding scribble signature support.

* Moving the test logic to then post click.

* Moving the test logic to then post click.

* Moving the test logic to then post click.

* Moving the test logic to then post click.

* Moving the test logic to then post click.

* Addressing review comments.

* Moving the test logic to then post click.

* Addressing review comments.

* Addressing review comments.

* Moving the test logic to then post click.

* Fixing enter keydown event on forms (#1653)

* link fix

* Link fix

* Fixing issue

* FORMS-19721 Addition of rules to the CRISPR JSON for print channel  (#1594)

* Added rule events and passed chanel information to child

* Added rule events and passed chanel information to child

* Removed unnecessary imports

* Removed rule editor uber changes

* mergedchanges and added missing one

* mergedchanges and added missing one

* Added test cases

* modified null check

* Empty value (#1654)

* Empty value fix

* Empty value fix

* Adding test cases

* Fixing package info

* feat: token name updated (#1652)

Co-authored-by: Prateek Awasthi <[email protected]>

* Fixing token

* Resolving merge conflicts

---------

Co-authored-by: Stefan Dragomir <[email protected]>
Co-authored-by: Stefan Dragomir <[email protected]>
Co-authored-by: Prateek Awasthi <[email protected]>
Co-authored-by: Prateek Awasthi <[email protected]>
Co-authored-by: anshikag-adobe <[email protected]>
Co-authored-by: Talmiz Ahmed <[email protected]>
Co-authored-by: CezarSTF <[email protected]>
Co-authored-by: vjystva <[email protected]>
Co-authored-by: srivastv <[email protected]>
Co-authored-by: DhruvSharma-845 <[email protected]>
Co-authored-by: dhrsharm <[email protected]>
Co-authored-by: sakshi-arora1 <[email protected]>
rismehta added a commit that referenced this pull request Jul 24, 2025
…nt and `pageTemplate` in FormContainer and new print specific components (#1567)"

This reverts commit 42077bb.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants