@porsche-design-system/components-angular 2.13.0-rc.2 → 2.13.0-rc.3
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/CHANGELOG.md +6 -0
- package/components-wrapper.module.d.ts +24 -22
- package/esm2020/components-wrapper.module.mjs +25 -23
- package/esm2020/lib/components/barrel.mjs +7 -1
- package/esm2020/lib/components/segmented-control-item.wrapper.mjs +30 -0
- package/esm2020/lib/components/segmented-control.wrapper.mjs +33 -0
- package/esm2020/lib/types.mjs +1 -1
- package/fesm2015/porsche-design-system-components-angular.mjs +143 -88
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +143 -88
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +5 -1
- package/lib/components/segmented-control-item.wrapper.d.ts +15 -0
- package/lib/components/segmented-control.wrapper.d.ts +14 -0
- package/lib/types.d.ts +8 -0
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -471,6 +471,14 @@ export declare type ScrollToPosition = {
|
|
|
471
471
|
isSmooth?: boolean;
|
|
472
472
|
};
|
|
473
473
|
export declare type PrevNextButtonJssStyle = any;
|
|
474
|
+
declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
|
|
475
|
+
"background-surface",
|
|
476
|
+
"background-default"
|
|
477
|
+
];
|
|
478
|
+
export declare type SegmentedControlBackgroundColor = typeof SEGMENTED_CONTROL_BACKGROUND_COLORS[number];
|
|
479
|
+
export declare type SegmentedControlChangeEvent = {
|
|
480
|
+
value: string | number;
|
|
481
|
+
};
|
|
474
482
|
export declare type DropdownDirectionInternal = "down" | "up";
|
|
475
483
|
export declare type DropdownDirection = DropdownDirectionInternal | "auto";
|
|
476
484
|
declare const SPINNER_SIZES: readonly [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-angular",
|
|
3
|
-
"version": "2.13.0-rc.
|
|
3
|
+
"version": "2.13.0-rc.3",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "2.13.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "2.13.0-rc.3",
|
|
21
21
|
"tslib": "^2.0.1"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|