@taikai/rocket-kit 3.0.1 → 3.0.2
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/atoms/video-player/index.d.ts +2 -0
- package/dist/rocket-kit.cjs.development.js +8 -4
- package/dist/rocket-kit.cjs.development.js.map +1 -1
- package/dist/rocket-kit.cjs.production.min.js +3 -3
- package/dist/rocket-kit.cjs.production.min.js.map +1 -1
- package/dist/rocket-kit.esm.js +8 -4
- package/dist/rocket-kit.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/rocket-kit.esm.js
CHANGED
|
@@ -918,7 +918,7 @@ const Icon = props => {
|
|
|
918
918
|
const LabelStyle = /*#__PURE__*/_styled.label.withConfig({
|
|
919
919
|
displayName: "styles__LabelStyle",
|
|
920
920
|
componentId: "sc-pbv9we-0"
|
|
921
|
-
})(["display:flex;align-items:center;font-size:", ";font-weight:", ";color:", ";svg{margin-left:", ";width:auto;height:", ";}"], typography.fontSizeXs, typography.semiBold, colors.
|
|
921
|
+
})(["display:flex;align-items:center;font-size:", ";font-weight:", ";color:", ";svg{margin-left:", ";width:auto;height:", ";}"], typography.fontSizeXs, typography.semiBold, colors.grey500, /*#__PURE__*/rem('5px'), /*#__PURE__*/rem('16px'));
|
|
922
922
|
|
|
923
923
|
const Label = props => {
|
|
924
924
|
const {
|
|
@@ -1903,7 +1903,9 @@ const VideoPlayer = props => {
|
|
|
1903
1903
|
controls = false,
|
|
1904
1904
|
width = '100%',
|
|
1905
1905
|
height = '100%',
|
|
1906
|
-
onEnded
|
|
1906
|
+
onEnded,
|
|
1907
|
+
onReady,
|
|
1908
|
+
onError
|
|
1907
1909
|
} = props;
|
|
1908
1910
|
return /*#__PURE__*/React.createElement(Wrapper$4, null, /*#__PURE__*/React.createElement(ReactPlayer, {
|
|
1909
1911
|
style: {
|
|
@@ -1917,7 +1919,9 @@ const VideoPlayer = props => {
|
|
|
1917
1919
|
controls: controls,
|
|
1918
1920
|
width: width,
|
|
1919
1921
|
height: height,
|
|
1920
|
-
onEnded: onEnded
|
|
1922
|
+
onEnded: onEnded,
|
|
1923
|
+
onReady: onReady,
|
|
1924
|
+
onError: onError
|
|
1921
1925
|
}));
|
|
1922
1926
|
};
|
|
1923
1927
|
|
|
@@ -2823,7 +2827,7 @@ const TableDnD = props => {
|
|
|
2823
2827
|
const Wrapper$8 = /*#__PURE__*/_styled.div.withConfig({
|
|
2824
2828
|
displayName: "styles__Wrapper",
|
|
2825
2829
|
componentId: "sc-mbja2a-0"
|
|
2826
|
-
})(["display:inline-block;> label{margin-bottom:", ";color:", ";span{color:", ";}}&:not(:last-child){margin-bottom:", ";}"], /*#__PURE__*/rem('5px'), props => props.error ? field.errorBorderColor : colors.
|
|
2830
|
+
})(["display:inline-block;> label{margin-bottom:", ";color:", ";span{color:", ";}}&:not(:last-child){margin-bottom:", ";}"], /*#__PURE__*/rem('5px'), props => props.error ? field.errorBorderColor : colors.grey500, props => props.error ? field.errorBorderColor : field.color, /*#__PURE__*/rem('15px'));
|
|
2827
2831
|
|
|
2828
2832
|
const FormGroup = props => {
|
|
2829
2833
|
const {
|