@fkui/vue 6.11.0 → 6.12.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/cypress.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare class CalendarPageObject implements BasePageObject {
|
|
|
47
47
|
* Day to select in the calendar day-view via day number
|
|
48
48
|
*/
|
|
49
49
|
dayButton(day?: number): DefaultCypressChainable;
|
|
50
|
-
day(day?: number):
|
|
50
|
+
day(day?: number): FCalendarDayPageObject;
|
|
51
51
|
/**
|
|
52
52
|
* Uses the calendar navigation bar navigate to selected year and month
|
|
53
53
|
* jan = 0, dec = 11
|
|
@@ -89,7 +89,7 @@ export declare class FBadgePageObject implements BasePageObject {
|
|
|
89
89
|
/**
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
export declare class
|
|
92
|
+
export declare class FCalendarDayPageObject implements BasePageObject {
|
|
93
93
|
selector: string;
|
|
94
94
|
constructor(selector: string);
|
|
95
95
|
el(): DefaultCypressChainable;
|
|
@@ -99,6 +99,13 @@ export declare class FCalenderDayPageobject implements BasePageObject {
|
|
|
99
99
|
click(): Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
/**
|
|
103
|
+
* @deprecated Deprecated alias; use `FCalendarDayPageObject` instead (typo in name)
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export declare class FCalenderDayPageobject extends FCalendarDayPageObject {
|
|
107
|
+
}
|
|
108
|
+
|
|
102
109
|
/**
|
|
103
110
|
* @public
|
|
104
111
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.12.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.12.0",
|
|
64
|
+
"@fkui/design": "^6.12.0",
|
|
65
|
+
"@fkui/logic": "^6.12.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": "fe2196dd13702045bf520240c52135a1b74ae2e3"
|
|
83
83
|
}
|