@beeq/react 1.11.2 → 1.12.1
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/package.json +3 -3
- package/src/components.d.ts +26 -26
- package/ssr/components.d.ts +26 -26
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beeq/react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "React specific wrapper for BEEQ Design System components",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"module": "./src/index.js",
|
|
8
8
|
"types": "./src/index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@beeq/core": "^1.
|
|
11
|
-
"@stencil/react-output-target": "^1.0
|
|
10
|
+
"@beeq/core": "^1.12.0",
|
|
11
|
+
"@stencil/react-output-target": "^1.4.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
14
|
"react": "^18 || ^19",
|
package/src/components.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was automatically generated by the Stencil React Output Target.
|
|
3
3
|
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
4
4
|
*/
|
|
5
|
-
import { type BqAccordionCustomEvent, type BqBreadcrumbItemCustomEvent, type BqButtonCustomEvent, type BqCheckboxCustomEvent, type BqDatePickerCustomEvent, type BqInputCustomEvent, type BqOptionCustomEvent, type BqOptionListCustomEvent, type BqRadioCustomEvent, type BqRadioGroupCustomEvent, type BqSelectCustomEvent, type BqSideMenuCustomEvent, type BqSideMenuItemCustomEvent, type BqSliderCustomEvent, type BqStepItemCustomEvent, type BqSwitchCustomEvent, type BqTabCustomEvent, type BqTabGroupCustomEvent, type BqTagCustomEvent, type BqTextareaCustomEvent, type BqToastCustomEvent, type BqTooltipCustomEvent, type TSliderValue } from "@beeq/core";
|
|
5
|
+
import { type BqAccordionCustomEvent, type BqAlertCustomEvent, type BqBreadcrumbItemCustomEvent, type BqButtonCustomEvent, type BqCheckboxCustomEvent, type BqDatePickerCustomEvent, type BqDialogCustomEvent, type BqDrawerCustomEvent, type BqDropdownCustomEvent, type BqIconCustomEvent, type BqInputCustomEvent, type BqNotificationCustomEvent, type BqOptionCustomEvent, type BqOptionListCustomEvent, type BqRadioCustomEvent, type BqRadioGroupCustomEvent, type BqSelectCustomEvent, type BqSideMenuCustomEvent, type BqSideMenuItemCustomEvent, type BqSliderCustomEvent, type BqStepItemCustomEvent, type BqSwitchCustomEvent, type BqTabCustomEvent, type BqTabGroupCustomEvent, type BqTagCustomEvent, type BqTextareaCustomEvent, type BqToastCustomEvent, type BqTooltipCustomEvent, type TSliderValue } from "@beeq/core";
|
|
6
6
|
import { BqAccordionGroup as BqAccordionGroupElement } from "@beeq/core/dist/components/bq-accordion-group.js";
|
|
7
7
|
import { BqAccordion as BqAccordionElement } from "@beeq/core/dist/components/bq-accordion.js";
|
|
8
8
|
import { BqAlert as BqAlertElement } from "@beeq/core/dist/components/bq-alert.js";
|
|
@@ -59,10 +59,10 @@ export declare const BqAccordion: StencilReactComponent<BqAccordionElement, BqAc
|
|
|
59
59
|
export type BqAccordionGroupEvents = NonNullable<unknown>;
|
|
60
60
|
export declare const BqAccordionGroup: StencilReactComponent<BqAccordionGroupElement, BqAccordionGroupEvents>;
|
|
61
61
|
export type BqAlertEvents = {
|
|
62
|
-
onBqHide: EventName<
|
|
63
|
-
onBqShow: EventName<
|
|
64
|
-
onBqAfterShow: EventName<
|
|
65
|
-
onBqAfterHide: EventName<
|
|
62
|
+
onBqHide: EventName<BqAlertCustomEvent<any>>;
|
|
63
|
+
onBqShow: EventName<BqAlertCustomEvent<any>>;
|
|
64
|
+
onBqAfterShow: EventName<BqAlertCustomEvent<any>>;
|
|
65
|
+
onBqAfterHide: EventName<BqAlertCustomEvent<any>>;
|
|
66
66
|
};
|
|
67
67
|
export declare const BqAlert: StencilReactComponent<BqAlertElement, BqAlertEvents>;
|
|
68
68
|
export type BqAvatarEvents = NonNullable<unknown>;
|
|
@@ -86,7 +86,7 @@ export declare const BqButton: StencilReactComponent<BqButtonElement, BqButtonEv
|
|
|
86
86
|
export type BqCardEvents = NonNullable<unknown>;
|
|
87
87
|
export declare const BqCard: StencilReactComponent<BqCardElement, BqCardEvents>;
|
|
88
88
|
export type BqCheckboxEvents = {
|
|
89
|
-
onBqChange: EventName<
|
|
89
|
+
onBqChange: EventName<BqCheckboxCustomEvent<{
|
|
90
90
|
checked: boolean;
|
|
91
91
|
}>>;
|
|
92
92
|
onBqFocus: EventName<BqCheckboxCustomEvent<HTMLBqCheckboxElement>>;
|
|
@@ -104,24 +104,24 @@ export type BqDatePickerEvents = {
|
|
|
104
104
|
};
|
|
105
105
|
export declare const BqDatePicker: StencilReactComponent<BqDatePickerElement, BqDatePickerEvents>;
|
|
106
106
|
export type BqDialogEvents = {
|
|
107
|
-
onBqCancel: EventName<
|
|
108
|
-
onBqClose: EventName<
|
|
109
|
-
onBqOpen: EventName<
|
|
110
|
-
onBqAfterOpen: EventName<
|
|
111
|
-
onBqAfterClose: EventName<
|
|
107
|
+
onBqCancel: EventName<BqDialogCustomEvent<void>>;
|
|
108
|
+
onBqClose: EventName<BqDialogCustomEvent<void>>;
|
|
109
|
+
onBqOpen: EventName<BqDialogCustomEvent<void>>;
|
|
110
|
+
onBqAfterOpen: EventName<BqDialogCustomEvent<void>>;
|
|
111
|
+
onBqAfterClose: EventName<BqDialogCustomEvent<void>>;
|
|
112
112
|
};
|
|
113
113
|
export declare const BqDialog: StencilReactComponent<BqDialogElement, BqDialogEvents>;
|
|
114
114
|
export type BqDividerEvents = NonNullable<unknown>;
|
|
115
115
|
export declare const BqDivider: StencilReactComponent<BqDividerElement, BqDividerEvents>;
|
|
116
116
|
export type BqDrawerEvents = {
|
|
117
|
-
onBqClose: EventName<
|
|
118
|
-
onBqOpen: EventName<
|
|
119
|
-
onBqAfterOpen: EventName<
|
|
120
|
-
onBqAfterClose: EventName<
|
|
117
|
+
onBqClose: EventName<BqDrawerCustomEvent<any>>;
|
|
118
|
+
onBqOpen: EventName<BqDrawerCustomEvent<any>>;
|
|
119
|
+
onBqAfterOpen: EventName<BqDrawerCustomEvent<any>>;
|
|
120
|
+
onBqAfterClose: EventName<BqDrawerCustomEvent<any>>;
|
|
121
121
|
};
|
|
122
122
|
export declare const BqDrawer: StencilReactComponent<BqDrawerElement, BqDrawerEvents>;
|
|
123
123
|
export type BqDropdownEvents = {
|
|
124
|
-
onBqOpen: EventName<
|
|
124
|
+
onBqOpen: EventName<BqDropdownCustomEvent<{
|
|
125
125
|
open: boolean;
|
|
126
126
|
}>>;
|
|
127
127
|
};
|
|
@@ -129,7 +129,7 @@ export declare const BqDropdown: StencilReactComponent<BqDropdownElement, BqDrop
|
|
|
129
129
|
export type BqEmptyStateEvents = NonNullable<unknown>;
|
|
130
130
|
export declare const BqEmptyState: StencilReactComponent<BqEmptyStateElement, BqEmptyStateEvents>;
|
|
131
131
|
export type BqIconEvents = {
|
|
132
|
-
onSvgLoaded: EventName<
|
|
132
|
+
onSvgLoaded: EventName<BqIconCustomEvent<any>>;
|
|
133
133
|
};
|
|
134
134
|
export declare const BqIcon: StencilReactComponent<BqIconElement, BqIconEvents>;
|
|
135
135
|
export type BqInputEvents = {
|
|
@@ -147,10 +147,10 @@ export type BqInputEvents = {
|
|
|
147
147
|
};
|
|
148
148
|
export declare const BqInput: StencilReactComponent<BqInputElement, BqInputEvents>;
|
|
149
149
|
export type BqNotificationEvents = {
|
|
150
|
-
onBqHide: EventName<
|
|
151
|
-
onBqShow: EventName<
|
|
152
|
-
onBqAfterOpen: EventName<
|
|
153
|
-
onBqAfterClose: EventName<
|
|
150
|
+
onBqHide: EventName<BqNotificationCustomEvent<any>>;
|
|
151
|
+
onBqShow: EventName<BqNotificationCustomEvent<any>>;
|
|
152
|
+
onBqAfterOpen: EventName<BqNotificationCustomEvent<any>>;
|
|
153
|
+
onBqAfterClose: EventName<BqNotificationCustomEvent<any>>;
|
|
154
154
|
};
|
|
155
155
|
export declare const BqNotification: StencilReactComponent<BqNotificationElement, BqNotificationEvents>;
|
|
156
156
|
export type BqOptionEvents = {
|
|
@@ -204,13 +204,13 @@ export type BqSelectEvents = {
|
|
|
204
204
|
value: string | number | string[];
|
|
205
205
|
item: HTMLBqOptionElement;
|
|
206
206
|
}>>;
|
|
207
|
-
onBqInput: EventName<
|
|
207
|
+
onBqInput: EventName<BqSelectCustomEvent<{
|
|
208
208
|
value: string | number | string[];
|
|
209
209
|
}>>;
|
|
210
210
|
};
|
|
211
211
|
export declare const BqSelect: StencilReactComponent<BqSelectElement, BqSelectEvents>;
|
|
212
212
|
export type BqSideMenuEvents = {
|
|
213
|
-
onBqCollapse: EventName<
|
|
213
|
+
onBqCollapse: EventName<BqSideMenuCustomEvent<{
|
|
214
214
|
collapse: boolean;
|
|
215
215
|
}>>;
|
|
216
216
|
onBqSelect: EventName<BqSideMenuCustomEvent<HTMLBqSideMenuItemElement>>;
|
|
@@ -244,7 +244,7 @@ export declare const BqStepItem: StencilReactComponent<BqStepItemElement, BqStep
|
|
|
244
244
|
export type BqStepsEvents = NonNullable<unknown>;
|
|
245
245
|
export declare const BqSteps: StencilReactComponent<BqStepsElement, BqStepsEvents>;
|
|
246
246
|
export type BqSwitchEvents = {
|
|
247
|
-
onBqChange: EventName<
|
|
247
|
+
onBqChange: EventName<BqSwitchCustomEvent<{
|
|
248
248
|
checked: boolean;
|
|
249
249
|
}>>;
|
|
250
250
|
onBqFocus: EventName<BqSwitchCustomEvent<HTMLBqSwitchElement>>;
|
|
@@ -266,8 +266,8 @@ export type BqTabGroupEvents = {
|
|
|
266
266
|
};
|
|
267
267
|
export declare const BqTabGroup: StencilReactComponent<BqTabGroupElement, BqTabGroupEvents>;
|
|
268
268
|
export type BqTagEvents = {
|
|
269
|
-
onBqClose: EventName<
|
|
270
|
-
onBqOpen: EventName<
|
|
269
|
+
onBqClose: EventName<BqTagCustomEvent<any>>;
|
|
270
|
+
onBqOpen: EventName<BqTagCustomEvent<any>>;
|
|
271
271
|
onBqBlur: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|
|
272
272
|
onBqClick: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|
|
273
273
|
onBqFocus: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|
package/ssr/components.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was automatically generated by the Stencil React Output Target.
|
|
3
3
|
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
4
4
|
*/
|
|
5
|
-
import { type BqAccordionCustomEvent, type BqBreadcrumbItemCustomEvent, type BqButtonCustomEvent, type BqCheckboxCustomEvent, type BqDatePickerCustomEvent, type BqInputCustomEvent, type BqOptionCustomEvent, type BqOptionListCustomEvent, type BqRadioCustomEvent, type BqRadioGroupCustomEvent, type BqSelectCustomEvent, type BqSideMenuCustomEvent, type BqSideMenuItemCustomEvent, type BqSliderCustomEvent, type BqStepItemCustomEvent, type BqSwitchCustomEvent, type BqTabCustomEvent, type BqTabGroupCustomEvent, type BqTagCustomEvent, type BqTextareaCustomEvent, type BqToastCustomEvent, type BqTooltipCustomEvent, type TSliderValue } from "@beeq/core";
|
|
5
|
+
import { type BqAccordionCustomEvent, type BqAlertCustomEvent, type BqBreadcrumbItemCustomEvent, type BqButtonCustomEvent, type BqCheckboxCustomEvent, type BqDatePickerCustomEvent, type BqDialogCustomEvent, type BqDrawerCustomEvent, type BqDropdownCustomEvent, type BqIconCustomEvent, type BqInputCustomEvent, type BqNotificationCustomEvent, type BqOptionCustomEvent, type BqOptionListCustomEvent, type BqRadioCustomEvent, type BqRadioGroupCustomEvent, type BqSelectCustomEvent, type BqSideMenuCustomEvent, type BqSideMenuItemCustomEvent, type BqSliderCustomEvent, type BqStepItemCustomEvent, type BqSwitchCustomEvent, type BqTabCustomEvent, type BqTabGroupCustomEvent, type BqTagCustomEvent, type BqTextareaCustomEvent, type BqToastCustomEvent, type BqTooltipCustomEvent, type TSliderValue } from "@beeq/core";
|
|
6
6
|
import { BqAccordionGroup as BqAccordionGroupElement } from "@beeq/core/dist/components/bq-accordion-group.js";
|
|
7
7
|
import { BqAccordion as BqAccordionElement } from "@beeq/core/dist/components/bq-accordion.js";
|
|
8
8
|
import { BqAlert as BqAlertElement } from "@beeq/core/dist/components/bq-alert.js";
|
|
@@ -59,10 +59,10 @@ export declare const BqAccordion: StencilReactComponent<BqAccordionElement, BqAc
|
|
|
59
59
|
export type BqAccordionGroupEvents = NonNullable<unknown>;
|
|
60
60
|
export declare const BqAccordionGroup: StencilReactComponent<BqAccordionGroupElement, BqAccordionGroupEvents>;
|
|
61
61
|
export type BqAlertEvents = {
|
|
62
|
-
onBqHide: EventName<
|
|
63
|
-
onBqShow: EventName<
|
|
64
|
-
onBqAfterShow: EventName<
|
|
65
|
-
onBqAfterHide: EventName<
|
|
62
|
+
onBqHide: EventName<BqAlertCustomEvent<any>>;
|
|
63
|
+
onBqShow: EventName<BqAlertCustomEvent<any>>;
|
|
64
|
+
onBqAfterShow: EventName<BqAlertCustomEvent<any>>;
|
|
65
|
+
onBqAfterHide: EventName<BqAlertCustomEvent<any>>;
|
|
66
66
|
};
|
|
67
67
|
export declare const BqAlert: StencilReactComponent<BqAlertElement, BqAlertEvents>;
|
|
68
68
|
export type BqAvatarEvents = NonNullable<unknown>;
|
|
@@ -86,7 +86,7 @@ export declare const BqButton: StencilReactComponent<BqButtonElement, BqButtonEv
|
|
|
86
86
|
export type BqCardEvents = NonNullable<unknown>;
|
|
87
87
|
export declare const BqCard: StencilReactComponent<BqCardElement, BqCardEvents>;
|
|
88
88
|
export type BqCheckboxEvents = {
|
|
89
|
-
onBqChange: EventName<
|
|
89
|
+
onBqChange: EventName<BqCheckboxCustomEvent<{
|
|
90
90
|
checked: boolean;
|
|
91
91
|
}>>;
|
|
92
92
|
onBqFocus: EventName<BqCheckboxCustomEvent<HTMLBqCheckboxElement>>;
|
|
@@ -104,24 +104,24 @@ export type BqDatePickerEvents = {
|
|
|
104
104
|
};
|
|
105
105
|
export declare const BqDatePicker: StencilReactComponent<BqDatePickerElement, BqDatePickerEvents>;
|
|
106
106
|
export type BqDialogEvents = {
|
|
107
|
-
onBqCancel: EventName<
|
|
108
|
-
onBqClose: EventName<
|
|
109
|
-
onBqOpen: EventName<
|
|
110
|
-
onBqAfterOpen: EventName<
|
|
111
|
-
onBqAfterClose: EventName<
|
|
107
|
+
onBqCancel: EventName<BqDialogCustomEvent<void>>;
|
|
108
|
+
onBqClose: EventName<BqDialogCustomEvent<void>>;
|
|
109
|
+
onBqOpen: EventName<BqDialogCustomEvent<void>>;
|
|
110
|
+
onBqAfterOpen: EventName<BqDialogCustomEvent<void>>;
|
|
111
|
+
onBqAfterClose: EventName<BqDialogCustomEvent<void>>;
|
|
112
112
|
};
|
|
113
113
|
export declare const BqDialog: StencilReactComponent<BqDialogElement, BqDialogEvents>;
|
|
114
114
|
export type BqDividerEvents = NonNullable<unknown>;
|
|
115
115
|
export declare const BqDivider: StencilReactComponent<BqDividerElement, BqDividerEvents>;
|
|
116
116
|
export type BqDrawerEvents = {
|
|
117
|
-
onBqClose: EventName<
|
|
118
|
-
onBqOpen: EventName<
|
|
119
|
-
onBqAfterOpen: EventName<
|
|
120
|
-
onBqAfterClose: EventName<
|
|
117
|
+
onBqClose: EventName<BqDrawerCustomEvent<any>>;
|
|
118
|
+
onBqOpen: EventName<BqDrawerCustomEvent<any>>;
|
|
119
|
+
onBqAfterOpen: EventName<BqDrawerCustomEvent<any>>;
|
|
120
|
+
onBqAfterClose: EventName<BqDrawerCustomEvent<any>>;
|
|
121
121
|
};
|
|
122
122
|
export declare const BqDrawer: StencilReactComponent<BqDrawerElement, BqDrawerEvents>;
|
|
123
123
|
export type BqDropdownEvents = {
|
|
124
|
-
onBqOpen: EventName<
|
|
124
|
+
onBqOpen: EventName<BqDropdownCustomEvent<{
|
|
125
125
|
open: boolean;
|
|
126
126
|
}>>;
|
|
127
127
|
};
|
|
@@ -129,7 +129,7 @@ export declare const BqDropdown: StencilReactComponent<BqDropdownElement, BqDrop
|
|
|
129
129
|
export type BqEmptyStateEvents = NonNullable<unknown>;
|
|
130
130
|
export declare const BqEmptyState: StencilReactComponent<BqEmptyStateElement, BqEmptyStateEvents>;
|
|
131
131
|
export type BqIconEvents = {
|
|
132
|
-
onSvgLoaded: EventName<
|
|
132
|
+
onSvgLoaded: EventName<BqIconCustomEvent<any>>;
|
|
133
133
|
};
|
|
134
134
|
export declare const BqIcon: StencilReactComponent<BqIconElement, BqIconEvents>;
|
|
135
135
|
export type BqInputEvents = {
|
|
@@ -147,10 +147,10 @@ export type BqInputEvents = {
|
|
|
147
147
|
};
|
|
148
148
|
export declare const BqInput: StencilReactComponent<BqInputElement, BqInputEvents>;
|
|
149
149
|
export type BqNotificationEvents = {
|
|
150
|
-
onBqHide: EventName<
|
|
151
|
-
onBqShow: EventName<
|
|
152
|
-
onBqAfterOpen: EventName<
|
|
153
|
-
onBqAfterClose: EventName<
|
|
150
|
+
onBqHide: EventName<BqNotificationCustomEvent<any>>;
|
|
151
|
+
onBqShow: EventName<BqNotificationCustomEvent<any>>;
|
|
152
|
+
onBqAfterOpen: EventName<BqNotificationCustomEvent<any>>;
|
|
153
|
+
onBqAfterClose: EventName<BqNotificationCustomEvent<any>>;
|
|
154
154
|
};
|
|
155
155
|
export declare const BqNotification: StencilReactComponent<BqNotificationElement, BqNotificationEvents>;
|
|
156
156
|
export type BqOptionEvents = {
|
|
@@ -204,13 +204,13 @@ export type BqSelectEvents = {
|
|
|
204
204
|
value: string | number | string[];
|
|
205
205
|
item: HTMLBqOptionElement;
|
|
206
206
|
}>>;
|
|
207
|
-
onBqInput: EventName<
|
|
207
|
+
onBqInput: EventName<BqSelectCustomEvent<{
|
|
208
208
|
value: string | number | string[];
|
|
209
209
|
}>>;
|
|
210
210
|
};
|
|
211
211
|
export declare const BqSelect: StencilReactComponent<BqSelectElement, BqSelectEvents>;
|
|
212
212
|
export type BqSideMenuEvents = {
|
|
213
|
-
onBqCollapse: EventName<
|
|
213
|
+
onBqCollapse: EventName<BqSideMenuCustomEvent<{
|
|
214
214
|
collapse: boolean;
|
|
215
215
|
}>>;
|
|
216
216
|
onBqSelect: EventName<BqSideMenuCustomEvent<HTMLBqSideMenuItemElement>>;
|
|
@@ -244,7 +244,7 @@ export declare const BqStepItem: StencilReactComponent<BqStepItemElement, BqStep
|
|
|
244
244
|
export type BqStepsEvents = NonNullable<unknown>;
|
|
245
245
|
export declare const BqSteps: StencilReactComponent<BqStepsElement, BqStepsEvents>;
|
|
246
246
|
export type BqSwitchEvents = {
|
|
247
|
-
onBqChange: EventName<
|
|
247
|
+
onBqChange: EventName<BqSwitchCustomEvent<{
|
|
248
248
|
checked: boolean;
|
|
249
249
|
}>>;
|
|
250
250
|
onBqFocus: EventName<BqSwitchCustomEvent<HTMLBqSwitchElement>>;
|
|
@@ -266,8 +266,8 @@ export type BqTabGroupEvents = {
|
|
|
266
266
|
};
|
|
267
267
|
export declare const BqTabGroup: StencilReactComponent<BqTabGroupElement, BqTabGroupEvents>;
|
|
268
268
|
export type BqTagEvents = {
|
|
269
|
-
onBqClose: EventName<
|
|
270
|
-
onBqOpen: EventName<
|
|
269
|
+
onBqClose: EventName<BqTagCustomEvent<any>>;
|
|
270
|
+
onBqOpen: EventName<BqTagCustomEvent<any>>;
|
|
271
271
|
onBqBlur: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|
|
272
272
|
onBqClick: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|
|
273
273
|
onBqFocus: EventName<BqTagCustomEvent<HTMLBqTagElement>>;
|