groovinads-ui 1.2.48 → 1.2.49
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 +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.js +3 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groovinads-ui",
|
|
3
3
|
"description": "Groovinads UI is a React component library designed exclusively for Groovinads applications. It provides ready-to-use UI elements styled according to Groovinads design guidelines to facilitate rapid development.",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.49",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
7
7
|
"sass",
|
package/src/index.js
CHANGED
|
@@ -6,6 +6,8 @@ import DropdownComponent from './components/Dropdowns/DropdownComponent';
|
|
|
6
6
|
import DropdownFilter from './components/Dropdowns/DropdownFilter';
|
|
7
7
|
import DropdownMultiSelect from './components/Dropdowns/DropdownMultiSelect';
|
|
8
8
|
import DropdownDatePicker from './components/Dropdowns/DropdownsDatePicker/DropdownDatePicker';
|
|
9
|
+
import DropdownSimpleDatePicker from './components/Dropdowns/DropdownSimpleDatePicker';
|
|
10
|
+
|
|
9
11
|
// Inputs
|
|
10
12
|
import Checkbox from './components/Inputs/Checkbox';
|
|
11
13
|
import Input from './components/Inputs/Input';
|
|
@@ -38,6 +40,7 @@ export {
|
|
|
38
40
|
DropdownComponent,
|
|
39
41
|
DropdownFilter,
|
|
40
42
|
DropdownMultiSelect,
|
|
43
|
+
DropdownSimpleDatePicker,
|
|
41
44
|
DropdownDatePicker,
|
|
42
45
|
// Inputs
|
|
43
46
|
Checkbox,
|