@contentful/experiences-core 1.9.0-dev-20240628T2207-8c77a33.0 → 1.9.0-dev-20240628T2235-7a4f71f.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/package.json +3 -3
- package/dist/communication/sendMessage.d.ts +0 -5
- package/dist/constants.d.ts +0 -112
- package/dist/constants.js +0 -150
- package/dist/constants.js.map +0 -1
- package/dist/deep-binding/DeepReference.d.ts +0 -27
- package/dist/definitions/components.d.ts +0 -9
- package/dist/definitions/styles.d.ts +0 -12
- package/dist/entity/EditorEntityStore.d.ts +0 -34
- package/dist/entity/EditorModeEntityStore.d.ts +0 -29
- package/dist/entity/EntityStore.d.ts +0 -69
- package/dist/entity/EntityStoreBase.d.ts +0 -49
- package/dist/enums.d.ts +0 -6
- package/dist/exports.d.ts +0 -3
- package/dist/exports.js +0 -2
- package/dist/exports.js.map +0 -1
- package/dist/fetchers/createExperience.d.ts +0 -20
- package/dist/fetchers/fetchById.d.ts +0 -20
- package/dist/fetchers/fetchBySlug.d.ts +0 -20
- package/dist/index.d.ts +0 -27
- package/dist/index.js +0 -3370
- package/dist/index.js.map +0 -1
- package/dist/registries/breakpointsRegistry.d.ts +0 -20
- package/dist/registries/designTokenRegistry.d.ts +0 -13
- package/dist/types.d.ts +0 -451
- package/dist/utils/breakpoints.d.ts +0 -12
- package/dist/utils/components.d.ts +0 -5
- package/dist/utils/domValues.d.ts +0 -15
- package/dist/utils/isLink.d.ts +0 -5
- package/dist/utils/isLinkToAsset.d.ts +0 -5
- package/dist/utils/pathSchema.d.ts +0 -31
- package/dist/utils/resolveHyperlinkPattern.d.ts +0 -17
- package/dist/utils/styleUtils/ssrStyles.d.ts +0 -51
- package/dist/utils/styleUtils/stylesUtils.d.ts +0 -21
- package/dist/utils/supportedModes.d.ts +0 -5
- package/dist/utils/transformers/transformBoundContentValue.d.ts +0 -8
- package/dist/utils/typeguards.d.ts +0 -6
- package/dist/utils/utils.d.ts +0 -46
- package/dist/utils/validations.d.ts +0 -10
package/dist/index.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export { isComponentAllowedOnRoot, isContentfulStructureComponent, isStructureWithRelativeHeight } from './utils/components.js';
|
|
2
|
-
export { findOutermostCoordinates, getElementCoordinates } from './utils/domValues.js';
|
|
3
|
-
export { doesMismatchMessageSchema, tryParseMessage, validateExperienceBuilderConfig } from './utils/validations.js';
|
|
4
|
-
export { buildCfStyles, buildStyleTag, calculateNodeDefaultHeight, toCSSAttribute } from './utils/styleUtils/stylesUtils.js';
|
|
5
|
-
export { detachExperienceStyles, flattenDesignTokenRegistry, indexByBreakpoint, isCfStyleAttribute, maybePopulateDesignTokenValue, resolveBackgroundImageBinding, toCSSString, toMediaQuery } from './utils/styleUtils/ssrStyles.js';
|
|
6
|
-
export { transformBoundContentValue } from './utils/transformers/transformBoundContentValue.js';
|
|
7
|
-
export { checkIsAssembly, checkIsAssemblyDefinition, checkIsAssemblyEntry, checkIsAssemblyNode, generateRandomId, getDataFromTree, getInsertionData } from './utils/utils.js';
|
|
8
|
-
export { isExperienceEntry } from './utils/typeguards.js';
|
|
9
|
-
export { supportedModes } from './utils/supportedModes.js';
|
|
10
|
-
export { MEDIA_QUERY_REGEXP, getActiveBreakpointIndex, getFallbackBreakpointIndex, getValueForBreakpoint, mediaQueryMatcher } from './utils/breakpoints.js';
|
|
11
|
-
export { isLinkToAsset } from './utils/isLinkToAsset.js';
|
|
12
|
-
export { isLink } from './utils/isLink.js';
|
|
13
|
-
export { Fieldset, UnresolvedFieldset, isDeepPath, lastPathNamedSegmentEq, parseDataSourcePathIntoFieldset, parseDataSourcePathWithL1DeepBindings } from './utils/pathSchema.js';
|
|
14
|
-
export { addLocale, buildTemplate, getTemplateValue, resolveHyperlinkPattern } from './utils/resolveHyperlinkPattern.js';
|
|
15
|
-
export { columnsDefinition, containerDefinition, dividerDefinition, sectionDefinition, singleColumnDefinition } from './definitions/components.js';
|
|
16
|
-
export { builtInStyles, columnsBuiltInStyles, containerBuiltInStyles, dividerBuiltInStyles, optionalBuiltInStyles, sectionBuiltInStyles, singleColumnBuiltInStyles } from './definitions/styles.js';
|
|
17
|
-
export { EditorModeEntityStore } from './entity/EditorModeEntityStore.js';
|
|
18
|
-
export { EntityStore } from './entity/EntityStore.js';
|
|
19
|
-
export { EntityStoreBase } from './entity/EntityStoreBase.js';
|
|
20
|
-
export { sendMessage } from './communication/sendMessage.js';
|
|
21
|
-
export { VisualEditorMode } from './enums.js';
|
|
22
|
-
export { fetchBySlug } from './fetchers/fetchBySlug.js';
|
|
23
|
-
export { fetchById } from './fetchers/fetchById.js';
|
|
24
|
-
export { createExperience } from './fetchers/createExperience.js';
|
|
25
|
-
export { defineDesignTokens, designTokensRegistry, getDesignTokenRegistration, resetDesignTokenRegistry } from './registries/designTokenRegistry.js';
|
|
26
|
-
export { breakpointsRegistry, defineBreakpoints, getBreakpointRegistration, resetBreakpointsRegistry, runBreakpointsValidation } from './registries/breakpointsRegistry.js';
|
|
27
|
-
export { DeepReference, gatherDeepReferencesFromExperienceEntry, gatherDeepReferencesFromTree } from './deep-binding/DeepReference.js';
|