@ship-ui/core 0.15.26 → 0.15.28
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/fesm2022/ship-ui-core.mjs +14 -2
- package/fesm2022/ship-ui-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/styles/components/ship-button-group.component.scss +62 -10
- package/styles/components/ship-tabs.component.scss +30 -3
- package/styles/core/helpers/mixins/scroll-shadows.scss +44 -0
- package/styles/helpers.scss +1 -0
|
@@ -1625,8 +1625,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
1625
1625
|
}] } });
|
|
1626
1626
|
|
|
1627
1627
|
class ShipButtonGroupComponent {
|
|
1628
|
+
constructor() {
|
|
1629
|
+
this.id = '--' + Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 12);
|
|
1630
|
+
}
|
|
1628
1631
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ShipButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1629
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ShipButtonGroupComponent, isStandalone: true, selector: "sh-button-group", ngImport: i0, template: `
|
|
1632
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ShipButtonGroupComponent, isStandalone: true, selector: "sh-button-group", host: { properties: { "style.--btng-id": "id" } }, ngImport: i0, template: `
|
|
1630
1633
|
<ng-content />
|
|
1631
1634
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1632
1635
|
}
|
|
@@ -1639,6 +1642,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
1639
1642
|
<ng-content />
|
|
1640
1643
|
`,
|
|
1641
1644
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1645
|
+
host: {
|
|
1646
|
+
'[style.--btng-id]': 'id',
|
|
1647
|
+
},
|
|
1642
1648
|
}]
|
|
1643
1649
|
}] });
|
|
1644
1650
|
|
|
@@ -6078,8 +6084,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
6078
6084
|
}] } });
|
|
6079
6085
|
|
|
6080
6086
|
class ShipTabsComponent {
|
|
6087
|
+
constructor() {
|
|
6088
|
+
this.id = '--' + Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 12);
|
|
6089
|
+
}
|
|
6081
6090
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ShipTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6082
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ShipTabsComponent, isStandalone: true, selector: "sh-tabs", ngImport: i0, template: `
|
|
6091
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: ShipTabsComponent, isStandalone: true, selector: "sh-tabs", host: { properties: { "style.--tabs-id": "id" } }, ngImport: i0, template: `
|
|
6083
6092
|
<ng-content />
|
|
6084
6093
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6085
6094
|
}
|
|
@@ -6092,6 +6101,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
6092
6101
|
<ng-content />
|
|
6093
6102
|
`,
|
|
6094
6103
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6104
|
+
host: {
|
|
6105
|
+
'[style.--tabs-id]': 'id',
|
|
6106
|
+
},
|
|
6095
6107
|
}]
|
|
6096
6108
|
}] });
|
|
6097
6109
|
|