@plusscommunities/pluss-core-web 1.2.8 → 1.2.9-beta.0

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.cjs.js CHANGED
@@ -8311,7 +8311,8 @@ var TimePicker = /*#__PURE__*/function (_Component) {
8311
8311
 
8312
8312
  if (disabled) {
8313
8313
  return /*#__PURE__*/React__default['default'].createElement("div", {
8314
- className: "timepicker disabled"
8314
+ className: "timepicker disabled",
8315
+ style: this.props.style
8315
8316
  }, /*#__PURE__*/React__default['default'].createElement("span", {
8316
8317
  className: "timepicker__span",
8317
8318
  style: this.props.inputStyle
@@ -8319,7 +8320,8 @@ var TimePicker = /*#__PURE__*/function (_Component) {
8319
8320
  }
8320
8321
 
8321
8322
  return /*#__PURE__*/React__default['default'].createElement("div", {
8322
- className: "timepicker ".concat(this.props.className)
8323
+ className: "timepicker ".concat(this.props.className),
8324
+ style: this.props.style
8323
8325
  }, /*#__PURE__*/React__default['default'].createElement("input", {
8324
8326
  className: "timepicker__input",
8325
8327
  maxLength: "2",
package/dist/index.esm.js CHANGED
@@ -8284,7 +8284,8 @@ var TimePicker = /*#__PURE__*/function (_Component) {
8284
8284
 
8285
8285
  if (disabled) {
8286
8286
  return /*#__PURE__*/React.createElement("div", {
8287
- className: "timepicker disabled"
8287
+ className: "timepicker disabled",
8288
+ style: this.props.style
8288
8289
  }, /*#__PURE__*/React.createElement("span", {
8289
8290
  className: "timepicker__span",
8290
8291
  style: this.props.inputStyle
@@ -8292,7 +8293,8 @@ var TimePicker = /*#__PURE__*/function (_Component) {
8292
8293
  }
8293
8294
 
8294
8295
  return /*#__PURE__*/React.createElement("div", {
8295
- className: "timepicker ".concat(this.props.className)
8296
+ className: "timepicker ".concat(this.props.className),
8297
+ style: this.props.style
8296
8298
  }, /*#__PURE__*/React.createElement("input", {
8297
8299
  className: "timepicker__input",
8298
8300
  maxLength: "2",
package/dist/index.umd.js CHANGED
@@ -8286,7 +8286,8 @@
8286
8286
 
8287
8287
  if (disabled) {
8288
8288
  return /*#__PURE__*/React__default['default'].createElement("div", {
8289
- className: "timepicker disabled"
8289
+ className: "timepicker disabled",
8290
+ style: this.props.style
8290
8291
  }, /*#__PURE__*/React__default['default'].createElement("span", {
8291
8292
  className: "timepicker__span",
8292
8293
  style: this.props.inputStyle
@@ -8294,7 +8295,8 @@
8294
8295
  }
8295
8296
 
8296
8297
  return /*#__PURE__*/React__default['default'].createElement("div", {
8297
- className: "timepicker ".concat(this.props.className)
8298
+ className: "timepicker ".concat(this.props.className),
8299
+ style: this.props.style
8298
8300
  }, /*#__PURE__*/React__default['default'].createElement("input", {
8299
8301
  className: "timepicker__input",
8300
8302
  maxLength: "2",
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@plusscommunities/pluss-core-web",
3
- "version": "1.2.8",
3
+ "version": "1.2.9-beta.0",
4
4
  "description": "Core extension package for Pluss Communities platform",
5
5
  "main": "dist/index.cjs.js",
6
6
  "scripts": {
7
7
  "build": "npm i && rollup -c",
8
+ "betapatch": "npm version prepatch --preid=beta",
8
9
  "patch": "npm version patch",
9
- "upload": "npm run build && npm publish --access public && rm -rf node_modules",
10
+ "betaupload": "npm run build && npm publish --access public --tag beta",
11
+ "betaupload:p": "npm run betapatch && npm run betaupload",
12
+ "upload": "npm run build && npm publish --access public",
10
13
  "upload:p": "npm run patch && npm run upload"
11
14
  },
12
15
  "author": "Phillip Suh",
@@ -149,7 +149,7 @@ class TimePicker extends Component {
149
149
  const { disabled } = this.props;
150
150
  if (disabled) {
151
151
  return (
152
- <div className="timepicker disabled">
152
+ <div className="timepicker disabled" style={this.props.style}>
153
153
  <span
154
154
  className="timepicker__span"
155
155
  style={this.props.inputStyle}
@@ -158,7 +158,7 @@ class TimePicker extends Component {
158
158
  );
159
159
  }
160
160
  return (
161
- <div className={`timepicker ${this.props.className}`}>
161
+ <div className={`timepicker ${this.props.className}`} style={this.props.style}>
162
162
  <input
163
163
  className="timepicker__input"
164
164
  maxLength="2"