naria-ui 0.3.37 → 0.4.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/README.md +2 -2
- package/dist/components/Select/Select.d.ts +2 -0
- package/dist/naria-ui.cjs.js +11 -11
- package/dist/naria-ui.es.js +1894 -1875
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/naria-ui)
|
|
4
4
|
[](https://www.npmjs.com/package/naria-ui)
|
|
5
|
-
[](https://github.com/Phoneticem/naria)
|
|
6
6
|
|
|
7
7
|
<!-- Add a license badge if you add a LICENSE file, e.g. MIT:
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -71,7 +71,7 @@ No configuration or environment variables are required.
|
|
|
71
71
|
## 🤝 Contributing & Support
|
|
72
72
|
|
|
73
73
|
Maintained by [phoneticem](phoneticem)
|
|
74
|
-
Email:
|
|
74
|
+
Email: phoneticem@gmail.com
|
|
75
75
|
GitHub: [phoneticem/naria](https://github.com/phoneticem/naria)
|
|
76
76
|
|
|
77
77
|
Feel free to open issues or pull requests!
|
|
@@ -4,6 +4,7 @@ interface Pagination {
|
|
|
4
4
|
pageLabel?: string;
|
|
5
5
|
size?: number;
|
|
6
6
|
sizeLabel?: string;
|
|
7
|
+
searchLabel?: string;
|
|
7
8
|
}
|
|
8
9
|
export interface props {
|
|
9
10
|
options?: any[];
|
|
@@ -11,6 +12,7 @@ export interface props {
|
|
|
11
12
|
title: string;
|
|
12
13
|
value?: string;
|
|
13
14
|
api?: string;
|
|
15
|
+
apiHeaders?: Headers;
|
|
14
16
|
hasError?: string | null;
|
|
15
17
|
selected?: any;
|
|
16
18
|
placeholder?: string;
|