@rockrms/obsidian-framework 1.16.5-rc.2 → 1.16.7-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/Controls/Grid/Cells/buttonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/highlightDetailCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/highlightDetailSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +9 -0
- package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +206 -0
- package/types/Controls/Grid/Columns/column.partial.d.ts +55 -36
- package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/dynamicColumns.partial.d.ts +104 -0
- package/types/Controls/Grid/Columns/editColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +204 -0
- package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/personColumn.partial.d.ts +27 -1
- package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/Columns/textColumn.partial.d.ts +18 -0
- package/types/Controls/Grid/dataRows.partial.obs.d.ts +46 -0
- package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +37 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +100 -0
- package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/mobileNavigationActionEditor.obs.d.ts +67 -0
- package/types/Controls/attributeEditor.obs.d.ts +27 -0
- package/types/Controls/colorPicker.obs.d.ts +19 -1
- package/types/Controls/currencyBox.obs.d.ts +24 -1
- package/types/Controls/dropDownList.obs.d.ts +16 -0
- package/types/Controls/expanderPanel.obs.d.ts +77 -0
- package/types/Controls/fieldFilterEditor.obs.d.ts +22 -0
- package/types/Controls/fieldFilterRuleRow.obs.d.ts +24 -1
- package/types/Controls/fileUploader.obs.d.ts +16 -0
- package/types/Controls/gatewayControlEvents.obs.d.ts +13 -0
- package/types/Controls/grid.d.ts +27 -4
- package/types/Controls/imageUploader.obs.d.ts +34 -0
- package/types/Controls/modal.obs.d.ts +34 -0
- package/types/Controls/numberBox.obs.d.ts +21 -1
- package/types/Controls/pagePicker.obs.d.ts +16 -0
- package/types/Controls/personPicker.obs.d.ts +14 -0
- package/types/Controls/phoneNumberBox.obs.d.ts +1 -1
- package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +0 -2
- package/types/Controls/popOver.obs.d.ts +1 -1
- package/types/Controls/rockButton.obs.d.ts +9 -0
- package/types/Controls/saveFinancialAccountForm.obs.d.ts +11 -1
- package/types/Controls/scheduleBuilder.obs.d.ts +1 -2
- package/types/Controls/textBox.obs.d.ts +20 -0
- package/types/Controls/toggle.obs.d.ts +1 -1
- package/types/Controls/treeList.obs.d.ts +15 -0
- package/types/Controls/valueList.obs.d.ts +9 -0
- package/types/Core/Controls/financialGateway.d.ts +47 -2
- package/types/Core/Controls/grid.d.ts +1 -1
- package/types/Core/Reporting/fieldFilter.d.ts +22 -0
- package/types/Core/Utilities/domUtils.d.ts +12 -0
- package/types/Directives/dragDrop.d.ts +2 -2
- package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType.d.ts +2 -0
- package/types/Enums/CheckIn/Labels/barcodeFormat.d.ts +11 -0
- package/types/Enums/CheckIn/Labels/ditherMode.d.ts +16 -0
- package/types/Enums/CheckIn/Labels/horizontalTextAlignment.d.ts +13 -0
- package/types/Enums/CheckIn/Labels/labelFieldType.d.ts +31 -0
- package/types/Enums/CheckIn/Labels/labelFormat.d.ts +14 -0
- package/types/Enums/CheckIn/Labels/labelType.d.ts +29 -0
- package/types/Enums/CheckIn/Labels/textCollectionFormat.d.ts +19 -0
- package/types/Enums/CheckIn/Labels/textFieldSubType.d.ts +15 -0
- package/types/Enums/CheckIn/abilityLevelDeterminationMode.d.ts +30 -0
- package/types/Enums/CheckIn/ageRestrictionMode.d.ts +31 -0
- package/types/Enums/CheckIn/alreadyEnrolledMatchingLogic.d.ts +24 -0
- package/types/Enums/CheckIn/autoSelectMode.d.ts +18 -0
- package/types/Enums/CheckIn/familySearchMode.d.ts +24 -0
- package/types/Enums/CheckIn/gradeAndAgeMatchingMode.d.ts +49 -0
- package/types/Enums/CheckIn/kioskCheckInMode.d.ts +11 -0
- package/types/Enums/CheckIn/locationSelectionStrategy.d.ts +35 -0
- package/types/Enums/CheckIn/phoneSearchMode.d.ts +11 -0
- package/types/Enums/CheckIn/successLavaTemplateDisplayMode.d.ts +13 -0
- package/types/Enums/Cms/blockReloadMode.d.ts +22 -0
- package/types/Enums/Cms/mobilePageType.d.ts +13 -0
- package/types/Enums/Cms/siteTypeFlags.d.ts +30 -0
- package/types/Enums/Cms/themeFieldType.d.ts +34 -0
- package/types/Enums/Cms/themeFontAwesomeWeight.d.ts +22 -0
- package/types/Enums/Cms/themeIconSet.d.ts +11 -0
- package/types/Enums/Configuration/databasePlatform.d.ts +24 -0
- package/types/Enums/Controls/slidingDateRangeType.d.ts +1 -1
- package/types/Enums/Crm/ageBracket.d.ts +9 -9
- package/types/Enums/Event/schedulerResourceGroupMemberFilterType.d.ts +4 -1
- package/types/Enums/Group/attendanceRule.d.ts +6 -0
- package/types/Enums/Group/relationshipTrend.d.ts +13 -0
- package/types/Enums/Group/scheduleCoordinatorNotificationType.d.ts +15 -0
- package/types/Enums/Lms/assignTo.d.ts +5 -5
- package/types/Enums/Lms/availabilityCriteria.d.ts +17 -0
- package/types/Enums/Lms/availableDateCalculationMethod.d.ts +9 -9
- package/types/Enums/Lms/communicationMode.d.ts +13 -0
- package/types/Enums/Lms/completionStatus.d.ts +3 -3
- package/types/Enums/Lms/configurationMode.d.ts +2 -2
- package/types/Enums/Lms/dueDateCalculationMethod.d.ts +7 -7
- package/types/Enums/Lms/dueDateCriteria.d.ts +15 -0
- package/types/Enums/Lms/learningCompletionStatus.d.ts +3 -3
- package/types/Enums/Lms/requirementType.d.ts +3 -3
- package/types/Enums/Mobile/mobileNavigationActionType.d.ts +31 -0
- package/types/Enums/Reporting/comparisonType.d.ts +32 -37
- package/types/Enums/Reporting/fieldFilterSourceType.d.ts +2 -0
- package/types/Enums/WebFarm/logSeverity.d.ts +22 -0
- package/types/Enums/WebFarm/logType.d.ts +19 -0
- package/types/FieldTypes/campusField.partial.d.ts +2 -1
- package/types/FieldTypes/definedValueField.partial.d.ts +1 -1
- package/types/FieldTypes/mobileNavigationActionField.partial.d.ts +10 -0
- package/types/FieldTypes/mobileNavigationActionFieldComponents.d.ts +35 -0
- package/types/FieldTypes/phoneNumberFieldComponents.d.ts +3 -4
- package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
- package/types/FieldTypes/valueListFieldComponents.d.ts +4 -7
- package/types/PageState/state.d.ts +1 -0
- package/types/SystemGuids/binaryFiletype.d.ts +2 -0
- package/types/SystemGuids/blockType.d.ts +4 -0
- package/types/SystemGuids/category.d.ts +4 -0
- package/types/SystemGuids/definedType.d.ts +10 -0
- package/types/SystemGuids/definedValue.d.ts +12 -0
- package/types/SystemGuids/entityType.d.ts +42 -0
- package/types/SystemGuids/fieldType.d.ts +2 -0
- package/types/SystemGuids/groupType.d.ts +2 -0
- package/types/SystemGuids/interactionChannel.d.ts +2 -0
- package/types/SystemGuids/layout.d.ts +2 -0
- package/types/SystemGuids/noteType.d.ts +2 -0
- package/types/SystemGuids/serviceJob.d.ts +19 -0
- package/types/SystemGuids/site.d.ts +2 -0
- package/types/SystemGuids/systemCommunication.d.ts +4 -0
- package/types/Templates/rockBlock.partial.d.ts +2 -2
- package/types/Templates/rockPage.d.ts +13 -1
- package/types/Types/Controls/grid.d.ts +34 -0
- package/types/Types/Utility/browserBus.d.ts +63 -0
- package/types/Utility/block.d.ts +43 -3
- package/types/Utility/browserBus.d.ts +207 -0
- package/types/Utility/dialogs.d.ts +42 -0
- package/types/Utility/file.d.ts +8 -0
- package/types/Utility/localeDateFormatter.d.ts +52 -0
- package/types/Utility/numberUtils.d.ts +22 -2
- package/types/Utility/objectUtils.d.ts +18 -0
- package/types/Utility/page.d.ts +1 -0
- package/types/Utility/regexPatterns.d.ts +27 -0
- package/types/Utility/rockCurrency.d.ts +129 -0
- package/types/Utility/rockDateTime.d.ts +26 -1
- package/types/Utility/stringUtils.d.ts +11 -4
- package/types/Utility/treeItemProviders.d.ts +5 -0
- package/types/Utility/util.d.ts +40 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/blockContextInfoBag.d.ts +37 -0
- package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityDataBag.d.ts → Administration/PageProperties/copyPageRequestBag.d.ts} +6 -4
- package/types/ViewModels/Blocks/Administration/PageProperties/deletePageRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesBag.d.ts +163 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesOptionsBag.d.ts +51 -0
- package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityDonationBag.d.ts → Administration/PageProperties/pagePropertiesValidationResponseBag.d.ts} +8 -8
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/experimentalSettingsConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/familyRulesSettingsConfigurationBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/generalConfigurationBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/observabilityConfigurationBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/saveConfigurationResponseBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/systemConfigurationInitializationBox.d.ts +69 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/uiSettingsConfigurationBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/webConfigConfigurationBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Bus/BusStatus/busStatusBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Bus/BusStatus/busStatusOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Bus/QueueList/queueListBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Bus/QueueList/queueListOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/CheckIn/AttendanceList/attendanceListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/activeAttendanceBag.d.ts +42 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/editFamilyResponseBag.d.ts +101 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/getCurrentAttendanceResponseBag.d.ts +38 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/getScheduledLocationsResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/idMapBag.d.ts +39 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/kioskConfigurationBag.d.ts +41 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/locationStatusItemBag.d.ts +34 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/printResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/promotionBag.d.ts +34 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/reprintAttendanceBag.d.ts +51 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/saveFamilyOptionsBag.d.ts +48 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/saveFamilyResponseBag.d.ts +46 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/savedKioskConfigurationBag.d.ts +49 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/scheduledLocationBag.d.ts +52 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/subscribeToRealTimeResponseBag.d.ts +33 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +52 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInScheduleBuilder/checkInScheduleBuilderDataBag.d.ts +34 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInScheduleBuilder/checkInScheduleBuilderOptionsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInScheduleBuilder/cloneScheduleBag.d.ts +33 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInScheduleBuilder/groupLocationsBag.d.ts +49 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelBag.d.ts +96 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelList/checkInLabelListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInSimulator/checkInSimulatorOptionsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/dataSourceBag.d.ts +74 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/iconItemBag.d.ts +43 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +70 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDetailBag.d.ts +40 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/customCheckInSettingsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/customSettingsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/customSettingsOptionsBag.d.ts +38 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeListBox.d.ts +52 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeList/lavaShortcodeListBox.d.ts +40 -0
- package/types/ViewModels/Blocks/Cms/LayoutList/layoutListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +14 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/scheduledRedirectBag.d.ts +58 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/utmSettingsBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Cms/PersistedDatasetList/persistedDatasetListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/ThemeDetail/themeBag.d.ts +81 -0
- package/types/ViewModels/Blocks/Cms/ThemeDetail/themeDetailOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/ThemeDetail/themeFieldBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessPersonAddressBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessSavedSettingsBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Communication/SystemCommunicationList/systemCommunicationListOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/AuthClientDetail/authClientBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Core/AuthClientDetail/authClientDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/AuthClientDetail/authClientScopeBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileDetailOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +7 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusTopicBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +3 -3
- package/types/ViewModels/Blocks/Core/LocationDetail/addressStandardizationResultBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/locationBag.d.ts +11 -3
- package/types/ViewModels/Blocks/Core/LocationDetail/locationDetailOptionsBag.d.ts +20 -0
- package/types/ViewModels/Blocks/Core/LogViewer/rockLogEventsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/NoteList/prayerCommentListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +1 -1
- package/types/ViewModels/Blocks/Core/PersonSignalList/personSignalBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Core/PersonSignalList/personSignalListOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/ScheduleCategoryExclusionList/scheduleCategoryExclusionBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Core/ScheduleCategoryExclusionList/scheduleCategoryExclusionListOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/getPdfPreviewUrlRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +7 -1
- package/types/ViewModels/Blocks/Core/TaggedItemList/taggedItemListBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Core/TaggedItemList/taggedItemListOptionsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +6 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/accountSummaryBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/contributionStatementBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialAccountBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialPaymentDetailBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialPersonSavedAccountBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialPledgeBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialScheduledTransactionBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialScheduledTransactionDetailBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/givingConfigurationInitializationBag.d.ts +79 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/givingConfigurationOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/personAliasBag.d.ts +36 -0
- package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityPersonBag.d.ts → Crm/PersonDetail/GivingConfiguration/personBag.d.ts} +7 -10
- package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/textToGiveSettingsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/PhotoVerifyList/photoVerifyListOptionsBag.d.ts +27 -0
- package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptBag.d.ts +2 -2
- package/types/ViewModels/Blocks/Engagement/CampaignList/campaignListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +1 -1
- package/types/ViewModels/Blocks/Engagement/StreakList/streakListOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Engagement/StreakMapEditor/streakMapEditorBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionList/streakTypeExclusionListOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarDetailOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemDetailOptionsBag.d.ts +5 -0
- package/types/ViewModels/Blocks/Event/EventItemOccurrenceList/eventItemOccurrenceListOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryArgsBag.d.ts +8 -1
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryCostSummaryBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryCreatePaymentPlanRequestBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFormFieldBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryGetScheduledPaymentDatesRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryInitializationBox.d.ts +31 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryPaymentPlanBag.d.ts +24 -3
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntrySessionBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntrySuccessBag.d.ts +9 -0
- package/types/ViewModels/Blocks/Event/RegistrationInstanceFeeList/registrationInstanceFeeListOptionsBag.d.ts +0 -8
- package/types/ViewModels/Blocks/Event/RegistrationInstanceLinkageList/registrationInstanceLinkageListOptionsBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Event/RegistrationInstanceList/registrationInstanceListOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Event/RegistrationInstancePaymentList/registrationInstancePaymentListOptionsBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Finance/BenevolenceRequestList/benevolenceRequestListOptionsBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Finance/BenevolenceRequestList/benevolenceResultBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/BenevolenceTypeList/benevolenceTypeListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailBag.d.ts +10 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailOptionsBag.d.ts +2 -3
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryPhoneNumberBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeList/financialPledgeListBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeList/financialPledgeListOptionsBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Finance/FundraisingDonationList/fundraisingDonationListOptionsBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Finance/FundraisingList/fundraisingListInitializationBox.d.ts +28 -0
- package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityPersonDetailsBag.d.ts → Finance/VolunteerGenerosityAnalysis/volunteerGenerosityDataBag.d.ts} +30 -3
- package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerositySetupBag.d.ts → Finance/VolunteerGenerosityAnalysis/volunteerGenerosityInitializationBox.d.ts} +6 -1
- package/types/ViewModels/Blocks/Finance/VolunteerGenerosityAnalysis/volunteerGenerosityPersonBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Fundraising/FundraisingDonationList/fundraisingDonationListOptionsBag.d.ts +5 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailInitializationBox.d.ts +6 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpRequestBag.d.ts +0 -3
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpResponseBag.d.ts +1 -9
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerAppliedFiltersBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerFiltersBag.d.ts +8 -5
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGroupLocationScheduleNamesBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerInitializationBox.d.ts +6 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/{groupSchedulerSendNowResponseBag.d.ts → groupSchedulerSendConfirmationsResponseBag.d.ts} +1 -1
- package/types/ViewModels/Blocks/Prayer/PrayerCommentList/prayerCommentListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +9 -3
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +1 -1
- package/types/ViewModels/Blocks/Reporting/DynamicData/columnConfigurationBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataCustomSettingsBag.d.ts +114 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataCustomSettingsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataInitializationBox.d.ts +40 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/getDynamicDataRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/getDynamicDataResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +101 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/lavaTemplateResultsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/reloadColumnsRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/reloadColumnsResponseBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/editableFilterBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/getUpdatedFiltersRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/getUpdatedFiltersResponseBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/pageParameterFilterCustomSettingsBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/pageParameterFilterCustomSettingsOptionsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/pageParameterFilterInitializationBox.d.ts +88 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/updateFiltersRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Reporting/PageParameterFilter/updateFiltersResponseBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +13 -0
- package/types/ViewModels/Blocks/Security/AuthClientList/authClientListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Security/AuthScopeList/authScopeListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountViewBox.d.ts +6 -6
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsResultBag.d.ts +1 -1
- package/types/ViewModels/Blocks/Security/RestKeyList/restKeyListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Security/SecurityChangeAuditList/securityChangeAuditListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Security/UserLoginList/authenticationComponentBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/UserLoginList/userLoginBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Security/UserLoginList/userLoginListOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Tv/RokuApplicationDetail/rokuApplicationBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Tv/RokuApplicationDetail/rokuApplicationDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Tv/RokuPageDetail/rokuPageBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Tv/RokuPageDetail/rokuPageDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Tv/TvApplicationList/tvApplicationOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Tv/TvPageList/tvPageListOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeBag.d.ts +2 -2
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeLogList/webFarmNodeLogListOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +12 -5
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsDetailOptionsBag.d.ts +1 -0
- package/types/ViewModels/Blocks/Workflow/WorkflowList/workflowListOptionsBag.d.ts +39 -0
- package/types/ViewModels/Blocks/blockActionContextBag.d.ts +9 -0
- package/types/ViewModels/CheckIn/Labels/attendeePhotoFieldConfigurationBag.d.ts +37 -0
- package/types/ViewModels/CheckIn/Labels/barcodeFieldConfigurationBag.d.ts +40 -0
- package/types/ViewModels/CheckIn/Labels/clientLabelBag.d.ts +37 -0
- package/types/ViewModels/CheckIn/Labels/customFieldInputBag.d.ts +37 -0
- package/types/ViewModels/CheckIn/Labels/dataFormatterOptionBag.d.ts +43 -0
- package/types/ViewModels/CheckIn/Labels/designedLabelBag.d.ts +42 -0
- package/types/ViewModels/CheckIn/Labels/ellipseFieldConfigurationBag.d.ts +40 -0
- package/types/ViewModels/CheckIn/Labels/iconFieldConfigurationBag.d.ts +36 -0
- package/types/ViewModels/CheckIn/Labels/imageFieldConfigurationBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/Labels/labelFieldBag.d.ts +99 -0
- package/types/ViewModels/CheckIn/Labels/legacyClientLabelBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/Labels/lineFieldConfigurationBag.d.ts +34 -0
- package/types/ViewModels/CheckIn/Labels/rectangleFieldConfigurationBag.d.ts +47 -0
- package/types/ViewModels/CheckIn/Labels/textFieldConfigurationBag.d.ts +106 -0
- package/types/ViewModels/CheckIn/abilityLevelOpportunityBag.d.ts +48 -0
- package/types/ViewModels/CheckIn/achievementBag.d.ts +61 -0
- package/types/ViewModels/CheckIn/areaOpportunityBag.d.ts +39 -0
- package/types/ViewModels/CheckIn/attendanceBag.d.ts +50 -0
- package/types/ViewModels/CheckIn/attendanceRequestBag.d.ts +48 -0
- package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +69 -0
- package/types/ViewModels/CheckIn/attendeeBag.d.ts +52 -0
- package/types/ViewModels/CheckIn/campusBag.d.ts +36 -0
- package/types/ViewModels/CheckIn/checkInItemBag.d.ts +31 -0
- package/types/ViewModels/CheckIn/checkInResultBag.d.ts +33 -0
- package/types/ViewModels/CheckIn/checkoutResultBag.d.ts +36 -0
- package/types/ViewModels/CheckIn/cloudPrintProxyConnectionStatusBag.d.ts +40 -0
- package/types/ViewModels/CheckIn/cloudPrintProxyStatusBag.d.ts +39 -0
- package/types/ViewModels/CheckIn/configurationAreaBag.d.ts +38 -0
- package/types/ViewModels/CheckIn/configurationTemplateBag.d.ts +131 -0
- package/types/ViewModels/CheckIn/familyBag.d.ts +42 -0
- package/types/ViewModels/CheckIn/familyMemberBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/groupOpportunityBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/kioskBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/kioskStatusBag.d.ts +58 -0
- package/types/ViewModels/CheckIn/locationAndScheduleBag.d.ts +35 -0
- package/types/ViewModels/CheckIn/locationOpportunityBag.d.ts +37 -0
- package/types/ViewModels/CheckIn/opportunityCollectionBag.d.ts +49 -0
- package/types/ViewModels/CheckIn/opportunitySelectionBag.d.ts +45 -0
- package/types/ViewModels/CheckIn/personBag.d.ts +90 -0
- package/types/ViewModels/CheckIn/recordedAttendanceBag.d.ts +46 -0
- package/types/ViewModels/CheckIn/registrationFamilyBag.d.ts +46 -0
- package/types/ViewModels/CheckIn/registrationPersonBag.d.ts +108 -0
- package/types/ViewModels/CheckIn/savedCheckInConfigurationBag.d.ts +45 -0
- package/types/ViewModels/CheckIn/savedCheckInConfigurationSettingsBag.d.ts +40 -0
- package/types/ViewModels/CheckIn/scheduleOpportunityBag.d.ts +31 -0
- package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +17 -0
- package/types/ViewModels/Controls/mobileNavigationActionBag.d.ts +37 -0
- package/types/ViewModels/Controls/phoneNumberBoxWithSmsControlBag.d.ts +1 -1
- package/types/ViewModels/Controls/universalItemSearchPickerItemBag.d.ts +0 -1
- package/types/ViewModels/Core/Grid/dynamicFieldDefinitionBag.d.ts +66 -0
- package/types/ViewModels/Core/Grid/gridDefinitionBag.d.ts +11 -3
- package/types/ViewModels/Core/Grid/personFieldBag.d.ts +6 -0
- package/types/ViewModels/Core/notificationMessageMetadataBag.d.ts +2 -4
- package/types/ViewModels/Crm/currentPersonBag.d.ts +11 -0
- package/types/ViewModels/Event/attendanceUpdatedMessageBag.d.ts +15 -2
- package/types/ViewModels/Reporting/fieldFilterGroupBag.d.ts +2 -1
- package/types/ViewModels/Reporting/fieldFilterPublicPropertyBag.d.ts +52 -0
- package/types/ViewModels/Reporting/fieldFilterRuleBag.d.ts +17 -2
- package/types/ViewModels/Reporting/fieldFilterSourceBag.d.ts +17 -0
- package/types/ViewModels/Rest/CheckIn/attendeeOpportunitiesOptionsBag.d.ts +53 -0
- package/types/ViewModels/Rest/CheckIn/attendeeOpportunitiesResponseBag.d.ts +36 -0
- package/types/ViewModels/{Blocks/Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityPersonDataBag.d.ts → Rest/CheckIn/checkoutOptionsBag.d.ts} +21 -10
- package/types/ViewModels/Rest/CheckIn/checkoutResponseBag.d.ts +39 -0
- package/types/ViewModels/Rest/CheckIn/configurationOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/CheckIn/configurationResponseBag.d.ts +34 -0
- package/types/ViewModels/Rest/CheckIn/confirmAttendanceOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/CheckIn/confirmAttendanceResponseBag.d.ts +40 -0
- package/types/ViewModels/Rest/CheckIn/familyMembersOptionsBag.d.ts +50 -0
- package/types/ViewModels/Rest/CheckIn/familyMembersResponseBag.d.ts +52 -0
- package/types/ViewModels/Rest/CheckIn/kioskStatusOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/CheckIn/kioskStatusResponseBag.d.ts +30 -0
- package/types/ViewModels/Rest/CheckIn/saveAttendanceOptionsBag.d.ts +46 -0
- package/types/ViewModels/Rest/CheckIn/saveAttendanceResponseBag.d.ts +40 -0
- package/types/ViewModels/Rest/CheckIn/searchForFamiliesOptionsBag.d.ts +53 -0
- package/types/ViewModels/Rest/CheckIn/searchForFamiliesResponseBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationResultsBag.d.ts +3 -0
- package/types/ViewModels/Utility/entityAuditBag.d.ts +6 -0
- package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +1 -1
- package/types/Utility/bus.d.ts +0 -23
package/package.json
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardCellProps>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardCellProps>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardSkeletonCellProps>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
19
19
|
default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps>>, {}>;
|
|
20
20
|
};
|
|
21
|
+
columnType: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
26
|
attributes: {
|
|
23
27
|
type: PropType<AttributeFieldDefinitionBag[]>;
|
|
@@ -35,10 +39,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
39
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
36
40
|
default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps>>, {}>;
|
|
37
41
|
};
|
|
42
|
+
columnType: {
|
|
43
|
+
type: PropType<string>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
38
46
|
}>>, {
|
|
39
47
|
attributes: AttributeFieldDefinitionBag[];
|
|
40
48
|
filter: ColumnFilter;
|
|
41
49
|
__attributeColumns: boolean;
|
|
42
50
|
skeletonComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
51
|
+
columnType: string;
|
|
43
52
|
}>;
|
|
44
53
|
export default _default;
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
type: PropType<ExportValueFunction>;
|
|
19
19
|
default: typeof getExportValue;
|
|
20
20
|
};
|
|
21
|
+
columnType: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
name: {
|
|
22
26
|
type: PropType<string>;
|
|
23
27
|
default: "";
|
|
@@ -82,6 +86,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
86
|
type: PropType<string>;
|
|
83
87
|
required: false;
|
|
84
88
|
};
|
|
89
|
+
disableSort: {
|
|
90
|
+
type: PropType<boolean>;
|
|
91
|
+
default: false;
|
|
92
|
+
};
|
|
85
93
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
94
|
formatComponent: {
|
|
87
95
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
@@ -91,6 +99,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
99
|
type: PropType<ExportValueFunction>;
|
|
92
100
|
default: typeof getExportValue;
|
|
93
101
|
};
|
|
102
|
+
columnType: {
|
|
103
|
+
type: PropType<string>;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
94
106
|
name: {
|
|
95
107
|
type: PropType<string>;
|
|
96
108
|
default: "";
|
|
@@ -155,10 +167,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
167
|
type: PropType<string>;
|
|
156
168
|
required: false;
|
|
157
169
|
};
|
|
170
|
+
disableSort: {
|
|
171
|
+
type: PropType<boolean>;
|
|
172
|
+
default: false;
|
|
173
|
+
};
|
|
158
174
|
}>>, {
|
|
159
175
|
name: string;
|
|
176
|
+
columnType: string;
|
|
160
177
|
formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
161
178
|
exportValue: ExportValueFunction;
|
|
162
179
|
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
180
|
+
disableSort: boolean;
|
|
163
181
|
}>;
|
|
164
182
|
export default _default;
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import { Component, PropType } from "vue";
|
|
2
|
+
import { IGridState } from "@Obsidian/Types/Controls/grid";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* Called when the button has been clicked.
|
|
6
|
+
*/
|
|
7
|
+
onClick: {
|
|
8
|
+
type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* The icon CSS class to use as the content for the button.
|
|
13
|
+
*/
|
|
14
|
+
iconClass: {
|
|
15
|
+
type: PropType<string>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
headerClass: {
|
|
19
|
+
type: PropType<string>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
itemClass: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
width: {
|
|
27
|
+
type: PropType<string>;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
formatComponent: {
|
|
31
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
32
|
+
default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardCellProps>>, {}>;
|
|
33
|
+
};
|
|
34
|
+
columnType: {
|
|
35
|
+
type: PropType<string>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
name: {
|
|
39
|
+
type: PropType<string>;
|
|
40
|
+
default: "";
|
|
41
|
+
};
|
|
42
|
+
title: {
|
|
43
|
+
type: PropType<string>;
|
|
44
|
+
required: false;
|
|
45
|
+
};
|
|
46
|
+
field: {
|
|
47
|
+
type: PropType<string>;
|
|
48
|
+
required: false;
|
|
49
|
+
};
|
|
50
|
+
quickFilterValue: {
|
|
51
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
52
|
+
required: false;
|
|
53
|
+
};
|
|
54
|
+
sortField: {
|
|
55
|
+
type: PropType<string>;
|
|
56
|
+
required: false;
|
|
57
|
+
};
|
|
58
|
+
sortValue: {
|
|
59
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
|
|
60
|
+
required: false;
|
|
61
|
+
};
|
|
62
|
+
filter: {
|
|
63
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
|
|
64
|
+
required: false;
|
|
65
|
+
};
|
|
66
|
+
filterValue: {
|
|
67
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
|
|
68
|
+
required: false;
|
|
69
|
+
};
|
|
70
|
+
exportValue: {
|
|
71
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
|
|
72
|
+
required: false;
|
|
73
|
+
};
|
|
74
|
+
headerComponent: {
|
|
75
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
76
|
+
required: false;
|
|
77
|
+
};
|
|
78
|
+
skeletonComponent: {
|
|
79
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
80
|
+
required: false;
|
|
81
|
+
};
|
|
82
|
+
hideOnScreen: {
|
|
83
|
+
type: PropType<boolean>;
|
|
84
|
+
required: false;
|
|
85
|
+
};
|
|
86
|
+
excludeFromExport: {
|
|
87
|
+
type: PropType<boolean>;
|
|
88
|
+
required: false;
|
|
89
|
+
};
|
|
90
|
+
visiblePriority: {
|
|
91
|
+
type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
|
|
92
|
+
default: "xs";
|
|
93
|
+
};
|
|
94
|
+
disableSort: {
|
|
95
|
+
type: PropType<boolean>;
|
|
96
|
+
default: false;
|
|
97
|
+
};
|
|
98
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
99
|
+
/**
|
|
100
|
+
* Called when the button has been clicked.
|
|
101
|
+
*/
|
|
102
|
+
onClick: {
|
|
103
|
+
type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
|
|
104
|
+
required: false;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* The icon CSS class to use as the content for the button.
|
|
108
|
+
*/
|
|
109
|
+
iconClass: {
|
|
110
|
+
type: PropType<string>;
|
|
111
|
+
required: true;
|
|
112
|
+
};
|
|
113
|
+
headerClass: {
|
|
114
|
+
type: PropType<string>;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
itemClass: {
|
|
118
|
+
type: PropType<string>;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
width: {
|
|
122
|
+
type: PropType<string>;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
formatComponent: {
|
|
126
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
127
|
+
default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardCellProps>>, {}>;
|
|
128
|
+
};
|
|
129
|
+
columnType: {
|
|
130
|
+
type: PropType<string>;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
name: {
|
|
134
|
+
type: PropType<string>;
|
|
135
|
+
default: "";
|
|
136
|
+
};
|
|
137
|
+
title: {
|
|
138
|
+
type: PropType<string>;
|
|
139
|
+
required: false;
|
|
140
|
+
};
|
|
141
|
+
field: {
|
|
142
|
+
type: PropType<string>;
|
|
143
|
+
required: false;
|
|
144
|
+
};
|
|
145
|
+
quickFilterValue: {
|
|
146
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
147
|
+
required: false;
|
|
148
|
+
};
|
|
149
|
+
sortField: {
|
|
150
|
+
type: PropType<string>;
|
|
151
|
+
required: false;
|
|
152
|
+
};
|
|
153
|
+
sortValue: {
|
|
154
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
|
|
155
|
+
required: false;
|
|
156
|
+
};
|
|
157
|
+
filter: {
|
|
158
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
|
|
159
|
+
required: false;
|
|
160
|
+
};
|
|
161
|
+
filterValue: {
|
|
162
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
|
|
163
|
+
required: false;
|
|
164
|
+
};
|
|
165
|
+
exportValue: {
|
|
166
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
|
|
167
|
+
required: false;
|
|
168
|
+
};
|
|
169
|
+
headerComponent: {
|
|
170
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
171
|
+
required: false;
|
|
172
|
+
};
|
|
173
|
+
skeletonComponent: {
|
|
174
|
+
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
175
|
+
required: false;
|
|
176
|
+
};
|
|
177
|
+
hideOnScreen: {
|
|
178
|
+
type: PropType<boolean>;
|
|
179
|
+
required: false;
|
|
180
|
+
};
|
|
181
|
+
excludeFromExport: {
|
|
182
|
+
type: PropType<boolean>;
|
|
183
|
+
required: false;
|
|
184
|
+
};
|
|
185
|
+
visiblePriority: {
|
|
186
|
+
type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
|
|
187
|
+
default: "xs";
|
|
188
|
+
};
|
|
189
|
+
disableSort: {
|
|
190
|
+
type: PropType<boolean>;
|
|
191
|
+
default: false;
|
|
192
|
+
};
|
|
193
|
+
}>>, {
|
|
194
|
+
name: string;
|
|
195
|
+
width: string;
|
|
196
|
+
headerClass: string;
|
|
197
|
+
columnType: string;
|
|
198
|
+
formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
199
|
+
itemClass: string;
|
|
200
|
+
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
201
|
+
disableSort: boolean;
|
|
202
|
+
}>;
|
|
203
|
+
/**
|
|
204
|
+
* A column that displays a single button with an icon on it.
|
|
205
|
+
*/
|
|
206
|
+
export default _default;
|
|
@@ -1,151 +1,170 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
columnType: {
|
|
4
|
+
type: PropType<string>;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
2
7
|
name: {
|
|
3
|
-
type:
|
|
8
|
+
type: PropType<string>;
|
|
4
9
|
default: "";
|
|
5
10
|
};
|
|
6
11
|
title: {
|
|
7
|
-
type:
|
|
12
|
+
type: PropType<string>;
|
|
8
13
|
required: false;
|
|
9
14
|
};
|
|
10
15
|
field: {
|
|
11
|
-
type:
|
|
16
|
+
type: PropType<string>;
|
|
12
17
|
required: false;
|
|
13
18
|
};
|
|
14
19
|
quickFilterValue: {
|
|
15
|
-
type:
|
|
20
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
16
21
|
required: false;
|
|
17
22
|
};
|
|
18
23
|
sortField: {
|
|
19
|
-
type:
|
|
24
|
+
type: PropType<string>;
|
|
20
25
|
required: false;
|
|
21
26
|
};
|
|
22
27
|
sortValue: {
|
|
23
|
-
type:
|
|
28
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
|
|
24
29
|
required: false;
|
|
25
30
|
};
|
|
26
31
|
filter: {
|
|
27
|
-
type:
|
|
32
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
|
|
28
33
|
required: false;
|
|
29
34
|
};
|
|
30
35
|
filterValue: {
|
|
31
|
-
type:
|
|
36
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
|
|
32
37
|
required: false;
|
|
33
38
|
};
|
|
34
39
|
exportValue: {
|
|
35
|
-
type:
|
|
40
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
|
|
36
41
|
required: false;
|
|
37
42
|
};
|
|
38
43
|
headerClass: {
|
|
39
|
-
type:
|
|
44
|
+
type: PropType<string>;
|
|
40
45
|
required: false;
|
|
41
46
|
};
|
|
42
47
|
itemClass: {
|
|
43
|
-
type:
|
|
48
|
+
type: PropType<string>;
|
|
44
49
|
required: false;
|
|
45
50
|
};
|
|
46
51
|
formatComponent: {
|
|
47
|
-
type:
|
|
52
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
48
53
|
required: false;
|
|
49
54
|
};
|
|
50
55
|
headerComponent: {
|
|
51
|
-
type:
|
|
56
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
52
57
|
required: false;
|
|
53
58
|
};
|
|
54
59
|
skeletonComponent: {
|
|
55
|
-
type:
|
|
60
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
56
61
|
required: false;
|
|
57
62
|
};
|
|
58
63
|
hideOnScreen: {
|
|
59
|
-
type:
|
|
64
|
+
type: PropType<boolean>;
|
|
60
65
|
required: false;
|
|
61
66
|
};
|
|
62
67
|
excludeFromExport: {
|
|
63
|
-
type:
|
|
68
|
+
type: PropType<boolean>;
|
|
64
69
|
required: false;
|
|
65
70
|
};
|
|
66
71
|
visiblePriority: {
|
|
67
|
-
type:
|
|
72
|
+
type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
|
|
68
73
|
default: "xs";
|
|
69
74
|
};
|
|
70
75
|
width: {
|
|
71
|
-
type:
|
|
76
|
+
type: PropType<string>;
|
|
72
77
|
required: false;
|
|
73
78
|
};
|
|
79
|
+
disableSort: {
|
|
80
|
+
type: PropType<boolean>;
|
|
81
|
+
default: false;
|
|
82
|
+
};
|
|
74
83
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
columnType: {
|
|
85
|
+
type: PropType<string>;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
75
88
|
name: {
|
|
76
|
-
type:
|
|
89
|
+
type: PropType<string>;
|
|
77
90
|
default: "";
|
|
78
91
|
};
|
|
79
92
|
title: {
|
|
80
|
-
type:
|
|
93
|
+
type: PropType<string>;
|
|
81
94
|
required: false;
|
|
82
95
|
};
|
|
83
96
|
field: {
|
|
84
|
-
type:
|
|
97
|
+
type: PropType<string>;
|
|
85
98
|
required: false;
|
|
86
99
|
};
|
|
87
100
|
quickFilterValue: {
|
|
88
|
-
type:
|
|
101
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
89
102
|
required: false;
|
|
90
103
|
};
|
|
91
104
|
sortField: {
|
|
92
|
-
type:
|
|
105
|
+
type: PropType<string>;
|
|
93
106
|
required: false;
|
|
94
107
|
};
|
|
95
108
|
sortValue: {
|
|
96
|
-
type:
|
|
109
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
|
|
97
110
|
required: false;
|
|
98
111
|
};
|
|
99
112
|
filter: {
|
|
100
|
-
type:
|
|
113
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
|
|
101
114
|
required: false;
|
|
102
115
|
};
|
|
103
116
|
filterValue: {
|
|
104
|
-
type:
|
|
117
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
|
|
105
118
|
required: false;
|
|
106
119
|
};
|
|
107
120
|
exportValue: {
|
|
108
|
-
type:
|
|
121
|
+
type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
|
|
109
122
|
required: false;
|
|
110
123
|
};
|
|
111
124
|
headerClass: {
|
|
112
|
-
type:
|
|
125
|
+
type: PropType<string>;
|
|
113
126
|
required: false;
|
|
114
127
|
};
|
|
115
128
|
itemClass: {
|
|
116
|
-
type:
|
|
129
|
+
type: PropType<string>;
|
|
117
130
|
required: false;
|
|
118
131
|
};
|
|
119
132
|
formatComponent: {
|
|
120
|
-
type:
|
|
133
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
121
134
|
required: false;
|
|
122
135
|
};
|
|
123
136
|
headerComponent: {
|
|
124
|
-
type:
|
|
137
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
125
138
|
required: false;
|
|
126
139
|
};
|
|
127
140
|
skeletonComponent: {
|
|
128
|
-
type:
|
|
141
|
+
type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
129
142
|
required: false;
|
|
130
143
|
};
|
|
131
144
|
hideOnScreen: {
|
|
132
|
-
type:
|
|
145
|
+
type: PropType<boolean>;
|
|
133
146
|
required: false;
|
|
134
147
|
};
|
|
135
148
|
excludeFromExport: {
|
|
136
|
-
type:
|
|
149
|
+
type: PropType<boolean>;
|
|
137
150
|
required: false;
|
|
138
151
|
};
|
|
139
152
|
visiblePriority: {
|
|
140
|
-
type:
|
|
153
|
+
type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
|
|
141
154
|
default: "xs";
|
|
142
155
|
};
|
|
143
156
|
width: {
|
|
144
|
-
type:
|
|
157
|
+
type: PropType<string>;
|
|
145
158
|
required: false;
|
|
146
159
|
};
|
|
160
|
+
disableSort: {
|
|
161
|
+
type: PropType<boolean>;
|
|
162
|
+
default: false;
|
|
163
|
+
};
|
|
147
164
|
}>>, {
|
|
148
165
|
name: string;
|
|
166
|
+
columnType: string;
|
|
149
167
|
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
168
|
+
disableSort: boolean;
|
|
150
169
|
}>;
|
|
151
170
|
export default _default;
|
|
@@ -22,6 +22,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
type: PropType<ExportValueFunction>;
|
|
23
23
|
default: typeof getExportValue;
|
|
24
24
|
};
|
|
25
|
+
columnType: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
25
29
|
name: {
|
|
26
30
|
type: PropType<string>;
|
|
27
31
|
default: "";
|
|
@@ -82,6 +86,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
86
|
type: PropType<string>;
|
|
83
87
|
required: false;
|
|
84
88
|
};
|
|
89
|
+
disableSort: {
|
|
90
|
+
type: PropType<boolean>;
|
|
91
|
+
default: false;
|
|
92
|
+
};
|
|
85
93
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
94
|
formatComponent: {
|
|
87
95
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
@@ -95,6 +103,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
103
|
type: PropType<ExportValueFunction>;
|
|
96
104
|
default: typeof getExportValue;
|
|
97
105
|
};
|
|
106
|
+
columnType: {
|
|
107
|
+
type: PropType<string>;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
98
110
|
name: {
|
|
99
111
|
type: PropType<string>;
|
|
100
112
|
default: "";
|
|
@@ -155,11 +167,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
167
|
type: PropType<string>;
|
|
156
168
|
required: false;
|
|
157
169
|
};
|
|
170
|
+
disableSort: {
|
|
171
|
+
type: PropType<boolean>;
|
|
172
|
+
default: false;
|
|
173
|
+
};
|
|
158
174
|
}>>, {
|
|
159
175
|
name: string;
|
|
160
176
|
skeletonComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
177
|
+
columnType: string;
|
|
161
178
|
formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
162
179
|
exportValue: ExportValueFunction;
|
|
163
180
|
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
181
|
+
disableSort: boolean;
|
|
164
182
|
}>;
|
|
165
183
|
export default _default;
|
|
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
type: PropType<ExportValueFunction>;
|
|
38
38
|
default: typeof getExportValue;
|
|
39
39
|
};
|
|
40
|
+
columnType: {
|
|
41
|
+
type: PropType<string>;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
40
44
|
name: {
|
|
41
45
|
type: PropType<string>;
|
|
42
46
|
default: "";
|
|
@@ -93,6 +97,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
97
|
type: PropType<string>;
|
|
94
98
|
required: false;
|
|
95
99
|
};
|
|
100
|
+
disableSort: {
|
|
101
|
+
type: PropType<boolean>;
|
|
102
|
+
default: false;
|
|
103
|
+
};
|
|
96
104
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
105
|
formatComponent: {
|
|
98
106
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
@@ -110,6 +118,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
110
118
|
type: PropType<ExportValueFunction>;
|
|
111
119
|
default: typeof getExportValue;
|
|
112
120
|
};
|
|
121
|
+
columnType: {
|
|
122
|
+
type: PropType<string>;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
113
125
|
name: {
|
|
114
126
|
type: PropType<string>;
|
|
115
127
|
default: "";
|
|
@@ -166,12 +178,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
166
178
|
type: PropType<string>;
|
|
167
179
|
required: false;
|
|
168
180
|
};
|
|
181
|
+
disableSort: {
|
|
182
|
+
type: PropType<boolean>;
|
|
183
|
+
default: false;
|
|
184
|
+
};
|
|
169
185
|
}>>, {
|
|
170
186
|
name: string;
|
|
171
187
|
quickFilterValue: string | QuickFilterValueFunction;
|
|
172
188
|
skeletonComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
189
|
+
columnType: string;
|
|
173
190
|
formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
174
191
|
exportValue: ExportValueFunction;
|
|
175
192
|
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
193
|
+
disableSort: boolean;
|
|
176
194
|
}>;
|
|
177
195
|
export default _default;
|
|
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
type: PropType<ExportValueFunction>;
|
|
38
38
|
default: typeof getExportValue;
|
|
39
39
|
};
|
|
40
|
+
columnType: {
|
|
41
|
+
type: PropType<string>;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
40
44
|
name: {
|
|
41
45
|
type: PropType<string>;
|
|
42
46
|
default: "";
|
|
@@ -93,6 +97,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
97
|
type: PropType<string>;
|
|
94
98
|
required: false;
|
|
95
99
|
};
|
|
100
|
+
disableSort: {
|
|
101
|
+
type: PropType<boolean>;
|
|
102
|
+
default: false;
|
|
103
|
+
};
|
|
96
104
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
105
|
formatComponent: {
|
|
98
106
|
type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
@@ -110,6 +118,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
110
118
|
type: PropType<ExportValueFunction>;
|
|
111
119
|
default: typeof getExportValue;
|
|
112
120
|
};
|
|
121
|
+
columnType: {
|
|
122
|
+
type: PropType<string>;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
113
125
|
name: {
|
|
114
126
|
type: PropType<string>;
|
|
115
127
|
default: "";
|
|
@@ -166,12 +178,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
166
178
|
type: PropType<string>;
|
|
167
179
|
required: false;
|
|
168
180
|
};
|
|
181
|
+
disableSort: {
|
|
182
|
+
type: PropType<boolean>;
|
|
183
|
+
default: false;
|
|
184
|
+
};
|
|
169
185
|
}>>, {
|
|
170
186
|
name: string;
|
|
171
187
|
quickFilterValue: string | QuickFilterValueFunction;
|
|
172
188
|
skeletonComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
189
|
+
columnType: string;
|
|
173
190
|
formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
174
191
|
exportValue: ExportValueFunction;
|
|
175
192
|
visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
|
|
193
|
+
disableSort: boolean;
|
|
176
194
|
}>;
|
|
177
195
|
export default _default;
|