beer-assembly-biz 1.1.2-alpha.2 → 1.1.2-alpha.4

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/AppLayout.js CHANGED
@@ -182,7 +182,7 @@ const Component = (props) => {
182
182
  paddingInlineLayoutMenu: 4,
183
183
  colorMenuBackground: '#fff',
184
184
  colorTextMenu: 'rgb(87, 89, 102)',
185
- colorTextMenuSelected: 'rgb(51, 51, 51)',
185
+ colorTextMenuSelected: 'rgba(0,0,0,0.8)',
186
186
  colorBgMenuItemSelected: 'rgba(0,0,0,0.08)'
187
187
  },
188
188
  pageContainer: {
@@ -207,7 +207,7 @@ const Component = (props) => {
207
207
  });
208
208
  }
209
209
  return React.createElement(React.Fragment, null, props?.collapsed ? undefined : React.createElement("div", { style: {
210
- padding: props?.isMobile ? '12px 10px' : '2px 0',
210
+ padding: '2px 0',
211
211
  textIndent: 10,
212
212
  fontSize: 15,
213
213
  color: '#333',
package/UserModals.js CHANGED
@@ -28,7 +28,7 @@ export class UserModals {
28
28
  }
29
29
  };
30
30
  return [handler, React.createElement(React.Fragment, null,
31
- React.createElement(Modal, { title: "\u91CD\u7F6E\u5BC6\u7801", width: 380, open: isOpenModal, onOk: () => onConfirm(), onCancel: () => setIsOpenModal(false), styles: { body: { padding: '12px 0' } } },
31
+ React.createElement(Modal, { title: "\u91CD\u7F6E\u5BC6\u7801", width: 340, open: isOpenModal, onOk: () => onConfirm(), onCancel: () => setIsOpenModal(false), styles: { body: { padding: '6px 0' } } },
32
32
  React.createElement(Form, { form: form, labelCol: { span: 5 } },
33
33
  React.createElement(Form.Item, { name: "password", style: { margin: 0 }, rules: [{
34
34
  required: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "beer-assembly-biz",
3
3
  "private": false,
4
- "version": "1.1.2-alpha.2",
4
+ "version": "1.1.2-alpha.4",
5
5
  "scripts": {
6
6
  "pub-w": "tsc && copy package.json .\\dist\\package.json && npm publish ./dist",
7
7
  "pub-m": "tsc && cp -a src/icon ./dist && cp -a src/fonts ./dist && cp -a src/images ./dist && cp package.json ./dist/package.json && npm publish ./dist"