@dotcms/angular 0.0.1-beta.9 → 1.0.0

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 (126) hide show
  1. package/README.md +646 -167
  2. package/dotcms-angular.d.ts.map +1 -1
  3. package/esm2022/dotcms-angular.mjs +2 -2
  4. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/code.component.mjs +49 -0
  5. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/dot-contentlet.component.mjs +125 -0
  6. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/image.component.mjs +25 -0
  7. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/list.component.mjs +66 -0
  8. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/table.component.mjs +97 -0
  9. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/text.component.mjs +231 -0
  10. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/unknown.component.mjs +65 -0
  11. package/esm2022/lib/components/dotcms-block-editor-renderer/blocks/video.component.mjs +48 -0
  12. package/esm2022/lib/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.mjs +50 -0
  13. package/esm2022/lib/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.mjs +45 -0
  14. package/esm2022/lib/components/dotcms-editable-text/dotcms-editable-text.component.mjs +240 -0
  15. package/esm2022/lib/components/dotcms-editable-text/utils.mjs +20 -0
  16. package/esm2022/lib/components/dotcms-layout-body/components/column/column.component.mjs +45 -0
  17. package/esm2022/lib/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.mjs +52 -0
  18. package/esm2022/lib/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.mjs +47 -0
  19. package/esm2022/lib/components/dotcms-layout-body/components/container/container.component.mjs +99 -0
  20. package/esm2022/lib/components/dotcms-layout-body/components/contentlet/contentlet.component.mjs +145 -0
  21. package/esm2022/lib/components/dotcms-layout-body/components/fallback-component/fallback-component.component.mjs +47 -0
  22. package/esm2022/lib/components/dotcms-layout-body/components/page-error-message/page-error-message.component.mjs +55 -0
  23. package/esm2022/lib/components/dotcms-layout-body/components/row/row.component.mjs +46 -0
  24. package/esm2022/lib/components/dotcms-layout-body/dotcms-layout-body.component.mjs +69 -0
  25. package/esm2022/lib/directives/dotcms-show-when/dotcms-show-when.directive.mjs +49 -0
  26. package/esm2022/lib/models/index.mjs +2 -2
  27. package/esm2022/lib/providers/dotcms-client/dotcms-client.provider.mjs +52 -0
  28. package/esm2022/lib/providers/dotcms-image-loader/dotcms-image_loader.mjs +74 -0
  29. package/esm2022/lib/services/dotcms-editable-page.service.mjs +93 -0
  30. package/esm2022/lib/store/dotcms.store.mjs +61 -0
  31. package/esm2022/public_api.mjs +8 -0
  32. package/fesm2022/dotcms-angular.mjs +1578 -612
  33. package/fesm2022/dotcms-angular.mjs.map +1 -1
  34. package/index.d.ts +6 -6
  35. package/lib/components/dotcms-block-editor-renderer/blocks/code.component.d.ts +10 -0
  36. package/lib/components/dotcms-block-editor-renderer/blocks/code.component.d.ts.map +1 -0
  37. package/lib/components/dotcms-block-editor-renderer/blocks/dot-contentlet.component.d.ts +34 -0
  38. package/lib/components/dotcms-block-editor-renderer/blocks/dot-contentlet.component.d.ts.map +1 -0
  39. package/lib/components/dotcms-block-editor-renderer/blocks/image.component.d.ts +9 -0
  40. package/lib/components/dotcms-block-editor-renderer/blocks/image.component.d.ts.map +1 -0
  41. package/lib/components/dotcms-block-editor-renderer/blocks/list.component.d.ts +14 -0
  42. package/lib/components/dotcms-block-editor-renderer/blocks/list.component.d.ts.map +1 -0
  43. package/lib/components/dotcms-block-editor-renderer/blocks/table.component.d.ts +10 -0
  44. package/lib/components/dotcms-block-editor-renderer/blocks/table.component.d.ts.map +1 -0
  45. package/lib/components/dotcms-block-editor-renderer/blocks/text.component.d.ts +27 -0
  46. package/lib/components/dotcms-block-editor-renderer/blocks/text.component.d.ts.map +1 -0
  47. package/lib/components/dotcms-block-editor-renderer/blocks/unknown.component.d.ts +18 -0
  48. package/lib/components/dotcms-block-editor-renderer/blocks/unknown.component.d.ts.map +1 -0
  49. package/lib/components/dotcms-block-editor-renderer/blocks/video.component.d.ts +10 -0
  50. package/lib/components/dotcms-block-editor-renderer/blocks/video.component.d.ts.map +1 -0
  51. package/lib/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.d.ts +39 -0
  52. package/lib/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.d.ts.map +1 -0
  53. package/lib/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.d.ts +12 -0
  54. package/lib/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.d.ts.map +1 -0
  55. package/lib/components/{dot-editable-text/dot-editable-text.component.d.ts → dotcms-editable-text/dotcms-editable-text.component.d.ts} +30 -30
  56. package/lib/components/dotcms-editable-text/dotcms-editable-text.component.d.ts.map +1 -0
  57. package/lib/components/dotcms-editable-text/utils.d.ts.map +1 -0
  58. package/lib/components/dotcms-layout-body/components/column/column.component.d.ts +21 -0
  59. package/lib/components/dotcms-layout-body/components/column/column.component.d.ts.map +1 -0
  60. package/lib/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.d.ts +27 -0
  61. package/lib/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.d.ts.map +1 -0
  62. package/lib/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.d.ts +23 -0
  63. package/lib/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.d.ts.map +1 -0
  64. package/lib/components/dotcms-layout-body/components/container/container.component.d.ts +32 -0
  65. package/lib/components/dotcms-layout-body/components/container/container.component.d.ts.map +1 -0
  66. package/lib/components/dotcms-layout-body/components/contentlet/contentlet.component.d.ts +48 -0
  67. package/lib/components/dotcms-layout-body/components/contentlet/contentlet.component.d.ts.map +1 -0
  68. package/lib/components/dotcms-layout-body/components/fallback-component/fallback-component.component.d.ts +16 -0
  69. package/lib/components/dotcms-layout-body/components/fallback-component/fallback-component.component.d.ts.map +1 -0
  70. package/lib/components/dotcms-layout-body/components/page-error-message/page-error-message.component.d.ts +13 -0
  71. package/lib/components/dotcms-layout-body/components/page-error-message/page-error-message.component.d.ts.map +1 -0
  72. package/lib/components/dotcms-layout-body/components/row/row.component.d.ts +22 -0
  73. package/lib/components/dotcms-layout-body/components/row/row.component.d.ts.map +1 -0
  74. package/lib/components/dotcms-layout-body/dotcms-layout-body.component.d.ts +30 -0
  75. package/lib/components/dotcms-layout-body/dotcms-layout-body.component.d.ts.map +1 -0
  76. package/lib/directives/dotcms-show-when/dotcms-show-when.directive.d.ts +21 -0
  77. package/lib/directives/dotcms-show-when/dotcms-show-when.directive.d.ts.map +1 -0
  78. package/lib/models/index.d.ts +9 -10
  79. package/lib/models/index.d.ts.map +1 -1
  80. package/lib/providers/dotcms-client/dotcms-client.provider.d.ts +60 -0
  81. package/lib/providers/dotcms-client/dotcms-client.provider.d.ts.map +1 -0
  82. package/lib/{utils/image_loader.d.ts → providers/dotcms-image-loader/dotcms-image_loader.d.ts} +1 -1
  83. package/lib/providers/dotcms-image-loader/dotcms-image_loader.d.ts.map +1 -0
  84. package/lib/services/dotcms-editable-page.service.d.ts +40 -0
  85. package/lib/services/dotcms-editable-page.service.d.ts.map +1 -0
  86. package/lib/store/dotcms.store.d.ts +36 -0
  87. package/lib/store/dotcms.store.d.ts.map +1 -0
  88. package/package.json +9 -9
  89. package/public_api.d.ts +9 -0
  90. package/public_api.d.ts.map +1 -0
  91. package/esm2022/index.mjs +0 -6
  92. package/esm2022/lib/components/dot-editable-text/dot-editable-text.component.mjs +0 -225
  93. package/esm2022/lib/components/dot-editable-text/utils.mjs +0 -43
  94. package/esm2022/lib/components/no-component/no-component.component.mjs +0 -32
  95. package/esm2022/lib/layout/column/column.component.mjs +0 -45
  96. package/esm2022/lib/layout/container/container.component.mjs +0 -126
  97. package/esm2022/lib/layout/contentlet/contentlet.component.mjs +0 -120
  98. package/esm2022/lib/layout/dotcms-layout/dotcms-layout.component.mjs +0 -101
  99. package/esm2022/lib/layout/row/row.component.mjs +0 -29
  100. package/esm2022/lib/models/dotcms.model.mjs +0 -3
  101. package/esm2022/lib/services/dotcms-context/page-context.service.mjs +0 -75
  102. package/esm2022/lib/utils/image_loader.mjs +0 -75
  103. package/esm2022/lib/utils/index.mjs +0 -84
  104. package/index.d.ts.map +0 -1
  105. package/lib/components/dot-editable-text/dot-editable-text.component.d.ts.map +0 -1
  106. package/lib/components/dot-editable-text/utils.d.ts.map +0 -1
  107. package/lib/components/no-component/no-component.component.d.ts +0 -22
  108. package/lib/components/no-component/no-component.component.d.ts.map +0 -1
  109. package/lib/layout/column/column.component.d.ts +0 -29
  110. package/lib/layout/column/column.component.d.ts.map +0 -1
  111. package/lib/layout/container/container.component.d.ts +0 -88
  112. package/lib/layout/container/container.component.d.ts.map +0 -1
  113. package/lib/layout/contentlet/contentlet.component.d.ts +0 -86
  114. package/lib/layout/contentlet/contentlet.component.d.ts.map +0 -1
  115. package/lib/layout/dotcms-layout/dotcms-layout.component.d.ts +0 -68
  116. package/lib/layout/dotcms-layout/dotcms-layout.component.d.ts.map +0 -1
  117. package/lib/layout/row/row.component.d.ts +0 -20
  118. package/lib/layout/row/row.component.d.ts.map +0 -1
  119. package/lib/models/dotcms.model.d.ts +0 -416
  120. package/lib/models/dotcms.model.d.ts.map +0 -1
  121. package/lib/services/dotcms-context/page-context.service.d.ts +0 -49
  122. package/lib/services/dotcms-context/page-context.service.d.ts.map +0 -1
  123. package/lib/utils/image_loader.d.ts.map +0 -1
  124. package/lib/utils/index.d.ts +0 -63
  125. package/lib/utils/index.d.ts.map +0 -1
  126. /package/lib/components/{dot-editable-text → dotcms-editable-text}/utils.d.ts +0 -0
