@datawire-ai/busyfile-design-library 1.31.1 → 1.33.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.
Files changed (64) hide show
  1. package/dist/index100.js +3 -3
  2. package/dist/index101.js +2 -2
  3. package/dist/index102.js +2 -2
  4. package/dist/index106.js +5 -5
  5. package/dist/index107.js +1 -1
  6. package/dist/index108.js +3 -14
  7. package/dist/index109.js +46 -10
  8. package/dist/index110.js +11 -4
  9. package/dist/index111.js +4 -13
  10. package/dist/index112.js +12 -3
  11. package/dist/index113.js +644 -40
  12. package/dist/index116.js +23 -649
  13. package/dist/index117.js +15 -18
  14. package/dist/index118.js +33 -16
  15. package/dist/index119.js +12 -33
  16. package/dist/index12.js +28 -30
  17. package/dist/index120.js +15 -18
  18. package/dist/index121.js +1 -1
  19. package/dist/index123.js +1 -1
  20. package/dist/index30.js +52 -51
  21. package/dist/index42.js +6 -6
  22. package/dist/index44.js +9 -9
  23. package/dist/index46.js +7 -7
  24. package/dist/index48.js +1 -1
  25. package/dist/index49.js +5 -5
  26. package/dist/index50.js +1 -1
  27. package/dist/index52.js +5 -5
  28. package/dist/index54.js +1 -1
  29. package/dist/index55.js +1 -1
  30. package/dist/index56.js +1 -1
  31. package/dist/index57.js +1 -1
  32. package/dist/index59.js +5 -5
  33. package/dist/index61.js +1 -1
  34. package/dist/index62.js +1 -1
  35. package/dist/index63.js +1 -1
  36. package/dist/index65.js +1 -1
  37. package/dist/index66.js +1 -1
  38. package/dist/index67.js +1 -1
  39. package/dist/index68.js +1 -1
  40. package/dist/index70.js +1 -1
  41. package/dist/index71.js +1 -1
  42. package/dist/index73.js +1 -1
  43. package/dist/index75.js +7 -7
  44. package/dist/index78.js +1 -1
  45. package/dist/index79.js +1 -1
  46. package/dist/index81.js +1 -1
  47. package/dist/index82.js +10 -10
  48. package/dist/index84.js +1 -1
  49. package/dist/index85.js +5 -5
  50. package/dist/index86.js +2 -2
  51. package/dist/index87.js +5 -5
  52. package/dist/index88.js +1 -1
  53. package/dist/index90.js +5 -66
  54. package/dist/index91.js +66 -5
  55. package/dist/index92.js +33 -51
  56. package/dist/index93.js +181 -5
  57. package/dist/index94.js +51 -24
  58. package/dist/index95.js +7 -69
  59. package/dist/index96.js +24 -33
  60. package/dist/index97.js +5 -181
  61. package/dist/index98.js +69 -7
  62. package/dist/index99.js +1 -1
  63. package/dist/types/index.d.ts +3 -3
  64. package/package.json +1 -1
package/dist/index99.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- import { useLayoutEffect as a } from "./index110.js";
2
+ import { useLayoutEffect as a } from "./index111.js";
3
3
  var s = e[" useId ".trim().toString()] || (() => {
4
4
  }), i = 0;
5
5
  function d(r) {
@@ -277,7 +277,6 @@ declare interface InputWithLabelProps extends Omit<React_2.InputHTMLAttributes<H
277
277
  status?: 'default' | 'error' | 'disabled';
278
278
  size?: 'small' | 'medium';
279
279
  labelClassName?: string;
280
- errorClassName?: string;
281
280
  }
282
281
 
283
282
  declare interface LinearProgressIndicatorProps extends BaseProgressIndicatorProps {
@@ -402,7 +401,7 @@ declare interface PasswordInputProps extends Omit<React.InputHTMLAttributes<HTML
402
401
  customValidator?: (value: string) => Requirement[];
403
402
  }
404
403
 
405
- export declare const PhoneInput: ({ label, helperText, errorText, size, disabled, labelClassName, onCountryChange, countryOptions, showDialCode, className, onValidityChange, includeDialCodeInValue, requiredOnBlur, errorClassName, ...inputProps }: PhoneInputProps) => JSX.Element;
404
+ export declare const PhoneInput: ({ label, helperText, errorText, size, disabled, labelClassName, onCountryChange, countryOptions, showDialCode, className, onValidityChange, includeDialCodeInValue, requiredOnBlur, ...inputProps }: PhoneInputProps) => JSX.Element;
406
405
 
407
406
  export declare interface PhoneInputProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, 'size'> {
408
407
  label?: string;
@@ -418,7 +417,6 @@ export declare interface PhoneInputProps extends Omit<default_2.InputHTMLAttribu
418
417
  onValidityChange?: (isValid: boolean) => void;
419
418
  includeDialCodeInValue?: boolean;
420
419
  requiredOnBlur?: boolean;
421
- errorClassName?: string;
422
420
  }
423
421
 
424
422
  declare interface PictureAvatarProps extends BaseAvatarProps {
@@ -474,6 +472,7 @@ declare interface RangeDatePickerProps {
474
472
  mode: 'range';
475
473
  date: DateRange | undefined;
476
474
  setDate: (date: DateRange | undefined) => void;
475
+ disabled?: (date: Date) => boolean;
477
476
  }
478
477
 
479
478
  declare interface Requirement {
@@ -624,6 +623,7 @@ declare interface SingleDatePickerProps {
624
623
  mode: 'single';
625
624
  date: Date | undefined;
626
625
  setDate: (date: Date | undefined) => void;
626
+ disabled?: (date: Date) => boolean;
627
627
  }
628
628
 
629
629
  export declare function Skeleton({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datawire-ai/busyfile-design-library",
3
- "version": "1.31.1",
3
+ "version": "1.33.0",
4
4
  "description": "Design system for busyfile",
5
5
  "private": false,
6
6
  "type": "module",