amis 1.5.2 → 1.5.3
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/lib/components/Collapse.js +1 -1
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/DatePicker.d.ts +178 -84
- package/lib/components/DatePicker.js +25 -4
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/calendar/Calendar.d.ts +8 -0
- package/lib/components/calendar/Calendar.js +4 -1
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.d.ts +8 -0
- package/lib/components/calendar/DaysView.js +71 -0
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Form/InputDate.d.ts +25 -0
- package/lib/renderers/Form/InputDate.js +48 -3
- package/lib/renderers/Form/InputDate.js.map +2 -2
- package/lib/renderers/Status.js +1 -1
- package/lib/renderers/Status.js.map +2 -2
- package/lib/themes/ang-ie11.css +78 -1
- package/lib/themes/ang.css +78 -1
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +78 -2
- package/lib/themes/antd.css +78 -2
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +86 -1
- package/lib/themes/cxd.css +86 -1
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +78 -1
- package/lib/themes/dark.css +78 -1
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +86 -1
- package/lib/themes/default.css.map +1 -1
- package/package.json +2 -2
- package/schema.json +52 -7
- package/scss/_properties.scss +1 -1
- package/scss/components/_calendar.scss +81 -0
- package/scss/components/_toast.scss +3 -0
- package/scss/themes/_antd-variables.scss +0 -2
- package/scss/themes/_common.scss +1 -0
- package/scss/themes/_cxd-variables.scss +9 -0
- package/sdk/ang-ie11.css +90 -1
- package/sdk/ang.css +90 -1
- package/sdk/antd-ie11.css +89 -0
- package/sdk/antd.css +90 -2
- package/sdk/charts.js +15 -15
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +90 -1
- package/sdk/cxd.css +98 -1
- package/sdk/dark-ie11.css +90 -1
- package/sdk/dark.css +90 -1
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +90 -1
- package/sdk/sdk.css +98 -1
- package/sdk/sdk.js +1182 -1182
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/components/Collapse.tsx +1 -1
- package/src/components/DatePicker.tsx +41 -3
- package/src/components/calendar/Calendar.tsx +12 -1
- package/src/components/calendar/DaysView.tsx +89 -0
- package/src/renderers/Form/InputDate.tsx +83 -2
- package/src/renderers/Status.tsx +3 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "amis",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.3",
|
4
4
|
"description": "一种MIS页面生成工具",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"scripts": {
|
@@ -38,7 +38,7 @@
|
|
38
38
|
}
|
39
39
|
],
|
40
40
|
"dependencies": {
|
41
|
-
"amis-formula": "^1.2.
|
41
|
+
"amis-formula": "^1.2.7",
|
42
42
|
"ansi-to-react": "^6.1.6",
|
43
43
|
"async": "2.6.0",
|
44
44
|
"attr-accept": "2.2.2",
|
package/schema.json
CHANGED
@@ -20127,6 +20127,51 @@
|
|
20127
20127
|
"maxDate": {
|
20128
20128
|
"type": "string",
|
20129
20129
|
"description": "限制最大日期"
|
20130
|
+
},
|
20131
|
+
"schedules": {
|
20132
|
+
"anyOf": [
|
20133
|
+
{
|
20134
|
+
"type": "array",
|
20135
|
+
"items": {
|
20136
|
+
"type": "object",
|
20137
|
+
"properties": {
|
20138
|
+
"startTime": {
|
20139
|
+
"type": "string",
|
20140
|
+
"format": "date-time"
|
20141
|
+
},
|
20142
|
+
"endTime": {
|
20143
|
+
"type": "string",
|
20144
|
+
"format": "date-time"
|
20145
|
+
},
|
20146
|
+
"content": {},
|
20147
|
+
"className": {
|
20148
|
+
"type": "string"
|
20149
|
+
}
|
20150
|
+
},
|
20151
|
+
"required": [
|
20152
|
+
"startTime",
|
20153
|
+
"endTime",
|
20154
|
+
"content"
|
20155
|
+
],
|
20156
|
+
"additionalProperties": false
|
20157
|
+
}
|
20158
|
+
},
|
20159
|
+
{
|
20160
|
+
"type": "string"
|
20161
|
+
}
|
20162
|
+
],
|
20163
|
+
"description": "日程"
|
20164
|
+
},
|
20165
|
+
"scheduleClassNames": {
|
20166
|
+
"type": "array",
|
20167
|
+
"items": {
|
20168
|
+
"type": "string"
|
20169
|
+
},
|
20170
|
+
"description": "日程显示颜色自定义"
|
20171
|
+
},
|
20172
|
+
"scheduleAction": {
|
20173
|
+
"$ref": "#/definitions/SchemaObject",
|
20174
|
+
"description": "日程点击展示"
|
20130
20175
|
}
|
20131
20176
|
},
|
20132
20177
|
"required": [
|
@@ -40179,7 +40224,7 @@
|
|
40179
40224
|
"$ref": "#/definitions/DateControlSchema",
|
40180
40225
|
"additionalProperties": false,
|
40181
40226
|
"patternProperties": {
|
40182
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|popOver|quickEdit|copyable)$": {}
|
40227
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|popOver|quickEdit|copyable)$": {}
|
40183
40228
|
}
|
40184
40229
|
},
|
40185
40230
|
{
|
@@ -40966,7 +41011,7 @@
|
|
40966
41011
|
"$ref": "#/definitions/DateControlSchema",
|
40967
41012
|
"additionalProperties": false,
|
40968
41013
|
"patternProperties": {
|
40969
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|popOver|quickEdit|copyable)$": {}
|
41014
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|popOver|quickEdit|copyable)$": {}
|
40970
41015
|
}
|
40971
41016
|
},
|
40972
41017
|
{
|
@@ -41753,7 +41798,7 @@
|
|
41753
41798
|
"$ref": "#/definitions/DateControlSchema",
|
41754
41799
|
"additionalProperties": false,
|
41755
41800
|
"patternProperties": {
|
41756
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|sortable|searchable|toggled|width|align|classNameExpr|filterable|breakpoint|unique)$": {}
|
41801
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|sortable|searchable|toggled|width|align|classNameExpr|filterable|breakpoint|unique)$": {}
|
41757
41802
|
}
|
41758
41803
|
},
|
41759
41804
|
{
|
@@ -42540,7 +42585,7 @@
|
|
42540
42585
|
"$ref": "#/definitions/DateControlSchema",
|
42541
42586
|
"additionalProperties": false,
|
42542
42587
|
"patternProperties": {
|
42543
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|x|y|w|h|width|height|align|valign|gridClassName)$": {}
|
42588
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|x|y|w|h|width|height|align|valign|gridClassName)$": {}
|
42544
42589
|
}
|
42545
42590
|
},
|
42546
42591
|
{
|
@@ -43327,7 +43372,7 @@
|
|
43327
43372
|
"$ref": "#/definitions/DateControlSchema",
|
43328
43373
|
"additionalProperties": false,
|
43329
43374
|
"patternProperties": {
|
43330
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|rowClassName|cellClassName)$": {}
|
43375
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|rowClassName|cellClassName)$": {}
|
43331
43376
|
}
|
43332
43377
|
},
|
43333
43378
|
{
|
@@ -44114,7 +44159,7 @@
|
|
44114
44159
|
"$ref": "#/definitions/DateControlSchema",
|
44115
44160
|
"additionalProperties": false,
|
44116
44161
|
"patternProperties": {
|
44117
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|unique|columnClassName)$": {}
|
44162
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|unique|columnClassName)$": {}
|
44118
44163
|
}
|
44119
44164
|
},
|
44120
44165
|
{
|
@@ -44901,7 +44946,7 @@
|
|
44901
44946
|
"$ref": "#/definitions/DateControlSchema",
|
44902
44947
|
"additionalProperties": false,
|
44903
44948
|
"patternProperties": {
|
44904
|
-
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|columnClassName|columnRatio)$": {}
|
44949
|
+
"^(className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|type|size|label|labelClassName|name|remark|labelRemark|hint|submitOnChange|readOnly|validateOnChange|description|desc|descriptionClassName|mode|horizontal|inline|inputClassName|placeholder|required|validationErrors|validations|value|clearValueOnHidden|validateApi|clearable|format|inputFormat|utc|emebed|borderMode|closeOnSelect|minDate|maxDate|schedules|scheduleClassNames|scheduleAction|columnClassName|columnRatio)$": {}
|
44905
44950
|
}
|
44906
44951
|
},
|
44907
44952
|
{
|
package/scss/_properties.scss
CHANGED
@@ -0,0 +1,81 @@
|
|
1
|
+
|
2
|
+
.#{$ns}ScheduleCalendar {
|
3
|
+
&-icon {
|
4
|
+
position: absolute;
|
5
|
+
bottom: var(--Calendar-icon-bottom);
|
6
|
+
left: 50%;
|
7
|
+
transform: translateX(-50%);
|
8
|
+
display: block;
|
9
|
+
width: var(--Calendar-icon-width);
|
10
|
+
height: var(--Calendar-icon-height);
|
11
|
+
border-radius: 50%;
|
12
|
+
z-index: 10;
|
13
|
+
}
|
14
|
+
&-action {
|
15
|
+
display: block;
|
16
|
+
padding: 0;
|
17
|
+
width: 100%;
|
18
|
+
height: 100%;
|
19
|
+
border: none;
|
20
|
+
background: transparent;
|
21
|
+
color: inherit;
|
22
|
+
&:not(:disabled):not(.is-disabled):hover {
|
23
|
+
color: inherit;
|
24
|
+
background: transparent;
|
25
|
+
border-color: transparent;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
.rdtDay {
|
29
|
+
position: relative;
|
30
|
+
}
|
31
|
+
|
32
|
+
&-text-overflow {
|
33
|
+
white-space:nowrap;
|
34
|
+
overflow:hidden;
|
35
|
+
text-overflow:ellipsis;
|
36
|
+
position: absolute;
|
37
|
+
width: 100%;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.#{$ns}ScheduleCalendar-large {
|
42
|
+
width: 100%;
|
43
|
+
|
44
|
+
.rdtPicker {
|
45
|
+
width: 100%;
|
46
|
+
table {
|
47
|
+
border-collapse: collapse;
|
48
|
+
border-spacing: 0;
|
49
|
+
td {
|
50
|
+
border: var(--Calendar-borderWidth) solid var(--borderColor);
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
.rdtDay {
|
56
|
+
height: var(--Calendar-rdt-day);
|
57
|
+
vertical-align: top;
|
58
|
+
}
|
59
|
+
|
60
|
+
.#{$ns}ScheduleCalendar-large-day-wrap {
|
61
|
+
position: absolute;
|
62
|
+
top: 0;
|
63
|
+
left: 0;
|
64
|
+
min-width: 100%;
|
65
|
+
height: 100%;
|
66
|
+
.#{$ns}ScheduleCalendar-large-schedule-content {
|
67
|
+
position: relative;
|
68
|
+
z-index: 10;
|
69
|
+
border-radius: var(--borderRadius);
|
70
|
+
text-align: left;
|
71
|
+
padding: var(--Calendar-schedule-content-padding);
|
72
|
+
height: var(--Calendar-schedule-content-height);
|
73
|
+
color: var(--Calendar-schedule-content-color);
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
.#{$ns}ScheduleCalendar-action {
|
78
|
+
z-index: 20;
|
79
|
+
position: relative;
|
80
|
+
}
|
81
|
+
}
|
package/scss/themes/_common.scss
CHANGED
@@ -221,6 +221,15 @@ $L1: 0px 4px 6px 0px rgba(8, 14, 26, 0.06),
|
|
221
221
|
--Switch-onDisabled-color: #{$G11};
|
222
222
|
// --Switch-onDisabled-circle-BackgroundColor: #fff;
|
223
223
|
|
224
|
+
--Calendar-icon-bottom: #{px2rem(-4px)};
|
225
|
+
--Calendar-icon-width: #{px2rem(10px)};
|
226
|
+
--Calendar-icon-height: #{px2rem(10px)};
|
227
|
+
--Calendar-borderWidth: #{px2rem(1px)};
|
228
|
+
--Calendar-rdt-day: #{px2rem(100px)};
|
229
|
+
--Calendar-schedule-content-padding: 0 #{px2rem(4px)};
|
230
|
+
--Calendar-schedule-content-height: #{px2rem(20px)};
|
231
|
+
--Calendar-schedule-content-color: #{$white};
|
232
|
+
|
224
233
|
--ColorPicker-borderWidth: #{px2rem(1px)};
|
225
234
|
--ColorPicker-borderRadius: #{$R3};
|
226
235
|
--ColorPicker-bg: var(--white);
|
package/sdk/ang-ie11.css
CHANGED
@@ -23058,6 +23058,10 @@ readers do not read off random characters that represent icons */
|
|
23058
23058
|
line-height: 1.5rem;
|
23059
23059
|
}
|
23060
23060
|
|
23061
|
+
.amis-scope .a-Toast-content .a-Toast-body .a-Html {
|
23062
|
+
word-break: break-word;
|
23063
|
+
}
|
23064
|
+
|
23061
23065
|
.amis-scope .a-Toast-icon {
|
23062
23066
|
display: inline-flex;
|
23063
23067
|
text-rendering: auto;
|
@@ -25163,6 +25167,91 @@ readers do not read off random characters that represent icons */
|
|
25163
25167
|
padding: 0.5rem;
|
25164
25168
|
}
|
25165
25169
|
|
25170
|
+
.amis-scope .a-ScheduleCalendar-icon {
|
25171
|
+
position: absolute;
|
25172
|
+
bottom: var(--Calendar-icon-bottom);
|
25173
|
+
left: 50%;
|
25174
|
+
transform: translateX(-50%);
|
25175
|
+
display: block;
|
25176
|
+
width: var(--Calendar-icon-width);
|
25177
|
+
height: var(--Calendar-icon-height);
|
25178
|
+
border-radius: 50%;
|
25179
|
+
z-index: 10;
|
25180
|
+
}
|
25181
|
+
|
25182
|
+
.amis-scope .a-ScheduleCalendar-action {
|
25183
|
+
display: block;
|
25184
|
+
padding: 0;
|
25185
|
+
width: 100%;
|
25186
|
+
height: 100%;
|
25187
|
+
border: none;
|
25188
|
+
background: transparent;
|
25189
|
+
color: inherit;
|
25190
|
+
}
|
25191
|
+
|
25192
|
+
.amis-scope .a-ScheduleCalendar-action:not(:disabled):not(.is-disabled):hover {
|
25193
|
+
color: inherit;
|
25194
|
+
background: transparent;
|
25195
|
+
border-color: transparent;
|
25196
|
+
}
|
25197
|
+
|
25198
|
+
.amis-scope .a-ScheduleCalendar .rdtDay {
|
25199
|
+
position: relative;
|
25200
|
+
}
|
25201
|
+
|
25202
|
+
.amis-scope .a-ScheduleCalendar-text-overflow {
|
25203
|
+
white-space: nowrap;
|
25204
|
+
overflow: hidden;
|
25205
|
+
text-overflow: ellipsis;
|
25206
|
+
position: absolute;
|
25207
|
+
width: 100%;
|
25208
|
+
}
|
25209
|
+
|
25210
|
+
.amis-scope .a-ScheduleCalendar-large {
|
25211
|
+
width: 100%;
|
25212
|
+
}
|
25213
|
+
|
25214
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker {
|
25215
|
+
width: 100%;
|
25216
|
+
}
|
25217
|
+
|
25218
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker table {
|
25219
|
+
border-collapse: collapse;
|
25220
|
+
border-spacing: 0;
|
25221
|
+
}
|
25222
|
+
|
25223
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker table td {
|
25224
|
+
border: var(--Calendar-borderWidth) solid #d1d5db;
|
25225
|
+
}
|
25226
|
+
|
25227
|
+
.amis-scope .a-ScheduleCalendar-large .rdtDay {
|
25228
|
+
height: var(--Calendar-rdt-day);
|
25229
|
+
vertical-align: top;
|
25230
|
+
}
|
25231
|
+
|
25232
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-large-day-wrap {
|
25233
|
+
position: absolute;
|
25234
|
+
top: 0;
|
25235
|
+
left: 0;
|
25236
|
+
min-width: 100%;
|
25237
|
+
height: 100%;
|
25238
|
+
}
|
25239
|
+
|
25240
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-large-day-wrap .a-ScheduleCalendar-large-schedule-content {
|
25241
|
+
position: relative;
|
25242
|
+
z-index: 10;
|
25243
|
+
border-radius: 0.142rem;
|
25244
|
+
text-align: left;
|
25245
|
+
padding: var(--Calendar-schedule-content-padding);
|
25246
|
+
height: var(--Calendar-schedule-content-height);
|
25247
|
+
color: var(--Calendar-schedule-content-color);
|
25248
|
+
}
|
25249
|
+
|
25250
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-action {
|
25251
|
+
z-index: 20;
|
25252
|
+
position: relative;
|
25253
|
+
}
|
25254
|
+
|
25166
25255
|
.amis-scope .a-Collapse {
|
25167
25256
|
border: none;
|
25168
25257
|
padding: 0;
|
@@ -29137,7 +29226,7 @@ readers do not read off random characters that represent icons */
|
|
29137
29226
|
|
29138
29227
|
.amis-scope .a-Divider {
|
29139
29228
|
margin: 0.75rem calc(0.75rem * -1);
|
29140
|
-
border-bottom: 0.0625rem
|
29229
|
+
border-bottom: 0.0625rem solid #d1d5db;
|
29141
29230
|
height: 0.125rem;
|
29142
29231
|
font-size: 0;
|
29143
29232
|
}
|
package/sdk/ang.css
CHANGED
@@ -19661,7 +19661,7 @@ readers do not read off random characters that represent icons */
|
|
19661
19661
|
);
|
19662
19662
|
--DatePicker-placeholderColor: var(--Form-input-placeholderColor);
|
19663
19663
|
--LocationPicker-borderRadius: var(--Form-input-borderWidth);
|
19664
|
-
--Divider-borderStyle:
|
19664
|
+
--Divider-borderStyle: solid;
|
19665
19665
|
--Drawer-bg: var(--background);
|
19666
19666
|
--Drawer-body-padding: var(--gap-base);
|
19667
19667
|
--Drawer-close-color: rgba(255, 255, 255, 0.8);
|
@@ -24301,6 +24301,10 @@ readers do not read off random characters that represent icons */
|
|
24301
24301
|
line-height: var(--gap-xl);
|
24302
24302
|
}
|
24303
24303
|
|
24304
|
+
.amis-scope .a-Toast-content .a-Toast-body .a-Html {
|
24305
|
+
word-break: break-word;
|
24306
|
+
}
|
24307
|
+
|
24304
24308
|
.amis-scope .a-Toast-icon {
|
24305
24309
|
display: inline-flex;
|
24306
24310
|
text-rendering: auto;
|
@@ -26386,6 +26390,91 @@ readers do not read off random characters that represent icons */
|
|
26386
26390
|
padding: var(--gap-sm);
|
26387
26391
|
}
|
26388
26392
|
|
26393
|
+
.amis-scope .a-ScheduleCalendar-icon {
|
26394
|
+
position: absolute;
|
26395
|
+
bottom: var(--Calendar-icon-bottom);
|
26396
|
+
left: 50%;
|
26397
|
+
transform: translateX(-50%);
|
26398
|
+
display: block;
|
26399
|
+
width: var(--Calendar-icon-width);
|
26400
|
+
height: var(--Calendar-icon-height);
|
26401
|
+
border-radius: 50%;
|
26402
|
+
z-index: 10;
|
26403
|
+
}
|
26404
|
+
|
26405
|
+
.amis-scope .a-ScheduleCalendar-action {
|
26406
|
+
display: block;
|
26407
|
+
padding: 0;
|
26408
|
+
width: 100%;
|
26409
|
+
height: 100%;
|
26410
|
+
border: none;
|
26411
|
+
background: transparent;
|
26412
|
+
color: inherit;
|
26413
|
+
}
|
26414
|
+
|
26415
|
+
.amis-scope .a-ScheduleCalendar-action:not(:disabled):not(.is-disabled):hover {
|
26416
|
+
color: inherit;
|
26417
|
+
background: transparent;
|
26418
|
+
border-color: transparent;
|
26419
|
+
}
|
26420
|
+
|
26421
|
+
.amis-scope .a-ScheduleCalendar .rdtDay {
|
26422
|
+
position: relative;
|
26423
|
+
}
|
26424
|
+
|
26425
|
+
.amis-scope .a-ScheduleCalendar-text-overflow {
|
26426
|
+
white-space: nowrap;
|
26427
|
+
overflow: hidden;
|
26428
|
+
text-overflow: ellipsis;
|
26429
|
+
position: absolute;
|
26430
|
+
width: 100%;
|
26431
|
+
}
|
26432
|
+
|
26433
|
+
.amis-scope .a-ScheduleCalendar-large {
|
26434
|
+
width: 100%;
|
26435
|
+
}
|
26436
|
+
|
26437
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker {
|
26438
|
+
width: 100%;
|
26439
|
+
}
|
26440
|
+
|
26441
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker table {
|
26442
|
+
border-collapse: collapse;
|
26443
|
+
border-spacing: 0;
|
26444
|
+
}
|
26445
|
+
|
26446
|
+
.amis-scope .a-ScheduleCalendar-large .rdtPicker table td {
|
26447
|
+
border: var(--Calendar-borderWidth) solid var(--borderColor);
|
26448
|
+
}
|
26449
|
+
|
26450
|
+
.amis-scope .a-ScheduleCalendar-large .rdtDay {
|
26451
|
+
height: var(--Calendar-rdt-day);
|
26452
|
+
vertical-align: top;
|
26453
|
+
}
|
26454
|
+
|
26455
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-large-day-wrap {
|
26456
|
+
position: absolute;
|
26457
|
+
top: 0;
|
26458
|
+
left: 0;
|
26459
|
+
min-width: 100%;
|
26460
|
+
height: 100%;
|
26461
|
+
}
|
26462
|
+
|
26463
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-large-day-wrap .a-ScheduleCalendar-large-schedule-content {
|
26464
|
+
position: relative;
|
26465
|
+
z-index: 10;
|
26466
|
+
border-radius: var(--borderRadius);
|
26467
|
+
text-align: left;
|
26468
|
+
padding: var(--Calendar-schedule-content-padding);
|
26469
|
+
height: var(--Calendar-schedule-content-height);
|
26470
|
+
color: var(--Calendar-schedule-content-color);
|
26471
|
+
}
|
26472
|
+
|
26473
|
+
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-action {
|
26474
|
+
z-index: 20;
|
26475
|
+
position: relative;
|
26476
|
+
}
|
26477
|
+
|
26389
26478
|
.amis-scope .a-Collapse {
|
26390
26479
|
border: var(--Collapse-border);
|
26391
26480
|
padding: 0;
|
package/sdk/antd-ie11.css
CHANGED
@@ -23038,6 +23038,10 @@ readers do not read off random characters that represent icons */
|
|
23038
23038
|
line-height: 1.5rem;
|
23039
23039
|
}
|
23040
23040
|
|
23041
|
+
.amis-scope .antd-Toast-content .antd-Toast-body .antd-Html {
|
23042
|
+
word-break: break-word;
|
23043
|
+
}
|
23044
|
+
|
23041
23045
|
.amis-scope .antd-Toast-icon {
|
23042
23046
|
display: inline-flex;
|
23043
23047
|
text-rendering: auto;
|
@@ -25141,6 +25145,91 @@ readers do not read off random characters that represent icons */
|
|
25141
25145
|
padding: 0.5rem;
|
25142
25146
|
}
|
25143
25147
|
|
25148
|
+
.amis-scope .antd-ScheduleCalendar-icon {
|
25149
|
+
position: absolute;
|
25150
|
+
bottom: var(--Calendar-icon-bottom);
|
25151
|
+
left: 50%;
|
25152
|
+
transform: translateX(-50%);
|
25153
|
+
display: block;
|
25154
|
+
width: var(--Calendar-icon-width);
|
25155
|
+
height: var(--Calendar-icon-height);
|
25156
|
+
border-radius: 50%;
|
25157
|
+
z-index: 10;
|
25158
|
+
}
|
25159
|
+
|
25160
|
+
.amis-scope .antd-ScheduleCalendar-action {
|
25161
|
+
display: block;
|
25162
|
+
padding: 0;
|
25163
|
+
width: 100%;
|
25164
|
+
height: 100%;
|
25165
|
+
border: none;
|
25166
|
+
background: transparent;
|
25167
|
+
color: inherit;
|
25168
|
+
}
|
25169
|
+
|
25170
|
+
.amis-scope .antd-ScheduleCalendar-action:not(:disabled):not(.is-disabled):hover {
|
25171
|
+
color: inherit;
|
25172
|
+
background: transparent;
|
25173
|
+
border-color: transparent;
|
25174
|
+
}
|
25175
|
+
|
25176
|
+
.amis-scope .antd-ScheduleCalendar .rdtDay {
|
25177
|
+
position: relative;
|
25178
|
+
}
|
25179
|
+
|
25180
|
+
.amis-scope .antd-ScheduleCalendar-text-overflow {
|
25181
|
+
white-space: nowrap;
|
25182
|
+
overflow: hidden;
|
25183
|
+
text-overflow: ellipsis;
|
25184
|
+
position: absolute;
|
25185
|
+
width: 100%;
|
25186
|
+
}
|
25187
|
+
|
25188
|
+
.amis-scope .antd-ScheduleCalendar-large {
|
25189
|
+
width: 100%;
|
25190
|
+
}
|
25191
|
+
|
25192
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker {
|
25193
|
+
width: 100%;
|
25194
|
+
}
|
25195
|
+
|
25196
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker table {
|
25197
|
+
border-collapse: collapse;
|
25198
|
+
border-spacing: 0;
|
25199
|
+
}
|
25200
|
+
|
25201
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker table td {
|
25202
|
+
border: var(--Calendar-borderWidth) solid #eceff8;
|
25203
|
+
}
|
25204
|
+
|
25205
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtDay {
|
25206
|
+
height: var(--Calendar-rdt-day);
|
25207
|
+
vertical-align: top;
|
25208
|
+
}
|
25209
|
+
|
25210
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-large-day-wrap {
|
25211
|
+
position: absolute;
|
25212
|
+
top: 0;
|
25213
|
+
left: 0;
|
25214
|
+
min-width: 100%;
|
25215
|
+
height: 100%;
|
25216
|
+
}
|
25217
|
+
|
25218
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-large-day-wrap .antd-ScheduleCalendar-large-schedule-content {
|
25219
|
+
position: relative;
|
25220
|
+
z-index: 10;
|
25221
|
+
border-radius: 2px;
|
25222
|
+
text-align: left;
|
25223
|
+
padding: var(--Calendar-schedule-content-padding);
|
25224
|
+
height: var(--Calendar-schedule-content-height);
|
25225
|
+
color: var(--Calendar-schedule-content-color);
|
25226
|
+
}
|
25227
|
+
|
25228
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-action {
|
25229
|
+
z-index: 20;
|
25230
|
+
position: relative;
|
25231
|
+
}
|
25232
|
+
|
25144
25233
|
.amis-scope .antd-Collapse {
|
25145
25234
|
border: none;
|
25146
25235
|
padding: 0;
|