@fkui/vue 6.14.0 → 6.15.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/dist/types/index.d.ts
CHANGED
|
@@ -16528,7 +16528,7 @@ export declare function hasParentByName(vm: ComponentPublicInstance | undefined
|
|
|
16528
16528
|
*/
|
|
16529
16529
|
export declare function hasSlot(vm: {
|
|
16530
16530
|
$slots: Slots;
|
|
16531
|
-
}, name: string, props?: Record<string, unknown>, options?: Partial<RenderSlotOptions
|
|
16531
|
+
}, name: string, props?: Record<string, unknown>, options?: Partial<Pick<RenderSlotOptions, "stripClasses">>): boolean;
|
|
16532
16532
|
|
|
16533
16533
|
export declare const IAnimateExpand: DefineComponent<ExtractPropTypes< {
|
|
16534
16534
|
/**
|
|
@@ -18142,6 +18142,11 @@ export declare interface RenderSlotOptions {
|
|
|
18142
18142
|
* Default: `["sr-only"]`
|
|
18143
18143
|
*/
|
|
18144
18144
|
stripClasses: string[];
|
|
18145
|
+
/**
|
|
18146
|
+
* By default nested components will not be rendered. When this option is
|
|
18147
|
+
* enabled components will be rendered as `<ComponentName />`.
|
|
18148
|
+
*/
|
|
18149
|
+
componentPlaceholder: boolean;
|
|
18145
18150
|
}
|
|
18146
18151
|
|
|
18147
18152
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.15.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"unit:watch": "jest --watch"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@fkui/date": "^6.
|
|
64
|
-
"@fkui/design": "^6.
|
|
65
|
-
"@fkui/logic": "^6.
|
|
63
|
+
"@fkui/date": "^6.15.0",
|
|
64
|
+
"@fkui/design": "^6.15.0",
|
|
65
|
+
"@fkui/logic": "^6.15.0",
|
|
66
66
|
"fk-icons": "^4.30.1",
|
|
67
67
|
"html-validate": ">= 7.9.0",
|
|
68
68
|
"vue": "^3.5.0"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"node": ">= 20",
|
|
80
80
|
"npm": ">= 7"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "1dcfad2cc96dabcebf2ce84d6ee0aa778e709095"
|
|
83
83
|
}
|