@lanaco/lnc-react-ui 4.0.174 → 4.0.176
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/BlogImagePathSection.cjs +26 -0
- package/dist/BlogImagePathSection.js +89 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +17 -15
- package/package.json +3 -2
- package/vite.config.js +4 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";const t=require("react/jsx-runtime"),h=require("react"),l=require("./emotion-styled.browser.esm-BtEseadx.cjs"),u=require("./consts-goSZX3xP.cjs"),w=require("./useDetectMobile-zkbzoOGV.cjs"),_=l.styled.div`
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
width: 100%;
|
|
5
|
+
text-align: center;
|
|
6
|
+
`,b=l.styled.div`
|
|
7
|
+
width: 100%;
|
|
8
|
+
height: 100%;
|
|
9
|
+
|
|
10
|
+
& .wrapper__image {
|
|
11
|
+
width: ${e=>e!=null&&e.imageWidth?`${e==null?void 0:e.imageWidth}px`:"100%"};
|
|
12
|
+
height: ${e=>e!=null&&e.imageHeight?`${e==null?void 0:e.imageHeight}px`:"100%"};
|
|
13
|
+
object-fit: cover;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
//&:hover {
|
|
17
|
+
// cursor: pointer;
|
|
18
|
+
//}
|
|
19
|
+
|
|
20
|
+
//@media (max-width: ${u.MOBILE_SIZE_PX+"px"}) {
|
|
21
|
+
// aspect-ratio: 1 / 1;
|
|
22
|
+
// & .wrapper__image {
|
|
23
|
+
// aspect-ratio: 1 / 1;
|
|
24
|
+
// }
|
|
25
|
+
//}
|
|
26
|
+
`,M=h.forwardRef((e,a)=>{const{image:r,altText:o,imageWidth:s,imageHeight:g,imageMobileWidth:c,imageMobileHeight:n,isMobile:i,onClick:m=()=>{}}=e,d=i?c:s,x=i?n:g;return t.jsx(b,{ref:a,imageWidth:d,imageHeight:x,className:"image-banner__wrapper",children:t.jsx("img",{loading:"lazy",src:r,alt:o,className:"wrapper__image",onClick:m})})}),W=h.forwardRef((e,a)=>{const{image:r,altText:o,imageWidth:s,imageHeight:g,imageMobileWidth:c,imageMobileHeight:n,onClick:i=()=>{}}=e,m=w.useDetectMobile();return t.jsx(_,{ref:a,children:t.jsx(M,{image:r,altText:o,imageWidth:s,imageHeight:g,imageMobileWidth:c,imageMobileHeight:n,isMobile:m,onClick:i})})});module.exports=W;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as c } from "react";
|
|
3
|
+
import { s as l } from "./emotion-styled.browser.esm-BNN1dTl3.js";
|
|
4
|
+
import { M as d } from "./consts-BuFChS64.js";
|
|
5
|
+
import { u as f } from "./useDetectMobile-Bkvj0VMa.js";
|
|
6
|
+
const w = l.div`
|
|
7
|
+
display: flex;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
width: 100%;
|
|
10
|
+
text-align: center;
|
|
11
|
+
`, x = l.div`
|
|
12
|
+
width: 100%;
|
|
13
|
+
height: 100%;
|
|
14
|
+
|
|
15
|
+
& .wrapper__image {
|
|
16
|
+
width: ${(e) => e != null && e.imageWidth ? `${e == null ? void 0 : e.imageWidth}px` : "100%"};
|
|
17
|
+
height: ${(e) => e != null && e.imageHeight ? `${e == null ? void 0 : e.imageHeight}px` : "100%"};
|
|
18
|
+
object-fit: cover;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
//&:hover {
|
|
22
|
+
// cursor: pointer;
|
|
23
|
+
//}
|
|
24
|
+
|
|
25
|
+
//@media (max-width: ${d + "px"}) {
|
|
26
|
+
// aspect-ratio: 1 / 1;
|
|
27
|
+
// & .wrapper__image {
|
|
28
|
+
// aspect-ratio: 1 / 1;
|
|
29
|
+
// }
|
|
30
|
+
//}
|
|
31
|
+
`, _ = c((e, a) => {
|
|
32
|
+
const {
|
|
33
|
+
image: r,
|
|
34
|
+
altText: o,
|
|
35
|
+
imageWidth: g,
|
|
36
|
+
imageHeight: m,
|
|
37
|
+
imageMobileWidth: h,
|
|
38
|
+
imageMobileHeight: s,
|
|
39
|
+
isMobile: i,
|
|
40
|
+
onClick: n = () => {
|
|
41
|
+
}
|
|
42
|
+
} = e;
|
|
43
|
+
return /* @__PURE__ */ t(
|
|
44
|
+
x,
|
|
45
|
+
{
|
|
46
|
+
ref: a,
|
|
47
|
+
imageWidth: i ? h : g,
|
|
48
|
+
imageHeight: i ? s : m,
|
|
49
|
+
className: "image-banner__wrapper",
|
|
50
|
+
children: /* @__PURE__ */ t(
|
|
51
|
+
"img",
|
|
52
|
+
{
|
|
53
|
+
loading: "lazy",
|
|
54
|
+
src: r,
|
|
55
|
+
alt: o,
|
|
56
|
+
className: "wrapper__image",
|
|
57
|
+
onClick: n
|
|
58
|
+
}
|
|
59
|
+
)
|
|
60
|
+
}
|
|
61
|
+
);
|
|
62
|
+
}), v = c((e, a) => {
|
|
63
|
+
const {
|
|
64
|
+
image: r,
|
|
65
|
+
altText: o,
|
|
66
|
+
imageWidth: g,
|
|
67
|
+
imageHeight: m,
|
|
68
|
+
imageMobileWidth: h,
|
|
69
|
+
imageMobileHeight: s,
|
|
70
|
+
onClick: i = () => {
|
|
71
|
+
}
|
|
72
|
+
} = e, n = f();
|
|
73
|
+
return /* @__PURE__ */ t(w, { ref: a, children: /* @__PURE__ */ t(
|
|
74
|
+
_,
|
|
75
|
+
{
|
|
76
|
+
image: r,
|
|
77
|
+
altText: o,
|
|
78
|
+
imageWidth: g,
|
|
79
|
+
imageHeight: m,
|
|
80
|
+
imageMobileWidth: h,
|
|
81
|
+
imageMobileHeight: s,
|
|
82
|
+
isMobile: n,
|
|
83
|
+
onClick: i
|
|
84
|
+
}
|
|
85
|
+
) });
|
|
86
|
+
});
|
|
87
|
+
export {
|
|
88
|
+
v as default
|
|
89
|
+
};
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./CheckBoxInput.cjs"),t=require("./ColorInput.cjs"),e=require("./DateInput.cjs"),n=require("./DecimalInput.cjs"),i=require("./DecimalInputV2.cjs"),c=require("./FileInput.cjs"),a=require("./NumberInput.cjs"),s=require("./PasswordInput.cjs"),u=require("./RadioInput.cjs"),d=require("./RangeSlider.cjs"),q=require("./TextAreaInput.cjs"),l=require("./TextInput.cjs"),S=require("./TimeInput.cjs"),p=require("./Badge.cjs"),g=require("./Chip.cjs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./CheckBoxInput.cjs"),t=require("./ColorInput.cjs"),e=require("./DateInput.cjs"),n=require("./DecimalInput.cjs"),i=require("./DecimalInputV2.cjs"),c=require("./FileInput.cjs"),a=require("./NumberInput.cjs"),s=require("./PasswordInput.cjs"),u=require("./RadioInput.cjs"),d=require("./RangeSlider.cjs"),q=require("./TextAreaInput.cjs"),l=require("./TextInput.cjs"),S=require("./TimeInput.cjs"),p=require("./Badge.cjs"),g=require("./Chip.cjs"),m=require("./DataView.cjs"),B=require("./DetailsView.cjs"),C=require("./EditableTable.cjs"),I=require("./FormView.cjs"),D=require("./Kanban.cjs"),b=require("./KanbanCard-BDvoqTDS.cjs"),T=require("./KanbanHeader.cjs"),P=require("./KanbanFooter.cjs"),F=require("./KanbanView.cjs"),w=require("./KanbanActionsToolbar.cjs"),h=require("./Table.cjs"),f=require("./TableView.cjs"),M=require("./ActionsToolbar.cjs"),A=require("./Alert.cjs"),v=require("./Notification.cjs"),G=require("./NotificationContainer.cjs"),x=require("./NotificationMessage.cjs"),L=require("./ProgressBar.cjs"),y=require("./Spinner.cjs"),K=require("./Avatar.cjs"),N=require("./Button.cjs"),V=require("./Icon.cjs"),W=require("./IconButton.cjs"),k=require("./Link.cjs"),H=require("./Surface.cjs"),R=require("./UploadedFile.cjs"),O=require("./DoubleRangeSlider.cjs"),E=require("./DragAndDropFile.cjs"),Q=require("./DragDropFiles.cjs"),U=require("./Dropdown.cjs"),z=require("./DropdownLookup.cjs"),j=require("./MultiSelectDropdown.cjs"),J=require("./MultiSelectDropdownLookup.cjs"),X=require("./RadioGroup.cjs"),Y=require("./SearchBar.cjs"),Z=require("./Toggle.cjs"),_=require("./ButtonGroup.cjs"),$=require("./Content.cjs"),ee=require("./FlexBox.cjs"),re=require("./FlexGrid.cjs"),oe=require("./FlexGridItem.cjs"),te=require("./Footer.cjs"),ne=require("./FormField.cjs"),ie=require("./Grid.cjs"),ce=require("./GridItem.cjs"),ae=require("./Header.cjs"),se=require("./PageLayout.cjs"),ue=require("./Sidebar.cjs"),de=require("./Tabs.cjs"),qe=require("./TabItem.cjs"),le=require("./Accordion.cjs"),Se=require("./AccordionSummary.cjs"),pe=require("./AccordionDetails.cjs"),ge=require("./Breadcrumbs.cjs"),me=require("./ConfirmationForm.cjs"),Be=require("./Drawer.cjs"),Ce=require("./DropdownMenu.cjs"),Ie=require("./DropdownItem.cjs"),De=require("./NestedDropdownItem.cjs"),be=require("./Separator.cjs"),Te=require("./Modal.cjs"),Pe=require("./Pagination.cjs"),Fe=require("./Popover.cjs"),we=require("./PopoverClose.cjs"),he=require("./PopoverHeading.cjs"),fe=require("./PopoverContent.cjs"),Me=require("./PopoverTrigger.cjs"),Ae=require("./PopoverDescription.cjs"),ve=require("./SwipeableDrawer.cjs"),Ge=require("./TreeMenu.cjs"),xe=require("./MenuItem.cjs"),Le=require("./NestedMenuItem.cjs"),ye=require("./TreeMenuSeparator.cjs"),Ke=require("./MasonryGeneralCardsSection.cjs"),Ne=require("./DetailedProductsSection.cjs"),Ve=require("./DetailedProductsInfinitiveSection.cjs"),We=require("./ProductsWithBannerSection.cjs"),ke=require("./SimpleProductsSection.cjs"),He=require("./UrgentSaleProductsSection.cjs"),Re=require("./BannerSectionCarousel.cjs"),Oe=require("./BannerSectionGrid.cjs"),Ee=require("./BannerSectionSimple.cjs"),Qe=require("./BannerSectionWithList.cjs"),Ue=require("./BannerSectionWithListImage.cjs"),ze=require("./GiftCardsSection.cjs"),je=require("./BrandHitsSection.cjs"),Je=require("./FieldOfInterestsMasonrySection.cjs"),Xe=require("./FieldOfInterestsWithAvatarsCardsSection.cjs"),Ye=require("./FieldOfInterestsWithTagsCardsSection.cjs"),Ze=require("./BannerSectionBasic.cjs"),_e=require("./GeneralWithTagsCardsSection.cjs"),$e=require("./ShopCardsSection.cjs"),er=require("./QuizSection.cjs"),rr=require("./SalesCampaignsSection.cjs"),or=require("./CalorieCalculatorSection.cjs"),tr=require("./BlogCategoryCardsSection.cjs"),nr=require("./BlogProductCardsSection.cjs"),ir=require("./BlogShopCardsSection.cjs"),cr=require("./BlogCardsSponsoredSection.cjs"),ar=require("./BlogListSection.cjs"),sr=require("./AdBannerSection.cjs"),ur=require("./QuattroCardsSection.cjs"),dr=require("./FeedbackSection.cjs"),qr=require("./HelpBannerSection.cjs"),lr=require("./ContactSection.cjs"),Sr=require("./FaqSection.cjs"),pr=require("./SearchSection-BcbHP6QF.cjs"),gr=require("./StatsSection.cjs"),mr=require("./ToggleSection.cjs"),Br=require("./BlogExploreSection.cjs"),Cr=require("./BlogImagePathSection.cjs"),r=require("./ThemeProvider.cjs"),Ir=require("./CustomStyles-C86XQqBE.cjs");exports.CheckBoxInput=o;exports.ColorInput=t;exports.DateInput=e.default;exports.registerLocale=e.registerLocale;exports.DecimalInput=n;exports.DecimalInputV2=i;exports.FileInput=c;exports.NumberInput=a;exports.PasswordInput=s;exports.RadioInput=u;exports.RangeSlider=d;exports.TextAreaInput=q;exports.TextInput=l;exports.TimeInput=S;exports.Badge=p;exports.Chip=g;exports.DataView=m;exports.DetailsView=B;exports.EditableTable=C;exports.FormView=I;exports.Kanban=D;exports.KanbanCard=b.KanbanCard;exports.KanbanHeader=T;exports.KanbanFooter=P;exports.KanbanView=F;exports.KanbanActionsToolbar=w;exports.Table=h.default;exports.TableView=f;exports.ActionsToolbar=M;exports.Alert=A;exports.Notification=v;exports.NotificationContainer=G;exports.NotificationMessage=x;exports.ProgressBar=L;exports.Spinner=y;exports.Avatar=K;exports.Button=N;exports.Icon=V;exports.IconButton=W;exports.Link=k;exports.Surface=H;exports.UploadedFile=R;exports.DoubleRangeSlider=O;exports.DragAndDropFile=E;exports.DragDropFiles=Q;exports.Dropdown=U.default;exports.DropdownLookup=z;exports.MultiSelectDropdown=j;exports.MultiSelectDropdownLookup=J;exports.RadioGroup=X;exports.SearchBar=Y;exports.Toggle=Z;exports.ButtonGroup=_;exports.Content=$;exports.FlexBox=ee;exports.FlexGrid=re;exports.FlexGridItem=oe;exports.Footer=te;exports.FormField=ne;exports.Grid=ie;exports.GridItem=ce;exports.Header=ae;exports.PageLayout=se;exports.Sidebar=ue;exports.Tabs=de;exports.TabItem=qe;exports.Accordion=le;exports.AccordionSummary=Se;exports.AccordionDetails=pe.default;exports.Breadcrumbs=ge;exports.ConfirmationForm=me;exports.Drawer=Be;exports.DropdownMenu=Ce;exports.DropdownItem=Ie;exports.NestedDropdownItem=De;exports.Separator=be;exports.Modal=Te;exports.Pagination=Pe;exports.Popover=Fe;exports.PopoverClose=we;exports.PopoverHeading=he;exports.PopoverContent=fe;exports.PopoverTrigger=Me;exports.PopoverDescription=Ae;exports.SwipeableDrawer=ve;exports.TreeMenu=Ge;exports.MenuItem=xe;exports.NestedMenuItem=Le;exports.TreeMenuSeparator=ye;exports.MasonryGeneralCardsSection=Ke;exports.DetailedProductsSection=Ne;exports.DetailedProductsInfinitiveSection=Ve;exports.ProductsWithBannerSection=We;exports.SimpleProductsSection=ke;exports.UrgentSaleProductsSection=He;exports.BannerSectionCarousel=Re;exports.BannerSectionGrid=Oe;exports.BannerSectionSimple=Ee;exports.BannerSectionWithList=Qe;exports.BannerSectionWithListImage=Ue;exports.GiftCardsSection=ze;exports.BrandHitsSection=je;exports.FieldOfInterestsMasonrySection=Je;exports.FieldOfInterestsWithAvatarsCardsSection=Xe;exports.FieldOfInterestsWithTagsCardsSection=Ye;exports.BannerSectionBasic=Ze;exports.GeneralWithTagsCardsSection=_e;exports.ShopCardsSection=$e;exports.QuizSection=er;exports.SalesCampaignsSection=rr;exports.CalorieCalculatorSection=or;exports.BlogCategoryCardsSection=tr;exports.BlogProductCardsSection=nr;exports.BlogShopCardsSection=ir;exports.BlogCardsSponsoredSection=cr;exports.BlogListSection=ar;exports.AdBannerSection=sr;exports.QuattroCardsSection=ur;exports.FeedbackSection=dr;exports.HelpBannerSection=qr;exports.ContactSection=lr;exports.FaqSection=Sr;exports.SearchSection=pr.SearchSection;exports.StatsSection=gr;exports.ToggleSection=mr;exports.BlogExploreSection=Br;exports.BlogImagePathSection=Cr;exports.ThemeProvider=r.default;exports.useTheme=r.useTheme;exports.components=Ir.components;
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { default as m } from "./DecimalInputV2.js";
|
|
|
6
6
|
import { default as x } from "./FileInput.js";
|
|
7
7
|
import { default as c } from "./NumberInput.js";
|
|
8
8
|
import { default as g } from "./PasswordInput.js";
|
|
9
|
-
import { default as
|
|
9
|
+
import { default as I } from "./RadioInput.js";
|
|
10
10
|
import { default as D } from "./RangeSlider.js";
|
|
11
11
|
import { default as T } from "./TextAreaInput.js";
|
|
12
12
|
import { default as P } from "./TextInput.js";
|
|
@@ -33,7 +33,7 @@ import { default as me } from "./NotificationMessage.js";
|
|
|
33
33
|
import { default as xe } from "./ProgressBar.js";
|
|
34
34
|
import { default as ce } from "./Spinner.js";
|
|
35
35
|
import { default as ge } from "./Avatar.js";
|
|
36
|
-
import { default as
|
|
36
|
+
import { default as Ie } from "./Button.js";
|
|
37
37
|
import { default as De } from "./Icon.js";
|
|
38
38
|
import { default as Te } from "./IconButton.js";
|
|
39
39
|
import { default as Pe } from "./Link.js";
|
|
@@ -60,7 +60,7 @@ import { default as no } from "./Grid.js";
|
|
|
60
60
|
import { default as io } from "./GridItem.js";
|
|
61
61
|
import { default as So } from "./Header.js";
|
|
62
62
|
import { default as Bo } from "./PageLayout.js";
|
|
63
|
-
import { default as
|
|
63
|
+
import { default as Co } from "./Sidebar.js";
|
|
64
64
|
import { default as bo } from "./Tabs.js";
|
|
65
65
|
import { default as Fo } from "./TabItem.js";
|
|
66
66
|
import { default as wo } from "./Accordion.js";
|
|
@@ -87,7 +87,7 @@ import { default as nt } from "./MenuItem.js";
|
|
|
87
87
|
import { default as it } from "./NestedMenuItem.js";
|
|
88
88
|
import { default as St } from "./TreeMenuSeparator.js";
|
|
89
89
|
import { default as Bt } from "./MasonryGeneralCardsSection.js";
|
|
90
|
-
import { default as
|
|
90
|
+
import { default as Ct } from "./DetailedProductsSection.js";
|
|
91
91
|
import { default as bt } from "./DetailedProductsInfinitiveSection.js";
|
|
92
92
|
import { default as Ft } from "./ProductsWithBannerSection.js";
|
|
93
93
|
import { default as wt } from "./SimpleProductsSection.js";
|
|
@@ -114,7 +114,7 @@ import { default as nr } from "./BlogShopCardsSection.js";
|
|
|
114
114
|
import { default as ir } from "./BlogCardsSponsoredSection.js";
|
|
115
115
|
import { default as Sr } from "./BlogListSection.js";
|
|
116
116
|
import { default as Br } from "./AdBannerSection.js";
|
|
117
|
-
import { default as
|
|
117
|
+
import { default as Cr } from "./QuattroCardsSection.js";
|
|
118
118
|
import { default as br } from "./FeedbackSection.js";
|
|
119
119
|
import { default as Fr } from "./HelpBannerSection.js";
|
|
120
120
|
import { default as wr } from "./ContactSection.js";
|
|
@@ -123,8 +123,9 @@ import { S as vr } from "./SearchSection-DDQ_K98T.js";
|
|
|
123
123
|
import { default as Lr } from "./StatsSection.js";
|
|
124
124
|
import { default as Nr } from "./ToggleSection.js";
|
|
125
125
|
import { default as Wr } from "./BlogExploreSection.js";
|
|
126
|
-
import { default as yr
|
|
127
|
-
import {
|
|
126
|
+
import { default as yr } from "./BlogImagePathSection.js";
|
|
127
|
+
import { default as Rr, useTheme as Or } from "./ThemeProvider.js";
|
|
128
|
+
import { c as Qr } from "./CustomStyles-6WboE3g5.js";
|
|
128
129
|
export {
|
|
129
130
|
wo as Accordion,
|
|
130
131
|
vo as AccordionDetails,
|
|
@@ -143,12 +144,13 @@ export {
|
|
|
143
144
|
ir as BlogCardsSponsoredSection,
|
|
144
145
|
lr as BlogCategoryCardsSection,
|
|
145
146
|
Wr as BlogExploreSection,
|
|
147
|
+
yr as BlogImagePathSection,
|
|
146
148
|
Sr as BlogListSection,
|
|
147
149
|
ur as BlogProductCardsSection,
|
|
148
150
|
nr as BlogShopCardsSection,
|
|
149
151
|
Et as BrandHitsSection,
|
|
150
152
|
Lo as Breadcrumbs,
|
|
151
|
-
|
|
153
|
+
Ie as Button,
|
|
152
154
|
Ze as ButtonGroup,
|
|
153
155
|
dr as CalorieCalculatorSection,
|
|
154
156
|
t as CheckBoxInput,
|
|
@@ -162,7 +164,7 @@ export {
|
|
|
162
164
|
p as DecimalInput,
|
|
163
165
|
m as DecimalInputV2,
|
|
164
166
|
bt as DetailedProductsInfinitiveSection,
|
|
165
|
-
|
|
167
|
+
Ct as DetailedProductsSection,
|
|
166
168
|
V as DetailsView,
|
|
167
169
|
Ge as DoubleRangeSlider,
|
|
168
170
|
Ke as DragAndDropFile,
|
|
@@ -222,17 +224,17 @@ export {
|
|
|
222
224
|
at as PopoverTrigger,
|
|
223
225
|
Ft as ProductsWithBannerSection,
|
|
224
226
|
xe as ProgressBar,
|
|
225
|
-
|
|
227
|
+
Cr as QuattroCardsSection,
|
|
226
228
|
tr as QuizSection,
|
|
227
229
|
qe as RadioGroup,
|
|
228
|
-
|
|
230
|
+
I as RadioInput,
|
|
229
231
|
D as RangeSlider,
|
|
230
232
|
ar as SalesCampaignsSection,
|
|
231
233
|
je as SearchBar,
|
|
232
234
|
vr as SearchSection,
|
|
233
235
|
Uo as Separator,
|
|
234
236
|
er as ShopCardsSection,
|
|
235
|
-
|
|
237
|
+
Co as Sidebar,
|
|
236
238
|
wt as SimpleProductsSection,
|
|
237
239
|
ce as Spinner,
|
|
238
240
|
Lr as StatsSection,
|
|
@@ -244,7 +246,7 @@ export {
|
|
|
244
246
|
bo as Tabs,
|
|
245
247
|
T as TextAreaInput,
|
|
246
248
|
P as TextInput,
|
|
247
|
-
|
|
249
|
+
Rr as ThemeProvider,
|
|
248
250
|
h as TimeInput,
|
|
249
251
|
Xe as Toggle,
|
|
250
252
|
Nr as ToggleSection,
|
|
@@ -252,7 +254,7 @@ export {
|
|
|
252
254
|
St as TreeMenuSeparator,
|
|
253
255
|
Me as UploadedFile,
|
|
254
256
|
At as UrgentSaleProductsSection,
|
|
255
|
-
|
|
257
|
+
Qr as components,
|
|
256
258
|
s as registerLocale,
|
|
257
|
-
|
|
259
|
+
Or as useTheme
|
|
258
260
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lanaco/lnc-react-ui",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.176",
|
|
4
4
|
"description": "React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -165,7 +165,8 @@
|
|
|
165
165
|
"./SearchSection": "./dist/SearchSection.js",
|
|
166
166
|
"./StatsSection": "./dist/StatsSection.js",
|
|
167
167
|
"./ToggleSection": "./dist/ToggleSection.js",
|
|
168
|
-
"./BlogExploreSection": "./dist/BlogExploreSection.js"
|
|
168
|
+
"./BlogExploreSection": "./dist/BlogExploreSection.js",
|
|
169
|
+
"./BlogImagePathSection": "./dist/BlogImagePathSection.js"
|
|
169
170
|
},
|
|
170
171
|
"dependencies": {
|
|
171
172
|
"@dnd-kit/core": "^6.0.5",
|
package/vite.config.js
CHANGED
|
@@ -343,6 +343,10 @@ export default defineConfig({
|
|
|
343
343
|
__dirname,
|
|
344
344
|
"src/Landing Sections/blogs-sections/blog-explore-section/BlogExploreSection.jsx"
|
|
345
345
|
),
|
|
346
|
+
resolve(
|
|
347
|
+
__dirname,
|
|
348
|
+
"src/Blog Sections/blog-image-path-section/BlogImagePathSection.jsx"
|
|
349
|
+
),
|
|
346
350
|
],
|
|
347
351
|
name: "@lanaco/lnc-react-ui",
|
|
348
352
|
fileName: (format, name) => {
|