@wavelengthusaf/components 2.3.4 → 2.4.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.
- package/README.md +18 -4
- package/dist/cjs/index.cjs +596 -46
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +44 -8
- package/dist/components/TextField/WavelengthTextField.d.ts +17 -0
- package/dist/components/TextField/WavelengthTextField.d.ts.map +1 -0
- package/dist/components/buttons/WavelengthButton/WavelengthStyledButton.d.ts +15 -0
- package/dist/components/buttons/WavelengthButton/WavelengthStyledButton.d.ts.map +1 -0
- package/dist/components/modals/WavelengthConfirmationModal.d.ts +7 -1
- package/dist/components/modals/WavelengthConfirmationModal.d.ts.map +1 -1
- package/dist/components/modals/WavelengthDropdown.d.ts +1 -1
- package/dist/components/modals/WavelengthDropdown.d.ts.map +1 -1
- package/dist/components/modals/WavelengthPopUpMenu.d.ts +3 -2
- package/dist/components/modals/WavelengthPopUpMenu.d.ts.map +1 -1
- package/dist/components/search/WavelengthSearch.d.ts +2 -1
- package/dist/components/search/WavelengthSearch.d.ts.map +1 -1
- package/dist/esm/index.d.ts +44 -8
- package/dist/esm/index.js +702 -152
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,20 @@ npm install @wavelengthusaf/components
|
|
|
14
14
|
|
|
15
15
|
## Release Notes
|
|
16
16
|
|
|
17
|
+
### 2.4.0
|
|
18
|
+
|
|
19
|
+
- 03/03/2025
|
|
20
|
+
- Added 2 new components, WavelengthStyledButton, and WavelengthTextField
|
|
21
|
+
- Updated the confirmation modal to include more props making it more customizable
|
|
22
|
+
- Updated documentation to reflect these changes
|
|
23
|
+
|
|
24
|
+
### 2.3.5
|
|
25
|
+
|
|
26
|
+
- Updated WavelengthDropdown by adding default values to some of the props
|
|
27
|
+
- Fixed bugs related to WavelengthSearchbar, no longer 2 closing icons for some configurations
|
|
28
|
+
- Updated WavelengthPopupMenu , each list item can have a hover color for text, also fixed underlining of link type issue
|
|
29
|
+
- Standard Snackbar is not aligned properly, the Snackbars with icons are also aligned properly
|
|
30
|
+
|
|
17
31
|
### 2.3.4
|
|
18
32
|
|
|
19
33
|
- Update watch command for devs, and updated vite configuration
|
|
@@ -22,13 +36,13 @@ npm install @wavelengthusaf/components
|
|
|
22
36
|
|
|
23
37
|
- Fixed a bug relating to exports not working.
|
|
24
38
|
|
|
25
|
-
### 2.3.0
|
|
39
|
+
### 2.3.0
|
|
26
40
|
|
|
27
|
-
- Added `DefaultPagination` component to package for numbered pagination navigation, and modified PagePagination for testbed.
|
|
41
|
+
- Added `DefaultPagination` component to package for numbered pagination navigation, and modified PagePagination for testbed.
|
|
28
42
|
|
|
29
|
-
### 2.2.5
|
|
43
|
+
### 2.2.5
|
|
30
44
|
|
|
31
|
-
- Readded `DefaultIcon` component to package.
|
|
45
|
+
- Readded `DefaultIcon` component to package.
|
|
32
46
|
|
|
33
47
|
### 2.2.2 - 2.2.4
|
|
34
48
|
|