amis 1.3.2 → 1.3.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/compat.js +3 -1
- package/lib/compat.js.map +2 -2
- package/lib/components/Overlay.js +6 -3
- package/lib/components/Overlay.js.map +2 -2
- package/lib/components/Transfer.js +3 -2
- package/lib/components/Transfer.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Carousel.js +5 -2
- package/lib/renderers/Carousel.js.map +2 -2
- package/lib/renderers/Form/Transfer.d.ts +4 -0
- package/lib/renderers/Form/Transfer.js +2 -2
- package/lib/renderers/Form/Transfer.js.map +2 -2
- package/lib/renderers/Image.d.ts +12 -0
- package/lib/renderers/Image.js +9 -4
- package/lib/renderers/Image.js.map +2 -2
- package/lib/themes/ang-ie11.css +19 -16
- package/lib/themes/ang.css +19 -16
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +19 -16
- package/lib/themes/antd.css +19 -16
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +19 -16
- package/lib/themes/cxd.css +19 -16
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +19 -16
- package/lib/themes/dark.css +19 -16
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +19 -16
- package/lib/themes/default.css.map +1 -1
- package/package.json +1 -1
- package/schema.json +31 -14
- package/scss/components/_carousel.scss +23 -21
- package/scss/components/_images.scss +0 -1
- package/sdk/ang-ie11.css +20 -17
- package/sdk/ang.css +20 -17
- package/sdk/antd-ie11.css +20 -17
- package/sdk/antd.css +20 -17
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +20 -17
- package/sdk/cxd.css +20 -17
- package/sdk/dark-ie11.css +20 -17
- package/sdk/dark.css +20 -17
- 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 +25 -25
- package/sdk/rich-text.js +63 -63
- package/sdk/sdk-ie11.css +20 -17
- package/sdk/sdk.css +20 -17
- package/sdk/sdk.js +1115 -1113
- 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/compat.ts +5 -1
- package/src/components/Overlay.tsx +9 -6
- package/src/components/Transfer.tsx +3 -1
- package/src/renderers/Carousel.tsx +13 -1
- package/src/renderers/Form/Transfer.tsx +7 -0
- package/src/renderers/Image.tsx +38 -1
package/package.json
CHANGED
package/schema.json
CHANGED
@@ -10868,6 +10868,18 @@
|
|
10868
10868
|
"16:9"
|
10869
10869
|
],
|
10870
10870
|
"description": "预览图比率"
|
10871
|
+
},
|
10872
|
+
"href": {
|
10873
|
+
"$ref": "#/definitions/SchemaTpl",
|
10874
|
+
"description": "链接地址"
|
10875
|
+
},
|
10876
|
+
"blank": {
|
10877
|
+
"type": "boolean",
|
10878
|
+
"description": "是否新窗口打开"
|
10879
|
+
},
|
10880
|
+
"htmlTarget": {
|
10881
|
+
"type": "string",
|
10882
|
+
"description": "链接的 target"
|
10871
10883
|
}
|
10872
10884
|
},
|
10873
10885
|
"required": [
|
@@ -36311,6 +36323,11 @@
|
|
36311
36323
|
"items": {},
|
36312
36324
|
"description": "当 selectMode 为 table 时定义表格列信息。"
|
36313
36325
|
},
|
36326
|
+
"searchResultColumns": {
|
36327
|
+
"type": "array",
|
36328
|
+
"items": {},
|
36329
|
+
"description": "当 searchResultMode 为 table 时定义表格列信息。"
|
36330
|
+
},
|
36314
36331
|
"searchable": {
|
36315
36332
|
"type": "boolean",
|
36316
36333
|
"description": "可搜索?"
|
@@ -37480,7 +37497,7 @@
|
|
37480
37497
|
"$ref": "#/definitions/ImageSchema",
|
37481
37498
|
"additionalProperties": false,
|
37482
37499
|
"patternProperties": {
|
37483
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|label|labelClassName|popOver|quickEdit|copyable)$": {}
|
37500
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|label|labelClassName|popOver|quickEdit|copyable)$": {}
|
37484
37501
|
}
|
37485
37502
|
},
|
37486
37503
|
{
|
@@ -38026,7 +38043,7 @@
|
|
38026
38043
|
"$ref": "#/definitions/TransferControlSchema",
|
38027
38044
|
"additionalProperties": false,
|
38028
38045
|
"patternProperties": {
|
38029
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|popOver|quickEdit|copyable)$": {}
|
38046
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|popOver|quickEdit|copyable)$": {}
|
38030
38047
|
}
|
38031
38048
|
},
|
38032
38049
|
{
|
@@ -38239,7 +38256,7 @@
|
|
38239
38256
|
"$ref": "#/definitions/ImageSchema",
|
38240
38257
|
"additionalProperties": false,
|
38241
38258
|
"patternProperties": {
|
38242
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|label|labelClassName|popOver|quickEdit|copyable)$": {}
|
38259
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|label|labelClassName|popOver|quickEdit|copyable)$": {}
|
38243
38260
|
}
|
38244
38261
|
},
|
38245
38262
|
{
|
@@ -38785,7 +38802,7 @@
|
|
38785
38802
|
"$ref": "#/definitions/TransferControlSchema",
|
38786
38803
|
"additionalProperties": false,
|
38787
38804
|
"patternProperties": {
|
38788
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|popOver|quickEdit|copyable)$": {}
|
38805
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|popOver|quickEdit|copyable)$": {}
|
38789
38806
|
}
|
38790
38807
|
},
|
38791
38808
|
{
|
@@ -38998,7 +39015,7 @@
|
|
38998
39015
|
"$ref": "#/definitions/ImageSchema",
|
38999
39016
|
"additionalProperties": false,
|
39000
39017
|
"patternProperties": {
|
39001
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|label|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|sortable|searchable|toggled|filterable|breakpoint|remark)$": {}
|
39018
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|label|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|sortable|searchable|toggled|filterable|breakpoint|remark)$": {}
|
39002
39019
|
}
|
39003
39020
|
},
|
39004
39021
|
{
|
@@ -39544,7 +39561,7 @@
|
|
39544
39561
|
"$ref": "#/definitions/TransferControlSchema",
|
39545
39562
|
"additionalProperties": false,
|
39546
39563
|
"patternProperties": {
|
39547
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|toggled|width|filterable|breakpoint)$": {}
|
39564
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|fixed|popOver|quickEdit|quickEditOnUpdate|copyable|toggled|width|filterable|breakpoint)$": {}
|
39548
39565
|
}
|
39549
39566
|
},
|
39550
39567
|
{
|
@@ -39757,7 +39774,7 @@
|
|
39757
39774
|
"$ref": "#/definitions/ImageSchema",
|
39758
39775
|
"additionalProperties": false,
|
39759
39776
|
"patternProperties": {
|
39760
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|x|y|w|h|align|valign|gridClassName)$": {}
|
39777
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|x|y|w|h|align|valign|gridClassName)$": {}
|
39761
39778
|
}
|
39762
39779
|
},
|
39763
39780
|
{
|
@@ -40303,7 +40320,7 @@
|
|
40303
40320
|
"$ref": "#/definitions/TransferControlSchema",
|
40304
40321
|
"additionalProperties": false,
|
40305
40322
|
"patternProperties": {
|
40306
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|x|y|w|h|width|height|align|valign|gridClassName)$": {}
|
40323
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|x|y|w|h|width|height|align|valign|gridClassName)$": {}
|
40307
40324
|
}
|
40308
40325
|
},
|
40309
40326
|
{
|
@@ -40516,7 +40533,7 @@
|
|
40516
40533
|
"$ref": "#/definitions/ImageSchema",
|
40517
40534
|
"additionalProperties": false,
|
40518
40535
|
"patternProperties": {
|
40519
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|rowClassName|cellClassName)$": {}
|
40536
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|rowClassName|cellClassName)$": {}
|
40520
40537
|
}
|
40521
40538
|
},
|
40522
40539
|
{
|
@@ -41062,7 +41079,7 @@
|
|
41062
41079
|
"$ref": "#/definitions/TransferControlSchema",
|
41063
41080
|
"additionalProperties": false,
|
41064
41081
|
"patternProperties": {
|
41065
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|rowClassName|cellClassName)$": {}
|
41082
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|rowClassName|cellClassName)$": {}
|
41066
41083
|
}
|
41067
41084
|
},
|
41068
41085
|
{
|
@@ -41275,7 +41292,7 @@
|
|
41275
41292
|
"$ref": "#/definitions/ImageSchema",
|
41276
41293
|
"additionalProperties": false,
|
41277
41294
|
"patternProperties": {
|
41278
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|unique|columnClassName)$": {}
|
41295
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|unique|columnClassName)$": {}
|
41279
41296
|
}
|
41280
41297
|
},
|
41281
41298
|
{
|
@@ -41821,7 +41838,7 @@
|
|
41821
41838
|
"$ref": "#/definitions/TransferControlSchema",
|
41822
41839
|
"additionalProperties": false,
|
41823
41840
|
"patternProperties": {
|
41824
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|unique|columnClassName)$": {}
|
41841
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|unique|columnClassName)$": {}
|
41825
41842
|
}
|
41826
41843
|
},
|
41827
41844
|
{
|
@@ -42034,7 +42051,7 @@
|
|
42034
42051
|
"$ref": "#/definitions/ImageSchema",
|
42035
42052
|
"additionalProperties": false,
|
42036
42053
|
"patternProperties": {
|
42037
|
-
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|columnClassName|columnRatio)$": {}
|
42054
|
+
"^(type|className|$ref|disabled|disabledOn|hidden|hiddenOn|visible|visibleOn|defaultImage|title|name|imageCaption|src|originalSrc|enlargeAble|alt|height|width|imageClassName|thumbClassName|caption|imageMode|thumbMode|thumbRatio|href|blank|htmlTarget|columnClassName|columnRatio)$": {}
|
42038
42055
|
}
|
42039
42056
|
},
|
42040
42057
|
{
|
@@ -42580,7 +42597,7 @@
|
|
42580
42597
|
"$ref": "#/definitions/TransferControlSchema",
|
42581
42598
|
"additionalProperties": false,
|
42582
42599
|
"patternProperties": {
|
42583
|
-
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchable|searchApi|selectTitle|resultTitle|columnClassName|columnRatio)$": {}
|
42600
|
+
"^(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|options|source|selectFirst|initFetchOn|initFetch|multiple|joinValues|delimiter|extractValue|clearable|resetValue|deferApi|addApi|addControls|creatable|createBtnLabel|editable|editApi|editControls|removable|deleteApi|deleteConfirmText|autoFill|showArrow|sortable|selectMode|leftOptions|leftMode|rightMode|searchResultMode|columns|searchResultColumns|searchable|searchApi|selectTitle|resultTitle|columnClassName|columnRatio)$": {}
|
42584
42601
|
}
|
42585
42602
|
},
|
42586
42603
|
{
|
@@ -3,6 +3,8 @@
|
|
3
3
|
min-width: var(--Carousel-arrowControl-width);
|
4
4
|
height: 100%;
|
5
5
|
cursor: pointer;
|
6
|
+
top: 0;
|
7
|
+
bottom: 0;
|
6
8
|
position: absolute;
|
7
9
|
transition-duration: var(--Carousel-transitionDuration);
|
8
10
|
svg {
|
@@ -161,6 +163,27 @@
|
|
161
163
|
}
|
162
164
|
}
|
163
165
|
|
166
|
+
.#{$ns}Carousel-leftArrow {
|
167
|
+
@include arrow-control;
|
168
|
+
display: none;
|
169
|
+
left: 0;
|
170
|
+
}
|
171
|
+
|
172
|
+
.#{$ns}Carousel-rightArrow {
|
173
|
+
@include arrow-control;
|
174
|
+
display: none;
|
175
|
+
right: 0;
|
176
|
+
}
|
177
|
+
|
178
|
+
&:hover {
|
179
|
+
.#{$ns}Carousel-leftArrow {
|
180
|
+
display: block;
|
181
|
+
}
|
182
|
+
.#{$ns}Carousel-rightArrow {
|
183
|
+
display: block;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
164
187
|
&-arrowsControl {
|
165
188
|
position: absolute;
|
166
189
|
width: 100%;
|
@@ -169,26 +192,5 @@
|
|
169
192
|
left: 0;
|
170
193
|
z-index: 100;
|
171
194
|
text-align: center;
|
172
|
-
|
173
|
-
.#{$ns}Carousel-leftArrow {
|
174
|
-
@include arrow-control;
|
175
|
-
display: none;
|
176
|
-
left: 0;
|
177
|
-
}
|
178
|
-
|
179
|
-
.#{$ns}Carousel-rightArrow {
|
180
|
-
@include arrow-control;
|
181
|
-
display: none;
|
182
|
-
right: 0;
|
183
|
-
}
|
184
|
-
|
185
|
-
&:hover {
|
186
|
-
.#{$ns}Carousel-leftArrow {
|
187
|
-
display: block;
|
188
|
-
}
|
189
|
-
.#{$ns}Carousel-rightArrow {
|
190
|
-
display: block;
|
191
|
-
}
|
192
|
-
}
|
193
195
|
}
|
194
196
|
}
|
@@ -37,7 +37,6 @@
|
|
37
37
|
&-thumb {
|
38
38
|
width: px2rem(110px);
|
39
39
|
height: px2rem(110px);
|
40
|
-
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=');
|
41
40
|
position: relative;
|
42
41
|
overflow: hidden;
|
43
42
|
|
package/sdk/ang-ie11.css
CHANGED
@@ -28433,28 +28433,20 @@ readers do not read off random characters that represent icons */
|
|
28433
28433
|
opacity: 1;
|
28434
28434
|
}
|
28435
28435
|
|
28436
|
-
.amis-scope .a-Carousel-
|
28437
|
-
position: absolute;
|
28438
|
-
width: 100%;
|
28439
|
-
height: 100%;
|
28440
|
-
top: 0;
|
28441
|
-
left: 0;
|
28442
|
-
z-index: 100;
|
28443
|
-
text-align: center;
|
28444
|
-
}
|
28445
|
-
|
28446
|
-
.amis-scope .a-Carousel-arrowsControl .a-Carousel-leftArrow {
|
28436
|
+
.amis-scope .a-Carousel .a-Carousel-leftArrow {
|
28447
28437
|
width: 10%;
|
28448
28438
|
min-width: 1.25rem;
|
28449
28439
|
height: 100%;
|
28450
28440
|
cursor: pointer;
|
28441
|
+
top: 0;
|
28442
|
+
bottom: 0;
|
28451
28443
|
position: absolute;
|
28452
28444
|
transition-duration: 0.2s;
|
28453
28445
|
display: none;
|
28454
28446
|
left: 0;
|
28455
28447
|
}
|
28456
28448
|
|
28457
|
-
.amis-scope .a-Carousel
|
28449
|
+
.amis-scope .a-Carousel .a-Carousel-leftArrow svg {
|
28458
28450
|
position: absolute;
|
28459
28451
|
top: 50%;
|
28460
28452
|
left: 50%;
|
@@ -28464,18 +28456,20 @@ readers do not read off random characters that represent icons */
|
|
28464
28456
|
height: 1.25rem;
|
28465
28457
|
}
|
28466
28458
|
|
28467
|
-
.amis-scope .a-Carousel
|
28459
|
+
.amis-scope .a-Carousel .a-Carousel-rightArrow {
|
28468
28460
|
width: 10%;
|
28469
28461
|
min-width: 1.25rem;
|
28470
28462
|
height: 100%;
|
28471
28463
|
cursor: pointer;
|
28464
|
+
top: 0;
|
28465
|
+
bottom: 0;
|
28472
28466
|
position: absolute;
|
28473
28467
|
transition-duration: 0.2s;
|
28474
28468
|
display: none;
|
28475
28469
|
right: 0;
|
28476
28470
|
}
|
28477
28471
|
|
28478
|
-
.amis-scope .a-Carousel
|
28472
|
+
.amis-scope .a-Carousel .a-Carousel-rightArrow svg {
|
28479
28473
|
position: absolute;
|
28480
28474
|
top: 50%;
|
28481
28475
|
left: 50%;
|
@@ -28485,14 +28479,24 @@ readers do not read off random characters that represent icons */
|
|
28485
28479
|
height: 1.25rem;
|
28486
28480
|
}
|
28487
28481
|
|
28488
|
-
.amis-scope .a-Carousel
|
28482
|
+
.amis-scope .a-Carousel:hover .a-Carousel-leftArrow {
|
28489
28483
|
display: block;
|
28490
28484
|
}
|
28491
28485
|
|
28492
|
-
.amis-scope .a-Carousel
|
28486
|
+
.amis-scope .a-Carousel:hover .a-Carousel-rightArrow {
|
28493
28487
|
display: block;
|
28494
28488
|
}
|
28495
28489
|
|
28490
|
+
.amis-scope .a-Carousel-arrowsControl {
|
28491
|
+
position: absolute;
|
28492
|
+
width: 100%;
|
28493
|
+
height: 100%;
|
28494
|
+
top: 0;
|
28495
|
+
left: 0;
|
28496
|
+
z-index: 100;
|
28497
|
+
text-align: center;
|
28498
|
+
}
|
28499
|
+
|
28496
28500
|
@keyframes disappear {
|
28497
28501
|
to {
|
28498
28502
|
opacity: 0;
|
@@ -28743,7 +28747,6 @@ readers do not read off random characters that represent icons */
|
|
28743
28747
|
.amis-scope .a-Image-thumb {
|
28744
28748
|
width: 6.875rem;
|
28745
28749
|
height: 6.875rem;
|
28746
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
28747
28750
|
position: relative;
|
28748
28751
|
overflow: hidden;
|
28749
28752
|
}
|
package/sdk/ang.css
CHANGED
@@ -29572,28 +29572,20 @@ readers do not read off random characters that represent icons */
|
|
29572
29572
|
opacity: 1;
|
29573
29573
|
}
|
29574
29574
|
|
29575
|
-
.amis-scope .a-Carousel-
|
29576
|
-
position: absolute;
|
29577
|
-
width: 100%;
|
29578
|
-
height: 100%;
|
29579
|
-
top: 0;
|
29580
|
-
left: 0;
|
29581
|
-
z-index: 100;
|
29582
|
-
text-align: center;
|
29583
|
-
}
|
29584
|
-
|
29585
|
-
.amis-scope .a-Carousel-arrowsControl .a-Carousel-leftArrow {
|
29575
|
+
.amis-scope .a-Carousel .a-Carousel-leftArrow {
|
29586
29576
|
width: 10%;
|
29587
29577
|
min-width: var(--Carousel-arrowControl-width);
|
29588
29578
|
height: 100%;
|
29589
29579
|
cursor: pointer;
|
29580
|
+
top: 0;
|
29581
|
+
bottom: 0;
|
29590
29582
|
position: absolute;
|
29591
29583
|
transition-duration: var(--Carousel-transitionDuration);
|
29592
29584
|
display: none;
|
29593
29585
|
left: 0;
|
29594
29586
|
}
|
29595
29587
|
|
29596
|
-
.amis-scope .a-Carousel
|
29588
|
+
.amis-scope .a-Carousel .a-Carousel-leftArrow svg {
|
29597
29589
|
position: absolute;
|
29598
29590
|
top: 50%;
|
29599
29591
|
left: 50%;
|
@@ -29603,18 +29595,20 @@ readers do not read off random characters that represent icons */
|
|
29603
29595
|
height: var(--Carousel-svg-height);
|
29604
29596
|
}
|
29605
29597
|
|
29606
|
-
.amis-scope .a-Carousel
|
29598
|
+
.amis-scope .a-Carousel .a-Carousel-rightArrow {
|
29607
29599
|
width: 10%;
|
29608
29600
|
min-width: var(--Carousel-arrowControl-width);
|
29609
29601
|
height: 100%;
|
29610
29602
|
cursor: pointer;
|
29603
|
+
top: 0;
|
29604
|
+
bottom: 0;
|
29611
29605
|
position: absolute;
|
29612
29606
|
transition-duration: var(--Carousel-transitionDuration);
|
29613
29607
|
display: none;
|
29614
29608
|
right: 0;
|
29615
29609
|
}
|
29616
29610
|
|
29617
|
-
.amis-scope .a-Carousel
|
29611
|
+
.amis-scope .a-Carousel .a-Carousel-rightArrow svg {
|
29618
29612
|
position: absolute;
|
29619
29613
|
top: 50%;
|
29620
29614
|
left: 50%;
|
@@ -29624,14 +29618,24 @@ readers do not read off random characters that represent icons */
|
|
29624
29618
|
height: var(--Carousel-svg-height);
|
29625
29619
|
}
|
29626
29620
|
|
29627
|
-
.amis-scope .a-Carousel
|
29621
|
+
.amis-scope .a-Carousel:hover .a-Carousel-leftArrow {
|
29628
29622
|
display: block;
|
29629
29623
|
}
|
29630
29624
|
|
29631
|
-
.amis-scope .a-Carousel
|
29625
|
+
.amis-scope .a-Carousel:hover .a-Carousel-rightArrow {
|
29632
29626
|
display: block;
|
29633
29627
|
}
|
29634
29628
|
|
29629
|
+
.amis-scope .a-Carousel-arrowsControl {
|
29630
|
+
position: absolute;
|
29631
|
+
width: 100%;
|
29632
|
+
height: 100%;
|
29633
|
+
top: 0;
|
29634
|
+
left: 0;
|
29635
|
+
z-index: 100;
|
29636
|
+
text-align: center;
|
29637
|
+
}
|
29638
|
+
|
29635
29639
|
@keyframes disappear {
|
29636
29640
|
to {
|
29637
29641
|
opacity: 0;
|
@@ -29882,7 +29886,6 @@ readers do not read off random characters that represent icons */
|
|
29882
29886
|
.amis-scope .a-Image-thumb {
|
29883
29887
|
width: 6.875rem;
|
29884
29888
|
height: 6.875rem;
|
29885
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
29886
29889
|
position: relative;
|
29887
29890
|
overflow: hidden;
|
29888
29891
|
}
|
package/sdk/antd-ie11.css
CHANGED
@@ -28413,28 +28413,20 @@ readers do not read off random characters that represent icons */
|
|
28413
28413
|
opacity: 1;
|
28414
28414
|
}
|
28415
28415
|
|
28416
|
-
.amis-scope .antd-Carousel-
|
28417
|
-
position: absolute;
|
28418
|
-
width: 100%;
|
28419
|
-
height: 100%;
|
28420
|
-
top: 0;
|
28421
|
-
left: 0;
|
28422
|
-
z-index: 100;
|
28423
|
-
text-align: center;
|
28424
|
-
}
|
28425
|
-
|
28426
|
-
.amis-scope .antd-Carousel-arrowsControl .antd-Carousel-leftArrow {
|
28416
|
+
.amis-scope .antd-Carousel .antd-Carousel-leftArrow {
|
28427
28417
|
width: 10%;
|
28428
28418
|
min-width: 1.25rem;
|
28429
28419
|
height: 100%;
|
28430
28420
|
cursor: pointer;
|
28421
|
+
top: 0;
|
28422
|
+
bottom: 0;
|
28431
28423
|
position: absolute;
|
28432
28424
|
transition-duration: 0.2s;
|
28433
28425
|
display: none;
|
28434
28426
|
left: 0;
|
28435
28427
|
}
|
28436
28428
|
|
28437
|
-
.amis-scope .antd-Carousel
|
28429
|
+
.amis-scope .antd-Carousel .antd-Carousel-leftArrow svg {
|
28438
28430
|
position: absolute;
|
28439
28431
|
top: 50%;
|
28440
28432
|
left: 50%;
|
@@ -28444,18 +28436,20 @@ readers do not read off random characters that represent icons */
|
|
28444
28436
|
height: 1.25rem;
|
28445
28437
|
}
|
28446
28438
|
|
28447
|
-
.amis-scope .antd-Carousel
|
28439
|
+
.amis-scope .antd-Carousel .antd-Carousel-rightArrow {
|
28448
28440
|
width: 10%;
|
28449
28441
|
min-width: 1.25rem;
|
28450
28442
|
height: 100%;
|
28451
28443
|
cursor: pointer;
|
28444
|
+
top: 0;
|
28445
|
+
bottom: 0;
|
28452
28446
|
position: absolute;
|
28453
28447
|
transition-duration: 0.2s;
|
28454
28448
|
display: none;
|
28455
28449
|
right: 0;
|
28456
28450
|
}
|
28457
28451
|
|
28458
|
-
.amis-scope .antd-Carousel
|
28452
|
+
.amis-scope .antd-Carousel .antd-Carousel-rightArrow svg {
|
28459
28453
|
position: absolute;
|
28460
28454
|
top: 50%;
|
28461
28455
|
left: 50%;
|
@@ -28465,14 +28459,24 @@ readers do not read off random characters that represent icons */
|
|
28465
28459
|
height: 1.25rem;
|
28466
28460
|
}
|
28467
28461
|
|
28468
|
-
.amis-scope .antd-Carousel
|
28462
|
+
.amis-scope .antd-Carousel:hover .antd-Carousel-leftArrow {
|
28469
28463
|
display: block;
|
28470
28464
|
}
|
28471
28465
|
|
28472
|
-
.amis-scope .antd-Carousel
|
28466
|
+
.amis-scope .antd-Carousel:hover .antd-Carousel-rightArrow {
|
28473
28467
|
display: block;
|
28474
28468
|
}
|
28475
28469
|
|
28470
|
+
.amis-scope .antd-Carousel-arrowsControl {
|
28471
|
+
position: absolute;
|
28472
|
+
width: 100%;
|
28473
|
+
height: 100%;
|
28474
|
+
top: 0;
|
28475
|
+
left: 0;
|
28476
|
+
z-index: 100;
|
28477
|
+
text-align: center;
|
28478
|
+
}
|
28479
|
+
|
28476
28480
|
@keyframes disappear {
|
28477
28481
|
to {
|
28478
28482
|
opacity: 0;
|
@@ -28723,7 +28727,6 @@ readers do not read off random characters that represent icons */
|
|
28723
28727
|
.amis-scope .antd-Image-thumb {
|
28724
28728
|
width: 6.875rem;
|
28725
28729
|
height: 6.875rem;
|
28726
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
28727
28730
|
position: relative;
|
28728
28731
|
overflow: hidden;
|
28729
28732
|
}
|
package/sdk/antd.css
CHANGED
@@ -29680,28 +29680,20 @@ readers do not read off random characters that represent icons */
|
|
29680
29680
|
opacity: 1;
|
29681
29681
|
}
|
29682
29682
|
|
29683
|
-
.amis-scope .antd-Carousel-
|
29684
|
-
position: absolute;
|
29685
|
-
width: 100%;
|
29686
|
-
height: 100%;
|
29687
|
-
top: 0;
|
29688
|
-
left: 0;
|
29689
|
-
z-index: 100;
|
29690
|
-
text-align: center;
|
29691
|
-
}
|
29692
|
-
|
29693
|
-
.amis-scope .antd-Carousel-arrowsControl .antd-Carousel-leftArrow {
|
29683
|
+
.amis-scope .antd-Carousel .antd-Carousel-leftArrow {
|
29694
29684
|
width: 10%;
|
29695
29685
|
min-width: var(--Carousel-arrowControl-width);
|
29696
29686
|
height: 100%;
|
29697
29687
|
cursor: pointer;
|
29688
|
+
top: 0;
|
29689
|
+
bottom: 0;
|
29698
29690
|
position: absolute;
|
29699
29691
|
transition-duration: var(--Carousel-transitionDuration);
|
29700
29692
|
display: none;
|
29701
29693
|
left: 0;
|
29702
29694
|
}
|
29703
29695
|
|
29704
|
-
.amis-scope .antd-Carousel
|
29696
|
+
.amis-scope .antd-Carousel .antd-Carousel-leftArrow svg {
|
29705
29697
|
position: absolute;
|
29706
29698
|
top: 50%;
|
29707
29699
|
left: 50%;
|
@@ -29711,18 +29703,20 @@ readers do not read off random characters that represent icons */
|
|
29711
29703
|
height: var(--Carousel-svg-height);
|
29712
29704
|
}
|
29713
29705
|
|
29714
|
-
.amis-scope .antd-Carousel
|
29706
|
+
.amis-scope .antd-Carousel .antd-Carousel-rightArrow {
|
29715
29707
|
width: 10%;
|
29716
29708
|
min-width: var(--Carousel-arrowControl-width);
|
29717
29709
|
height: 100%;
|
29718
29710
|
cursor: pointer;
|
29711
|
+
top: 0;
|
29712
|
+
bottom: 0;
|
29719
29713
|
position: absolute;
|
29720
29714
|
transition-duration: var(--Carousel-transitionDuration);
|
29721
29715
|
display: none;
|
29722
29716
|
right: 0;
|
29723
29717
|
}
|
29724
29718
|
|
29725
|
-
.amis-scope .antd-Carousel
|
29719
|
+
.amis-scope .antd-Carousel .antd-Carousel-rightArrow svg {
|
29726
29720
|
position: absolute;
|
29727
29721
|
top: 50%;
|
29728
29722
|
left: 50%;
|
@@ -29732,14 +29726,24 @@ readers do not read off random characters that represent icons */
|
|
29732
29726
|
height: var(--Carousel-svg-height);
|
29733
29727
|
}
|
29734
29728
|
|
29735
|
-
.amis-scope .antd-Carousel
|
29729
|
+
.amis-scope .antd-Carousel:hover .antd-Carousel-leftArrow {
|
29736
29730
|
display: block;
|
29737
29731
|
}
|
29738
29732
|
|
29739
|
-
.amis-scope .antd-Carousel
|
29733
|
+
.amis-scope .antd-Carousel:hover .antd-Carousel-rightArrow {
|
29740
29734
|
display: block;
|
29741
29735
|
}
|
29742
29736
|
|
29737
|
+
.amis-scope .antd-Carousel-arrowsControl {
|
29738
|
+
position: absolute;
|
29739
|
+
width: 100%;
|
29740
|
+
height: 100%;
|
29741
|
+
top: 0;
|
29742
|
+
left: 0;
|
29743
|
+
z-index: 100;
|
29744
|
+
text-align: center;
|
29745
|
+
}
|
29746
|
+
|
29743
29747
|
@keyframes disappear {
|
29744
29748
|
to {
|
29745
29749
|
opacity: 0;
|
@@ -29990,7 +29994,6 @@ readers do not read off random characters that represent icons */
|
|
29990
29994
|
.amis-scope .antd-Image-thumb {
|
29991
29995
|
width: 6.875rem;
|
29992
29996
|
height: 6.875rem;
|
29993
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
29994
29997
|
position: relative;
|
29995
29998
|
overflow: hidden;
|
29996
29999
|
}
|