@dotcms/angular 0.0.1-beta.14 → 0.0.1-beta.16

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 (75) hide show
  1. package/esm2022/lib/deprecated/utils/image_loader.mjs +1 -2
  2. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/code.component.mjs +49 -0
  3. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/contentlet.component.mjs +53 -0
  4. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/image.component.mjs +25 -0
  5. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/list.component.mjs +66 -0
  6. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/table.component.mjs +97 -0
  7. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/text.component.mjs +231 -0
  8. package/esm2022/next/components/dotcms-block-editor-renderer/blocks/video.components.mjs +48 -0
  9. package/esm2022/next/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.mjs +46 -0
  10. package/esm2022/next/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.mjs +43 -0
  11. package/esm2022/next/components/dotcms-editable-text/dotcms-editable-text.component.mjs +1 -1
  12. package/esm2022/next/components/dotcms-layout-body/components/column/column.component.mjs +45 -0
  13. package/esm2022/next/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.mjs +52 -0
  14. package/esm2022/next/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.mjs +43 -0
  15. package/esm2022/next/components/dotcms-layout-body/components/container/container.component.mjs +99 -0
  16. package/esm2022/next/components/dotcms-layout-body/components/contentlet/contentlet.component.mjs +145 -0
  17. package/esm2022/next/components/dotcms-layout-body/components/fallback-component/fallback-component.component.mjs +47 -0
  18. package/esm2022/next/components/dotcms-layout-body/components/page-error-message/page-error-message.component.mjs +55 -0
  19. package/esm2022/next/components/dotcms-layout-body/components/row/row.component.mjs +46 -0
  20. package/esm2022/next/components/dotcms-layout-body/dotcms-layout-body.component.mjs +69 -0
  21. package/esm2022/next/models/index.mjs +2 -2
  22. package/esm2022/next/public_api.mjs +3 -1
  23. package/esm2022/next/store/dotcms.store.mjs +61 -0
  24. package/fesm2022/dotcms-angular-next.mjs +1250 -3
  25. package/fesm2022/dotcms-angular-next.mjs.map +1 -1
  26. package/fesm2022/dotcms-angular.mjs +0 -1
  27. package/fesm2022/dotcms-angular.mjs.map +1 -1
  28. package/next/components/dotcms-block-editor-renderer/blocks/code.component.d.ts +10 -0
  29. package/next/components/dotcms-block-editor-renderer/blocks/code.component.d.ts.map +1 -0
  30. package/next/components/dotcms-block-editor-renderer/blocks/contentlet.component.d.ts +25 -0
  31. package/next/components/dotcms-block-editor-renderer/blocks/contentlet.component.d.ts.map +1 -0
  32. package/next/components/dotcms-block-editor-renderer/blocks/image.component.d.ts +9 -0
  33. package/next/components/dotcms-block-editor-renderer/blocks/image.component.d.ts.map +1 -0
  34. package/next/components/dotcms-block-editor-renderer/blocks/list.component.d.ts +14 -0
  35. package/next/components/dotcms-block-editor-renderer/blocks/list.component.d.ts.map +1 -0
  36. package/next/components/dotcms-block-editor-renderer/blocks/table.component.d.ts +10 -0
  37. package/next/components/dotcms-block-editor-renderer/blocks/table.component.d.ts.map +1 -0
  38. package/next/components/dotcms-block-editor-renderer/blocks/text.component.d.ts +27 -0
  39. package/next/components/dotcms-block-editor-renderer/blocks/text.component.d.ts.map +1 -0
  40. package/next/components/dotcms-block-editor-renderer/blocks/video.components.d.ts +10 -0
  41. package/next/components/dotcms-block-editor-renderer/blocks/video.components.d.ts.map +1 -0
  42. package/next/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.d.ts +37 -0
  43. package/next/components/dotcms-block-editor-renderer/dotcms-block-editor-renderer.component.d.ts.map +1 -0
  44. package/next/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.d.ts +12 -0
  45. package/next/components/dotcms-block-editor-renderer/item/dotcms-block-editor-item.component.d.ts.map +1 -0
  46. package/next/components/dotcms-editable-text/dotcms-editable-text.component.d.ts +1 -1
  47. package/next/components/dotcms-editable-text/dotcms-editable-text.component.d.ts.map +1 -1
  48. package/next/components/dotcms-layout-body/components/column/column.component.d.ts +21 -0
  49. package/next/components/dotcms-layout-body/components/column/column.component.d.ts.map +1 -0
  50. package/next/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.d.ts +27 -0
  51. package/next/components/dotcms-layout-body/components/container/components/container-not-found/container-not-found.component.d.ts.map +1 -0
  52. package/next/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.d.ts +23 -0
  53. package/next/components/dotcms-layout-body/components/container/components/empty-container/empty-container.component.d.ts.map +1 -0
  54. package/next/components/dotcms-layout-body/components/container/container.component.d.ts +31 -0
  55. package/next/components/dotcms-layout-body/components/container/container.component.d.ts.map +1 -0
  56. package/next/components/dotcms-layout-body/components/contentlet/contentlet.component.d.ts +47 -0
  57. package/next/components/dotcms-layout-body/components/contentlet/contentlet.component.d.ts.map +1 -0
  58. package/next/components/dotcms-layout-body/components/fallback-component/fallback-component.component.d.ts +16 -0
  59. package/next/components/dotcms-layout-body/components/fallback-component/fallback-component.component.d.ts.map +1 -0
  60. package/next/components/dotcms-layout-body/components/page-error-message/page-error-message.component.d.ts +13 -0
  61. package/next/components/dotcms-layout-body/components/page-error-message/page-error-message.component.d.ts.map +1 -0
  62. package/next/components/dotcms-layout-body/components/row/row.component.d.ts +22 -0
  63. package/next/components/dotcms-layout-body/components/row/row.component.d.ts.map +1 -0
  64. package/next/components/dotcms-layout-body/dotcms-layout-body.component.d.ts +30 -0
  65. package/next/components/dotcms-layout-body/dotcms-layout-body.component.d.ts.map +1 -0
  66. package/next/models/index.d.ts +9 -10
  67. package/next/models/index.d.ts.map +1 -1
  68. package/next/public_api.d.ts +2 -0
  69. package/next/public_api.d.ts.map +1 -1
  70. package/next/store/dotcms.store.d.ts +36 -0
  71. package/next/store/dotcms.store.d.ts.map +1 -0
  72. package/package.json +3 -3
  73. package/esm2022/next/models/dotcms.model.mjs +0 -3
  74. package/next/models/dotcms.model.d.ts +0 -416
  75. package/next/models/dotcms.model.d.ts.map +0 -1
@@ -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/next/models/dotcms.model.ts"],"names":[],"mappings":"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"}