@sapphire-ion/framework 1.0.40 → 1.0.41

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.
@@ -51,7 +51,7 @@ export declare class InputSelectConfiguration {
51
51
  filter: Comparison[];
52
52
  }>;
53
53
  disableConditional?: ((obj: any) => boolean);
54
- useInfiniteScroll?: boolean;
54
+ useInfiniteScroll?: boolean | undefined;
55
55
  placeholder?: string;
56
56
  noItensFoundText?: string;
57
57
  interface?: SelectInterfaces;
@@ -67,7 +67,7 @@ export declare class InputSelectConfiguration {
67
67
  placement: Placement;
68
68
  };
69
69
  vFiltros: ViewFiltros | null;
70
- useInfiniteScroll: boolean;
70
+ useInfiniteScroll?: boolean | undefined;
71
71
  /** Interface do select */
72
72
  interface: SelectInterfaces;
73
73
  constructor(
@@ -114,6 +114,7 @@ export declare class InputSelectDataLoader {
114
114
  isLoaded: boolean;
115
115
  error: boolean;
116
116
  Refresh(items?: any[]): Promise<void>;
117
+ CheckForInfiniteScroll(): void;
117
118
  items: any[];
118
119
  Load(): Promise<void>;
119
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire-ion/framework",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.8",