@fkui/vue 6.17.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.
@@ -76,7 +76,7 @@ export declare enum dayType {
76
76
  /**
77
77
  * @public
78
78
  */
79
- export declare type DefaultCypressChainable = Cypress.Chainable<JQuery<HTMLElement>>;
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<HTMLElement>>;
251
+ header(): Cypress.Chainable<JQuery>;
252
252
  /**
253
253
  * Content in content slot (as defined by consumer).
254
254
  */
255
- content(): Cypress.Chainable<JQuery<HTMLElement>>;
255
+ content(): Cypress.Chainable<JQuery>;
256
256
  /**
257
257
  * Content in footer slot (as defined by consumer).
258
258
  */
259
- footer(): Cypress.Chainable<JQuery<HTMLElement>>;
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<HTMLElement>> | HTMLElement>;
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<HTMLElement>>;
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<HTMLElement>>;
654
+ header(): Cypress.Chainable<JQuery>;
655
655
  /**
656
656
  * Content in content slot (as defined by consumer).
657
657
  */
658
- content(): Cypress.Chainable<JQuery<HTMLElement>>;
658
+ content(): Cypress.Chainable<JQuery>;
659
659
  /**
660
660
  * Content in footer slot (as defined by consumer).
661
661
  */
662
- footer(): Cypress.Chainable<JQuery<HTMLElement>>;
662
+ footer(): Cypress.Chainable<JQuery>;
663
663
  /**
664
664
  * Toggle button.
665
665
  */
@@ -4544,16 +4544,16 @@ calendarButtonText(): string;
4544
4544
  popupClass(): string;
4545
4545
  }, {
4546
4546
  dateFormatter: typeof parseDate;
4547
- onValidityTextField({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
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(): Promise<void>;
4553
- onClickCloseCalendarButton(): Promise<void>;
4552
+ onKeyupEsc(): void;
4553
+ onClickCloseCalendarButton(): void;
4554
4554
  onOpenPopup(): void;
4555
4555
  onClosePopup(): void;
4556
- onValidationConfigUpdate(event: CustomEvent<ValidationConfigUpdateDetail>): Promise<void>;
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(): Promise<void>;
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(): Promise<void>;
16149
+ onSubmit(): void;
16150
16150
  onCancel(): void;
16151
16151
  /**
16152
16152
  * Scroll down before animation starts.
@@ -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
  *
@@ -17858,7 +17861,7 @@ declare interface IPopupListboxProps {
17858
17861
  anchor: HTMLElement | null;
17859
17862
  numOfItems: number;
17860
17863
  itemHeight?: number;
17861
- activeElement?: HTMLElement | undefined;
17864
+ activeElement?: HTMLElement;
17862
17865
  }
17863
17866
 
17864
17867
  export declare const IPopupMenu: DefineComponent<ExtractPropTypes< {
@@ -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.17.0",
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.17.0",
64
- "@fkui/design": "^6.17.0",
65
- "@fkui/logic": "^6.17.0",
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": "e662f6c39d38ff2f75092ac9f50c91de99adcd2f"
82
+ "gitHead": "d8465c63f3165e5dee90581430f0fbb76f3d636a"
83
83
  }