@uzum-tech/ui 2.1.2 → 2.1.4
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.js +35 -11
- package/dist/index.mjs +35 -12
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/icon/index.d.ts +1 -1
- package/es/_internal/icon/index.mjs +1 -1
- package/es/_internal/icon/src/UIcon.d.ts +11 -1
- package/es/_internal/icon/src/UIcon.mjs +6 -2
- package/es/_internal/icon/src/interface.d.ts +11 -4
- package/es/_internal/icon/src/interface.mjs +4 -0
- package/es/_internal/icon/src/render-icon.d.ts +1 -0
- package/es/_internal/icon/src/render-icon.mjs +5 -0
- package/es/_mixins/use-form-item.mjs +5 -0
- package/es/components.d.ts +22 -4
- package/es/components.mjs +1 -1
- package/es/date-picker/src/DatePicker.mjs +15 -8
- package/es/icon/index.d.ts +1 -1
- package/es/icon/index.mjs +1 -1
- package/es/icon/src/Icon.d.ts +1 -1
- package/es/icon/src/Icon.mjs +1 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_internal/icon/index.d.ts +1 -1
- package/lib/_internal/icon/index.js +2 -1
- package/lib/_internal/icon/src/UIcon.d.ts +11 -1
- package/lib/_internal/icon/src/UIcon.js +5 -1
- package/lib/_internal/icon/src/interface.d.ts +11 -4
- package/lib/_internal/icon/src/interface.js +1 -1
- package/lib/_internal/icon/src/render-icon.d.ts +1 -0
- package/lib/_internal/icon/src/render-icon.js +4 -0
- package/lib/_mixins/use-form-item.js +5 -0
- package/lib/components.d.ts +22 -4
- package/lib/components.js +6 -5
- package/lib/date-picker/src/DatePicker.js +19 -8
- package/lib/icon/index.d.ts +1 -1
- package/lib/icon/index.js +2 -1
- package/lib/icon/src/Icon.d.ts +1 -1
- package/lib/icon/src/Icon.js +2 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +6 -1
package/dist/index.js
CHANGED
|
@@ -5880,6 +5880,9 @@
|
|
|
5880
5880
|
};
|
|
5881
5881
|
}
|
|
5882
5882
|
|
|
5883
|
+
const formInjectionKey = createInjectionKey("u-form");
|
|
5884
|
+
const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
|
|
5885
|
+
|
|
5883
5886
|
const formItemInjectionKey = createInjectionKey("u-form-item");
|
|
5884
5887
|
function useFormItem(props, {
|
|
5885
5888
|
defaultSize = "medium",
|
|
@@ -5887,6 +5890,7 @@
|
|
|
5887
5890
|
mergedDisabled
|
|
5888
5891
|
} = {}) {
|
|
5889
5892
|
const UFormItem = vue.inject(formItemInjectionKey, null);
|
|
5893
|
+
const UForm = vue.inject(formInjectionKey, null);
|
|
5890
5894
|
vue.provide(formItemInjectionKey, null);
|
|
5891
5895
|
const mergedSizeRef = vue.computed(mergedSize ? () => mergedSize(UFormItem) : () => {
|
|
5892
5896
|
const {
|
|
@@ -5913,6 +5917,9 @@
|
|
|
5913
5917
|
if (UFormItem) {
|
|
5914
5918
|
return UFormItem.disabled.value;
|
|
5915
5919
|
}
|
|
5920
|
+
if (UForm) {
|
|
5921
|
+
return UForm.props.disabled;
|
|
5922
|
+
}
|
|
5916
5923
|
return false;
|
|
5917
5924
|
});
|
|
5918
5925
|
const mergedStatusRef = vue.computed(() => {
|
|
@@ -14133,6 +14140,10 @@
|
|
|
14133
14140
|
component: Object,
|
|
14134
14141
|
name: String,
|
|
14135
14142
|
pack: String,
|
|
14143
|
+
async: {
|
|
14144
|
+
type: Boolean,
|
|
14145
|
+
default: void 0
|
|
14146
|
+
},
|
|
14136
14147
|
onClick: Function
|
|
14137
14148
|
};
|
|
14138
14149
|
|
|
@@ -14403,7 +14414,10 @@
|
|
|
14403
14414
|
warn("icon", `icon pack "${targetName}" not found`);
|
|
14404
14415
|
return null;
|
|
14405
14416
|
}
|
|
14406
|
-
if (config.async) {
|
|
14417
|
+
if (props.async ?? config.async) {
|
|
14418
|
+
if ("renderIcon" in target) {
|
|
14419
|
+
warnOnce("icon", `pack "${target.name}" is a sync pack rendered in async mode \u2014 its icons are already bundled, so async loads them again at runtime. Register the async pack ("${target.name}Async") or drop \`async\`.`);
|
|
14420
|
+
}
|
|
14407
14421
|
return target.renderAsyncIcon(name);
|
|
14408
14422
|
}
|
|
14409
14423
|
if (!("renderIcon" in target)) {
|
|
@@ -14469,6 +14483,12 @@
|
|
|
14469
14483
|
name
|
|
14470
14484
|
}, slots);
|
|
14471
14485
|
}
|
|
14486
|
+
function renderAsyncIcon(name, props, children) {
|
|
14487
|
+
return renderIcon(name, {
|
|
14488
|
+
...props,
|
|
14489
|
+
async: true
|
|
14490
|
+
}, children);
|
|
14491
|
+
}
|
|
14472
14492
|
|
|
14473
14493
|
var commonVars$b = {
|
|
14474
14494
|
iconWidth: "44px",
|
|
@@ -78668,6 +78688,7 @@
|
|
|
78668
78688
|
const { type } = props;
|
|
78669
78689
|
switch (type) {
|
|
78670
78690
|
case "date":
|
|
78691
|
+
case "daterange":
|
|
78671
78692
|
return localeRef.value.datePlaceholder;
|
|
78672
78693
|
case "datetime":
|
|
78673
78694
|
return localeRef.value.datetimePlaceholder;
|
|
@@ -78886,12 +78907,13 @@
|
|
|
78886
78907
|
}
|
|
78887
78908
|
}
|
|
78888
78909
|
function handleClear() {
|
|
78910
|
+
doUpdateValue(null, { doConfirm: false });
|
|
78889
78911
|
doUpdateShow(false);
|
|
78890
|
-
inputInstRef.value?.deactivate();
|
|
78912
|
+
inputInstRef.value?.deactivate?.();
|
|
78891
78913
|
doClear();
|
|
78892
78914
|
}
|
|
78893
78915
|
function handlePanelClear() {
|
|
78894
|
-
inputInstRef.value?.deactivate();
|
|
78916
|
+
inputInstRef.value?.deactivate?.();
|
|
78895
78917
|
doClear();
|
|
78896
78918
|
}
|
|
78897
78919
|
function handlePanelTabOut() {
|
|
@@ -79459,14 +79481,16 @@
|
|
|
79459
79481
|
value: this.displayTime || this.localizedPlacehoder
|
|
79460
79482
|
});
|
|
79461
79483
|
}
|
|
79484
|
+
const hasDisplayTime = this.isRange ? this.displayStartTime && this.displayEndTime : this.displayTime;
|
|
79485
|
+
const displayValue = this.isRange ? `${this.displayStartTime} - ${this.displayEndTime}` : this.displayTime;
|
|
79462
79486
|
if (this.triggerPreset === "select") {
|
|
79463
79487
|
return /* @__PURE__ */ vue.h(
|
|
79464
79488
|
UInternalSelection,
|
|
79465
79489
|
{
|
|
79466
79490
|
ref: "inputInstRef",
|
|
79467
|
-
selectedOption:
|
|
79468
|
-
label:
|
|
79469
|
-
value:
|
|
79491
|
+
selectedOption: hasDisplayTime ? {
|
|
79492
|
+
label: displayValue,
|
|
79493
|
+
value: displayValue
|
|
79470
79494
|
} : null,
|
|
79471
79495
|
round: this.round,
|
|
79472
79496
|
status: this.mergedStatus,
|
|
@@ -79490,6 +79514,7 @@
|
|
|
79490
79514
|
);
|
|
79491
79515
|
}
|
|
79492
79516
|
if (this.triggerPreset === "button") {
|
|
79517
|
+
const buttonText = hasDisplayTime ? displayValue : this.localizedPlacehoder;
|
|
79493
79518
|
return /* @__PURE__ */ vue.h(
|
|
79494
79519
|
Button,
|
|
79495
79520
|
{
|
|
@@ -79500,7 +79525,7 @@
|
|
|
79500
79525
|
onClick: this.handleTriggerClick
|
|
79501
79526
|
},
|
|
79502
79527
|
{
|
|
79503
|
-
default: () =>
|
|
79528
|
+
default: () => buttonText
|
|
79504
79529
|
}
|
|
79505
79530
|
);
|
|
79506
79531
|
}
|
|
@@ -86310,9 +86335,6 @@
|
|
|
86310
86335
|
}
|
|
86311
86336
|
});
|
|
86312
86337
|
|
|
86313
|
-
const formInjectionKey = createInjectionKey("u-form");
|
|
86314
|
-
const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
|
|
86315
|
-
|
|
86316
86338
|
var style$I = cB("form", [cM("inline", `
|
|
86317
86339
|
width: 100%;
|
|
86318
86340
|
display: inline-flex;
|
|
@@ -115589,6 +115611,7 @@
|
|
|
115589
115611
|
radioGroupProps: radioGroupProps,
|
|
115590
115612
|
radioProps: radioProps,
|
|
115591
115613
|
rateProps: rateProps,
|
|
115614
|
+
renderAsyncIcon: renderAsyncIcon,
|
|
115592
115615
|
renderBadge: renderBadge,
|
|
115593
115616
|
renderConfig: renderConfig,
|
|
115594
115617
|
renderIcon: renderIcon,
|
|
@@ -115662,7 +115685,7 @@
|
|
|
115662
115685
|
});
|
|
115663
115686
|
}
|
|
115664
115687
|
|
|
115665
|
-
var version = "2.1.
|
|
115688
|
+
var version = "2.1.4";
|
|
115666
115689
|
|
|
115667
115690
|
function create({
|
|
115668
115691
|
componentPrefix = "U",
|
|
@@ -116862,6 +116885,7 @@
|
|
|
116862
116885
|
exports.radioProps = radioProps;
|
|
116863
116886
|
exports.rateDark = rateDark;
|
|
116864
116887
|
exports.rateProps = rateProps;
|
|
116888
|
+
exports.renderAsyncIcon = renderAsyncIcon;
|
|
116865
116889
|
exports.renderBadge = renderBadge;
|
|
116866
116890
|
exports.renderConfig = renderConfig;
|
|
116867
116891
|
exports.renderIcon = renderIcon;
|
package/dist/index.mjs
CHANGED
|
@@ -5876,6 +5876,9 @@ function useThemeClass(componentName, hashRef, cssVarsRef, props) {
|
|
|
5876
5876
|
};
|
|
5877
5877
|
}
|
|
5878
5878
|
|
|
5879
|
+
const formInjectionKey = createInjectionKey("u-form");
|
|
5880
|
+
const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
|
|
5881
|
+
|
|
5879
5882
|
const formItemInjectionKey = createInjectionKey("u-form-item");
|
|
5880
5883
|
function useFormItem(props, {
|
|
5881
5884
|
defaultSize = "medium",
|
|
@@ -5883,6 +5886,7 @@ function useFormItem(props, {
|
|
|
5883
5886
|
mergedDisabled
|
|
5884
5887
|
} = {}) {
|
|
5885
5888
|
const UFormItem = inject(formItemInjectionKey, null);
|
|
5889
|
+
const UForm = inject(formInjectionKey, null);
|
|
5886
5890
|
provide(formItemInjectionKey, null);
|
|
5887
5891
|
const mergedSizeRef = computed(mergedSize ? () => mergedSize(UFormItem) : () => {
|
|
5888
5892
|
const {
|
|
@@ -5909,6 +5913,9 @@ function useFormItem(props, {
|
|
|
5909
5913
|
if (UFormItem) {
|
|
5910
5914
|
return UFormItem.disabled.value;
|
|
5911
5915
|
}
|
|
5916
|
+
if (UForm) {
|
|
5917
|
+
return UForm.props.disabled;
|
|
5918
|
+
}
|
|
5912
5919
|
return false;
|
|
5913
5920
|
});
|
|
5914
5921
|
const mergedStatusRef = computed(() => {
|
|
@@ -14129,6 +14136,10 @@ const iconProps = {
|
|
|
14129
14136
|
component: Object,
|
|
14130
14137
|
name: String,
|
|
14131
14138
|
pack: String,
|
|
14139
|
+
async: {
|
|
14140
|
+
type: Boolean,
|
|
14141
|
+
default: void 0
|
|
14142
|
+
},
|
|
14132
14143
|
onClick: Function
|
|
14133
14144
|
};
|
|
14134
14145
|
|
|
@@ -14399,7 +14410,10 @@ const UIconImpl = defineComponent({
|
|
|
14399
14410
|
warn("icon", `icon pack "${targetName}" not found`);
|
|
14400
14411
|
return null;
|
|
14401
14412
|
}
|
|
14402
|
-
if (config.async) {
|
|
14413
|
+
if (props.async ?? config.async) {
|
|
14414
|
+
if ("renderIcon" in target) {
|
|
14415
|
+
warnOnce("icon", `pack "${target.name}" is a sync pack rendered in async mode \u2014 its icons are already bundled, so async loads them again at runtime. Register the async pack ("${target.name}Async") or drop \`async\`.`);
|
|
14416
|
+
}
|
|
14403
14417
|
return target.renderAsyncIcon(name);
|
|
14404
14418
|
}
|
|
14405
14419
|
if (!("renderIcon" in target)) {
|
|
@@ -14465,6 +14479,12 @@ function renderIcon(name, props, children) {
|
|
|
14465
14479
|
name
|
|
14466
14480
|
}, slots);
|
|
14467
14481
|
}
|
|
14482
|
+
function renderAsyncIcon(name, props, children) {
|
|
14483
|
+
return renderIcon(name, {
|
|
14484
|
+
...props,
|
|
14485
|
+
async: true
|
|
14486
|
+
}, children);
|
|
14487
|
+
}
|
|
14468
14488
|
|
|
14469
14489
|
var commonVars$b = {
|
|
14470
14490
|
iconWidth: "44px",
|
|
@@ -78664,6 +78684,7 @@ var _UDatePicker = defineComponent({
|
|
|
78664
78684
|
const { type } = props;
|
|
78665
78685
|
switch (type) {
|
|
78666
78686
|
case "date":
|
|
78687
|
+
case "daterange":
|
|
78667
78688
|
return localeRef.value.datePlaceholder;
|
|
78668
78689
|
case "datetime":
|
|
78669
78690
|
return localeRef.value.datetimePlaceholder;
|
|
@@ -78882,12 +78903,13 @@ var _UDatePicker = defineComponent({
|
|
|
78882
78903
|
}
|
|
78883
78904
|
}
|
|
78884
78905
|
function handleClear() {
|
|
78906
|
+
doUpdateValue(null, { doConfirm: false });
|
|
78885
78907
|
doUpdateShow(false);
|
|
78886
|
-
inputInstRef.value?.deactivate();
|
|
78908
|
+
inputInstRef.value?.deactivate?.();
|
|
78887
78909
|
doClear();
|
|
78888
78910
|
}
|
|
78889
78911
|
function handlePanelClear() {
|
|
78890
|
-
inputInstRef.value?.deactivate();
|
|
78912
|
+
inputInstRef.value?.deactivate?.();
|
|
78891
78913
|
doClear();
|
|
78892
78914
|
}
|
|
78893
78915
|
function handlePanelTabOut() {
|
|
@@ -79455,14 +79477,16 @@ var _UDatePicker = defineComponent({
|
|
|
79455
79477
|
value: this.displayTime || this.localizedPlacehoder
|
|
79456
79478
|
});
|
|
79457
79479
|
}
|
|
79480
|
+
const hasDisplayTime = this.isRange ? this.displayStartTime && this.displayEndTime : this.displayTime;
|
|
79481
|
+
const displayValue = this.isRange ? `${this.displayStartTime} - ${this.displayEndTime}` : this.displayTime;
|
|
79458
79482
|
if (this.triggerPreset === "select") {
|
|
79459
79483
|
return /* @__PURE__ */ h(
|
|
79460
79484
|
UInternalSelection,
|
|
79461
79485
|
{
|
|
79462
79486
|
ref: "inputInstRef",
|
|
79463
|
-
selectedOption:
|
|
79464
|
-
label:
|
|
79465
|
-
value:
|
|
79487
|
+
selectedOption: hasDisplayTime ? {
|
|
79488
|
+
label: displayValue,
|
|
79489
|
+
value: displayValue
|
|
79466
79490
|
} : null,
|
|
79467
79491
|
round: this.round,
|
|
79468
79492
|
status: this.mergedStatus,
|
|
@@ -79486,6 +79510,7 @@ var _UDatePicker = defineComponent({
|
|
|
79486
79510
|
);
|
|
79487
79511
|
}
|
|
79488
79512
|
if (this.triggerPreset === "button") {
|
|
79513
|
+
const buttonText = hasDisplayTime ? displayValue : this.localizedPlacehoder;
|
|
79489
79514
|
return /* @__PURE__ */ h(
|
|
79490
79515
|
Button,
|
|
79491
79516
|
{
|
|
@@ -79496,7 +79521,7 @@ var _UDatePicker = defineComponent({
|
|
|
79496
79521
|
onClick: this.handleTriggerClick
|
|
79497
79522
|
},
|
|
79498
79523
|
{
|
|
79499
|
-
default: () =>
|
|
79524
|
+
default: () => buttonText
|
|
79500
79525
|
}
|
|
79501
79526
|
);
|
|
79502
79527
|
}
|
|
@@ -86306,9 +86331,6 @@ var _UFloatButton = defineComponent({
|
|
|
86306
86331
|
}
|
|
86307
86332
|
});
|
|
86308
86333
|
|
|
86309
|
-
const formInjectionKey = createInjectionKey("u-form");
|
|
86310
|
-
const formItemInstsInjectionKey = createInjectionKey("u-form-item-insts");
|
|
86311
|
-
|
|
86312
86334
|
var style$I = cB("form", [cM("inline", `
|
|
86313
86335
|
width: 100%;
|
|
86314
86336
|
display: inline-flex;
|
|
@@ -115585,6 +115607,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
115585
115607
|
radioGroupProps: radioGroupProps,
|
|
115586
115608
|
radioProps: radioProps,
|
|
115587
115609
|
rateProps: rateProps,
|
|
115610
|
+
renderAsyncIcon: renderAsyncIcon,
|
|
115588
115611
|
renderBadge: renderBadge,
|
|
115589
115612
|
renderConfig: renderConfig,
|
|
115590
115613
|
renderIcon: renderIcon,
|
|
@@ -115658,7 +115681,7 @@ function useThemeVars() {
|
|
|
115658
115681
|
});
|
|
115659
115682
|
}
|
|
115660
115683
|
|
|
115661
|
-
var version = "2.1.
|
|
115684
|
+
var version = "2.1.4";
|
|
115662
115685
|
|
|
115663
115686
|
function create({
|
|
115664
115687
|
componentPrefix = "U",
|
|
@@ -116459,4 +116482,4 @@ function createTheme(name, componentThemes) {
|
|
|
116459
116482
|
return theme;
|
|
116460
116483
|
}
|
|
116461
116484
|
|
|
116462
|
-
export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };
|
|
116485
|
+
export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderAsyncIcon, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };
|