@delon/theme 16.1.0 → 16.2.0
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/compact.css +33 -6
- package/compact.min.css +1 -1
- package/dark.css +33 -6
- package/dark.min.css +1 -1
- package/default.css +33 -6
- package/default.min.css +1 -1
- package/esm2022/layout-default/layout-header-item-trigger.directive.mjs +5 -6
- package/esm2022/layout-default/layout-header-item.component.mjs +5 -6
- package/esm2022/layout-default/layout-header.component.mjs +5 -6
- package/esm2022/layout-default/layout-nav.component.mjs +5 -6
- package/esm2022/layout-default/layout-top-menu-item.mjs +5 -6
- package/esm2022/layout-default/layout.component.mjs +30 -10
- package/esm2022/layout-default/layout.module.mjs +6 -7
- package/esm2022/layout-default/layout.service.mjs +5 -6
- package/esm2022/setting-drawer/setting-drawer-item.component.mjs +5 -6
- package/esm2022/setting-drawer/setting-drawer.component.mjs +5 -6
- package/esm2022/setting-drawer/setting-drawer.module.mjs +6 -7
- package/esm2022/src/locale/locale.module.mjs +6 -7
- package/esm2022/src/locale/locale.service.mjs +5 -6
- package/esm2022/src/pipes/date/date.pipe.mjs +5 -6
- package/esm2022/src/pipes/keys/keys.pipe.mjs +5 -6
- package/esm2022/src/pipes/safe/html.pipe.mjs +5 -6
- package/esm2022/src/pipes/safe/url.pipe.mjs +5 -6
- package/esm2022/src/pipes/yn/yn.pipe.mjs +5 -6
- package/esm2022/src/services/drawer/drawer.helper.mjs +5 -6
- package/esm2022/src/services/http/http.client.mjs +5 -6
- package/esm2022/src/services/http/http.decorator.mjs +5 -6
- package/esm2022/src/services/i18n/i18n-url.guard.mjs +29 -14
- package/esm2022/src/services/i18n/i18n.mjs +9 -11
- package/esm2022/src/services/i18n/i18n.pipe.mjs +5 -6
- package/esm2022/src/services/menu/menu.service.mjs +5 -6
- package/esm2022/src/services/modal/modal.helper.mjs +11 -8
- package/esm2022/src/services/responsive/responsive.mjs +20 -14
- package/esm2022/src/services/rtl/rtl.service.mjs +5 -6
- package/esm2022/src/services/settings/settings.service.mjs +5 -6
- package/esm2022/src/services/title/title.service.mjs +5 -6
- package/esm2022/src/theme.module.mjs +6 -7
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/theme-btn/theme-btn.component.mjs +5 -6
- package/esm2022/theme-btn/theme-btn.module.mjs +6 -7
- package/fesm2022/layout-default.mjs +49 -30
- package/fesm2022/layout-default.mjs.map +1 -1
- package/fesm2022/setting-drawer.mjs +10 -10
- package/fesm2022/setting-drawer.mjs.map +1 -1
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme-btn.mjs.map +1 -1
- package/fesm2022/theme.mjs +112 -85
- package/fesm2022/theme.mjs.map +1 -1
- package/layout-default/layout.component.d.ts +8 -2
- package/package.json +4 -4
- package/src/services/i18n/i18n-url.guard.d.ts +27 -7
- package/src/services/menu/menu.service.d.ts +1 -1
- package/src/services/modal/modal.helper.d.ts +4 -0
- package/src/services/responsive/responsive.d.ts +2 -1
package/compact.css
CHANGED
|
@@ -22752,6 +22752,37 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22752
22752
|
.ant-table-sticky-scroll-bar-active {
|
|
22753
22753
|
background-color: rgba(0, 0, 0, 0.8);
|
|
22754
22754
|
}
|
|
22755
|
+
.ant-table-custom-column col {
|
|
22756
|
+
width: auto !important;
|
|
22757
|
+
min-width: auto !important;
|
|
22758
|
+
display: none;
|
|
22759
|
+
}
|
|
22760
|
+
.ant-table-custom-column .ant-table-thead .ant-table-row {
|
|
22761
|
+
width: 100%;
|
|
22762
|
+
display: flex;
|
|
22763
|
+
justify-content: space-between;
|
|
22764
|
+
}
|
|
22765
|
+
.ant-table-custom-column .ant-table-thead .ant-table-row th {
|
|
22766
|
+
overflow: hidden;
|
|
22767
|
+
}
|
|
22768
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row {
|
|
22769
|
+
width: 100%;
|
|
22770
|
+
display: flex;
|
|
22771
|
+
justify-content: space-between;
|
|
22772
|
+
}
|
|
22773
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row td {
|
|
22774
|
+
overflow: hidden;
|
|
22775
|
+
}
|
|
22776
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td {
|
|
22777
|
+
width: 100%;
|
|
22778
|
+
}
|
|
22779
|
+
.ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
|
|
22780
|
+
.ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
|
|
22781
|
+
overflow: visible;
|
|
22782
|
+
}
|
|
22783
|
+
.ant-table-custom-column .ant-table-fixed .ant-table-row {
|
|
22784
|
+
width: 100%;
|
|
22785
|
+
}
|
|
22755
22786
|
@media all and (-ms-high-contrast: none) {
|
|
22756
22787
|
.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
22757
22788
|
box-shadow: none !important;
|
|
@@ -23542,7 +23573,7 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23542
23573
|
.ant-tabs-dropdown-menu-item a[nz-tab-link] {
|
|
23543
23574
|
position: relative;
|
|
23544
23575
|
}
|
|
23545
|
-
a[nz-tab-link]::before {
|
|
23576
|
+
.ant-tabs-tab a[nz-tab-link]::before {
|
|
23546
23577
|
position: absolute;
|
|
23547
23578
|
top: 0;
|
|
23548
23579
|
left: 0;
|
|
@@ -23551,7 +23582,7 @@ a[nz-tab-link]::before {
|
|
|
23551
23582
|
background-color: transparent;
|
|
23552
23583
|
content: '';
|
|
23553
23584
|
}
|
|
23554
|
-
a[nz-tab-link] ~ * {
|
|
23585
|
+
.ant-tabs-tab a[nz-tab-link] ~ * {
|
|
23555
23586
|
position: relative;
|
|
23556
23587
|
}
|
|
23557
23588
|
nz-tabset,
|
|
@@ -27552,10 +27583,6 @@ nz-space-item {
|
|
|
27552
27583
|
.ant-cron-expression-content {
|
|
27553
27584
|
width: 100%;
|
|
27554
27585
|
}
|
|
27555
|
-
.ant-cron-expression-content .ant-cron-expression-input-group-error {
|
|
27556
|
-
border-color: #ff4d4f;
|
|
27557
|
-
box-shadow: none;
|
|
27558
|
-
}
|
|
27559
27586
|
.ant-cron-expression-content .ant-cron-expression-input-group-error-focus {
|
|
27560
27587
|
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
27561
27588
|
}
|