@delon/abc 17.0.3 → 17.0.5
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/auto-focus/auto-focus.directive.d.ts +1 -1
- package/auto-focus/auto-focus.module.d.ts +1 -1
- package/esm2022/auto-focus/auto-focus.directive.mjs +4 -3
- package/esm2022/auto-focus/auto-focus.module.mjs +3 -3
- package/esm2022/media/media.component.mjs +3 -3
- package/esm2022/se/se.component.mjs +8 -4
- package/esm2022/st/st-export.mjs +15 -10
- package/fesm2022/auto-focus.mjs +5 -4
- package/fesm2022/auto-focus.mjs.map +1 -1
- package/fesm2022/media.mjs +2 -2
- package/fesm2022/media.mjs.map +1 -1
- package/fesm2022/se.mjs +7 -3
- package/fesm2022/se.mjs.map +1 -1
- package/fesm2022/st.mjs +14 -9
- package/fesm2022/st.mjs.map +1 -1
- package/media/media.component.d.ts +1 -1
- package/package.json +4 -4
- package/sv/style/index.less +5 -1
|
@@ -33,5 +33,5 @@ export declare class MediaComponent implements OnChanges, AfterViewInit, OnDestr
|
|
|
33
33
|
}): void;
|
|
34
34
|
ngOnDestroy(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<MediaComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MediaComponent, "media", ["mediaComponent"], { "type": { "alias": "type"; "required": false; }; "source": { "alias": "source"; "required": false; }; "options": { "alias": "options"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, { "ready": "ready"; }, never, ["*"], false, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MediaComponent, "media, [media]", ["mediaComponent"], { "type": { "alias": "type"; "required": false; }; "source": { "alias": "source"; "required": false; }; "options": { "alias": "options"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, { "ready": "ready"; }, never, ["*"], false, never>;
|
|
37
37
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delon/abc",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.5",
|
|
4
4
|
"author": "cipchk<cipchk@qq.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"plyr": "^3.7.8",
|
|
29
29
|
"@github/hotkey": "^2.3.0",
|
|
30
30
|
"ngx-countdown": "^17.0.0",
|
|
31
|
-
"@delon/theme": "^17.0.
|
|
32
|
-
"@delon/util": "^17.0.
|
|
33
|
-
"@delon/acl": "^17.0.
|
|
31
|
+
"@delon/theme": "^17.0.5",
|
|
32
|
+
"@delon/util": "^17.0.5",
|
|
33
|
+
"@delon/acl": "^17.0.5",
|
|
34
34
|
"tslib": "^2.3.0"
|
|
35
35
|
},
|
|
36
36
|
"module": "fesm2022/abc.mjs",
|
package/sv/style/index.less
CHANGED
|
@@ -233,7 +233,6 @@
|
|
|
233
233
|
&__bordered {
|
|
234
234
|
overflow: hidden;
|
|
235
235
|
border-top: 1px solid @border-color-split;
|
|
236
|
-
border-bottom: 1px solid @border-color-split;
|
|
237
236
|
border-left: 1px solid @border-color-split;
|
|
238
237
|
|
|
239
238
|
@{sv-prefix}__item {
|
|
@@ -264,5 +263,10 @@
|
|
|
264
263
|
padding: @descriptions-small-padding;
|
|
265
264
|
}
|
|
266
265
|
}
|
|
266
|
+
|
|
267
|
+
// offset the padding-bottom of last row
|
|
268
|
+
.@{ant-prefix}-row {
|
|
269
|
+
margin-bottom: 0;
|
|
270
|
+
}
|
|
267
271
|
}
|
|
268
272
|
}
|