@vouchington/localization 0.0.1 → 0.0.2

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/bounds.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  export declare const DEFAULT_LOCALIZATION_BOUNDS: {
2
2
  readonly maxLocales: 8;
3
- readonly maxSelectors: 32;
4
- readonly maxMessages: 2000;
3
+ readonly maxSelectors: 64;
4
+ readonly maxMessages: 3000;
5
5
  readonly maxBytes: number;
6
6
  };
7
7
  export declare class LocalizationBoundError extends RangeError {
package/dist/bounds.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  export const DEFAULT_LOCALIZATION_BOUNDS = {
2
2
  maxLocales: 8,
3
- maxSelectors: 32,
4
- maxMessages: 2000,
3
+ maxSelectors: 64,
4
+ maxMessages: 3000,
5
5
  maxBytes: 512 * 1024,
6
6
  };
7
7
  export class LocalizationBoundError extends RangeError {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vouchington/localization",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Browser-safe localization catalog contracts, locale fallback, and selector validation.",
5
5
  "homepage": "https://github.com/vouchington/vouchington-platform/tree/main/packages/localization#readme",
6
6
  "bugs": {