@useinsider/guido 2.0.0-beta.1c331b8 → 2.0.0-beta.1f72712
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/dist/extensions/Blocks/Recommendation/block.js +40 -6
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +64 -0
- package/dist/extensions/Blocks/Recommendation/constants/layout.js +9 -4
- package/dist/extensions/Blocks/Recommendation/constants/selectors.js +17 -9
- package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +48 -54
- package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +42 -36
- package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +51 -27
- package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +146 -73
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +49 -35
- package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +23 -13
- package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +41 -41
- package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +27 -16
- package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +79 -67
- package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.js +1 -1
- package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.js +3 -3
- package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +85 -79
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +8 -4
- package/dist/extensions/Blocks/Recommendation/services/configService.js +239 -0
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +30 -28
- package/dist/extensions/Blocks/Recommendation/templates/horizontal/elementRenderer.js +49 -25
- package/dist/extensions/Blocks/Recommendation/templates/horizontal/template.js +18 -19
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +44 -101
- package/dist/extensions/Blocks/Recommendation/templates/vertical/elementRenderer.js +60 -35
- package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
- package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
- package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
- package/dist/extensions/Blocks/common-control.js +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +214 -157
- package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/block.d.ts +34 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +3 -2
- package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +10 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +12 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +3 -1
- package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +13 -1
- package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +30 -1
- package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +19 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +9 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +4 -2
- package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +8 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +19 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +13 -2
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
- package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +154 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
- package/package.json +1 -1
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Node Configuration Types for Recommendation Block
|
|
3
|
+
*
|
|
4
|
+
* This module defines the TypeScript interfaces for configuration data
|
|
5
|
+
* stored via Stripo's `setNodeConfig`/`getNodeConfig` APIs.
|
|
6
|
+
*
|
|
7
|
+
* The configuration persists with the template HTML, solving:
|
|
8
|
+
* - Configuration loss on save/reload
|
|
9
|
+
* - Multi-block independence
|
|
10
|
+
* - Undo/redo integration
|
|
11
|
+
* @see https://plugin.stripo.email/extensions/reference/blocks/Block
|
|
12
|
+
*/
|
|
13
|
+
import type { Filter } from '@@/Types/recommendation';
|
|
14
|
+
/**
|
|
15
|
+
* Currency display and formatting settings
|
|
16
|
+
*/
|
|
17
|
+
export interface CurrencyConfig {
|
|
18
|
+
/** Currency code (e.g., 'USD', 'EUR', 'TRY') */
|
|
19
|
+
code: string;
|
|
20
|
+
/** Currency symbol (e.g., '$', '€', '₺') */
|
|
21
|
+
symbol: string;
|
|
22
|
+
/** Symbol position relative to price */
|
|
23
|
+
alignment: 'before' | 'after';
|
|
24
|
+
/** Number of decimal places (-1 for no formatting) */
|
|
25
|
+
decimalCount: number;
|
|
26
|
+
/** Character used for decimal separation */
|
|
27
|
+
decimalSeparator: '.' | ',';
|
|
28
|
+
/** Character used for thousands separation */
|
|
29
|
+
thousandSeparator: '.' | ',' | ' ' | '';
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Configuration for omnibus price/discount text wrappers
|
|
33
|
+
* Used to display EU Omnibus Directive compliant pricing
|
|
34
|
+
*/
|
|
35
|
+
export interface OmnibusTextConfig {
|
|
36
|
+
/** Text to prepend (e.g., 'Lowest 30-day price: ') */
|
|
37
|
+
textBefore: string;
|
|
38
|
+
/** Text to append */
|
|
39
|
+
textAfter: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Complete configuration schema for Recommendation Block
|
|
43
|
+
*
|
|
44
|
+
* This interface combines:
|
|
45
|
+
* - Legacy `esd-dev-product-config` structure patterns
|
|
46
|
+
* - Current data-attribute based settings
|
|
47
|
+
* - Campaign data that was previously in Pinia store
|
|
48
|
+
*
|
|
49
|
+
* All properties are persisted with the template via `setNodeConfig`.
|
|
50
|
+
*/
|
|
51
|
+
export interface RecommendationNodeConfig {
|
|
52
|
+
/**
|
|
53
|
+
* Recommendation algorithm/strategy
|
|
54
|
+
* @example 'mostPopular', 'complementaryItems', 'manualMerchandising'
|
|
55
|
+
*/
|
|
56
|
+
strategy: string;
|
|
57
|
+
/**
|
|
58
|
+
* Product IDs for manual merchandising strategy
|
|
59
|
+
* Only used when strategy === 'manualMerchandising'
|
|
60
|
+
*/
|
|
61
|
+
productIds: string[];
|
|
62
|
+
/**
|
|
63
|
+
* Number of products to fetch from API
|
|
64
|
+
* Stored as string for consistency with API params
|
|
65
|
+
*/
|
|
66
|
+
size: string;
|
|
67
|
+
/**
|
|
68
|
+
* Whether to randomize product order on each load
|
|
69
|
+
*/
|
|
70
|
+
shuffleProducts: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Locale/language for product data
|
|
73
|
+
* @example 'en_US', 'tr_TR', 'de_DE'
|
|
74
|
+
*/
|
|
75
|
+
language: string;
|
|
76
|
+
/**
|
|
77
|
+
* Currency display and formatting configuration
|
|
78
|
+
*/
|
|
79
|
+
currency: CurrencyConfig;
|
|
80
|
+
/**
|
|
81
|
+
* Product filters for narrowing recommendations
|
|
82
|
+
* Uses existing Filter interface from recommendation types
|
|
83
|
+
*/
|
|
84
|
+
filters: Filter[];
|
|
85
|
+
/**
|
|
86
|
+
* Layout orientation
|
|
87
|
+
* - 'vertical': Products in a grid, attributes aligned across products
|
|
88
|
+
* - 'horizontal': Products in rows, each product is a full-width card
|
|
89
|
+
*/
|
|
90
|
+
layout: 'vertical' | 'horizontal';
|
|
91
|
+
/**
|
|
92
|
+
* Number of products per row (vertical layout only)
|
|
93
|
+
*/
|
|
94
|
+
cardsInRow: number;
|
|
95
|
+
/**
|
|
96
|
+
* Horizontal spacing between product cards in pixels (vertical layout only)
|
|
97
|
+
*/
|
|
98
|
+
columnSpacing: number;
|
|
99
|
+
/**
|
|
100
|
+
* Vertical spacing between product rows in pixels
|
|
101
|
+
*/
|
|
102
|
+
rowSpacing: number;
|
|
103
|
+
/**
|
|
104
|
+
* Order of card elements from top to bottom
|
|
105
|
+
* Array of ATTR_PRODUCT_* constants
|
|
106
|
+
* @example ['productImage', 'productName', 'productPrice', 'productButton']
|
|
107
|
+
*/
|
|
108
|
+
composition: string[];
|
|
109
|
+
/**
|
|
110
|
+
* Visibility flags for each card element
|
|
111
|
+
* Keys are ATTR_PRODUCT_* constants
|
|
112
|
+
*/
|
|
113
|
+
visibility: Record<string, boolean>;
|
|
114
|
+
/**
|
|
115
|
+
* Omnibus price text configuration
|
|
116
|
+
* For EU Omnibus Directive compliance
|
|
117
|
+
*/
|
|
118
|
+
omnibusPrice: OmnibusTextConfig;
|
|
119
|
+
/**
|
|
120
|
+
* Omnibus discount text configuration
|
|
121
|
+
* For EU Omnibus Directive compliance
|
|
122
|
+
*/
|
|
123
|
+
omnibusDiscount: OmnibusTextConfig;
|
|
124
|
+
/**
|
|
125
|
+
* Whether to trim long product names with ellipsis
|
|
126
|
+
*/
|
|
127
|
+
textTrimming: boolean;
|
|
128
|
+
/**
|
|
129
|
+
* Configuration version for future migrations
|
|
130
|
+
* Increment when making breaking changes to schema
|
|
131
|
+
*/
|
|
132
|
+
configVersion: number;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Partial configuration for updates
|
|
136
|
+
* All fields are optional to support partial updates via `updateConfig`
|
|
137
|
+
*/
|
|
138
|
+
export type PartialNodeConfig = Partial<RecommendationNodeConfig>;
|
|
139
|
+
/**
|
|
140
|
+
* Deep partial for nested objects
|
|
141
|
+
*/
|
|
142
|
+
export type DeepPartialNodeConfig = {
|
|
143
|
+
[K in keyof RecommendationNodeConfig]?: RecommendationNodeConfig[K] extends object ? Partial<RecommendationNodeConfig[K]> : RecommendationNodeConfig[K];
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* Check if an object is a valid RecommendationNodeConfig
|
|
147
|
+
* Used for migration detection and validation
|
|
148
|
+
*/
|
|
149
|
+
export declare function isValidNodeConfig(obj: unknown): obj is RecommendationNodeConfig;
|
|
150
|
+
/**
|
|
151
|
+
* Check if a node config has the minimum required fields
|
|
152
|
+
* Used to detect legacy templates that need migration
|
|
153
|
+
*/
|
|
154
|
+
export declare function hasMinimalConfig(obj: unknown): boolean;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Price Formatting Utilities
|
|
3
|
+
*
|
|
4
|
+
* Provides functions for formatting prices according to currency settings.
|
|
5
|
+
* Used to format prices displayed in recommendation product cards.
|
|
6
|
+
*/
|
|
7
|
+
import type { CurrencyConfig } from '../types/nodeConfig';
|
|
8
|
+
/**
|
|
9
|
+
* Options for formatting a price
|
|
10
|
+
*/
|
|
11
|
+
export interface FormatPriceOptions {
|
|
12
|
+
/** The numeric price value */
|
|
13
|
+
price: number;
|
|
14
|
+
/** Currency configuration */
|
|
15
|
+
currency: CurrencyConfig;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Formats a numeric price according to currency settings
|
|
19
|
+
* @example
|
|
20
|
+
* // Returns: "$ 1,999.99"
|
|
21
|
+
* formatPrice({ price: 1999.99, currency: currencyConfig })
|
|
22
|
+
* @param options - Formatting options
|
|
23
|
+
* @returns Formatted price string
|
|
24
|
+
*/
|
|
25
|
+
export declare function formatPrice(options: FormatPriceOptions): string;
|
|
26
|
+
/**
|
|
27
|
+
* Parses a formatted price string back to a number
|
|
28
|
+
* Useful for extracting numeric values from formatted price displays
|
|
29
|
+
* @param formattedPrice - The formatted price string
|
|
30
|
+
* @param currency - Currency configuration for parsing
|
|
31
|
+
* @returns Parsed numeric value or NaN if parsing fails
|
|
32
|
+
*/
|
|
33
|
+
export declare function parseFormattedPrice(formattedPrice: string, currency: CurrencyConfig): number;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Style Preserver Utility
|
|
3
|
+
*
|
|
4
|
+
* Captures and restores element styles during block regeneration.
|
|
5
|
+
* This ensures user styling is preserved when:
|
|
6
|
+
* - Layout changes (vertical <-> horizontal)
|
|
7
|
+
* - Cards per row changes
|
|
8
|
+
* - Composition order changes
|
|
9
|
+
*
|
|
10
|
+
* Works with the node config system to provide complete style persistence.
|
|
11
|
+
*/
|
|
12
|
+
import type { ImmutableHtmlNode } from '@stripoinc/ui-editor-extensions';
|
|
13
|
+
import { ModificationDescription } from '@stripoinc/ui-editor-extensions';
|
|
14
|
+
/**
|
|
15
|
+
* Style properties that can be captured for text elements
|
|
16
|
+
*/
|
|
17
|
+
export interface TextElementStyles {
|
|
18
|
+
fontSize?: string;
|
|
19
|
+
fontFamily?: string;
|
|
20
|
+
fontWeight?: string;
|
|
21
|
+
fontStyle?: string;
|
|
22
|
+
color?: string;
|
|
23
|
+
textAlign?: string;
|
|
24
|
+
lineHeight?: string;
|
|
25
|
+
textDecoration?: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Style properties for button elements
|
|
29
|
+
*/
|
|
30
|
+
export interface ButtonElementStyles extends TextElementStyles {
|
|
31
|
+
backgroundColor?: string;
|
|
32
|
+
borderRadius?: string;
|
|
33
|
+
border?: string;
|
|
34
|
+
padding?: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Style properties for image elements
|
|
38
|
+
*/
|
|
39
|
+
export interface ImageElementStyles {
|
|
40
|
+
width?: string;
|
|
41
|
+
height?: string;
|
|
42
|
+
maxWidth?: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Complete captured styles for a recommendation block
|
|
46
|
+
*/
|
|
47
|
+
export interface CapturedStyles {
|
|
48
|
+
/** Product name text styles */
|
|
49
|
+
name: TextElementStyles;
|
|
50
|
+
/** Current price text styles */
|
|
51
|
+
price: TextElementStyles;
|
|
52
|
+
/** Original/old price text styles */
|
|
53
|
+
oldPrice: TextElementStyles;
|
|
54
|
+
/** Omnibus price text styles */
|
|
55
|
+
omnibusPrice: TextElementStyles;
|
|
56
|
+
/** Omnibus discount text styles */
|
|
57
|
+
omnibusDiscount: TextElementStyles;
|
|
58
|
+
/** CTA button styles */
|
|
59
|
+
button: ButtonElementStyles;
|
|
60
|
+
/** Product image styles */
|
|
61
|
+
image: ImageElementStyles;
|
|
62
|
+
/** Card background color */
|
|
63
|
+
cardBackgroundColor: string | null;
|
|
64
|
+
/** Column spacing in pixels */
|
|
65
|
+
columnSpacing: number;
|
|
66
|
+
/** Row spacing in pixels */
|
|
67
|
+
rowSpacing: number;
|
|
68
|
+
/** Element composition order */
|
|
69
|
+
composition: string[];
|
|
70
|
+
/** Element visibility flags */
|
|
71
|
+
visibility: Record<string, boolean>;
|
|
72
|
+
}
|
|
73
|
+
type DocumentModifier = {
|
|
74
|
+
modifyHtml: (node: ImmutableHtmlNode) => {
|
|
75
|
+
setStyle: (prop: string, value: string) => DocumentModifier;
|
|
76
|
+
};
|
|
77
|
+
apply: (description: ModificationDescription) => void;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Capture all styles from a recommendation block
|
|
81
|
+
*
|
|
82
|
+
* Call this BEFORE any operation that regenerates the block HTML.
|
|
83
|
+
* The captured styles can then be restored after regeneration.
|
|
84
|
+
* @example
|
|
85
|
+
* // Before layout change
|
|
86
|
+
* const styles = captureStyles(this.currentNode);
|
|
87
|
+
*
|
|
88
|
+
* // ... regenerate block HTML ...
|
|
89
|
+
*
|
|
90
|
+
* // After regeneration
|
|
91
|
+
* restoreStyles(this.currentNode, this.api.getDocumentModifier(), styles);
|
|
92
|
+
* @param node - The block node to capture styles from
|
|
93
|
+
* @returns Complete captured styles object
|
|
94
|
+
*/
|
|
95
|
+
export declare function captureStyles(node: ImmutableHtmlNode | null | undefined): CapturedStyles;
|
|
96
|
+
/**
|
|
97
|
+
* Restore captured styles to a regenerated block
|
|
98
|
+
*
|
|
99
|
+
* Call this AFTER regenerating block HTML to reapply user styling.
|
|
100
|
+
* @example
|
|
101
|
+
* restoreStyles(this.currentNode, this.api.getDocumentModifier(), capturedStyles);
|
|
102
|
+
* @param node - The block node to restore styles to
|
|
103
|
+
* @param modifier - Document modifier for applying changes
|
|
104
|
+
* @param styles - Previously captured styles
|
|
105
|
+
*/
|
|
106
|
+
export declare function restoreStyles(node: ImmutableHtmlNode | null | undefined, modifier: DocumentModifier, styles: CapturedStyles): void;
|
|
107
|
+
/**
|
|
108
|
+
* Check if styles have meaningful content worth restoring
|
|
109
|
+
* @param styles - Captured styles to check
|
|
110
|
+
* @returns True if styles contain restorable content
|
|
111
|
+
*/
|
|
112
|
+
export declare function hasRestorableStyles(styles: CapturedStyles): boolean;
|
|
113
|
+
export {};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Node Type Guards and Tag Name Utilities
|
|
3
|
+
*
|
|
4
|
+
* Provides type-safe utilities for working with ImmutableHtmlNode.
|
|
5
|
+
* Handles both standard DOM properties and Stripo's custom methods.
|
|
6
|
+
*/
|
|
7
|
+
import type { ImmutableHtmlNode } from '@stripoinc/ui-editor-extensions';
|
|
8
|
+
/** Interface for nodes with standard tagName property */
|
|
9
|
+
interface NodeWithTagName {
|
|
10
|
+
tagName: string;
|
|
11
|
+
}
|
|
12
|
+
/** Interface for nodes with getStyle method */
|
|
13
|
+
export interface NodeWithGetStyle {
|
|
14
|
+
getStyle: (property: string) => string | null | undefined;
|
|
15
|
+
}
|
|
16
|
+
/** Interface for nodes with parent method */
|
|
17
|
+
export interface NodeWithParent {
|
|
18
|
+
parent: () => ImmutableHtmlNode | null;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Type guard to check if a node has getStyle method
|
|
22
|
+
* @param node - The node to check
|
|
23
|
+
*/
|
|
24
|
+
export declare function hasGetStyle(node: unknown): node is NodeWithGetStyle;
|
|
25
|
+
/**
|
|
26
|
+
* Type guard to check if a node has parent method
|
|
27
|
+
* @param node - The node to check
|
|
28
|
+
*/
|
|
29
|
+
export declare function hasParent(node: unknown): node is NodeWithParent;
|
|
30
|
+
/**
|
|
31
|
+
* Type guard to check if a node is a TD element
|
|
32
|
+
* @param node - The node to check
|
|
33
|
+
*/
|
|
34
|
+
export declare function isTdNode(node: unknown): node is ImmutableHtmlNode & NodeWithTagName;
|
|
35
|
+
/**
|
|
36
|
+
* Safely retrieves a style value from a node
|
|
37
|
+
* @param node - The node to get the style from
|
|
38
|
+
* @param property - The CSS property name
|
|
39
|
+
* @returns The style value or null if not accessible
|
|
40
|
+
*/
|
|
41
|
+
export declare function safeGetStyle(node: ImmutableHtmlNode | null, property: string): string | null | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Safely retrieves the parent element of a node
|
|
44
|
+
* @param node - The node to get the parent from
|
|
45
|
+
* @returns The parent node or null if not accessible
|
|
46
|
+
*/
|
|
47
|
+
export declare function safeGetParent(node: ImmutableHtmlNode | null): ImmutableHtmlNode | null;
|
|
48
|
+
/**
|
|
49
|
+
* Safely retrieves the tag name from a node.
|
|
50
|
+
* Handles both standard DOM tagName property and Stripo's getTagName() method.
|
|
51
|
+
* @param node - The node to get the tag name from
|
|
52
|
+
* @param defaultValue - Default value if tag name cannot be determined (default: 'UNKNOWN')
|
|
53
|
+
* @returns The uppercase tag name
|
|
54
|
+
*/
|
|
55
|
+
export declare function getTagName(node: ImmutableHtmlNode | null | undefined, defaultValue?: string): string;
|
|
56
|
+
/**
|
|
57
|
+
* Checks if a tag name represents a table cell element.
|
|
58
|
+
* Includes standard TD and Stripo's custom block types (BLOCK_IMAGE, BLOCK_BUTTON).
|
|
59
|
+
* @param tagName - The tag name to check (case-insensitive)
|
|
60
|
+
* @returns True if the tag represents a table cell
|
|
61
|
+
*/
|
|
62
|
+
export declare function isTableCellTag(tagName: string): boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Checks if a node is a table cell element.
|
|
65
|
+
* Combines getTagName and isTableCellTag for convenience.
|
|
66
|
+
* @param node - The node to check
|
|
67
|
+
* @returns True if the node is a table cell element
|
|
68
|
+
*/
|
|
69
|
+
export declare function isTableCellNode(node: ImmutableHtmlNode | null | undefined): boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Gets the appropriate CSS display value for showing a table element.
|
|
72
|
+
* Table cells use 'table-cell', table rows use 'table-row'.
|
|
73
|
+
* @param node - The table element node
|
|
74
|
+
* @returns The CSS display value ('table-cell' or 'table-row')
|
|
75
|
+
*/
|
|
76
|
+
export declare function getTableDisplayValue(node: ImmutableHtmlNode | null | undefined): 'table-cell' | 'table-row';
|
|
77
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useinsider/guido",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.1f72712",
|
|
4
4
|
"description": "Guido is a Vue + TypeScript wrapper for Email Plugin. Easily embed the email editor in your Vue applications.",
|
|
5
5
|
"main": "./dist/guido.umd.cjs",
|
|
6
6
|
"module": "./dist/library.js",
|