@fkui/vue 6.31.1 → 6.32.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.
@@ -610,7 +610,7 @@ rowHeader: boolean;
610
610
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
611
611
 
612
612
  declare const __VLS_export_10: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
613
- props: __VLS_PrettifyLocal_2<ExtractPublicPropTypes< {
613
+ props: PublicProps & __VLS_PrettifyLocal_2<ExtractPublicPropTypes< {
614
614
  /**
615
615
  * The rows to be listed.
616
616
  * The rows will be listed in the given array order.
@@ -648,7 +648,7 @@ declare const __VLS_export_10: <T extends object>(__VLS_props: NonNullable<Await
648
648
  default: TableScroll;
649
649
  validator(value: string): boolean;
650
650
  };
651
- }>> & PublicProps & (typeof globalThis extends {
651
+ }>> & (typeof globalThis extends {
652
652
  __VLS_PROPS_FALLBACK: infer P;
653
653
  } ? P : {});
654
654
  expose: (exposed: {}) => void;
@@ -890,7 +890,7 @@ yearSelectorOpen: Ref<boolean, boolean>;
890
890
  activeYear: Ref<FYear, FYear>;
891
891
  selectableYears: Readonly<ShallowRef<FYear[]>>;
892
892
  onChangeDate: (date: FDate) => void;
893
- onClickSelectYear: (year: FYear) => void;
893
+ onClickSelectYear: (this: void, year: FYear) => void;
894
894
  }, {}, {
895
895
  yearNounText(): string;
896
896
  }, {
@@ -1795,7 +1795,7 @@ highlight: boolean;
1795
1795
  }, {}, string, ComponentProvideOptions, true, {}, any>;
1796
1796
 
1797
1797
  declare const __VLS_export_12: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1798
- props: __VLS_PrettifyLocal_3<{
1798
+ props: PublicProps & __VLS_PrettifyLocal_3<{
1799
1799
  /**
1800
1800
  * Name of this panel. Used when referencing the panel in useDetailsPanel.
1801
1801
  */
@@ -1805,7 +1805,7 @@ declare const __VLS_export_12: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS
1805
1805
  * from being open at the same time.
1806
1806
  */
1807
1807
  exclusive?: string;
1808
- }> & PublicProps & (typeof globalThis extends {
1808
+ }> & (typeof globalThis extends {
1809
1809
  __VLS_PROPS_FALLBACK: infer P;
1810
1810
  } ? P : {});
1811
1811
  expose: (exposed: {}) => void;
@@ -3110,7 +3110,7 @@ rotate: string;
3110
3110
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3111
3111
 
3112
3112
  declare const __VLS_export_23: <T extends object, KeyAttribute extends AnyPropertyOf<T> = AnyPropertyOf<T>, ExpandableAttribute extends ArrayPropertyOf<T> = ArrayPropertyOf<T>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3113
- props: __VLS_PrettifyLocal_4<{
3113
+ props: PublicProps & __VLS_PrettifyLocal_4<{
3114
3114
  /**
3115
3115
  * The rows to be listed.
3116
3116
  * The rows will be listed in the given array order.
@@ -3182,7 +3182,7 @@ declare const __VLS_export_23: <T extends object, KeyAttribute extends AnyProper
3182
3182
  onExpand?: ((row: T) => any) | undefined;
3183
3183
  onUnselect?: ((row: T) => any) | undefined;
3184
3184
  "onUpdate:active"?: ((row: T | undefined) => any) | undefined;
3185
- }> & PublicProps & (typeof globalThis extends {
3185
+ }> & (typeof globalThis extends {
3186
3186
  __VLS_PROPS_FALLBACK: infer P;
3187
3187
  } ? P : {});
3188
3188
  expose: (exposed: {}) => void;
@@ -3540,7 +3540,7 @@ rotate: string;
3540
3540
  }, {}, string, ComponentProvideOptions, true, {}, any>;
3541
3541
 
3542
3542
  declare const __VLS_export_28: <T extends object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3543
- props: __VLS_PrettifyLocal_5<ExtractPublicPropTypes< {
3543
+ props: PublicProps & __VLS_PrettifyLocal_5<ExtractPublicPropTypes< {
3544
3544
  /**
3545
3545
  * The items to be listed.
3546
3546
  * The items will be listed in the given array order.
@@ -3605,7 +3605,7 @@ declare const __VLS_export_28: <T extends object>(__VLS_props: NonNullable<Await
3605
3605
  onClick?: ((item: T) => any) | undefined;
3606
3606
  onUnselect?: ((item: T) => any) | undefined;
3607
3607
  "onUpdate:active"?: ((item: T) => any) | undefined;
3608
- }> & PublicProps & (typeof globalThis extends {
3608
+ }> & (typeof globalThis extends {
3609
3609
  __VLS_PROPS_FALLBACK: infer P;
3610
3610
  } ? P : {});
3611
3611
  expose: (exposed: {}) => void;
@@ -3798,7 +3798,7 @@ yearSelectorOpen: Ref<boolean, boolean>;
3798
3798
  activeYear: Ref<FYear, FYear>;
3799
3799
  selectableYears: Readonly<ShallowRef<FYear[]>>;
3800
3800
  onChangeDate: (date: FDate) => void;
3801
- onClickSelectYear: (year: FYear) => void;
3801
+ onClickSelectYear: (this: void, year: FYear) => void;
3802
3802
  }, {}, {
3803
3803
  yearNounText(): string;
3804
3804
  }, {
@@ -6352,11 +6352,11 @@ highlight: boolean;
6352
6352
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6353
6353
 
6354
6354
  declare const __VLS_export_40: <T extends FPageLayoutType>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
6355
- props: __VLS_PrettifyLocal_6<{
6355
+ props: PublicProps & __VLS_PrettifyLocal_6<{
6356
6356
  layout: T;
6357
6357
  } & {
6358
6358
  onUpdate?: (() => any) | undefined;
6359
- }> & PublicProps & (typeof globalThis extends {
6359
+ }> & (typeof globalThis extends {
6360
6360
  __VLS_PROPS_FALLBACK: infer P;
6361
6361
  } ? P : {});
6362
6362
  expose: (exposed: {}) => void;
@@ -6370,7 +6370,7 @@ declare const __VLS_export_40: <T extends FPageLayoutType>(__VLS_props: NonNulla
6370
6370
  };
6371
6371
 
6372
6372
  declare const __VLS_export_41: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
6373
- props: __VLS_PrettifyLocal_7<{
6373
+ props: PublicProps & __VLS_PrettifyLocal_7<{
6374
6374
  /**
6375
6375
  * The items to be used. The items will be used in the given array order.
6376
6376
  */
@@ -6392,7 +6392,7 @@ declare const __VLS_export_41: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS
6392
6392
  * @param lastItemIndex - The index of the last item on the page.
6393
6393
  */
6394
6394
  fetchData?(firstItemIndex: number, lastItemIndex: number): T[] | Promise<T[]>;
6395
- }> & PublicProps & (typeof globalThis extends {
6395
+ }> & (typeof globalThis extends {
6396
6396
  __VLS_PROPS_FALLBACK: infer P;
6397
6397
  } ? P : {});
6398
6398
  expose: (exposed: {}) => void;
@@ -6513,7 +6513,7 @@ default: () => undefined;
6513
6513
  }>, {
6514
6514
  sharedName: string | undefined;
6515
6515
  showDetails: "always" | "never" | "when-selected";
6516
- getFieldsetLabelText: () => string | undefined;
6516
+ getFieldsetLabelText: (this: void) => string | undefined;
6517
6517
  }, {
6518
6518
  height: number;
6519
6519
  initialStyle: {
@@ -6851,7 +6851,7 @@ rotate: string;
6851
6851
  }, {}, string, ComponentProvideOptions, true, {}, any>;
6852
6852
 
6853
6853
  declare const __VLS_export_47: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_8<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
6854
- props: __VLS_PrettifyLocal_8<ExtractPublicPropTypes< {
6854
+ props: PublicProps & __VLS_PrettifyLocal_8<ExtractPublicPropTypes< {
6855
6855
  /**
6856
6856
  * The data that you wish to sort or filter.
6857
6857
  */
@@ -6920,7 +6920,7 @@ declare const __VLS_export_47: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS
6920
6920
  }> & {
6921
6921
  onDatasetSorted?: ((items: T[]) => any) | undefined;
6922
6922
  onUsedSortAttributes?: ((sortAttribute: SortOrder) => any) | undefined;
6923
- }> & PublicProps & (typeof globalThis extends {
6923
+ }> & (typeof globalThis extends {
6924
6924
  __VLS_PROPS_FALLBACK: infer P;
6925
6925
  } ? P : {});
6926
6926
  expose: (exposed: {}) => void;
@@ -11045,7 +11045,7 @@ required: true;
11045
11045
  };
11046
11046
  }>, {
11047
11047
  showDetails: "always" | "never" | "when-selected";
11048
- getFieldsetLabelText: () => string | undefined;
11048
+ getFieldsetLabelText: (this: void) => string | undefined;
11049
11049
  }, {
11050
11050
  expanded: boolean;
11051
11051
  height: number;
@@ -14132,7 +14132,7 @@ required: false;
14132
14132
  validator(value: string | undefined): boolean;
14133
14133
  };
14134
14134
  }>, {
14135
- animate: (state: "expand" | "collapse") => void;
14135
+ animate: (this: void, state: "expand" | "collapse") => void;
14136
14136
  iconTarget: ComputedRef<HTMLElement | null>;
14137
14137
  ready: Ref<boolean, boolean>;
14138
14138
  }, {
@@ -16725,7 +16725,7 @@ errorComponent: Component;
16725
16725
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
16726
16726
 
16727
16727
  declare const __VLS_export_9: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
16728
- props: __VLS_PrettifyLocal<ExtractPublicPropTypes< {
16728
+ props: PublicProps & __VLS_PrettifyLocal<ExtractPublicPropTypes< {
16729
16729
  /**
16730
16730
  * The list of items that should be deleted, modified or added to.
16731
16731
  * If the prop is not set an empty array will be used.
@@ -16807,7 +16807,7 @@ declare const __VLS_export_9: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_
16807
16807
  onUpdated?: ((item: T) => any) | undefined;
16808
16808
  "onUpdate:modelValue"?: ((items: T[]) => any) | undefined;
16809
16809
  onDeleted?: ((item: T) => any) | undefined;
16810
- }> & PublicProps & (typeof globalThis extends {
16810
+ }> & (typeof globalThis extends {
16811
16811
  __VLS_PROPS_FALLBACK: infer P;
16812
16812
  } ? P : {});
16813
16813
  expose: (exposed: {}) => void;
@@ -17114,9 +17114,9 @@ export declare function ActivateItemInjected<T>(): ActivateItemInterface<T>;
17114
17114
  * @public
17115
17115
  */
17116
17116
  export declare interface ActivateItemInterface<T> {
17117
- registerCallbackAfterItemAdd(callback: ActivateItemCallback<T>): void;
17118
- registerCallbackBeforeItemDelete(callback: ActivateItemCallback<T>): void;
17119
- setNestedKey(key: keyof T | null | undefined): void;
17117
+ registerCallbackAfterItemAdd(this: void, callback: ActivateItemCallback<T>): void;
17118
+ registerCallbackBeforeItemDelete(this: void, callback: ActivateItemCallback<T>): void;
17119
+ setNestedKey(this: void, key: keyof T | null | undefined): void;
17120
17120
  }
17121
17121
 
17122
17122
  /**
@@ -17780,16 +17780,16 @@ export declare interface FSortFilterDatasetInterface {
17780
17780
  * @param attribute - is the field that gets sorted
17781
17781
  * @param ascending - is the order the fields get sorted
17782
17782
  */
17783
- sort(attribute: string, ascending: boolean): void;
17783
+ sort(this: void, attribute: string, ascending: boolean): void;
17784
17784
  /**
17785
17785
  * Callback function that is called when dataset get sorted
17786
17786
  */
17787
- registerCallbackOnSort(callback: FSortFilterDatasetSortCallback): void;
17787
+ registerCallbackOnSort(this: void, callback: FSortFilterDatasetSortCallback): void;
17788
17788
  /**
17789
17789
  * Called when FSortFilterDataset is mounted.
17790
17790
  * Returns the sortable field names.
17791
17791
  */
17792
- registerCallbackOnMount(callback: FSortFilterDatasetMountCallback): void;
17792
+ registerCallbackOnMount(this: void, callback: FSortFilterDatasetMountCallback): void;
17793
17793
  }
17794
17794
 
17795
17795
  /**
@@ -17862,11 +17862,11 @@ export declare interface FTableInterface {
17862
17862
  /**
17863
17863
  * Called when a new column is added.
17864
17864
  */
17865
- addColumn(column: FTableColumnData): void;
17865
+ addColumn(this: void, column: FTableColumnData): void;
17866
17866
  /**
17867
17867
  * Called when a column is hidden.
17868
17868
  */
17869
- setVisibilityColumn(id: string, visible: boolean): void;
17869
+ setVisibilityColumn(this: void, id: string, visible: boolean): void;
17870
17870
  /**
17871
17871
  * Enables table mode when set to `true`.
17872
17872
  * Used to hide label (sr-only) and enable `IPopupError`, for inputfields enclosed by a table.
@@ -17917,12 +17917,12 @@ export declare const FWizard: typeof __VLS_export_69;
17917
17917
  * @public
17918
17918
  */
17919
17919
  export declare interface FWizardApi {
17920
- register(key: FWizardKey, element: Element): FWizardStepDefinition;
17921
- unregister(key: FWizardKey): void;
17922
- getStepCount(): number;
17923
- openStep(step: FWizardStepDefinition): void;
17924
- openNext(self: FWizardStepDefinition): void;
17925
- cancel(isFinalStep: boolean): void;
17920
+ register(this: void, key: FWizardKey, element: Element): FWizardStepDefinition;
17921
+ unregister(this: void, key: FWizardKey): void;
17922
+ getStepCount(this: void): number;
17923
+ openStep(this: void, step: FWizardStepDefinition): void;
17924
+ openNext(this: void, self: FWizardStepDefinition): void;
17925
+ cancel(this: void, isFinalStep: boolean): void;
17926
17926
  inheritedProps: {
17927
17927
  readonly headerTag: string;
17928
17928
  readonly disableInitialFocus: boolean;
@@ -18758,7 +18758,7 @@ export declare interface UseModal {
18758
18758
  * @returns A promise resolved with reason for dismissal and optionally a
18759
18759
  * payload when the modal is closed.
18760
18760
  */
18761
- openModal<T>(component: Component, options?: Partial<OpenModalModaloptions>): AsyncModalResult<T>;
18761
+ openModal<T>(this: void, component: Component, options?: Partial<OpenModalModaloptions>): AsyncModalResult<T>;
18762
18762
  /**
18763
18763
  * Open a confirmation modal with given text.
18764
18764
  *
@@ -18767,7 +18767,7 @@ export declare interface UseModal {
18767
18767
  * @returns A promise resolved with a `true` if modal was dismissed in a
18768
18768
  * positive manner ("Yes, I want to ...") or `false` if dismissed in a negative manner ("No, don't ...")
18769
18769
  */
18770
- confirmModal(texts: ConfirmModalTexts): Promise<boolean>;
18770
+ confirmModal(this: void, texts: ConfirmModalTexts): Promise<boolean>;
18771
18771
  /**
18772
18772
  * Open a form modal and return the results from the input fields.
18773
18773
  *
@@ -18775,7 +18775,7 @@ export declare interface UseModal {
18775
18775
  * @param options - Component options.
18776
18776
  * @returns A promise resolved with values from input fields or rejected if user cancels.
18777
18777
  */
18778
- formModal<T>(component: Component, options?: Partial<OpenModalModaloptions>): Promise<T>;
18778
+ formModal<T>(this: void, component: Component, options?: Partial<OpenModalModaloptions>): Promise<T>;
18779
18779
  }
18780
18780
 
18781
18781
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/vue",
3
- "version": "6.31.1",
3
+ "version": "6.32.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.31.0",
64
- "@fkui/design": "^6.31.1",
65
- "@fkui/logic": "^6.31.0",
63
+ "@fkui/date": "^6.32.0",
64
+ "@fkui/design": "^6.32.0",
65
+ "@fkui/logic": "^6.32.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": "f60c60ab7b2b67fad8041a6f4f33062950a25ebb"
82
+ "gitHead": "af40bfb2d776b120e7cbfeb5467be058a4384314"
83
83
  }