@ikatec/nebula-react 0.0.1-alpha.22 → 0.0.1-alpha.24

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/index.d.mts CHANGED
@@ -449,11 +449,15 @@ interface PaginationMessages extends MessagesRecord {
449
449
  totalResultsLabel: (pagesSize: number, totalResults: number) => string;
450
450
  currentPageLabel: (currentPage: number, totalPages: number) => string;
451
451
  }
452
+ interface InputSelectMessages {
453
+ noOptions: string;
454
+ }
452
455
  /**
453
456
  * Type to store the messages.
454
457
  */
455
458
  interface Messages {
456
459
  pagination: PaginationMessages;
460
+ inputSelect: InputSelectMessages;
457
461
  }
458
462
 
459
463
  /**
package/dist/index.d.ts CHANGED
@@ -449,11 +449,15 @@ interface PaginationMessages extends MessagesRecord {
449
449
  totalResultsLabel: (pagesSize: number, totalResults: number) => string;
450
450
  currentPageLabel: (currentPage: number, totalPages: number) => string;
451
451
  }
452
+ interface InputSelectMessages {
453
+ noOptions: string;
454
+ }
452
455
  /**
453
456
  * Type to store the messages.
454
457
  */
455
458
  interface Messages {
456
459
  pagination: PaginationMessages;
460
+ inputSelect: InputSelectMessages;
457
461
  }
458
462
 
459
463
  /**