@gearbox-protocol/permissionless-ui 1.26.4 → 1.26.6

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.
@@ -12,9 +12,11 @@ export interface FormattedMessageTypedProps {
12
12
  export declare function FormattedMessageTyped({ messageId, values, defaultMessage, }: FormattedMessageTypedProps): import("react/jsx-runtime").JSX.Element;
13
13
  export interface FormatMessageTypedProps {
14
14
  messageId: LocaleKeys;
15
+ /** Fallback when the key is missing in the app's messages (e.g. app did not merge locale). */
16
+ defaultMessage?: string;
15
17
  }
16
18
  export declare function useIntlTyped(): {
17
- formatMessage: ({ messageId }: FormatMessageTypedProps, values?: Record<string, PrimitiveType | FormatXMLElementFn<string, string>>) => string;
19
+ formatMessage: ({ messageId, defaultMessage }: FormatMessageTypedProps, values?: Record<string, PrimitiveType | FormatXMLElementFn<string, string>>) => string;
18
20
  intl: import('react-intl').IntlShape;
19
21
  };
20
22
  export {};
@@ -37,6 +37,11 @@ declare const _default: {
37
37
  "components.graphView.noData": "Can't get data for this graph",
38
38
 
39
39
  "components.filterBlock.reset": "Reset All",
40
+ "components.filterModal.searchPlaceholder": "Search options...",
41
+ "components.filterModal.noOptionsAvailable": "No options available",
42
+ "components.filterModal.noOptionsMatchSearch": "No options match your search",
43
+ "components.filterModal.reset": "Reset",
44
+ "components.filterModal.apply": "Apply",
40
45
 
41
46
  "components.APY.tip": "These APYs are derived from the underlying protocols’ APIs and may differ in reality. Check respective protocols for their methodology.",
42
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.26.4",
3
+ "version": "1.26.6",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",