@trendyol/baklava 2.3.0-beta.4 → 2.3.0-beta.6

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.
@@ -26,6 +26,49 @@ import type BlTextareaType from "./components/textarea/bl-textarea";
26
26
  import type BlTooltipType from "./components/tooltip/bl-tooltip";
27
27
  import { type EventName, ReactWebComponent } from "@lit-labs/react";
28
28
  import React from "react";
29
+ export declare type BlAlertClose = CustomEvent<boolean>;
30
+ export declare type BlButtonClick = CustomEvent<string>;
31
+ export declare type BlCheckboxGroupCheckboxGroupChange = CustomEvent<string[]>;
32
+ export declare type BlDialogDialogOpen = CustomEvent<object>;
33
+ export declare type BlDialogDialogRequestClose = CustomEvent<{
34
+ source: "close-button" | "keyboard" | "backdrop";
35
+ }>;
36
+ export declare type BlDialogDialogClose = CustomEvent<object>;
37
+ export declare type BlDrawerDrawerOpen = CustomEvent<string>;
38
+ export declare type BlDrawerDrawerClose = CustomEvent<string>;
39
+ export declare type BlDropdownDropdownOpen = CustomEvent<string>;
40
+ export declare type BlDropdownDropdownClose = CustomEvent<string>;
41
+ export declare type BlIconLoad = CustomEvent<string>;
42
+ export declare type BlIconError = CustomEvent<string>;
43
+ export declare type BlInputChange = CustomEvent<string>;
44
+ export declare type BlInputInput = CustomEvent<string>;
45
+ export declare type BlInputInvalid = CustomEvent<ValidityState>;
46
+ export declare type BlPaginationChange = CustomEvent<{
47
+ selectedPage: number;
48
+ prevPage: number;
49
+ itemsPerPage: number;
50
+ }>;
51
+ export declare type BlPopoverPopoverShow = CustomEvent<string>;
52
+ export declare type BlPopoverPopoverHide = CustomEvent<string>;
53
+ export declare type BlRadioGroupRadioChange = CustomEvent<string>;
54
+ export declare type BlSelectSelect = CustomEvent<ISelectOption[]>;
55
+ export declare type BlSwitchSwitchToggle = CustomEvent<boolean>;
56
+ export declare type BlTextareaInput = CustomEvent<string>;
57
+ export declare type BlTextareaChange = CustomEvent<string>;
58
+ export declare type BlTextareaInvalid = CustomEvent<ValidityState>;
59
+ export declare type BlTooltipTooltipShow = CustomEvent<string>;
60
+ export declare type BlTooltipTooltipHide = CustomEvent<string>;
61
+ export declare type BlCheckboxCheckboxChange = CustomEvent<boolean>;
62
+ export declare type BlCheckboxFocus = CustomEvent<string>;
63
+ export declare type BlCheckboxBlur = CustomEvent<string>;
64
+ export declare type BlDropdownItemDropdownItemClick = CustomEvent<string>;
65
+ export declare type BlRadioChecked = CustomEvent<string>;
66
+ export declare type BlRadioFocus = CustomEvent<string>;
67
+ export declare type BlRadioBlur = CustomEvent<string>;
68
+ export declare type BlSelectOptionSelectOption = CustomEvent<string | null>;
69
+ export declare type BlSelectOptionFocus = CustomEvent<string | null>;
70
+ export declare type BlSelectOptionBlur = CustomEvent<string | null>;
71
+ export declare type BlTabTabSelected = CustomEvent<string>;
29
72
  export declare type BlAlert = BlAlertType;
30
73
  export declare type BlBadge = BlBadgeType;
31
74
  export declare type BlButton = BlButtonType;
@@ -51,92 +94,228 @@ export declare type BlRadio = BlRadioType;
51
94
  export declare type BlSelectOption = BlSelectOptionType;
52
95
  export declare type BlTab = BlTabType;
53
96
  export declare type BlTabPanel = BlTabPanelType;
97
+ /**
98
+ * @tag bl-alert
99
+ * @summary Baklava Alert component
100
+ */
54
101
  export declare const BlAlert: React.LazyExoticComponent<ReactWebComponent<BlAlertType, {
55
- onBlClose: EventName<CustomEvent<boolean>>;
102
+ onBlClose: EventName<BlAlertClose>;
56
103
  }>>;
57
- export declare const BlBadge: React.LazyExoticComponent<ReactWebComponent<BlBadgeType, {}>>;
104
+ /**
105
+ * @tag bl-badge
106
+ * @summary Baklava Badge component
107
+ *
108
+ * @cssproperty [--bl-badge-bg-color=--bl-color-primary-contrast] Sets the background color of badge
109
+ * @cssproperty [--bl-badge-color=--bl-color-primary] Sets the color of badge
110
+ */
111
+ export declare const BlBadge: React.LazyExoticComponent<ReactWebComponent<BlBadgeType>>;
112
+ /**
113
+ * @tag bl-button
114
+ * @summary Baklava Button component
115
+ *
116
+ * @cssproperty [--bl-button-display=inline-block] Sets the display property of button
117
+ * @cssproperty [--bl-button-justify=center] Sets the justify-content property of button
118
+ *
119
+ */
58
120
  export declare const BlButton: React.LazyExoticComponent<ReactWebComponent<BlButtonType, {
59
- onBlClick: EventName<CustomEvent<string>>;
121
+ onBlClick: EventName<BlButtonClick>;
60
122
  }>>;
123
+ /**
124
+ * @tag bl-checkbox-group
125
+ * @summary Baklava Button component
126
+ *
127
+ * @cssproperty [--bl-checkbox-direction=row] Can be used for showing checkbox options as columns instead of rows. Options are `row` or `column`
128
+ */
61
129
  export declare const BlCheckboxGroup: React.LazyExoticComponent<ReactWebComponent<BlCheckboxGroupType, {
62
- onBlCheckboxGroupChange: EventName<CustomEvent<string[]>>;
130
+ onBlCheckboxGroupChange: EventName<BlCheckboxGroupCheckboxGroupChange>;
63
131
  }>>;
