@fkui/vue 6.18.0 → 6.18.1
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/cypress.cjs.js +2 -2
- package/dist/cjs/cypress.cjs.js.map +2 -2
- package/dist/cjs/index.cjs.js +87 -51
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +2 -2
- package/dist/esm/cypress.esm.js.map +2 -2
- package/dist/esm/index.esm.js +87 -51
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +9 -9
- package/dist/types/index.d.ts +7 -7
- package/package.json +5 -5
package/dist/types/cypress.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export declare enum dayType {
|
|
|
76
76
|
/**
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
export declare type DefaultCypressChainable = Cypress.Chainable<JQuery
|
|
79
|
+
export declare type DefaultCypressChainable = Cypress.Chainable<JQuery>;
|
|
80
80
|
|
|
81
81
|
/**
|
|
82
82
|
* @public
|
|
@@ -248,15 +248,15 @@ export declare class FDetailsPanelPageObject implements BasePageObject {
|
|
|
248
248
|
/**
|
|
249
249
|
* Content in header slot (as defined by consumer).
|
|
250
250
|
*/
|
|
251
|
-
header(): Cypress.Chainable<JQuery
|
|
251
|
+
header(): Cypress.Chainable<JQuery>;
|
|
252
252
|
/**
|
|
253
253
|
* Content in content slot (as defined by consumer).
|
|
254
254
|
*/
|
|
255
|
-
content(): Cypress.Chainable<JQuery
|
|
255
|
+
content(): Cypress.Chainable<JQuery>;
|
|
256
256
|
/**
|
|
257
257
|
* Content in footer slot (as defined by consumer).
|
|
258
258
|
*/
|
|
259
|
-
footer(): Cypress.Chainable<JQuery
|
|
259
|
+
footer(): Cypress.Chainable<JQuery>;
|
|
260
260
|
/**
|
|
261
261
|
* Default submit button.
|
|
262
262
|
*/
|
|
@@ -308,7 +308,7 @@ export declare class FErrorListPageObject {
|
|
|
308
308
|
*/
|
|
309
309
|
links(): DefaultCypressChainable;
|
|
310
310
|
getLink(index: number): DefaultCypressChainable;
|
|
311
|
-
getLinkByName(error: string): Cypress.Chainable<Cypress.Chainable<JQuery
|
|
311
|
+
getLinkByName(error: string): Cypress.Chainable<Cypress.Chainable<JQuery> | HTMLElement>;
|
|
312
312
|
hasError(error: string): Cypress.Chainable<boolean>;
|
|
313
313
|
}
|
|
314
314
|
|
|
@@ -370,7 +370,7 @@ export declare class FFileItemPageObject implements BasePageObject {
|
|
|
370
370
|
/**
|
|
371
371
|
* Filename of the uploaded file.
|
|
372
372
|
*/
|
|
373
|
-
fileName(): Cypress.Chainable<JQuery
|
|
373
|
+
fileName(): Cypress.Chainable<JQuery>;
|
|
374
374
|
/**
|
|
375
375
|
* Filename extension in lowercase.
|
|
376
376
|
*/
|
|
@@ -651,15 +651,15 @@ export declare class FMinimizablePanelPageObject implements BasePageObject {
|
|
|
651
651
|
/**
|
|
652
652
|
* Content in header slot (as defined by consumer).
|
|
653
653
|
*/
|
|
654
|
-
header(): Cypress.Chainable<JQuery
|
|
654
|
+
header(): Cypress.Chainable<JQuery>;
|
|
655
655
|
/**
|
|
656
656
|
* Content in content slot (as defined by consumer).
|
|
657
657
|
*/
|
|
658
|
-
content(): Cypress.Chainable<JQuery
|
|
658
|
+
content(): Cypress.Chainable<JQuery>;
|
|
659
659
|
/**
|
|
660
660
|
* Content in footer slot (as defined by consumer).
|
|
661
661
|
*/
|
|
662
|
-
footer(): Cypress.Chainable<JQuery
|
|
662
|
+
footer(): Cypress.Chainable<JQuery>;
|
|
663
663
|
/**
|
|
664
664
|
* Toggle button.
|
|
665
665
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4544,16 +4544,16 @@ calendarButtonText(): string;
|
|
|
4544
4544
|
popupClass(): string;
|
|
4545
4545
|
}, {
|
|
4546
4546
|
dateFormatter: typeof parseDate;
|
|
4547
|
-
onValidityTextField({ detail }: CustomEvent<ValidityEvent>):
|
|
4547
|
+
onValidityTextField({ detail }: CustomEvent<ValidityEvent>): void;
|
|
4548
4548
|
onChangeTextField(): void;
|
|
4549
4549
|
onClickCalendarButton(): void;
|
|
4550
4550
|
onFocusoutTextFieldButton(e: FocusEvent): void;
|
|
4551
4551
|
onSelectCalendarDay(date: FDate): Promise<void>;
|
|
4552
|
-
onKeyupEsc():
|
|
4553
|
-
onClickCloseCalendarButton():
|
|
4552
|
+
onKeyupEsc(): void;
|
|
4553
|
+
onClickCloseCalendarButton(): void;
|
|
4554
4554
|
onOpenPopup(): void;
|
|
4555
4555
|
onClosePopup(): void;
|
|
4556
|
-
onValidationConfigUpdate(event: CustomEvent<ValidationConfigUpdateDetail>):
|
|
4556
|
+
onValidationConfigUpdate(event: CustomEvent<ValidationConfigUpdateDetail>): void;
|
|
4557
4557
|
isDateEnabled(day: FDate): boolean;
|
|
4558
4558
|
isDaySelected(date: FDate): boolean;
|
|
4559
4559
|
highlightDay(date: FDate): boolean;
|
|
@@ -7581,7 +7581,7 @@ default: () => FModalButtonDescriptor[];
|
|
|
7581
7581
|
preparedButtons(): FModalButton[];
|
|
7582
7582
|
}, {
|
|
7583
7583
|
onClose(): void;
|
|
7584
|
-
onSubmit():
|
|
7584
|
+
onSubmit(): void;
|
|
7585
7585
|
onCancel(): void;
|
|
7586
7586
|
}, ComponentOptions, ComponentOptionsMixin, ("submit" | "close" | "cancel")[], "submit" | "close" | "cancel", PublicProps, Readonly<ExtractPropTypes< {
|
|
7587
7587
|
/**
|
|
@@ -16146,7 +16146,7 @@ totalSteps(): number;
|
|
|
16146
16146
|
cssClass(): string;
|
|
16147
16147
|
}, {
|
|
16148
16148
|
open(): void;
|
|
16149
|
-
onSubmit():
|
|
16149
|
+
onSubmit(): void;
|
|
16150
16150
|
onCancel(): void;
|
|
16151
16151
|
/**
|
|
16152
16152
|
* Scroll down before animation starts.
|
|
@@ -17861,7 +17861,7 @@ declare interface IPopupListboxProps {
|
|
|
17861
17861
|
anchor: HTMLElement | null;
|
|
17862
17862
|
numOfItems: number;
|
|
17863
17863
|
itemHeight?: number;
|
|
17864
|
-
activeElement?: HTMLElement
|
|
17864
|
+
activeElement?: HTMLElement;
|
|
17865
17865
|
}
|
|
17866
17866
|
|
|
17867
17867
|
export declare const IPopupMenu: DefineComponent<ExtractPropTypes< {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.18.
|
|
3
|
+
"version": "6.18.1",
|
|
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.18.
|
|
64
|
-
"@fkui/design": "^6.18.
|
|
65
|
-
"@fkui/logic": "^6.18.
|
|
63
|
+
"@fkui/date": "^6.18.1",
|
|
64
|
+
"@fkui/design": "^6.18.1",
|
|
65
|
+
"@fkui/logic": "^6.18.1",
|
|
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": "d8465c63f3165e5dee90581430f0fbb76f3d636a"
|
|
83
83
|
}
|