@wavelengthusaf/components 2.3.5 → 2.5.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 +13 -0
- package/dist/cjs/index.cjs +581 -21
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +52 -4
- package/dist/components/PageComponents/WavelengthDragAndDrop.d.ts +14 -0
- package/dist/components/PageComponents/WavelengthDragAndDrop.d.ts.map +1 -0
- package/dist/components/TextField/WavelengthTextField.d.ts +18 -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/esm/index.d.ts +52 -4
- package/dist/esm/index.js +798 -238
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,19 @@ npm install @wavelengthusaf/components
|
|
|
14
14
|
|
|
15
15
|
## Release Notes
|
|
16
16
|
|
|
17
|
+
### 2.5.0
|
|
18
|
+
|
|
19
|
+
- 03/06/2025
|
|
20
|
+
- Added a new component, WavelengthDragAndDrop
|
|
21
|
+
- Updated WavelengthTextField component to take in a prop called type
|
|
22
|
+
|
|
23
|
+
### 2.4.0
|
|
24
|
+
|
|
25
|
+
- 03/03/2025
|
|
26
|
+
- Added 2 new components, WavelengthStyledButton, and WavelengthTextField
|
|
27
|
+
- Updated the confirmation modal to include more props making it more customizable
|
|
28
|
+
- Updated documentation to reflect these changes
|
|
29
|
+
|
|
17
30
|
### 2.3.5
|
|
18
31
|
|
|
19
32
|
- Updated WavelengthDropdown by adding default values to some of the props
|