@innovaccer/design-system 2.37.1 → 2.38.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,77 @@
1
+ ## 2.38.1 (2024-07-12)
2
+
3
+ ### Highlights
4
+
5
+ - fix: move lottie player npm package from dev-dependencies to dependencies (65d70faf)
6
+ - fix(combobox): add onFocus and onBlur callback function in combobox options (83e66918)
7
+
8
+ ### Breaking changes
9
+
10
+ NA
11
+
12
+ ### Migration guide
13
+
14
+ NA
15
+
16
+ ### Deprecations
17
+
18
+ NA
19
+
20
+ ### Features
21
+
22
+ NA
23
+
24
+ ### Fixes
25
+
26
+ - fix: move lottie player npm package from dev-dependencies to dependencies (65d70faf)
27
+ - fix(combobox): add onFocus and onBlur callback function in combobox options (83e66918)
28
+
29
+ ### Improvements
30
+
31
+ NA
32
+
33
+ ### Documentation
34
+
35
+ NA
36
+
37
+ ---
38
+
39
+ ## 2.38.0 (2024-07-05)
40
+
41
+ ### Highlights
42
+
43
+ - chore(react-lottie-player): moved to externals for esm module (88fc0af4)
44
+
45
+ ### Breaking changes
46
+
47
+ - chore(react-lottie-player): moved to externals for esm module (88fc0af4)
48
+
49
+ ### Migration guide
50
+
51
+ - If relying on ESM build, install `@lottiefiles/react-lottie-player` for animation related components.
52
+
53
+ ### Deprecations
54
+
55
+ NA
56
+
57
+ ### Features
58
+
59
+ NA
60
+
61
+ ### Fixes
62
+
63
+ NA
64
+
65
+ ### Improvements
66
+
67
+ NA
68
+
69
+ ### Documentation
70
+
71
+ NA
72
+
73
+ ---
74
+
1
75
  ## 2.37.1 (2024-07-04)
2
76
 
3
77
  ### Highlights
@@ -2112,8 +2112,8 @@
2112
2112
  "affectsGlobalScope": false
2113
2113
  },
2114
2114
  "../../core/components/organisms/combobox/ComboboxOption.tsx": {
2115
- "version": "8b4c748687d46077e9e71b47c9788065988488a7932659121568a5c7e1b6a287",
2116
- "signature": "315de4aa4f1967c61105709d39b60bdd8ade66848bff0a52c53dceb2d2ee59bd",
2115
+ "version": "b7c8e963f71d7e99ab6cc81607e875273afb2df3162657003627807e06facccb",
2116
+ "signature": "1493f58f0a70ded35e77a06c09a450cd79013a9b007e9fcdfbfd1a230d00fbe1",
2117
2117
  "affectsGlobalScope": false
2118
2118
  },
2119
2119
  "../../core/components/organisms/combobox/trigger/utils.tsx": {
@@ -8,6 +8,8 @@ export interface ComboboxOptionProps extends BaseProps {
8
8
  tagName: ItemTagType;
9
9
  selected?: boolean;
10
10
  onClick?: (option: OptionType) => void;
11
+ onFocus?: (event: React.FocusEvent) => void;
12
+ onBlur?: (event: React.FocusEvent) => void;
11
13
  }
12
14
  export declare const ComboboxOption: {
13
15
  (props: ComboboxOptionProps): JSX.Element;