udp-react-stencil-component-library 26.0.0 → 26.0.2-beta.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.
- package/dist/index.d.mts +8 -3
- package/dist/index.mjs +8 -3
- package/dist/lib/components.d.mts +7 -2
- package/dist/lib/table-columns-renderer.d.mts +9 -0
- package/dist/lib/table-columns-renderer.d.mts.map +1 -0
- package/dist/lib/table-columns-renderer.mjs +16 -0
- package/dist/lib/table-columns-renderer.mjs.map +1 -0
- package/dist/lib/table-input.d.mts +9 -0
- package/dist/lib/table-input.d.mts.map +1 -0
- package/dist/lib/table-input.mjs +16 -0
- package/dist/lib/table-input.mjs.map +1 -0
- package/dist/lib/udp-advanced-search-builder.d.mts +1 -1
- package/dist/lib/udp-advanced-search-builder.d.mts.map +1 -1
- package/dist/lib/udp-advanced-search-builder.mjs +1 -1
- package/dist/lib/udp-advanced-search-builder.mjs.map +1 -1
- package/dist/lib/udp-advanced-search-filter-group.d.mts +28 -0
- package/dist/lib/udp-advanced-search-filter-group.d.mts.map +1 -0
- package/dist/lib/udp-advanced-search-filter-group.mjs +25 -0
- package/dist/lib/udp-advanced-search-filter-group.mjs.map +1 -0
- package/dist/lib/udp-fluent-badge.d.mts +4 -2
- package/dist/lib/udp-fluent-badge.d.mts.map +1 -1
- package/dist/lib/udp-fluent-badge.mjs +1 -1
- package/dist/lib/udp-fluent-badge.mjs.map +1 -1
- package/dist/lib/udp-fluent-file-input.d.mts +16 -0
- package/dist/lib/udp-fluent-file-input.d.mts.map +1 -0
- package/dist/lib/udp-fluent-file-input.mjs +22 -0
- package/dist/lib/udp-fluent-file-input.mjs.map +1 -0
- package/dist/lib/udp-fluent-inline-edit.d.mts +13 -0
- package/dist/lib/udp-fluent-inline-edit.d.mts.map +1 -0
- package/dist/lib/udp-fluent-inline-edit.mjs +20 -0
- package/dist/lib/udp-fluent-inline-edit.mjs.map +1 -0
- package/dist/lib/udp-fluent-location-input.d.mts +22 -0
- package/dist/lib/udp-fluent-location-input.d.mts.map +1 -0
- package/dist/lib/udp-fluent-location-input.mjs +22 -0
- package/dist/lib/udp-fluent-location-input.mjs.map +1 -0
- package/dist/lib/udp-fluent-signature-input.d.mts +18 -0
- package/dist/lib/udp-fluent-signature-input.d.mts.map +1 -0
- package/dist/lib/udp-fluent-signature-input.mjs +21 -0
- package/dist/lib/udp-fluent-signature-input.mjs.map +1 -0
- package/package.json +9 -4
- package/dist/lib/advanced-search-builder.d.mts +0 -13
- package/dist/lib/advanced-search-builder.d.mts.map +0 -1
- package/dist/lib/advanced-search-builder.mjs +0 -19
- package/dist/lib/advanced-search-builder.mjs.map +0 -1
- package/dist/lib/filter-group.d.mts +0 -36
- package/dist/lib/filter-group.d.mts.map +0 -1
- package/dist/lib/filter-group.mjs +0 -26
- package/dist/lib/filter-group.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AddMapFeaturePopup } from "./lib/add-map-feature-popup.mjs";
|
|
2
2
|
import { AddressSearch } from "./lib/address-search.mjs";
|
|
3
|
-
import { AdvancedSearchBuilder } from "./lib/advanced-search-builder.mjs";
|
|
4
3
|
import { AdvancedSearchGrouped } from "./lib/advanced-search-grouped.mjs";
|
|
5
4
|
import { AdvancedSearch } from "./lib/advanced-search.mjs";
|
|
6
5
|
import { AgGridBase } from "./lib/ag-grid-base.mjs";
|
|
@@ -23,7 +22,6 @@ import { FeatureDetailsPopup } from "./lib/feature-details-popup.mjs";
|
|
|
23
22
|
import { FileUploadRenderer } from "./lib/file-upload-renderer.mjs";
|
|
24
23
|
import { FileUpload } from "./lib/file-upload.mjs";
|
|
25
24
|
import { FilterConditions } from "./lib/filter-conditions.mjs";
|
|
26
|
-
import { FilterGroup } from "./lib/filter-group.mjs";
|
|
27
25
|
import { FormMetadataDisplayRenderer } from "./lib/form-metadata-display-renderer.mjs";
|
|
28
26
|
import { FormMetadataDisplay } from "./lib/form-metadata-display.mjs";
|
|
29
27
|
import { GhostRender } from "./lib/ghost-render.mjs";
|
|
@@ -65,6 +63,8 @@ import { StencilForm } from "./lib/stencil-form.mjs";
|
|
|
65
63
|
import { StencilIconButtonGridActionHeader } from "./lib/stencil-icon-button-grid-action-header.mjs";
|
|
66
64
|
import { StencilIconButton } from "./lib/stencil-icon-button.mjs";
|
|
67
65
|
import { StencilToggle } from "./lib/stencil-toggle.mjs";
|
|
66
|
+
import { TableColumnsRenderer } from "./lib/table-columns-renderer.mjs";
|
|
67
|
+
import { TableInput } from "./lib/table-input.mjs";
|
|
68
68
|
import { TallyDisplay } from "./lib/tally-display.mjs";
|
|
69
69
|
import { TestComponentsPage } from "./lib/test-components-page.mjs";
|
|
70
70
|
import { TestForm } from "./lib/test-form.mjs";
|
|
@@ -75,6 +75,7 @@ import { TreeListItem } from "./lib/tree-list-item.mjs";
|
|
|
75
75
|
import { UdpAccordion } from "./lib/udp-accordion.mjs";
|
|
76
76
|
import { UdpAdornment } from "./lib/udp-adornment.mjs";
|
|
77
77
|
import { UdpAdvancedSearchBuilder } from "./lib/udp-advanced-search-builder.mjs";
|
|
78
|
+
import { UdpAdvancedSearchFilterGroup } from "./lib/udp-advanced-search-filter-group.mjs";
|
|
78
79
|
import { UdpAmbientCard } from "./lib/udp-ambient-card.mjs";
|
|
79
80
|
import { UdpAmbientToolTip } from "./lib/udp-ambient-tool-tip.mjs";
|
|
80
81
|
import { UdpAttachmentItem } from "./lib/udp-attachment-item.mjs";
|
|
@@ -130,13 +131,17 @@ import { UdpFluentDialog } from "./lib/udp-fluent-dialog.mjs";
|
|
|
130
131
|
import { UdpFluentDivider } from "./lib/udp-fluent-divider.mjs";
|
|
131
132
|
import { UdpFluentDrawer } from "./lib/udp-fluent-drawer.mjs";
|
|
132
133
|
import { UdpFluentDropdown } from "./lib/udp-fluent-dropdown.mjs";
|
|
134
|
+
import { UdpFluentFileInput } from "./lib/udp-fluent-file-input.mjs";
|
|
133
135
|
import { UdpFluentIconButton } from "./lib/udp-fluent-icon-button.mjs";
|
|
134
136
|
import { UdpFluentIcon } from "./lib/udp-fluent-icon.mjs";
|
|
135
137
|
import { UdpFluentImage } from "./lib/udp-fluent-image.mjs";
|
|
138
|
+
import { UdpFluentInlineEdit } from "./lib/udp-fluent-inline-edit.mjs";
|
|
136
139
|
import { UdpFluentLink } from "./lib/udp-fluent-link.mjs";
|
|
137
140
|
import { UdpFluentListItem } from "./lib/udp-fluent-list-item.mjs";
|
|
141
|
+
import { UdpFluentLocationInput } from "./lib/udp-fluent-location-input.mjs";
|
|
138
142
|
import { UdpFluentMenu } from "./lib/udp-fluent-menu.mjs";
|
|
139
143
|
import { UdpFluentRadioGroup } from "./lib/udp-fluent-radio-group.mjs";
|
|
144
|
+
import { UdpFluentSignatureInput } from "./lib/udp-fluent-signature-input.mjs";
|
|
140
145
|
import { UdpFluentSwitch } from "./lib/udp-fluent-switch.mjs";
|
|
141
146
|
import { UdpFluentTablist } from "./lib/udp-fluent-tablist.mjs";
|
|
142
147
|
import { UdpFluentTextInput } from "./lib/udp-fluent-text-input.mjs";
|
|
@@ -215,4 +220,4 @@ import { UnityTypography } from "./lib/unity-typography.mjs";
|
|
|
215
220
|
import { UpdAlertBanner } from "./lib/upd-alert-banner.mjs";
|
|
216
221
|
import { ValidationChip } from "./lib/validation-chip.mjs";
|
|
217
222
|
export * from "udp-stencil-component-library/dist/components";
|
|
218
|
-
export { AddMapFeaturePopup, AddressSearch, AdvancedSearch,
|
|
223
|
+
export { AddMapFeaturePopup, AddressSearch, AdvancedSearch, AdvancedSearchGrouped, AgGridBase, AgTable, AmbientTemplateGrid, ApiMethodInstanceGrid, AppBar, BaseMap, ChartContainer, ChartKpi, CheckBox, CheckBoxGroup, ChipSection, ClientSideGrid, CustomButton, DateTimeRenderer, EditViewFormDialog, FeatureDetailsCard, FeatureDetailsPopup, FileUpload, FileUploadRenderer, FilterConditions, FormMetadataDisplay, FormMetadataDisplayRenderer, GhostRender, GridHeader, GridPrimaryBar, HintPanel, IconGrid, ImageUpload, KpiList, ListOptionsRenderer, LocationInput, LocationRenderer, LogicalSearchIndicator, MapComponent, MapToolbar, NumericField, PrimaryActionHeader, QuestionConfigsRenderer, QuestionSpecificConfigsRenderer, ResourceTimelineCalendar, ResourceTimelinePrimaryBar, SaveViewFormDialog, SearchListItem, SearchMethodGrid, SectionConfigsRenderer, SelectLayerPopup, SelectableList, ServerSideGrid, SideSheet, SideSheetContainer, SignatureInput, SignatureRenderer, SimpleCard, SplitLinePopup, StatusChip, StencilChip, StencilField, StencilForm, StencilIconButton, StencilIconButtonGridActionHeader, StencilToggle, TableColumnsRenderer, TableInput, TallyDisplay, TestComponentsPage, TestForm, TextArea, TextField, TextInputRenderer, TreeListItem, UdpAccordion, UdpAdornment, UdpAdvancedSearchBuilder, UdpAdvancedSearchFilterGroup, UdpAmbientCard, UdpAmbientToolTip, UdpAttachmentItem, UdpAttachmentList, UdpAutocomplete, UdpAvatar, UdpBadge, UdpBarChart, UdpButton, UdpCalendarBase, UdpCalendarDay, UdpCalendarMonth, UdpCalendarWeek, UdpCalendarYear, UdpCard, UdpCardActionArea, UdpCardActions, UdpCardContent, UdpCardHeader, UdpCardMedia, UdpChartsExample, UdpChip, UdpColumnHeader, UdpCompoundButton, UdpContainer, UdpContainerQuery, UdpContainerQueryGrid, UdpContainerQueryGridItem, UdpDateInput, UdpDateRangeSelector, UdpDateSelector, UdpDateTimeInput, UdpDatetimeSelector, UdpDetailList, UdpDetailListItem, UdpDialog, UdpDistributionChart, UdpDivider, UdpDonutChart, UdpDurationInput, UdpDynamicContainerWithMenu, UdpDynamicForm, UdpEmptyStateDisplay, UdpField, UdpFlexbox, UdpFluentAvatar, UdpFluentBadge, UdpFluentButton, UdpFluentCard, UdpFluentCheckbox, UdpFluentCounterBadge, UdpFluentDialog, UdpFluentDivider, UdpFluentDrawer, UdpFluentDropdown, UdpFluentFileInput, UdpFluentIcon, UdpFluentIconButton, UdpFluentImage, UdpFluentInlineEdit, UdpFluentLink, UdpFluentListItem, UdpFluentLocationInput, UdpFluentMenu, UdpFluentRadioGroup, UdpFluentSignatureInput, UdpFluentSwitch, UdpFluentTablist, UdpFluentTextInput, UdpFluentToggleButton, UdpFormComponent, UdpFormsBuilder, UdpFormsBuilderMenu, UdpFormsBuilderQuestionItem, UdpFormsBuilderStyleOverride, UdpFormsFollowUpListCard, UdpFormsList, UdpFormsListCard, UdpFormsRenderer, UdpFormsUi, UdpFunctionButton, UdpGridLoader, UdpHotlistForm, UdpIcon, UdpIconButton, UdpKpiCard, UdpKpiCards, UdpLazyLoader, UdpLineChart, UdpLinearLoader, UdpLink, UdpList, UdpListItem, UdpListRenderer, UdpMap, UdpMapToolbar, UdpMenu, UdpMenuItem, UdpMessageBar, UdpNotification, UdpPage, UdpPageHeader, UdpPagination, UdpPopOver, UdpPopOverGridActionHeader, UdpPopover, UdpPrimaryActionHeader, UdpProgressBar, UdpQuestion, UdpQuestionComments, UdpRadioButton, UdpSankeyChart, UdpSaveDraftButton, UdpSearchInput, UdpSelector, UdpSideSheet, UdpSkeletonLoading, UdpSlider, UdpSpinner, UdpSplitScreen, UdpStepper, UdpStepperDemo, UdpSwatchPicker, UdpTab, UdpTabPanel, UdpTabs, UdpText, UdpTextarea, UdpTimeInput, UdpTimeSelector, UdpTimeline, UdpTimelineConnector, UdpTimelineDot, UdpTimelineItem, UdpTimelineSeparator, UdpTooltip, UdpTree, UdpVerticalSpacer, UdpXyChart, UdpXyMultiSeriesChart, UnityTypography, UpdAlertBanner, ValidationChip };
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AddMapFeaturePopup } from "./lib/add-map-feature-popup.mjs";
|
|
2
2
|
import { AddressSearch } from "./lib/address-search.mjs";
|
|
3
|
-
import { AdvancedSearchBuilder } from "./lib/advanced-search-builder.mjs";
|
|
4
3
|
import { AdvancedSearchGrouped } from "./lib/advanced-search-grouped.mjs";
|
|
5
4
|
import { AdvancedSearch } from "./lib/advanced-search.mjs";
|
|
6
5
|
import { AgGridBase } from "./lib/ag-grid-base.mjs";
|
|
@@ -23,7 +22,6 @@ import { FeatureDetailsPopup } from "./lib/feature-details-popup.mjs";
|
|
|
23
22
|
import { FileUploadRenderer } from "./lib/file-upload-renderer.mjs";
|
|
24
23
|
import { FileUpload } from "./lib/file-upload.mjs";
|
|
25
24
|
import { FilterConditions } from "./lib/filter-conditions.mjs";
|
|
26
|
-
import { FilterGroup } from "./lib/filter-group.mjs";
|
|
27
25
|
import { FormMetadataDisplayRenderer } from "./lib/form-metadata-display-renderer.mjs";
|
|
28
26
|
import { FormMetadataDisplay } from "./lib/form-metadata-display.mjs";
|
|
29
27
|
import { GhostRender } from "./lib/ghost-render.mjs";
|
|
@@ -65,6 +63,8 @@ import { StencilForm } from "./lib/stencil-form.mjs";
|
|
|
65
63
|
import { StencilIconButtonGridActionHeader } from "./lib/stencil-icon-button-grid-action-header.mjs";
|
|
66
64
|
import { StencilIconButton } from "./lib/stencil-icon-button.mjs";
|
|
67
65
|
import { StencilToggle } from "./lib/stencil-toggle.mjs";
|
|
66
|
+
import { TableColumnsRenderer } from "./lib/table-columns-renderer.mjs";
|
|
67
|
+
import { TableInput } from "./lib/table-input.mjs";
|
|
68
68
|
import { TallyDisplay } from "./lib/tally-display.mjs";
|
|
69
69
|
import { TestComponentsPage } from "./lib/test-components-page.mjs";
|
|
70
70
|
import { TestForm } from "./lib/test-form.mjs";
|
|
@@ -75,6 +75,7 @@ import { TreeListItem } from "./lib/tree-list-item.mjs";
|
|
|
75
75
|
import { UdpAccordion } from "./lib/udp-accordion.mjs";
|
|
76
76
|
import { UdpAdornment } from "./lib/udp-adornment.mjs";
|
|
77
77
|
import { UdpAdvancedSearchBuilder } from "./lib/udp-advanced-search-builder.mjs";
|
|
78
|
+
import { UdpAdvancedSearchFilterGroup } from "./lib/udp-advanced-search-filter-group.mjs";
|
|
78
79
|
import { UdpAmbientCard } from "./lib/udp-ambient-card.mjs";
|
|
79
80
|
import { UdpAmbientToolTip } from "./lib/udp-ambient-tool-tip.mjs";
|
|
80
81
|
import { UdpAttachmentItem } from "./lib/udp-attachment-item.mjs";
|
|
@@ -130,13 +131,17 @@ import { UdpFluentDialog } from "./lib/udp-fluent-dialog.mjs";
|
|
|
130
131
|
import { UdpFluentDivider } from "./lib/udp-fluent-divider.mjs";
|
|
131
132
|
import { UdpFluentDrawer } from "./lib/udp-fluent-drawer.mjs";
|
|
132
133
|
import { UdpFluentDropdown } from "./lib/udp-fluent-dropdown.mjs";
|
|
134
|
+
import { UdpFluentFileInput } from "./lib/udp-fluent-file-input.mjs";
|
|
133
135
|
import { UdpFluentIconButton } from "./lib/udp-fluent-icon-button.mjs";
|
|
134
136
|
import { UdpFluentIcon } from "./lib/udp-fluent-icon.mjs";
|
|
135
137
|
import { UdpFluentImage } from "./lib/udp-fluent-image.mjs";
|
|
138
|
+
import { UdpFluentInlineEdit } from "./lib/udp-fluent-inline-edit.mjs";
|
|
136
139
|
import { UdpFluentLink } from "./lib/udp-fluent-link.mjs";
|
|
137
140
|
import { UdpFluentListItem } from "./lib/udp-fluent-list-item.mjs";
|
|
141
|
+
import { UdpFluentLocationInput } from "./lib/udp-fluent-location-input.mjs";
|
|
138
142
|
import { UdpFluentMenu } from "./lib/udp-fluent-menu.mjs";
|
|
139
143
|
import { UdpFluentRadioGroup } from "./lib/udp-fluent-radio-group.mjs";
|
|
144
|
+
import { UdpFluentSignatureInput } from "./lib/udp-fluent-signature-input.mjs";
|
|
140
145
|
import { UdpFluentSwitch } from "./lib/udp-fluent-switch.mjs";
|
|
141
146
|
import { UdpFluentTablist } from "./lib/udp-fluent-tablist.mjs";
|
|
142
147
|
import { UdpFluentTextInput } from "./lib/udp-fluent-text-input.mjs";
|
|
@@ -215,4 +220,4 @@ import { UnityTypography } from "./lib/unity-typography.mjs";
|
|
|
215
220
|
import { UpdAlertBanner } from "./lib/upd-alert-banner.mjs";
|
|
216
221
|
import { ValidationChip } from "./lib/validation-chip.mjs";
|
|
217
222
|
export * from "udp-stencil-component-library/dist/components";
|
|
218
|
-
export { AddMapFeaturePopup, AddressSearch, AdvancedSearch,
|
|
223
|
+
export { AddMapFeaturePopup, AddressSearch, AdvancedSearch, AdvancedSearchGrouped, AgGridBase, AgTable, AmbientTemplateGrid, ApiMethodInstanceGrid, AppBar, BaseMap, ChartContainer, ChartKpi, CheckBox, CheckBoxGroup, ChipSection, ClientSideGrid, CustomButton, DateTimeRenderer, EditViewFormDialog, FeatureDetailsCard, FeatureDetailsPopup, FileUpload, FileUploadRenderer, FilterConditions, FormMetadataDisplay, FormMetadataDisplayRenderer, GhostRender, GridHeader, GridPrimaryBar, HintPanel, IconGrid, ImageUpload, KpiList, ListOptionsRenderer, LocationInput, LocationRenderer, LogicalSearchIndicator, MapComponent, MapToolbar, NumericField, PrimaryActionHeader, QuestionConfigsRenderer, QuestionSpecificConfigsRenderer, ResourceTimelineCalendar, ResourceTimelinePrimaryBar, SaveViewFormDialog, SearchListItem, SearchMethodGrid, SectionConfigsRenderer, SelectLayerPopup, SelectableList, ServerSideGrid, SideSheet, SideSheetContainer, SignatureInput, SignatureRenderer, SimpleCard, SplitLinePopup, StatusChip, StencilChip, StencilField, StencilForm, StencilIconButton, StencilIconButtonGridActionHeader, StencilToggle, TableColumnsRenderer, TableInput, TallyDisplay, TestComponentsPage, TestForm, TextArea, TextField, TextInputRenderer, TreeListItem, UdpAccordion, UdpAdornment, UdpAdvancedSearchBuilder, UdpAdvancedSearchFilterGroup, UdpAmbientCard, UdpAmbientToolTip, UdpAttachmentItem, UdpAttachmentList, UdpAutocomplete, UdpAvatar, UdpBadge, UdpBarChart, UdpButton, UdpCalendarBase, UdpCalendarDay, UdpCalendarMonth, UdpCalendarWeek, UdpCalendarYear, UdpCard, UdpCardActionArea, UdpCardActions, UdpCardContent, UdpCardHeader, UdpCardMedia, UdpChartsExample, UdpChip, UdpColumnHeader, UdpCompoundButton, UdpContainer, UdpContainerQuery, UdpContainerQueryGrid, UdpContainerQueryGridItem, UdpDateInput, UdpDateRangeSelector, UdpDateSelector, UdpDateTimeInput, UdpDatetimeSelector, UdpDetailList, UdpDetailListItem, UdpDialog, UdpDistributionChart, UdpDivider, UdpDonutChart, UdpDurationInput, UdpDynamicContainerWithMenu, UdpDynamicForm, UdpEmptyStateDisplay, UdpField, UdpFlexbox, UdpFluentAvatar, UdpFluentBadge, UdpFluentButton, UdpFluentCard, UdpFluentCheckbox, UdpFluentCounterBadge, UdpFluentDialog, UdpFluentDivider, UdpFluentDrawer, UdpFluentDropdown, UdpFluentFileInput, UdpFluentIcon, UdpFluentIconButton, UdpFluentImage, UdpFluentInlineEdit, UdpFluentLink, UdpFluentListItem, UdpFluentLocationInput, UdpFluentMenu, UdpFluentRadioGroup, UdpFluentSignatureInput, UdpFluentSwitch, UdpFluentTablist, UdpFluentTextInput, UdpFluentToggleButton, UdpFormComponent, UdpFormsBuilder, UdpFormsBuilderMenu, UdpFormsBuilderQuestionItem, UdpFormsBuilderStyleOverride, UdpFormsFollowUpListCard, UdpFormsList, UdpFormsListCard, UdpFormsRenderer, UdpFormsUi, UdpFunctionButton, UdpGridLoader, UdpHotlistForm, UdpIcon, UdpIconButton, UdpKpiCard, UdpKpiCards, UdpLazyLoader, UdpLineChart, UdpLinearLoader, UdpLink, UdpList, UdpListItem, UdpListRenderer, UdpMap, UdpMapToolbar, UdpMenu, UdpMenuItem, UdpMessageBar, UdpNotification, UdpPage, UdpPageHeader, UdpPagination, UdpPopOver, UdpPopOverGridActionHeader, UdpPopover, UdpPrimaryActionHeader, UdpProgressBar, UdpQuestion, UdpQuestionComments, UdpRadioButton, UdpSankeyChart, UdpSaveDraftButton, UdpSearchInput, UdpSelector, UdpSideSheet, UdpSkeletonLoading, UdpSlider, UdpSpinner, UdpSplitScreen, UdpStepper, UdpStepperDemo, UdpSwatchPicker, UdpTab, UdpTabPanel, UdpTabs, UdpText, UdpTextarea, UdpTimeInput, UdpTimeSelector, UdpTimeline, UdpTimelineConnector, UdpTimelineDot, UdpTimelineItem, UdpTimelineSeparator, UdpTooltip, UdpTree, UdpVerticalSpacer, UdpXyChart, UdpXyMultiSeriesChart, UnityTypography, UpdAlertBanner, ValidationChip };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { AddMapFeaturePopup } from "./add-map-feature-popup.mjs";
|
|
2
2
|
import { AddressSearch } from "./address-search.mjs";
|
|
3
|
-
import { AdvancedSearchBuilder } from "./advanced-search-builder.mjs";
|
|
4
3
|
import { AdvancedSearchGrouped } from "./advanced-search-grouped.mjs";
|
|
5
4
|
import { AdvancedSearch } from "./advanced-search.mjs";
|
|
6
5
|
import { AgGridBase } from "./ag-grid-base.mjs";
|
|
@@ -23,7 +22,6 @@ import { FeatureDetailsPopup } from "./feature-details-popup.mjs";
|
|
|
23
22
|
import { FileUploadRenderer } from "./file-upload-renderer.mjs";
|
|
24
23
|
import { FileUpload } from "./file-upload.mjs";
|
|
25
24
|
import { FilterConditions } from "./filter-conditions.mjs";
|
|
26
|
-
import { FilterGroup } from "./filter-group.mjs";
|
|
27
25
|
import { FormMetadataDisplayRenderer } from "./form-metadata-display-renderer.mjs";
|
|
28
26
|
import { FormMetadataDisplay } from "./form-metadata-display.mjs";
|
|
29
27
|
import { GhostRender } from "./ghost-render.mjs";
|
|
@@ -65,6 +63,8 @@ import { StencilForm } from "./stencil-form.mjs";
|
|
|
65
63
|
import { StencilIconButtonGridActionHeader } from "./stencil-icon-button-grid-action-header.mjs";
|
|
66
64
|
import { StencilIconButton } from "./stencil-icon-button.mjs";
|
|
67
65
|
import { StencilToggle } from "./stencil-toggle.mjs";
|
|
66
|
+
import { TableColumnsRenderer } from "./table-columns-renderer.mjs";
|
|
67
|
+
import { TableInput } from "./table-input.mjs";
|
|
68
68
|
import { TallyDisplay } from "./tally-display.mjs";
|
|
69
69
|
import { TestComponentsPage } from "./test-components-page.mjs";
|
|
70
70
|
import { TestForm } from "./test-form.mjs";
|
|
@@ -75,6 +75,7 @@ import { TreeListItem } from "./tree-list-item.mjs";
|
|
|
75
75
|
import { UdpAccordion } from "./udp-accordion.mjs";
|
|
76
76
|
import { UdpAdornment } from "./udp-adornment.mjs";
|
|
77
77
|
import { UdpAdvancedSearchBuilder } from "./udp-advanced-search-builder.mjs";
|
|
78
|
+
import { UdpAdvancedSearchFilterGroup } from "./udp-advanced-search-filter-group.mjs";
|
|
78
79
|
import { UdpAmbientCard } from "./udp-ambient-card.mjs";
|
|
79
80
|
import { UdpAmbientToolTip } from "./udp-ambient-tool-tip.mjs";
|
|
80
81
|
import { UdpAttachmentItem } from "./udp-attachment-item.mjs";
|
|
@@ -130,13 +131,17 @@ import { UdpFluentDialog } from "./udp-fluent-dialog.mjs";
|
|
|
130
131
|
import { UdpFluentDivider } from "./udp-fluent-divider.mjs";
|
|
131
132
|
import { UdpFluentDrawer } from "./udp-fluent-drawer.mjs";
|
|
132
133
|
import { UdpFluentDropdown } from "./udp-fluent-dropdown.mjs";
|
|
134
|
+
import { UdpFluentFileInput } from "./udp-fluent-file-input.mjs";
|
|
133
135
|
import { UdpFluentIconButton } from "./udp-fluent-icon-button.mjs";
|
|
134
136
|
import { UdpFluentIcon } from "./udp-fluent-icon.mjs";
|
|
135
137
|
import { UdpFluentImage } from "./udp-fluent-image.mjs";
|
|
138
|
+
import { UdpFluentInlineEdit } from "./udp-fluent-inline-edit.mjs";
|
|
136
139
|
import { UdpFluentLink } from "./udp-fluent-link.mjs";
|
|
137
140
|
import { UdpFluentListItem } from "./udp-fluent-list-item.mjs";
|
|
141
|
+
import { UdpFluentLocationInput } from "./udp-fluent-location-input.mjs";
|
|
138
142
|
import { UdpFluentMenu } from "./udp-fluent-menu.mjs";
|
|
139
143
|
import { UdpFluentRadioGroup } from "./udp-fluent-radio-group.mjs";
|
|
144
|
+
import { UdpFluentSignatureInput } from "./udp-fluent-signature-input.mjs";
|
|
140
145
|
import { UdpFluentSwitch } from "./udp-fluent-switch.mjs";
|
|
141
146
|
import { UdpFluentTablist } from "./udp-fluent-tablist.mjs";
|
|
142
147
|
import { UdpFluentTextInput } from "./udp-fluent-text-input.mjs";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { TableColumnsRenderer } from "udp-stencil-component-library/dist/components/table-columns-renderer.js";
|
|
3
|
+
|
|
4
|
+
//#region lib/table-columns-renderer.d.ts
|
|
5
|
+
type TableColumnsRendererEvents = NonNullable<unknown>;
|
|
6
|
+
declare const TableColumnsRenderer$1: StencilReactComponent<TableColumnsRenderer, TableColumnsRendererEvents>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { TableColumnsRenderer$1 as TableColumnsRenderer };
|
|
9
|
+
//# sourceMappingURL=table-columns-renderer.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-columns-renderer.d.mts","names":[],"sources":["../../lib/table-columns-renderer.ts"],"mappings":";;;;KAcY,0BAAA,GAA6B,WAAA;AAAA,cAE5B,sBAAA,EAAsB,qBAAA,CAAsB,oBAAA,EAA6B,0BAAA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { TableColumnsRenderer, defineCustomElement } from "udp-stencil-component-library/dist/components/table-columns-renderer.js";
|
|
5
|
+
//#region lib/table-columns-renderer.ts
|
|
6
|
+
const TableColumnsRenderer$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "table-columns-renderer",
|
|
8
|
+
elementClass: TableColumnsRenderer,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {},
|
|
11
|
+
defineCustomElement
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
export { TableColumnsRenderer$1 as TableColumnsRenderer };
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=table-columns-renderer.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-columns-renderer.mjs","names":["TableColumnsRenderer","TableColumnsRendererElement","defineTableColumnsRenderer"],"sources":["../../lib/table-columns-renderer.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { TableColumnsRenderer as TableColumnsRendererElement, defineCustomElement as defineTableColumnsRenderer } from \"@univerus/udp-stencil-component-library/dist/components/table-columns-renderer.js\";\nimport React from 'react';\n\nexport type TableColumnsRendererEvents = NonNullable<unknown>;\n\nexport const TableColumnsRenderer: StencilReactComponent<TableColumnsRendererElement, TableColumnsRendererEvents> = /*@__PURE__*/ createComponent<TableColumnsRendererElement, TableColumnsRendererEvents>({\n tagName: 'table-columns-renderer',\n elementClass: TableColumnsRendererElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {} as TableColumnsRendererEvents,\n defineCustomElement: defineTableColumnsRenderer\n});\n"],"mappings":";;;;;AAgBA,MAAaA,yBAAqH,gCAAyE;CACvM,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ,EAAE;CACWC;CACxB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { TableInput } from "udp-stencil-component-library/dist/components/table-input.js";
|
|
3
|
+
|
|
4
|
+
//#region lib/table-input.d.ts
|
|
5
|
+
type TableInputEvents = NonNullable<unknown>;
|
|
6
|
+
declare const TableInput$1: StencilReactComponent<TableInput, TableInputEvents>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { TableInput$1 as TableInput };
|
|
9
|
+
//# sourceMappingURL=table-input.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-input.d.mts","names":[],"sources":["../../lib/table-input.ts"],"mappings":";;;;KAcY,gBAAA,GAAmB,WAAA;AAAA,cAElB,YAAA,EAAY,qBAAA,CAAsB,UAAA,EAAmB,gBAAA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { TableInput, defineCustomElement } from "udp-stencil-component-library/dist/components/table-input.js";
|
|
5
|
+
//#region lib/table-input.ts
|
|
6
|
+
const TableInput$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "table-input",
|
|
8
|
+
elementClass: TableInput,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {},
|
|
11
|
+
defineCustomElement
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
export { TableInput$1 as TableInput };
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=table-input.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-input.mjs","names":["TableInput","TableInputElement","defineTableInput"],"sources":["../../lib/table-input.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { TableInput as TableInputElement, defineCustomElement as defineTableInput } from \"@univerus/udp-stencil-component-library/dist/components/table-input.js\";\nimport React from 'react';\n\nexport type TableInputEvents = NonNullable<unknown>;\n\nexport const TableInput: StencilReactComponent<TableInputElement, TableInputEvents> = /*@__PURE__*/ createComponent<TableInputElement, TableInputEvents>({\n tagName: 'table-input',\n elementClass: TableInputElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {} as TableInputEvents,\n defineCustomElement: defineTableInput\n});\n"],"mappings":";;;;;AAgBA,MAAaA,eAAuF,gCAAqD;CACrJ,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ,EAAE;CACWC;CACxB,CAAC"}
|
|
@@ -5,7 +5,7 @@ import { Search, UdpAdvancedSearchBuilderCustomEvent } from "udp-stencil-compone
|
|
|
5
5
|
//#region lib/udp-advanced-search-builder.d.ts
|
|
6
6
|
type UdpAdvancedSearchBuilderEvents = {
|
|
7
7
|
onFilterSave: EventName<UdpAdvancedSearchBuilderCustomEvent<Search>>;
|
|
8
|
-
|
|
8
|
+
onSearchChange: EventName<UdpAdvancedSearchBuilderCustomEvent<Search>>;
|
|
9
9
|
};
|
|
10
10
|
declare const UdpAdvancedSearchBuilder$1: StencilReactComponent<UdpAdvancedSearchBuilder, UdpAdvancedSearchBuilderEvents>;
|
|
11
11
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"udp-advanced-search-builder.d.mts","names":[],"sources":["../../lib/udp-advanced-search-builder.ts"],"mappings":";;;;;KAeY,8BAAA;EACR,YAAA,EAAc,SAAA,CAAU,mCAAA,CAAoC,MAAA;EAC5D,
|
|
1
|
+
{"version":3,"file":"udp-advanced-search-builder.d.mts","names":[],"sources":["../../lib/udp-advanced-search-builder.ts"],"mappings":";;;;;KAeY,8BAAA;EACR,YAAA,EAAc,SAAA,CAAU,mCAAA,CAAoC,MAAA;EAC5D,cAAA,EAAgB,SAAA,CAAU,mCAAA,CAAoC,MAAA;AAAA;AAAA,cAGrD,0BAAA,EAA0B,qBAAA,CAAsB,wBAAA,EAAiC,8BAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"udp-advanced-search-builder.mjs","names":["UdpAdvancedSearchBuilder","UdpAdvancedSearchBuilderElement","defineUdpAdvancedSearchBuilder"],"sources":["../../lib/udp-advanced-search-builder.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type Search, type UdpAdvancedSearchBuilderCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { UdpAdvancedSearchBuilder as UdpAdvancedSearchBuilderElement, defineCustomElement as defineUdpAdvancedSearchBuilder } from \"@univerus/udp-stencil-component-library/dist/components/udp-advanced-search-builder.js\";\nimport React from 'react';\n\nexport type UdpAdvancedSearchBuilderEvents = {\n onFilterSave: EventName<UdpAdvancedSearchBuilderCustomEvent<Search>>,\n
|
|
1
|
+
{"version":3,"file":"udp-advanced-search-builder.mjs","names":["UdpAdvancedSearchBuilder","UdpAdvancedSearchBuilderElement","defineUdpAdvancedSearchBuilder"],"sources":["../../lib/udp-advanced-search-builder.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type Search, type UdpAdvancedSearchBuilderCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { UdpAdvancedSearchBuilder as UdpAdvancedSearchBuilderElement, defineCustomElement as defineUdpAdvancedSearchBuilder } from \"@univerus/udp-stencil-component-library/dist/components/udp-advanced-search-builder.js\";\nimport React from 'react';\n\nexport type UdpAdvancedSearchBuilderEvents = {\n onFilterSave: EventName<UdpAdvancedSearchBuilderCustomEvent<Search>>,\n onSearchChange: EventName<UdpAdvancedSearchBuilderCustomEvent<Search>>\n};\n\nexport const UdpAdvancedSearchBuilder: StencilReactComponent<UdpAdvancedSearchBuilderElement, UdpAdvancedSearchBuilderEvents> = /*@__PURE__*/ createComponent<UdpAdvancedSearchBuilderElement, UdpAdvancedSearchBuilderEvents>({\n tagName: 'udp-advanced-search-builder',\n elementClass: UdpAdvancedSearchBuilderElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onFilterSave: 'filterSave',\n onSearchChange: 'searchChange'\n } as UdpAdvancedSearchBuilderEvents,\n defineCustomElement: defineUdpAdvancedSearchBuilder\n});\n"],"mappings":";;;;;AAoBA,MAAaA,6BAAiI,gCAAiF;CAC3N,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,cAAc;EACd,gBAAgB;EACnB;CACoBC;CACxB,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { UdpAdvancedSearchFilterGroup } from "udp-stencil-component-library/dist/components/udp-advanced-search-filter-group.js";
|
|
3
|
+
|
|
4
|
+
//#region lib/udp-advanced-search-filter-group.d.ts
|
|
5
|
+
type UdpAdvancedSearchFilterGroupEvents = {
|
|
6
|
+
onAddFilter: EventName<CustomEvent<number>>;
|
|
7
|
+
onAddGroup: EventName<CustomEvent<number>>;
|
|
8
|
+
onRemoveFilter: EventName<CustomEvent<string>>;
|
|
9
|
+
onRemoveGroup: EventName<CustomEvent<number>>;
|
|
10
|
+
onFilterChange: EventName<CustomEvent<{
|
|
11
|
+
filterId: string;
|
|
12
|
+
field?: string;
|
|
13
|
+
value?: any;
|
|
14
|
+
updates?: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
};
|
|
17
|
+
}>>;
|
|
18
|
+
onGroupChange: EventName<CustomEvent<{
|
|
19
|
+
groupId: number;
|
|
20
|
+
logicalSearchOperator: 1 | 2;
|
|
21
|
+
}>>;
|
|
22
|
+
onToggleAddMenu: EventName<CustomEvent<number>>;
|
|
23
|
+
onDepthChange: EventName<CustomEvent<number>>;
|
|
24
|
+
};
|
|
25
|
+
declare const UdpAdvancedSearchFilterGroup$1: StencilReactComponent<UdpAdvancedSearchFilterGroup, UdpAdvancedSearchFilterGroupEvents>;
|
|
26
|
+
//#endregion
|
|
27
|
+
export { UdpAdvancedSearchFilterGroup$1 as UdpAdvancedSearchFilterGroup };
|
|
28
|
+
//# sourceMappingURL=udp-advanced-search-filter-group.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-advanced-search-filter-group.d.mts","names":[],"sources":["../../lib/udp-advanced-search-filter-group.ts"],"mappings":";;;;KAcY,kCAAA;EACR,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,UAAA,EAAY,SAAA,CAAU,WAAA;EACtB,cAAA,EAAgB,SAAA,CAAU,WAAA;EAC1B,aAAA,EAAe,SAAA,CAAU,WAAA;EACzB,cAAA,EAAgB,SAAA,CAAU,WAAA;IACtB,QAAA;IACA,KAAA;IACA,KAAA;IACA,OAAA;MAAA,CAAa,GAAA;IAAA;EAAA;EAEjB,aAAA,EAAe,SAAA,CAAU,WAAA;IAAc,OAAA;IAAiB,qBAAA;EAAA;EACxD,eAAA,EAAiB,SAAA,CAAU,WAAA;EAC3B,aAAA,EAAe,SAAA,CAAU,WAAA;AAAA;AAAA,cAGhB,8BAAA,EAA8B,qBAAA,CAAsB,4BAAA,EAAqC,kCAAA"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { UdpAdvancedSearchFilterGroup, defineCustomElement } from "udp-stencil-component-library/dist/components/udp-advanced-search-filter-group.js";
|
|
5
|
+
//#region lib/udp-advanced-search-filter-group.ts
|
|
6
|
+
const UdpAdvancedSearchFilterGroup$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "udp-advanced-search-filter-group",
|
|
8
|
+
elementClass: UdpAdvancedSearchFilterGroup,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {
|
|
11
|
+
onAddFilter: "addFilter",
|
|
12
|
+
onAddGroup: "addGroup",
|
|
13
|
+
onRemoveFilter: "removeFilter",
|
|
14
|
+
onRemoveGroup: "removeGroup",
|
|
15
|
+
onFilterChange: "filterChange",
|
|
16
|
+
onGroupChange: "groupChange",
|
|
17
|
+
onToggleAddMenu: "toggleAddMenu",
|
|
18
|
+
onDepthChange: "depthChange"
|
|
19
|
+
},
|
|
20
|
+
defineCustomElement
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
export { UdpAdvancedSearchFilterGroup$1 as UdpAdvancedSearchFilterGroup };
|
|
24
|
+
|
|
25
|
+
//# sourceMappingURL=udp-advanced-search-filter-group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-advanced-search-filter-group.mjs","names":["UdpAdvancedSearchFilterGroup","UdpAdvancedSearchFilterGroupElement","defineUdpAdvancedSearchFilterGroup"],"sources":["../../lib/udp-advanced-search-filter-group.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { UdpAdvancedSearchFilterGroup as UdpAdvancedSearchFilterGroupElement, defineCustomElement as defineUdpAdvancedSearchFilterGroup } from \"@univerus/udp-stencil-component-library/dist/components/udp-advanced-search-filter-group.js\";\nimport React from 'react';\n\nexport type UdpAdvancedSearchFilterGroupEvents = {\n onAddFilter: EventName<CustomEvent<number>>,\n onAddGroup: EventName<CustomEvent<number>>,\n onRemoveFilter: EventName<CustomEvent<string>>,\n onRemoveGroup: EventName<CustomEvent<number>>,\n onFilterChange: EventName<CustomEvent<{\n filterId: string;\n field?: string;\n value?: any;\n updates?: { [key: string]: any };\n }>>,\n onGroupChange: EventName<CustomEvent<{ groupId: number; logicalSearchOperator: 1 | 2 }>>,\n onToggleAddMenu: EventName<CustomEvent<number>>,\n onDepthChange: EventName<CustomEvent<number>>\n};\n\nexport const UdpAdvancedSearchFilterGroup: StencilReactComponent<UdpAdvancedSearchFilterGroupElement, UdpAdvancedSearchFilterGroupEvents> = /*@__PURE__*/ createComponent<UdpAdvancedSearchFilterGroupElement, UdpAdvancedSearchFilterGroupEvents>({\n tagName: 'udp-advanced-search-filter-group',\n elementClass: UdpAdvancedSearchFilterGroupElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onAddFilter: 'addFilter',\n onAddGroup: 'addGroup',\n onRemoveFilter: 'removeFilter',\n onRemoveGroup: 'removeGroup',\n onFilterChange: 'filterChange',\n onGroupChange: 'groupChange',\n onToggleAddMenu: 'toggleAddMenu',\n onDepthChange: 'depthChange'\n } as UdpAdvancedSearchFilterGroupEvents,\n defineCustomElement: defineUdpAdvancedSearchFilterGroup\n});\n"],"mappings":";;;;;AA8BA,MAAaA,iCAA6I,gCAAyF;CAC/O,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,aAAa;EACb,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,iBAAiB;EACjB,eAAe;EAClB;CACoBC;CACxB,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
2
|
import { UdpFluentBadge } from "udp-stencil-component-library/dist/components/udp-fluent-badge.js";
|
|
3
3
|
|
|
4
4
|
//#region lib/udp-fluent-badge.d.ts
|
|
5
|
-
type UdpFluentBadgeEvents =
|
|
5
|
+
type UdpFluentBadgeEvents = {
|
|
6
|
+
onDismiss: EventName<CustomEvent<void>>;
|
|
7
|
+
};
|
|
6
8
|
declare const UdpFluentBadge$1: StencilReactComponent<UdpFluentBadge, UdpFluentBadgeEvents>;
|
|
7
9
|
//#endregion
|
|
8
10
|
export { UdpFluentBadge$1 as UdpFluentBadge };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"udp-fluent-badge.d.mts","names":[],"sources":["../../lib/udp-fluent-badge.ts"],"mappings":";;;;KAcY,oBAAA,
|
|
1
|
+
{"version":3,"file":"udp-fluent-badge.d.mts","names":[],"sources":["../../lib/udp-fluent-badge.ts"],"mappings":";;;;KAcY,oBAAA;EAAyB,SAAA,EAAW,SAAA,CAAU,WAAA;AAAA;AAAA,cAE7C,gBAAA,EAAgB,qBAAA,CAAsB,cAAA,EAAuB,oBAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"udp-fluent-badge.mjs","names":["UdpFluentBadge","UdpFluentBadgeElement","defineUdpFluentBadge"],"sources":["../../lib/udp-fluent-badge.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { UdpFluentBadge as UdpFluentBadgeElement, defineCustomElement as defineUdpFluentBadge } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-badge.js\";\nimport React from 'react';\n\nexport type UdpFluentBadgeEvents =
|
|
1
|
+
{"version":3,"file":"udp-fluent-badge.mjs","names":["UdpFluentBadge","UdpFluentBadgeElement","defineUdpFluentBadge"],"sources":["../../lib/udp-fluent-badge.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { UdpFluentBadge as UdpFluentBadgeElement, defineCustomElement as defineUdpFluentBadge } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-badge.js\";\nimport React from 'react';\n\nexport type UdpFluentBadgeEvents = { onDismiss: EventName<CustomEvent<void>> };\n\nexport const UdpFluentBadge: StencilReactComponent<UdpFluentBadgeElement, UdpFluentBadgeEvents> = /*@__PURE__*/ createComponent<UdpFluentBadgeElement, UdpFluentBadgeEvents>({\n tagName: 'udp-fluent-badge',\n elementClass: UdpFluentBadgeElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: { onDismiss: 'dismiss' } as UdpFluentBadgeEvents,\n defineCustomElement: defineUdpFluentBadge\n});\n"],"mappings":";;;;;AAgBA,MAAaA,mBAAmG,gCAA6D;CACzK,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ,EAAE,WAAW,WAAW;CACXC;CACxB,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { UdpFluentFileInput } from "udp-stencil-component-library/dist/components/udp-fluent-file-input.js";
|
|
3
|
+
import { FileRejectionDetail, UdpFileItem, UdpFluentFileInputCustomEvent } from "udp-stencil-component-library";
|
|
4
|
+
|
|
5
|
+
//#region lib/udp-fluent-file-input.d.ts
|
|
6
|
+
type UdpFluentFileInputEvents = {
|
|
7
|
+
onValueChanged: EventName<UdpFluentFileInputCustomEvent<UdpFileItem[]>>;
|
|
8
|
+
onFileRejected: EventName<UdpFluentFileInputCustomEvent<FileRejectionDetail>>;
|
|
9
|
+
onDownloadRequested: EventName<UdpFluentFileInputCustomEvent<UdpFileItem>>;
|
|
10
|
+
onInputBlur: EventName<CustomEvent<void>>;
|
|
11
|
+
onInputFocus: EventName<CustomEvent<void>>;
|
|
12
|
+
};
|
|
13
|
+
declare const UdpFluentFileInput$1: StencilReactComponent<UdpFluentFileInput, UdpFluentFileInputEvents>;
|
|
14
|
+
//#endregion
|
|
15
|
+
export { UdpFluentFileInput$1 as UdpFluentFileInput };
|
|
16
|
+
//# sourceMappingURL=udp-fluent-file-input.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-file-input.d.mts","names":[],"sources":["../../lib/udp-fluent-file-input.ts"],"mappings":";;;;;KAeY,wBAAA;EACR,cAAA,EAAgB,SAAA,CAAU,6BAAA,CAA8B,WAAA;EACxD,cAAA,EAAgB,SAAA,CAAU,6BAAA,CAA8B,mBAAA;EACxD,mBAAA,EAAqB,SAAA,CAAU,6BAAA,CAA8B,WAAA;EAC7D,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,YAAA,EAAc,SAAA,CAAU,WAAA;AAAA;AAAA,cAGf,oBAAA,EAAoB,qBAAA,CAAsB,kBAAA,EAA2B,wBAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { UdpFluentFileInput, defineCustomElement } from "udp-stencil-component-library/dist/components/udp-fluent-file-input.js";
|
|
5
|
+
//#region lib/udp-fluent-file-input.ts
|
|
6
|
+
const UdpFluentFileInput$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "udp-fluent-file-input",
|
|
8
|
+
elementClass: UdpFluentFileInput,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {
|
|
11
|
+
onValueChanged: "valueChanged",
|
|
12
|
+
onFileRejected: "fileRejected",
|
|
13
|
+
onDownloadRequested: "downloadRequested",
|
|
14
|
+
onInputBlur: "inputBlur",
|
|
15
|
+
onInputFocus: "inputFocus"
|
|
16
|
+
},
|
|
17
|
+
defineCustomElement
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { UdpFluentFileInput$1 as UdpFluentFileInput };
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=udp-fluent-file-input.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-file-input.mjs","names":["UdpFluentFileInput","UdpFluentFileInputElement","defineUdpFluentFileInput"],"sources":["../../lib/udp-fluent-file-input.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type FileRejectionDetail, type UdpFileItem, type UdpFluentFileInputCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { UdpFluentFileInput as UdpFluentFileInputElement, defineCustomElement as defineUdpFluentFileInput } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-file-input.js\";\nimport React from 'react';\n\nexport type UdpFluentFileInputEvents = {\n onValueChanged: EventName<UdpFluentFileInputCustomEvent<UdpFileItem[]>>,\n onFileRejected: EventName<UdpFluentFileInputCustomEvent<FileRejectionDetail>>,\n onDownloadRequested: EventName<UdpFluentFileInputCustomEvent<UdpFileItem>>,\n onInputBlur: EventName<CustomEvent<void>>,\n onInputFocus: EventName<CustomEvent<void>>\n};\n\nexport const UdpFluentFileInput: StencilReactComponent<UdpFluentFileInputElement, UdpFluentFileInputEvents> = /*@__PURE__*/ createComponent<UdpFluentFileInputElement, UdpFluentFileInputEvents>({\n tagName: 'udp-fluent-file-input',\n elementClass: UdpFluentFileInputElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onValueChanged: 'valueChanged',\n onFileRejected: 'fileRejected',\n onDownloadRequested: 'downloadRequested',\n onInputBlur: 'inputBlur',\n onInputFocus: 'inputFocus'\n } as UdpFluentFileInputEvents,\n defineCustomElement: defineUdpFluentFileInput\n});\n"],"mappings":";;;;;AAuBA,MAAaA,uBAA+G,gCAAqE;CAC7L,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,gBAAgB;EAChB,gBAAgB;EAChB,qBAAqB;EACrB,aAAa;EACb,cAAc;EACjB;CACoBC;CACxB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { UdpFluentInlineEdit } from "udp-stencil-component-library/dist/components/udp-fluent-inline-edit.js";
|
|
3
|
+
|
|
4
|
+
//#region lib/udp-fluent-inline-edit.d.ts
|
|
5
|
+
type UdpFluentInlineEditEvents = {
|
|
6
|
+
onValueChanged: EventName<CustomEvent<string>>;
|
|
7
|
+
onInputBlur: EventName<CustomEvent<void>>;
|
|
8
|
+
onInputFocus: EventName<CustomEvent<void>>;
|
|
9
|
+
};
|
|
10
|
+
declare const UdpFluentInlineEdit$1: StencilReactComponent<UdpFluentInlineEdit, UdpFluentInlineEditEvents>;
|
|
11
|
+
//#endregion
|
|
12
|
+
export { UdpFluentInlineEdit$1 as UdpFluentInlineEdit };
|
|
13
|
+
//# sourceMappingURL=udp-fluent-inline-edit.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-inline-edit.d.mts","names":[],"sources":["../../lib/udp-fluent-inline-edit.ts"],"mappings":";;;;KAcY,yBAAA;EACR,cAAA,EAAgB,SAAA,CAAU,WAAA;EAC1B,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,YAAA,EAAc,SAAA,CAAU,WAAA;AAAA;AAAA,cAGf,qBAAA,EAAqB,qBAAA,CAAsB,mBAAA,EAA4B,yBAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { UdpFluentInlineEdit, defineCustomElement } from "udp-stencil-component-library/dist/components/udp-fluent-inline-edit.js";
|
|
5
|
+
//#region lib/udp-fluent-inline-edit.ts
|
|
6
|
+
const UdpFluentInlineEdit$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "udp-fluent-inline-edit",
|
|
8
|
+
elementClass: UdpFluentInlineEdit,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {
|
|
11
|
+
onValueChanged: "valueChanged",
|
|
12
|
+
onInputBlur: "inputBlur",
|
|
13
|
+
onInputFocus: "inputFocus"
|
|
14
|
+
},
|
|
15
|
+
defineCustomElement
|
|
16
|
+
});
|
|
17
|
+
//#endregion
|
|
18
|
+
export { UdpFluentInlineEdit$1 as UdpFluentInlineEdit };
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=udp-fluent-inline-edit.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-inline-edit.mjs","names":["UdpFluentInlineEdit","UdpFluentInlineEditElement","defineUdpFluentInlineEdit"],"sources":["../../lib/udp-fluent-inline-edit.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { UdpFluentInlineEdit as UdpFluentInlineEditElement, defineCustomElement as defineUdpFluentInlineEdit } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-inline-edit.js\";\nimport React from 'react';\n\nexport type UdpFluentInlineEditEvents = {\n onValueChanged: EventName<CustomEvent<string>>,\n onInputBlur: EventName<CustomEvent<void>>,\n onInputFocus: EventName<CustomEvent<void>>\n};\n\nexport const UdpFluentInlineEdit: StencilReactComponent<UdpFluentInlineEditElement, UdpFluentInlineEditEvents> = /*@__PURE__*/ createComponent<UdpFluentInlineEditElement, UdpFluentInlineEditEvents>({\n tagName: 'udp-fluent-inline-edit',\n elementClass: UdpFluentInlineEditElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onValueChanged: 'valueChanged',\n onInputBlur: 'inputBlur',\n onInputFocus: 'inputFocus'\n } as UdpFluentInlineEditEvents,\n defineCustomElement: defineUdpFluentInlineEdit\n});\n"],"mappings":";;;;;AAoBA,MAAaA,wBAAkH,gCAAuE;CAClM,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,gBAAgB;EAChB,aAAa;EACb,cAAc;EACjB;CACoBC;CACxB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { UdpFluentLocationInput } from "udp-stencil-component-library/dist/components/udp-fluent-location-input.js";
|
|
3
|
+
import { FluentLocationValue, GeolocationDeniedReason, UdpFluentLocationInputCustomEvent } from "udp-stencil-component-library";
|
|
4
|
+
|
|
5
|
+
//#region lib/udp-fluent-location-input.d.ts
|
|
6
|
+
type UdpFluentLocationInputEvents = {
|
|
7
|
+
onValueChanged: EventName<UdpFluentLocationInputCustomEvent<FluentLocationValue>>;
|
|
8
|
+
onInputBlur: EventName<CustomEvent<void>>;
|
|
9
|
+
onInputFocus: EventName<CustomEvent<void>>;
|
|
10
|
+
onGeolocationDenied: EventName<UdpFluentLocationInputCustomEvent<{
|
|
11
|
+
reason: GeolocationDeniedReason;
|
|
12
|
+
message?: string;
|
|
13
|
+
}>>;
|
|
14
|
+
onProviderFailed: EventName<CustomEvent<{
|
|
15
|
+
phase: 'search' | 'reverseGeocode';
|
|
16
|
+
error: unknown;
|
|
17
|
+
}>>;
|
|
18
|
+
};
|
|
19
|
+
declare const UdpFluentLocationInput$1: StencilReactComponent<UdpFluentLocationInput, UdpFluentLocationInputEvents>;
|
|
20
|
+
//#endregion
|
|
21
|
+
export { UdpFluentLocationInput$1 as UdpFluentLocationInput };
|
|
22
|
+
//# sourceMappingURL=udp-fluent-location-input.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-location-input.d.mts","names":[],"sources":["../../lib/udp-fluent-location-input.ts"],"mappings":";;;;;KAeY,4BAAA;EACR,cAAA,EAAgB,SAAA,CAAU,iCAAA,CAAkC,mBAAA;EAC5D,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,YAAA,EAAc,SAAA,CAAU,WAAA;EACxB,mBAAA,EAAqB,SAAA,CAAU,iCAAA;IAAoC,MAAA,EAAQ,uBAAA;IAAyB,OAAA;EAAA;EACpG,gBAAA,EAAkB,SAAA,CAAU,WAAA;IAAc,KAAA;IAAoC,KAAA;EAAA;AAAA;AAAA,cAGrE,wBAAA,EAAwB,qBAAA,CAAsB,sBAAA,EAA+B,4BAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { UdpFluentLocationInput, defineCustomElement } from "udp-stencil-component-library/dist/components/udp-fluent-location-input.js";
|
|
5
|
+
//#region lib/udp-fluent-location-input.ts
|
|
6
|
+
const UdpFluentLocationInput$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "udp-fluent-location-input",
|
|
8
|
+
elementClass: UdpFluentLocationInput,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {
|
|
11
|
+
onValueChanged: "valueChanged",
|
|
12
|
+
onInputBlur: "inputBlur",
|
|
13
|
+
onInputFocus: "inputFocus",
|
|
14
|
+
onGeolocationDenied: "geolocationDenied",
|
|
15
|
+
onProviderFailed: "providerFailed"
|
|
16
|
+
},
|
|
17
|
+
defineCustomElement
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { UdpFluentLocationInput$1 as UdpFluentLocationInput };
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=udp-fluent-location-input.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-location-input.mjs","names":["UdpFluentLocationInput","UdpFluentLocationInputElement","defineUdpFluentLocationInput"],"sources":["../../lib/udp-fluent-location-input.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type FluentLocationValue, type GeolocationDeniedReason, type UdpFluentLocationInputCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { UdpFluentLocationInput as UdpFluentLocationInputElement, defineCustomElement as defineUdpFluentLocationInput } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-location-input.js\";\nimport React from 'react';\n\nexport type UdpFluentLocationInputEvents = {\n onValueChanged: EventName<UdpFluentLocationInputCustomEvent<FluentLocationValue>>,\n onInputBlur: EventName<CustomEvent<void>>,\n onInputFocus: EventName<CustomEvent<void>>,\n onGeolocationDenied: EventName<UdpFluentLocationInputCustomEvent<{ reason: GeolocationDeniedReason; message?: string }>>,\n onProviderFailed: EventName<CustomEvent<{ phase: 'search' | 'reverseGeocode'; error: unknown }>>\n};\n\nexport const UdpFluentLocationInput: StencilReactComponent<UdpFluentLocationInputElement, UdpFluentLocationInputEvents> = /*@__PURE__*/ createComponent<UdpFluentLocationInputElement, UdpFluentLocationInputEvents>({\n tagName: 'udp-fluent-location-input',\n elementClass: UdpFluentLocationInputElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onValueChanged: 'valueChanged',\n onInputBlur: 'inputBlur',\n onInputFocus: 'inputFocus',\n onGeolocationDenied: 'geolocationDenied',\n onProviderFailed: 'providerFailed'\n } as UdpFluentLocationInputEvents,\n defineCustomElement: defineUdpFluentLocationInput\n});\n"],"mappings":";;;;;AAuBA,MAAaA,2BAA2H,gCAA6E;CACjN,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,gBAAgB;EAChB,aAAa;EACb,cAAc;EACd,qBAAqB;EACrB,kBAAkB;EACrB;CACoBC;CACxB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
+
import { UdpFluentSignatureInput } from "udp-stencil-component-library/dist/components/udp-fluent-signature-input.js";
|
|
3
|
+
import { GeolocationDeniedReason, SignatureValue, UdpFluentSignatureInputCustomEvent } from "udp-stencil-component-library";
|
|
4
|
+
|
|
5
|
+
//#region lib/udp-fluent-signature-input.d.ts
|
|
6
|
+
type UdpFluentSignatureInputEvents = {
|
|
7
|
+
onValueChanged: EventName<UdpFluentSignatureInputCustomEvent<SignatureValue>>;
|
|
8
|
+
onGeolocationDenied: EventName<UdpFluentSignatureInputCustomEvent<{
|
|
9
|
+
reason: GeolocationDeniedReason;
|
|
10
|
+
message?: string;
|
|
11
|
+
}>>;
|
|
12
|
+
onInputBlur: EventName<CustomEvent<void>>;
|
|
13
|
+
onInputFocus: EventName<CustomEvent<void>>;
|
|
14
|
+
};
|
|
15
|
+
declare const UdpFluentSignatureInput$1: StencilReactComponent<UdpFluentSignatureInput, UdpFluentSignatureInputEvents>;
|
|
16
|
+
//#endregion
|
|
17
|
+
export { UdpFluentSignatureInput$1 as UdpFluentSignatureInput };
|
|
18
|
+
//# sourceMappingURL=udp-fluent-signature-input.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-signature-input.d.mts","names":[],"sources":["../../lib/udp-fluent-signature-input.ts"],"mappings":";;;;;KAeY,6BAAA;EACR,cAAA,EAAgB,SAAA,CAAU,kCAAA,CAAmC,cAAA;EAC7D,mBAAA,EAAqB,SAAA,CAAU,kCAAA;IAAqC,MAAA,EAAQ,uBAAA;IAAyB,OAAA;EAAA;EACrG,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,YAAA,EAAc,SAAA,CAAU,WAAA;AAAA;AAAA,cAGf,yBAAA,EAAyB,qBAAA,CAAsB,uBAAA,EAAgC,6BAAA"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { UdpFluentSignatureInput, defineCustomElement } from "udp-stencil-component-library/dist/components/udp-fluent-signature-input.js";
|
|
5
|
+
//#region lib/udp-fluent-signature-input.ts
|
|
6
|
+
const UdpFluentSignatureInput$1 = /* @__PURE__ */ createComponent({
|
|
7
|
+
tagName: "udp-fluent-signature-input",
|
|
8
|
+
elementClass: UdpFluentSignatureInput,
|
|
9
|
+
react: React,
|
|
10
|
+
events: {
|
|
11
|
+
onValueChanged: "valueChanged",
|
|
12
|
+
onGeolocationDenied: "geolocationDenied",
|
|
13
|
+
onInputBlur: "inputBlur",
|
|
14
|
+
onInputFocus: "inputFocus"
|
|
15
|
+
},
|
|
16
|
+
defineCustomElement
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { UdpFluentSignatureInput$1 as UdpFluentSignatureInput };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=udp-fluent-signature-input.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"udp-fluent-signature-input.mjs","names":["UdpFluentSignatureInput","UdpFluentSignatureInputElement","defineUdpFluentSignatureInput"],"sources":["../../lib/udp-fluent-signature-input.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type GeolocationDeniedReason, type SignatureValue, type UdpFluentSignatureInputCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { UdpFluentSignatureInput as UdpFluentSignatureInputElement, defineCustomElement as defineUdpFluentSignatureInput } from \"@univerus/udp-stencil-component-library/dist/components/udp-fluent-signature-input.js\";\nimport React from 'react';\n\nexport type UdpFluentSignatureInputEvents = {\n onValueChanged: EventName<UdpFluentSignatureInputCustomEvent<SignatureValue>>,\n onGeolocationDenied: EventName<UdpFluentSignatureInputCustomEvent<{ reason: GeolocationDeniedReason; message?: string }>>,\n onInputBlur: EventName<CustomEvent<void>>,\n onInputFocus: EventName<CustomEvent<void>>\n};\n\nexport const UdpFluentSignatureInput: StencilReactComponent<UdpFluentSignatureInputElement, UdpFluentSignatureInputEvents> = /*@__PURE__*/ createComponent<UdpFluentSignatureInputElement, UdpFluentSignatureInputEvents>({\n tagName: 'udp-fluent-signature-input',\n elementClass: UdpFluentSignatureInputElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onValueChanged: 'valueChanged',\n onGeolocationDenied: 'geolocationDenied',\n onInputBlur: 'inputBlur',\n onInputFocus: 'inputFocus'\n } as UdpFluentSignatureInputEvents,\n defineCustomElement: defineUdpFluentSignatureInput\n});\n"],"mappings":";;;;;AAsBA,MAAaA,4BAA8H,gCAA+E;CACtN,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,gBAAgB;EAChB,qBAAqB;EACrB,aAAa;EACb,cAAc;EACjB;CACoBC;CACxB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "udp-react-stencil-component-library",
|
|
3
|
-
"version": "26.0.0",
|
|
3
|
+
"version": "26.0.2-beta.0",
|
|
4
4
|
"description": "Unity React Wrapped Stencil Components",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"./lib/add-map-feature-popup": "./dist/lib/add-map-feature-popup.mjs",
|
|
11
11
|
"./lib/address-search": "./dist/lib/address-search.mjs",
|
|
12
12
|
"./lib/advanced-search": "./dist/lib/advanced-search.mjs",
|
|
13
|
-
"./lib/advanced-search-builder": "./dist/lib/advanced-search-builder.mjs",
|
|
14
13
|
"./lib/advanced-search-grouped": "./dist/lib/advanced-search-grouped.mjs",
|
|
15
14
|
"./lib/ag-grid-base": "./dist/lib/ag-grid-base.mjs",
|
|
16
15
|
"./lib/ag-table": "./dist/lib/ag-table.mjs",
|
|
@@ -32,7 +31,6 @@
|
|
|
32
31
|
"./lib/file-upload": "./dist/lib/file-upload.mjs",
|
|
33
32
|
"./lib/file-upload-renderer": "./dist/lib/file-upload-renderer.mjs",
|
|
34
33
|
"./lib/filter-conditions": "./dist/lib/filter-conditions.mjs",
|
|
35
|
-
"./lib/filter-group": "./dist/lib/filter-group.mjs",
|
|
36
34
|
"./lib/form-metadata-display": "./dist/lib/form-metadata-display.mjs",
|
|
37
35
|
"./lib/form-metadata-display-renderer": "./dist/lib/form-metadata-display-renderer.mjs",
|
|
38
36
|
"./lib/ghost-render": "./dist/lib/ghost-render.mjs",
|
|
@@ -74,6 +72,8 @@
|
|
|
74
72
|
"./lib/stencil-icon-button": "./dist/lib/stencil-icon-button.mjs",
|
|
75
73
|
"./lib/stencil-icon-button-grid-action-header": "./dist/lib/stencil-icon-button-grid-action-header.mjs",
|
|
76
74
|
"./lib/stencil-toggle": "./dist/lib/stencil-toggle.mjs",
|
|
75
|
+
"./lib/table-columns-renderer": "./dist/lib/table-columns-renderer.mjs",
|
|
76
|
+
"./lib/table-input": "./dist/lib/table-input.mjs",
|
|
77
77
|
"./lib/tally-display": "./dist/lib/tally-display.mjs",
|
|
78
78
|
"./lib/test-components-page": "./dist/lib/test-components-page.mjs",
|
|
79
79
|
"./lib/test-form": "./dist/lib/test-form.mjs",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"./lib/udp-accordion": "./dist/lib/udp-accordion.mjs",
|
|
85
85
|
"./lib/udp-adornment": "./dist/lib/udp-adornment.mjs",
|
|
86
86
|
"./lib/udp-advanced-search-builder": "./dist/lib/udp-advanced-search-builder.mjs",
|
|
87
|
+
"./lib/udp-advanced-search-filter-group": "./dist/lib/udp-advanced-search-filter-group.mjs",
|
|
87
88
|
"./lib/udp-ambient-card": "./dist/lib/udp-ambient-card.mjs",
|
|
88
89
|
"./lib/udp-ambient-tool-tip": "./dist/lib/udp-ambient-tool-tip.mjs",
|
|
89
90
|
"./lib/udp-attachment-item": "./dist/lib/udp-attachment-item.mjs",
|
|
@@ -139,13 +140,17 @@
|
|
|
139
140
|
"./lib/udp-fluent-divider": "./dist/lib/udp-fluent-divider.mjs",
|
|
140
141
|
"./lib/udp-fluent-drawer": "./dist/lib/udp-fluent-drawer.mjs",
|
|
141
142
|
"./lib/udp-fluent-dropdown": "./dist/lib/udp-fluent-dropdown.mjs",
|
|
143
|
+
"./lib/udp-fluent-file-input": "./dist/lib/udp-fluent-file-input.mjs",
|
|
142
144
|
"./lib/udp-fluent-icon": "./dist/lib/udp-fluent-icon.mjs",
|
|
143
145
|
"./lib/udp-fluent-icon-button": "./dist/lib/udp-fluent-icon-button.mjs",
|
|
144
146
|
"./lib/udp-fluent-image": "./dist/lib/udp-fluent-image.mjs",
|
|
147
|
+
"./lib/udp-fluent-inline-edit": "./dist/lib/udp-fluent-inline-edit.mjs",
|
|
145
148
|
"./lib/udp-fluent-link": "./dist/lib/udp-fluent-link.mjs",
|
|
146
149
|
"./lib/udp-fluent-list-item": "./dist/lib/udp-fluent-list-item.mjs",
|
|
150
|
+
"./lib/udp-fluent-location-input": "./dist/lib/udp-fluent-location-input.mjs",
|
|
147
151
|
"./lib/udp-fluent-menu": "./dist/lib/udp-fluent-menu.mjs",
|
|
148
152
|
"./lib/udp-fluent-radio-group": "./dist/lib/udp-fluent-radio-group.mjs",
|
|
153
|
+
"./lib/udp-fluent-signature-input": "./dist/lib/udp-fluent-signature-input.mjs",
|
|
149
154
|
"./lib/udp-fluent-switch": "./dist/lib/udp-fluent-switch.mjs",
|
|
150
155
|
"./lib/udp-fluent-tablist": "./dist/lib/udp-fluent-tablist.mjs",
|
|
151
156
|
"./lib/udp-fluent-text-input": "./dist/lib/udp-fluent-text-input.mjs",
|
|
@@ -250,7 +255,7 @@
|
|
|
250
255
|
},
|
|
251
256
|
"dependencies": {
|
|
252
257
|
"@stencil/react-output-target": "^1.2.0",
|
|
253
|
-
"udp-stencil-component-library": "^26.0.
|
|
258
|
+
"udp-stencil-component-library": "^26.2.0-beta.7",
|
|
254
259
|
"react": "^18.2.0"
|
|
255
260
|
}
|
|
256
261
|
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
-
import { AdvancedSearchBuilder } from "udp-stencil-component-library/dist/components/advanced-search-builder.js";
|
|
3
|
-
import { AdvancedSearchBuilderCustomEvent, Search } from "udp-stencil-component-library";
|
|
4
|
-
|
|
5
|
-
//#region lib/advanced-search-builder.d.ts
|
|
6
|
-
type AdvancedSearchBuilderEvents = {
|
|
7
|
-
onFilterSave: EventName<AdvancedSearchBuilderCustomEvent<Search>>;
|
|
8
|
-
onChange: EventName<AdvancedSearchBuilderCustomEvent<Search>>;
|
|
9
|
-
};
|
|
10
|
-
declare const AdvancedSearchBuilder$1: StencilReactComponent<AdvancedSearchBuilder, AdvancedSearchBuilderEvents>;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { AdvancedSearchBuilder$1 as AdvancedSearchBuilder };
|
|
13
|
-
//# sourceMappingURL=advanced-search-builder.d.mts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"advanced-search-builder.d.mts","names":[],"sources":["../../lib/advanced-search-builder.ts"],"mappings":";;;;;KAeY,2BAAA;EACR,YAAA,EAAc,SAAA,CAAU,gCAAA,CAAiC,MAAA;EACzD,QAAA,EAAU,SAAA,CAAU,gCAAA,CAAiC,MAAA;AAAA;AAAA,cAG5C,uBAAA,EAAuB,qBAAA,CAAsB,qBAAA,EAA8B,2BAAA"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { AdvancedSearchBuilder, defineCustomElement } from "udp-stencil-component-library/dist/components/advanced-search-builder.js";
|
|
5
|
-
//#region lib/advanced-search-builder.ts
|
|
6
|
-
const AdvancedSearchBuilder$1 = /* @__PURE__ */ createComponent({
|
|
7
|
-
tagName: "advanced-search-builder",
|
|
8
|
-
elementClass: AdvancedSearchBuilder,
|
|
9
|
-
react: React,
|
|
10
|
-
events: {
|
|
11
|
-
onFilterSave: "filterSave",
|
|
12
|
-
onChange: "change"
|
|
13
|
-
},
|
|
14
|
-
defineCustomElement
|
|
15
|
-
});
|
|
16
|
-
//#endregion
|
|
17
|
-
export { AdvancedSearchBuilder$1 as AdvancedSearchBuilder };
|
|
18
|
-
|
|
19
|
-
//# sourceMappingURL=advanced-search-builder.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"advanced-search-builder.mjs","names":["AdvancedSearchBuilder","AdvancedSearchBuilderElement","defineAdvancedSearchBuilder"],"sources":["../../lib/advanced-search-builder.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type AdvancedSearchBuilderCustomEvent, type Search } from \"@univerus/udp-stencil-component-library\";\nimport { AdvancedSearchBuilder as AdvancedSearchBuilderElement, defineCustomElement as defineAdvancedSearchBuilder } from \"@univerus/udp-stencil-component-library/dist/components/advanced-search-builder.js\";\nimport React from 'react';\n\nexport type AdvancedSearchBuilderEvents = {\n onFilterSave: EventName<AdvancedSearchBuilderCustomEvent<Search>>,\n onChange: EventName<AdvancedSearchBuilderCustomEvent<Search>>\n};\n\nexport const AdvancedSearchBuilder: StencilReactComponent<AdvancedSearchBuilderElement, AdvancedSearchBuilderEvents> = /*@__PURE__*/ createComponent<AdvancedSearchBuilderElement, AdvancedSearchBuilderEvents>({\n tagName: 'advanced-search-builder',\n elementClass: AdvancedSearchBuilderElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onFilterSave: 'filterSave',\n onChange: 'change'\n } as AdvancedSearchBuilderEvents,\n defineCustomElement: defineAdvancedSearchBuilder\n});\n"],"mappings":";;;;;AAoBA,MAAaA,0BAAwH,gCAA2E;CAC5M,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,cAAc;EACd,UAAU;EACb;CACoBC;CACxB,CAAC"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EventName, StencilReactComponent } from "@stencil/react-output-target/runtime";
|
|
2
|
-
import { FilterGroup } from "udp-stencil-component-library/dist/components/filter-group.js";
|
|
3
|
-
import { FilterGroupCustomEvent } from "udp-stencil-component-library";
|
|
4
|
-
|
|
5
|
-
//#region lib/filter-group.d.ts
|
|
6
|
-
type FilterGroupEvents = {
|
|
7
|
-
onAddFilter: EventName<CustomEvent<number>>;
|
|
8
|
-
onAddGroup: EventName<CustomEvent<number>>;
|
|
9
|
-
onRemoveFilter: EventName<CustomEvent<string>>;
|
|
10
|
-
onRemoveGroup: EventName<CustomEvent<number>>;
|
|
11
|
-
onFilterChange: EventName<CustomEvent<{
|
|
12
|
-
filterId: string;
|
|
13
|
-
field?: string;
|
|
14
|
-
value?: any;
|
|
15
|
-
updates?: {
|
|
16
|
-
[key: string]: any;
|
|
17
|
-
};
|
|
18
|
-
}>>;
|
|
19
|
-
onGroupChange: EventName<CustomEvent<{
|
|
20
|
-
groupId: number;
|
|
21
|
-
logicalSearchOperator: 1 | 2;
|
|
22
|
-
}>>;
|
|
23
|
-
onDropOnFilter: EventName<FilterGroupCustomEvent<{
|
|
24
|
-
event: DragEvent;
|
|
25
|
-
targetFilterId: string;
|
|
26
|
-
}>>;
|
|
27
|
-
onToggleAddMenu: EventName<CustomEvent<number>>;
|
|
28
|
-
onDropOnGroup: EventName<FilterGroupCustomEvent<{
|
|
29
|
-
event: DragEvent;
|
|
30
|
-
targetGroupId: number;
|
|
31
|
-
}>>;
|
|
32
|
-
};
|
|
33
|
-
declare const FilterGroup$1: StencilReactComponent<FilterGroup, FilterGroupEvents>;
|
|
34
|
-
//#endregion
|
|
35
|
-
export { FilterGroup$1 as FilterGroup };
|
|
36
|
-
//# sourceMappingURL=filter-group.d.mts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"filter-group.d.mts","names":[],"sources":["../../lib/filter-group.ts"],"mappings":";;;;;KAeY,iBAAA;EACR,WAAA,EAAa,SAAA,CAAU,WAAA;EACvB,UAAA,EAAY,SAAA,CAAU,WAAA;EACtB,cAAA,EAAgB,SAAA,CAAU,WAAA;EAC1B,aAAA,EAAe,SAAA,CAAU,WAAA;EACzB,cAAA,EAAgB,SAAA,CAAU,WAAA;IACtB,QAAA;IACA,KAAA;IACA,KAAA;IACA,OAAA;MAAA,CAAa,GAAA;IAAA;EAAA;EAEjB,aAAA,EAAe,SAAA,CAAU,WAAA;IAAc,OAAA;IAAiB,qBAAA;EAAA;EACxD,cAAA,EAAgB,SAAA,CAAU,sBAAA;IAAyB,KAAA,EAAO,SAAA;IAAW,cAAA;EAAA;EACrE,eAAA,EAAiB,SAAA,CAAU,WAAA;EAC3B,aAAA,EAAe,SAAA,CAAU,sBAAA;IAAyB,KAAA,EAAO,SAAA;IAAW,aAAA;EAAA;AAAA;AAAA,cAG3D,aAAA,EAAa,qBAAA,CAAsB,WAAA,EAAoB,iBAAA"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { createComponent } from "@stencil/react-output-target/runtime";
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { FilterGroup, defineCustomElement } from "udp-stencil-component-library/dist/components/filter-group.js";
|
|
5
|
-
//#region lib/filter-group.ts
|
|
6
|
-
const FilterGroup$1 = /* @__PURE__ */ createComponent({
|
|
7
|
-
tagName: "filter-group",
|
|
8
|
-
elementClass: FilterGroup,
|
|
9
|
-
react: React,
|
|
10
|
-
events: {
|
|
11
|
-
onAddFilter: "addFilter",
|
|
12
|
-
onAddGroup: "addGroup",
|
|
13
|
-
onRemoveFilter: "removeFilter",
|
|
14
|
-
onRemoveGroup: "removeGroup",
|
|
15
|
-
onFilterChange: "filterChange",
|
|
16
|
-
onGroupChange: "groupChange",
|
|
17
|
-
onDropOnFilter: "dropOnFilter",
|
|
18
|
-
onToggleAddMenu: "toggleAddMenu",
|
|
19
|
-
onDropOnGroup: "dropOnGroup"
|
|
20
|
-
},
|
|
21
|
-
defineCustomElement
|
|
22
|
-
});
|
|
23
|
-
//#endregion
|
|
24
|
-
export { FilterGroup$1 as FilterGroup };
|
|
25
|
-
|
|
26
|
-
//# sourceMappingURL=filter-group.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"filter-group.mjs","names":["FilterGroup","FilterGroupElement","defineFilterGroup"],"sources":["../../lib/filter-group.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport { type FilterGroupCustomEvent } from \"@univerus/udp-stencil-component-library\";\nimport { FilterGroup as FilterGroupElement, defineCustomElement as defineFilterGroup } from \"@univerus/udp-stencil-component-library/dist/components/filter-group.js\";\nimport React from 'react';\n\nexport type FilterGroupEvents = {\n onAddFilter: EventName<CustomEvent<number>>,\n onAddGroup: EventName<CustomEvent<number>>,\n onRemoveFilter: EventName<CustomEvent<string>>,\n onRemoveGroup: EventName<CustomEvent<number>>,\n onFilterChange: EventName<CustomEvent<{\n filterId: string;\n field?: string; // Make field optional\n value?: any; // Make value optional\n updates?: { [key: string]: any }; // Add the optional updates property\n }>>,\n onGroupChange: EventName<CustomEvent<{ groupId: number; logicalSearchOperator: 1 | 2 }>>,\n onDropOnFilter: EventName<FilterGroupCustomEvent<{ event: DragEvent; targetFilterId: string }>>,\n onToggleAddMenu: EventName<CustomEvent<number>>,\n onDropOnGroup: EventName<FilterGroupCustomEvent<{ event: DragEvent; targetGroupId: number }>>\n};\n\nexport const FilterGroup: StencilReactComponent<FilterGroupElement, FilterGroupEvents> = /*@__PURE__*/ createComponent<FilterGroupElement, FilterGroupEvents>({\n tagName: 'filter-group',\n elementClass: FilterGroupElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onAddFilter: 'addFilter',\n onAddGroup: 'addGroup',\n onRemoveFilter: 'removeFilter',\n onRemoveGroup: 'removeGroup',\n onFilterChange: 'filterChange',\n onGroupChange: 'groupChange',\n onDropOnFilter: 'dropOnFilter',\n onToggleAddMenu: 'toggleAddMenu',\n onDropOnGroup: 'dropOnGroup'\n } as FilterGroupEvents,\n defineCustomElement: defineFilterGroup\n});\n"],"mappings":";;;;;AAgCA,MAAaA,gBAA0F,gCAAuD;CAC1J,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,aAAa;EACb,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,eAAe;EAClB;CACoBC;CACxB,CAAC"}
|