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/sdk/antd.css
CHANGED
@@ -19665,7 +19665,7 @@ readers do not read off random characters that represent icons */
|
|
19665
19665
|
);
|
19666
19666
|
--DatePicker-placeholderColor: var(--Form-input-placeholderColor);
|
19667
19667
|
--LocationPicker-borderRadius: var(--Form-input-borderWidth);
|
19668
|
-
--Divider-borderStyle:
|
19668
|
+
--Divider-borderStyle: solid;
|
19669
19669
|
--Drawer-bg: var(--background);
|
19670
19670
|
--Drawer-body-padding: var(--gap-base);
|
19671
19671
|
--Drawer-close-color: rgba(255, 255, 255, 0.8);
|
@@ -20475,7 +20475,6 @@ readers do not read off random characters that represent icons */
|
|
20475
20475
|
--Radio-onDisabled-bg: #f5f5f5;
|
20476
20476
|
--Radio-onFocus-boxShadow: 0 0 0 3px rgb(24 144 255 / 8%);
|
20477
20477
|
--Rating-onActive-color: #fadb14;
|
20478
|
-
--Divider-borderStyle: solid;
|
20479
20478
|
--Panel--default-bg: #fff;
|
20480
20479
|
--Layout-aside-bg: #001529;
|
20481
20480
|
--Layout-brand-bg: #001529;
|
@@ -24409,6 +24408,10 @@ readers do not read off random characters that represent icons */
|
|
24409
24408
|
line-height: var(--gap-xl);
|
24410
24409
|
}
|
24411
24410
|
|
24411
|
+
.amis-scope .antd-Toast-content .antd-Toast-body .antd-Html {
|
24412
|
+
word-break: break-word;
|
24413
|
+
}
|
24414
|
+
|
24412
24415
|
.amis-scope .antd-Toast-icon {
|
24413
24416
|
display: inline-flex;
|
24414
24417
|
text-rendering: auto;
|
@@ -26494,6 +26497,91 @@ readers do not read off random characters that represent icons */
|
|
26494
26497
|
padding: var(--gap-sm);
|
26495
26498
|
}
|
26496
26499
|
|
26500
|
+
.amis-scope .antd-ScheduleCalendar-icon {
|
26501
|
+
position: absolute;
|
26502
|
+
bottom: var(--Calendar-icon-bottom);
|
26503
|
+
left: 50%;
|
26504
|
+
transform: translateX(-50%);
|
26505
|
+
display: block;
|
26506
|
+
width: var(--Calendar-icon-width);
|
26507
|
+
height: var(--Calendar-icon-height);
|
26508
|
+
border-radius: 50%;
|
26509
|
+
z-index: 10;
|
26510
|
+
}
|
26511
|
+
|
26512
|
+
.amis-scope .antd-ScheduleCalendar-action {
|
26513
|
+
display: block;
|
26514
|
+
padding: 0;
|
26515
|
+
width: 100%;
|
26516
|
+
height: 100%;
|
26517
|
+
border: none;
|
26518
|
+
background: transparent;
|
26519
|
+
color: inherit;
|
26520
|
+
}
|
26521
|
+
|
26522
|
+
.amis-scope .antd-ScheduleCalendar-action:not(:disabled):not(.is-disabled):hover {
|
26523
|
+
color: inherit;
|
26524
|
+
background: transparent;
|
26525
|
+
border-color: transparent;
|
26526
|
+
}
|
26527
|
+
|
26528
|
+
.amis-scope .antd-ScheduleCalendar .rdtDay {
|
26529
|
+
position: relative;
|
26530
|
+
}
|
26531
|
+
|
26532
|
+
.amis-scope .antd-ScheduleCalendar-text-overflow {
|
26533
|
+
white-space: nowrap;
|
26534
|
+
overflow: hidden;
|
26535
|
+
text-overflow: ellipsis;
|
26536
|
+
position: absolute;
|
26537
|
+
width: 100%;
|
26538
|
+
}
|
26539
|
+
|
26540
|
+
.amis-scope .antd-ScheduleCalendar-large {
|
26541
|
+
width: 100%;
|
26542
|
+
}
|
26543
|
+
|
26544
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker {
|
26545
|
+
width: 100%;
|
26546
|
+
}
|
26547
|
+
|
26548
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker table {
|
26549
|
+
border-collapse: collapse;
|
26550
|
+
border-spacing: 0;
|
26551
|
+
}
|
26552
|
+
|
26553
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtPicker table td {
|
26554
|
+
border: var(--Calendar-borderWidth) solid var(--borderColor);
|
26555
|
+
}
|
26556
|
+
|
26557
|
+
.amis-scope .antd-ScheduleCalendar-large .rdtDay {
|
26558
|
+
height: var(--Calendar-rdt-day);
|
26559
|
+
vertical-align: top;
|
26560
|
+
}
|
26561
|
+
|
26562
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-large-day-wrap {
|
26563
|
+
position: absolute;
|
26564
|
+
top: 0;
|
26565
|
+
left: 0;
|
26566
|
+
min-width: 100%;
|
26567
|
+
height: 100%;
|
26568
|
+
}
|
26569
|
+
|
26570
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-large-day-wrap .antd-ScheduleCalendar-large-schedule-content {
|
26571
|
+
position: relative;
|
26572
|
+
z-index: 10;
|
26573
|
+
border-radius: var(--borderRadius);
|
26574
|
+
text-align: left;
|
26575
|
+
padding: var(--Calendar-schedule-content-padding);
|
26576
|
+
height: var(--Calendar-schedule-content-height);
|
26577
|
+
color: var(--Calendar-schedule-content-color);
|
26578
|
+
}
|
26579
|
+
|
26580
|
+
.amis-scope .antd-ScheduleCalendar-large .antd-ScheduleCalendar-action {
|
26581
|
+
z-index: 20;
|
26582
|
+
position: relative;
|
26583
|
+
}
|
26584
|
+
|
26497
26585
|
.amis-scope .antd-Collapse {
|
26498
26586
|
border: var(--Collapse-border);
|
26499
26587
|
padding: 0;
|