@lanaco/lnc-react-ui 4.0.27 → 4.0.29
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/GiftCardsSection.cjs +108 -0
- package/dist/GiftCardsSection.js +168 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +33 -31
- package/package.json +2 -1
- package/vite.config.js +18 -14
- /package/dist/{index15.cjs → BannerSectionCarousel.cjs} +0 -0
- /package/dist/{index15.js → BannerSectionCarousel.js} +0 -0
- /package/dist/{index5.cjs → BannerSectionGrid.cjs} +0 -0
- /package/dist/{index5.js → BannerSectionGrid.js} +0 -0
- /package/dist/{index6.cjs → BannerSectionSimple.cjs} +0 -0
- /package/dist/{index6.js → BannerSectionSimple.js} +0 -0
- /package/dist/{index7.cjs → BannerSectionWithList.cjs} +0 -0
- /package/dist/{index7.js → BannerSectionWithList.js} +0 -0
- /package/dist/{index8.cjs → BannerSectionWithListImage.cjs} +0 -0
- /package/dist/{index8.js → BannerSectionWithListImage.js} +0 -0
- /package/dist/{index11.cjs → BrandHitsSection.cjs} +0 -0
- /package/dist/{index11.js → BrandHitsSection.js} +0 -0
- /package/dist/{index2.cjs → DetailedProductsSection.cjs} +0 -0
- /package/dist/{index2.js → DetailedProductsSection.js} +0 -0
- /package/dist/{index12.cjs → FieldOfInterestsMasonrySection.cjs} +0 -0
- /package/dist/{index12.js → FieldOfInterestsMasonrySection.js} +0 -0
- /package/dist/{index13.cjs → FieldOfInterestsWithAvatarsCardsSection.cjs} +0 -0
- /package/dist/{index13.js → FieldOfInterestsWithAvatarsCardsSection.js} +0 -0
- /package/dist/{index14.cjs → FieldOfInterestsWithTagsCardsSection.cjs} +0 -0
- /package/dist/{index14.js → FieldOfInterestsWithTagsCardsSection.js} +0 -0
- /package/dist/{index9.cjs → MasonryGeneralCardsSection.cjs} +0 -0
- /package/dist/{index9.js → MasonryGeneralCardsSection.js} +0 -0
- /package/dist/{index10.cjs → ProductsWithBannerSection.cjs} +0 -0
- /package/dist/{index10.js → ProductsWithBannerSection.js} +0 -0
- /package/dist/{index3.cjs → SimpleProductsSection.cjs} +0 -0
- /package/dist/{index3.js → SimpleProductsSection.js} +0 -0
- /package/dist/{index4.cjs → UrgentSaleProductsSection.cjs} +0 -0
- /package/dist/{index4.js → UrgentSaleProductsSection.js} +0 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"use strict";const r=require("react/jsx-runtime"),f=require("react"),s=require("./utils-CE6bljYe.cjs"),g=require("./emotion-styled.browser.esm-Cbp_XsK4.cjs"),w=require("./consts-dNz9tpt4.cjs"),_=g.newStyled.div`
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
align-items: flex-start;
|
|
5
|
+
gap: 0.75rem;
|
|
6
|
+
|
|
7
|
+
& .wrapper__card {
|
|
8
|
+
width: 100%;
|
|
9
|
+
height: auto;
|
|
10
|
+
border-radius: 0.75rem;
|
|
11
|
+
position: relative;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
|
|
14
|
+
& .wrapper__image {
|
|
15
|
+
width: 100%;
|
|
16
|
+
object-fit: cover;
|
|
17
|
+
height: auto;
|
|
18
|
+
border-radius: 0.75rem;
|
|
19
|
+
border: 1px solid var(--yellow-600, #d97706);
|
|
20
|
+
|
|
21
|
+
/* drop-shadow-sm */
|
|
22
|
+
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
& .wrapper__tag {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
position: absolute;
|
|
30
|
+
left: -40%;
|
|
31
|
+
top: 10%;
|
|
32
|
+
filter: drop-shadow(1px 1px 0px #d97706);
|
|
33
|
+
background: var(--yellow-500, #f59e0b);
|
|
34
|
+
color: var(--white, #fff);
|
|
35
|
+
width: 100%;
|
|
36
|
+
height: 2rem;
|
|
37
|
+
font-weight: 600;
|
|
38
|
+
font-size: 0.875rem;
|
|
39
|
+
|
|
40
|
+
-moz-transform: rotate(-45deg);
|
|
41
|
+
-o-transform: rotate(-45deg);
|
|
42
|
+
-webkit-transform: rotate(-45deg);
|
|
43
|
+
transform: rotate(-45deg);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
& .wrapper__text {
|
|
48
|
+
color: var(--gray-950, #14161a);
|
|
49
|
+
text-align: center;
|
|
50
|
+
font-size: 1rem;
|
|
51
|
+
font-style: normal;
|
|
52
|
+
font-weight: 500;
|
|
53
|
+
line-height: 1.5rem;
|
|
54
|
+
width: 100%;
|
|
55
|
+
${s.truncateTextInRows(2)}
|
|
56
|
+
}
|
|
57
|
+
`,h=g.newStyled.div`
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 11.5rem;
|
|
60
|
+
border-radius: 0.75rem;
|
|
61
|
+
background: ${s.linearGradientAnimation("-90deg")};
|
|
62
|
+
`,d=f.forwardRef(({image:t,imageComponent:n,text:i,price:l,currency:m,onSelectCard:o=()=>{}},a)=>r.jsxs(_,{onClick:o,children:[r.jsxs("div",{className:"wrapper__card",children:[s.isDefined(n)?n:r.jsx("img",{src:t,className:"wrapper__image"}),r.jsx("div",{className:"wrapper__tag",children:`${s.formatPrice(l)} ${s.GetCurrencySymbol(m)}`})]}),r.jsx("div",{className:"wrapper__text",children:i})]})),u=f.forwardRef(({},t)=>r.jsx(h,{})),c=g.newStyled.div`
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
align-items: center;
|
|
66
|
+
gap: 1.5rem;
|
|
67
|
+
|
|
68
|
+
& .wrapper__heading {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
gap: 1rem;
|
|
72
|
+
|
|
73
|
+
& .wrapper__title {
|
|
74
|
+
color: var(--gray-950, #14161a);
|
|
75
|
+
text-align: center;
|
|
76
|
+
font-size: 1.5rem;
|
|
77
|
+
font-style: normal;
|
|
78
|
+
font-weight: 600;
|
|
79
|
+
line-height: 2rem;
|
|
80
|
+
letter-spacing: -0.47px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
& .wrapper__subtitle {
|
|
84
|
+
color: var(---gray-600, #676e79);
|
|
85
|
+
font-size: 0.875rem;
|
|
86
|
+
font-style: normal;
|
|
87
|
+
font-weight: 400;
|
|
88
|
+
line-height: 1.25rem;
|
|
89
|
+
letter-spacing: 0.25px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
& .wrapper__cards {
|
|
94
|
+
display: grid;
|
|
95
|
+
grid-template-columns: ${t=>`repeat(${t==null?void 0:t.limitCards}, minmax(0, 1fr))`};
|
|
96
|
+
gap: 1.25rem;
|
|
97
|
+
justify-items: center;
|
|
98
|
+
align-items: center;
|
|
99
|
+
width: 100%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@media (max-width: ${w.MOBILE_SIZE_PX+"px"}) {
|
|
103
|
+
& .wrapper__cards {
|
|
104
|
+
grid-template-columns: ${t=>`repeat(${t==null?void 0:t.limitCardsForMobile}, minmax(0, 1fr))`};
|
|
105
|
+
gap: 1rem;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
`,y=f.forwardRef(({title:t,subtitle:n,cards:i,limitCards:l=4,limitCardsForMobile:m=1,onSelectCard:o=()=>{}})=>{var x;const a=e=>{o==null||o(e==null?void 0:e.uuid)};return r.jsxs(c,{limitCards:l,limitCardsForMobile:m,children:[r.jsxs("div",{className:"wrapper__heading",children:[t&&r.jsx("div",{className:"wrapper__title",children:t}),n&&r.jsx("div",{className:"wrapper__subtitle",children:n})]}),r.jsx("div",{className:"wrapper__cards",children:i&&(i==null?void 0:i.length)>0?i==null?void 0:i.map((e,p)=>r.jsx(d,{uuid:e==null?void 0:e.uuid,text:e==null?void 0:e.text,price:e==null?void 0:e.price,currency:e==null?void 0:e.currency,image:e==null?void 0:e.image,imageComponent:e==null?void 0:e.imageComponent,onSelectCard:()=>a==null?void 0:a(e)},`gift-card__${p+1}`)):(x=Array.from("1234"))==null?void 0:x.map((e,p)=>r.jsx(u,{},`gift-card-skeleton__${p+1}`))})]})});module.exports=y;
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { jsxs as l, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as f } from "react";
|
|
3
|
+
import { t as _, m as w, l as d, n as x, G as u } from "./utils-DtEdJZWa.js";
|
|
4
|
+
import { n as g } from "./emotion-styled.browser.esm-BiK8DcgW.js";
|
|
5
|
+
import { M as c } from "./consts-DNVz1x1I.js";
|
|
6
|
+
const y = g.div`
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
align-items: flex-start;
|
|
10
|
+
gap: 0.75rem;
|
|
11
|
+
|
|
12
|
+
& .wrapper__card {
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: auto;
|
|
15
|
+
border-radius: 0.75rem;
|
|
16
|
+
position: relative;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
|
|
19
|
+
& .wrapper__image {
|
|
20
|
+
width: 100%;
|
|
21
|
+
object-fit: cover;
|
|
22
|
+
height: auto;
|
|
23
|
+
border-radius: 0.75rem;
|
|
24
|
+
border: 1px solid var(--yellow-600, #d97706);
|
|
25
|
+
|
|
26
|
+
/* drop-shadow-sm */
|
|
27
|
+
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
& .wrapper__tag {
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
position: absolute;
|
|
35
|
+
left: -40%;
|
|
36
|
+
top: 10%;
|
|
37
|
+
filter: drop-shadow(1px 1px 0px #d97706);
|
|
38
|
+
background: var(--yellow-500, #f59e0b);
|
|
39
|
+
color: var(--white, #fff);
|
|
40
|
+
width: 100%;
|
|
41
|
+
height: 2rem;
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
font-size: 0.875rem;
|
|
44
|
+
|
|
45
|
+
-moz-transform: rotate(-45deg);
|
|
46
|
+
-o-transform: rotate(-45deg);
|
|
47
|
+
-webkit-transform: rotate(-45deg);
|
|
48
|
+
transform: rotate(-45deg);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
& .wrapper__text {
|
|
53
|
+
color: var(--gray-950, #14161a);
|
|
54
|
+
text-align: center;
|
|
55
|
+
font-size: 1rem;
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: 500;
|
|
58
|
+
line-height: 1.5rem;
|
|
59
|
+
width: 100%;
|
|
60
|
+
${_(2)}
|
|
61
|
+
}
|
|
62
|
+
`, v = g.div`
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 11.5rem;
|
|
65
|
+
border-radius: 0.75rem;
|
|
66
|
+
background: ${w("-90deg")};
|
|
67
|
+
`, b = f(
|
|
68
|
+
({ image: t, imageComponent: o, text: r, price: m, currency: p, onSelectCard: n = () => {
|
|
69
|
+
} }, a) => /* @__PURE__ */ l(y, { onClick: n, children: [
|
|
70
|
+
/* @__PURE__ */ l("div", { className: "wrapper__card", children: [
|
|
71
|
+
d(o) ? o : /* @__PURE__ */ i("img", { src: t, className: "wrapper__image" }),
|
|
72
|
+
/* @__PURE__ */ i("div", { className: "wrapper__tag", children: `${x(
|
|
73
|
+
m
|
|
74
|
+
)} ${u(p)}` })
|
|
75
|
+
] }),
|
|
76
|
+
/* @__PURE__ */ i("div", { className: "wrapper__text", children: r })
|
|
77
|
+
] })
|
|
78
|
+
), $ = f(({}, t) => /* @__PURE__ */ i(v, {})), N = g.div`
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-direction: column;
|
|
81
|
+
align-items: center;
|
|
82
|
+
gap: 1.5rem;
|
|
83
|
+
|
|
84
|
+
& .wrapper__heading {
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: column;
|
|
87
|
+
gap: 1rem;
|
|
88
|
+
|
|
89
|
+
& .wrapper__title {
|
|
90
|
+
color: var(--gray-950, #14161a);
|
|
91
|
+
text-align: center;
|
|
92
|
+
font-size: 1.5rem;
|
|
93
|
+
font-style: normal;
|
|
94
|
+
font-weight: 600;
|
|
95
|
+
line-height: 2rem;
|
|
96
|
+
letter-spacing: -0.47px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
& .wrapper__subtitle {
|
|
100
|
+
color: var(---gray-600, #676e79);
|
|
101
|
+
font-size: 0.875rem;
|
|
102
|
+
font-style: normal;
|
|
103
|
+
font-weight: 400;
|
|
104
|
+
line-height: 1.25rem;
|
|
105
|
+
letter-spacing: 0.25px;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
& .wrapper__cards {
|
|
110
|
+
display: grid;
|
|
111
|
+
grid-template-columns: ${(t) => `repeat(${t == null ? void 0 : t.limitCards}, minmax(0, 1fr))`};
|
|
112
|
+
gap: 1.25rem;
|
|
113
|
+
justify-items: center;
|
|
114
|
+
align-items: center;
|
|
115
|
+
width: 100%;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@media (max-width: ${c + "px"}) {
|
|
119
|
+
& .wrapper__cards {
|
|
120
|
+
grid-template-columns: ${(t) => `repeat(${t == null ? void 0 : t.limitCardsForMobile}, minmax(0, 1fr))`};
|
|
121
|
+
gap: 1rem;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
`, I = f(
|
|
125
|
+
({
|
|
126
|
+
title: t,
|
|
127
|
+
subtitle: o,
|
|
128
|
+
cards: r,
|
|
129
|
+
limitCards: m = 4,
|
|
130
|
+
limitCardsForMobile: p = 1,
|
|
131
|
+
onSelectCard: n = () => {
|
|
132
|
+
}
|
|
133
|
+
}) => {
|
|
134
|
+
var h;
|
|
135
|
+
const a = (e) => {
|
|
136
|
+
n == null || n(e == null ? void 0 : e.uuid);
|
|
137
|
+
};
|
|
138
|
+
return /* @__PURE__ */ l(
|
|
139
|
+
N,
|
|
140
|
+
{
|
|
141
|
+
limitCards: m,
|
|
142
|
+
limitCardsForMobile: p,
|
|
143
|
+
children: [
|
|
144
|
+
/* @__PURE__ */ l("div", { className: "wrapper__heading", children: [
|
|
145
|
+
t && /* @__PURE__ */ i("div", { className: "wrapper__title", children: t }),
|
|
146
|
+
o && /* @__PURE__ */ i("div", { className: "wrapper__subtitle", children: o })
|
|
147
|
+
] }),
|
|
148
|
+
/* @__PURE__ */ i("div", { className: "wrapper__cards", children: r && (r == null ? void 0 : r.length) > 0 ? r == null ? void 0 : r.map((e, s) => /* @__PURE__ */ i(
|
|
149
|
+
b,
|
|
150
|
+
{
|
|
151
|
+
uuid: e == null ? void 0 : e.uuid,
|
|
152
|
+
text: e == null ? void 0 : e.text,
|
|
153
|
+
price: e == null ? void 0 : e.price,
|
|
154
|
+
currency: e == null ? void 0 : e.currency,
|
|
155
|
+
image: e == null ? void 0 : e.image,
|
|
156
|
+
imageComponent: e == null ? void 0 : e.imageComponent,
|
|
157
|
+
onSelectCard: () => a == null ? void 0 : a(e)
|
|
158
|
+
},
|
|
159
|
+
`gift-card__${s + 1}`
|
|
160
|
+
)) : (h = Array.from("1234")) == null ? void 0 : h.map((e, s) => /* @__PURE__ */ i($, {}, `gift-card-skeleton__${s + 1}`)) })
|
|
161
|
+
]
|
|
162
|
+
}
|
|
163
|
+
);
|
|
164
|
+
}
|
|
165
|
+
);
|
|
166
|
+
export {
|
|
167
|
+
I as default
|
|
168
|
+
};
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./CheckBoxInput.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"),s=require("./NumberInput.cjs"),a=require("./PasswordInput.cjs"),u=require("./RadioInput.cjs"),d=require("./RangeSlider.cjs"),q=require("./TextAreaInput.cjs"),l=require("./TextInput.cjs"),p=require("./TimeInput.cjs"),S=require("./Badge.cjs"),m=require("./Chip.cjs"),I=require("./DataView.cjs"),D=require("./DetailsView.cjs"),b=require("./EditableTable.cjs"),g=require("./FormView.cjs"),T=require("./Kanban.cjs"),w=require("./KanbanCard-CofqdTrO.cjs"),B=require("./KanbanHeader.cjs"),F=require("./KanbanFooter.cjs"),P=require("./KanbanView.cjs"),C=require("./KanbanActionsToolbar.cjs"),f=require("./Table.cjs"),M=require("./TableView.cjs"),h=require("./ActionsToolbar.cjs"),A=require("./Alert.cjs"),v=require("./Notification.cjs"),G=require("./NotificationContainer.cjs"),x=require("./NotificationMessage.cjs"),L=require("./ProgressBar.cjs"),K=require("./Spinner.cjs"),N=require("./Avatar.cjs"),V=require("./Button.cjs"),y=require("./Icon.cjs"),W=require("./IconButton.cjs"),k=require("./Link.cjs"),H=require("./Surface.cjs"),R=require("./UploadedFile.cjs"),O=require("./DoubleRangeSlider.cjs"),U=require("./DragAndDropFile.cjs"),E=require("./DragDropFiles.cjs"),j=require("./Dropdown.cjs"),z=require("./DropdownLookup.cjs"),J=require("./MultiSelectDropdown.cjs"),Q=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"),se=require("./Header.cjs"),ae=require("./PageLayout.cjs"),ue=require("./Sidebar.cjs"),de=require("./Tabs.cjs"),qe=require("./TabItem.cjs"),le=require("./Accordion.cjs"),pe=require("./AccordionSummary.cjs"),Se=require("./AccordionDetails.cjs"),me=require("./Breadcrumbs.cjs"),Ie=require("./ConfirmationForm.cjs"),De=require("./Drawer.cjs"),be=require("./DropdownMenu.cjs"),ge=require("./DropdownItem.cjs"),Te=require("./NestedDropdownItem.cjs"),we=require("./Separator.cjs"),Be=require("./Modal.cjs"),Fe=require("./Pagination.cjs"),Pe=require("./Popover.cjs"),Ce=require("./PopoverClose.cjs"),fe=require("./PopoverHeading.cjs"),Me=require("./PopoverContent.cjs"),he=require("./PopoverTrigger.cjs"),Ae=require("./PopoverDescription.cjs"),ve=require("./SwipeableDrawer.cjs"),Ge=require("./TreeMenu.cjs"),xe=require("./MenuItem.cjs"),Le=require("./NestedMenuItem.cjs"),Ke=require("./TreeMenuSeparator.cjs"),Ne=require("./MasonryGeneralCardsSection.cjs"),Ve=require("./DetailedProductsSection.cjs"),ye=require("./ProductsWithBannerSection.cjs"),We=require("./SimpleProductsSection.cjs"),ke=require("./UrgentSaleProductsSection.cjs"),He=require("./BannerSectionCarousel.cjs"),Re=require("./BannerSectionGrid.cjs"),Oe=require("./BannerSectionSimple.cjs"),Ue=require("./BannerSectionWithList.cjs"),Ee=require("./BannerSectionWithListImage.cjs"),je=require("./GiftCardsSection.cjs"),ze=require("./BrandHitsSection.cjs"),Je=require("./FieldOfInterestsMasonrySection.cjs"),Qe=require("./FieldOfInterestsWithAvatarsCardsSection.cjs"),Xe=require("./FieldOfInterestsWithTagsCardsSection.cjs"),r=require("./ThemeProvider.cjs"),Ye=require("./CustomStyles-CBON9fD-.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=s;exports.PasswordInput=a;exports.RadioInput=u;exports.RangeSlider=d;exports.TextAreaInput=q;exports.TextInput=l;exports.TimeInput=p;exports.Badge=S;exports.Chip=m;exports.DataView=I;exports.DetailsView=D;exports.EditableTable=b;exports.FormView=g;exports.Kanban=T;exports.KanbanCard=w.KanbanCard;exports.KanbanHeader=B;exports.KanbanFooter=F;exports.KanbanView=P;exports.KanbanActionsToolbar=C;exports.Table=f.default;exports.TableView=M;exports.ActionsToolbar=h;exports.Alert=A;exports.Notification=v;exports.NotificationContainer=G;exports.NotificationMessage=x;exports.ProgressBar=L;exports.Spinner=K;exports.Avatar=N;exports.Button=V;exports.Icon=y;exports.IconButton=W;exports.Link=k;exports.Surface=H;exports.UploadedFile=R;exports.DoubleRangeSlider=O;exports.DragAndDropFile=U;exports.DragDropFiles=E;exports.Dropdown=j.default;exports.DropdownLookup=z;exports.MultiSelectDropdown=J;exports.MultiSelectDropdownLookup=Q;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=se;exports.PageLayout=ae;exports.Sidebar=ue;exports.Tabs=de;exports.TabItem=qe;exports.Accordion=le;exports.AccordionSummary=pe;exports.AccordionDetails=Se.default;exports.Breadcrumbs=me;exports.ConfirmationForm=Ie;exports.Drawer=De;exports.DropdownMenu=be;exports.DropdownItem=ge;exports.NestedDropdownItem=Te;exports.Separator=we;exports.Modal=Be;exports.Pagination=Fe;exports.Popover=Pe;exports.PopoverClose=Ce;exports.PopoverHeading=fe;exports.PopoverContent=Me;exports.PopoverTrigger=he;exports.PopoverDescription=Ae;exports.SwipeableDrawer=ve;exports.TreeMenu=Ge;exports.MenuItem=xe;exports.NestedMenuItem=Le;exports.TreeMenuSeparator=Ke;exports.MasonryGeneralCardsSection=Ne;exports.DetailedProductsSection=Ve;exports.ProductsWithBannerSection=ye;exports.SimpleProductsSection=We;exports.UrgentSaleProductsSection=ke;exports.BannerSectionCarousel=He;exports.BannerSectionGrid=Re;exports.BannerSectionSimple=Oe;exports.BannerSectionWithList=Ue;exports.BannerSectionWithListImage=Ee;exports.GiftCardsSection=je;exports.BrandHitsSection=ze;exports.FieldOfInterestsMasonrySection=Je;exports.FieldOfInterestsWithAvatarsCardsSection=Qe;exports.FieldOfInterestsWithTagsCardsSection=Xe;exports.ThemeProvider=r.default;exports.useTheme=r.useTheme;exports.components=Ye.components;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as r } from "./CheckBoxInput.js";
|
|
2
2
|
import { default as a } from "./ColorInput.js";
|
|
3
|
-
import { default as d, registerLocale as
|
|
3
|
+
import { default as d, registerLocale as s } from "./DateInput.js";
|
|
4
4
|
import { default as l } from "./DecimalInput.js";
|
|
5
5
|
import { default as m } from "./DecimalInputV2.js";
|
|
6
6
|
import { default as n } from "./FileInput.js";
|
|
@@ -27,7 +27,7 @@ import { default as $ } from "./Table.js";
|
|
|
27
27
|
import { default as oe } from "./TableView.js";
|
|
28
28
|
import { default as te } from "./ActionsToolbar.js";
|
|
29
29
|
import { default as fe } from "./Alert.js";
|
|
30
|
-
import { default as
|
|
30
|
+
import { default as se } from "./Notification.js";
|
|
31
31
|
import { default as le } from "./NotificationContainer.js";
|
|
32
32
|
import { default as me } from "./NotificationMessage.js";
|
|
33
33
|
import { default as ne } from "./ProgressBar.js";
|
|
@@ -54,7 +54,7 @@ import { default as $e } from "./Content.js";
|
|
|
54
54
|
import { default as oo } from "./FlexBox.js";
|
|
55
55
|
import { default as to } from "./FlexGrid.js";
|
|
56
56
|
import { default as fo } from "./FlexGridItem.js";
|
|
57
|
-
import { default as
|
|
57
|
+
import { default as po } from "./Footer.js";
|
|
58
58
|
import { default as uo } from "./FormField.js";
|
|
59
59
|
import { default as xo } from "./Grid.js";
|
|
60
60
|
import { default as io } from "./GridItem.js";
|
|
@@ -81,27 +81,28 @@ import { default as er } from "./PopoverHeading.js";
|
|
|
81
81
|
import { default as rr } from "./PopoverContent.js";
|
|
82
82
|
import { default as ar } from "./PopoverTrigger.js";
|
|
83
83
|
import { default as dr } from "./PopoverDescription.js";
|
|
84
|
-
import { default as
|
|
84
|
+
import { default as pr } from "./SwipeableDrawer.js";
|
|
85
85
|
import { default as ur } from "./TreeMenu.js";
|
|
86
86
|
import { default as xr } from "./MenuItem.js";
|
|
87
87
|
import { default as ir } from "./NestedMenuItem.js";
|
|
88
88
|
import { default as Sr } from "./TreeMenuSeparator.js";
|
|
89
|
-
import { default as Dr } from "./
|
|
90
|
-
import { default as gr } from "./
|
|
91
|
-
import { default as wr } from "./
|
|
92
|
-
import { default as Fr } from "./
|
|
93
|
-
import { default as Cr } from "./
|
|
94
|
-
import { default as hr } from "./
|
|
95
|
-
import { default as vr } from "./
|
|
96
|
-
import { default as Kr } from "./
|
|
97
|
-
import { default as Nr } from "./
|
|
98
|
-
import { default as Wr } from "./
|
|
99
|
-
import { default as yr } from "./
|
|
100
|
-
import { default as Rr } from "./
|
|
101
|
-
import { default as Ur } from "./
|
|
102
|
-
import { default as jr } from "./
|
|
103
|
-
import { default as zr
|
|
104
|
-
import {
|
|
89
|
+
import { default as Dr } from "./MasonryGeneralCardsSection.js";
|
|
90
|
+
import { default as gr } from "./DetailedProductsSection.js";
|
|
91
|
+
import { default as wr } from "./ProductsWithBannerSection.js";
|
|
92
|
+
import { default as Fr } from "./SimpleProductsSection.js";
|
|
93
|
+
import { default as Cr } from "./UrgentSaleProductsSection.js";
|
|
94
|
+
import { default as hr } from "./BannerSectionCarousel.js";
|
|
95
|
+
import { default as vr } from "./BannerSectionGrid.js";
|
|
96
|
+
import { default as Kr } from "./BannerSectionSimple.js";
|
|
97
|
+
import { default as Nr } from "./BannerSectionWithList.js";
|
|
98
|
+
import { default as Wr } from "./BannerSectionWithListImage.js";
|
|
99
|
+
import { default as yr } from "./GiftCardsSection.js";
|
|
100
|
+
import { default as Rr } from "./BrandHitsSection.js";
|
|
101
|
+
import { default as Ur } from "./FieldOfInterestsMasonrySection.js";
|
|
102
|
+
import { default as jr } from "./FieldOfInterestsWithAvatarsCardsSection.js";
|
|
103
|
+
import { default as zr } from "./FieldOfInterestsWithTagsCardsSection.js";
|
|
104
|
+
import { default as Qr, useTheme as Xr } from "./ThemeProvider.js";
|
|
105
|
+
import { c as Zr } from "./CustomStyles-DuADCM-0.js";
|
|
105
106
|
export {
|
|
106
107
|
Co as Accordion,
|
|
107
108
|
vo as AccordionDetails,
|
|
@@ -115,7 +116,7 @@ export {
|
|
|
115
116
|
Kr as BannerSectionSimple,
|
|
116
117
|
Nr as BannerSectionWithList,
|
|
117
118
|
Wr as BannerSectionWithListImage,
|
|
118
|
-
|
|
119
|
+
Rr as BrandHitsSection,
|
|
119
120
|
Ko as Breadcrumbs,
|
|
120
121
|
be as Button,
|
|
121
122
|
Ze as ButtonGroup,
|
|
@@ -139,16 +140,17 @@ export {
|
|
|
139
140
|
He as DropdownLookup,
|
|
140
141
|
yo as DropdownMenu,
|
|
141
142
|
k as EditableTable,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
Ur as FieldOfInterestsMasonrySection,
|
|
144
|
+
jr as FieldOfInterestsWithAvatarsCardsSection,
|
|
145
|
+
zr as FieldOfInterestsWithTagsCardsSection,
|
|
145
146
|
n as FileInput,
|
|
146
147
|
oo as FlexBox,
|
|
147
148
|
to as FlexGrid,
|
|
148
149
|
fo as FlexGridItem,
|
|
149
|
-
|
|
150
|
+
po as Footer,
|
|
150
151
|
uo as FormField,
|
|
151
152
|
H as FormView,
|
|
153
|
+
yr as GiftCardsSection,
|
|
152
154
|
xo as Grid,
|
|
153
155
|
io as GridItem,
|
|
154
156
|
So as Header,
|
|
@@ -168,7 +170,7 @@ export {
|
|
|
168
170
|
Ee as MultiSelectDropdownLookup,
|
|
169
171
|
Uo as NestedDropdownItem,
|
|
170
172
|
ir as NestedMenuItem,
|
|
171
|
-
|
|
173
|
+
se as Notification,
|
|
172
174
|
le as NotificationContainer,
|
|
173
175
|
me as NotificationMessage,
|
|
174
176
|
c as NumberInput,
|
|
@@ -192,21 +194,21 @@ export {
|
|
|
192
194
|
Fr as SimpleProductsSection,
|
|
193
195
|
ce as Spinner,
|
|
194
196
|
Me as Surface,
|
|
195
|
-
|
|
197
|
+
pr as SwipeableDrawer,
|
|
196
198
|
Fo as TabItem,
|
|
197
199
|
$ as Table,
|
|
198
200
|
oe as TableView,
|
|
199
201
|
wo as Tabs,
|
|
200
202
|
B as TextAreaInput,
|
|
201
203
|
P as TextInput,
|
|
202
|
-
|
|
204
|
+
Qr as ThemeProvider,
|
|
203
205
|
M as TimeInput,
|
|
204
206
|
Xe as Toggle,
|
|
205
207
|
ur as TreeMenu,
|
|
206
208
|
Sr as TreeMenuSeparator,
|
|
207
209
|
Ae as UploadedFile,
|
|
208
210
|
Cr as UrgentSaleProductsSection,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
211
|
+
Zr as components,
|
|
212
|
+
s as registerLocale,
|
|
213
|
+
Xr as useTheme
|
|
212
214
|
};
|
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.29",
|
|
4
4
|
"description": "React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
"./BannerSectionSimple": "./dist/BannerSectionSimple.js",
|
|
125
125
|
"./BannerSectionWithList": "./dist/BannerSectionWithList.js",
|
|
126
126
|
"./BannerSectionWithListImage": "./dist/BannerSectionWithListImage.js",
|
|
127
|
+
"./GiftCardsSection": "./dist/GiftCardsSection.js",
|
|
127
128
|
"./BrandHitsSection": "./dist/BrandHitsSection.js",
|
|
128
129
|
"./FieldOfInterestsMasonrySection": "./dist/FieldOfInterestsMasonrySection.js",
|
|
129
130
|
"./FieldOfInterestsWithAvatarsCardsSection": "./dist/FieldOfInterestsWithAvatarsCardsSection.js",
|
package/vite.config.js
CHANGED
|
@@ -143,59 +143,63 @@ export default defineConfig({
|
|
|
143
143
|
//--------------------------------------------------------------------
|
|
144
144
|
resolve(
|
|
145
145
|
__dirname,
|
|
146
|
-
"src/Landing Sections/general-sections/masonry-general-cards-section/
|
|
146
|
+
"src/Landing Sections/general-sections/masonry-general-cards-section/MasonryGeneralCardsSection.jsx"
|
|
147
147
|
),
|
|
148
148
|
resolve(
|
|
149
149
|
__dirname,
|
|
150
|
-
"src/Landing Sections/products-sections/detailed-products-section/
|
|
150
|
+
"src/Landing Sections/products-sections/detailed-products-section/DetailedProductsSection.jsx"
|
|
151
151
|
),
|
|
152
152
|
resolve(
|
|
153
153
|
__dirname,
|
|
154
|
-
"src/Landing Sections/products-sections/products-with-banner-section/
|
|
154
|
+
"src/Landing Sections/products-sections/products-with-banner-section/ProductsWithBannerSection.jsx"
|
|
155
155
|
),
|
|
156
156
|
resolve(
|
|
157
157
|
__dirname,
|
|
158
|
-
"src/Landing Sections/products-sections/simple-products-section/
|
|
158
|
+
"src/Landing Sections/products-sections/simple-products-section/SimpleProductsSection.jsx"
|
|
159
159
|
),
|
|
160
160
|
resolve(
|
|
161
161
|
__dirname,
|
|
162
|
-
"src/Landing Sections/products-sections/urgent-sale-products-section/
|
|
162
|
+
"src/Landing Sections/products-sections/urgent-sale-products-section/UrgentSaleProductsSection.jsx"
|
|
163
163
|
),
|
|
164
164
|
resolve(
|
|
165
165
|
__dirname,
|
|
166
|
-
"src/Landing Sections/banners-sections/banner-section-carousel/
|
|
166
|
+
"src/Landing Sections/banners-sections/banner-section-carousel/BannerSectionCarousel.jsx"
|
|
167
167
|
),
|
|
168
168
|
resolve(
|
|
169
169
|
__dirname,
|
|
170
|
-
"src/Landing Sections/banners-sections/banner-section-grid/
|
|
170
|
+
"src/Landing Sections/banners-sections/banner-section-grid/BannerSectionGrid.jsx"
|
|
171
171
|
),
|
|
172
172
|
resolve(
|
|
173
173
|
__dirname,
|
|
174
|
-
"src/Landing Sections/banners-sections/banner-section-simple/
|
|
174
|
+
"src/Landing Sections/banners-sections/banner-section-simple/BannerSectionSimple.jsx"
|
|
175
175
|
),
|
|
176
176
|
resolve(
|
|
177
177
|
__dirname,
|
|
178
|
-
"src/Landing Sections/banners-sections/banner-section-with-list/
|
|
178
|
+
"src/Landing Sections/banners-sections/banner-section-with-list/BannerSectionWithList.jsx"
|
|
179
179
|
),
|
|
180
180
|
resolve(
|
|
181
181
|
__dirname,
|
|
182
|
-
"src/Landing Sections/banners-sections/banner-section-with-list-image/
|
|
182
|
+
"src/Landing Sections/banners-sections/banner-section-with-list-image/BannerSectionWithListImage.jsx"
|
|
183
183
|
),
|
|
184
184
|
resolve(
|
|
185
185
|
__dirname,
|
|
186
|
-
"src/Landing Sections/
|
|
186
|
+
"src/Landing Sections/gift-sections/gift-cards-section/GiftCardsSection.jsx"
|
|
187
187
|
),
|
|
188
188
|
resolve(
|
|
189
189
|
__dirname,
|
|
190
|
-
"src/Landing Sections/
|
|
190
|
+
"src/Landing Sections/brand-sections/brand-hits-section/BrandHitsSection.jsx"
|
|
191
191
|
),
|
|
192
192
|
resolve(
|
|
193
193
|
__dirname,
|
|
194
|
-
"src/Landing Sections/field-of-interests-sections/field-of-interests-
|
|
194
|
+
"src/Landing Sections/field-of-interests-sections/field-of-interests-masonry-section/FieldOfInterestsMasonrySection.jsx"
|
|
195
195
|
),
|
|
196
196
|
resolve(
|
|
197
197
|
__dirname,
|
|
198
|
-
"src/Landing Sections/field-of-interests-sections/field-of-interests-with-
|
|
198
|
+
"src/Landing Sections/field-of-interests-sections/field-of-interests-with-avatars-cards-section/FieldOfInterestsWithAvatarsCardsSection.jsx"
|
|
199
|
+
),
|
|
200
|
+
resolve(
|
|
201
|
+
__dirname,
|
|
202
|
+
"src/Landing Sections/field-of-interests-sections/field-of-interests-with-tags-cards-section/FieldOfInterestsWithTagsCardsSection.jsx"
|
|
199
203
|
),
|
|
200
204
|
],
|
|
201
205
|
name: "@lanaco/lnc-react-ui",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|