@umbraco/playwright-testhelpers 17.0.0-beta.1 → 17.0.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/lib/helpers/ConstantHelper.d.ts +8 -3
  2. package/dist/lib/helpers/ConstantHelper.js +20 -15
  3. package/dist/lib/helpers/ConstantHelper.js.map +1 -1
  4. package/dist/lib/helpers/ContentUiHelper.d.ts +4 -3
  5. package/dist/lib/helpers/ContentUiHelper.js +16 -12
  6. package/dist/lib/helpers/ContentUiHelper.js.map +1 -1
  7. package/dist/lib/helpers/DataTypeApiHelper.d.ts +3 -0
  8. package/dist/lib/helpers/DataTypeApiHelper.js +21 -0
  9. package/dist/lib/helpers/DataTypeApiHelper.js.map +1 -1
  10. package/dist/lib/helpers/DataTypeUiHelper.d.ts +3 -0
  11. package/dist/lib/helpers/DataTypeUiHelper.js +15 -2
  12. package/dist/lib/helpers/DataTypeUiHelper.js.map +1 -1
  13. package/dist/lib/helpers/DocumentBlueprintUiHelper.d.ts +1 -0
  14. package/dist/lib/helpers/DocumentBlueprintUiHelper.js +3 -0
  15. package/dist/lib/helpers/DocumentBlueprintUiHelper.js.map +1 -1
  16. package/dist/lib/helpers/DocumentTypeUiHelper.d.ts +1 -0
  17. package/dist/lib/helpers/DocumentTypeUiHelper.js +6 -4
  18. package/dist/lib/helpers/DocumentTypeUiHelper.js.map +1 -1
  19. package/dist/lib/helpers/LanguageUiHelper.d.ts +1 -0
  20. package/dist/lib/helpers/LanguageUiHelper.js +3 -1
  21. package/dist/lib/helpers/LanguageUiHelper.js.map +1 -1
  22. package/dist/lib/helpers/PartialViewUiHelper.d.ts +1 -0
  23. package/dist/lib/helpers/PartialViewUiHelper.js +5 -3
  24. package/dist/lib/helpers/PartialViewUiHelper.js.map +1 -1
  25. package/dist/lib/helpers/RelationTypeUiHelper.js +1 -0
  26. package/dist/lib/helpers/RelationTypeUiHelper.js.map +1 -1
  27. package/dist/lib/helpers/ScriptUiHelper.d.ts +1 -0
  28. package/dist/lib/helpers/ScriptUiHelper.js +6 -2
  29. package/dist/lib/helpers/ScriptUiHelper.js.map +1 -1
  30. package/dist/lib/helpers/StylesheetUiHelper.d.ts +3 -0
  31. package/dist/lib/helpers/StylesheetUiHelper.js +11 -2
  32. package/dist/lib/helpers/StylesheetUiHelper.js.map +1 -1
  33. package/dist/lib/helpers/UiBaseLocators.d.ts +7 -1
  34. package/dist/lib/helpers/UiBaseLocators.js +25 -10
  35. package/dist/lib/helpers/UiBaseLocators.js.map +1 -1
  36. package/dist/lib/helpers/UserGroupUiHelper.js +1 -1
  37. package/dist/lib/helpers/UserGroupUiHelper.js.map +1 -1
  38. package/dist/tsconfig.tsbuildinfo +1 -1
  39. package/package.json +2 -2
@@ -140,9 +140,13 @@ export declare class ConstantHelper {
140
140
  };
141
141
  static readonly userGroupDefaultPermissionsSettings: {
142
142
  0: string[];
143
+ 1: string[];
144
+ 2: string[];
145
+ 3: string[];
143
146
  };
144
147
  static readonly userGroupGranularPermissionsSettings: {
145
148
  0: string[];
149
+ 1: string[];
146
150
  };
