@pobuca/email-builder 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.
- package/README.md +1 -0
- package/assets/icons/dribbble.png +0 -0
- package/assets/icons/facebook.png +0 -0
- package/assets/icons/github.png +0 -0
- package/assets/icons/instagram.png +0 -0
- package/assets/icons/linkedin.png +0 -0
- package/assets/icons/medium.png +0 -0
- package/assets/icons/pinterest.png +0 -0
- package/assets/icons/snapchat.png +0 -0
- package/assets/icons/soundcloud.png +0 -0
- package/assets/icons/tumblr.png +0 -0
- package/assets/icons/twitter.png +0 -0
- package/assets/icons/vimeo.png +0 -0
- package/assets/icons/web.png +0 -0
- package/assets/icons/xing.png +0 -0
- package/assets/icons/youtube.png +0 -0
- package/bundles/pobuca-email-builder.umd.js +4664 -0
- package/bundles/pobuca-email-builder.umd.js.map +1 -0
- package/bundles/pobuca-email-builder.umd.min.js +2 -0
- package/bundles/pobuca-email-builder.umd.min.js.map +1 -0
- package/esm2015/lib/classes/DefaultEmail.js +53 -0
- package/esm2015/lib/classes/Elements.js +229 -0
- package/esm2015/lib/classes/Structure.js +89 -0
- package/esm2015/lib/components/block/block.component.js +89 -0
- package/esm2015/lib/components/block-settings/block-settings.component.js +53 -0
- package/esm2015/lib/components/builder-container/builder-container.component.js +114 -0
- package/esm2015/lib/components/dialog.component.js +30 -0
- package/esm2015/lib/components/general-settings/general-settings.component.js +25 -0
- package/esm2015/lib/components/import-dialog/import-dialog.component.js +62 -0
- package/esm2015/lib/components/preview.component.js +89 -0
- package/esm2015/lib/components/structure/structure.component.js +163 -0
- package/esm2015/lib/components/structure-settings/structure-settings.component.js +31 -0
- package/esm2015/lib/components/template-list-dialog/template-list-dialog.component.js +45 -0
- package/esm2015/lib/directives/dynamic-component.directive.js +46 -0
- package/esm2015/lib/elements/abstract-block.js +23 -0
- package/esm2015/lib/elements/button/button.component.js +29 -0
- package/esm2015/lib/elements/divider/divider.component.js +30 -0
- package/esm2015/lib/elements/image/image.component.js +54 -0
- package/esm2015/lib/elements/social/social.component.js +42 -0
- package/esm2015/lib/elements/spacer/spacer.component.js +30 -0
- package/esm2015/lib/elements/text-element/text-element.component.js +80 -0
- package/esm2015/lib/groups/align.js +79 -0
- package/esm2015/lib/groups/back-repeat.js +55 -0
- package/esm2015/lib/groups/border.js +102 -0
- package/esm2015/lib/groups/color.js +139 -0
- package/esm2015/lib/groups/direction.js +63 -0
- package/esm2015/lib/groups/font-styles.js +112 -0
- package/esm2015/lib/groups/gaps.js +45 -0
- package/esm2015/lib/groups/line-height.js +68 -0
- package/esm2015/lib/groups/link.js +67 -0
- package/esm2015/lib/groups/margin.js +45 -0
- package/esm2015/lib/groups/padding.js +53 -0
- package/esm2015/lib/groups/upload-image.js +112 -0
- package/esm2015/lib/groups/width-height.js +94 -0
- package/esm2015/lib/interceptors/pb-interceptor.interceptor.js +51 -0
- package/esm2015/lib/interfaces/interfaces.js +13 -0
- package/esm2015/lib/pb-email-builder.component.js +246 -0
- package/esm2015/lib/pb-email-builder.module.js +291 -0
- package/esm2015/lib/pb-email-builder.service.js +134 -0
- package/esm2015/lib/pipes/slugify.pipe.js +39 -0
- package/esm2015/lib/services/internals/pb-email-object-store/pb-email-object-store.service.js +165 -0
- package/esm2015/lib/services/internals/user-interfaces/user-interface.service.js +122 -0
- package/esm2015/lib/services/pb-storage/FreeUsersStorage.class.js +11 -0
- package/esm2015/lib/services/pb-storage/index.js +7 -0
- package/esm2015/lib/services/pb-storage/pb-storage.service.js +79 -0
- package/esm2015/lib/services/user-image-uploader-service/free-users-image-uploader.service.js +26 -0
- package/esm2015/lib/services/user-image-uploader-service/index.js +8 -0
- package/esm2015/lib/services/user-image-uploader-service/paid-users-image-uploader.service.js +30 -0
- package/esm2015/lib/services/user-image-uploader-service/upload-bottom-sheet-dialog/upload-bottom-sheet-dialog.component.js +112 -0
- package/esm2015/lib/services/user-image-uploader-service/upload-image-gallery/upload-image-gallery.component.js +91 -0
- package/esm2015/lib/services/user-image-uploader-service/user-image-uploader.service.js +26 -0
- package/esm2015/lib/services/user-middleware-service/FreeUsersMiddleware.js +31 -0
- package/esm2015/lib/services/user-middleware-service/PaidUsersMiddleware.js +12 -0
- package/esm2015/lib/services/user-middleware-service/index.js +8 -0
- package/esm2015/lib/services/user-middleware-service/pb-middlewares.service.js +195 -0
- package/esm2015/lib/services/user-rest-api-service/free-users-rest-api.service.js +16 -0
- package/esm2015/lib/services/user-rest-api-service/index.js +7 -0
- package/esm2015/lib/services/user-rest-api-service/user-rest-api.service.js +116 -0
- package/esm2015/lib/tokens/private-tokens.js +17 -0
- package/esm2015/lib/tokens/tokens.js +159 -0
- package/esm2015/lib/utils.js +147 -0
- package/esm2015/pobuca-email-builder.js +43 -0
- package/esm2015/public_api.js +26 -0
- package/fesm2015/pobuca-email-builder.js +4335 -0
- package/fesm2015/pobuca-email-builder.js.map +1 -0
- package/lib/classes/DefaultEmail.d.ts +9 -0
- package/lib/classes/Elements.d.ts +62 -0
- package/lib/classes/Structure.d.ts +11 -0
- package/lib/components/block/block.component.d.ts +25 -0
- package/lib/components/block-settings/block-settings.component.d.ts +18 -0
- package/lib/components/builder-container/builder-container.component.d.ts +36 -0
- package/lib/components/dialog.component.d.ts +10 -0
- package/lib/components/general-settings/general-settings.component.d.ts +6 -0
- package/lib/components/import-dialog/import-dialog.component.d.ts +16 -0
- package/lib/components/preview.component.d.ts +18 -0
- package/lib/components/structure/structure.component.d.ts +43 -0
- package/lib/components/structure-settings/structure-settings.component.d.ts +9 -0
- package/lib/components/template-list-dialog/template-list-dialog.component.d.ts +15 -0
- package/lib/directives/dynamic-component.directive.d.ts +13 -0
- package/lib/elements/abstract-block.d.ts +8 -0
- package/lib/elements/button/button.component.d.ts +18 -0
- package/lib/elements/divider/divider.component.d.ts +10 -0
- package/lib/elements/image/image.component.d.ts +19 -0
- package/lib/elements/social/social.component.d.ts +21 -0
- package/lib/elements/spacer/spacer.component.d.ts +5 -0
- package/lib/elements/text-element/text-element.component.d.ts +52 -0
- package/lib/groups/align.d.ts +17 -0
- package/lib/groups/back-repeat.d.ts +8 -0
- package/lib/groups/border.d.ts +13 -0
- package/lib/groups/color.d.ts +26 -0
- package/lib/groups/direction.d.ts +13 -0
- package/lib/groups/font-styles.d.ts +17 -0
- package/lib/groups/gaps.d.ts +7 -0
- package/lib/groups/line-height.d.ts +12 -0
- package/lib/groups/link.d.ts +11 -0
- package/lib/groups/margin.d.ts +8 -0
- package/lib/groups/padding.d.ts +8 -0
- package/lib/groups/upload-image.d.ts +19 -0
- package/lib/groups/width-height.d.ts +19 -0
- package/lib/interceptors/pb-interceptor.interceptor.d.ts +10 -0
- package/lib/interfaces/interfaces.d.ts +422 -0
- package/lib/pb-email-builder.component.d.ts +67 -0
- package/lib/pb-email-builder.module.d.ts +51 -0
- package/lib/pb-email-builder.service.d.ts +83 -0
- package/lib/pipes/slugify.pipe.d.ts +9 -0
- package/lib/services/internals/pb-email-object-store/pb-email-object-store.service.d.ts +50 -0
- package/lib/services/internals/user-interfaces/user-interface.service.d.ts +46 -0
- package/lib/services/pb-storage/FreeUsersStorage.class.d.ts +6 -0
- package/lib/services/pb-storage/index.d.ts +2 -0
- package/lib/services/pb-storage/pb-storage.service.d.ts +54 -0
- package/lib/services/user-image-uploader-service/free-users-image-uploader.service.d.ts +12 -0
- package/lib/services/user-image-uploader-service/index.d.ts +3 -0
- package/lib/services/user-image-uploader-service/paid-users-image-uploader.service.d.ts +14 -0
- package/lib/services/user-image-uploader-service/upload-bottom-sheet-dialog/upload-bottom-sheet-dialog.component.d.ts +28 -0
- package/lib/services/user-image-uploader-service/upload-image-gallery/upload-image-gallery.component.d.ts +27 -0
- package/lib/services/user-image-uploader-service/user-image-uploader.service.d.ts +26 -0
- package/lib/services/user-middleware-service/FreeUsersMiddleware.d.ts +15 -0
- package/lib/services/user-middleware-service/PaidUsersMiddleware.d.ts +7 -0
- package/lib/services/user-middleware-service/index.d.ts +3 -0
- package/lib/services/user-middleware-service/pb-middlewares.service.d.ts +190 -0
- package/lib/services/user-rest-api-service/free-users-rest-api.service.d.ts +10 -0
- package/lib/services/user-rest-api-service/index.d.ts +2 -0
- package/lib/services/user-rest-api-service/user-rest-api.service.d.ts +82 -0
- package/lib/tokens/private-tokens.d.ts +5 -0
- package/lib/tokens/tokens.d.ts +70 -0
- package/lib/utils.d.ts +88 -0
- package/package.json +37 -0
- package/pobuca-email-builder.d.ts +42 -0
- package/pobuca-email-builder.metadata.json +1 -0
- package/public_api.d.ts +16 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { IForRootConf, IStructure } from '../interfaces/interfaces';
|
|
3
|
+
import { TBlocks } from '../classes/Elements';
|
|
4
|
+
/**
|
|
5
|
+
* Some top documentation
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* The default social networks list provided by builder. This list is injected by {@link PB_SOCIAL_NETWORKS}.
|
|
9
|
+
*/
|
|
10
|
+
export declare const PB_DEFAULT_SOCIAL_NETWORKS: string[];
|
|
11
|
+
/**
|
|
12
|
+
* The token that injects [default social networks list]{@link PB_DEFAULT_SOCIAL_NETWORKS}.
|
|
13
|
+
* Use it to add or remove social networks within list.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* {provide: PB_SOCIAL_NETWORKS, useValue: PB_DEFAULT_SOCIAL_NETWORKS.filter(network => !['github', 'instagram'].includes(network)}
|
|
17
|
+
*/
|
|
18
|
+
export declare const PB_SOCIAL_NETWORKS: InjectionToken<string[]>;
|
|
19
|
+
/**
|
|
20
|
+
* The default [Google Fonts]{@link https://fonts.google.com} list provided by builder.
|
|
21
|
+
* This list is injected by {@link PB_GOOGLE_FONTS} token.
|
|
22
|
+
*/
|
|
23
|
+
export declare const PB_DEFAULT_GOOGLE_FONTS: string[];
|
|
24
|
+
/**
|
|
25
|
+
* The token that injects [default google fonts]{@link PB_DEFAULT_GOOGLE_FONTS} list.
|
|
26
|
+
*/
|
|
27
|
+
export declare const PB_GOOGLE_FONTS: InjectionToken<string[]>;
|
|
28
|
+
/**
|
|
29
|
+
* The default Fallback Fonts list provided by builder. This list is injected by {@link PB_FALLBACK_FONTS} token.
|
|
30
|
+
*
|
|
31
|
+
* A fallback font is a font that takes effect in case a [Google Font]{@link PB_DEFAULT_GOOGLE_FONTS} can't be loaded by some email
|
|
32
|
+
* providers.
|
|
33
|
+
*/
|
|
34
|
+
export declare const PB_DEFAULT_FALLBACK_FONTS: string[];
|
|
35
|
+
/**
|
|
36
|
+
* The token that injects {@link PB_DEFAULT_FALLBACK_FONTS} list.
|
|
37
|
+
*/
|
|
38
|
+
export declare const PB_FALLBACK_FONTS: InjectionToken<string[]>;
|
|
39
|
+
/**
|
|
40
|
+
* The default [Structures]{@link IStructure} list. This list is injected by {@link PB_STRUCTURES} token.
|
|
41
|
+
*/
|
|
42
|
+
export declare const PB_DEFAULT_STRUCTURES: IStructure[];
|
|
43
|
+
/**
|
|
44
|
+
* The token that injects {@link PB_DEFAULT_STRUCTURES} list.
|
|
45
|
+
*/
|
|
46
|
+
export declare const PB_STRUCTURES: InjectionToken<IStructure[]>;
|
|
47
|
+
/**
|
|
48
|
+
* The default [Blocks]{@link TBlocks} list. This list is injected by {@link PB_BLOCKS} token.
|
|
49
|
+
*/
|
|
50
|
+
export declare const PB_DEFAULT_BLOCKS: TBlocks[];
|
|
51
|
+
/**
|
|
52
|
+
* The token that injects {@link PB_BLOCKS} list.
|
|
53
|
+
*/
|
|
54
|
+
export declare const PB_BLOCKS: InjectionToken<TBlocks[]>;
|
|
55
|
+
/**
|
|
56
|
+
* Default builder configuration, injected by {@link PB_CONFIG} token. See {@link IForRootConf} for more info.
|
|
57
|
+
*/
|
|
58
|
+
export declare const PB_DEFAULT_CONFIG: IForRootConf;
|
|
59
|
+
/**
|
|
60
|
+
* The token that injects [default builder configurations]{@link PB_DEFAULT_CONFIG}.
|
|
61
|
+
*/
|
|
62
|
+
export declare const PB_CONFIG: InjectionToken<Partial<IForRootConf>>;
|
|
63
|
+
/**
|
|
64
|
+
* The default Storage used by builder. It can be either `localStorage` or `sessionStorage`.
|
|
65
|
+
*/
|
|
66
|
+
export declare const PB_STORAGE_FACTORY: InjectionToken<Storage>;
|
|
67
|
+
/**
|
|
68
|
+
* The default storage to cache the templates list. It can be either `localStorage` or `sessionStorage`.
|
|
69
|
+
*/
|
|
70
|
+
export declare const PB_TEMPLATES_TEMPORARY_STORAGE: InjectionToken<Storage>;
|
package/lib/utils.d.ts
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { IBackground, IBorder, IFont, ILineHeight, IMargin, IPadding, IWidthHeight, TFontWeight } from './interfaces/interfaces';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
/**
|
|
4
|
+
* An alternative lodash cloneDeep function. Use it on your own risk.
|
|
5
|
+
* @param obj Object to be cloned.
|
|
6
|
+
*/
|
|
7
|
+
export declare function cloneDeep<T>(obj?: {}): T;
|
|
8
|
+
/**
|
|
9
|
+
* An alternative lodash isEqual function. Use it on your own risk.
|
|
10
|
+
* @param x Object to be compared
|
|
11
|
+
* @param y the second Object to be compared
|
|
12
|
+
*/
|
|
13
|
+
export declare function isEqual(x: object, y: object): boolean;
|
|
14
|
+
/**
|
|
15
|
+
* An alternative lodash defaultsDeep function. Use it on your own risk.
|
|
16
|
+
* @param to The object with default properties
|
|
17
|
+
* @param sources An array of objects with default properties
|
|
18
|
+
*/
|
|
19
|
+
export declare function defaultsDeep<T>(to?: T, ...sources: T[]): T;
|
|
20
|
+
/**
|
|
21
|
+
* Create CSS border styles based on {@link IBorder} object.
|
|
22
|
+
* @param border Border object.
|
|
23
|
+
* @param rule Most likely you won't need it, but for some cases, it can be changed. Default is: `border`.
|
|
24
|
+
*
|
|
25
|
+
* @return CSS Border styles.
|
|
26
|
+
*/
|
|
27
|
+
export declare function createBorder(border: IBorder, rule?: string): {
|
|
28
|
+
[p: string]: string;
|
|
29
|
+
borderRadius: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Create CSS padding styles based on {@link IPadding} object.
|
|
33
|
+
* @param padding Padding object.
|
|
34
|
+
* @param rule Most likely you won't need it, but for some cases, it can be changed. Default is: `padding`.
|
|
35
|
+
*/
|
|
36
|
+
export declare function createPadding(padding: IPadding, rule?: string): {
|
|
37
|
+
[p: string]: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Create CSS margin styles based on {@link IMargin} object.
|
|
41
|
+
* @param margin Margin object.
|
|
42
|
+
*/
|
|
43
|
+
export declare function createMargin(margin: IMargin): {
|
|
44
|
+
margin: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Create CSS font styles based on {@link IFont} object.
|
|
48
|
+
* @param font Font object.
|
|
49
|
+
*/
|
|
50
|
+
export declare function createFont(font: IFont): {
|
|
51
|
+
fontFamily: string;
|
|
52
|
+
fontSize: string;
|
|
53
|
+
fontStyle: string;
|
|
54
|
+
fontWeight: number | TFontWeight;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Create CSS line-height styles based on {@link ILineHeight} object.
|
|
58
|
+
* @param lineHeight Line-height object.
|
|
59
|
+
*/
|
|
60
|
+
export declare function createLineHeight(lineHeight: ILineHeight): {
|
|
61
|
+
lineHeight: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Create background styles based on {@link IBackground} object.
|
|
65
|
+
* @param background Background object.
|
|
66
|
+
*/
|
|
67
|
+
export declare function createBackground(background: IBackground): string;
|
|
68
|
+
/**
|
|
69
|
+
* Create Width or Height styles based on {@link IWidthHeight} object.
|
|
70
|
+
* @param widthHeight Width or Height object.
|
|
71
|
+
*/
|
|
72
|
+
export declare function createWidthHeight(widthHeight: IWidthHeight): string;
|
|
73
|
+
/**
|
|
74
|
+
* Convert bytes to KB-YB.
|
|
75
|
+
* @param bytes Bytes number.
|
|
76
|
+
* @param decimals How many decimals to be used. Default: 2.
|
|
77
|
+
*/
|
|
78
|
+
export declare function bytesToSize(bytes: number, decimals?: number): string;
|
|
79
|
+
/**
|
|
80
|
+
* Get a Social Icon path.
|
|
81
|
+
* @param path Icon path. Ex: facebook.png
|
|
82
|
+
*/
|
|
83
|
+
export declare function getAssetByPath(path: string): string;
|
|
84
|
+
/**
|
|
85
|
+
* A simple and powerful function that allows to create an `Observable` only when it needs to be used.
|
|
86
|
+
* @param args Arguments to send to new Observable.
|
|
87
|
+
*/
|
|
88
|
+
export declare function deferOf<T>(...args: T[]): Observable<T>;
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pobuca/email-builder",
|
|
3
|
+
"description": "Email Builder",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"homepage": "https://pobuca.com",
|
|
7
|
+
"peerDependencies": {
|
|
8
|
+
"@angular/common": ">=9",
|
|
9
|
+
"@angular/localize": ">=9",
|
|
10
|
+
"@angular/compiler": ">=9",
|
|
11
|
+
"@angular/core": ">=9",
|
|
12
|
+
"@angular/flex-layout": ">=9",
|
|
13
|
+
"@angular/forms": ">=9",
|
|
14
|
+
"@angular/material": ">=9",
|
|
15
|
+
"@angular/platform-browser": ">=9",
|
|
16
|
+
"@angular/platform-browser-dynamic": ">=9",
|
|
17
|
+
"ngx-color": "^5.1.4",
|
|
18
|
+
"ngx-quill": "^12.0.1",
|
|
19
|
+
"quill": "^1.3.7",
|
|
20
|
+
"recursive-diff": "^1.0.7"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"tslib": "^2.0.0"
|
|
24
|
+
},
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "Pobuca",
|
|
27
|
+
"url": "https://pobuca.com"
|
|
28
|
+
},
|
|
29
|
+
"main": "bundles/pobuca-email-builder.umd.js",
|
|
30
|
+
"module": "fesm2015/pobuca-email-builder.js",
|
|
31
|
+
"es2015": "fesm2015/pobuca-email-builder.js",
|
|
32
|
+
"esm2015": "esm2015/pobuca-email-builder.js",
|
|
33
|
+
"fesm2015": "fesm2015/pobuca-email-builder.js",
|
|
34
|
+
"typings": "pobuca-email-builder.d.ts",
|
|
35
|
+
"metadata": "pobuca-email-builder.metadata.json",
|
|
36
|
+
"sideEffects": false
|
|
37
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
5
|
+
export { BlockSettingsComponent as ɵbd } from './lib/components/block-settings/block-settings.component';
|
|
6
|
+
export { BlockComponent as ɵf } from './lib/components/block/block.component';
|
|
7
|
+
export { BuilderContainerComponent as ɵo } from './lib/components/builder-container/builder-container.component';
|
|
8
|
+
export { ConfirmDialogComponent as ɵbb } from './lib/components/dialog.component';
|
|
9
|
+
export { GeneralSettingsComponent as ɵbf } from './lib/components/general-settings/general-settings.component';
|
|
10
|
+
export { ImportDialogComponent as ɵbj } from './lib/components/import-dialog/import-dialog.component';
|
|
11
|
+
export { StructureSettingsComponent as ɵbe } from './lib/components/structure-settings/structure-settings.component';
|
|
12
|
+
export { StructureComponent as ɵe } from './lib/components/structure/structure.component';
|
|
13
|
+
export { TemplateListDialogComponent as ɵbi } from './lib/components/template-list-dialog/template-list-dialog.component';
|
|
14
|
+
export { DynamicComponentDirective as ɵg } from './lib/directives/dynamic-component.directive';
|
|
15
|
+
export { AbstractBlock as ɵi } from './lib/elements/abstract-block';
|
|
16
|
+
export { ButtonComponent as ɵk } from './lib/elements/button/button.component';
|
|
17
|
+
export { DividerComponent as ɵl } from './lib/elements/divider/divider.component';
|
|
18
|
+
export { ImageComponent as ɵj } from './lib/elements/image/image.component';
|
|
19
|
+
export { SocialComponent as ɵn } from './lib/elements/social/social.component';
|
|
20
|
+
export { SpacerComponent as ɵm } from './lib/elements/spacer/spacer.component';
|
|
21
|
+
export { TextElementComponent as ɵh } from './lib/elements/text-element/text-element.component';
|
|
22
|
+
export { AlignComponent as ɵy } from './lib/groups/align';
|
|
23
|
+
export { BackRepatComponent as ɵba } from './lib/groups/back-repeat';
|
|
24
|
+
export { BorderComponent as ɵv } from './lib/groups/border';
|
|
25
|
+
export { ColorComponent as ɵw } from './lib/groups/color';
|
|
26
|
+
export { DirectionComponent as ɵz } from './lib/groups/direction';
|
|
27
|
+
export { FontStylesComponent as ɵp } from './lib/groups/font-styles';
|
|
28
|
+
export { GapsComponent as ɵs } from './lib/groups/gaps';
|
|
29
|
+
export { LineHeightComponent as ɵt } from './lib/groups/line-height';
|
|
30
|
+
export { LinkComponent as ɵx } from './lib/groups/link';
|
|
31
|
+
export { MarginComponent as ɵr } from './lib/groups/margin';
|
|
32
|
+
export { PaddingComponent as ɵq } from './lib/groups/padding';
|
|
33
|
+
export { ImageUploadComponent as ɵbc } from './lib/groups/upload-image';
|
|
34
|
+
export { WidthHeightComponent as ɵu } from './lib/groups/width-height';
|
|
35
|
+
export { IpInterceptorInterceptor as ɵbk } from './lib/interceptors/pb-interceptor.interceptor';
|
|
36
|
+
export { PbEmailObjectStoreService as ɵa } from './lib/services/internals/pb-email-object-store/pb-email-object-store.service';
|
|
37
|
+
export { PbUserInterfaceService as ɵb } from './lib/services/internals/user-interfaces/user-interface.service';
|
|
38
|
+
export { FreeUsersPbStorage as ɵd } from './lib/services/pb-storage';
|
|
39
|
+
export { UploadBottomSheetDialogComponent as ɵbg } from './lib/services/user-image-uploader-service/upload-bottom-sheet-dialog/upload-bottom-sheet-dialog.component';
|
|
40
|
+
export { UploadImageGalleryComponent as ɵbh } from './lib/services/user-image-uploader-service/upload-image-gallery/upload-image-gallery.component';
|
|
41
|
+
export { FreeUsersRestApi as ɵc } from './lib/services/user-rest-api-service';
|
|
42
|
+
export { LIBRARY_IS_PRO as ɵbl } from './lib/tokens/private-tokens';
|