132
+ /**
133
+ * @tag bl-dialog
134
+ * @summary Baklava Dialog component
135
+ */
64
136
  export declare const BlDialog: React.LazyExoticComponent<ReactWebComponent<BlDialogType, {
65
- onBlDialogOpen: EventName<CustomEvent<object>>;
66
- onBlDialogRequestClose: EventName<CustomEvent<{
67
- source: "close-button" | "keyboard" | "backdrop";
68
- }>>;
69
- onBlDialogClose: EventName<CustomEvent<object>>;
137
+ onBlDialogOpen: EventName<BlDialogDialogOpen>;
138
+ onBlDialogRequestClose: EventName<BlDialogDialogRequestClose>;
139
+ onBlDialogClose: EventName<BlDialogDialogClose>;
70
140
  }>>;
141
+ /**
142
+ * @tag bl-drawer
143
+ * @summary Baklava Drawer component
144
+ *
145
+ * @cssproperty [--bl-drawer-animation-duration=250ms] Drawer slide in animation duration
146
+ */
71
147
  export declare const BlDrawer: React.LazyExoticComponent<ReactWebComponent<BlDrawerType, {
72
- onBlDrawerOpen: EventName<CustomEvent<string>>;
73
- onBlDrawerClose: EventName<CustomEvent<string>>;
148
+ onBlDrawerOpen: EventName<BlDrawerDrawerOpen>;
149
+ onBlDrawerClose: EventName<BlDrawerDrawerClose>;
74
150
  }>>;
151
+ /**
152
+ * @tag bl-dropdown
153
+ * @summary Baklava Dropdown component
154
+ */
75
155
  export declare const BlDropdown: React.LazyExoticComponent<ReactWebComponent<BlDropdownType, {
76
- onBlDropdownOpen: EventName<CustomEvent<string>>;
77
- onBlDropdownClose: EventName<CustomEvent<string>>;
156
+ onBlDropdownOpen: EventName<BlDropdownDropdownOpen>;
157
+ onBlDropdownClose: EventName<BlDropdownDropdownClose>;
78
158
  }>>;
159
+ /**
160
+ * @tag bl-icon
161
+ * @summary Baklava Icon component
162
+ *
163
+ * @cssproperty [font-size] Setting size of icon. Default is current font size in DOM place
164
+ * @cssproperty [color=currentColor] Setting color of icon
165
+ */
79
166
  export declare const BlIcon: React.LazyExoticComponent<ReactWebComponent<BlIconType, {
80
- onBlLoad: EventName<CustomEvent<string>>;
81
- onBlError: EventName<CustomEvent<string>>;
167
+ onBlLoad: EventName<BlIconLoad>;
168
+ onBlError: EventName<BlIconError>;
82
169
  }>>;
170
+ /**
171
+ * @tag bl-input
172
+ * @summary Baklava Input component
173
+ *
174
+ * @cssproperty [--bl-input-padding-start] Sets the padding start
175
+ * @cssproperty [--bl-input-padding-end] Sets the padding end
176
+ */
83
177
  export declare const BlInput: React.LazyExoticComponent<ReactWebComponent<BlInputType, {
84
- onBlChange: EventName<CustomEvent<string>>;
85
- onBlInput: EventName<CustomEvent<string>>;
86
- onBlInvalid: EventName<CustomEvent<ValidityState>>;
178
+ onBlChange: EventName<BlInputChange>;
179
+ onBlInput: EventName<BlInputInput>;
180
+ onBlInvalid: EventName<BlInputInvalid>;
87
181
  }>>;
182
+ /**
183
+ * @tag bl-pagination
184
+ * @summary Baklava Pagination component
185
+ */
88
186
  export declare const BlPagination: React.LazyExoticComponent<ReactWebComponent<BlPaginationType, {
89
- onBlChange: EventName<CustomEvent<{
90
- selectedPage: number;
91
- prevPage: number;
92
- itemsPerPage: number;
93
- }>>;
187
+ onBlChange: EventName<BlPaginationChange>;
94
188
  }>>;
189
+ /**
190
+ * @tag bl-popover
191
+ * @summary Baklava Popover component
192
+ *
193
+ * @cssproperty [--bl-popover-arrow-display=none] - Sets the display of popovers arrow. Set as `block` to make arrow visible.
194
+ * @cssproperty [--bl-popover-background-color=--bl-color-neutral-full] - Sets the background color of popover.
195
+ * @cssproperty [--bl-popover-border-color=--bl-color-primary-highlight] - Sets the border color of popover.
196
+ * @cssproperty [--bl-popover-border-size=1px] - Sets the border size of popover. You can set it to `0px` to not have a border (if you use a custom background color). Always use with a length unit.
197
+ * @cssproperty [--bl-popover-padding=--bl-size-m] - Sets the padding of popover.
198
+ * @cssproperty [--bl-popover-border-radius=--bl-size-3xs] - Sets the border radius of popover.
199
+ * @cssproperty [--bl-popover-max-width=100vw] - Sets the maximum width of the popover (including border and padding).
200
+ * @cssproperty [--bl-popover-position=fixed] - Sets the position of popover. You can set it to `absolute` if parent element is a fixed positioned element like drawer or dialog.
201
+ */
95
202
  export declare const BlPopover: React.LazyExoticComponent<ReactWebComponent<BlPopoverType, {
96
- onBlPopoverShow: EventName<CustomEvent<string>>;
97
- onBlPopoverHide: EventName<CustomEvent<string>>;
203
+ onBlPopoverShow: EventName<BlPopoverPopoverShow>;
204
+ onBlPopoverHide: EventName<BlPopoverPopoverHide>;
98
205
  }>>;
99
- export declare const BlProgressIndicator: React.LazyExoticComponent<ReactWebComponent<BlProgressIndicatorType, {}>>;
206
+ /**
207
+ * @tag bl-progress-indicator
208
+ * @summary Baklava Progress Indicator component
209
+ *
210
+ * @cssproperty [--bl-progress-indicator-transition-duration=.2s] Duration of the transition of progress bar
211
+ * @property {max} [max=100]
212
+ * @property {number} [value=0]
213
+ */
214
+ export declare const BlProgressIndicator: React.LazyExoticComponent<ReactWebComponent<BlProgressIndicatorType>>;
215
+ /**
216
+ * @tag bl-radio-group
217
+ * @summary Baklava Button component
218
+ *
219
+ * @cssproperty [--bl-radio-direction=row] Can be used for showing radio options as columns instead of rows. Options are `row` or `column`
220
+ * @cssproperty [--bl-radio-group-cross-axis-item-alignment=normal] Can be used for aligning radio items on cross axis. Acts same with align-item
221
+ * @cssproperty [--bl-radio-group-cross-axis-content-alignment=normal] Can be used for aligning radio group content on cross axis. Acts same with align-content
222
+ * @cssproperty [--bl-radio-group-main-axis-content-alignment=normal] Can be used for aligning radio group content on main axis. Acts same with justify-content
223
+ */
100
224
  export declare const BlRadioGroup: React.LazyExoticComponent<ReactWebComponent<BlRadioGroupType, {
101
- onBlRadioChange: EventName<CustomEvent<string>>;
225
+ onBlRadioChange: EventName<BlRadioGroupRadioChange>;
102
226
  }>>;
