@lanaco/lnc-react-ui 4.0.122 → 4.0.123
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/BannerSectionCarousel.cjs +112 -126
- package/dist/BannerSectionCarousel.js +654 -1509
- package/dist/DateInput.cjs +1 -1
- package/dist/DateInput.js +1 -1
- package/dist/FieldOfInterestsWithTagsCardsSection.cjs +8 -7
- package/dist/FieldOfInterestsWithTagsCardsSection.js +30 -29
- package/dist/Kanban.cjs +1 -1
- package/dist/Kanban.js +2 -2
- package/dist/{KanbanCard-Crf-cTxA.js → KanbanCard-68kSAXL6.js} +1 -1
- package/dist/{KanbanCard-CP60mpJO.cjs → KanbanCard-BDvoqTDS.cjs} +1 -1
- package/dist/KanbanCard.cjs +1 -1
- package/dist/KanbanCard.js +1 -1
- package/dist/KanbanView.cjs +1 -1
- package/dist/KanbanView.js +1 -1
- package/dist/OverlayGeneralCardsSection.cjs +107 -62
- package/dist/OverlayGeneralCardsSection.js +174 -160
- package/dist/index-Bg5OOQN0.cjs +5 -0
- package/dist/{index-BXrmgzsU.js → index-fN7hCOo3.js} +4 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/index-BZnmT78f.cjs +0 -5
|
@@ -1,194 +1,208 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import {
|
|
1
|
+
import { jsxs as c, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as f } from "react";
|
|
3
|
+
import { P as t } from "./index-CblbdqjE.js";
|
|
4
|
+
import _ from "./Button.js";
|
|
5
|
+
import { s as g } from "./emotion-styled.browser.esm-BNN1dTl3.js";
|
|
4
6
|
import { M as h } from "./consts-BuFChS64.js";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
gap: 1.25rem;
|
|
13
|
-
justify-items: center;
|
|
14
|
-
|
|
15
|
-
@media (max-width: ${h + "px"}) {
|
|
16
|
-
display: flex;
|
|
17
|
-
flex-direction: column;
|
|
18
|
-
gap: 1rem;
|
|
19
|
-
}
|
|
20
|
-
`, u = f.div`
|
|
21
|
-
width: 100%;
|
|
22
|
-
overflow: hidden;
|
|
23
|
-
position: relative;
|
|
24
|
-
|
|
25
|
-
border-radius: 0.75rem;
|
|
26
|
-
background: ${(n) => n == null ? void 0 : n.overlay};
|
|
7
|
+
const u = g.div`
|
|
8
|
+
display: flex;
|
|
9
|
+
height: 28.75rem;
|
|
10
|
+
padding: 2.25rem;
|
|
11
|
+
align-items: flex-start;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
justify-content: space-between;
|
|
27
14
|
cursor: pointer;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
width: 100%;
|
|
36
|
-
object-fit: cover;
|
|
37
|
-
}
|
|
15
|
+
flex: 1;
|
|
16
|
+
flex-shrink: 0;
|
|
17
|
+
background: ${(r) => r == null ? void 0 : r.backgroundColor}, url(${(r) => r == null ? void 0 : r.backgroundImage});
|
|
18
|
+
background-size: cover;
|
|
19
|
+
background-repeat: no-repeat;
|
|
20
|
+
background-position: center;
|
|
21
|
+
border-radius: 0.75rem;
|
|
38
22
|
|
|
39
23
|
&:hover {
|
|
40
|
-
|
|
41
|
-
transform: scale(1.1);
|
|
42
|
-
}
|
|
24
|
+
flex: 2;
|
|
43
25
|
}
|
|
44
26
|
|
|
45
|
-
& .
|
|
46
|
-
position: absolute;
|
|
47
|
-
right: 0;
|
|
48
|
-
top: 0;
|
|
49
|
-
padding: 2.25rem;
|
|
27
|
+
& .section__text {
|
|
50
28
|
display: flex;
|
|
51
29
|
flex-direction: column;
|
|
30
|
+
align-items: flex-start;
|
|
52
31
|
gap: 1rem;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
32
|
+
align-self: stretch;
|
|
33
|
+
|
|
34
|
+
& .section__title {
|
|
35
|
+
color: var(--white, #fff);
|
|
36
|
+
font-size: 1rem;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-weight: 500;
|
|
39
|
+
line-height: 1.5rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
& .section__description {
|
|
43
|
+
color: var(--white, #fff);
|
|
44
|
+
font-size: 1.375rem;
|
|
45
|
+
font-style: normal;
|
|
46
|
+
font-weight: 600;
|
|
47
|
+
line-height: 1.75rem;
|
|
48
|
+
}
|
|
56
49
|
}
|
|
57
50
|
|
|
58
|
-
&
|
|
59
|
-
width: fit-content;
|
|
60
|
-
color: var(--gray-950, #14161a);
|
|
51
|
+
& .section__action {
|
|
61
52
|
background: var(--white, #fff);
|
|
53
|
+
color: var(--gray-950, #14161a);
|
|
54
|
+
font-size: 0.875rem;
|
|
55
|
+
font-style: normal;
|
|
56
|
+
font-weight: 500;
|
|
57
|
+
line-height: 1.25rem;
|
|
62
58
|
|
|
63
59
|
&:hover {
|
|
64
60
|
color: var(--gray-700, #4e555f);
|
|
65
|
-
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&:focus {
|
|
64
|
+
outline: none;
|
|
66
65
|
}
|
|
67
66
|
}
|
|
68
67
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
gap: 1rem;
|
|
73
|
-
color: var(--white, #fff);
|
|
74
|
-
font-size: 1rem;
|
|
75
|
-
font-weight: 500;
|
|
68
|
+
@media (max-width: ${h + "px"}) {
|
|
69
|
+
padding: 2rem;
|
|
70
|
+
min-height: 17.5rem;
|
|
76
71
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
${x(2)}
|
|
72
|
+
&:hover {
|
|
73
|
+
flex: 1;
|
|
80
74
|
}
|
|
81
|
-
}
|
|
82
75
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
min-height: 28.75rem;
|
|
86
|
-
}
|
|
76
|
+
& .section__text {
|
|
77
|
+
gap: 0.5rem;
|
|
87
78
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
79
|
+
& .section__title {
|
|
80
|
+
font-size: 0.875rem;
|
|
81
|
+
line-height: 1.25rem;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
& .section__description {
|
|
85
|
+
font-size: 1rem;
|
|
86
|
+
line-height: 1.5rem;
|
|
87
|
+
}
|
|
94
88
|
}
|
|
95
89
|
}
|
|
96
|
-
`,
|
|
97
|
-
C,
|
|
98
|
-
{
|
|
99
|
-
isLoading: o
|
|
100
|
-
},
|
|
101
|
-
`${t}-skeleton-product-card-${a}`
|
|
102
|
-
)) }), S = ({
|
|
103
|
-
children: n,
|
|
104
|
-
fallbackComponent: o = /* @__PURE__ */ r(p, {}),
|
|
105
|
-
isLoading: t = !1,
|
|
106
|
-
limit: l,
|
|
107
|
-
keyPrefix: a
|
|
108
|
-
}) => /* @__PURE__ */ r(m, { fallbackComponent: o, children: t === !0 ? /* @__PURE__ */ r(
|
|
109
|
-
N,
|
|
110
|
-
{
|
|
111
|
-
isLoading: t,
|
|
112
|
-
limit: l,
|
|
113
|
-
keyPrefix: a
|
|
114
|
-
}
|
|
115
|
-
) : n }), _ = g(
|
|
90
|
+
`, m = f(
|
|
116
91
|
({
|
|
117
|
-
title:
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
92
|
+
title: r,
|
|
93
|
+
description: n,
|
|
94
|
+
buttonText: i,
|
|
95
|
+
imageUrl: a,
|
|
96
|
+
backgroundColor: d,
|
|
97
|
+
handleSelectCard: e = () => {
|
|
123
98
|
},
|
|
124
|
-
|
|
99
|
+
handleButtonAction: l = () => {
|
|
125
100
|
}
|
|
126
|
-
},
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
101
|
+
}, p) => /* @__PURE__ */ c(
|
|
102
|
+
u,
|
|
103
|
+
{
|
|
104
|
+
backgroundImage: a,
|
|
105
|
+
backgroundColor: d,
|
|
106
|
+
onClick: e,
|
|
107
|
+
children: [
|
|
108
|
+
/* @__PURE__ */ c("div", { className: "section__text", children: [
|
|
109
|
+
r && /* @__PURE__ */ o("div", { className: "section__title", children: r }),
|
|
110
|
+
n && /* @__PURE__ */ o("div", { className: "section__description", children: n })
|
|
111
|
+
] }),
|
|
112
|
+
/* @__PURE__ */ o(
|
|
113
|
+
_,
|
|
114
|
+
{
|
|
115
|
+
text: i,
|
|
116
|
+
onClick: (s) => {
|
|
117
|
+
s == null || s.stopPropagation(), l();
|
|
118
|
+
},
|
|
119
|
+
borderRadius: "regular",
|
|
120
|
+
color: "gray",
|
|
121
|
+
className: "section__action"
|
|
122
|
+
}
|
|
123
|
+
)
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
)
|
|
127
|
+
);
|
|
128
|
+
m.propTypes = {
|
|
129
|
+
title: t.string,
|
|
130
|
+
description: t.string,
|
|
131
|
+
buttonText: t.string,
|
|
132
|
+
imageUrl: t.string,
|
|
133
|
+
backgroundColor: t.string,
|
|
134
|
+
handleSelectCard: t.func,
|
|
135
|
+
handleButtonAction: t.func
|
|
136
|
+
};
|
|
137
|
+
const x = g.div`
|
|
138
|
+
display: flex;
|
|
139
|
+
flex-direction: column;
|
|
140
|
+
align-items: flex-start;
|
|
141
|
+
gap: 1.5rem;
|
|
142
|
+
|
|
143
|
+
& .section__title {
|
|
144
|
+
color: var(--gray-950, #14161a);
|
|
145
|
+
font-size: 1.5rem;
|
|
146
|
+
font-style: normal;
|
|
147
|
+
font-weight: 600;
|
|
148
|
+
line-height: 2rem;
|
|
149
|
+
letter-spacing: -0.0294rem;
|
|
156
150
|
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
items:
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
151
|
+
|
|
152
|
+
& .section__items {
|
|
153
|
+
display: flex;
|
|
154
|
+
align-items: center;
|
|
155
|
+
gap: 1rem;
|
|
156
|
+
width: 100%;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
& .section__item {
|
|
160
|
+
background: lightblue;
|
|
161
|
+
height: 24rem;
|
|
162
|
+
transition: width 0.5s ease;
|
|
163
|
+
flex-shrink: 0;
|
|
164
|
+
display: flex;
|
|
165
|
+
justify-content: center;
|
|
166
|
+
align-items: center;
|
|
167
|
+
cursor: pointer;
|
|
168
|
+
flex: 1;
|
|
169
|
+
|
|
170
|
+
&:hover {
|
|
171
|
+
flex: 2;
|
|
172
|
+
transition: width 0.5s ease;
|
|
166
173
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@media (max-width: ${h + "px"}) {
|
|
177
|
+
& .section__title {
|
|
178
|
+
font-size: 1.375rem;
|
|
179
|
+
line-height: 1.75rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
& .section__items {
|
|
183
|
+
flex-direction: column;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
`, z = f(
|
|
187
|
+
({ title: r, items: n, onSelectCard: i = () => {
|
|
188
|
+
}, onButtonAction: a = () => {
|
|
189
|
+
} }, d) => /* @__PURE__ */ c(x, { children: [
|
|
190
|
+
/* @__PURE__ */ o("div", { className: "section__title", children: r }),
|
|
191
|
+
/* @__PURE__ */ o("div", { className: "section__items", children: n == null ? void 0 : n.map((e, l) => /* @__PURE__ */ o(
|
|
192
|
+
m,
|
|
171
193
|
{
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
backgroundColor: e == null ? void 0 : e.backgroundColor,
|
|
183
|
-
handleClick: () => l(e == null ? void 0 : e.selectAction, e),
|
|
184
|
-
onButtonAction: () => c(e == null ? void 0 : e.buttonLink, e)
|
|
185
|
-
},
|
|
186
|
-
`landing-page-overlay-general-card__${s + 1}`
|
|
187
|
-
))
|
|
188
|
-
}
|
|
189
|
-
) })
|
|
194
|
+
title: e == null ? void 0 : e.title,
|
|
195
|
+
description: e == null ? void 0 : e.description,
|
|
196
|
+
imageUrl: e == null ? void 0 : e.imageUrl,
|
|
197
|
+
buttonText: e == null ? void 0 : e.buttonText,
|
|
198
|
+
backgroundColor: e == null ? void 0 : e.backgroundColor,
|
|
199
|
+
handleSelectCard: () => i(e),
|
|
200
|
+
handleButtonAction: () => a(e)
|
|
201
|
+
},
|
|
202
|
+
`overlay-general-card__${l + 1}`
|
|
203
|
+
)) })
|
|
190
204
|
] })
|
|
191
205
|
);
|
|
192
206
|
export {
|
|
193
|
-
|
|
207
|
+
z as default
|
|
194
208
|
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";const a=require("./_commonjsHelpers-DwTZ_eVU.cjs");var i={exports:{}};/*!
|
|
2
|
+
Copyright (c) 2018 Jed Watson.
|
|
3
|
+
Licensed under the MIT License (MIT), see
|
|
4
|
+
http://jedwatson.github.io/classnames
|
|
5
|
+
*/(function(n){(function(){var c={}.hasOwnProperty;function e(){for(var t="",r=0;r<arguments.length;r++){var s=arguments[r];s&&(t=o(t,f(s)))}return t}function f(t){if(typeof t=="string"||typeof t=="number")return t;if(typeof t!="object")return"";if(Array.isArray(t))return e.apply(null,t);if(t.toString!==Object.prototype.toString&&!t.toString.toString().includes("[native code]"))return t.toString();var r="";for(var s in t)c.call(t,s)&&t[s]&&(r=o(r,s));return r}function o(t,r){return r?t?t+" "+r:t+r:t}n.exports?(e.default=e,n.exports=e):window.classNames=e})()})(i);var u=i.exports;const p=a.getDefaultExportFromCjs(u);exports.classNames=p;
|
|
@@ -7,15 +7,15 @@ var i = { exports: {} };
|
|
|
7
7
|
*/
|
|
8
8
|
(function(e) {
|
|
9
9
|
(function() {
|
|
10
|
-
var
|
|
10
|
+
var f = {}.hasOwnProperty;
|
|
11
11
|
function s() {
|
|
12
12
|
for (var t = "", r = 0; r < arguments.length; r++) {
|
|
13
13
|
var n = arguments[r];
|
|
14
|
-
n && (t = o(t,
|
|
14
|
+
n && (t = o(t, a(n)));
|
|
15
15
|
}
|
|
16
16
|
return t;
|
|
17
17
|
}
|
|
18
|
-
function
|
|
18
|
+
function a(t) {
|
|
19
19
|
if (typeof t == "string" || typeof t == "number")
|
|
20
20
|
return t;
|
|
21
21
|
if (typeof t != "object")
|
|
@@ -26,7 +26,7 @@ var i = { exports: {} };
|
|
|
26
26
|
return t.toString();
|
|
27
27
|
var r = "";
|
|
28
28
|
for (var n in t)
|
|
29
|
-
|
|
29
|
+
f.call(t, n) && t[n] && (r = o(r, n));
|
|
30
30
|
return r;
|
|
31
31
|
}
|
|
32
32
|
function o(t, r) {
|
|
@@ -38,6 +38,5 @@ var i = { exports: {} };
|
|
|
38
38
|
var p = i.exports;
|
|
39
39
|
const l = /* @__PURE__ */ c(p);
|
|
40
40
|
export {
|
|
41
|
-
p as a,
|
|
42
41
|
l as c
|
|
43
42
|
};
|
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"),C=require("./DataView.cjs"),m=require("./DetailsView.cjs"),B=require("./EditableTable.cjs"),I=require("./FormView.cjs"),D=require("./Kanban.cjs"),b=require("./KanbanCard-
|
|
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"),C=require("./DataView.cjs"),m=require("./DetailsView.cjs"),B=require("./EditableTable.cjs"),I=require("./FormView.cjs"),D=require("./Kanban.cjs"),b=require("./KanbanCard-BDvoqTDS.cjs"),T=require("./KanbanHeader.cjs"),F=require("./KanbanFooter.cjs"),P=require("./KanbanView.cjs"),w=require("./KanbanActionsToolbar.cjs"),h=require("./Table.cjs"),f=require("./TableView.cjs"),M=require("./ActionsToolbar.cjs"),A=require("./Alert.cjs"),G=require("./Notification.cjs"),v=require("./NotificationContainer.cjs"),L=require("./NotificationMessage.cjs"),x=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"),Q=require("./DragAndDropFile.cjs"),U=require("./DragDropFiles.cjs"),z=require("./Dropdown.cjs"),E=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"),Ce=require("./ConfirmationForm.cjs"),me=require("./Drawer.cjs"),Be=require("./DropdownMenu.cjs"),Ie=require("./DropdownItem.cjs"),De=require("./NestedDropdownItem.cjs"),be=require("./Separator.cjs"),Te=require("./Modal.cjs"),Fe=require("./Pagination.cjs"),Pe=require("./Popover.cjs"),we=require("./PopoverClose.cjs"),he=require("./PopoverHeading.cjs"),fe=require("./PopoverContent.cjs"),Me=require("./PopoverTrigger.cjs"),Ae=require("./PopoverDescription.cjs"),Ge=require("./SwipeableDrawer.cjs"),ve=require("./TreeMenu.cjs"),Le=require("./MenuItem.cjs"),xe=require("./NestedMenuItem.cjs"),ye=require("./TreeMenuSeparator.cjs"),Ke=require("./MasonryGeneralCardsSection.cjs"),Ne=require("./DetailedProductsSection.cjs"),Ve=require("./ProductsWithBannerSection.cjs"),We=require("./SimpleProductsSection.cjs"),ke=require("./UrgentSaleProductsSection.cjs"),He=require("./BannerSectionCarousel.cjs"),Re=require("./BannerSectionGrid.cjs"),Oe=require("./BannerSectionSimple.cjs"),Qe=require("./BannerSectionWithList.cjs"),Ue=require("./BannerSectionWithListImage.cjs"),ze=require("./GiftCardsSection.cjs"),Ee=require("./BrandHitsSection.cjs"),je=require("./FieldOfInterestsMasonrySection.cjs"),Je=require("./FieldOfInterestsWithAvatarsCardsSection.cjs"),Xe=require("./FieldOfInterestsWithTagsCardsSection.cjs"),Ye=require("./BannerSectionBasic.cjs"),Ze=require("./GeneralWithTagsCardsSection.cjs"),_e=require("./ShopCardsSection.cjs"),$e=require("./QuizSection.cjs"),er=require("./SalesCampaignsSection.cjs"),rr=require("./CalorieCalculatorSection.cjs"),or=require("./BlogCategoryCardsSection.cjs"),tr=require("./BlogProductCardsSection.cjs"),nr=require("./BlogShopCardsSection.cjs"),ir=require("./BlogCardsSponsoredSection.cjs"),cr=require("./BlogListSection.cjs"),ar=require("./AdBannerSection.cjs"),sr=require("./QuattroCardsSection.cjs"),ur=require("./FeedbackSection.cjs"),dr=require("./HelpBannerSection.cjs"),qr=require("./ContactSection.cjs"),lr=require("./FaqSection.cjs"),Sr=require("./SearchSection-BGK1Fxaj.cjs"),pr=require("./StatsSection.cjs"),gr=require("./ToggleSection.cjs"),r=require("./ThemeProvider.cjs"),Cr=require("./CustomStyles-D3JePSNK.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=C;exports.DetailsView=m;exports.EditableTable=B;exports.FormView=I;exports.Kanban=D;exports.KanbanCard=b.KanbanCard;exports.KanbanHeader=T;exports.KanbanFooter=F;exports.KanbanView=P;exports.KanbanActionsToolbar=w;exports.Table=h.default;exports.TableView=f;exports.ActionsToolbar=M;exports.Alert=A;exports.Notification=G;exports.NotificationContainer=v;exports.NotificationMessage=L;exports.ProgressBar=x;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=Q;exports.DragDropFiles=U;exports.Dropdown=z.default;exports.DropdownLookup=E;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=Ce;exports.Drawer=me;exports.DropdownMenu=Be;exports.DropdownItem=Ie;exports.NestedDropdownItem=De;exports.Separator=be;exports.Modal=Te;exports.Pagination=Fe;exports.Popover=Pe;exports.PopoverClose=we;exports.PopoverHeading=he;exports.PopoverContent=fe;exports.PopoverTrigger=Me;exports.PopoverDescription=Ae;exports.SwipeableDrawer=Ge;exports.TreeMenu=ve;exports.MenuItem=Le;exports.NestedMenuItem=xe;exports.TreeMenuSeparator=ye;exports.MasonryGeneralCardsSection=Ke;exports.DetailedProductsSection=Ne;exports.ProductsWithBannerSection=Ve;exports.SimpleProductsSection=We;exports.UrgentSaleProductsSection=ke;exports.BannerSectionCarousel=He;exports.BannerSectionGrid=Re;exports.BannerSectionSimple=Oe;exports.BannerSectionWithList=Qe;exports.BannerSectionWithListImage=Ue;exports.GiftCardsSection=ze;exports.BrandHitsSection=Ee;exports.FieldOfInterestsMasonrySection=je;exports.FieldOfInterestsWithAvatarsCardsSection=Je;exports.FieldOfInterestsWithTagsCardsSection=Xe;exports.BannerSectionBasic=Ye;exports.GeneralWithTagsCardsSection=Ze;exports.ShopCardsSection=_e;exports.QuizSection=$e;exports.SalesCampaignsSection=er;exports.CalorieCalculatorSection=rr;exports.BlogCategoryCardsSection=or;exports.BlogProductCardsSection=tr;exports.BlogShopCardsSection=nr;exports.BlogCardsSponsoredSection=ir;exports.BlogListSection=cr;exports.AdBannerSection=ar;exports.QuattroCardsSection=sr;exports.FeedbackSection=ur;exports.HelpBannerSection=dr;exports.ContactSection=qr;exports.FaqSection=lr;exports.SearchSection=Sr.SearchSection;exports.StatsSection=pr;exports.ToggleSection=gr;exports.ThemeProvider=r.default;exports.useTheme=r.useTheme;exports.components=Cr.components;
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import { default as V } from "./DetailsView.js";
|
|
|
18
18
|
import { default as k } from "./EditableTable.js";
|
|
19
19
|
import { default as H } from "./FormView.js";
|
|
20
20
|
import { default as O } from "./Kanban.js";
|
|
21
|
-
import { K as U } from "./KanbanCard-
|
|
21
|
+
import { K as U } from "./KanbanCard-68kSAXL6.js";
|
|
22
22
|
import { default as z } from "./KanbanHeader.js";
|
|
23
23
|
import { default as j } from "./KanbanFooter.js";
|
|
24
24
|
import { default as X } from "./KanbanView.js";
|