@siemens/ix-angular 0.0.0-pr-1974-20250627115746 → 0.0.0-pr-2015-20250716160704
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/common/directives/control-value-accessors/radio-value-accessor.d.ts +4 -0
- package/common/providers/toast/toast.config.d.ts +3 -2
- package/components.d.ts +10 -5
- package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +17 -1
- package/esm2022/common/providers/toast/toast.config.mjs +1 -1
- package/esm2022/common/providers/toast/toast.service.mjs +24 -9
- package/esm2022/components.mjs +4 -4
- package/esm2022/providers/toast/toast.service.mjs +12 -30
- package/esm2022/standalone/components.mjs +4 -4
- package/fesm2022/siemens-ix-angular-common.mjs +39 -8
- package/fesm2022/siemens-ix-angular-common.mjs.map +1 -1
- package/fesm2022/siemens-ix-angular-standalone.mjs +3 -3
- package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -1
- package/fesm2022/siemens-ix-angular.mjs +15 -33
- package/fesm2022/siemens-ix-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/providers/toast/toast.service.d.ts +7 -5
- package/standalone/components.d.ts +10 -5
package/package.json
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"url": "https://github.com/siemens/ix",
|
|
8
8
|
"directory": "packages/angular"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.0.0-pr-
|
|
10
|
+
"version": "0.0.0-pr-2015-20250716160704",
|
|
11
11
|
"description": "Siemens iX for Angular",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@siemens/ix": "0.0.0-pr-
|
|
14
|
+
"@siemens/ix": "0.0.0-pr-2015-20250716160704",
|
|
15
15
|
"tslib": "^2.3.0"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ShowToastResult, ToastPosition } from '@siemens/ix';
|
|
2
|
+
import { ToastService as BaseToastService, ToastConfig } from '@siemens/ix-angular/common';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ToastService {
|
|
4
|
-
|
|
5
|
-
getPosition():
|
|
6
|
-
|
|
4
|
+
export declare class ToastService extends BaseToastService {
|
|
5
|
+
constructor();
|
|
6
|
+
getPosition(): ToastPosition;
|
|
7
|
+
setPosition(position: ToastPosition): void;
|
|
8
|
+
show(config: ToastConfig): Promise<ShowToastResult>;
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastService, never>;
|
|
8
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
9
11
|
}
|
|
@@ -332,17 +332,22 @@ export declare class IxDatePicker {
|
|
|
332
332
|
}
|
|
333
333
|
export declare interface IxDatePicker extends Components.IxDatePicker {
|
|
334
334
|
/**
|
|
335
|
-
*
|
|
335
|
+
* Emitted when the date selection changes. The `DateChangeEvent` contains `from` and `to` properties.
|
|
336
|
+
The property strings are formatted according to the `format` property and not affected by the `locale` property.
|
|
337
|
+
The locale applied is always `en-US`.
|
|
336
338
|
Note: Since 2.0.0 `dateChange` does not dispatch detail property as `string`
|
|
337
339
|
*/
|
|
338
340
|
dateChange: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
339
341
|
/**
|
|
340
|
-
*
|
|
341
|
-
|
|
342
|
+
* Emitted when the date range selection changes and the component is in range mode. The `DateChangeEvent` contains `from` and `to` properties.
|
|
343
|
+
The property strings are formatted according to the `format` property and not affected by the `locale` property.
|
|
344
|
+
The locale applied is always `en-US`.
|
|
342
345
|
*/
|
|
343
346
|
dateRangeChange: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
344
347
|
/**
|
|
345
|
-
*
|
|
348
|
+
* Emitted when the selection is confirmed via the date select button. The `DateChangeEvent` contains `from` and `to` properties.
|
|
349
|
+
The property strings are formatted according to the `format` property and not affected by the `locale` property.
|
|
350
|
+
The locale applied is always `en-US`.
|
|
346
351
|
*/
|
|
347
352
|
dateSelect: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
348
353
|
}
|
|
@@ -1207,7 +1212,7 @@ export declare class IxTimeInput {
|
|
|
1207
1212
|
protected el: HTMLIxTimeInputElement;
|
|
1208
1213
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1209
1214
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTimeInput, never>;
|
|
1210
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTimeInput, "ix-time-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nErrorTimeUnparsable": { "alias": "i18nErrorTimeUnparsable"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "i18nSelectTime": { "alias": "i18nSelectTime"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "
|
|
1215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTimeInput, "ix-time-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nErrorTimeUnparsable": { "alias": "i18nErrorTimeUnparsable"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "i18nSelectTime": { "alias": "i18nSelectTime"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "millisecondInterval": { "alias": "millisecondInterval"; "required": false; }; "minuteInterval": { "alias": "minuteInterval"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "secondInterval": { "alias": "secondInterval"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1211
1216
|
}
|
|
1212
1217
|
export declare interface IxTimeInput extends Components.IxTimeInput {
|
|
1213
1218
|
/**
|