@blocklet/pages-kit 0.4.100 → 0.4.101
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/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/cjs/utils/common.js +8 -0
- package/lib/cjs/utils/property.js +8 -8
- package/lib/cjs/utils/style.js +5 -0
- package/lib/esm/tsconfig.tsbuildinfo +1 -1
- package/lib/esm/utils/common.js +4 -0
- package/lib/esm/utils/property.js +6 -5
- package/lib/esm/utils/style.js +5 -0
- package/lib/types/tsconfig.tsbuildinfo +1 -1
- package/lib/types/utils/common.d.ts +2 -0
- package/lib/types/utils/property.d.ts +0 -1
- package/package.json +1 -1
|
@@ -22,7 +22,6 @@ export declare function mergeComponent({ componentId, getComponent, locale, defa
|
|
|
22
22
|
export declare const RenderNestedComponent = "__RENDER_NESTED_COMPONENT__";
|
|
23
23
|
export declare function safeJSONParse(value: string | Record<string, any>): any;
|
|
24
24
|
export declare function safeYamlParse(value: string | Record<string, any>): any;
|
|
25
|
-
export declare const isBrowserEnv: () => boolean;
|
|
26
25
|
export declare const initDynamicParsePropertyValueHandlers: () => Promise<Record<string, any>>;
|
|
27
26
|
export declare function parsePropertyValue(property: NonNullable<CustomComponent['properties']>[string]['data'], value: any, { locale, defaultLocale, propertyHandlers, }: {
|
|
28
27
|
locale?: string;
|