sea-chart 1.1.99 → 1.1.100
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.
|
@@ -127,16 +127,7 @@
|
|
|
127
127
|
color: #666666;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
.setting-item-
|
|
131
|
-
cursor: pointer;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.setting-item-permission-title.disable:hover {
|
|
135
|
-
cursor: default;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.setting-item .filters-setting-btn.disable:hover,
|
|
139
|
-
.setting-item .setting-item-permission-title.disabled:hover {
|
|
130
|
+
.setting-item .filters-setting-btn.disable:hover {
|
|
140
131
|
cursor: not-allowed;
|
|
141
132
|
color: hsl(0, 0%, 60%);
|
|
142
133
|
background-color: hsl(0, 0%, 95%);
|
|
@@ -151,27 +142,6 @@
|
|
|
151
142
|
color: #666666;
|
|
152
143
|
}
|
|
153
144
|
|
|
154
|
-
.setting-item .setting-item-permission-title .dtable-icon-right {
|
|
155
|
-
color: #ccc;
|
|
156
|
-
font-size: 10px;
|
|
157
|
-
cursor: pointer;
|
|
158
|
-
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.setting-item .setting-item-permission-title .dtable-icon-right:hover {
|
|
162
|
-
color: #666666;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.setting-item .setting-item-permission-title .dtable-icon-right.rotate {
|
|
166
|
-
transform: rotate(90deg);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.setting-item .setting-item-permission-title.disabled {
|
|
170
|
-
padding: 3px 4px;
|
|
171
|
-
border-radius: 4px;
|
|
172
|
-
line-height: 22px;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
145
|
.setting-item .check-record-format-switch .custom-switch .custom-switch-description {
|
|
176
146
|
width: 230px;
|
|
177
147
|
white-space: break-spaces;
|
package/dist/utils/index.js
CHANGED
|
@@ -231,7 +231,7 @@ export const getEventClassName = e => {
|
|
|
231
231
|
return e.target.getAttribute('class') || '';
|
|
232
232
|
};
|
|
233
233
|
export const getFirstDayOfWeekForGroupby = source => {
|
|
234
|
-
let firstDayOfWeek = '
|
|
234
|
+
let firstDayOfWeek = 'Sunday';
|
|
235
235
|
if (source === 'base') {
|
|
236
236
|
const {
|
|
237
237
|
settings
|
|
@@ -248,6 +248,6 @@ export const getFirstDayOfWeekForGroupby = source => {
|
|
|
248
248
|
} = dtableSettings || {};
|
|
249
249
|
firstDayOfWeek = date_settings === null || date_settings === void 0 ? void 0 : date_settings.first_day_of_week;
|
|
250
250
|
}
|
|
251
|
-
return firstDayOfWeek || '
|
|
251
|
+
return firstDayOfWeek || 'Sunday';
|
|
252
252
|
};
|
|
253
253
|
export { ObjectUtils, chartColumn2SqlColumn, summaryMethodColumn2SqlColumn, ChartUtils, ChartDataSQL, BaseUtils };
|