@heartlandone/vega-react-sandbox-pr-3182-35bf83f67c752b54d2fc82c79f136ee5c8a0dc4e 2.94.0

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.
Files changed (40) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +4 -0
  3. package/dist/components.d.ts +123 -0
  4. package/dist/components.js +130 -0
  5. package/dist/global.d.ts +6 -0
  6. package/dist/global.js +1 -0
  7. package/dist/hooks/use-vega-ref.d.ts +16 -0
  8. package/dist/hooks/use-vega-ref.js +28 -0
  9. package/dist/index.d.ts +4 -0
  10. package/dist/index.js +4 -0
  11. package/dist/overrides/vega-popover/index.d.ts +7 -0
  12. package/dist/overrides/vega-popover/index.js +151 -0
  13. package/dist/overrides/vega-popover/test/vega-popover.test.d.ts +6 -0
  14. package/dist/overrides/vega-popover/test/vega-popover.test.js +108 -0
  15. package/dist/package.json +17 -0
  16. package/dist/react-component-lib/createComponent.d.ts +10 -0
  17. package/dist/react-component-lib/createComponent.js +85 -0
  18. package/dist/react-component-lib/createOverlayComponent.d.ts +21 -0
  19. package/dist/react-component-lib/createOverlayComponent.js +108 -0
  20. package/dist/react-component-lib/index.d.ts +2 -0
  21. package/dist/react-component-lib/index.js +2 -0
  22. package/dist/react-component-lib/interfaces.d.ts +29 -0
  23. package/dist/react-component-lib/interfaces.js +1 -0
  24. package/dist/react-component-lib/utils/attachProps.d.ts +12 -0
  25. package/dist/react-component-lib/utils/attachProps.js +134 -0
  26. package/dist/react-component-lib/utils/attachProps.test.d.ts +13 -0
  27. package/dist/react-component-lib/utils/attachProps.test.js +136 -0
  28. package/dist/react-component-lib/utils/case.d.ts +2 -0
  29. package/dist/react-component-lib/utils/case.js +6 -0
  30. package/dist/react-component-lib/utils/dev.d.ts +2 -0
  31. package/dist/react-component-lib/utils/dev.js +12 -0
  32. package/dist/react-component-lib/utils/index.d.ts +10 -0
  33. package/dist/react-component-lib/utils/index.js +33 -0
  34. package/dist/testing/index.d.ts +1 -0
  35. package/dist/testing/index.js +1 -0
  36. package/dist/testing/utils.d.ts +21 -0
  37. package/dist/testing/utils.js +100 -0
  38. package/dist/utils/spec-utils.d.ts +11 -0
  39. package/dist/utils/spec-utils.js +22 -0
  40. package/package.json +69 -0
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Company Proprietary License
2
+
3
+ Copyright (c) 2025 Global Payments Inc. All rights reserved.
4
+
5
+ This software and associated documentation files (the "Software") are the proprietary property of Global Payments Inc. and are protected by copyright law.
6
+
7
+ Permission is hereby granted to Global Payments Inc. employees and authorized contractors to use, copy, modify, and distribute the Software within Global Payments Inc. for internal purposes only, subject to the following conditions:
8
+
9
+ 1. The Software may not be used, copied, modified, or distributed outside of Global Payments Inc. without prior written permission from Global Payments Inc.
10
+ 2. The Software may not be used for commercial purposes outside of Global Payments Inc.
11
+ 3. Unauthorized use, reproduction, or distribution of the Software is strictly prohibited.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL GLOBAL PAYMENTS INC. BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Vega React
2
+ > React specific wrapper for [@globalpayments/vega](https://www.npmjs.com/package/@globalpayments/vega)
3
+
4
+ For installation guidance, please refer to https://vega.globalpayments.com/guides/getting-started-developers#react
@@ -0,0 +1,123 @@
1
+ import type { JSX } from '@heartlandone/vega-sandbox-pr-3182-35bf83f67c752b54d2fc82c79f136ee5c8a0dc4e';
2
+ export declare const VegaAccordion: import("react").ForwardRefExoticComponent<JSX.VegaAccordion & Omit<import("react").HTMLAttributes<HTMLVegaAccordionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaAccordionElement>>;
3
+ export declare const VegaAppFooter: import("react").ForwardRefExoticComponent<JSX.VegaAppFooter & Omit<import("react").HTMLAttributes<HTMLVegaAppFooterElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaAppFooterElement>>;
4
+ export declare const VegaAppHeaderButton: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaAppHeaderButton, Omit<import("react").HTMLAttributes<HTMLVegaAppHeaderButtonElement>, "style">, "onClick"|"onReset"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaAppHeaderButtonElement>>;
5
+ export declare const VegaBackdrop: import("react").ForwardRefExoticComponent<JSX.VegaBackdrop & Omit<import("react").HTMLAttributes<HTMLVegaBackdropElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBackdropElement>>;
6
+ export declare const VegaBanner: import("react").ForwardRefExoticComponent<JSX.VegaBanner & Omit<import("react").HTMLAttributes<HTMLVegaBannerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBannerElement>>;
7
+ export declare const VegaBarChart: import("react").ForwardRefExoticComponent<JSX.VegaBarChart & Omit<import("react").HTMLAttributes<HTMLVegaBarChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBarChartElement>>;
8
+ export declare const VegaBox: import("react").ForwardRefExoticComponent<JSX.VegaBox & Omit<import("react").HTMLAttributes<HTMLVegaBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBoxElement>>;
9
+ export declare const VegaBrandLogo: import("react").ForwardRefExoticComponent<JSX.VegaBrandLogo & Omit<import("react").HTMLAttributes<HTMLVegaBrandLogoElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBrandLogoElement>>;
10
+ export declare const VegaBreadcrumb: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaBreadcrumb, Omit<import("react").HTMLAttributes<HTMLVegaBreadcrumbElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaBreadcrumbElement>>;
11
+ export declare const VegaButton: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaButton, Omit<import("react").HTMLAttributes<HTMLVegaButtonElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaButtonElement>>;
12
+ export declare const VegaButtonCircle: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaButtonCircle, Omit<import("react").HTMLAttributes<HTMLVegaButtonCircleElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaButtonCircleElement>>;
13
+ export declare const VegaButtonGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaButtonGroup, Omit<import("react").HTMLAttributes<HTMLVegaButtonGroupElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaButtonGroupElement>>;
14
+ export declare const VegaButtonGroupItem: import("react").ForwardRefExoticComponent<JSX.VegaButtonGroupItem & Omit<import("react").HTMLAttributes<HTMLVegaButtonGroupItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaButtonGroupItemElement>>;
15
+ export declare const VegaButtonLink: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaButtonLink, Omit<import("react").HTMLAttributes<HTMLVegaButtonLinkElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaButtonLinkElement>>;
16
+ export declare const VegaCalendar: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaCalendar, Omit<import("react").HTMLAttributes<HTMLVegaCalendarElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCalendarElement>>;
17
+ export declare const VegaCalendarEvent: import("react").ForwardRefExoticComponent<JSX.VegaCalendarEvent & Omit<import("react").HTMLAttributes<HTMLVegaCalendarEventElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCalendarEventElement>>;
18
+ export declare const VegaCalendarEventPreview: import("react").ForwardRefExoticComponent<JSX.VegaCalendarEventPreview & Omit<import("react").HTMLAttributes<HTMLVegaCalendarEventPreviewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCalendarEventPreviewElement>>;
19
+ export declare const VegaCalendarEventSlot: import("react").ForwardRefExoticComponent<JSX.VegaCalendarEventSlot & Omit<import("react").HTMLAttributes<HTMLVegaCalendarEventSlotElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCalendarEventSlotElement>>;
20
+ export declare const VegaCalendarPeriodSwitcher: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaCalendarPeriodSwitcher, Omit<import("react").HTMLAttributes<HTMLVegaCalendarPeriodSwitcherElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCalendarPeriodSwitcherElement>>;
21
+ export declare const VegaCard: import("react").ForwardRefExoticComponent<JSX.VegaCard & Omit<import("react").HTMLAttributes<HTMLVegaCardElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCardElement>>;
22
+ export declare const VegaCarousel: import("react").ForwardRefExoticComponent<JSX.VegaCarousel & Omit<import("react").HTMLAttributes<HTMLVegaCarouselElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCarouselElement>>;
23
+ export declare const VegaCheckbox: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaCheckbox, Omit<import("react").HTMLAttributes<HTMLVegaCheckboxElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCheckboxElement>>;
24
+ export declare const VegaCheckboxGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaCheckboxGroup, Omit<import("react").HTMLAttributes<HTMLVegaCheckboxGroupElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCheckboxGroupElement>>;
25
+ export declare const VegaChip: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaChip, Omit<import("react").HTMLAttributes<HTMLVegaChipElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaChipElement>>;
26
+ export declare const VegaCodeBlock: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaCodeBlock, Omit<import("react").HTMLAttributes<HTMLVegaCodeBlockElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCodeBlockElement>>;
27
+ export declare const VegaColorPicker: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaColorPicker, Omit<import("react").HTMLAttributes<HTMLVegaColorPickerElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaColorPickerElement>>;
28
+ export declare const VegaColorSwatch: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaColorSwatch, Omit<import("react").HTMLAttributes<HTMLVegaColorSwatchElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaColorSwatchElement>>;
29
+ export declare const VegaColorSwatchPicker: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaColorSwatchPicker, Omit<import("react").HTMLAttributes<HTMLVegaColorSwatchPickerElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaColorSwatchPickerElement>>;
30
+ export declare const VegaComboBox: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaComboBox, Omit<import("react").HTMLAttributes<HTMLVegaComboBoxElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaComboBoxElement>>;
31
+ export declare const VegaCounterBadge: import("react").ForwardRefExoticComponent<JSX.VegaCounterBadge & Omit<import("react").HTMLAttributes<HTMLVegaCounterBadgeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaCounterBadgeElement>>;
32
+ export declare const VegaDatePicker: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaDatePicker, Omit<import("react").HTMLAttributes<HTMLVegaDatePickerElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDatePickerElement>>;
33
+ export declare const VegaDatePickerCalendar: import("react").ForwardRefExoticComponent<JSX.VegaDatePickerCalendar & Omit<import("react").HTMLAttributes<HTMLVegaDatePickerCalendarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDatePickerCalendarElement>>;
34
+ export declare const VegaDialog: import("react").ForwardRefExoticComponent<JSX.VegaDialog & Omit<import("react").HTMLAttributes<HTMLVegaDialogElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDialogElement>>;
35
+ export declare const VegaDivider: import("react").ForwardRefExoticComponent<JSX.VegaDivider & Omit<import("react").HTMLAttributes<HTMLVegaDividerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDividerElement>>;
36
+ export declare const VegaDropdown: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaDropdown, Omit<import("react").HTMLAttributes<HTMLVegaDropdownElement>, "style">, "onReset"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDropdownElement>>;
37
+ export declare const VegaDropdownContentBox: import("react").ForwardRefExoticComponent<JSX.VegaDropdownContentBox & Omit<import("react").HTMLAttributes<HTMLVegaDropdownContentBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDropdownContentBoxElement>>;
38
+ export declare const VegaDropdownGroup: import("react").ForwardRefExoticComponent<JSX.VegaDropdownGroup & Omit<import("react").HTMLAttributes<HTMLVegaDropdownGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDropdownGroupElement>>;
39
+ export declare const VegaDropdownItem: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaDropdownItem, Omit<import("react").HTMLAttributes<HTMLVegaDropdownItemElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaDropdownItemElement>>;
40
+ export declare const VegaFieldError: import("react").ForwardRefExoticComponent<JSX.VegaFieldError & Omit<import("react").HTMLAttributes<HTMLVegaFieldErrorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFieldErrorElement>>;
41
+ export declare const VegaFieldLabel: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaFieldLabel, Omit<import("react").HTMLAttributes<HTMLVegaFieldLabelElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFieldLabelElement>>;
42
+ export declare const VegaFileUploader: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaFileUploader, Omit<import("react").HTMLAttributes<HTMLVegaFileUploaderElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFileUploaderElement>>;
43
+ export declare const VegaFlagIcon: import("react").ForwardRefExoticComponent<JSX.VegaFlagIcon & Omit<import("react").HTMLAttributes<HTMLVegaFlagIconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFlagIconElement>>;
44
+ export declare const VegaFlex: import("react").ForwardRefExoticComponent<JSX.VegaFlex & Omit<import("react").HTMLAttributes<HTMLVegaFlexElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFlexElement>>;
45
+ export declare const VegaFont: import("react").ForwardRefExoticComponent<JSX.VegaFont & Omit<import("react").HTMLAttributes<HTMLVegaFontElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFontElement>>;
46
+ export declare const VegaForm: import("react").ForwardRefExoticComponent<JSX.VegaForm & Omit<import("react").HTMLAttributes<HTMLVegaFormElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaFormElement>>;
47
+ export declare const VegaGrid: import("react").ForwardRefExoticComponent<JSX.VegaGrid & Omit<import("react").HTMLAttributes<HTMLVegaGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaGridElement>>;
48
+ export declare const VegaHint: import("react").ForwardRefExoticComponent<JSX.VegaHint & Omit<import("react").HTMLAttributes<HTMLVegaHintElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaHintElement>>;
49
+ export declare const VegaIcon: import("react").ForwardRefExoticComponent<JSX.VegaIcon & Omit<import("react").HTMLAttributes<HTMLVegaIconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaIconElement>>;
50
+ export declare const VegaImageUploader: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaImageUploader, Omit<import("react").HTMLAttributes<HTMLVegaImageUploaderElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaImageUploaderElement>>;
51
+ export declare const VegaInput: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInput, Omit<import("react").HTMLAttributes<HTMLVegaInputElement>, "style">, "onChange"|"onFocus"|"onBlur"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputElement>>;
52
+ export declare const VegaInputCreditCard: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputCreditCard, Omit<import("react").HTMLAttributes<HTMLVegaInputCreditCardElement>, "style">, "onChange"|"onBlur"|"onFocus"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputCreditCardElement>>;
53
+ export declare const VegaInputNumeric: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputNumeric, Omit<import("react").HTMLAttributes<HTMLVegaInputNumericElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputNumericElement>>;
54
+ export declare const VegaInputPasscode: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputPasscode, Omit<import("react").HTMLAttributes<HTMLVegaInputPasscodeElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputPasscodeElement>>;
55
+ export declare const VegaInputPhoneNumber: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputPhoneNumber, Omit<import("react").HTMLAttributes<HTMLVegaInputPhoneNumberElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputPhoneNumberElement>>;
56
+ export declare const VegaInputRange: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputRange, Omit<import("react").HTMLAttributes<HTMLVegaInputRangeElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputRangeElement>>;
57
+ export declare const VegaInputSelect: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaInputSelect, Omit<import("react").HTMLAttributes<HTMLVegaInputSelectElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputSelectElement>>;
58
+ export declare const VegaItemToggle: import("react").ForwardRefExoticComponent<JSX.VegaItemToggle & Omit<import("react").HTMLAttributes<HTMLVegaItemToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaItemToggleElement>>;
59
+ export declare const VegaLeftNav: import("react").ForwardRefExoticComponent<JSX.VegaLeftNav & Omit<import("react").HTMLAttributes<HTMLVegaLeftNavElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLeftNavElement>>;
60
+ export declare const VegaLeftNavGroup: import("react").ForwardRefExoticComponent<JSX.VegaLeftNavGroup & Omit<import("react").HTMLAttributes<HTMLVegaLeftNavGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLeftNavGroupElement>>;
61
+ export declare const VegaLeftNavLink: import("react").ForwardRefExoticComponent<JSX.VegaLeftNavLink & Omit<import("react").HTMLAttributes<HTMLVegaLeftNavLinkElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLeftNavLinkElement>>;
62
+ export declare const VegaLeftNavSection: import("react").ForwardRefExoticComponent<JSX.VegaLeftNavSection & Omit<import("react").HTMLAttributes<HTMLVegaLeftNavSectionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLeftNavSectionElement>>;
63
+ export declare const VegaLineChart: import("react").ForwardRefExoticComponent<JSX.VegaLineChart & Omit<import("react").HTMLAttributes<HTMLVegaLineChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLineChartElement>>;
64
+ export declare const VegaLoaderWrapper: import("react").ForwardRefExoticComponent<JSX.VegaLoaderWrapper & Omit<import("react").HTMLAttributes<HTMLVegaLoaderWrapperElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLoaderWrapperElement>>;
65
+ export declare const VegaLoadingIndicator: import("react").ForwardRefExoticComponent<JSX.VegaLoadingIndicator & Omit<import("react").HTMLAttributes<HTMLVegaLoadingIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLoadingIndicatorElement>>;
66
+ export declare const VegaModal: import("react").ForwardRefExoticComponent<JSX.VegaModal & Omit<import("react").HTMLAttributes<HTMLVegaModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaModalElement>>;
67
+ export declare const VegaNavCard: import("react").ForwardRefExoticComponent<JSX.VegaNavCard & Omit<import("react").HTMLAttributes<HTMLVegaNavCardElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaNavCardElement>>;
68
+ export declare const VegaPageNotification: import("react").ForwardRefExoticComponent<JSX.VegaPageNotification & Omit<import("react").HTMLAttributes<HTMLVegaPageNotificationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPageNotificationElement>>;
69
+ export declare const VegaPageNotificationList: import("react").ForwardRefExoticComponent<JSX.VegaPageNotificationList & Omit<import("react").HTMLAttributes<HTMLVegaPageNotificationListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPageNotificationListElement>>;
70
+ export declare const VegaPagination: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaPagination, Omit<import("react").HTMLAttributes<HTMLVegaPaginationElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPaginationElement>>;
71
+ export declare const VegaPaginationPageSelectorMobile: import("react").ForwardRefExoticComponent<JSX.VegaPaginationPageSelectorMobile & Omit<import("react").HTMLAttributes<HTMLVegaPaginationPageSelectorMobileElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPaginationPageSelectorMobileElement>>;
72
+ export declare const VegaPaginationPageSizeSelectorMobile: import("react").ForwardRefExoticComponent<JSX.VegaPaginationPageSizeSelectorMobile & Omit<import("react").HTMLAttributes<HTMLVegaPaginationPageSizeSelectorMobileElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPaginationPageSizeSelectorMobileElement>>;
73
+ export declare const VegaPieChart: import("react").ForwardRefExoticComponent<JSX.VegaPieChart & Omit<import("react").HTMLAttributes<HTMLVegaPieChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPieChartElement>>;
74
+ export declare const VegaPopover: import("react").ForwardRefExoticComponent<JSX.VegaPopover & Omit<import("react").HTMLAttributes<HTMLVegaPopoverElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPopoverElement>>;
75
+ export declare const VegaPopoverContentBox: import("react").ForwardRefExoticComponent<JSX.VegaPopoverContentBox & Omit<import("react").HTMLAttributes<HTMLVegaPopoverContentBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaPopoverContentBoxElement>>;
76
+ export declare const VegaProgressTracker: import("react").ForwardRefExoticComponent<JSX.VegaProgressTracker & Omit<import("react").HTMLAttributes<HTMLVegaProgressTrackerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaProgressTrackerElement>>;
77
+ export declare const VegaProgressTrackerStep: import("react").ForwardRefExoticComponent<JSX.VegaProgressTrackerStep & Omit<import("react").HTMLAttributes<HTMLVegaProgressTrackerStepElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaProgressTrackerStepElement>>;
78
+ export declare const VegaRadio: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRadio, Omit<import("react").HTMLAttributes<HTMLVegaRadioElement>, "style">, "onChange"|"onFocus"|"onBlur"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRadioElement>>;
79
+ export declare const VegaRadioGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRadioGroup, Omit<import("react").HTMLAttributes<HTMLVegaRadioGroupElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRadioGroupElement>>;
80
+ export declare const VegaRichTextContent: import("react").ForwardRefExoticComponent<JSX.VegaRichTextContent & Omit<import("react").HTMLAttributes<HTMLVegaRichTextContentElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextContentElement>>;
81
+ export declare const VegaRichTextEditor: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRichTextEditor, Omit<import("react").HTMLAttributes<HTMLVegaRichTextEditorElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextEditorElement>>;
82
+ export declare const VegaRichTextEditorToolbarButton: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRichTextEditorToolbarButton, Omit<import("react").HTMLAttributes<HTMLVegaRichTextEditorToolbarButtonElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextEditorToolbarButtonElement>>;
83
+ export declare const VegaRichTextFindReplacePanel: import("react").ForwardRefExoticComponent<JSX.VegaRichTextFindReplacePanel & Omit<import("react").HTMLAttributes<HTMLVegaRichTextFindReplacePanelElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextFindReplacePanelElement>>;
84
+ export declare const VegaRichTextImageEditor: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRichTextImageEditor, Omit<import("react").HTMLAttributes<HTMLVegaRichTextImageEditorElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextImageEditorElement>>;
85
+ export declare const VegaRichTextLinkEditor: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaRichTextLinkEditor, Omit<import("react").HTMLAttributes<HTMLVegaRichTextLinkEditorElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextLinkEditorElement>>;
86
+ export declare const VegaRichTextSpecialCharactersPanel: import("react").ForwardRefExoticComponent<JSX.VegaRichTextSpecialCharactersPanel & Omit<import("react").HTMLAttributes<HTMLVegaRichTextSpecialCharactersPanelElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextSpecialCharactersPanelElement>>;
87
+ export declare const VegaRichTextTableProperties: import("react").ForwardRefExoticComponent<JSX.VegaRichTextTableProperties & Omit<import("react").HTMLAttributes<HTMLVegaRichTextTablePropertiesElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextTablePropertiesElement>>;
88
+ export declare const VegaRichTextTableSelectionWidget: import("react").ForwardRefExoticComponent<JSX.VegaRichTextTableSelectionWidget & Omit<import("react").HTMLAttributes<HTMLVegaRichTextTableSelectionWidgetElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextTableSelectionWidgetElement>>;
89
+ export declare const VegaRichTextTableSetting: import("react").ForwardRefExoticComponent<JSX.VegaRichTextTableSetting & Omit<import("react").HTMLAttributes<HTMLVegaRichTextTableSettingElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRichTextTableSettingElement>>;
90
+ export declare const VegaSectionTitle: import("react").ForwardRefExoticComponent<JSX.VegaSectionTitle & Omit<import("react").HTMLAttributes<HTMLVegaSectionTitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSectionTitleElement>>;
91
+ export declare const VegaSegmentControl: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSegmentControl, Omit<import("react").HTMLAttributes<HTMLVegaSegmentControlElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSegmentControlElement>>;
92
+ export declare const VegaSelectionChip: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSelectionChip, Omit<import("react").HTMLAttributes<HTMLVegaSelectionChipElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSelectionChipElement>>;
93
+ export declare const VegaSelectionChipGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSelectionChipGroup, Omit<import("react").HTMLAttributes<HTMLVegaSelectionChipGroupElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSelectionChipGroupElement>>;
94
+ export declare const VegaSelectionTile: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSelectionTile, Omit<import("react").HTMLAttributes<HTMLVegaSelectionTileElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSelectionTileElement>>;
95
+ export declare const VegaSelectionTileGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSelectionTileGroup, Omit<import("react").HTMLAttributes<HTMLVegaSelectionTileGroupElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSelectionTileGroupElement>>;
96
+ export declare const VegaSidenav: import("react").ForwardRefExoticComponent<JSX.VegaSidenav & Omit<import("react").HTMLAttributes<HTMLVegaSidenavElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSidenavElement>>;
97
+ export declare const VegaSidenavGroup: import("react").ForwardRefExoticComponent<JSX.VegaSidenavGroup & Omit<import("react").HTMLAttributes<HTMLVegaSidenavGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSidenavGroupElement>>;
98
+ export declare const VegaSidenavLink: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSidenavLink, Omit<import("react").HTMLAttributes<HTMLVegaSidenavLinkElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSidenavLinkElement>>;
99
+ export declare const VegaSignatureCapture: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaSignatureCapture, Omit<import("react").HTMLAttributes<HTMLVegaSignatureCaptureElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSignatureCaptureElement>>;
100
+ export declare const VegaSkeleton: import("react").ForwardRefExoticComponent<JSX.VegaSkeleton & Omit<import("react").HTMLAttributes<HTMLVegaSkeletonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSkeletonElement>>;
101
+ export declare const VegaSlotContainer: import("react").ForwardRefExoticComponent<JSX.VegaSlotContainer & Omit<import("react").HTMLAttributes<HTMLVegaSlotContainerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSlotContainerElement>>;
102
+ export declare const VegaStepper: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaStepper, Omit<import("react").HTMLAttributes<HTMLVegaStepperElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaStepperElement>>;
103
+ export declare const VegaTabGroup: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTabGroup, Omit<import("react").HTMLAttributes<HTMLVegaTabGroupElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTabGroupElement>>;
104
+ export declare const VegaTabGroupPanel: import("react").ForwardRefExoticComponent<JSX.VegaTabGroupPanel & Omit<import("react").HTMLAttributes<HTMLVegaTabGroupPanelElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTabGroupPanelElement>>;
105
+ export declare const VegaTable: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTable, Omit<import("react").HTMLAttributes<HTMLVegaTableElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableElement>>;
106
+ export declare const VegaTableBody: import("react").ForwardRefExoticComponent<JSX.VegaTableBody & Omit<import("react").HTMLAttributes<HTMLVegaTableBodyElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableBodyElement>>;
107
+ export declare const VegaTableCell: import("react").ForwardRefExoticComponent<JSX.VegaTableCell & Omit<import("react").HTMLAttributes<HTMLVegaTableCellElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableCellElement>>;
108
+ export declare const VegaTableExpandRow: import("react").ForwardRefExoticComponent<JSX.VegaTableExpandRow & Omit<import("react").HTMLAttributes<HTMLVegaTableExpandRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableExpandRowElement>>;
109
+ export declare const VegaTableFoot: import("react").ForwardRefExoticComponent<JSX.VegaTableFoot & Omit<import("react").HTMLAttributes<HTMLVegaTableFootElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableFootElement>>;
110
+ export declare const VegaTableFootCell: import("react").ForwardRefExoticComponent<JSX.VegaTableFootCell & Omit<import("react").HTMLAttributes<HTMLVegaTableFootCellElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableFootCellElement>>;
111
+ export declare const VegaTableFootRow: import("react").ForwardRefExoticComponent<JSX.VegaTableFootRow & Omit<import("react").HTMLAttributes<HTMLVegaTableFootRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableFootRowElement>>;
112
+ export declare const VegaTableHead: import("react").ForwardRefExoticComponent<JSX.VegaTableHead & Omit<import("react").HTMLAttributes<HTMLVegaTableHeadElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadElement>>;
113
+ export declare const VegaTableHeadCell: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTableHeadCell, Omit<import("react").HTMLAttributes<HTMLVegaTableHeadCellElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadCellElement>>;
114
+ export declare const VegaTableHeadRow: import("react").ForwardRefExoticComponent<JSX.VegaTableHeadRow & Omit<import("react").HTMLAttributes<HTMLVegaTableHeadRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadRowElement>>;
115
+ export declare const VegaTableRow: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTableRow, Omit<import("react").HTMLAttributes<HTMLVegaTableRowElement>, "style">, "onClick"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableRowElement>>;
116
+ export declare const VegaText: import("react").ForwardRefExoticComponent<JSX.VegaText & Omit<import("react").HTMLAttributes<HTMLVegaTextElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTextElement>>;
117
+ export declare const VegaTextarea: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTextarea, Omit<import("react").HTMLAttributes<HTMLVegaTextareaElement>, "style">, "onChange"|"onBlur"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTextareaElement>>;
118
+ export declare const VegaTimePicker: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaTimePicker, Omit<import("react").HTMLAttributes<HTMLVegaTimePickerElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTimePickerElement>>;
119
+ export declare const VegaTimePickerDropdown: import("react").ForwardRefExoticComponent<JSX.VegaTimePickerDropdown & Omit<import("react").HTMLAttributes<HTMLVegaTimePickerDropdownElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTimePickerDropdownElement>>;
120
+ export declare const VegaToggleSwitch: import("react").ForwardRefExoticComponent<VegaReactComponentWithNativeEvent<JSX.VegaToggleSwitch, Omit<import("react").HTMLAttributes<HTMLVegaToggleSwitchElement>, "style">, "onChange"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaToggleSwitchElement>>;
121
+ export declare const VegaTooltip: import("react").ForwardRefExoticComponent<JSX.VegaTooltip & Omit<import("react").HTMLAttributes<HTMLVegaTooltipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTooltipElement>>;
122
+ export declare const VegaTooltipContentBox: import("react").ForwardRefExoticComponent<JSX.VegaTooltipContentBox & Omit<import("react").HTMLAttributes<HTMLVegaTooltipContentBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTooltipContentBoxElement>>;
123
+ export declare const VegaVirtualScroll: import("react").ForwardRefExoticComponent<JSX.VegaVirtualScroll & Omit<import("react").HTMLAttributes<HTMLVegaVirtualScrollElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaVirtualScrollElement>>;
@@ -0,0 +1,130 @@
1
+ /* eslint-disable */
2
+ /* tslint:disable */
3
+ /* auto-generated react proxies */
4
+ import { createReactComponent } from './react-component-lib';
5
+ import { defineCustomElements } from '@heartlandone/vega-sandbox-pr-3182-35bf83f67c752b54d2fc82c79f136ee5c8a0dc4e/loader';
6
+ import { VegaEnvManager, FrameworkEnum } from '@heartlandone/vega-sandbox-pr-3182-35bf83f67c752b54d2fc82c79f136ee5c8a0dc4e';
7
+ VegaEnvManager.setVegaFramework(FrameworkEnum.React);
8
+ defineCustomElements();
9
+ export const VegaAccordion = /*@__PURE__*/ createReactComponent('vega-accordion');
10
+ export const VegaAppFooter = /*@__PURE__*/ createReactComponent('vega-app-footer');
11
+ export const VegaAppHeaderButton = /*@__PURE__*/ createReactComponent('vega-app-header-button');
12
+ export const VegaBackdrop = /*@__PURE__*/ createReactComponent('vega-backdrop');
13
+ export const VegaBanner = /*@__PURE__*/ createReactComponent('vega-banner');
14
+ export const VegaBarChart = /*@__PURE__*/ createReactComponent('vega-bar-chart');
15
+ export const VegaBox = /*@__PURE__*/ createReactComponent('vega-box');
16
+ export const VegaBrandLogo = /*@__PURE__*/ createReactComponent('vega-brand-logo');
17
+ export const VegaBreadcrumb = /*@__PURE__*/ createReactComponent('vega-breadcrumb');
18
+ export const VegaButton = /*@__PURE__*/ createReactComponent('vega-button');
19
+ export const VegaButtonCircle = /*@__PURE__*/ createReactComponent('vega-button-circle');
20
+ export const VegaButtonGroup = /*@__PURE__*/ createReactComponent('vega-button-group');
21
+ export const VegaButtonGroupItem = /*@__PURE__*/ createReactComponent('vega-button-group-item');
22
+ export const VegaButtonLink = /*@__PURE__*/ createReactComponent('vega-button-link');
23
+ export const VegaCalendar = /*@__PURE__*/ createReactComponent('vega-calendar');
24
+ export const VegaCalendarEvent = /*@__PURE__*/ createReactComponent('vega-calendar-event');
25
+ export const VegaCalendarEventPreview = /*@__PURE__*/ createReactComponent('vega-calendar-event-preview');
26
+ export const VegaCalendarEventSlot = /*@__PURE__*/ createReactComponent('vega-calendar-event-slot');
27
+ export const VegaCalendarPeriodSwitcher = /*@__PURE__*/ createReactComponent('vega-calendar-period-switcher');
28
+ export const VegaCard = /*@__PURE__*/ createReactComponent('vega-card');
29
+ export const VegaCarousel = /*@__PURE__*/ createReactComponent('vega-carousel');
30
+ export const VegaCheckbox = /*@__PURE__*/ createReactComponent('vega-checkbox');
31
+ export const VegaCheckboxGroup = /*@__PURE__*/ createReactComponent('vega-checkbox-group');
32
+ export const VegaChip = /*@__PURE__*/ createReactComponent('vega-chip');
33
+ export const VegaCodeBlock = /*@__PURE__*/ createReactComponent('vega-code-block');
34
+ export const VegaColorPicker = /*@__PURE__*/ createReactComponent('vega-color-picker');
35
+ export const VegaColorSwatch = /*@__PURE__*/ createReactComponent('vega-color-swatch');
36
+ export const VegaColorSwatchPicker = /*@__PURE__*/ createReactComponent('vega-color-swatch-picker');
37
+ export const VegaComboBox = /*@__PURE__*/ createReactComponent('vega-combo-box');
38
+ export const VegaCounterBadge = /*@__PURE__*/ createReactComponent('vega-counter-badge');
39
+ export const VegaDatePicker = /*@__PURE__*/ createReactComponent('vega-date-picker');
40
+ export const VegaDatePickerCalendar = /*@__PURE__*/ createReactComponent('vega-date-picker-calendar');
41
+ export const VegaDialog = /*@__PURE__*/ createReactComponent('vega-dialog');
42
+ export const VegaDivider = /*@__PURE__*/ createReactComponent('vega-divider');
43
+ export const VegaDropdown = /*@__PURE__*/ createReactComponent('vega-dropdown');
44
+ export const VegaDropdownContentBox = /*@__PURE__*/ createReactComponent('vega-dropdown-content-box');
45
+ export const VegaDropdownGroup = /*@__PURE__*/ createReactComponent('vega-dropdown-group');
46
+ export const VegaDropdownItem = /*@__PURE__*/ createReactComponent('vega-dropdown-item');
47
+ export const VegaFieldError = /*@__PURE__*/ createReactComponent('vega-field-error');
48
+ export const VegaFieldLabel = /*@__PURE__*/ createReactComponent('vega-field-label');
49
+ export const VegaFileUploader = /*@__PURE__*/ createReactComponent('vega-file-uploader');
50
+ export const VegaFlagIcon = /*@__PURE__*/ createReactComponent('vega-flag-icon');
51
+ export const VegaFlex = /*@__PURE__*/ createReactComponent('vega-flex');
52
+ export const VegaFont = /*@__PURE__*/ createReactComponent('vega-font');
53
+ export const VegaForm = /*@__PURE__*/ createReactComponent('vega-form');
54
+ export const VegaGrid = /*@__PURE__*/ createReactComponent('vega-grid');
55
+ export const VegaHint = /*@__PURE__*/ createReactComponent('vega-hint');
56
+ export const VegaIcon = /*@__PURE__*/ createReactComponent('vega-icon');
57
+ export const VegaImageUploader = /*@__PURE__*/ createReactComponent('vega-image-uploader');
58
+ export const VegaInput = /*@__PURE__*/ createReactComponent('vega-input');
59
+ export const VegaInputCreditCard = /*@__PURE__*/ createReactComponent('vega-input-credit-card');
60
+ export const VegaInputNumeric = /*@__PURE__*/ createReactComponent('vega-input-numeric');
61
+ export const VegaInputPasscode = /*@__PURE__*/ createReactComponent('vega-input-passcode');
62
+ export const VegaInputPhoneNumber = /*@__PURE__*/ createReactComponent('vega-input-phone-number');
63
+ export const VegaInputRange = /*@__PURE__*/ createReactComponent('vega-input-range');
64
+ export const VegaInputSelect = /*@__PURE__*/ createReactComponent('vega-input-select');
65
+ export const VegaItemToggle = /*@__PURE__*/ createReactComponent('vega-item-toggle');
66
+ export const VegaLeftNav = /*@__PURE__*/ createReactComponent('vega-left-nav');
67
+ export const VegaLeftNavGroup = /*@__PURE__*/ createReactComponent('vega-left-nav-group');
68
+ export const VegaLeftNavLink = /*@__PURE__*/ createReactComponent('vega-left-nav-link');
69
+ export const VegaLeftNavSection = /*@__PURE__*/ createReactComponent('vega-left-nav-section');
70
+ export const VegaLineChart = /*@__PURE__*/ createReactComponent('vega-line-chart');
71
+ export const VegaLoaderWrapper = /*@__PURE__*/ createReactComponent('vega-loader-wrapper');
72
+ export const VegaLoadingIndicator = /*@__PURE__*/ createReactComponent('vega-loading-indicator');
73
+ export const VegaModal = /*@__PURE__*/ createReactComponent('vega-modal');
74
+ export const VegaNavCard = /*@__PURE__*/ createReactComponent('vega-nav-card');
75
+ export const VegaPageNotification = /*@__PURE__*/ createReactComponent('vega-page-notification');
76
+ export const VegaPageNotificationList = /*@__PURE__*/ createReactComponent('vega-page-notification-list');
77
+ export const VegaPagination = /*@__PURE__*/ createReactComponent('vega-pagination');
78
+ export const VegaPaginationPageSelectorMobile = /*@__PURE__*/ createReactComponent('vega-pagination-page-selector-mobile');
79
+ export const VegaPaginationPageSizeSelectorMobile = /*@__PURE__*/ createReactComponent('vega-pagination-page-size-selector-mobile');
80
+ export const VegaPieChart = /*@__PURE__*/ createReactComponent('vega-pie-chart');
81
+ export const VegaPopover = /*@__PURE__*/ createReactComponent('vega-popover');
82
+ export const VegaPopoverContentBox = /*@__PURE__*/ createReactComponent('vega-popover-content-box');
83
+ export const VegaProgressTracker = /*@__PURE__*/ createReactComponent('vega-progress-tracker');
84
+ export const VegaProgressTrackerStep = /*@__PURE__*/ createReactComponent('vega-progress-tracker-step');
85
+ export const VegaRadio = /*@__PURE__*/ createReactComponent('vega-radio');
86
+ export const VegaRadioGroup = /*@__PURE__*/ createReactComponent('vega-radio-group');
87
+ export const VegaRichTextContent = /*@__PURE__*/ createReactComponent('vega-rich-text-content');
88
+ export const VegaRichTextEditor = /*@__PURE__*/ createReactComponent('vega-rich-text-editor');
89
+ export const VegaRichTextEditorToolbarButton = /*@__PURE__*/ createReactComponent('vega-rich-text-editor-toolbar-button');
90
+ export const VegaRichTextFindReplacePanel = /*@__PURE__*/ createReactComponent('vega-rich-text-find-replace-panel');
91
+ export const VegaRichTextImageEditor = /*@__PURE__*/ createReactComponent('vega-rich-text-image-editor');
92
+ export const VegaRichTextLinkEditor = /*@__PURE__*/ createReactComponent('vega-rich-text-link-editor');
93
+ export const VegaRichTextSpecialCharactersPanel = /*@__PURE__*/ createReactComponent('vega-rich-text-special-characters-panel');
94
+ export const VegaRichTextTableProperties = /*@__PURE__*/ createReactComponent('vega-rich-text-table-properties');
95
+ export const VegaRichTextTableSelectionWidget = /*@__PURE__*/ createReactComponent('vega-rich-text-table-selection-widget');
96
+ export const VegaRichTextTableSetting = /*@__PURE__*/ createReactComponent('vega-rich-text-table-setting');
97
+ export const VegaSectionTitle = /*@__PURE__*/ createReactComponent('vega-section-title');
98
+ export const VegaSegmentControl = /*@__PURE__*/ createReactComponent('vega-segment-control');
99
+ export const VegaSelectionChip = /*@__PURE__*/ createReactComponent('vega-selection-chip');
100
+ export const VegaSelectionChipGroup = /*@__PURE__*/ createReactComponent('vega-selection-chip-group');
101
+ export const VegaSelectionTile = /*@__PURE__*/ createReactComponent('vega-selection-tile');
102
+ export const VegaSelectionTileGroup = /*@__PURE__*/ createReactComponent('vega-selection-tile-group');
103
+ export const VegaSidenav = /*@__PURE__*/ createReactComponent('vega-sidenav');
104
+ export const VegaSidenavGroup = /*@__PURE__*/ createReactComponent('vega-sidenav-group');
105
+ export const VegaSidenavLink = /*@__PURE__*/ createReactComponent('vega-sidenav-link');
106
+ export const VegaSignatureCapture = /*@__PURE__*/ createReactComponent('vega-signature-capture');
107
+ export const VegaSkeleton = /*@__PURE__*/ createReactComponent('vega-skeleton');
108
+ export const VegaSlotContainer = /*@__PURE__*/ createReactComponent('vega-slot-container');
109
+ export const VegaStepper = /*@__PURE__*/ createReactComponent('vega-stepper');
110
+ export const VegaTabGroup = /*@__PURE__*/ createReactComponent('vega-tab-group');
111
+ export const VegaTabGroupPanel = /*@__PURE__*/ createReactComponent('vega-tab-group-panel');
112
+ export const VegaTable = /*@__PURE__*/ createReactComponent('vega-table');
113
+ export const VegaTableBody = /*@__PURE__*/ createReactComponent('vega-table-body');
114
+ export const VegaTableCell = /*@__PURE__*/ createReactComponent('vega-table-cell');
115
+ export const VegaTableExpandRow = /*@__PURE__*/ createReactComponent('vega-table-expand-row');
116
+ export const VegaTableFoot = /*@__PURE__*/ createReactComponent('vega-table-foot');
117
+ export const VegaTableFootCell = /*@__PURE__*/ createReactComponent('vega-table-foot-cell');
118
+ export const VegaTableFootRow = /*@__PURE__*/ createReactComponent('vega-table-foot-row');
119
+ export const VegaTableHead = /*@__PURE__*/ createReactComponent('vega-table-head');
120
+ export const VegaTableHeadCell = /*@__PURE__*/ createReactComponent('vega-table-head-cell');
121
+ export const VegaTableHeadRow = /*@__PURE__*/ createReactComponent('vega-table-head-row');
122
+ export const VegaTableRow = /*@__PURE__*/ createReactComponent('vega-table-row');
123
+ export const VegaText = /*@__PURE__*/ createReactComponent('vega-text');
124
+ export const VegaTextarea = /*@__PURE__*/ createReactComponent('vega-textarea');
125
+ export const VegaTimePicker = /*@__PURE__*/ createReactComponent('vega-time-picker');
126
+ export const VegaTimePickerDropdown = /*@__PURE__*/ createReactComponent('vega-time-picker-dropdown');
127
+ export const VegaToggleSwitch = /*@__PURE__*/ createReactComponent('vega-toggle-switch');
128
+ export const VegaTooltip = /*@__PURE__*/ createReactComponent('vega-tooltip');
129
+ export const VegaTooltipContentBox = /*@__PURE__*/ createReactComponent('vega-tooltip-content-box');
130
+ export const VegaVirtualScroll = /*@__PURE__*/ createReactComponent('vega-virtual-scroll');
@@ -0,0 +1,6 @@
1
+ declare global {
2
+ type VegaReactComponentWithNativeEvent<T extends unknown, P extends unknown, V extends keyof T & keyof P> = Omit<T, V> & Omit<P, V> & {
3
+ [Property in V]?: T[Property] | P[Property];
4
+ };
5
+ }
6
+ export {};
package/dist/global.js ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,16 @@
1
+ export declare type VegaRef<T> = {
2
+ current: T;
3
+ };
4
+ /**
5
+ * useVegaRef returns a callback that can be used to store a reference to a DOM node.
6
+ * It will be overridden to type {@link VegaRef} which value is stored by the callback
7
+ *
8
+ * Note: use `useVegaRef` instead `useRef` to store the reference of the Vega components when using `FeatureFlag.enable("VEGA_REACT.PREVENT_SSR");` to disable the SSR
9
+ *
10
+ * See more info here: https://medium.com/@teh_builder/ref-objects-inside-useeffect-hooks-eb7c15198780
11
+ * Link issue: https://gethired.atlassian.net/browse/VD-1297
12
+ *
13
+ * @param {() => void} callback - The `callback` parameter is a function that will be called when the `vegaRef` is available.
14
+ * @returns {VegaRef} a callback function of type `VegaRef<T>`.
15
+ */
16
+ export declare function useVegaRef<T>(callback?: (ref: T) => void): VegaRef<T>;
@@ -0,0 +1,28 @@
1
+ import { useCallback, useEffect, useState } from "react";
2
+ /**
3
+ * useVegaRef returns a callback that can be used to store a reference to a DOM node.
4
+ * It will be overridden to type {@link VegaRef} which value is stored by the callback
5
+ *
6
+ * Note: use `useVegaRef` instead `useRef` to store the reference of the Vega components when using `FeatureFlag.enable("VEGA_REACT.PREVENT_SSR");` to disable the SSR
7
+ *
8
+ * See more info here: https://medium.com/@teh_builder/ref-objects-inside-useeffect-hooks-eb7c15198780
9
+ * Link issue: https://gethired.atlassian.net/browse/VD-1297
10
+ *
11
+ * @param {() => void} callback - The `callback` parameter is a function that will be called when the `vegaRef` is available.
12
+ * @returns {VegaRef} a callback function of type `VegaRef<T>`.
13
+ */
14
+ export function useVegaRef(callback) {
15
+ const [refState, setRefState] = useState(undefined);
16
+ const refCallback = useCallback((node) => {
17
+ setRefState(node);
18
+ }, []);
19
+ refCallback.current = refState;
20
+ if (callback) {
21
+ useEffect(() => {
22
+ if (refState) {
23
+ callback(refState);
24
+ }
25
+ }, [refState]);
26
+ }
27
+ return refCallback;
28
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./components";
2
+ export { VegaPopover } from "./overrides/vega-popover";
3
+ export * from "./hooks/use-vega-ref";
4
+ export * from "./global";
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ export * from "./components";
2
+ export { VegaPopover } from "./overrides/vega-popover";
3
+ export * from "./hooks/use-vega-ref";
4
+ export * from "./global";
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { StencilReactExternalProps } from "../../react-component-lib/utils";
3
+ import type { JSX } from "@heartlandone/vega-sandbox-pr-3182-35bf83f67c752b54d2fc82c79f136ee5c8a0dc4e";
4
+ declare type VegaPopoverProps = React.PropsWithChildren<StencilReactExternalProps<JSX.VegaPopover, HTMLVegaPopoverElement>>;
5
+ declare type VegaPopoverComponent = React.ForwardRefExoticComponent<React.PropsWithoutRef<VegaPopoverProps> & React.RefAttributes<HTMLVegaPopoverElement>>;
6
+ export declare const VegaPopover: VegaPopoverComponent;
7
+ export {};
@@ -0,0 +1,151 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import React from "react";
13
+ import ReactDOM from "react-dom";
14
+ import { createReactComponent } from "../../react-component-lib";
15
+ import { setRef, } from "../../react-component-lib/utils";
16
+ const VegaPopoverBase = createReactComponent("vega-popover");
17
+ /** Splits children into `[slot="popover"]` overlay nodes and all others (trigger etc.). */
18
+ function splitChildren(children) {
19
+ const popover = [];
20
+ const other = [];
21
+ React.Children.forEach(children, (child) => {
22
+ if (!React.isValidElement(child)) {
23
+ other.push(child);
24
+ return;
25
+ }
26
+ const slot = child.props
27
+ .slot;
28
+ (slot === "popover" ? popover : other).push(child);
29
+ });
30
+ return [popover, other];
31
+ }
32
+ class VegaPopoverInner extends React.PureComponent {
33
+ constructor(props) {
34
+ super(props);
35
+ this.host = null;
36
+ this.popoverMount = null;
37
+ this.contentBox = null;
38
+ this.contentBoxObserver = null;
39
+ this.isUnmounting = false;
40
+ this.disconnectContentBoxObserver = () => {
41
+ if (this.contentBoxObserver) {
42
+ this.contentBoxObserver.disconnect();
43
+ this.contentBoxObserver = null;
44
+ }
45
+ };
46
+ this.syncContentBox = () => {
47
+ var _a, _b, _c;
48
+ const nextContentBox = (_c = (_b = (_a = this.host) === null || _a === void 0 ? void 0 : _a.shadowRoot) === null || _b === void 0 ? void 0 : _b.querySelector("vega-popover-content-box")) !== null && _c !== void 0 ? _c : null;
49
+ if (this.contentBox === nextContentBox) {
50
+ this.ensurePopoverMount();
51
+ return;
52
+ }
53
+ this.contentBox = nextContentBox;
54
+ this.ensurePopoverMount();
55
+ };
56
+ this.ensurePopoverMount = () => {
57
+ if (!this.contentBox || !this.popoverMount) {
58
+ return;
59
+ }
60
+ if (this.popoverMount.parentElement !== this.contentBox) {
61
+ this.contentBox.appendChild(this.popoverMount);
62
+ }
63
+ };
64
+ this.attachContentBoxObserver = (host) => {
65
+ this.disconnectContentBoxObserver();
66
+ if (typeof MutationObserver === "undefined" || !host.shadowRoot) {
67
+ return;
68
+ }
69
+ this.contentBoxObserver = new MutationObserver(() => {
70
+ this.syncContentBox();
71
+ });
72
+ this.contentBoxObserver.observe(host.shadowRoot, {
73
+ childList: true,
74
+ subtree: true,
75
+ });
76
+ };
77
+ this.connectHost = (host) => {
78
+ // Reset the unmounting flag so re-connections work after React 18 StrictMode
79
+ // simulates unmount+remount on the same class instance.
80
+ this.isUnmounting = false;
81
+ // Re-create popoverMount if componentWillUnmount destroyed it (StrictMode remount).
82
+ let needsRender = false;
83
+ if (!this.popoverMount && typeof document !== "undefined") {
84
+ this.popoverMount = document.createElement("div");
85
+ this.popoverMount.setAttribute("slot", "popover");
86
+ needsRender = true;
87
+ }
88
+ const ready = typeof host.componentOnReady === "function"
89
+ ? host.componentOnReady()
90
+ : Promise.resolve();
91
+ void ready.then(() => {
92
+ if (this.host !== host || this.isUnmounting) {
93
+ return;
94
+ }
95
+ this.syncContentBox();
96
+ this.attachContentBoxObserver(host);
97
+ // If popoverMount was recreated we need a new render pass so the portal
98
+ // picks up the fresh mount node.
99
+ if (needsRender) {
100
+ this.forceUpdate();
101
+ }
102
+ });
103
+ };
104
+ this.setHostRef = (el) => {
105
+ const { forwardedRef } = this.props;
106
+ setRef(forwardedRef, el);
107
+ if (this.host === el) {
108
+ return;
109
+ }
110
+ if (el === null && this.host !== null && !this.isUnmounting) {
111
+ return;
112
+ }
113
+ if (this.host && el !== this.host) {
114
+ this.disconnectContentBoxObserver();
115
+ }
116
+ this.host = el;
117
+ if (el) {
118
+ this.connectHost(el);
119
+ }
120
+ else {
121
+ this.contentBox = null;
122
+ }
123
+ };
124
+ if (typeof document !== "undefined") {
125
+ this.popoverMount = document.createElement("div");
126
+ this.popoverMount.setAttribute("slot", "popover");
127
+ }
128
+ }
129
+ componentWillUnmount() {
130
+ var _a;
131
+ this.isUnmounting = true;
132
+ this.disconnectContentBoxObserver();
133
+ if ((_a = this.popoverMount) === null || _a === void 0 ? void 0 : _a.parentElement) {
134
+ this.popoverMount.parentElement.removeChild(this.popoverMount);
135
+ }
136
+ this.host = null;
137
+ this.popoverMount = null;
138
+ this.contentBox = null;
139
+ }
140
+ render() {
141
+ const _a = this.props, { children, forwardedRef } = _a, restProps = __rest(_a, ["children", "forwardedRef"]);
142
+ const [popoverChildren, otherChildren] = splitChildren(children);
143
+ return (React.createElement(React.Fragment, null,
144
+ React.createElement(VegaPopoverBase, Object.assign({}, restProps, { ref: this.setHostRef }), otherChildren),
145
+ popoverChildren.length > 0 &&
146
+ this.popoverMount &&
147
+ ReactDOM.createPortal(popoverChildren, this.popoverMount)));
148
+ }
149
+ }
150
+ export const VegaPopover = React.forwardRef((props, ref) => React.createElement(VegaPopoverInner, Object.assign({}, props, { forwardedRef: ref })));
151
+ VegaPopover.displayName = "VegaPopover";
@@ -0,0 +1,6 @@
1
+ /**
2
+ * NOTE: This test file is for vega-popover React wrapper.
3
+ * It validates portal wrapping and slot-based child routing.
4
+ * Tests use the real VegaPopover component with mocked Shadow DOM support.
5
+ */
6
+ import "jest";