@delon/theme 16.1.1 → 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/dark.css
CHANGED
|
@@ -23316,6 +23316,37 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
23316
23316
|
.ant-table-sticky-scroll-bar-active {
|
|
23317
23317
|
background-color: rgba(0, 0, 0, 0.8);
|
|
23318
23318
|
}
|
|
23319
|
+
.ant-table-custom-column col {
|
|
23320
|
+
width: auto !important;
|
|
23321
|
+
min-width: auto !important;
|
|
23322
|
+
display: none;
|
|
23323
|
+
}
|
|
23324
|
+
.ant-table-custom-column .ant-table-thead .ant-table-row {
|
|
23325
|
+
width: 100%;
|
|
23326
|
+
display: flex;
|
|
23327
|
+
justify-content: space-between;
|
|
23328
|
+
}
|
|
23329
|
+
.ant-table-custom-column .ant-table-thead .ant-table-row th {
|
|
23330
|
+
overflow: hidden;
|
|
23331
|
+
}
|
|
23332
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row {
|
|
23333
|
+
width: 100%;
|
|
23334
|
+
display: flex;
|
|
23335
|
+
justify-content: space-between;
|
|
23336
|
+
}
|
|
23337
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row td {
|
|
23338
|
+
overflow: hidden;
|
|
23339
|
+
}
|
|
23340
|
+
.ant-table-custom-column .ant-table-tbody .ant-table-row .nz-disable-td {
|
|
23341
|
+
width: 100%;
|
|
23342
|
+
}
|
|
23343
|
+
.ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-left-last,
|
|
23344
|
+
.ant-table-custom-column .ant-table-fixed tr .ant-table-cell-fix-right-first {
|
|
23345
|
+
overflow: visible;
|
|
23346
|
+
}
|
|
23347
|
+
.ant-table-custom-column .ant-table-fixed .ant-table-row {
|
|
23348
|
+
width: 100%;
|
|
23349
|
+
}
|
|
23319
23350
|
@media all and (-ms-high-contrast: none) {
|
|
23320
23351
|
.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
23321
23352
|
box-shadow: none !important;
|
|
@@ -24106,7 +24137,7 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
24106
24137
|
.ant-tabs-dropdown-menu-item a[nz-tab-link] {
|
|
24107
24138
|
position: relative;
|
|
24108
24139
|
}
|
|
24109
|
-
a[nz-tab-link]::before {
|
|
24140
|
+
.ant-tabs-tab a[nz-tab-link]::before {
|
|
24110
24141
|
position: absolute;
|
|
24111
24142
|
top: 0;
|
|
24112
24143
|
left: 0;
|
|
@@ -24115,7 +24146,7 @@ a[nz-tab-link]::before {
|
|
|
24115
24146
|
background-color: transparent;
|
|
24116
24147
|
content: '';
|
|
24117
24148
|
}
|
|
24118
|
-
a[nz-tab-link] ~ * {
|
|
24149
|
+
.ant-tabs-tab a[nz-tab-link] ~ * {
|
|
24119
24150
|
position: relative;
|
|
24120
24151
|
}
|
|
24121
24152
|
nz-tabset,
|
|
@@ -28116,10 +28147,6 @@ nz-space-item {
|
|
|
28116
28147
|
.ant-cron-expression-content {
|
|
28117
28148
|
width: 100%;
|
|
28118
28149
|
}
|
|
28119
|
-
.ant-cron-expression-content .ant-cron-expression-input-group-error {
|
|
28120
|
-
border-color: #a61d24;
|
|
28121
|
-
box-shadow: none;
|
|
28122
|
-
}
|
|
28123
28150
|
.ant-cron-expression-content .ant-cron-expression-input-group-error-focus {
|
|
28124
28151
|
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
28125
28152
|
}
|