@fkui/vue 6.16.1 → 6.18.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/cjs/index.cjs.js +5523 -5514
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +5523 -5514
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +6 -0
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -16803,6 +16803,9 @@ export declare function getInputElement(vm: {
|
|
|
16803
16803
|
$el: Element;
|
|
16804
16804
|
}): ValidatableHTMLElement;
|
|
16805
16805
|
|
|
16806
|
+
/** @public */
|
|
16807
|
+
export declare function getInternalKey<T>(): keyof T;
|
|
16808
|
+
|
|
16806
16809
|
/**
|
|
16807
16810
|
* Gets and returns the parent component of given Vue component that matches given name.
|
|
16808
16811
|
*
|
|
@@ -18550,6 +18553,9 @@ export declare interface RenderSlotOptions {
|
|
|
18550
18553
|
*/
|
|
18551
18554
|
export declare function renderSlotText(render: Slot | undefined, props?: Record<string, unknown>, options?: Partial<RenderSlotOptions>): string | undefined;
|
|
18552
18555
|
|
|
18556
|
+
/** @public */
|
|
18557
|
+
export declare function setInternalKeys<T>(items: T[], key?: keyof T, nestedKey?: keyof T, seenValues?: Set<unknown>): T[];
|
|
18558
|
+
|
|
18553
18559
|
/**
|
|
18554
18560
|
* @public
|
|
18555
18561
|
* @param app - Running app
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.18.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.18.0",
|
|
64
|
+
"@fkui/design": "^6.18.0",
|
|
65
|
+
"@fkui/logic": "^6.18.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": "3931bff1021afd55de9cb6455e9f54e9871d8a59"
|
|
83
83
|
}
|