Skip to content

Commit 9cbb231

Browse files
Feature/upload input v3 (#200)
* feat: build upload input v3 and tests * feat: new mui version of upload input V3 * v4.2.25-beta.1 * fix: copilot feedback * fix: few tweaks * v4.2.25-beta.2
1 parent 923ce32 commit 9cbb231

File tree

11 files changed

+934
-2
lines changed

11 files changed

+934
-2
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openstack-uicore-foundation",
3-
"version": "4.2.24",
3+
"version": "4.2.25-beta.2",
44
"description": "ui reactjs components for openstack marketing site",
55
"main": "lib/openstack-uicore-foundation.js",
66
"scripts": {
@@ -22,6 +22,7 @@
2222
"@babel/runtime": "^7.20.7",
2323
"@emotion/react": "^11.11.4",
2424
"@emotion/styled": "^11.11.5",
25+
"@mui/icons-material": "^7.3.9",
2526
"@mui/material": "^5.15.20",
2627
"@react-pdf/renderer": "^3.1.11",
2728
"awesome-bootstrap-checkbox": "^1.0.1",
@@ -105,6 +106,7 @@
105106
"peerDependencies": {
106107
"@emotion/react": "^11.11.4",
107108
"@emotion/styled": "^11.11.5",
109+
"@mui/icons-material": "^5.15.20",
108110
"@mui/material": "^5.15.20",
109111
"@react-pdf/renderer": "^3.1.11",
110112
"awesome-bootstrap-checkbox": "^1.0.1",

src/components/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export {default as DateTimePicker} from './inputs/datetimepicker'
99
export {default as GroupedDropdown} from './inputs/grouped-dropdown'
1010
export {default as UploadInput} from './inputs/upload-input'
1111
export {default as UploadInputV2} from './inputs/upload-input-v2'
12+
export {default as UploadInputV3} from './inputs/upload-input-v3'
1213
export {default as CompanyInput} from './inputs/company-input'
1314
export {default as PromocodeInput} from './inputs/promocode-input'
1415
export {default as SponsorInput} from './inputs/sponsor-input'
File renamed without changes.
File renamed without changes.

src/components/inputs/upload-input-v2/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
**/
1313

1414
import React from 'react'
15-
import DropzoneJS from './dropzone'
15+
import DropzoneJS from '../dropzone'
1616
import './index.less';
1717
import file_icon from '../upload-input/file.png';
1818
import ProgressiveImg from "../../progressive-img";

0 commit comments

Comments
 (0)