@lemon-fe/components 1.4.17-alpha.2 → 1.4.17-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.
@@ -16,7 +16,7 @@
16
16
  min-height: 0;
17
17
 
18
18
  &-empty-overlay {
19
- color: fade(#333333, 50);
19
+ color: fade(@text-color, 50);
20
20
  font-size: 14px;
21
21
  pointer-events: all;
22
22
  }
@@ -252,7 +252,7 @@
252
252
  margin-bottom: 8px;
253
253
  padding: 0 12px;
254
254
  overflow: hidden;
255
- color: fade(#333, 80);
255
+ color: fade(@text-color, 80);
256
256
  line-height: 32px;
257
257
  white-space: nowrap;
258
258
  text-overflow: ellipsis;
@@ -541,12 +541,12 @@
541
541
  --ag-icon-size: 16px;
542
542
  --ag-background-color: #fff;
543
543
  --ag-odd-row-background-color: #fafbfb;
544
- --ag-foreground-color: #333;
544
+ --ag-foreground-color: @text-color;
545
545
  --ag-border-color: #eaeaea;
546
546
  --ag-row-hover-color: #eee;
547
547
  --ag-header-background-color: #f2f3f5;
548
548
  --ag-header-cell-moving-background-color: rgba(0, 0, 0, 0.06);
549
- --ag-header-foreground-color: fade(#333, 80);
549
+ --ag-header-foreground-color: fade(@text-color, 80);
550
550
  --ag-chip-background-color: #eee;
551
551
  --ag-control-panel-background-color: #fafbfd;
552
552
  --ag-header-column-resize-handle-display: block;
@@ -226,8 +226,7 @@ function DurationPicker(originalProps) {
226
226
  }),
227
227
  disabled: disabled,
228
228
  style: {
229
- marginRight: 8,
230
- color: '#666'
229
+ marginRight: 8
231
230
  },
232
231
  onSelect: function onSelect(_, opt) {
233
232
  handleChangeType(opt.item);
@@ -237,8 +236,7 @@ function DurationPicker(originalProps) {
237
236
  disabled: disabled
238
237
  }, /*#__PURE__*/React.createElement(Select, {
239
238
  style: {
240
- minWidth: 110,
241
- color: '#666'
239
+ minWidth: 110
242
240
  },
243
241
  options: options.map(function (item) {
244
242
  return {
package/es/popup/index.js CHANGED
@@ -205,6 +205,7 @@ function Popup(props) {
205
205
  centered: true,
206
206
  onCancel: handleCancel,
207
207
  afterClose: handleAfterClose,
208
+ enableFullscreen: restProps.width === undefined,
208
209
  onOk: function onOk() {
209
210
  return handleOk();
210
211
  },
@@ -2,7 +2,7 @@
2
2
  position: relative;
3
3
  width: 100%;
4
4
  padding: @padding-md;
5
- color: #333;
5
+ color: @text-color;
6
6
 
7
7
  & + & {
8
8
  padding-top: 0;
@@ -9,12 +9,12 @@ a[title='站长统计'] {
9
9
  }
10
10
 
11
11
  /** basic */
12
+ @text-color: #000;
12
13
 
13
14
  @height-base: 32px;
14
15
  @border-color-base: #d9d9d9;
15
16
  @border-color-split: #dcdcdc;
16
17
  @border-radius-base: 4px;
17
- @label-color: #666666;
18
18
 
19
19
  @padding-lg: 16px;
20
20
  @padding-md: 12px;
@@ -75,7 +75,7 @@ a[title='站长统计'] {
75
75
  @modal-border-radius: 8px;
76
76
  @modal-footer-border-width: 0;
77
77
  @modal-confirm-body-padding: 0;
78
- @modal-mask-bg: fade(@black, 30%);
78
+ @modal-mask-bg: fade(@text-color, 30%);
79
79
 
80
80
  .@{ant-prefix}-modal-content {
81
81
  padding: @padding-md;
@@ -105,7 +105,7 @@ a[title='站长统计'] {
105
105
  }
106
106
 
107
107
  .@{ant-prefix}-modal-confirm-body .@{ant-prefix}-modal-confirm-content {
108
- color: fade(#333, 70);
108
+ color: fade(@text-color, 70);
109
109
  }
110
110
 
111
111
  .@{ant-prefix}-modal-close {
@@ -129,20 +129,8 @@ a[title='站长统计'] {
129
129
 
130
130
  /** pagination */
131
131
 
132
- .@{ant-prefix}-pagination {
133
- color: #666;
134
-
135
- .@{ant-prefix}-select {
136
- color: #666;
137
- }
138
- }
139
-
140
132
  .@{ant-prefix}-pagination-item {
141
133
  font-size: 12px;
142
-
143
- a {
144
- color: #666;
145
- }
146
134
  }
147
135
 
148
136
  .@{ant-prefix}-pagination-item-active {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lemon-fe/components",
3
- "version": "1.4.17-alpha.2",
3
+ "version": "1.4.17-alpha.4",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "MIT",
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "registry": "https://registry.npmjs.org"
60
60
  },
61
- "gitHead": "a88348d41f402297b2a4db7acf5b3b13c73705f1"
61
+ "gitHead": "c1ce7e3f9a90fc12e216be1850df2d4b4b8a737d"
62
62
  }