147
151
  static readonly userGroupPermissionsSettings: {
148
152
  0: string[];
@@ -159,9 +163,6 @@ export declare class ConstantHelper {
159
163
  11: string[];
160
164
  12: string[];
161
165
  13: string[];
162
- 14: string[];
163
- 15: string[];
164
- 16: string[];
165
166
  };
166
167
  static readonly userGroupSectionsSettings: {
167
168
  0: string[];
@@ -182,4 +183,8 @@ export declare class ConstantHelper {
182
183
  eventType: string;
183
184
  alias: string;
184
185
  }[];
186
+ static readonly dateTimeWithTimeZonePickerSetting: {
187
+ 0: string[];
188
+ 1: string[];
189
+ };
185
190
  }
@@ -32,8 +32,8 @@ class ConstantHelper {
32
32
  denied: 'Access denied'
33
33
  };
34
34
  static approvedColorSettings = {
35
- 0: ['Include labels?', 'Stores colors as a JSON object containing both the color hex string and label, rather than just the hex string.'],
36
- 1: ['Colors', 'Add, remove or sort colors'],
35
+ 0: ['Include labels?', 'Displays colored field and a label for each color in the color picker, rather than just a colored field.'],
36
+ 1: ['Colors', 'Add, remove or sort colors (and labels).'],
37
37
  };
38
38
  static checkboxListSettings = {
39
39
  0: ['Add option', 'Add, remove or sort options for the list.']
@@ -143,10 +143,14 @@ class ConstantHelper {
143
143
  3: ['Select media start node', 'Limit the media library to a specific start node']
144
144
  };
145
145
  static userGroupDefaultPermissionsSettings = {
146
- 0: ['Permissions', 'Assign permissions for actions']
146
+ 0: ['General', ''],
147
+ 1: ['Structure', ''],
148
+ 2: ['Administration', ''],
149
+ 3: ['Granular permissions', 'Assign permissions to specific documents'],
147
150
  };
148
151
  static userGroupGranularPermissionsSettings = {
149
- 0: ['Documents', 'Assign permissions to specific documents']
152
+ 0: ['General', ''],
153
+ 1: ['Granular permissions', 'Assign permissions to Document property values'],
150
154
  };
151
155
  static userGroupPermissionsSettings = {
152
156
  0: ['Read', 'Allow access to read a Document', 'Umb.Document.Read'],
@@ -155,17 +159,14 @@ class ConstantHelper {
155
159
  3: ['Create', 'Allow access to create a Document', 'Umb.Document.Create'],
156
160
  4: ['Notifications', 'Allow access to setup notifications for Documents', 'Umb.Document.Notifications'],
157
161
  5: ['Publish', 'Allow access to publish a Document', 'Umb.Document.Publish'],
158
- 6: ['Set permissions', 'Allow access to change permissions for a Document', 'Umb.Document.Permissions'],
159
- 7: ['Unpublish', 'Allow access to unpublish a Document', 'Umb.Document.Unpublish'],
160
- 8: ['Update', 'Allow access to save a Document', 'Umb.Document.Update'],
161
- 9: ['Duplicate', 'Allow access to copy a Document', 'Umb.Document.Duplicate'],
162
- 10: ['Move to', 'Allow access to move a Document', 'Umb.Document.Move'],
163
- 11: ['Sort children', 'Allow access to change the sort order for Documents', 'Umb.Document.Sort'],
164
- 12: ['Culture and Hostnames', 'Allow access to assign culture and hostnames', 'Umb.Document.CultureAndHostnames'],
165
- 13: ['Public Access', 'Allow access to set and change access restrictions for a Document', 'Umb.Document.PublicAccess'],
166
- 14: ['Rollback', 'Allow access to roll back a Document to a previous state', 'Umb.Document.Rollback'],
167
- 15: ['UI Read', 'Allow access to read Document property values in the UI', 'Umb.Document.PropertyValue.Read'],
168
- 16: ['UI Write', 'Allow access to write Document property values from the UI', 'Umb.Document.PropertyValue.Write'],
162
+ 6: ['Unpublish', 'Allow access to unpublish a Document', 'Umb.Document.Unpublish'],
163
+ 7: ['Update', 'Allow access to save a Document', 'Umb.Document.Update'],
164
+ 8: ['Duplicate', 'Allow access to copy a Document', 'Umb.Document.Duplicate'],
165
+ 9: ['Move to', 'Allow access to move a Document', 'Umb.Document.Move'],
166
+ 10: ['Sort children', 'Allow access to change the sort order for Documents', 'Umb.Document.Sort'],
167
+ 11: ['Culture and Hostnames', 'Allow access to assign culture and hostnames', 'Umb.Document.CultureAndHostnames'],
168
+ 12: ['Public Access', 'Allow access to set and change access restrictions for a Document', 'Umb.Document.PublicAccess'],
169
+ 13: ['Rollback', 'Allow access to roll back a Document to a previous state', 'Umb.Document.Rollback']
169
170
  };
170
171
  static userGroupSectionsSettings = {
171
172
  0: ['Content', 'Umb.Section.Content'],
@@ -208,6 +209,10 @@ class ConstantHelper {
208
209
  "alias": "Umbraco.MediaSave"
209
210
  }
210
211
  ];
212
+ static dateTimeWithTimeZonePickerSetting = {
213
+ 0: ['Time format', ''],
214
+ 1: ['Time zones', 'Select the time zones that the editor should be able to pick from.']
215
+ };
211
216
  }
212
217
  exports.ConstantHelper = ConstantHelper;
213
218
  //# sourceMappingURL=ConstantHelper.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ConstantHelper.js","sourceRoot":"","sources":["../../../lib/helpers/ConstantHelper.ts"],"names":[],"mappings":";;;AAAA,MAAa,cAAc;IAElB,MAAM,CAAU,QAAQ,GAAG;QAChC,OAAO,EAAE,SAAS;QAClB,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,UAAU;QACpB,QAAQ,EAAE,UAAU;QACpB,OAAO,EAAE,SAAS;QAClB,UAAU,EAAE,aAAa;QACzB,KAAK,EAAE,OAAO;KACf,CAAA;IAEM,MAAM,CAAU,mBAAmB,GAAG;QAC3C,IAAI,EAAE,WAAW;QACjB,KAAK,EAAE,0BAA0B;QACjC,QAAQ,EAAE,uBAAuB;KAClC,CAAA;IAEM,MAAM,CAAU,kBAAkB,GAAG;QAC1C,eAAe,EAAE,wBAAwB;QACzC,YAAY,EAAE,yDAAyD;QACvE,8CAA8C,EAAE,kNAAkN;QAClQ,UAAU,EAAE,uBAAuB;QACnC,SAAS,EAAE,sBAAsB;QACjC,YAAY,EAAE,eAAe;KAC9B,CAAA;IAEM,MAAM,CAAU,UAAU,GAAG;QAClC,OAAO,EAAE,OAAO;QAChB,MAAM,EAAE,kBAAkB;KAC3B,CAAA;IAEM,MAAM,CAAU,MAAM,GAAG;QAC9B,MAAM,EAAE,eAAe;KACxB,CAAA;IAEM,MAAM,CAAU,qBAAqB,GAAG;QAC7C,CAAC,EAAE,CAAC,iBAAiB,EAAE,iHAAiH,CAAC;QACzI,CAAC,EAAE,CAAC,QAAQ,EAAE,4BAA4B,CAAC;KAC5C,CAAA;IAEM,MAAM,CAAU,oBAAoB,GAAG;QAC5C,CAAC,EAAE,CAAC,YAAY,EAAE,2CAA2C,CAAC;KAC/D,CAAA;IAEM,MAAM,CAAU,qBAAqB,GAAG;QAC7C,CAAC,EAAE,CAAC,yBAAyB,EAAE,6FAA6F,CAAC;QAC7H,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC;KACtB,CAAA;IAEM,MAAM,CAAU,kBAAkB,GAAG;QAC1C,CAAC,EAAE,CAAC,aAAa,EAAE,6CAA6C,CAAC;QACjE,0NAA0N;KAC3N,CAAA;IAEM,MAAM,CAAU,gBAAgB,GAAG;QACxC,CAAC,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC;QACjC,CAAC,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC;KACvB,CAAA;IAEM,MAAM,CAAU,oBAAoB,GAAG;QAC5C,CAAC,EAAE,CAAC,cAAc,EAAE,EAAE,CAAC;KACxB,CAAA;IAEM,MAAM,CAAU,mBAAmB,GAAG;QAC3C,CAAC,EAAE,CAAC,gBAAgB,EAAE,yBAAyB,CAAC;QAChD,CAAC,EAAE,CAAC,qBAAqB,EAAE,uBAAuB,CAAC;QACnD,CAAC,EAAE,CAAC,QAAQ,EAAE,gCAAgC,CAAC;QAC/C,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC;QACrB,CAAC,EAAE,CAAC,oBAAoB,EAAE,EAAE,CAAC;QAC7B,CAAC,EAAE,CAAC,aAAa,EAAE,iCAAiC,CAAC;QACrD,CAAC,EAAE,CAAC,yBAAyB,EAAE,6FAA6F,CAAC;KAC9H,CAAA;IAEM,MAAM,CAAU,aAAa,GAAG;QACrC,CAAC,EAAE,CAAC,YAAY,EAAE,4BAA4B,CAAC;QAC/C,CAAC,EAAE,CAAC,gBAAgB,EAAE,iCAAiC,CAAC;KACzD,CAAA;IAEM,MAAM,CAAU,gBAAgB,GAAG;QACxC,CAAC,EAAE,CAAC,mBAAmB,EAAE,wDAAwD,CAAC;QAClF,CAAC,EAAE,CAAC,SAAS,EAAE,wDAAwD,CAAC;QACxE,CAAC,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC;QAC7D,CAAC,EAAE,CAAC,iBAAiB,EAAE,EAAE,CAAC;QAC1B,CAAC,EAAE,CAAC,WAAW,EAAE,2BAA2B,CAAC;QAC7C,CAAC,EAAE,CAAC,qBAAqB,EAAE,+CAA+C,CAAC;QAC3E,CAAC,EAAE,CAAC,qBAAqB,EAAE,8EAA8E,CAAC;QAC1G,CAAC,EAAE,CAAC,mCAAmC,EAAE,wFAAwF,CAAC;KACnI,CAAA;IAEM,MAAM,CAAU,sBAAsB,GAAG;QAC9C,CAAC,EAAE,CAAC,yBAAyB,EAAE,EAAE,CAAC;QAClC,CAAC,EAAE,CAAC,yBAAyB,EAAE,EAAE,CAAC;QAClC,CAAC,EAAE,CAAC,yBAAyB,EAAE,6FAA6F,CAAC;QAC7H,CAAC,EAAE,CAAC,cAAc,EAAE,kCAAkC,CAAC;QACvD,CAAC,EAAE,CAAC,gCAAgC,EAAE,sFAAsF,CAAC;KAC9H,CAAA;IAEM,MAAM,CAAU,eAAe,GAAG;QACvC,CAAC,EAAE,CAAC,SAAS,EAAE,kDAAkD,CAAC;QAClE,CAAC,EAAE,CAAC,SAAS,EAAE,kDAAkD,CAAC;QAClE,CAAC,EAAE,CAAC,WAAW,EAAE,sEAAsE,CAAC;KACzF,CAAA;IAEM,MAAM,CAAU,gBAAgB,GAAG;QACxC,CAAC,EAAE,CAAC,YAAY,EAAE,2CAA2C,CAAC;KAC/D,CAAA;IAEM,MAAM,CAAU,YAAY,GAAG;QACpC,CAAC,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC;QACpB,CAAC,EAAE,CAAC,cAAc,EAAE,sIAAsI,CAAC;KAC5J,CAAA;IAEM,MAAM,CAAU,gBAAgB,GAAG;QACxC,CAAC,EAAE,CAAC,4BAA4B,EAAE,+BAA+B,CAAC;QAClE,CAAC,EAAE,CAAC,gBAAgB,EAAE,sDAAsD,CAAC;KAC9E,CAAA;IAEM,MAAM,CAAU,kBAAkB,GAAG;QAC1C,CAAC,EAAE,CAAC,4BAA4B,EAAE,+BAA+B,CAAC;KACnE,CAAA;IAEM,MAAM,CAAU,iBAAiB,GAAG;QACzC,CAAC,EAAE,CAAC,cAAc,EAAE,EAAE,CAAC;QACvB,CAAC,EAAE,CAAC,oBAAoB,EAAE,EAAE,CAAC;QAC7B,CAAC,EAAE,CAAC,UAAU,EAAE,6BAA6B,CAAC;QAC9C,CAAC,EAAE,CAAC,WAAW,EAAE,8BAA8B,CAAC;QAChD,CAAC,EAAE,CAAC,qBAAqB,EAAE,EAAE,CAAC;KAC/B,CAAA;IAEM,MAAM,CAAU,cAAc,GAAG;QACtC,CAAC,EAAE,CAAC,0BAA0B,EAAE,EAAE,CAAC;KACpC,CAAA;IAEM,MAAM,CAAU,cAAc,GAAG;QACtC,CAAC,EAAE,CAAC,cAAc,EAAE,+HAA+H,CAAC;QACpJ,CAAC,EAAE,CAAC,SAAS,EAAE,sFAAsF,CAAC;QACtG,CAAC,EAAE,CAAC,WAAW,EAAE,+FAA+F,CAAC;QACjH,CAAC,EAAE,CAAC,aAAa,EAAE,4EAA4E,CAAC;QAChG,CAAC,EAAE,CAAC,YAAY,EAAE,iGAAiG,CAAC;QACpH,CAAC,EAAE,CAAC,kCAAkC,EAAE,wDAAwD,CAAC;QACjG,CAAC,EAAE,CAAC,cAAc,EAAE,gDAAgD,CAAC;QACrE,CAAC,EAAE,CAAC,kBAAkB,EAAE,8BAA8B,CAAC;QACvD,CAAC,EAAE,CAAC,qBAAqB,EAAE,8CAA8C,CAAC;QAC1E,CAAC,EAAE,CAAC,yBAAyB,EAAE,EAAE,CAAC;KACnC,CAAA;IAEM,MAAM,CAAU,eAAe,GAAG;QACvC,CAAC,EAAE,CAAC,SAAS,EAAE,gEAAgE,CAAC;QAChF,CAAC,EAAE,CAAC,aAAa,EAAE,2EAA2E,CAAC;QAC/F,CAAC,EAAE,CAAC,YAAY,EAAE,2BAA2B,CAAC;QAC9C,CAAC,EAAE,CAAC,kCAAkC,EAAE,wDAAwD,CAAC;QACjG,CAAC,EAAE,CAAC,MAAM,EAAE,gCAAgC,CAAC;QAC7C,CAAC,EAAE,CAAC,kBAAkB,EAAE,8BAA8B,CAAC;QACvD,CAAC,EAAE,CAAC,cAAc,EAAE,gDAAgD,CAAC;QACrE,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC;QACrB,CAAC,EAAE,CAAC,qBAAqB,EAAE,8CAA8C,CAAC;QAC1E,CAAC,EAAE,CAAC,yBAAyB,EAAE,EAAE,CAAC;KACnC,CAAA;IAEM,MAAM,CAAU,6BAA6B,GAAG;QACrD,CAAC,EAAE,CAAC,UAAU,EAAE,mCAAmC,CAAC;QACpD,CAAC,EAAE,CAAC,WAAW,EAAE,+CAA+C,CAAC;QACjE,CAAC,EAAE,CAAC,2BAA2B,EAAE,iDAAiD,CAAC;QACnF,CAAC,EAAE,CAAC,yBAAyB,EAAE,kDAAkD,CAAC;KACnF,CAAA;IAEM,MAAM,CAAU,mCAAmC,GAAG;QAC3D,CAAC,EAAE,CAAC,aAAa,EAAE,gCAAgC,CAAC;KACrD,CAAA;IAEM,MAAM,CAAU,oCAAoC,GAAG;QAC5D,CAAC,EAAE,CAAC,WAAW,EAAE,0CAA0C,CAAC;KAC7D,CAAA;IAEM,MAAM,CAAU,4BAA4B,GAAG;QACpD,CAAC,EAAE,CAAC,MAAM,EAAE,iCAAiC,EAAE,mBAAmB,CAAC;QACnE,CAAC,EAAE,CAAC,2BAA2B,EAAE,6CAA6C,EAAE,8BAA8B,CAAC;QAC/G,CAAC,EAAE,CAAC,QAAQ,EAAE,mCAAmC,EAAE,qBAAqB,CAAC;QACzE,CAAC,EAAE,CAAC,QAAQ,EAAE,mCAAmC,EAAE,qBAAqB,CAAC;QACzE,CAAC,EAAE,CAAC,eAAe,EAAE,mDAAmD,EAAE,4BAA4B,CAAC;QACvG,CAAC,EAAE,CAAC,SAAS,EAAE,oCAAoC,EAAE,sBAAsB,CAAC;QAC5E,CAAC,EAAE,CAAC,iBAAiB,EAAE,mDAAmD,EAAE,0BAA0B,CAAC;QACvG,CAAC,EAAE,CAAC,WAAW,EAAE,sCAAsC,EAAE,wBAAwB,CAAC;QAClF,CAAC,EAAE,CAAC,QAAQ,EAAE,iCAAiC,EAAE,qBAAqB,CAAC;QACvE,CAAC,EAAE,CAAC,WAAW,EAAE,iCAAiC,EAAE,wBAAwB,CAAC;QAC7E,EAAE,EAAE,CAAC,SAAS,EAAE,iCAAiC,EAAE,mBAAmB,CAAC;QACvE,EAAE,EAAE,CAAC,eAAe,EAAE,qDAAqD,EAAE,mBAAmB,CAAC;QACjG,EAAE,EAAE,CAAC,uBAAuB,EAAE,8CAA8C,EAAE,kCAAkC,CAAC;QACjH,EAAE,EAAE,CAAC,eAAe,EAAE,mEAAmE,EAAE,2BAA2B,CAAC;QACvH,EAAE,EAAE,CAAC,UAAU,EAAE,0DAA0D,EAAE,uBAAuB,CAAC;QACrG,EAAE,EAAE,CAAC,SAAS,EAAE,yDAAyD,EAAE,iCAAiC,CAAC;QAC7G,EAAE,EAAE,CAAC,UAAU,EAAE,4DAA4D,EAAE,kCAAkC,CAAC;KACnH,CAAA;IAEM,MAAM,CAAU,yBAAyB,GAAG;QACjD,CAAC,EAAE,CAAC,SAAS,EAAE,qBAAqB,CAAC;QACrC,CAAC,EAAE,CAAC,OAAO,EAAE,mBAAmB,CAAC;QACjC,CAAC,EAAE,CAAC,OAAO,EAAE,mBAAmB,CAAC;QACjC,CAAC,EAAE,CAAC,SAAS,EAAE,qBAAqB,CAAC;QACrC,CAAC,EAAE,CAAC,UAAU,EAAE,sBAAsB,CAAC;QACvC,CAAC,EAAE,CAAC,UAAU,EAAE,sBAAsB,CAAC;QACvC,CAAC,EAAE,CAAC,aAAa,EAAE,yBAAyB,CAAC;QAC7C,CAAC,EAAE,CAAC,OAAO,EAAE,mBAAmB,CAAC;KAClC,CAAA;IAEM,MAAM,CAAU,wBAAwB,GAAG;QAChD,iBAAiB,EAAE,oCAAoC;QACvD,qBAAqB,EAAE,gDAAgD;KACxE,CAAA;IAEM,MAAM,CAAU,aAAa,GAAG;QACrC;YACE,WAAW,EAAE,iBAAiB;YAC9B,WAAW,EAAE,SAAS;YACtB,OAAO,EAAE,uBAAuB;SACjC;QACD;YACE,WAAW,EAAE,mBAAmB;YAChC,WAAW,EAAE,SAAS;YACtB,OAAO,EAAE,wBAAwB;SAClC;QACD;YACE,WAAW,EAAE,qBAAqB;YAClC,WAAW,EAAE,SAAS;YACtB,OAAO,EAAE,0BAA0B;SACpC;QACD;YACE,WAAW,EAAE,eAAe;YAC5B,WAAW,EAAE,OAAO;YACpB,OAAO,EAAE,qBAAqB;SAC/B;QACD;YACE,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,OAAO;YACpB,OAAO,EAAE,mBAAmB;SAC7B;KACF,CAAA;;AA7OH,wCA8OC","sourcesContent":["export class ConstantHelper {\n\n public static readonly sections = {\n content: \"Content\",\n media: \"Media\",\n settings: \"Settings\",\n packages: \"Packages\",\n members: \"Members\",\n dictionary: \"Translation\",\n users: \"Users\"\n }\n\n public static readonly testUserCredentials = {\n name: 'Test User',\n email: 'verySecureEmail@123.test',\n password: 'verySecurePassword123'\n }\n\n public static readonly validationMessages = {\n emptyLinkPicker: 'This field is required',\n invalidValue: 'Value is invalid, it does not match the correct pattern',\n unsupportInvariantContentItemWithVariantBlocks: 'One or more Block Types of this Block Editor is using a Element-Type that is configured to Vary By Culture or Vary By Segment. This is not supported on a Content item that does not vary by Culture or Segment.',\n emptyValue: 'Value cannot be empty',\n nullValue: 'Value cannot be null',\n invalidEmail: 'Invalid email'\n }\n\n public static readonly inputTypes = {\n general: 'input',\n tipTap: 'umb-input-tiptap'\n }\n\n public static readonly access = {\n denied: 'Access denied'\n }\n \n public static readonly approvedColorSettings = {\n 0: ['Include labels?', 'Stores colors as a JSON object containing both the color hex string and label, rather than just the hex string.'],\n 1: ['Colors', 'Add, remove or sort colors'],\n }\n\n public static readonly checkboxListSettings = {\n 0: ['Add option', 'Add, remove or sort options for the list.']\n }\n\n public static readonly contentPickerSettings = {\n 0: ['Ignore user start nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n 1: ['Start node', '']\n }\n\n public static readonly datePickerSettings = {\n 0: ['Date format', 'If left empty then the format is YYYY-MM-DD'],\n //1: ['Offset time', \"When enabled the time displayed will be offset with the server's timezone, this is useful for scenarios like scheduled publishing when an editor is in a different timezone than the hosted server\"]\n }\n\n public static readonly dropdownSettings = {\n 0: ['Enable multiple choice', ''],\n 1: ['Add options', '']\n }\n\n public static readonly imageCropperSettings = {\n 0: ['Crop options', ''],\n }\n\n public static readonly mediaPickerSettings = {\n 0: ['Accepted types', 'Limit to specific types'],\n 1: ['Pick multiple items', 'Outputs a IEnumerable'],\n 2: ['Amount', 'Set a required range of medias'],\n 3: ['Start node', ''],\n 4: ['Enable Focal Point', ''],\n 5: ['Image Crops', 'Local crops, stored on document'],\n 6: ['Ignore User Start Nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n }\n\n public static readonly labelSettings = {\n 0: ['Value type', 'The type of value to store'],\n 1: ['Label template', 'Enter a template for the label.'],\n }\n\n public static readonly listViewSettings = {\n 0: ['Columns Displayed', 'The properties that will be displayed for each column.'],\n 1: ['Layouts', 'The properties that will be displayed for each column.'],\n 2: ['Order By', 'The default sort order for the Collection.'],\n 3: ['Order Direction', ''],\n 4: ['Page Size', 'Number of items per page.'],\n 5: ['Workspace View icon', \"The icon for the Collection's Workspace View.\"],\n 6: ['Workspace View name', \"The name of the Collection's Workspace View (default if empty: Child Items).\"],\n 7: ['Show Content Workspace View First', \"Enable this to show the Content Workspace View by default instead of the Collection's.\"],\n }\n\n public static readonly multiURLPickerSettings = {\n 0: ['Minimum number of items', ''],\n 1: ['Maximum number of items', ''],\n 2: ['Ignore user start nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n 3: ['Overlay Size', 'Select the width of the overlay.'],\n 4: ['Hide anchor/query string input', 'Selecting this hides the anchor/query string input field in the link picker overlay.'],\n }\n\n public static readonly numericSettings = {\n 0: ['Minimum', 'Enter the minimum amount of number to be entered'],\n 1: ['Maximum', 'Enter the maximum amount of number to be entered'],\n 2: ['Step size', 'Enter the intervals amount between each step of number to be entered']\n }\n\n public static readonly radioboxSettings = {\n 0: ['Add option', 'Add, remove or sort options for the list.'],\n }\n\n public static readonly tagsSettings = {\n 0: ['Tag group', ''],\n 1: ['Storage Type', 'Select whether to store the tags in cache as JSON (default) or CSV format. Notice that CSV does not support commas in the tag value.']\n }\n\n public static readonly textareaSettings = {\n 0: ['Maximum allowed characters', 'If empty - no character limit'],\n 1: ['Number of rows', 'If empty or zero, the textarea is set to auto-height']\n }\n\n public static readonly textstringSettings = {\n 0: ['Maximum allowed characters', 'If empty, 512 character limit'],\n }\n\n public static readonly trueFalseSettings = {\n 0: ['Preset value', ''],\n 1: ['Show on/off labels', ''],\n 2: ['Label On', 'Displays text when enabled.'],\n 3: ['Label Off', 'Displays text when disabled.'],\n 4: ['Screen Reader Label', ''],\n }\n\n public static readonly uploadSettings = {\n 0: ['Accepted file extensions', ''],\n }\n\n public static readonly tipTapSettings = {\n 0: ['Capabilities', 'Choose which Tiptap extensions to enable.\\nOnce enabled, the related actions will be available for the toolbar and statusbar.'],\n 1: ['Toolbar', 'Design the available actions.\\nDrag and drop the available actions onto the toolbar.'],\n 2: ['Statusbar', 'Design the available statuses.\\nDrag and drop the available actions onto the statusbar areas.'],\n 3: ['Stylesheets', 'Pick the stylesheets whose editor styles should be available when editing.'],\n 4: ['Dimensions', 'Sets the fixed width and height of the editor. This excludes the toolbar and statusbar heights.'],\n 5: ['Maximum size for inserted images', 'Maximum width or height - enter 0 to disable resizing.'],\n 6: ['Overlay size', 'Select the width of the overlay (link picker).'],\n 7: ['Available Blocks', 'Define the available blocks.'],\n 8: ['Image Upload Folder', 'Choose the upload location of pasted images.'],\n 9: ['Ignore User Start Nodes', ''],\n }\n\n public static readonly tinyMCESettings = {\n 0: ['Toolbar', 'Pick the toolbar options that should be available when editing'],\n 1: ['Stylesheets', 'Pick the stylesheets whose editor styles should be available when editing'],\n 2: ['Dimensions', 'Set the editor dimensions'],\n 3: ['Maximum size for inserted images', 'Maximum width or height - enter 0 to disable resizing.'],\n 4: ['Mode', 'Select the mode for the editor'],\n 5: ['Available Blocks', 'Define the available blocks.'],\n 6: ['Overlay size', 'Select the width of the overlay (link picker).'],\n 7: ['Hide Label', ''],\n 8: ['Image Upload Folder', 'Choose the upload location of pasted images.'],\n 9: ['Ignore User Start Nodes', ''],\n }\n\n public static readonly userGroupAssignAccessSettings = {\n 0: ['Sections', 'Add sections to give users access'],\n 1: ['Languages', 'Limit the languages users have access to edit'],\n 2: ['Select content start node', 'Limit the content tree to a specific start node'],\n 3: ['Select media start node', 'Limit the media library to a specific start node']\n }\n\n public static readonly userGroupDefaultPermissionsSettings = {\n 0: ['Permissions', 'Assign permissions for actions']\n }\n\n public static readonly userGroupGranularPermissionsSettings = {\n 0: ['Documents', 'Assign permissions to specific documents']\n }\n\n public static readonly userGroupPermissionsSettings = {\n 0: ['Read', 'Allow access to read a Document', 'Umb.Document.Read'],\n 1: ['Create Document Blueprint', 'Allow access to create a Document Blueprint', 'Umb.Document.CreateBlueprint'],\n 2: ['Delete', 'Allow access to delete a Document', 'Umb.Document.Delete'],\n 3: ['Create', 'Allow access to create a Document', 'Umb.Document.Create'],\n 4: ['Notifications', 'Allow access to setup notifications for Documents', 'Umb.Document.Notifications'],\n 5: ['Publish', 'Allow access to publish a Document', 'Umb.Document.Publish'],\n 6: ['Set permissions', 'Allow access to change permissions for a Document', 'Umb.Document.Permissions'],\n 7: ['Unpublish', 'Allow access to unpublish a Document', 'Umb.Document.Unpublish'],\n 8: ['Update', 'Allow access to save a Document', 'Umb.Document.Update'],\n 9: ['Duplicate', 'Allow access to copy a Document', 'Umb.Document.Duplicate'],\n 10: ['Move to', 'Allow access to move a Document', 'Umb.Document.Move'],\n 11: ['Sort children', 'Allow access to change the sort order for Documents', 'Umb.Document.Sort'],\n 12: ['Culture and Hostnames', 'Allow access to assign culture and hostnames', 'Umb.Document.CultureAndHostnames'],\n 13: ['Public Access', 'Allow access to set and change access restrictions for a Document', 'Umb.Document.PublicAccess'],\n 14: ['Rollback', 'Allow access to roll back a Document to a previous state', 'Umb.Document.Rollback'],\n 15: ['UI Read', 'Allow access to read Document property values in the UI', 'Umb.Document.PropertyValue.Read'],\n 16: ['UI Write', 'Allow access to write Document property values from the UI', 'Umb.Document.PropertyValue.Write'],\n }\n\n public static readonly userGroupSectionsSettings = {\n 0: ['Content', 'Umb.Section.Content'],\n 1: ['Forms', 'Umb.Section.Forms'],\n 2: ['Media', 'Umb.Section.Media'],\n 3: ['Members', 'Umb.Section.Members'],\n 4: ['Packages', 'Umb.Section.Packages'],\n 5: ['Settings', 'Umb.Section.Settings'],\n 6: ['Translation', 'Umb.Section.Translation'],\n 7: ['Users', 'Umb.Section.Users'],\n }\n\n public static readonly trashDeleteDialogMessage = {\n referenceHeadline: 'The following items depend on this',\n bulkReferenceHeadline: 'The following items are used by other content.'\n }\n\n public static readonly webhookEvents = [\n {\n \"eventName\": \"Content Deleted\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentDelete\"\n },\n {\n \"eventName\": \"Content Published\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentPublish\"\n },\n {\n \"eventName\": \"Content Unpublished\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentUnpublish\"\n },\n {\n \"eventName\": \"Media Deleted\",\n \"eventType\": \"Media\",\n \"alias\": \"Umbraco.MediaDelete\"\n },\n {\n \"eventName\": \"Media Saved\",\n \"eventType\": \"Media\",\n \"alias\": \"Umbraco.MediaSave\"\n }\n ]\n}"]}
1
+ {"version":3,"file":"ConstantHelper.js","sourceRoot":"","sources":["../../../lib/helpers/ConstantHelper.ts"],"names":[],"mappings":"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","sourcesContent":["export class ConstantHelper {\n\n public static readonly sections = {\n content: \"Content\",\n media: \"Media\",\n settings: \"Settings\",\n packages: \"Packages\",\n members: \"Members\",\n dictionary: \"Translation\",\n users: \"Users\"\n }\n\n public static readonly testUserCredentials = {\n name: 'Test User',\n email: 'verySecureEmail@123.test',\n password: 'verySecurePassword123'\n }\n\n public static readonly validationMessages = {\n emptyLinkPicker: 'This field is required',\n invalidValue: 'Value is invalid, it does not match the correct pattern',\n unsupportInvariantContentItemWithVariantBlocks: 'One or more Block Types of this Block Editor is using a Element-Type that is configured to Vary By Culture or Vary By Segment. This is not supported on a Content item that does not vary by Culture or Segment.',\n emptyValue: 'Value cannot be empty',\n nullValue: 'Value cannot be null',\n invalidEmail: 'Invalid email'\n }\n\n public static readonly inputTypes = {\n general: 'input',\n tipTap: 'umb-input-tiptap'\n }\n\n public static readonly access = {\n denied: 'Access denied'\n }\n \n public static readonly approvedColorSettings = {\n 0: ['Include labels?', 'Displays colored field and a label for each color in the color picker, rather than just a colored field.'],\n 1: ['Colors', 'Add, remove or sort colors (and labels).'],\n }\n\n public static readonly checkboxListSettings = {\n 0: ['Add option', 'Add, remove or sort options for the list.']\n }\n\n public static readonly contentPickerSettings = {\n 0: ['Ignore user start nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n 1: ['Start node', '']\n }\n\n public static readonly datePickerSettings = {\n 0: ['Date format', 'If left empty then the format is YYYY-MM-DD'],\n //1: ['Offset time', \"When enabled the time displayed will be offset with the server's timezone, this is useful for scenarios like scheduled publishing when an editor is in a different timezone than the hosted server\"]\n }\n\n public static readonly dropdownSettings = {\n 0: ['Enable multiple choice', ''],\n 1: ['Add options', '']\n }\n\n public static readonly imageCropperSettings = {\n 0: ['Crop options', ''],\n }\n\n public static readonly mediaPickerSettings = {\n 0: ['Accepted types', 'Limit to specific types'],\n 1: ['Pick multiple items', 'Outputs a IEnumerable'],\n 2: ['Amount', 'Set a required range of medias'],\n 3: ['Start node', ''],\n 4: ['Enable Focal Point', ''],\n 5: ['Image Crops', 'Local crops, stored on document'],\n 6: ['Ignore User Start Nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n }\n\n public static readonly labelSettings = {\n 0: ['Value type', 'The type of value to store'],\n 1: ['Label template', 'Enter a template for the label.'],\n }\n\n public static readonly listViewSettings = {\n 0: ['Columns Displayed', 'The properties that will be displayed for each column.'],\n 1: ['Layouts', 'The properties that will be displayed for each column.'],\n 2: ['Order By', 'The default sort order for the Collection.'],\n 3: ['Order Direction', ''],\n 4: ['Page Size', 'Number of items per page.'],\n 5: ['Workspace View icon', \"The icon for the Collection's Workspace View.\"],\n 6: ['Workspace View name', \"The name of the Collection's Workspace View (default if empty: Child Items).\"],\n 7: ['Show Content Workspace View First', \"Enable this to show the Content Workspace View by default instead of the Collection's.\"],\n }\n\n public static readonly multiURLPickerSettings = {\n 0: ['Minimum number of items', ''],\n 1: ['Maximum number of items', ''],\n 2: ['Ignore user start nodes', 'Selecting this option allows a user to choose nodes that they normally dont have access to.'],\n 3: ['Overlay Size', 'Select the width of the overlay.'],\n 4: ['Hide anchor/query string input', 'Selecting this hides the anchor/query string input field in the link picker overlay.'],\n }\n\n public static readonly numericSettings = {\n 0: ['Minimum', 'Enter the minimum amount of number to be entered'],\n 1: ['Maximum', 'Enter the maximum amount of number to be entered'],\n 2: ['Step size', 'Enter the intervals amount between each step of number to be entered']\n }\n\n public static readonly radioboxSettings = {\n 0: ['Add option', 'Add, remove or sort options for the list.'],\n }\n\n public static readonly tagsSettings = {\n 0: ['Tag group', ''],\n 1: ['Storage Type', 'Select whether to store the tags in cache as JSON (default) or CSV format. Notice that CSV does not support commas in the tag value.']\n }\n\n public static readonly textareaSettings = {\n 0: ['Maximum allowed characters', 'If empty - no character limit'],\n 1: ['Number of rows', 'If empty or zero, the textarea is set to auto-height']\n }\n\n public static readonly textstringSettings = {\n 0: ['Maximum allowed characters', 'If empty, 512 character limit'],\n }\n\n public static readonly trueFalseSettings = {\n 0: ['Preset value', ''],\n 1: ['Show on/off labels', ''],\n 2: ['Label On', 'Displays text when enabled.'],\n 3: ['Label Off', 'Displays text when disabled.'],\n 4: ['Screen Reader Label', ''],\n }\n\n public static readonly uploadSettings = {\n 0: ['Accepted file extensions', ''],\n }\n\n public static readonly tipTapSettings = {\n 0: ['Capabilities', 'Choose which Tiptap extensions to enable.\\nOnce enabled, the related actions will be available for the toolbar and statusbar.'],\n 1: ['Toolbar', 'Design the available actions.\\nDrag and drop the available actions onto the toolbar.'],\n 2: ['Statusbar', 'Design the available statuses.\\nDrag and drop the available actions onto the statusbar areas.'],\n 3: ['Stylesheets', 'Pick the stylesheets whose editor styles should be available when editing.'],\n 4: ['Dimensions', 'Sets the fixed width and height of the editor. This excludes the toolbar and statusbar heights.'],\n 5: ['Maximum size for inserted images', 'Maximum width or height - enter 0 to disable resizing.'],\n 6: ['Overlay size', 'Select the width of the overlay (link picker).'],\n 7: ['Available Blocks', 'Define the available blocks.'],\n 8: ['Image Upload Folder', 'Choose the upload location of pasted images.'],\n 9: ['Ignore User Start Nodes', ''],\n }\n\n public static readonly tinyMCESettings = {\n 0: ['Toolbar', 'Pick the toolbar options that should be available when editing'],\n 1: ['Stylesheets', 'Pick the stylesheets whose editor styles should be available when editing'],\n 2: ['Dimensions', 'Set the editor dimensions'],\n 3: ['Maximum size for inserted images', 'Maximum width or height - enter 0 to disable resizing.'],\n 4: ['Mode', 'Select the mode for the editor'],\n 5: ['Available Blocks', 'Define the available blocks.'],\n 6: ['Overlay size', 'Select the width of the overlay (link picker).'],\n 7: ['Hide Label', ''],\n 8: ['Image Upload Folder', 'Choose the upload location of pasted images.'],\n 9: ['Ignore User Start Nodes', ''],\n }\n\n public static readonly userGroupAssignAccessSettings = {\n 0: ['Sections', 'Add sections to give users access'],\n 1: ['Languages', 'Limit the languages users have access to edit'],\n 2: ['Select content start node', 'Limit the content tree to a specific start node'],\n 3: ['Select media start node', 'Limit the media library to a specific start node']\n }\n\n public static readonly userGroupDefaultPermissionsSettings = {\n 0: ['General', ''],\n 1: ['Structure', ''],\n 2: ['Administration', ''],\n 3: ['Granular permissions', 'Assign permissions to specific documents'],\n }\n\n public static readonly userGroupGranularPermissionsSettings = {\n 0: ['General', ''],\n 1: ['Granular permissions', 'Assign permissions to Document property values'],\n }\n\n public static readonly userGroupPermissionsSettings = {\n 0: ['Read', 'Allow access to read a Document', 'Umb.Document.Read'],\n 1: ['Create Document Blueprint', 'Allow access to create a Document Blueprint', 'Umb.Document.CreateBlueprint'],\n 2: ['Delete', 'Allow access to delete a Document', 'Umb.Document.Delete'],\n 3: ['Create', 'Allow access to create a Document', 'Umb.Document.Create'],\n 4: ['Notifications', 'Allow access to setup notifications for Documents', 'Umb.Document.Notifications'],\n 5: ['Publish', 'Allow access to publish a Document', 'Umb.Document.Publish'],\n 6: ['Unpublish', 'Allow access to unpublish a Document', 'Umb.Document.Unpublish'],\n 7: ['Update', 'Allow access to save a Document', 'Umb.Document.Update'],\n 8: ['Duplicate', 'Allow access to copy a Document', 'Umb.Document.Duplicate'],\n 9: ['Move to', 'Allow access to move a Document', 'Umb.Document.Move'],\n 10: ['Sort children', 'Allow access to change the sort order for Documents', 'Umb.Document.Sort'],\n 11: ['Culture and Hostnames', 'Allow access to assign culture and hostnames', 'Umb.Document.CultureAndHostnames'],\n 12: ['Public Access', 'Allow access to set and change access restrictions for a Document', 'Umb.Document.PublicAccess'],\n 13: ['Rollback', 'Allow access to roll back a Document to a previous state', 'Umb.Document.Rollback']\n }\n\n public static readonly userGroupSectionsSettings = {\n 0: ['Content', 'Umb.Section.Content'],\n 1: ['Forms', 'Umb.Section.Forms'],\n 2: ['Media', 'Umb.Section.Media'],\n 3: ['Members', 'Umb.Section.Members'],\n 4: ['Packages', 'Umb.Section.Packages'],\n 5: ['Settings', 'Umb.Section.Settings'],\n 6: ['Translation', 'Umb.Section.Translation'],\n 7: ['Users', 'Umb.Section.Users'],\n }\n\n public static readonly trashDeleteDialogMessage = {\n referenceHeadline: 'The following items depend on this',\n bulkReferenceHeadline: 'The following items are used by other content.'\n }\n\n public static readonly webhookEvents = [\n {\n \"eventName\": \"Content Deleted\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentDelete\"\n },\n {\n \"eventName\": \"Content Published\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentPublish\"\n },\n {\n \"eventName\": \"Content Unpublished\",\n \"eventType\": \"Content\",\n \"alias\": \"Umbraco.ContentUnpublish\"\n },\n {\n \"eventName\": \"Media Deleted\",\n \"eventType\": \"Media\",\n \"alias\": \"Umbraco.MediaDelete\"\n },\n {\n \"eventName\": \"Media Saved\",\n \"eventType\": \"Media\",\n \"alias\": \"Umbraco.MediaSave\"\n }\n ]\n\n public static readonly dateTimeWithTimeZonePickerSetting = {\n 0: ['Time format', ''],\n 1: ['Time zones', 'Select the time zones that the editor should be able to pick from.']\n }\n}"]}
@@ -6,7 +6,6 @@ export declare class ContentUiHelper extends UiBaseLocators {
6
6
  private readonly publishBtn;
7
7
  private readonly unpublishBtn;
8
8
  private readonly actionMenuForContentBtn;
9
- private readonly openedModal;
10
9
  private readonly textstringTxt;
11
10
  private readonly infoTab;
12
11
  private readonly linkContent;
@@ -50,8 +49,6 @@ export declare class ContentUiHelper extends UiBaseLocators {
50
49
  private readonly documentTypeWorkspace;
51
50
  private readonly addMultipleTextStringBtn;
52
51
  private readonly multipleTextStringValueTxt;
53
- private readonly markdownTxt;
54
- private readonly codeEditorTxt;
55
52
  private readonly sliderInput;
56
53
  private readonly tabItems;
57
54
  private readonly documentWorkspace;
@@ -170,6 +167,7 @@ export declare class ContentUiHelper extends UiBaseLocators {
170
167
  private readonly treePickerSearchTxt;
171
168
  private readonly mediaPickerSearchTxt;
172
169
  private readonly memberPickerSearchTxt;
170
+ private readonly documentCreateOptionsModal;
173
171
  constructor(page: Page);
174
172
  enterContentName(name: string): Promise<void>;
175
173
  clickSaveAndPublishButton(): Promise<void>;
@@ -429,4 +427,7 @@ export declare class ContentUiHelper extends UiBaseLocators {
429
427
  enterSearchKeywordInMediaPickerModal(keyword: string): Promise<void>;
430
428
  enterSearchKeywordInMemberPickerModal(keyword: string): Promise<void>;
431
429
  isContentNameReadOnly(): Promise<void>;
430
+ isContentWithNameVisibleInList(contentName: string, isVisible?: boolean): Promise<void>;
431
+ selectDocumentBlueprintWithName(blueprintName: string): Promise<void>;
432
+ doesDocumentModalHaveText(text: string): Promise<void>;
432
433
  }
@@ -10,7 +10,6 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
10
10
  publishBtn;
11
11
  unpublishBtn;
12
12
  actionMenuForContentBtn;
13
- openedModal;
14
13
  textstringTxt;
15
14
  infoTab;
16
15
  linkContent;
@@ -54,8 +53,6 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
54
53
  documentTypeWorkspace;
55
54
  addMultipleTextStringBtn;
56
55
  multipleTextStringValueTxt;
57
- markdownTxt;
58
- codeEditorTxt;
59
56
  sliderInput;
60
57
  tabItems;
61
58
  documentWorkspace;
@@ -174,6 +171,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
174
171
  treePickerSearchTxt;
175
172
  mediaPickerSearchTxt;
176
173
  memberPickerSearchTxt;
174
+ documentCreateOptionsModal;
177
175
  constructor(page) {
178
176
  super(page);
179
177
  this.saveContentBtn = page.getByTestId('workspace-action:Umb.WorkspaceAction.Document.Save');
@@ -184,7 +182,6 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
184
182
  this.publishBtn = page.getByLabel(/^Publish(…)?$/);
185
183
  this.unpublishBtn = page.getByLabel(/^Unpublish(…)?$/);
186
184
  this.actionMenuForContentBtn = page.locator('#header').getByTestId('open-dropdown');
187
- this.openedModal = page.locator('uui-modal-container[backdrop]');
188
185
  this.textstringTxt = page.locator('umb-property-editor-ui-text-box #input');
189
186
  this.reloadChildrenThreeDotsBtn = page.getByRole('button', { name: 'Reload children…' });
190
187
  this.contentTree = page.locator('umb-tree[alias="Umb.Tree.Document"]');
@@ -211,8 +208,6 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
211
208
  this.documentTypeWorkspace = this.sidebarModal.locator('umb-document-type-workspace-editor');
212
209
  this.addMultipleTextStringBtn = page.locator('umb-input-multiple-text-string').getByLabel('Add');
213
210
  this.multipleTextStringValueTxt = page.locator('umb-input-multiple-text-string').getByLabel('Value');
214
- this.markdownTxt = page.locator('umb-input-markdown textarea');
215
- this.codeEditorTxt = page.locator('umb-code-editor textarea');
216
211
  this.sliderInput = page.locator('umb-property-editor-ui-slider #input');
217
212
  this.tabItems = page.locator('uui-tab');
218
213
  this.documentWorkspace = page.locator('umb-document-workspace-editor');
@@ -234,6 +229,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
234
229
  this.editDocumentTypeBtn = this.generalItem.filter({ hasText: 'Document Type' }).locator('#button');
235
230
  this.addTemplateBtn = this.generalItem.filter({ hasText: 'Template' }).locator('#button');
236
231
  this.id = this.generalItem.filter({ hasText: 'Id' }).locator('span');
232
+ this.documentCreateOptionsModal = page.locator('umb-document-create-options-modal');
237
233
  // Culture and Hostname
238
234
  this.cultureAndHostnamesBtn = page.getByLabel(/^Culture and Hostnames(…)?$/);
239
235
  this.cultureLanguageDropdownBox = page.locator('[headline="Culture"]').getByLabel('combobox-input');
@@ -315,7 +311,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
315
311
  this.tipTapPropertyEditor = page.locator('umb-property-editor-ui-tiptap');
316
312
  this.tipTapEditor = this.tipTapPropertyEditor.locator('#editor .tiptap');
317
313
  this.uploadedSvgThumbnail = page.locator('umb-input-upload-field-svg img');
318
- this.insertBlockBtn = page.locator('[title="Insert Block"]');
314
+ this.insertBlockBtn = page.getByTestId('action:tiptap-toolbar:Umb.Tiptap.Toolbar.BlockPicker');
319
315
  this.blockWorkspace = page.locator('umb-block-workspace-editor');
320
316
  this.tiptapInput = page.locator('umb-input-tiptap');
321
317
  this.rteBlockInline = page.locator('umb-rte-block-inline');
@@ -731,13 +727,11 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
731
727
  }
732
728
  // Code Editor
733
729
  async enterCodeEditorValue(value) {
734
- await this.codeEditorTxt.clear();
735
- await this.codeEditorTxt.fill(value);
730
+ await this.enterMonacoEditorValue(value);
736
731
  }
737
732
  // Markdown Editor
738
733
  async enterMarkdownEditorValue(value) {
739
- await this.markdownTxt.clear();
740
- await this.markdownTxt.fill(value);
734
+ await this.enterMonacoEditorValue(value);
741
735
  }
742
736
  // Slider
743
737
  async changeSliderValue(value) {
@@ -747,7 +741,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
747
741
  return (0, test_1.expect)(this.sidebarModal.getByText(contentName)).toBeVisible({ visible: isVisible });
748
742
  }
749
743
  async doesModalHaveText(text) {
750
- return (0, test_1.expect)(this.sidebarModal).toContainText(text);
744
+ return (0, test_1.expect)(this.openedModal).toContainText(text);
751
745
  }
752
746
  // Collection tab
753
747
  async isTabNameVisible(tabName) {
@@ -1456,6 +1450,16 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
1456
1450
  async isContentNameReadOnly() {
1457
1451
  await (0, test_1.expect)(this.contentNameTxt).toHaveAttribute('readonly');
1458
1452
  }
1453
+ async isContentWithNameVisibleInList(contentName, isVisible = true) {
1454
+ await (0, test_1.expect)(this.documentTableColumnName.filter({ hasText: contentName })).toBeVisible({ visible: isVisible });
1455
+ }
1456
+ async selectDocumentBlueprintWithName(blueprintName) {
1457
+ await (0, test_1.expect)(this.documentCreateOptionsModal.locator('uui-menu-item', { hasText: blueprintName })).toBeVisible();
1458
+ await this.documentCreateOptionsModal.locator('uui-menu-item', { hasText: blueprintName }).click();
1459
+ }
1460
+ async doesDocumentModalHaveText(text) {
1461
+ await (0, test_1.expect)(this.documentCreateOptionsModal).toContainText(text);
1462
+ }
1459
1463
  }
1460
1464
  exports.ContentUiHelper = ContentUiHelper;
1461
1465
  //# sourceMappingURL=ContentUiHelper.js.map