@kirbydesign/designsystem 4.0.16 → 4.0.17
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/bundles/kirbydesign-designsystem.umd.js +7 -1
- package/bundles/kirbydesign-designsystem.umd.js.map +1 -1
- package/bundles/kirbydesign-designsystem.umd.min.js +1 -1
- package/bundles/kirbydesign-designsystem.umd.min.js.map +1 -1
- package/esm2015/lib/components/reorder-list/reorder-list.component.js +9 -3
- package/esm2015/lib/components/reorder-list/reorder-list.component.metadata.json +1 -1
- package/fesm2015/kirbydesign-designsystem.js +7 -1
- package/fesm2015/kirbydesign-designsystem.js.map +1 -1
- package/kirbydesign-designsystem.metadata.json +1 -1
- package/lib/components/reorder-list/reorder-list.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -7901,7 +7901,8 @@
|
|
|
7901
7901
|
}());
|
|
7902
7902
|
|
|
7903
7903
|
var ReorderListComponent = /** @class */ (function () {
|
|
7904
|
-
function ReorderListComponent() {
|
|
7904
|
+
function ReorderListComponent(cdr) {
|
|
7905
|
+
this.cdr = cdr;
|
|
7905
7906
|
this.itemReorder = new i0.EventEmitter();
|
|
7906
7907
|
this.subItemReorder = new i0.EventEmitter();
|
|
7907
7908
|
this.reorderActive = false;
|
|
@@ -7933,6 +7934,7 @@
|
|
|
7933
7934
|
}
|
|
7934
7935
|
finally { if (e_1) throw e_1.error; }
|
|
7935
7936
|
}
|
|
7937
|
+
_this.cdr.detectChanges();
|
|
7936
7938
|
};
|
|
7937
7939
|
this.observer = new MutationObserver(callback);
|
|
7938
7940
|
this.reorderGroupContainer.forEach(function (div) {
|
|
@@ -7965,6 +7967,10 @@
|
|
|
7965
7967
|
styles: ["ion-backdrop{opacity:.3;z-index:101;position:fixed}.reorder-selected{box-shadow:none;opacity:1;z-index:104}.reorder-selected kirby-card{transform:scale(1.05)}.reorder-selected kirby-card div:first-child{border-top:1px solid var(--kirby-background-color)}.reorder-selected ::ng-deep>kirby-item{box-shadow:0 0 10px rgba(0,0,0,.4);transform:scale(1.05);border-radius:16px;overflow:hidden}.reorder-list-active>*{position:relative;z-index:103}.reorder-list-active>.reorder-selected{z-index:104}.reorder-list-active div:first-child{border-top:none}.reorder-list-active ::ng-deep>div:last-child kirby-item{border-bottom-left-radius:16px;border-bottom-right-radius:16px;overflow:hidden}.reorder-list-active .reorder-selected ::ng-deep>kirby-item{box-shadow:0 0 10px rgba(0,0,0,.4);transform:scale(1.05);border-radius:16px;overflow:hidden}.outerGroup{border-bottom:20px solid transparent}kirby-card{overflow:inherit;z-index:auto}kirby-card ::ng-deep>div:last-child ion-reorder-group div:last-child>kirby-item{border-bottom-left-radius:16px;border-bottom-right-radius:16px;overflow:hidden}kirby-card ::ng-deep>div kirby-item{z-index:1}kirby-card ::ng-deep>div:first-child>kirby-item{border-radius:16px;overflow:hidden}kirby-card ::ng-deep>div .reorder-list-active kirby-item{z-index:103}kirby-card div:first-child{border-top:1px solid var(--kirby-background-color)}"]
|
|
7966
7968
|
},] }
|
|
7967
7969
|
];
|
|
7970
|
+
/** @nocollapse */
|
|
7971
|
+
ReorderListComponent.ctorParameters = function () { return [
|
|
7972
|
+
{ type: i0.ChangeDetectorRef }
|
|
7973
|
+
]; };
|
|
7968
7974
|
ReorderListComponent.propDecorators = {
|
|
7969
7975
|
items: [{ type: i0.Input }],
|
|
7970
7976
|
subItemsName: [{ type: i0.Input }],
|