@@ -1,416 +0,0 @@
1
- export interface DotCMSPageAsset {
2
- canCreateTemplate: boolean;
3
- containers: DotCMSPageAssetContainer;
4
- layout: DotCMSLayout;
5
- page: DotCMSPage;
6
- site: DotCMSSite;
7
- template: DotCMSTemplate;
8
- viewAs: DotCMSViewAs;
9
- vanityUrl?: {
10
- pattern: string;
11
- vanityUrlId: string;
12
- url: string;
13
- siteId: string;
14
- languageId: number;
15
- forwardTo: string;
16
- response: number;
17
- order: number;
18
- temporaryRedirect: boolean;
19
- permanentRedirect: boolean;
20
- forward: boolean;
21
- };
22
- }
23
- export interface DotPageAssetLayoutRow {
24
- identifier: number;
25
- value?: string;
26
- id?: string;
27
- columns: DotPageAssetLayoutColumn[];
28
- styleClass?: string;
29
- }
30
- export interface DotPageAssetLayoutColumn {
31
- preview: boolean;
32
- containers: DotCMSContainer[];
33
- widthPercent: number;
34
- width: number;
35
- leftOffset: number;
36
- left: number;
37
- styleClass?: string;
38
- }
39
- export interface DotCMSPageAssetContainer {
40
- [key: string]: {
41
- container: DotCMSContainer;
42
- containerStructures: DotCMSContainerStructure[];
43
- contentlets: {
44
- [key: string]: DotCMSContentlet[];
45
- };
46
- };
47
- }
48
- export interface DotCMSContainer {
49
- identifier: string;
50
- uuid: string;
51
- iDate: number;
52
- type: string;
53
- owner?: string;
54
- inode: string;
55
- source: string;
56
- title: string;
57
- friendlyName: string;
58
- modDate: number;
59
- modUser: string;
60
- sortOrder: number;
61
- showOnMenu: boolean;
62
- code?: string;
63
- maxContentlets: number;
64
- useDiv: boolean;
65
- sortContentletsBy?: string;
66
- preLoop: string;
67
- postLoop: string;
68
- staticify: boolean;
69
- luceneQuery?: string;
70
- notes: string;
71
- languageId?: number;
72
- path?: string;
73
- live: boolean;
74
- locked: boolean;
75
- working: boolean;
76
- deleted: boolean;
77
- name: string;
78
- archived: boolean;
79
- permissionId: string;
80
- versionId: string;
81
- versionType: string;
82
- permissionType: string;
83
- categoryId: string;
84
- idate: number;
85
- new: boolean;
86
- acceptTypes: string;
87
- contentlets: DotCMSContentlet[];
88
- parentPermissionable: DotCMSSiteParentPermissionable;
89
- }
90
- export interface DotCMSContentlet {
91
- archived: boolean;
92
- baseType: string;
93
- deleted?: boolean;
94
- binary?: string;
95
- binaryContentAsset?: string;
96
- binaryVersion?: string;
97
- contentType: string;
98
- file?: string;
99
- folder: string;
100
- hasLiveVersion?: boolean;
101
- hasTitleImage: boolean;
102
- host: string;
103
- hostName: string;
104
- identifier: string;
105
- inode: string;
106
- image?: string;
107
- languageId: number;
108
- language?: string;
109
- live: boolean;
110
- locked: boolean;
111
- mimeType?: string;
112
- modDate: string;
113
- modUser: string;
114
- modUserName: string;
115
- owner: string;
116
- sortOrder: number;
117
- stInode: string;
118
- title: string;
119
- titleImage: string;
120
- text?: string;
121
- url: string;
122
- working: boolean;
123
- body?: string;
124
- contentTypeIcon?: string;
125
- variant?: string;
126
- __icon__?: string;
127
- [key: string]: any;
128
- }
129
- export interface DotcmsNavigationItem {
130
- code?: any;
131
- folder: string;
132
- children?: DotcmsNavigationItem[];
133
- host: string;
134
- languageId: number;
135
- href: string;
136
- title: string;
137
- type: string;
138
- hash: number;
139
- target: string;
140
- order: number;
141
- }
142
- interface DotCMSTemplate {
143
- iDate: number;
144
- type: string;
145
- owner: string;
146
- inode: string;
147
- identifier: string;
148
- source: string;
149
- title: string;
150
- friendlyName: string;
151
- modDate: number;
152
- modUser: string;
153
- sortOrder: number;
154
- showOnMenu: boolean;
155
- image: string;
156
- drawed: boolean;
157
- drawedBody: string;
158
- theme: string;
159
- anonymous: boolean;
160
- template: boolean;
161
- name: string;
162
- live: boolean;
163
- archived: boolean;
164
- locked: boolean;
165
- working: boolean;
166
- permissionId: string;
167
- versionId: string;
168
- versionType: string;
169
- deleted: boolean;
170
- permissionType: string;
171
- categoryId: string;
172
- idate: number;
173
- new: boolean;
174
- canEdit: boolean;
175
- }
176
- interface DotCMSPage {
177
- template: string;
178
- modDate: number;
179
- metadata: string;
180
- cachettl: string;
181
- pageURI: string;
182
- title: string;
183
- type: string;
184
- showOnMenu: string;
185
- httpsRequired: boolean;
186
- inode: string;
187
- disabledWYSIWYG: any[];
188
- seokeywords: string;
189
- host: string;
190
- lastReview: number;
191
- working: boolean;
192
- locked: boolean;
193
- stInode: string;
194
- friendlyName: string;
195
- live: boolean;
196
- owner: string;
197
- identifier: string;
198
- nullProperties: any[];
199
- friendlyname: string;
200
- pagemetadata: string;
201
- languageId: number;
202
- url: string;
203
- seodescription: string;
204
- modUserName: string;
205
- folder: string;
206
- deleted: boolean;
207
- sortOrder: number;
208
- modUser: string;
209
- pageUrl: string;
210
- workingInode: string;
211
- shortyWorking: string;
212
- canEdit: boolean;
213
- canRead: boolean;
214
- canLock: boolean;
215
- lockedOn: number;
216
- lockedBy: string;
217
- lockedByName: string;
218
- liveInode: string;
219
- shortyLive: string;
220
- }
221
- interface DotCMSViewAs {
222
- language: {
223
- id: number;
224
- languageCode: string;
225
- countryCode: string;
226
- language: string;
227
- country: string;
228
- };
229
- mode: string;
230
- }
231
- interface DotCMSLayout {
232
- pageWidth: string;
233
- width: string;
234
- layout: string;
235
- title: string;
236
- header: boolean;
237
- footer: boolean;
238
- body: DotPageAssetLayoutBody;
239
- sidebar: DotPageAssetLayoutSidebar;
240
- }
241
- interface DotCMSContainerStructure {
242
- id: string;
243
- structureId: string;
244
- containerInode: string;
245
- containerId: string;
246
- code: string;
247
- contentTypeVar: string;
248
- }
249
- interface DotPageAssetLayoutSidebar {
250
- preview: boolean;
251
- containers: DotCMSContainer[];
252
- location: string;
253
- widthPercent: number;
254
- width: string;
255
- }
256
- interface DotPageAssetLayoutBody {
257
- rows: DotPageAssetLayoutRow[];
258
- }
259
- interface DotCMSSite {
260
- lowIndexPriority: boolean;
261
- name: string;
262
- default: boolean;
263
- aliases: string;
264
- parent: boolean;
265
- tagStorage: string;
266
- systemHost: boolean;
267
- inode: string;
268
- versionType: string;
269
- structureInode: string;
270
- hostname: string;
271
- hostThumbnail?: any;
272
- owner: string;
273
- permissionId: string;
274
- permissionType: string;
275
- type: string;
276
- identifier: string;
277
- modDate: number;
278
- host: string;
279
- live: boolean;
280
- indexPolicy: string;
281
- categoryId: string;
282
- actionId?: any;
283
- new: boolean;
284
- archived: boolean;
285
- locked: boolean;
286
- disabledWysiwyg: any[];
287
- modUser: string;
288
- working: boolean;
289
- titleImage: {
290
- present: boolean;
291
- };
292
- folder: string;
293
- htmlpage: boolean;
294
- fileAsset: boolean;
295
- vanityUrl: boolean;
296
- keyValue: boolean;
297
- structure?: DotCMSSiteStructure;
298
- title: string;
299
- languageId: number;
300
- indexPolicyDependencies: string;
301
- contentTypeId: string;
302
- versionId: string;
303
- lastReview: number;
304
- nextReview?: any;
305
- reviewInterval?: any;
306
- sortOrder: number;
307
- contentType: DotCMSSiteContentType;
308
- }
309
- interface DotCMSSiteContentType {
310
- owner?: any;
311
- parentPermissionable: DotCMSSiteParentPermissionable;
312
- permissionId: string;
313
- permissionType: string;
314
- }
315
- export interface DotCMSSiteParentPermissionable {
316
- Inode: string;
317
- Identifier: string;
318
- permissionByIdentifier: boolean;
319
- type: string;
320
- owner?: any;
321
- identifier: string;
322
- permissionId: string;
323
- parentPermissionable?: any;
324
- permissionType: string;
325
- inode: string;
326
- childrenPermissionable?: any;
327
- variantId?: string;
328
- }
329
- interface DotCMSSiteStructure {
330
- iDate: number;
331
- type: string;
332
- owner?: any;
333
- inode: string;
334
- identifier: string;
335
- name: string;
336
- description: string;
337
- defaultStructure: boolean;
338
- reviewInterval?: any;
339
- reviewerRole?: any;
340
- pagedetail?: any;
341
- structureType: number;
342
- fixed: boolean;
343
- system: boolean;
344
- velocityVarName: string;
345
- urlMapPattern?: any;
346
- host: string;
347
- folder: string;
348
- publishDateVar?: any;
349
- expireDateVar?: any;
350
- modDate: number;
351
- fields: DotCMSSiteField[];
352
- widget: boolean;
353
- detailPage?: any;
354
- fieldsBySortOrder: DotCMSSiteField[];
355
- form: boolean;
356
- htmlpageAsset: boolean;
357
- content: boolean;
358
- fileAsset: boolean;
359
- persona: boolean;
360
- permissionId: string;
361
- permissionType: string;
362
- live: boolean;
363
- categoryId: string;
364
- idate: number;
365
- new: boolean;
366
- archived: boolean;
367
- locked: boolean;
368
- modUser: string;
369
- working: boolean;
370
- title: string;
371
- versionId: string;
372
- versionType: string;
373
- }
374
- interface DotCMSSiteField {
375
- iDate: number;
376
- type: string;
377
- owner?: any;
378
- inode: string;
379
- identifier: string;
380
- structureInode: string;
381
- fieldName: string;
382
- fieldType: string;
383
- fieldRelationType?: any;
384
- fieldContentlet: string;
385
- required: boolean;
386
- velocityVarName: string;
387
- sortOrder: number;
388
- values?: any;
389
- regexCheck?: any;
390
- hint?: any;
391
- defaultValue?: any;
392
- indexed: boolean;
393
- listed: boolean;
394
- fixed: boolean;
395
- readOnly: boolean;
396
- searchable: boolean;
397
- unique: boolean;
398
- modDate: number;
399
- dataType: string;
400
- live: boolean;
401
- categoryId: string;
402
- idate: number;
403
- new: boolean;
404
- archived: boolean;
405
- locked: boolean;
406
- modUser: string;
407
- working: boolean;
408
- permissionId: string;
409
- parentPermissionable?: any;
410
- permissionType: string;
411
- title: string;
412
- versionId: string;
413
- versionType: string;
414
- }
415
- export {};
416
- //# sourceMappingURL=dotcms.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dotcms.model.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdk/angular/src/lib/models/dotcms.model.ts"],"names":[],"mappings":"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"}
@@ -1,49 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { DotCMSPageComponent, DotCMSPageContext } from '../../models';
3
- import { DotCMSPageAsset } from '../../models/dotcms.model';
4
- import * as i0 from "@angular/core";
5
- /**
6
- * @author dotCMS
7
- * @description This service is responsible for managing the page context.
8
- * @export
9
- * @class PageContextService
10
- */
11
- export declare class PageContextService {
12
- private context$;
13
- /**
14
- * @description Get the context
15
- * @readonly
16
- * @type {DotCMSPageContext}
17
- * @memberof PageContextService
18
- */
19
- get context(): DotCMSPageContext;
20
- /**
21
- * @description Get the context as an observable
22
- * @readonly
23
- * @memberof PageContextService
24
- */
25
- get contextObs$(): Observable<DotCMSPageContext | null>;
26
- /**
27
- * @description Get the current page asset
28
- * @readonly
29
- * @type {(Observable<DotCMSPageAsset | null>)}
30
- * @memberof PageContextService
31
- */
32
- get currentPage$(): Observable<DotCMSPageAsset | null>;
33
- /**
34
- *
35
- * @description Set the context
36
- * @param {DotCMSPageAsset} value
37
- * @memberof DotcmsContextService
38
- */
39
- setContext(pageAsset: DotCMSPageAsset, components: DotCMSPageComponent): void;
40
- /**
41
- * @description Set the page asset in the context
42
- * @param {DotCMSPageAsset} pageAsset
43
- * @memberof PageContextService
44
- */
45
- setPageAsset(pageAsset: DotCMSPageAsset): void;
46
- static ɵfac: i0.ɵɵFactoryDeclaration<PageContextService, never>;
47
- static ɵprov: i0.ɵɵInjectableDeclaration<PageContextService>;
48
- }
49
- //# sourceMappingURL=page-context.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"page-context.service.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdk/angular/src/lib/services/dotcms-context/page-context.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,UAAU,EAAE,MAAM,MAAM,CAAC;AAQnD,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;;AAE5D;;;;;GAKG;AACH,qBAGa,kBAAkB;IAC3B,OAAO,CAAC,QAAQ,CAAuD;IAEvE;;;;;OAKG;IACH,IAAI,OAAO,IAAI,iBAAiB,CAE/B;IAED;;;;OAIG;IACH,IAAI,WAAW,yCAEd;IAED;;;;;OAKG;IACH,IAAI,YAAY,IAAI,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,CAErD;IAED;;;;;OAKG;IACH,UAAU,CAAC,SAAS,EAAE,eAAe,EAAE,UAAU,EAAE,mBAAmB;IAQtE;;;;OAIG;IACH,YAAY,CAAC,SAAS,EAAE,eAAe;yCAnD9B,kBAAkB;6CAAlB,kBAAkB;CAyD9B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"image_loader.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdk/angular/src/lib/utils/image_loader.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AA8BzC;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,EAAE,CAelE"}
@@ -1,63 +0,0 @@
1
- import { DotCMSContainer, DotCMSPageAssetContainer } from '../models/dotcms.model';
2
- /**
3
- * Retrieves the data for a set of containers.
4
- *
5
- * @param containers - The DotCMSPageAssetContainer object containing the containers.
6
- * @param containerRef - The DotCMSContainer object representing the container reference.
7
- * @returns An object containing the container data, accept types, contentlets, and variant ID.
8
- */
9
- export declare const getContainersData: (containers: DotCMSPageAssetContainer, containerRef: DotCMSContainer) => {
10
- acceptTypes: string;
11
- contentlets: import("../models/dotcms.model").DotCMSContentlet[];
12
- variantId: string | undefined;
13
- identifier: string;
14
- uuid: string;
15
- iDate: number;
16
- type: string;
17
- owner?: string | undefined;
18
- inode: string;
19
- source: string;
20
- title: string;
21
- friendlyName: string;
22
- modDate: number;
23
- modUser: string;
24
- sortOrder: number;
25
- showOnMenu: boolean;
26
- code?: string | undefined;
27
- maxContentlets: number;
28
- useDiv: boolean;
29
- sortContentletsBy?: string | undefined;
30
- preLoop: string;
31
- postLoop: string;
32
- staticify: boolean;
33
- luceneQuery?: string | undefined;
34
- notes: string;
35
- languageId?: number | undefined;
36
- path?: string | undefined;
37
- live: boolean;
38
- locked: boolean;
39
- working: boolean;
40
- deleted: boolean;
41
- name: string;
42
- archived: boolean;
43
- permissionId: string;
44
- versionId: string;
45
- versionType: string;
46
- permissionType: string;
47
- categoryId: string;
48
- idate: number;
49
- new: boolean;
50
- parentPermissionable: import("../models/dotcms.model").DotCMSSiteParentPermissionable;
51
- };
52
- /**
53
- * Returns the position style classes based on the start and end values.
54
- * Used to set the grid column start and end values.
55
- * @param start - The start value.
56
- * @param end - The end value.
57
- * @returns An object containing the startClass and endClass.
58
- */
59
- export declare const getPositionStyleClasses: (start: number, end: number) => {
60
- startClass: string | null;
61
- endClass: string | null;
62
- };
63
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdk/angular/src/lib/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AA6CnF;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,eACd,wBAAwB,gBACtB,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BhC,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB,UAAW,MAAM,OAAO,MAAM;;;CAQjE,CAAC"}