@secondstaxorg/sscomp 1.7.64 → 1.7.66
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/index.es.js +14 -7
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +166 -142
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +11 -4
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/CountrySelector/CountrySelector.d.ts +1 -0
- package/types/components/DropdownList/DropdownList.d.ts +1 -0
- package/types/components/PasswordField/PasswordField.d.ts +1 -0
- package/types/components/Selector/Selector.d.ts +1 -0
- package/types/components/TextArea/TextArea.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TextAreaProps } from "./type";
|
|
3
|
+
import '../../styles/typography.css';
|
|
3
4
|
/**
|
|
4
5
|
* Component to display a textarea field in a form. This mimics the behavior of a regular HTML <code><textarea></code> element and accepts the same props as it along with the custom ones defined.
|
|
5
6
|
*/
|