@db-ux/ngx-core-components 4.4.2 → 4.4.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 +10 -0
- package/fesm2022/db-ux-ngx-core-components.mjs +335 -134
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { AfterViewInit, InputSignal, ElementRef, OnDestroy, ModelSignal, Rendere
|
|
|
3
3
|
import { IconTypes } from '@db-ux/core-foundations';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
interface GlobalProps {
|
|
7
7
|
/**
|
|
8
8
|
* default slot
|
|
9
9
|
*/
|
|
@@ -24,7 +24,7 @@ type GlobalProps = {
|
|
|
24
24
|
* Before using please check for the [accessibility concerns](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus#accessibility_concerns)
|
|
25
25
|
*/
|
|
26
26
|
autofocus?: boolean | string;
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
28
|
type GlobalState = {
|
|
29
29
|
_id?: string;
|
|
30
30
|
};
|
|
@@ -2643,7 +2643,7 @@ type DBSwitchDefaultProps = {
|
|
|
2643
2643
|
*/
|
|
2644
2644
|
variant?: LabelVariantHorizontalType;
|
|
2645
2645
|
};
|
|
2646
|
-
type DBSwitchProps = GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & FormMessageProps & SizeProps & IconProps & IconTrailingProps & IconLeadingProps & DBSwitchDefaultProps;
|
|
2646
|
+
type DBSwitchProps = GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & Omit<FormMessageProps, 'variant'> & SizeProps & IconProps & IconTrailingProps & IconLeadingProps & DBSwitchDefaultProps;
|
|
2647
2647
|
type DBSwitchDefaultState = {
|
|
2648
2648
|
handleKeyDown: (event: GeneralKeyboardEvent<HTMLInputElement>) => void;
|
|
2649
2649
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/ngx-core-components",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.3",
|
|
4
4
|
"description": "Angular components @db-ux/core-components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@db-ux/core-components": "4.4.
|
|
20
|
-
"@db-ux/core-foundations": "4.4.
|
|
19
|
+
"@db-ux/core-components": "4.4.3",
|
|
20
|
+
"@db-ux/core-foundations": "4.4.3",
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"typings": "index.d.ts",
|