@uzum-tech/ui 2.3.6 → 2.3.8
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 +214 -185
- package/dist/index.mjs +214 -185
- package/dist/index.prod.js +3 -3
- package/dist/index.prod.mjs +3 -3
- package/es/chat/src/Chat.d.ts +124 -0
- package/es/chat/src/ChatListItems.d.ts +48 -0
- package/es/chat/src/ChatMainArea.d.ts +48 -0
- package/es/chat/src/ChatMessages.d.ts +48 -0
- package/es/chat/src/ChatMessages.mjs +2 -0
- package/es/chat/src/ChatParts/Sidebar.d.ts +8 -0
- package/es/chat/src/interface.d.ts +12 -0
- package/es/chat/styles/dark.d.ts +4 -0
- package/es/chat/styles/light.d.ts +6 -0
- package/es/chat/styles/light.mjs +5 -2
- package/es/components.d.ts +244 -0
- package/es/components.mjs +181 -180
- package/es/message-bubble/src/MessageBubble.d.ts +12 -0
- package/es/message-bubble/src/MessageBubble.mjs +4 -0
- package/es/message-bubble/src/interface.d.ts +6 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +19 -1
- package/es/message-bubble/styles/dark.d.ts +2 -0
- package/es/message-bubble/styles/light.d.ts +4 -0
- package/es/message-bubble/styles/light.mjs +5 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +124 -0
- package/lib/chat/src/ChatListItems.d.ts +48 -0
- package/lib/chat/src/ChatMainArea.d.ts +48 -0
- package/lib/chat/src/ChatMessages.d.ts +48 -0
- package/lib/chat/src/ChatMessages.js +1 -1
- package/lib/chat/src/ChatParts/Sidebar.d.ts +8 -0
- package/lib/chat/src/interface.d.ts +12 -0
- package/lib/chat/styles/dark.d.ts +4 -0
- package/lib/chat/styles/light.d.ts +6 -0
- package/lib/chat/styles/light.js +4 -2
- package/lib/components.d.ts +244 -0
- package/lib/components.js +1 -0
- package/lib/message-bubble/src/MessageBubble.d.ts +12 -0
- package/lib/message-bubble/src/MessageBubble.js +3 -1
- package/lib/message-bubble/src/interface.d.ts +6 -0
- package/lib/message-bubble/src/styles/index.cssr.js +19 -1
- package/lib/message-bubble/styles/dark.d.ts +2 -0
- package/lib/message-bubble/styles/light.d.ts +4 -0
- package/lib/message-bubble/styles/light.js +4 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45398,7 +45398,9 @@
|
|
|
45398
45398
|
textPrimary,
|
|
45399
45399
|
textSecondary,
|
|
45400
45400
|
textTertiary,
|
|
45401
|
+
brandPrimary100,
|
|
45401
45402
|
brandPrimary400,
|
|
45403
|
+
brandPrimary500,
|
|
45402
45404
|
staticGreen,
|
|
45403
45405
|
staticRed,
|
|
45404
45406
|
staticWhite
|
|
@@ -45422,7 +45424,9 @@
|
|
|
45422
45424
|
messageTitleColor: textPrimary,
|
|
45423
45425
|
markdownQuoteBorderColorOwn: textPrimary,
|
|
45424
45426
|
markdownQuoteBorderColorOther: textPrimary,
|
|
45425
|
-
markdownQuoteTextColor:
|
|
45427
|
+
markdownQuoteTextColor: textPrimary,
|
|
45428
|
+
markdownQuoteBackgroundColor: brandPrimary100,
|
|
45429
|
+
markdownQuoteMarkerColor: brandPrimary500,
|
|
45426
45430
|
markdownDividerColorOwn: textPrimary,
|
|
45427
45431
|
markdownDividerColorOther: textPrimary,
|
|
45428
45432
|
markdownH1FontSize: "20px",
|
|
@@ -45630,8 +45634,9 @@
|
|
|
45630
45634
|
textPrimary,
|
|
45631
45635
|
textSecondary,
|
|
45632
45636
|
surfacePrimary,
|
|
45633
|
-
|
|
45637
|
+
brandPrimary100,
|
|
45634
45638
|
brandPrimary400,
|
|
45639
|
+
brandPrimary500,
|
|
45635
45640
|
transparencySecondary,
|
|
45636
45641
|
elementsSecondary,
|
|
45637
45642
|
elementsDarkQuinary,
|
|
@@ -45671,7 +45676,9 @@
|
|
|
45671
45676
|
unreadNotificationTextColor: elementsSecondary,
|
|
45672
45677
|
markdownQuoteBorderColorOwn: textPrimary,
|
|
45673
45678
|
markdownQuoteBorderColorOther: textPrimary,
|
|
45674
|
-
markdownQuoteTextColor:
|
|
45679
|
+
markdownQuoteTextColor: textPrimary,
|
|
45680
|
+
markdownQuoteBackgroundColor: brandPrimary100,
|
|
45681
|
+
markdownQuoteMarkerColor: brandPrimary500,
|
|
45675
45682
|
markdownDividerColorOwn: textPrimary,
|
|
45676
45683
|
markdownDividerColorOther: textPrimary,
|
|
45677
45684
|
typingIndicatorColor: textSecondary,
|
|
@@ -60817,7 +60824,23 @@
|
|
|
60817
60824
|
`), cE("markdown", `
|
|
60818
60825
|
white-space: normal;
|
|
60819
60826
|
font-size: var(--u-message-bubble-markdown-text-font-size);
|
|
60820
|
-
`, [c$1("h1", "font-size: var(--u-message-bubble-markdown-h1-font-size);"), c$1("h2", "font-size: var(--u-message-bubble-markdown-h2-font-size);"), c$1("h3", "font-size: var(--u-message-bubble-markdown-h3-font-size);"), c$1("
|
|
60827
|
+
`, [c$1("h1", "font-size: var(--u-message-bubble-markdown-h1-font-size);"), c$1("h2", "font-size: var(--u-message-bubble-markdown-h2-font-size);"), c$1("h3", "font-size: var(--u-message-bubble-markdown-h3-font-size);"), c$1("ul, ol", "list-style-position: inside;"), c$1("blockquote", `
|
|
60828
|
+
position: relative;
|
|
60829
|
+
border-radius: 4px;
|
|
60830
|
+
padding: 0 8px;
|
|
60831
|
+
margin: 0;
|
|
60832
|
+
background-color: var(--u-message-bubble-markdown-quote-background-color);
|
|
60833
|
+
color: var(--u-message-bubble-markdown-quote-text-color);
|
|
60834
|
+
`, [c$1("&::before", `
|
|
60835
|
+
content: "";
|
|
60836
|
+
width: 2px;
|
|
60837
|
+
position: absolute;
|
|
60838
|
+
left: 2px;
|
|
60839
|
+
top: 2px;
|
|
60840
|
+
bottom: 2px;
|
|
60841
|
+
border-radius: 30px;
|
|
60842
|
+
background-color: var(--u-message-bubble-markdown-quote-marker-color);
|
|
60843
|
+
`)]), c$1("& > *:first-child", "margin-top: 0;"), c$1("& > *:last-child", "margin-bottom: 0;")]), cE("after-content", `
|
|
60821
60844
|
white-space: normal;
|
|
60822
60845
|
`), cE("meta", `
|
|
60823
60846
|
display: flex;
|
|
@@ -60954,6 +60977,8 @@
|
|
|
60954
60977
|
markdownQuoteBorderColorOwn,
|
|
60955
60978
|
markdownQuoteBorderColorOther,
|
|
60956
60979
|
markdownQuoteTextColor,
|
|
60980
|
+
markdownQuoteBackgroundColor,
|
|
60981
|
+
markdownQuoteMarkerColor,
|
|
60957
60982
|
markdownDividerColorOwn,
|
|
60958
60983
|
markdownDividerColorOther,
|
|
60959
60984
|
markdownH1FontSize,
|
|
@@ -60983,6 +61008,8 @@
|
|
|
60983
61008
|
"--u-message-bubble-markdown-quote-border-color-own": markdownQuoteBorderColorOwn,
|
|
60984
61009
|
"--u-message-bubble-markdown-quote-border-color-other": markdownQuoteBorderColorOther,
|
|
60985
61010
|
"--u-message-bubble-markdown-quote-text-color": markdownQuoteTextColor,
|
|
61011
|
+
"--u-message-bubble-markdown-quote-background-color": markdownQuoteBackgroundColor,
|
|
61012
|
+
"--u-message-bubble-markdown-quote-marker-color": markdownQuoteMarkerColor,
|
|
60986
61013
|
"--u-message-bubble-markdown-divider-color-own": markdownDividerColorOwn,
|
|
60987
61014
|
"--u-message-bubble-markdown-divider-color-other": markdownDividerColorOther,
|
|
60988
61015
|
"--u-message-bubble-markdown-h1-font-size": markdownH1FontSize,
|
|
@@ -62085,6 +62112,8 @@
|
|
|
62085
62112
|
markdownQuoteBorderColorOwn: self.markdownQuoteBorderColorOwn,
|
|
62086
62113
|
markdownQuoteBorderColorOther: self.markdownQuoteBorderColorOther,
|
|
62087
62114
|
markdownQuoteTextColor: self.markdownQuoteTextColor,
|
|
62115
|
+
markdownQuoteBackgroundColor: self.markdownQuoteBackgroundColor,
|
|
62116
|
+
markdownQuoteMarkerColor: self.markdownQuoteMarkerColor,
|
|
62088
62117
|
markdownDividerColorOwn: self.markdownDividerColorOwn,
|
|
62089
62118
|
markdownDividerColorOther: self.markdownDividerColorOther,
|
|
62090
62119
|
...peerOverrides.MessageBubble
|
|
@@ -123014,186 +123043,186 @@ ${icon.label}`.toLowerCase()
|
|
|
123014
123043
|
return discreteApp;
|
|
123015
123044
|
}
|
|
123016
123045
|
|
|
123017
|
-
const UActionCard = wrap(_UActionCard);
|
|
123018
|
-
const UAffix = wrap(_UAffix);
|
|
123019
|
-
const UAlert = wrap(_UAlert);
|
|
123020
|
-
const UAnchor = wrap(_UAnchor);
|
|
123021
|
-
const UAnchorLink = wrap(_UAnchorLink);
|
|
123022
|
-
const UAutoComplete = wrap(_UAutoComplete);
|
|
123023
|
-
const UAvatar = wrap(_UAvatar);
|
|
123024
|
-
const UAvatarGroup = wrap(_UAvatarGroup);
|
|
123025
|
-
const UBackTop = wrap(_UBackTop);
|
|
123026
|
-
const UBadge = wrap(_UBadge);
|
|
123027
|
-
const UBreadcrumb = wrap(_UBreadcrumb);
|
|
123028
|
-
const UBreadcrumbItem = wrap(_UBreadcrumbItem);
|
|
123029
|
-
const UButton = wrap(Button);
|
|
123030
|
-
const UxButton = wrap(XButton);
|
|
123031
|
-
const UButtonGroup = wrap(_UButtonGroup);
|
|
123032
|
-
const UCalendar = wrap(_UCalendar);
|
|
123033
|
-
const UCard = wrap(_UCard);
|
|
123034
|
-
const UCardList = wrap(_UCardList);
|
|
123035
|
-
const UCarousel = wrap(_UCarousel);
|
|
123036
|
-
const UCarouselItem = wrap(_UCarouselItem);
|
|
123037
|
-
const UCascader = wrap(_UCascader);
|
|
123038
|
-
const UChat = wrap(_UChat);
|
|
123039
|
-
const UChatListItems = wrap(_UChatListItems);
|
|
123040
|
-
const UChatMainArea = wrap(_UChatMainArea);
|
|
123041
|
-
const UChatMessages = wrap(_UChatMessages);
|
|
123042
|
-
const UCheckbox = wrap(_UCheckbox);
|
|
123043
|
-
const UCheckboxGroup = wrap(_UCheckboxGroup);
|
|
123044
|
-
const UCode = wrap(_UCode);
|
|
123045
|
-
const UCollapse = wrap(UCollapse$1);
|
|
123046
|
-
const UCollapseItem = wrap(UCollapseItem$1);
|
|
123047
|
-
const UCollapseTransition = wrap(_UCollapseTransition);
|
|
123048
|
-
const UColorPicker = wrap(UColorPicker$1);
|
|
123049
|
-
const UConfigProvider = wrap(UConfigProvider$1);
|
|
123050
|
-
const UCountdown = wrap(_UCountdown);
|
|
123051
|
-
const UCrop = wrap(_UCrop);
|
|
123052
|
-
const UDataTable = wrap(_UDataTable);
|
|
123053
|
-
const UDatePicker = wrap(_UDatePicker);
|
|
123054
|
-
const UDatePickerV2 = wrap(_UDatePickerV2);
|
|
123055
|
-
const UDescriptions = wrap(_UDescriptions);
|
|
123056
|
-
const UDescriptionsItem = wrap(_UDescriptionsItem);
|
|
123057
|
-
const UDialog = wrap(UDialog$1);
|
|
123058
|
-
const UDivider = wrap(UDivider$1);
|
|
123059
|
-
const UDrawer = wrap(_UDrawer);
|
|
123060
|
-
const UDrawerContent = wrap(_UDrawerContent);
|
|
123061
|
-
const UDropdown = wrap(_UDropdown);
|
|
123062
|
-
const UDynamicInput = wrap(_UDynamicInput);
|
|
123063
|
-
const UDynamicTags = wrap(_UDynamicTags);
|
|
123064
|
-
const UElement = wrap(UElement$1);
|
|
123065
|
-
const UEl = wrap(UElement$1);
|
|
123066
|
-
const UEllipsis = wrap(_UEllipsis);
|
|
123067
|
-
const UPerformantEllipsis = wrap(UPerformantEllipsis$1);
|
|
123068
|
-
const UEmpty = wrap(UEmpty$1);
|
|
123069
|
-
const UEquation = wrap(Equation);
|
|
123070
|
-
const UFlex = wrap(_UFlex);
|
|
123071
|
-
const UFloatButton = wrap(_UFloatButton);
|
|
123072
|
-
const UFloatButtonGroup = wrap(_UFloatButtonGroup);
|
|
123073
|
-
const UForm = wrap(_UForm);
|
|
123074
|
-
const UFormItem = wrap(_UFormItem);
|
|
123075
|
-
const UFormItemCol = wrap(_UFormItemCol);
|
|
123076
|
-
const UFormItemGi = wrap(_UFormItemGridItem);
|
|
123077
|
-
const UFormItemGridItem = wrap(_UFormItemGridItem);
|
|
123078
|
-
const UFormItemRow = wrap(_UFormItemRow);
|
|
123079
|
-
const UGlobalStyle = wrap(_UGlobalStyle);
|
|
123080
|
-
const UGradientText = wrap(_UGradientText);
|
|
123081
|
-
const UGrid = wrap(UGrid$1);
|
|
123082
|
-
const UGridItem = wrap(UGi$1);
|
|
123083
|
-
const UGi = wrap(UGi$1);
|
|
123084
|
-
const UHeader = wrap(_UHeader);
|
|
123085
|
-
const UHeaderActions = wrap(_UHeaderActions);
|
|
123086
|
-
const UHeaderDesktopLayout = wrap(_UHeaderDesktopLayout);
|
|
123087
|
-
const UHeaderMobileLayout = wrap(_UHeaderMobileLayout);
|
|
123088
|
-
const UHeaderNavigation = wrap(HeaderNavigation);
|
|
123089
|
-
const UHeaderSearchDesktop = wrap(_UHeaderSearchDesktop);
|
|
123090
|
-
const UHeaderSearchMobile = wrap(_UHeaderSearchMobile);
|
|
123091
|
-
const UHeaderSearchResults = wrap(_UHeaderSearchResults);
|
|
123092
|
-
const UHeatmap = wrap(_UHeatmap);
|
|
123093
|
-
const UHighlight = wrap(_UHighlight);
|
|
123094
|
-
const UIcon = wrap(UIcon$1);
|
|
123095
|
-
const UIconBar = wrap(_UIconBar);
|
|
123096
|
-
const UIconBarItem = wrap(_UIconBarItem);
|
|
123097
|
-
const UIconPack = wrap(_UIconPack);
|
|
123098
|
-
const UIconWrapper = wrap(UIconWrapper$1);
|
|
123099
|
-
const UImage = wrap(_UImage);
|
|
123100
|
-
const UImageGroup = wrap(_UImageGroup);
|
|
123101
|
-
const UImagePreview = wrap(_UImagePreview);
|
|
123102
|
-
const UInfiniteScroll = wrap(_UInfiniteScroll);
|
|
123103
|
-
const UInput = wrap(UInput$1);
|
|
123104
|
-
const UInputGroup = wrap(_UInputGroup);
|
|
123105
|
-
const UInputGroupLabel = wrap(_UInputGroupLabel);
|
|
123106
|
-
const UInputNumber = wrap(_UInputNumber);
|
|
123107
|
-
const UInputOtp = wrap(_UInputOtp);
|
|
123108
|
-
const UKanban = wrap(_UKanban);
|
|
123109
|
-
const UKanbanCard = wrap(_UKanbanCard);
|
|
123110
|
-
const UKanbanColumn = wrap(_UKanbanColumn);
|
|
123111
|
-
const ULayout = wrap(_ULayout);
|
|
123112
|
-
const ULayoutContent = wrap(_ULayoutContent);
|
|
123113
|
-
const ULayoutFooter = wrap(_ULayoutFooter);
|
|
123114
|
-
const ULayoutHeader = wrap(_ULayoutHeader);
|
|
123115
|
-
const ULayoutSider = wrap(_ULayoutSider);
|
|
123116
|
-
const UCol = wrap(_UCol);
|
|
123117
|
-
const URow = wrap(_URow);
|
|
123118
|
-
const ULegacyTransfer = wrap(_ULegacyTransfer);
|
|
123119
|
-
const UList = wrap(_UList);
|
|
123120
|
-
const UListItem = wrap(_UListItem);
|
|
123121
|
-
const ULoadingBarProvider = wrap(_ULoadingBarProvider);
|
|
123122
|
-
const ULog = wrap(_ULog);
|
|
123123
|
-
const UMappingCard = wrap(_UMappingCard);
|
|
123124
|
-
const UMappingCardList = wrap(_UMappingCardList);
|
|
123125
|
-
const UMarquee = wrap(_UMarquee);
|
|
123126
|
-
const UMention = wrap(_UMention);
|
|
123127
|
-
const UMenu = wrap(_UMenu);
|
|
123128
|
-
const UMessageBubble = wrap(_UMessageBubble);
|
|
123129
|
-
const UModal = wrap(_UModal);
|
|
123130
|
-
const UModalProvider = wrap(UModalProvider$1);
|
|
123131
|
-
const UModalFullscreen = wrap(ModalFullscreen);
|
|
123132
|
-
const UNumberAnimation = wrap(_UNumberAnimation);
|
|
123133
|
-
const UPageHeader = wrap(_UPageHeader);
|
|
123134
|
-
const UPagination = wrap(_UPagination);
|
|
123135
|
-
const UPopconfirm = wrap(_UPopconfirm);
|
|
123136
|
-
const UPopover = wrap(UPopover$1);
|
|
123137
|
-
const UPopselect = wrap(_UPopselect);
|
|
123138
|
-
const UProgress = wrap(_UProgress);
|
|
123139
|
-
const UQrCode = wrap(_UQrCode);
|
|
123140
|
-
const URadio = wrap(_URadio);
|
|
123141
|
-
const URadioButton = wrap(_URadioButton);
|
|
123142
|
-
const URadioGroup = wrap(_URadioGroup);
|
|
123143
|
-
const URate = wrap(_URate);
|
|
123144
|
-
const UResult = wrap(_UResult);
|
|
123145
|
-
const USafeTopScrollbar = wrap(SafeTopScrollbar);
|
|
123146
|
-
const UScrollbar = wrap(Scrollbar);
|
|
123147
|
-
const USelect = wrap(_USelect);
|
|
123148
|
-
const USkeleton = wrap(_USkeleton);
|
|
123149
|
-
const USlider = wrap(_USlider);
|
|
123150
|
-
const USpace = wrap(USpace$1);
|
|
123151
|
-
const USpin = wrap(_USpin);
|
|
123152
|
-
const USplit = wrap(_USplit);
|
|
123153
|
-
const UStatistic = wrap(_UStatistic);
|
|
123154
|
-
const UStatus = wrap(_UStatus);
|
|
123155
|
-
const UStep = wrap(_UStep);
|
|
123156
|
-
const USteps = wrap(_USteps);
|
|
123157
|
-
const USwitch = wrap(_USwitch);
|
|
123158
|
-
const UTable = wrap(_UTable);
|
|
123159
|
-
const UTbody = wrap(_UTbody);
|
|
123160
|
-
const UTd = wrap(_UTd);
|
|
123161
|
-
const UTh = wrap(_UTh);
|
|
123162
|
-
const UThead = wrap(_UThead);
|
|
123163
|
-
const UTr = wrap(_UTr);
|
|
123164
|
-
const UTab = wrap(_UTab);
|
|
123165
|
-
const UTabPane = wrap(_UTabPane);
|
|
123166
|
-
const UTabs = wrap(_UTabs);
|
|
123167
|
-
const UTag = wrap(_UTag);
|
|
123168
|
-
const UTagGroup = wrap(_UTagGroup);
|
|
123169
|
-
const UThing = wrap(_UThing);
|
|
123170
|
-
const UTime = wrap(_UTime);
|
|
123171
|
-
const UTimePicker = wrap(_UTimePicker);
|
|
123172
|
-
const UTimeline = wrap(_UTimeline);
|
|
123173
|
-
const UTimelineItem = wrap(_UTimelineItem);
|
|
123174
|
-
const UToggleButton = wrap(_UToggleButton);
|
|
123175
|
-
const UTooltip = wrap(_UTooltip);
|
|
123176
|
-
const UTransfer = wrap(_UTransfer);
|
|
123177
|
-
const UTree = wrap(_UTree);
|
|
123178
|
-
const UTreeSelect = wrap(_UTreeSelect);
|
|
123179
|
-
const UBlockquote = wrap(_UBlockquote);
|
|
123180
|
-
const UH1 = wrap(UH1$1);
|
|
123181
|
-
const UH2 = wrap(UH2$1);
|
|
123182
|
-
const UH3 = wrap(UH3$1);
|
|
123183
|
-
const UH4 = wrap(UH4$1);
|
|
123184
|
-
const UH5 = wrap(UH5$1);
|
|
123185
|
-
const UH6 = wrap(UH6$1);
|
|
123186
|
-
const UHr = wrap(_UHr);
|
|
123187
|
-
const ULi = wrap(_ULi);
|
|
123188
|
-
const UOl = wrap(_UOl);
|
|
123189
|
-
const UText = wrap(_UText);
|
|
123190
|
-
const UUl = wrap(_UUl);
|
|
123191
|
-
const UUpload = wrap(_UUpload);
|
|
123192
|
-
const UUploadDragger = wrap(_UUploadDragger);
|
|
123193
|
-
const UUploadFileList = wrap(_UUploadFileList);
|
|
123194
|
-
const UUploadTrigger = wrap(_UUploadTrigger);
|
|
123195
|
-
const UVirtualList = wrap(_UVirtualList);
|
|
123196
|
-
const UWatermark = wrap(_UWatermark);
|
|
123046
|
+
const UActionCard = /* @__PURE__ */wrap(_UActionCard);
|
|
123047
|
+
const UAffix = /* @__PURE__ */wrap(_UAffix);
|
|
123048
|
+
const UAlert = /* @__PURE__ */wrap(_UAlert);
|
|
123049
|
+
const UAnchor = /* @__PURE__ */wrap(_UAnchor);
|
|
123050
|
+
const UAnchorLink = /* @__PURE__ */wrap(_UAnchorLink);
|
|
123051
|
+
const UAutoComplete = /* @__PURE__ */wrap(_UAutoComplete);
|
|
123052
|
+
const UAvatar = /* @__PURE__ */wrap(_UAvatar);
|
|
123053
|
+
const UAvatarGroup = /* @__PURE__ */wrap(_UAvatarGroup);
|
|
123054
|
+
const UBackTop = /* @__PURE__ */wrap(_UBackTop);
|
|
123055
|
+
const UBadge = /* @__PURE__ */wrap(_UBadge);
|
|
123056
|
+
const UBreadcrumb = /* @__PURE__ */wrap(_UBreadcrumb);
|
|
123057
|
+
const UBreadcrumbItem = /* @__PURE__ */wrap(_UBreadcrumbItem);
|
|
123058
|
+
const UButton = /* @__PURE__ */wrap(Button);
|
|
123059
|
+
const UxButton = /* @__PURE__ */wrap(XButton);
|
|
123060
|
+
const UButtonGroup = /* @__PURE__ */wrap(_UButtonGroup);
|
|
123061
|
+
const UCalendar = /* @__PURE__ */wrap(_UCalendar);
|
|
123062
|
+
const UCard = /* @__PURE__ */wrap(_UCard);
|
|
123063
|
+
const UCardList = /* @__PURE__ */wrap(_UCardList);
|
|
123064
|
+
const UCarousel = /* @__PURE__ */wrap(_UCarousel);
|
|
123065
|
+
const UCarouselItem = /* @__PURE__ */wrap(_UCarouselItem);
|
|
123066
|
+
const UCascader = /* @__PURE__ */wrap(_UCascader);
|
|
123067
|
+
const UChat = /* @__PURE__ */wrap(_UChat);
|
|
123068
|
+
const UChatListItems = /* @__PURE__ */wrap(_UChatListItems);
|
|
123069
|
+
const UChatMainArea = /* @__PURE__ */wrap(_UChatMainArea);
|
|
123070
|
+
const UChatMessages = /* @__PURE__ */wrap(_UChatMessages);
|
|
123071
|
+
const UCheckbox = /* @__PURE__ */wrap(_UCheckbox);
|
|
123072
|
+
const UCheckboxGroup = /* @__PURE__ */wrap(_UCheckboxGroup);
|
|
123073
|
+
const UCode = /* @__PURE__ */wrap(_UCode);
|
|
123074
|
+
const UCollapse = /* @__PURE__ */wrap(UCollapse$1);
|
|
123075
|
+
const UCollapseItem = /* @__PURE__ */wrap(UCollapseItem$1);
|
|
123076
|
+
const UCollapseTransition = /* @__PURE__ */wrap(_UCollapseTransition);
|
|
123077
|
+
const UColorPicker = /* @__PURE__ */wrap(UColorPicker$1);
|
|
123078
|
+
const UConfigProvider = /* @__PURE__ */wrap(UConfigProvider$1);
|
|
123079
|
+
const UCountdown = /* @__PURE__ */wrap(_UCountdown);
|
|
123080
|
+
const UCrop = /* @__PURE__ */wrap(_UCrop);
|
|
123081
|
+
const UDataTable = /* @__PURE__ */wrap(_UDataTable);
|
|
123082
|
+
const UDatePicker = /* @__PURE__ */wrap(_UDatePicker);
|
|
123083
|
+
const UDatePickerV2 = /* @__PURE__ */wrap(_UDatePickerV2);
|
|
123084
|
+
const UDescriptions = /* @__PURE__ */wrap(_UDescriptions);
|
|
123085
|
+
const UDescriptionsItem = /* @__PURE__ */wrap(_UDescriptionsItem);
|
|
123086
|
+
const UDialog = /* @__PURE__ */wrap(UDialog$1);
|
|
123087
|
+
const UDivider = /* @__PURE__ */wrap(UDivider$1);
|
|
123088
|
+
const UDrawer = /* @__PURE__ */wrap(_UDrawer);
|
|
123089
|
+
const UDrawerContent = /* @__PURE__ */wrap(_UDrawerContent);
|
|
123090
|
+
const UDropdown = /* @__PURE__ */wrap(_UDropdown);
|
|
123091
|
+
const UDynamicInput = /* @__PURE__ */wrap(_UDynamicInput);
|
|
123092
|
+
const UDynamicTags = /* @__PURE__ */wrap(_UDynamicTags);
|
|
123093
|
+
const UElement = /* @__PURE__ */wrap(UElement$1);
|
|
123094
|
+
const UEl = /* @__PURE__ */wrap(UElement$1);
|
|
123095
|
+
const UEllipsis = /* @__PURE__ */wrap(_UEllipsis);
|
|
123096
|
+
const UPerformantEllipsis = /* @__PURE__ */wrap(UPerformantEllipsis$1);
|
|
123097
|
+
const UEmpty = /* @__PURE__ */wrap(UEmpty$1);
|
|
123098
|
+
const UEquation = /* @__PURE__ */wrap(Equation);
|
|
123099
|
+
const UFlex = /* @__PURE__ */wrap(_UFlex);
|
|
123100
|
+
const UFloatButton = /* @__PURE__ */wrap(_UFloatButton);
|
|
123101
|
+
const UFloatButtonGroup = /* @__PURE__ */wrap(_UFloatButtonGroup);
|
|
123102
|
+
const UForm = /* @__PURE__ */wrap(_UForm);
|
|
123103
|
+
const UFormItem = /* @__PURE__ */wrap(_UFormItem);
|
|
123104
|
+
const UFormItemCol = /* @__PURE__ */wrap(_UFormItemCol);
|
|
123105
|
+
const UFormItemGi = /* @__PURE__ */wrap(_UFormItemGridItem);
|
|
123106
|
+
const UFormItemGridItem = /* @__PURE__ */wrap(_UFormItemGridItem);
|
|
123107
|
+
const UFormItemRow = /* @__PURE__ */wrap(_UFormItemRow);
|
|
123108
|
+
const UGlobalStyle = /* @__PURE__ */wrap(_UGlobalStyle);
|
|
123109
|
+
const UGradientText = /* @__PURE__ */wrap(_UGradientText);
|
|
123110
|
+
const UGrid = /* @__PURE__ */wrap(UGrid$1);
|
|
123111
|
+
const UGridItem = /* @__PURE__ */wrap(UGi$1);
|
|
123112
|
+
const UGi = /* @__PURE__ */wrap(UGi$1);
|
|
123113
|
+
const UHeader = /* @__PURE__ */wrap(_UHeader);
|
|
123114
|
+
const UHeaderActions = /* @__PURE__ */wrap(_UHeaderActions);
|
|
123115
|
+
const UHeaderDesktopLayout = /* @__PURE__ */wrap(_UHeaderDesktopLayout);
|
|
123116
|
+
const UHeaderMobileLayout = /* @__PURE__ */wrap(_UHeaderMobileLayout);
|
|
123117
|
+
const UHeaderNavigation = /* @__PURE__ */wrap(HeaderNavigation);
|
|
123118
|
+
const UHeaderSearchDesktop = /* @__PURE__ */wrap(_UHeaderSearchDesktop);
|
|
123119
|
+
const UHeaderSearchMobile = /* @__PURE__ */wrap(_UHeaderSearchMobile);
|
|
123120
|
+
const UHeaderSearchResults = /* @__PURE__ */wrap(_UHeaderSearchResults);
|
|
123121
|
+
const UHeatmap = /* @__PURE__ */wrap(_UHeatmap);
|
|
123122
|
+
const UHighlight = /* @__PURE__ */wrap(_UHighlight);
|
|
123123
|
+
const UIcon = /* @__PURE__ */wrap(UIcon$1);
|
|
123124
|
+
const UIconBar = /* @__PURE__ */wrap(_UIconBar);
|
|
123125
|
+
const UIconBarItem = /* @__PURE__ */wrap(_UIconBarItem);
|
|
123126
|
+
const UIconPack = /* @__PURE__ */wrap(_UIconPack);
|
|
123127
|
+
const UIconWrapper = /* @__PURE__ */wrap(UIconWrapper$1);
|
|
123128
|
+
const UImage = /* @__PURE__ */wrap(_UImage);
|
|
123129
|
+
const UImageGroup = /* @__PURE__ */wrap(_UImageGroup);
|
|
123130
|
+
const UImagePreview = /* @__PURE__ */wrap(_UImagePreview);
|
|
123131
|
+
const UInfiniteScroll = /* @__PURE__ */wrap(_UInfiniteScroll);
|
|
123132
|
+
const UInput = /* @__PURE__ */wrap(UInput$1);
|
|
123133
|
+
const UInputGroup = /* @__PURE__ */wrap(_UInputGroup);
|
|
123134
|
+
const UInputGroupLabel = /* @__PURE__ */wrap(_UInputGroupLabel);
|
|
123135
|
+
const UInputNumber = /* @__PURE__ */wrap(_UInputNumber);
|
|
123136
|
+
const UInputOtp = /* @__PURE__ */wrap(_UInputOtp);
|
|
123137
|
+
const UKanban = /* @__PURE__ */wrap(_UKanban);
|
|
123138
|
+
const UKanbanCard = /* @__PURE__ */wrap(_UKanbanCard);
|
|
123139
|
+
const UKanbanColumn = /* @__PURE__ */wrap(_UKanbanColumn);
|
|
123140
|
+
const ULayout = /* @__PURE__ */wrap(_ULayout);
|
|
123141
|
+
const ULayoutContent = /* @__PURE__ */wrap(_ULayoutContent);
|
|
123142
|
+
const ULayoutFooter = /* @__PURE__ */wrap(_ULayoutFooter);
|
|
123143
|
+
const ULayoutHeader = /* @__PURE__ */wrap(_ULayoutHeader);
|
|
123144
|
+
const ULayoutSider = /* @__PURE__ */wrap(_ULayoutSider);
|
|
123145
|
+
const UCol = /* @__PURE__ */wrap(_UCol);
|
|
123146
|
+
const URow = /* @__PURE__ */wrap(_URow);
|
|
123147
|
+
const ULegacyTransfer = /* @__PURE__ */wrap(_ULegacyTransfer);
|
|
123148
|
+
const UList = /* @__PURE__ */wrap(_UList);
|
|
123149
|
+
const UListItem = /* @__PURE__ */wrap(_UListItem);
|
|
123150
|
+
const ULoadingBarProvider = /* @__PURE__ */wrap(_ULoadingBarProvider);
|
|
123151
|
+
const ULog = /* @__PURE__ */wrap(_ULog);
|
|
123152
|
+
const UMappingCard = /* @__PURE__ */wrap(_UMappingCard);
|
|
123153
|
+
const UMappingCardList = /* @__PURE__ */wrap(_UMappingCardList);
|
|
123154
|
+
const UMarquee = /* @__PURE__ */wrap(_UMarquee);
|
|
123155
|
+
const UMention = /* @__PURE__ */wrap(_UMention);
|
|
123156
|
+
const UMenu = /* @__PURE__ */wrap(_UMenu);
|
|
123157
|
+
const UMessageBubble = /* @__PURE__ */wrap(_UMessageBubble);
|
|
123158
|
+
const UModal = /* @__PURE__ */wrap(_UModal);
|
|
123159
|
+
const UModalProvider = /* @__PURE__ */wrap(UModalProvider$1);
|
|
123160
|
+
const UModalFullscreen = /* @__PURE__ */wrap(ModalFullscreen);
|
|
123161
|
+
const UNumberAnimation = /* @__PURE__ */wrap(_UNumberAnimation);
|
|
123162
|
+
const UPageHeader = /* @__PURE__ */wrap(_UPageHeader);
|
|
123163
|
+
const UPagination = /* @__PURE__ */wrap(_UPagination);
|
|
123164
|
+
const UPopconfirm = /* @__PURE__ */wrap(_UPopconfirm);
|
|
123165
|
+
const UPopover = /* @__PURE__ */wrap(UPopover$1);
|
|
123166
|
+
const UPopselect = /* @__PURE__ */wrap(_UPopselect);
|
|
123167
|
+
const UProgress = /* @__PURE__ */wrap(_UProgress);
|
|
123168
|
+
const UQrCode = /* @__PURE__ */wrap(_UQrCode);
|
|
123169
|
+
const URadio = /* @__PURE__ */wrap(_URadio);
|
|
123170
|
+
const URadioButton = /* @__PURE__ */wrap(_URadioButton);
|
|
123171
|
+
const URadioGroup = /* @__PURE__ */wrap(_URadioGroup);
|
|
123172
|
+
const URate = /* @__PURE__ */wrap(_URate);
|
|
123173
|
+
const UResult = /* @__PURE__ */wrap(_UResult);
|
|
123174
|
+
const USafeTopScrollbar = /* @__PURE__ */wrap(SafeTopScrollbar);
|
|
123175
|
+
const UScrollbar = /* @__PURE__ */wrap(Scrollbar);
|
|
123176
|
+
const USelect = /* @__PURE__ */wrap(_USelect);
|
|
123177
|
+
const USkeleton = /* @__PURE__ */wrap(_USkeleton);
|
|
123178
|
+
const USlider = /* @__PURE__ */wrap(_USlider);
|
|
123179
|
+
const USpace = /* @__PURE__ */wrap(USpace$1);
|
|
123180
|
+
const USpin = /* @__PURE__ */wrap(_USpin);
|
|
123181
|
+
const USplit = /* @__PURE__ */wrap(_USplit);
|
|
123182
|
+
const UStatistic = /* @__PURE__ */wrap(_UStatistic);
|
|
123183
|
+
const UStatus = /* @__PURE__ */wrap(_UStatus);
|
|
123184
|
+
const UStep = /* @__PURE__ */wrap(_UStep);
|
|
123185
|
+
const USteps = /* @__PURE__ */wrap(_USteps);
|
|
123186
|
+
const USwitch = /* @__PURE__ */wrap(_USwitch);
|
|
123187
|
+
const UTable = /* @__PURE__ */wrap(_UTable);
|
|
123188
|
+
const UTbody = /* @__PURE__ */wrap(_UTbody);
|
|
123189
|
+
const UTd = /* @__PURE__ */wrap(_UTd);
|
|
123190
|
+
const UTh = /* @__PURE__ */wrap(_UTh);
|
|
123191
|
+
const UThead = /* @__PURE__ */wrap(_UThead);
|
|
123192
|
+
const UTr = /* @__PURE__ */wrap(_UTr);
|
|
123193
|
+
const UTab = /* @__PURE__ */wrap(_UTab);
|
|
123194
|
+
const UTabPane = /* @__PURE__ */wrap(_UTabPane);
|
|
123195
|
+
const UTabs = /* @__PURE__ */wrap(_UTabs);
|
|
123196
|
+
const UTag = /* @__PURE__ */wrap(_UTag);
|
|
123197
|
+
const UTagGroup = /* @__PURE__ */wrap(_UTagGroup);
|
|
123198
|
+
const UThing = /* @__PURE__ */wrap(_UThing);
|
|
123199
|
+
const UTime = /* @__PURE__ */wrap(_UTime);
|
|
123200
|
+
const UTimePicker = /* @__PURE__ */wrap(_UTimePicker);
|
|
123201
|
+
const UTimeline = /* @__PURE__ */wrap(_UTimeline);
|
|
123202
|
+
const UTimelineItem = /* @__PURE__ */wrap(_UTimelineItem);
|
|
123203
|
+
const UToggleButton = /* @__PURE__ */wrap(_UToggleButton);
|
|
123204
|
+
const UTooltip = /* @__PURE__ */wrap(_UTooltip);
|
|
123205
|
+
const UTransfer = /* @__PURE__ */wrap(_UTransfer);
|
|
123206
|
+
const UTree = /* @__PURE__ */wrap(_UTree);
|
|
123207
|
+
const UTreeSelect = /* @__PURE__ */wrap(_UTreeSelect);
|
|
123208
|
+
const UBlockquote = /* @__PURE__ */wrap(_UBlockquote);
|
|
123209
|
+
const UH1 = /* @__PURE__ */wrap(UH1$1);
|
|
123210
|
+
const UH2 = /* @__PURE__ */wrap(UH2$1);
|
|
123211
|
+
const UH3 = /* @__PURE__ */wrap(UH3$1);
|
|
123212
|
+
const UH4 = /* @__PURE__ */wrap(UH4$1);
|
|
123213
|
+
const UH5 = /* @__PURE__ */wrap(UH5$1);
|
|
123214
|
+
const UH6 = /* @__PURE__ */wrap(UH6$1);
|
|
123215
|
+
const UHr = /* @__PURE__ */wrap(_UHr);
|
|
123216
|
+
const ULi = /* @__PURE__ */wrap(_ULi);
|
|
123217
|
+
const UOl = /* @__PURE__ */wrap(_UOl);
|
|
123218
|
+
const UText = /* @__PURE__ */wrap(_UText);
|
|
123219
|
+
const UUl = /* @__PURE__ */wrap(_UUl);
|
|
123220
|
+
const UUpload = /* @__PURE__ */wrap(_UUpload);
|
|
123221
|
+
const UUploadDragger = /* @__PURE__ */wrap(_UUploadDragger);
|
|
123222
|
+
const UUploadFileList = /* @__PURE__ */wrap(_UUploadFileList);
|
|
123223
|
+
const UUploadTrigger = /* @__PURE__ */wrap(_UUploadTrigger);
|
|
123224
|
+
const UVirtualList = /* @__PURE__ */wrap(_UVirtualList);
|
|
123225
|
+
const UWatermark = /* @__PURE__ */wrap(_UWatermark);
|
|
123197
123226
|
|
|
123198
123227
|
var components = /*#__PURE__*/Object.freeze({
|
|
123199
123228
|
__proto__: null,
|
|
@@ -123607,7 +123636,7 @@ ${icon.label}`.toLowerCase()
|
|
|
123607
123636
|
});
|
|
123608
123637
|
}
|
|
123609
123638
|
|
|
123610
|
-
var version = "2.3.
|
|
123639
|
+
var version = "2.3.8";
|
|
123611
123640
|
|
|
123612
123641
|
function create({
|
|
123613
123642
|
componentPrefix = "U",
|