@fox-js/foxui-pc 4.0.1-26 → 4.0.1-28
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/index.cjs.js +3 -3
- package/dist/index.esm.js +1405 -1372
- package/dist/index.umd.js +3 -3
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -277,6 +277,15 @@ export default _default;
|
|
|
277
277
|
*/
|
|
278
278
|
export declare function defineBroadcast(name?: string, callbacks?: Record<string, BroadcastCallback>, proxy?: FoxComponentPublicInstance): Broadcast | null;
|
|
279
279
|
|
|
280
|
+
/**
|
|
281
|
+
* 安装config domain
|
|
282
|
+
* @param name 名称
|
|
283
|
+
* @param props 属性
|
|
284
|
+
* @param ignores 忽略的属性
|
|
285
|
+
* @returns
|
|
286
|
+
*/
|
|
287
|
+
export declare function defineConfigDomain(name: string | null, props: Record<string, any>, ignores?: any[]): Domain;
|
|
288
|
+
|
|
280
289
|
/**
|
|
281
290
|
* 定义domain data item
|
|
282
291
|
* @returns
|
|
@@ -452,6 +461,8 @@ export declare interface DomainItem {
|
|
|
452
461
|
*/
|
|
453
462
|
export declare const DomainKey: unique symbol;
|
|
454
463
|
|
|
464
|
+
export declare const DomainProvider: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
465
|
+
|
|
455
466
|
/**
|
|
456
467
|
* event listener
|
|
457
468
|
*/
|