103
- export declare const BlSelect: React.LazyExoticComponent<ReactWebComponent<BlSelectType<string>, {
104
- onBlSelect: EventName<CustomEvent<ISelectOption[]>>;
227
+ /**
228
+ * @tag bl-select
229
+ * @summary Baklava Select component
230
+ *
231
+ * @cssproperty [--bl-popover-position=fixed] Sets the positioning strategy of select popover. You can set it as `absolute` if you need to show popover relative to its trigger element.
232
+ */
233
+ export declare const BlSelect: React.LazyExoticComponent<ReactWebComponent<BlSelectType, {
234
+ onBlSelect: EventName<BlSelectSelect>;
105
235
  }>>;
236
+ /**
237
+ * @tag bl-switch
238
+ * @summary Baklava Switch component
239
+ *
240
+ * @cssproperty [--bl-switch-color-on=--bl-color-primary] Set the checked color
241
+ * @cssproperty [--bl-switch-color-off=--bl-color-neutral-lighter] Set the unchecked color
242
+ * @cssproperty [--bl-switch-animation-duration=300ms] Set the animation duration of switch toggle
243
+ */
106
244
  export declare const BlSwitch: React.LazyExoticComponent<ReactWebComponent<BlSwitchType, {
107
- onBlSwitchToggle: EventName<CustomEvent<boolean>>;
245
+ onBlSwitchToggle: EventName<BlSwitchSwitchToggle>;
108
246
  }>>;
109
- export declare const BlTabGroup: React.LazyExoticComponent<ReactWebComponent<BlTabGroupType, {}>>;
247
+ /**
248
+ * @tag bl-tab-group
249
+ * @summary Baklava Tab group component
250
+ */
251
+ export declare const BlTabGroup: React.LazyExoticComponent<ReactWebComponent<BlTabGroupType>>;
252
+ /**
253
+ * @tag bl-textarea
254
+ * @summary Baklava Textarea component
255
+ */
110
256
  export declare const BlTextarea: React.LazyExoticComponent<ReactWebComponent<BlTextareaType, {
111
- onBlInput: EventName<CustomEvent<string>>;
112
- onBlChange: EventName<CustomEvent<string>>;
113
- onBlInvalid: EventName<CustomEvent<ValidityState>>;
257
+ onBlInput: EventName<BlTextareaInput>;
258
+ onBlChange: EventName<BlTextareaChange>;
259
+ onBlInvalid: EventName<BlTextareaInvalid>;
114
260
  }>>;
261
+ /**
262
+ * @tag bl-tooltip
263
+ * @summary Baklava Tooltip component
264
+ * @dependency bl-popover
265
+ *
266
+ * @cssproperty [--bl-tooltip-trigger-display=inline-flex] Set the display of the tooltip trigger.
267
+ */
115
268
  export declare const BlTooltip: React.LazyExoticComponent<ReactWebComponent<BlTooltipType, {
116
- onBlTooltipShow: EventName<CustomEvent<string>>;
117
- onBlTooltipHide: EventName<CustomEvent<string>>;
269
+ onBlTooltipShow: EventName<BlTooltipTooltipShow>;
270
+ onBlTooltipHide: EventName<BlTooltipTooltipHide>;
118
271
  }>>;
272
+ /**
273
+ * @tag bl-checkbox
274
+ * @summary Baklava Checkbox component
275
+ */
119
276
  export declare const BlCheckbox: React.LazyExoticComponent<ReactWebComponent<BlCheckboxType, {
120
- onBlCheckboxChange: EventName<CustomEvent<boolean>>;
121
- onBlFocus: EventName<CustomEvent<string>>;
122
- onBlBlur: EventName<CustomEvent<string>>;
277
+ onBlCheckboxChange: EventName<BlCheckboxCheckboxChange>;
278
+ onBlFocus: EventName<BlCheckboxFocus>;
279
+ onBlBlur: EventName<BlCheckboxBlur>;
123
280
  }>>;
124
- export declare const BlDropdownGroup: React.LazyExoticComponent<ReactWebComponent<BlDropdownGroupType, {}>>;
281
+ /**
282
+ * @tag bl-dropdown-group
283
+ * @summary Baklava Dropdown Group component
284
+ */
285
+ export declare const BlDropdownGroup: React.LazyExoticComponent<ReactWebComponent<BlDropdownGroupType>>;
286
+ /**
287
+ * @tag bl-dropdown-item
288
+ * @summary Baklava Dropdown Item component
289
+ */
125
290
  export declare const BlDropdownItem: React.LazyExoticComponent<ReactWebComponent<BlDropdownItemType, {
126
- onBlDropdownItemClick: EventName<CustomEvent<string>>;
291
+ onBlDropdownItemClick: EventName<BlDropdownItemDropdownItemClick>;
127
292
  }>>;
293
+ /**
294
+ * @tag bl-radio
295
+ * @summary Baklava Radio Option component
296
+ *
297
+ * @cssprop [--bl-radio-align-items=center] Align items of radio option
298
+ */
128
299
  export declare const BlRadio: React.LazyExoticComponent<ReactWebComponent<BlRadioType, {
129
- onBlChecked: EventName<CustomEvent<string>>;
130
- onBlFocus: EventName<CustomEvent<string>>;
131
- onBlBlur: EventName<CustomEvent<string>>;
300
+ onBlChecked: EventName<BlRadioChecked>;
301
+ onBlFocus: EventName<BlRadioFocus>;
302
+ onBlBlur: EventName<BlRadioBlur>;
132
303
  }>>;
133
- export declare const BlSelectOption: React.LazyExoticComponent<ReactWebComponent<BlSelectOptionType<string>, {
134
- onBlSelectOption: EventName<CustomEvent<string | null>>;
135
- onBlFocus: EventName<CustomEvent<string | null>>;
136
- onBlBlur: EventName<CustomEvent<string | null>>;
304
+ export declare const BlSelectOption: React.LazyExoticComponent<ReactWebComponent<BlSelectOptionType, {
305
+ onBlSelectOption: EventName<BlSelectOptionSelectOption>;
306
+ onBlFocus: EventName<BlSelectOptionFocus>;
307
+ onBlBlur: EventName<BlSelectOptionBlur>;
137
308
  }>>;
309
+ /**
310
+ * @tag bl-tab
311
+ * @summary Baklava Tab component
312
+ */
138
313
  export declare const BlTab: React.LazyExoticComponent<ReactWebComponent<BlTabType, {
139
- onBlTabSelected: EventName<CustomEvent<string>>;
314
+ onBlTabSelected: EventName<BlTabTabSelected>;
140
315
  }>>;
141
- export declare const BlTabPanel: React.LazyExoticComponent<ReactWebComponent<BlTabPanelType, {}>>;
316
+ /**
317
+ * @tag bl-tab-panel
318
+ * @summary Baklava Tab panel component
319
+ */
320
+ export declare const BlTabPanel: React.LazyExoticComponent<ReactWebComponent<BlTabPanelType>>;
142
321
  //# sourceMappingURL=baklava-react.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"baklava-react.d.ts","sourceRoot":"","sources":["../src/baklava-react.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"baklava-react.d.ts","sourceRoot":"","sources":["../src/baklava-react.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,mBAAmB,MAAM,+CAA+C,CAAC;AACrF,OAAO,KAAK,cAAc,MAAM,kDAAkD,CAAC;AACnF,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,cAAc,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,mBAAmB,MAAM,+CAA+C,CAAC;AACrF,OAAO,KAAK,kBAAkB,MAAM,6CAA6C,CAAC;AAClF,OAAO,KAAK,UAAU,MAAM,2BAA2B,CAAC;AACxD,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,gBAAgB,MAAM,uCAAuC,CAAC;AAC1E,OAAO,KAAK,aAAa,MAAM,iCAAiC,CAAC;AACjE,OAAO,KAAK,uBAAuB,MAAM,uDAAuD,CAAC;AACjG,OAAO,KAAK,gBAAgB,MAAM,yCAAyC,CAAC;AAC5E,OAAO,KAAK,WAAW,MAAM,yCAAyC,CAAC;AACvE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,kBAAkB,MAAM,6CAA6C,CAAC;AAClF,OAAO,KAAK,YAAY,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,cAAc,MAAM,qCAAqC,CAAC;AACtE,OAAO,KAAK,cAAc,MAAM,+CAA+C,CAAC;AAChF,OAAO,KAAK,SAAS,MAAM,mCAAmC,CAAC;AAC/D,OAAO,KAAK,cAAc,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,aAAa,MAAM,iCAAiC,CAAC;AACjE,OAAO,EACL,KAAK,SAAS,EAEd,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AAExD,MAAM,CAAC,OAAO,MAAM,aAAa,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAExD,MAAM,CAAC,OAAO,MAAM,kCAAkC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,CAAC;AAE/E,MAAM,CAAC,OAAO,MAAM,kBAAkB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE7D,MAAM,CAAC,OAAO,MAAM,0BAA0B,GAAG,WAAW,CAAC;IAC3D,MAAM,EAAE,cAAc,GAAG,UAAU,GAAG,UAAU,CAAC;CAClD,CAAC,CAAC;AAEH,MAAM,CAAC,OAAO,MAAM,mBAAmB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE9D,MAAM,CAAC,OAAO,MAAM,kBAAkB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE7D,MAAM,CAAC,OAAO,MAAM,mBAAmB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE9D,MAAM,CAAC,OAAO,MAAM,sBAAsB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEjE,MAAM,CAAC,OAAO,MAAM,uBAAuB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAErD,MAAM,CAAC,OAAO,MAAM,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEtD,MAAM,CAAC,OAAO,MAAM,aAAa,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAExD,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEvD,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC;AAEhE,MAAM,CAAC,OAAO,MAAM,kBAAkB,GAAG,WAAW,CAAC;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,OAAO,MAAM,oBAAoB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE/D,MAAM,CAAC,OAAO,MAAM,oBAAoB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE/D,MAAM,CAAC,OAAO,MAAM,uBAAuB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAElE,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,WAAW,CAAC,aAAa,EAAE,CAAC,CAAC;AAElE,MAAM,CAAC,OAAO,MAAM,oBAAoB,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AAEhE,MAAM,CAAC,OAAO,MAAM,eAAe,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE1D,MAAM,CAAC,OAAO,MAAM,gBAAgB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE3D,MAAM,CAAC,OAAO,MAAM,iBAAiB,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC;AAEnE,MAAM,CAAC,OAAO,MAAM,oBAAoB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE/D,MAAM,CAAC,OAAO,MAAM,oBAAoB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE/D,MAAM,CAAC,OAAO,MAAM,wBAAwB,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AAEpE,MAAM,CAAC,OAAO,MAAM,eAAe,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE1D,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEzD,MAAM,CAAC,OAAO,MAAM,+BAA+B,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE1E,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEzD,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEvD,MAAM,CAAC,OAAO,MAAM,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAEtD,MAAM,CAAC,OAAO,MAAM,0BAA0B,GAAG,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;AAE5E,MAAM,CAAC,OAAO,MAAM,mBAAmB,GAAG,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;AAErE,MAAM,CAAC,OAAO,MAAM,kBAAkB,GAAG,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;AAEpE,MAAM,CAAC,OAAO,MAAM,gBAAgB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;AAE3D,MAAM,CAAC,OAAO,MAAM,OAAO,GAAG,WAAW,CAAC;AAE1C,MAAM,CAAC,OAAO,MAAM,OAAO,GAAG,WAAW,CAAC;AAE1C,MAAM,CAAC,OAAO,MAAM,QAAQ,GAAG,YAAY,CAAC;AAE5C,MAAM,CAAC,OAAO,MAAM,eAAe,GAAG,mBAAmB,CAAC;AAE1D,MAAM,CAAC,OAAO,MAAM,QAAQ,GAAG,YAAY,CAAC;AAE5C,MAAM,CAAC,OAAO,MAAM,QAAQ,GAAG,YAAY,CAAC;AAE5C,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,cAAc,CAAC;AAEhD,MAAM,CAAC,OAAO,MAAM,MAAM,GAAG,UAAU,CAAC;AAExC,MAAM,CAAC,OAAO,MAAM,OAAO,GAAG,WAAW,CAAC;AAE1C,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG,gBAAgB,CAAC;AAEpD,MAAM,CAAC,OAAO,MAAM,SAAS,GAAG,aAAa,CAAC;AAE9C,MAAM,CAAC,OAAO,MAAM,mBAAmB,GAAG,uBAAuB,CAAC;AAElE,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG,gBAAgB,CAAC;AAEpD,MAAM,CAAC,OAAO,MAAM,QAAQ,GAAG,YAAY,CAAC;AAE5C,MAAM,CAAC,OAAO,MAAM,QAAQ,GAAG,YAAY,CAAC;AAE5C,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,cAAc,CAAC;AAEhD,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,cAAc,CAAC;AAEhD,MAAM,CAAC,OAAO,MAAM,SAAS,GAAG,aAAa,CAAC;AAE9C,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,cAAc,CAAC;AAEhD,MAAM,CAAC,OAAO,MAAM,eAAe,GAAG,mBAAmB,CAAC;AAE1D,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,kBAAkB,CAAC;AAExD,MAAM,CAAC,OAAO,MAAM,OAAO,GAAG,WAAW,CAAC;AAE1C,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,kBAAkB,CAAC;AAExD,MAAM,CAAC,OAAO,MAAM,KAAK,GAAG,SAAS,CAAC;AAEtC,MAAM,CAAC,OAAO,MAAM,UAAU,GAAG,cAAc,CAAC;AAEhD;;;GAGG;AACH,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,mBAAmB,CAC7C,iBAAiB,CAAC,WAAW,EAAE;IAAE,SAAS,EAAE,SAAS,CAAC,YAAY,CAAC,CAAA;CAAE,CAAC,CASvE,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,mBAAmB,CAC7C,iBAAiB,CAAC,WAAW,CAAC,CAS/B,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,mBAAmB,CAC9C,iBAAiB,CAAC,YAAY,EAAE;IAAE,SAAS,EAAE,SAAS,CAAC,aAAa,CAAC,CAAA;CAAE,CAAC,CASzE,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,mBAAmB,CACrD,iBAAiB,CACf,mBAAmB,EACnB;IAAE,uBAAuB,EAAE,SAAS,CAAC,kCAAkC,CAAC,CAAA;CAAE,CAC3E,CAYF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,mBAAmB,CAC9C,iBAAiB,CACf,YAAY,EACZ;IACE,cAAc,EAAE,SAAS,CAAC,kBAAkB,CAAC,CAAC;IAC9C,sBAAsB,EAAE,SAAS,CAAC,0BAA0B,CAAC,CAAC;IAC9D,eAAe,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;CACjD,CACF,CAoBF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,mBAAmB,CAC9C,iBAAiB,CACf,YAAY,EACZ;IACE,cAAc,EAAE,SAAS,CAAC,kBAAkB,CAAC,CAAC;IAC9C,eAAe,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;CACjD,CACF,CAkBF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,mBAAmB,CAChD,iBAAiB,CACf,cAAc,EACd;IACE,gBAAgB,EAAE,SAAS,CAAC,sBAAsB,CAAC,CAAC;IACpD,iBAAiB,EAAE,SAAS,CAAC,uBAAuB,CAAC,CAAC;CACvD,CACF,CAkBF,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,mBAAmB,CAC5C,iBAAiB,CACf,UAAU,EACV;IAAE,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IAAC,SAAS,EAAE,SAAS,CAAC,WAAW,CAAC,CAAA;CAAE,CACvE,CAYF,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,mBAAmB,CAC7C,iBAAiB,CACf,WAAW,EACX;IACE,UAAU,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IACrC,SAAS,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IACnC,WAAW,EAAE,SAAS,CAAC,cAAc,CAAC,CAAC;CACxC,CACF,CAoBF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,mBAAmB,CAClD,iBAAiB,CACf,gBAAgB,EAChB;IAAE,UAAU,EAAE,SAAS,CAAC,kBAAkB,CAAC,CAAA;CAAE,CAC9C,CAYF,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,mBAAmB,CAC/C,iBAAiB,CACf,aAAa,EACb;IACE,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,CAAC;IACjD,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,CAAC;CAClD,CACF,CAkBF,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,mBAAmB,CACzD,iBAAiB,CAAC,uBAAuB,CAAC,CAS3C,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,mBAAmB,CAClD,iBAAiB,CACf,gBAAgB,EAChB;IAAE,eAAe,EAAE,SAAS,CAAC,uBAAuB,CAAC,CAAA;CAAE,CACxD,CAYF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,mBAAmB,CAC9C,iBAAiB,CAAC,YAAY,EAAE;IAAE,UAAU,EAAE,SAAS,CAAC,cAAc,CAAC,CAAA;CAAE,CAAC,CAS3E,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,mBAAmB,CAC9C,iBAAiB,CACf,YAAY,EACZ;IAAE,gBAAgB,EAAE,SAAS,CAAC,oBAAoB,CAAC,CAAA;CAAE,CACtD,CAYF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,mBAAmB,CAChD,iBAAiB,CAAC,cAAc,CAAC,CASlC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,mBAAmB,CAChD,iBAAiB,CACf,cAAc,EACd;IACE,SAAS,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC;IACtC,UAAU,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IACxC,WAAW,EAAE,SAAS,CAAC,iBAAiB,CAAC,CAAC;CAC3C,CACF,CAoBF,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,mBAAmB,CAC/C,iBAAiB,CACf,aAAa,EACb;IACE,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,CAAC;IACjD,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,CAAC;CAClD,CACF,CAkBF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,mBAAmB,CAChD,iBAAiB,CACf,cAAc,EACd;IACE,kBAAkB,EAAE,SAAS,CAAC,wBAAwB,CAAC,CAAC;IACxD,SAAS,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC;IACtC,QAAQ,EAAE,SAAS,CAAC,cAAc,CAAC,CAAC;CACrC,CACF,CAoBF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,mBAAmB,CACrD,iBAAiB,CAAC,mBAAmB,CAAC,CASvC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,mBAAmB,CACpD,iBAAiB,CACf,kBAAkB,EAClB;IAAE,qBAAqB,EAAE,SAAS,CAAC,+BAA+B,CAAC,CAAA;CAAE,CACtE,CAYF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,mBAAmB,CAC7C,iBAAiB,CACf,WAAW,EACX;IACE,WAAW,EAAE,SAAS,CAAC,cAAc,CAAC,CAAC;IACvC,SAAS,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IACnC,QAAQ,EAAE,SAAS,CAAC,WAAW,CAAC,CAAC;CAClC,CACF,CAoBF,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,mBAAmB,CACpD,iBAAiB,CACf,kBAAkB,EAClB;IACE,gBAAgB,EAAE,SAAS,CAAC,0BAA0B,CAAC,CAAC;IACxD,SAAS,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;IAC1C,QAAQ,EAAE,SAAS,CAAC,kBAAkB,CAAC,CAAC;CACzC,CACF,CAoBF,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,mBAAmB,CAC3C,iBAAiB,CAAC,SAAS,EAAE;IAAE,eAAe,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAA;CAAE,CAAC,CAS/E,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,mBAAmB,CAChD,iBAAiB,CAAC,cAAc,CAAC,CASlC,CAAC"}
@@ -1,4 +1,4 @@
1
- import"./chunk-VO7C5OZC.js";var w=new Set(["children","localName","ref","style","className"]),T=new WeakMap,N=(u,m,B,b,d)=>{let a=d==null?void 0:d[m];a===void 0||B===b?B==null&&m in HTMLElement.prototype?u.removeAttribute(m):u[m]=B:((p,n,g)=>{let r=T.get(p);r===void 0&&T.set(p,r=new Map);let s=r.get(n);g!==void 0?s===void 0?(r.set(n,s={handleEvent:g}),p.addEventListener(n,s)):s.handleEvent=g:s!==void 0&&(r.delete(n),p.removeEventListener(n,s))})(u,a,B)};function t(u=window.React,m,B,b,d){let a,p,n;if(m===void 0){let c=u;({tagName:p,elementClass:n,events:b,displayName:d}=c),a=c.react}else a=u,n=B,p=m;let g=a.Component,r=a.createElement,s=new Set(Object.keys(b!=null?b:{}));class E extends g{constructor(){super(...arguments),this.o=null}t(o){if(this.o!==null)for(let v in this.i)N(this.o,v,this.props[v],o?o[v]:void 0,b)}componentDidMount(){this.t()}componentDidUpdate(o){this.t(o)}render(){let{_$Gl:o,...v}=this.props;this.h!==o&&(this.u=l=>{o!==null&&((i,h)=>{typeof i=="function"?i(h):i.current=h})(o,l),this.o=l,this.h=o}),this.i={};let y={ref:this.u};for(let[l,i]of Object.entries(v))w.has(l)?y[l==="className"?"class":l]=i:s.has(l)||l in n.prototype?this.i[l]=i:y[l]=i;return r(p,y)}}E.displayName=d!=null?d:n.name;let C=a.forwardRef((c,o)=>r(E,{...c,_$Gl:o},c==null?void 0:c.children));return C.displayName=E.displayName,C}import e from"react";var I=e.lazy(()=>customElements.whenDefined("bl-alert").then(()=>({default:t({react:e,tagName:"bl-alert",elementClass:customElements.get("bl-alert"),events:{onBlClose:"bl-close"}})}))),P=e.lazy(()=>customElements.whenDefined("bl-badge").then(()=>({default:t({react:e,tagName:"bl-badge",elementClass:customElements.get("bl-badge"),events:{}})}))),G=e.lazy(()=>customElements.whenDefined("bl-button").then(()=>({default:t({react:e,tagName:"bl-button",elementClass:customElements.get("bl-button"),events:{onBlClick:"bl-click"}})}))),W=e.lazy(()=>customElements.whenDefined("bl-checkbox-group").then(()=>({default:t({react:e,tagName:"bl-checkbox-group",elementClass:customElements.get("bl-checkbox-group"),events:{onBlCheckboxGroupChange:"bl-checkbox-group-change"}})}))),z=e.lazy(()=>customElements.whenDefined("bl-dialog").then(()=>({default:t({react:e,tagName:"bl-dialog",elementClass:customElements.get("bl-dialog"),events:{onBlDialogOpen:"bl-dialog-open",onBlDialogRequestClose:"bl-dialog-request-close",onBlDialogClose:"bl-dialog-close"}})}))),O=e.lazy(()=>customElements.whenDefined("bl-drawer").then(()=>({default:t({react:e,tagName:"bl-drawer",elementClass:customElements.get("bl-drawer"),events:{onBlDrawerOpen:"bl-drawer-open",onBlDrawerClose:"bl-drawer-close"}})}))),F=e.lazy(()=>customElements.whenDefined("bl-dropdown").then(()=>({default:t({react:e,tagName:"bl-dropdown",elementClass:customElements.get("bl-dropdown"),events:{onBlDropdownOpen:"bl-dropdown-open",onBlDropdownClose:"bl-dropdown-close"}})}))),A=e.lazy(()=>customElements.whenDefined("bl-icon").then(()=>({default:t({react:e,tagName:"bl-icon",elementClass:customElements.get("bl-icon"),events:{onBlLoad:"bl-load",onBlError:"bl-error"}})}))),H=e.lazy(()=>customElements.whenDefined("bl-input").then(()=>({default:t({react:e,tagName:"bl-input",elementClass:customElements.get("bl-input"),events:{onBlChange:"bl-change",onBlInput:"bl-input",onBlInvalid:"bl-invalid"}})}))),j=e.lazy(()=>customElements.whenDefined("bl-pagination").then(()=>({default:t({react:e,tagName:"bl-pagination",elementClass:customElements.get("bl-pagination"),events:{onBlChange:"bl-change"}})}))),L=e.lazy(()=>customElements.whenDefined("bl-popover").then(()=>({default:t({react:e,tagName:"bl-popover",elementClass:customElements.get("bl-popover"),events:{onBlPopoverShow:"bl-popover-show",onBlPopoverHide:"bl-popover-hide"}})}))),q=e.lazy(()=>customElements.whenDefined("bl-progress-indicator").then(()=>({default:t({react:e,tagName:"bl-progress-indicator",elementClass:customElements.get("bl-progress-indicator"),events:{}})}))),M=e.lazy(()=>customElements.whenDefined("bl-radio-group").then(()=>({default:t({react:e,tagName:"bl-radio-group",elementClass:customElements.get("bl-radio-group"),events:{onBlRadioChange:"bl-radio-change"}})}))),V=e.lazy(()=>customElements.whenDefined("bl-select").then(()=>({default:t({react:e,tagName:"bl-select",elementClass:customElements.get("bl-select"),events:{onBlSelect:"bl-select"}})}))),_=e.lazy(()=>customElements.whenDefined("bl-switch").then(()=>({default:t({react:e,tagName:"bl-switch",elementClass:customElements.get("bl-switch"),events:{onBlSwitchToggle:"bl-switch-toggle"}})}))),$=e.lazy(()=>customElements.whenDefined("bl-tab-group").then(()=>({default:t({react:e,tagName:"bl-tab-group",elementClass:customElements.get("bl-tab-group"),events:{}})}))),U=e.lazy(()=>customElements.whenDefined("bl-textarea").then(()=>({default:t({react:e,tagName:"bl-textarea",elementClass:customElements.get("bl-textarea"),events:{onBlInput:"bl-input",onBlChange:"bl-change",onBlInvalid:"bl-invalid"}})}))),J=e.lazy(()=>customElements.whenDefined("bl-tooltip").then(()=>({default:t({react:e,tagName:"bl-tooltip",elementClass:customElements.get("bl-tooltip"),events:{onBlTooltipShow:"bl-tooltip-show",onBlTooltipHide:"bl-tooltip-hide"}})}))),K=e.lazy(()=>customElements.whenDefined("bl-checkbox").then(()=>({default:t({react:e,tagName:"bl-checkbox",elementClass:customElements.get("bl-checkbox"),events:{onBlCheckboxChange:"bl-checkbox-change",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})}))),Q=e.lazy(()=>customElements.whenDefined("bl-dropdown-group").then(()=>({default:t({react:e,tagName:"bl-dropdown-group",elementClass:customElements.get("bl-dropdown-group"),events:{}})}))),X=e.lazy(()=>customElements.whenDefined("bl-dropdown-item").then(()=>({default:t({react:e,tagName:"bl-dropdown-item",elementClass:customElements.get("bl-dropdown-item"),events:{onBlDropdownItemClick:"bl-dropdown-item-click"}})}))),Y=e.lazy(()=>customElements.whenDefined("bl-radio").then(()=>({default:t({react:e,tagName:"bl-radio",elementClass:customElements.get("bl-radio"),events:{onBlChecked:"bl-checked",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})}))),Z=e.lazy(()=>customElements.whenDefined("bl-select-option").then(()=>({default:t({react:e,tagName:"bl-select-option",elementClass:customElements.get("bl-select-option"),events:{onBlSelectOption:"bl-select-option",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})}))),ee=e.lazy(()=>customElements.whenDefined("bl-tab").then(()=>({default:t({react:e,tagName:"bl-tab",elementClass:customElements.get("bl-tab"),events:{onBlTabSelected:"bl-tab-selected"}})}))),te=e.lazy(()=>customElements.whenDefined("bl-tab-panel").then(()=>({default:t({react:e,tagName:"bl-tab-panel",elementClass:customElements.get("bl-tab-panel"),events:{}})})));export{I as BlAlert,P as BlBadge,G as BlButton,K as BlCheckbox,W as BlCheckboxGroup,z as BlDialog,O as BlDrawer,F as BlDropdown,Q as BlDropdownGroup,X as BlDropdownItem,A as BlIcon,H as BlInput,j as BlPagination,L as BlPopover,q as BlProgressIndicator,Y as BlRadio,M as BlRadioGroup,V as BlSelect,Z as BlSelectOption,_ as BlSwitch,ee as BlTab,$ as BlTabGroup,te as BlTabPanel,U as BlTextarea,J as BlTooltip};
1
+ import"./chunk-VO7C5OZC.js";var C=new Set(["children","localName","ref","style","className"]),g=new WeakMap,v=(n,s,c,i,B)=>{let d=B==null?void 0:B[s];d===void 0||c===i?(n[s]=c,c==null&&s in HTMLElement.prototype&&n.removeAttribute(s)):((m,a,r)=>{let p=g.get(m);p===void 0&&g.set(m,p=new Map);let l=p.get(a);r!==void 0?l===void 0?(p.set(a,l={handleEvent:r}),m.addEventListener(a,l)):l.handleEvent=r:l!==void 0&&(p.delete(a),m.removeEventListener(a,l))})(n,d,c)},e=({react:n,tagName:s,elementClass:c,events:i,displayName:B})=>{let d=new Set(Object.keys(i!=null?i:{})),m=n.forwardRef((a,r)=>{let p=n.useRef(null),l=n.useRef(null),b={},y={};for(let[t,u]of Object.entries(a))C.has(t)?b[t==="className"?"class":t]=u:d.has(t)||t in c.prototype?y[t]=u:b[t]=u;return n.useLayoutEffect(()=>{if(l.current!==null){for(let t in y)v(l.current,t,a[t],p.current?p.current[t]:void 0,i);p.current=a}}),n.useLayoutEffect(()=>{var t;(t=l.current)===null||t===void 0||t.removeAttribute("defer-hydration")},[]),b.suppressHydrationWarning=!0,n.createElement(s,{...b,ref:t=>{l.current=t,typeof r=="function"?r(t):r!==null&&(r.current=t)}})});return m.displayName=B!=null?B:c.name,m};import o from"react";var N=customElements.whenDefined("bl-alert").then(()=>e({react:o,displayName:"BlAlert",tagName:"bl-alert",elementClass:customElements.get("bl-alert"),events:{onBlClose:"bl-close"}})),R=customElements.whenDefined("bl-badge").then(()=>e({react:o,displayName:"BlBadge",tagName:"bl-badge",elementClass:customElements.get("bl-badge"),events:{}})),I=customElements.whenDefined("bl-button").then(()=>e({react:o,displayName:"BlButton",tagName:"bl-button",elementClass:customElements.get("bl-button"),events:{onBlClick:"bl-click"}})),S=customElements.whenDefined("bl-checkbox-group").then(()=>e({react:o,displayName:"BlCheckboxGroup",tagName:"bl-checkbox-group",elementClass:customElements.get("bl-checkbox-group"),events:{onBlCheckboxGroupChange:"bl-checkbox-group-change"}})),k=customElements.whenDefined("bl-dialog").then(()=>e({react:o,displayName:"BlDialog",tagName:"bl-dialog",elementClass:customElements.get("bl-dialog"),events:{onBlDialogOpen:"bl-dialog-open",onBlDialogRequestClose:"bl-dialog-request-close",onBlDialogClose:"bl-dialog-close"}})),f=customElements.whenDefined("bl-drawer").then(()=>e({react:o,displayName:"BlDrawer",tagName:"bl-drawer",elementClass:customElements.get("bl-drawer"),events:{onBlDrawerOpen:"bl-drawer-open",onBlDrawerClose:"bl-drawer-close"}})),P=customElements.whenDefined("bl-dropdown").then(()=>e({react:o,displayName:"BlDropdown",tagName:"bl-dropdown",elementClass:customElements.get("bl-dropdown"),events:{onBlDropdownOpen:"bl-dropdown-open",onBlDropdownClose:"bl-dropdown-close"}})),O=customElements.whenDefined("bl-icon").then(()=>e({react:o,displayName:"BlIcon",tagName:"bl-icon",elementClass:customElements.get("bl-icon"),events:{onBlLoad:"bl-load",onBlError:"bl-error"}})),G=customElements.whenDefined("bl-input").then(()=>e({react:o,displayName:"BlInput",tagName:"bl-input",elementClass:customElements.get("bl-input"),events:{onBlChange:"bl-change",onBlInput:"bl-input",onBlInvalid:"bl-invalid"}})),L=customElements.whenDefined("bl-pagination").then(()=>e({react:o,displayName:"BlPagination",tagName:"bl-pagination",elementClass:customElements.get("bl-pagination"),events:{onBlChange:"bl-change"}})),W=customElements.whenDefined("bl-popover").then(()=>e({react:o,displayName:"BlPopover",tagName:"bl-popover",elementClass:customElements.get("bl-popover"),events:{onBlPopoverShow:"bl-popover-show",onBlPopoverHide:"bl-popover-hide"}})),z=customElements.whenDefined("bl-progress-indicator").then(()=>e({react:o,displayName:"BlProgressIndicator",tagName:"bl-progress-indicator",elementClass:customElements.get("bl-progress-indicator"),events:{}})),F=customElements.whenDefined("bl-radio-group").then(()=>e({react:o,displayName:"BlRadioGroup",tagName:"bl-radio-group",elementClass:customElements.get("bl-radio-group"),events:{onBlRadioChange:"bl-radio-change"}})),H=customElements.whenDefined("bl-select").then(()=>e({react:o,displayName:"BlSelect",tagName:"bl-select",elementClass:customElements.get("bl-select"),events:{onBlSelect:"bl-select"}})),A=customElements.whenDefined("bl-switch").then(()=>e({react:o,displayName:"BlSwitch",tagName:"bl-switch",elementClass:customElements.get("bl-switch"),events:{onBlSwitchToggle:"bl-switch-toggle"}})),q=customElements.whenDefined("bl-tab-group").then(()=>e({react:o,displayName:"BlTabGroup",tagName:"bl-tab-group",elementClass:customElements.get("bl-tab-group"),events:{}})),j=customElements.whenDefined("bl-textarea").then(()=>e({react:o,displayName:"BlTextarea",tagName:"bl-textarea",elementClass:customElements.get("bl-textarea"),events:{onBlInput:"bl-input",onBlChange:"bl-change",onBlInvalid:"bl-invalid"}})),M=customElements.whenDefined("bl-tooltip").then(()=>e({react:o,displayName:"BlTooltip",tagName:"bl-tooltip",elementClass:customElements.get("bl-tooltip"),events:{onBlTooltipShow:"bl-tooltip-show",onBlTooltipHide:"bl-tooltip-hide"}})),V=customElements.whenDefined("bl-checkbox").then(()=>e({react:o,displayName:"BlCheckbox",tagName:"bl-checkbox",elementClass:customElements.get("bl-checkbox"),events:{onBlCheckboxChange:"bl-checkbox-change",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})),J=customElements.whenDefined("bl-dropdown-group").then(()=>e({react:o,displayName:"BlDropdownGroup",tagName:"bl-dropdown-group",elementClass:customElements.get("bl-dropdown-group"),events:{}})),K=customElements.whenDefined("bl-dropdown-item").then(()=>e({react:o,displayName:"BlDropdownItem",tagName:"bl-dropdown-item",elementClass:customElements.get("bl-dropdown-item"),events:{onBlDropdownItemClick:"bl-dropdown-item-click"}})),Q=customElements.whenDefined("bl-radio").then(()=>e({react:o,displayName:"BlRadio",tagName:"bl-radio",elementClass:customElements.get("bl-radio"),events:{onBlChecked:"bl-checked",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})),U=customElements.whenDefined("bl-select-option").then(()=>e({react:o,displayName:"BlSelectOption",tagName:"bl-select-option",elementClass:customElements.get("bl-select-option"),events:{onBlSelectOption:"bl-select-option",onBlFocus:"bl-focus",onBlBlur:"bl-blur"}})),X=customElements.whenDefined("bl-tab").then(()=>e({react:o,displayName:"BlTab",tagName:"bl-tab",elementClass:customElements.get("bl-tab"),events:{onBlTabSelected:"bl-tab-selected"}})),Y=customElements.whenDefined("bl-tab-panel").then(()=>e({react:o,displayName:"BlTabPanel",tagName:"bl-tab-panel",elementClass:customElements.get("bl-tab-panel"),events:{}}));export{N as BlAlert,R as BlBadge,I as BlButton,V as BlCheckbox,S as BlCheckboxGroup,k as BlDialog,f as BlDrawer,P as BlDropdown,J as BlDropdownGroup,K as BlDropdownItem,O as BlIcon,G as BlInput,L as BlPagination,W as BlPopover,z as BlProgressIndicator,Q as BlRadio,F as BlRadioGroup,H as BlSelect,U as BlSelectOption,A as BlSwitch,X as BlTab,q as BlTabGroup,Y as BlTabPanel,j as BlTextarea,M as BlTooltip};
2
2
  /*! Bundled license information:
3
3
 
4
4
  @lit-labs/react/create-component.js: