@pinuts/bsr-uikit-relaunch 0.3.2 → 0.3.3
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/assets/Icons/Functional/ChevronLeft.d.ts +2 -2
- package/dist/assets/Icons/Functional/ChevronLeft.js +4 -4
- package/dist/assets/Icons/Functional/ChevronLeft.jsx +4 -4
- package/dist/assets/Icons/Functional/ChevronRight.d.ts +2 -2
- package/dist/assets/Icons/Functional/ChevronRight.js +4 -4
- package/dist/assets/Icons/Functional/ChevronRight.jsx +4 -4
- package/dist/index.js +1 -1
- package/dist/items/eventWizardItems/EventDatePicker/CalendarEventPicker.js +1 -1
- package/dist/items/eventWizardItems/EventDatePicker/CalendarToolbar.js +4 -4
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ export default ChevronLeft;
|
|
|
2
2
|
declare function ChevronLeft(props: any): React.JSX.Element;
|
|
3
3
|
declare namespace ChevronLeft {
|
|
4
4
|
namespace propTypes {
|
|
5
|
-
let width: PropTypes.Requireable<string
|
|
6
|
-
let height: PropTypes.Requireable<string
|
|
5
|
+
let width: PropTypes.Requireable<NonNullable<string | number>>;
|
|
6
|
+
let height: PropTypes.Requireable<NonNullable<string | number>>;
|
|
7
7
|
let fill: PropTypes.Requireable<string>;
|
|
8
8
|
let stroke: PropTypes.Requireable<string>;
|
|
9
9
|
}
|
|
@@ -21,8 +21,8 @@ const ChevronLeft = props => {
|
|
|
21
21
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22
22
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23
23
|
viewBox: "0 0 24 24",
|
|
24
|
-
width: width,
|
|
25
|
-
height: height
|
|
24
|
+
width: width + '',
|
|
25
|
+
height: height + ''
|
|
26
26
|
}, restProps, {
|
|
27
27
|
fill: "none"
|
|
28
28
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -34,8 +34,8 @@ const ChevronLeft = props => {
|
|
|
34
34
|
}));
|
|
35
35
|
};
|
|
36
36
|
ChevronLeft.propTypes = {
|
|
37
|
-
width: _propTypes.default.string,
|
|
38
|
-
height: _propTypes.default.string,
|
|
37
|
+
width: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
38
|
+
height: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
39
39
|
fill: _propTypes.default.string,
|
|
40
40
|
stroke: _propTypes.default.string
|
|
41
41
|
};
|
|
@@ -14,8 +14,8 @@ const ChevronLeft = (props) => {
|
|
|
14
14
|
<svg
|
|
15
15
|
xmlns="http://www.w3.org/2000/svg"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
|
-
width={width}
|
|
18
|
-
height={height}
|
|
17
|
+
width={width + ''}
|
|
18
|
+
height={height + ''}
|
|
19
19
|
{...restProps}
|
|
20
20
|
fill="none"
|
|
21
21
|
>
|
|
@@ -31,8 +31,8 @@ const ChevronLeft = (props) => {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
ChevronLeft.propTypes = {
|
|
34
|
-
width: PropTypes.string,
|
|
35
|
-
height: PropTypes.string,
|
|
34
|
+
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
35
|
+
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
36
36
|
fill: PropTypes.string,
|
|
37
37
|
stroke: PropTypes.string,
|
|
38
38
|
};
|
|
@@ -2,8 +2,8 @@ export default ChevronRight;
|
|
|
2
2
|
declare function ChevronRight(props: any): React.JSX.Element;
|
|
3
3
|
declare namespace ChevronRight {
|
|
4
4
|
namespace propTypes {
|
|
5
|
-
let width: PropTypes.Requireable<string
|
|
6
|
-
let height: PropTypes.Requireable<string
|
|
5
|
+
let width: PropTypes.Requireable<NonNullable<string | number>>;
|
|
6
|
+
let height: PropTypes.Requireable<NonNullable<string | number>>;
|
|
7
7
|
let fill: PropTypes.Requireable<string>;
|
|
8
8
|
let stroke: PropTypes.Requireable<string>;
|
|
9
9
|
}
|
|
@@ -21,8 +21,8 @@ const ChevronRight = props => {
|
|
|
21
21
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22
22
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23
23
|
viewBox: "0 0 24 24",
|
|
24
|
-
width: width,
|
|
25
|
-
height: height
|
|
24
|
+
width: width + '',
|
|
25
|
+
height: height + ''
|
|
26
26
|
}, restProps, {
|
|
27
27
|
fill: "none"
|
|
28
28
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -34,8 +34,8 @@ const ChevronRight = props => {
|
|
|
34
34
|
}));
|
|
35
35
|
};
|
|
36
36
|
ChevronRight.propTypes = {
|
|
37
|
-
width: _propTypes.default.string,
|
|
38
|
-
height: _propTypes.default.string,
|
|
37
|
+
width: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
38
|
+
height: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
39
39
|
fill: _propTypes.default.string,
|
|
40
40
|
stroke: _propTypes.default.string
|
|
41
41
|
};
|
|
@@ -14,8 +14,8 @@ const ChevronRight = (props) => {
|
|
|
14
14
|
<svg
|
|
15
15
|
xmlns="http://www.w3.org/2000/svg"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
|
-
width={width}
|
|
18
|
-
height={height}
|
|
17
|
+
width={width + ''}
|
|
18
|
+
height={height + ''}
|
|
19
19
|
{...restProps}
|
|
20
20
|
fill="none"
|
|
21
21
|
>
|
|
@@ -31,8 +31,8 @@ const ChevronRight = (props) => {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
ChevronRight.propTypes = {
|
|
34
|
-
width: PropTypes.string,
|
|
35
|
-
height: PropTypes.string,
|
|
34
|
+
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
35
|
+
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
36
36
|
fill: PropTypes.string,
|
|
37
37
|
stroke: PropTypes.string,
|
|
38
38
|
};
|