amotify 0.1.30 → 0.1.32
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/@declaration/_.js +1 -1
- package/dist/@styles/componentClasses/_.css +102 -99
- package/dist/@styles/componentClasses/_.js +46 -46
- package/dist/@styles/index.css +102 -99
- package/dist/@styles/index.js +46 -46
- package/dist/@styles/init.css +2 -2
- package/dist/@styles/style.css +102 -99
- package/dist/@styles/style.js +46 -46
- package/dist/@styles/var.css +2 -2
- package/dist/@utils/GenerateClassName.js +470 -1
- package/dist/@utils/LaunchReactApp.js +78 -1
- package/dist/@utils/_.js +12 -1
- package/dist/@utils/collectForm.js +96 -1
- package/dist/@utils/color.js +103 -1
- package/dist/@utils/config.js +101 -1
- package/dist/@utils/fin.js +39 -1
- package/dist/@utils/getElement.js +13 -1
- package/dist/@utils/jsminEx.js +172 -1
- package/dist/@utils/pageTransit.js +33 -1
- package/dist/@utils/useRecycle.js +44 -1
- package/dist/@utils/useStore.js +54 -1
- package/dist/atoms/Box.js +20 -1
- package/dist/atoms/FAI.js +148 -1
- package/dist/atoms/Flex.js +34 -1
- package/dist/atoms/Grid.js +17 -1
- package/dist/atoms/Img.js +65 -1
- package/dist/atoms/Logo.js +359 -51
- package/dist/atoms/P.js +20 -1
- package/dist/atoms/Placeholder.js +44 -1
- package/dist/atoms/Span.js +20 -1
- package/dist/atoms/_.js +9 -1
- package/dist/chunk-JJ3PEWPN.js +60 -0
- package/dist/fn/Button.js +316 -1
- package/dist/fn/Cropper.js +1009 -1
- package/dist/fn/Effect/Fade.js +88 -1
- package/dist/fn/Effect/Pudding.js +22 -1
- package/dist/fn/Effect/Ripple.js +117 -3
- package/dist/fn/Effect/_.js +14 -1
- package/dist/fn/Input/AutoHeightText.js +112 -1
- package/dist/fn/Input/Checker.js +36 -1
- package/dist/fn/Input/Chips/Selector.js +472 -1
- package/dist/fn/Input/Chips/_.js +349 -1
- package/dist/fn/Input/Contenteditable.d.ts +1 -1
- package/dist/fn/Input/Contenteditable.js +160 -1
- package/dist/fn/Input/DigitCharacters.js +275 -1
- package/dist/fn/Input/Filer.js +619 -1
- package/dist/fn/Input/Hidden.js +48 -1
- package/dist/fn/Input/List.js +450 -1
- package/dist/fn/Input/Parts.js +121 -1
- package/dist/fn/Input/Plain.js +12 -1
- package/dist/fn/Input/RichSelect.js +279 -1
- package/dist/fn/Input/Search.js +53 -1
- package/dist/fn/Input/Segmented.js +245 -1
- package/dist/fn/Input/Select.js +278 -1
- package/dist/fn/Input/Slider.js +538 -1
- package/dist/fn/Input/Switch.js +221 -1
- package/dist/fn/Input/Text.js +626 -1
- package/dist/fn/Input/TextArea.js +151 -1
- package/dist/fn/Input/Time/Picker.js +1457 -1
- package/dist/fn/Input/Time/_.js +867 -1
- package/dist/fn/Input/_.js +48 -1
- package/dist/fn/Input/core.js +626 -1
- package/dist/fn/Layout/PageNotFound.js +90 -1
- package/dist/fn/Layout/PageRouter.js +87 -1
- package/dist/fn/Layout/PageViewController.js +29 -1
- package/dist/fn/Layout/Plate.js +37 -1
- package/dist/fn/Layout/RootViewController.js +315 -1
- package/dist/fn/Layout/SwipeView.js +348 -1
- package/dist/fn/Layout/TabBar.js +72 -1
- package/dist/fn/Layout/_.js +22 -1
- package/dist/fn/Loader/_.js +104 -1
- package/dist/fn/Loader/corner.js +85 -1
- package/dist/fn/Loader/mini.js +125 -1
- package/dist/fn/Loader/top.js +73 -1
- package/dist/fn/Sheet.js +1101 -1
- package/dist/fn/Snackbar.js +216 -1
- package/dist/fn/Table/Data.js +974 -1
- package/dist/fn/Table/Drag.js +435 -1
- package/dist/fn/Table/Normal.js +136 -1
- package/dist/fn/Table/Parts.js +41 -1
- package/dist/fn/Table/Wrapper.js +60 -1
- package/dist/fn/Table/_.js +16 -1
- package/dist/fn/Table/cellStyling.js +51 -1
- package/dist/fn/Tooltips.js +58 -1
- package/dist/fn/_.js +10 -1
- package/dist/index.js +20 -1
- package/dist/mols/Accordion.js +152 -1
- package/dist/mols/Column.js +16 -1
- package/dist/mols/LinkifyText.js +42 -1
- package/dist/mols/List.js +42 -1
- package/dist/mols/Row.js +47 -1
- package/dist/mols/Text.js +67 -1
- package/dist/mols/_.js +6 -1
- package/dist/temps/_.js +1 -1
- package/dist/temps/designBook.js +3639 -20
- package/package.json +1 -1
package/dist/atoms/Logo.js
CHANGED
|
@@ -1,51 +1,359 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
A 500,500 0 0,0 100,600
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
A 100,100 0 0,1 1100,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadProps,
|
|
4
|
+
__spreadValues
|
|
5
|
+
} from "../chunk-JJ3PEWPN.js";
|
|
6
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import {
|
|
8
|
+
$$
|
|
9
|
+
} from "../@utils/_";
|
|
10
|
+
import Flex from "./Flex";
|
|
11
|
+
import Img from "./Img";
|
|
12
|
+
import { LogoClasses } from "../@styles/componentClasses/_";
|
|
13
|
+
let publicURI = "https://cdn.amotify.com/";
|
|
14
|
+
const SVG = {
|
|
15
|
+
ComunIcon: () => {
|
|
16
|
+
return /* @__PURE__ */ jsx("svg", { viewBox: "0,0,1200,1200", className: LogoClasses("ComunIcon"), children: /* @__PURE__ */ jsxs("g", { children: [
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "\n M\n 100,600\n A 500,500 0 0,0 600,1100\n A 100,100 0 0,0 600,900\n A 300,300 0 0,1 300,600\n A 100,100 0 0,0 100,600\n Z\n ",
|
|
21
|
+
style: {
|
|
22
|
+
opacity: 0.9,
|
|
23
|
+
fill: "#16a3ec"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "\n M\n 600,1100\n A 500,500 0 0,0 1100,600\n A 100,100 0 0,0 900,600\n A 300,300 0 0,1 600,900\n A 100,100 0 1,0 600,1100\n Z\n ",
|
|
31
|
+
style: {
|
|
32
|
+
opacity: 0.9,
|
|
33
|
+
fill: "#ea6093"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
),
|
|
37
|
+
/* @__PURE__ */ jsx(
|
|
38
|
+
"path",
|
|
39
|
+
{
|
|
40
|
+
d: "\n M\n 600,100\n A 500,500 0 0,0 100,600\n A 100,100 0 0,0 300,600\n A 300,300 0 0,1 600,300\n A 100,100 0 0,0 600,100\n Z\n ",
|
|
41
|
+
style: {
|
|
42
|
+
opacity: 0.9,
|
|
43
|
+
fill: "#387cfe"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ jsx(
|
|
48
|
+
"path",
|
|
49
|
+
{
|
|
50
|
+
d: "\n M\n 600,100\n A 100,100 0 0,1 700,200\n A 300,300 0 0,0 1000,500\n A 100,100 0 0,1 1100,600\n A 100,100 0 0,1 1000,700\n A 500,500 0 0,1 500,200\n A 100,100 0 0,1 600,100\n Z\n ",
|
|
51
|
+
style: {
|
|
52
|
+
opacity: 0.9,
|
|
53
|
+
fill: "#9a66ff"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
] }) });
|
|
58
|
+
},
|
|
59
|
+
MingooIcon: () => {
|
|
60
|
+
const CircleSet = (p) => {
|
|
61
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
62
|
+
/* @__PURE__ */ jsx(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "\n M\n 600,100\n A 80,80 0 0,1 600,260\n A 80,80 0 0,1 600,100\n L600,600\n L600,300\n Z\n ",
|
|
66
|
+
className: [
|
|
67
|
+
LogoClasses("P"),
|
|
68
|
+
LogoClasses("P_" + p)
|
|
69
|
+
].join(" "),
|
|
70
|
+
style: {
|
|
71
|
+
fill: "#c56ff0"
|
|
72
|
+
// fill: '#9a66ff'
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
),
|
|
76
|
+
/* @__PURE__ */ jsx(
|
|
77
|
+
"path",
|
|
78
|
+
{
|
|
79
|
+
d: "\n M\n 600,300\n A 45,45 0 0,1 600,390\n A 45,45 0 0,1 600,300\n L600,600\n L600,300\n Z\n ",
|
|
80
|
+
className: [
|
|
81
|
+
LogoClasses("P"),
|
|
82
|
+
LogoClasses("P_" + p)
|
|
83
|
+
].join(" "),
|
|
84
|
+
style: {
|
|
85
|
+
fill: "#ea6093"
|
|
86
|
+
// fill: '#ffa500'
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
)
|
|
90
|
+
] });
|
|
91
|
+
};
|
|
92
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0,0,1200,1200", className: LogoClasses("MingooIcon"), children: [
|
|
93
|
+
CircleSet(0),
|
|
94
|
+
CircleSet(1),
|
|
95
|
+
CircleSet(2),
|
|
96
|
+
CircleSet(3),
|
|
97
|
+
CircleSet(4),
|
|
98
|
+
CircleSet(5),
|
|
99
|
+
CircleSet(6),
|
|
100
|
+
CircleSet(7),
|
|
101
|
+
CircleSet(8)
|
|
102
|
+
] });
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
const Mingoos = {
|
|
106
|
+
Icon: (params) => /* @__PURE__ */ jsx(
|
|
107
|
+
Logo.Icon,
|
|
108
|
+
__spreadProps(__spreadValues({}, params), {
|
|
109
|
+
children: /* @__PURE__ */ jsx(SVG.MingooIcon, {})
|
|
110
|
+
})
|
|
111
|
+
),
|
|
112
|
+
Title: (params) => /* @__PURE__ */ jsx(
|
|
113
|
+
Logo.Title,
|
|
114
|
+
__spreadProps(__spreadValues({
|
|
115
|
+
height: "auto",
|
|
116
|
+
className: LogoClasses("ComunTitle")
|
|
117
|
+
}, params), {
|
|
118
|
+
freeCSS: __spreadValues({
|
|
119
|
+
letterSpacing: "3px"
|
|
120
|
+
}, params.freeCSS),
|
|
121
|
+
children: "mingoo"
|
|
122
|
+
})
|
|
123
|
+
),
|
|
124
|
+
LogoH: (params) => {
|
|
125
|
+
let _a = params, { size, color } = _a, others = __objRest(_a, ["size", "color"]);
|
|
126
|
+
return /* @__PURE__ */ jsxs(
|
|
127
|
+
Flex,
|
|
128
|
+
__spreadProps(__spreadValues({
|
|
129
|
+
gap: "1/2",
|
|
130
|
+
flexCenter: true
|
|
131
|
+
}, others), {
|
|
132
|
+
children: [
|
|
133
|
+
/* @__PURE__ */ jsx(Mingoos.Icon, { size, color }),
|
|
134
|
+
/* @__PURE__ */ jsx(Mingoos.Title, { size, color })
|
|
135
|
+
]
|
|
136
|
+
})
|
|
137
|
+
);
|
|
138
|
+
},
|
|
139
|
+
LogoV: (params) => {
|
|
140
|
+
let _a = params, { size, color } = _a, others = __objRest(_a, ["size", "color"]);
|
|
141
|
+
return /* @__PURE__ */ jsxs(
|
|
142
|
+
Flex,
|
|
143
|
+
__spreadProps(__spreadValues({
|
|
144
|
+
flexType: "col",
|
|
145
|
+
gap: "1/2"
|
|
146
|
+
}, others), {
|
|
147
|
+
children: [
|
|
148
|
+
/* @__PURE__ */ jsx(
|
|
149
|
+
Mingoos.Icon,
|
|
150
|
+
{
|
|
151
|
+
margin: "auto",
|
|
152
|
+
size,
|
|
153
|
+
color
|
|
154
|
+
}
|
|
155
|
+
),
|
|
156
|
+
/* @__PURE__ */ jsx(
|
|
157
|
+
Mingoos.Title,
|
|
158
|
+
{
|
|
159
|
+
size,
|
|
160
|
+
color
|
|
161
|
+
}
|
|
162
|
+
)
|
|
163
|
+
]
|
|
164
|
+
})
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
};
|
|
168
|
+
const Comuns = {
|
|
169
|
+
Icon: (params) => /* @__PURE__ */ jsx(
|
|
170
|
+
Logo.Icon,
|
|
171
|
+
__spreadProps(__spreadValues({}, params), {
|
|
172
|
+
children: /* @__PURE__ */ jsx(SVG.ComunIcon, {})
|
|
173
|
+
})
|
|
174
|
+
),
|
|
175
|
+
Title: (params) => /* @__PURE__ */ jsx(
|
|
176
|
+
Logo.Title,
|
|
177
|
+
__spreadProps(__spreadValues({
|
|
178
|
+
height: "auto",
|
|
179
|
+
className: LogoClasses("ComunTitle")
|
|
180
|
+
}, params), {
|
|
181
|
+
freeCSS: __spreadValues({
|
|
182
|
+
letterSpacing: "3px"
|
|
183
|
+
}, params.freeCSS),
|
|
184
|
+
children: "comun"
|
|
185
|
+
})
|
|
186
|
+
),
|
|
187
|
+
LogoH: (params) => {
|
|
188
|
+
let _a = params, { size, color } = _a, others = __objRest(_a, ["size", "color"]);
|
|
189
|
+
return /* @__PURE__ */ jsxs(
|
|
190
|
+
Flex,
|
|
191
|
+
__spreadProps(__spreadValues({
|
|
192
|
+
gap: "1/2",
|
|
193
|
+
flexCenter: true
|
|
194
|
+
}, others), {
|
|
195
|
+
children: [
|
|
196
|
+
/* @__PURE__ */ jsx(Comuns.Icon, { size, color }),
|
|
197
|
+
/* @__PURE__ */ jsx(Comuns.Title, { size, color })
|
|
198
|
+
]
|
|
199
|
+
})
|
|
200
|
+
);
|
|
201
|
+
},
|
|
202
|
+
LogoV: (params) => {
|
|
203
|
+
let _a = params, { size, color } = _a, others = __objRest(_a, ["size", "color"]);
|
|
204
|
+
return /* @__PURE__ */ jsxs(
|
|
205
|
+
Flex,
|
|
206
|
+
__spreadProps(__spreadValues({
|
|
207
|
+
flexType: "col",
|
|
208
|
+
gap: "1/2"
|
|
209
|
+
}, others), {
|
|
210
|
+
children: [
|
|
211
|
+
/* @__PURE__ */ jsx(
|
|
212
|
+
Comuns.Icon,
|
|
213
|
+
{
|
|
214
|
+
margin: "auto",
|
|
215
|
+
size,
|
|
216
|
+
color
|
|
217
|
+
}
|
|
218
|
+
),
|
|
219
|
+
/* @__PURE__ */ jsx(
|
|
220
|
+
Comuns.Title,
|
|
221
|
+
{
|
|
222
|
+
size,
|
|
223
|
+
color
|
|
224
|
+
}
|
|
225
|
+
)
|
|
226
|
+
]
|
|
227
|
+
})
|
|
228
|
+
);
|
|
229
|
+
}
|
|
230
|
+
};
|
|
231
|
+
const Logo = {
|
|
232
|
+
Icon: (props) => {
|
|
233
|
+
let _a = props, {
|
|
234
|
+
size = "R",
|
|
235
|
+
color = "normal",
|
|
236
|
+
className = "",
|
|
237
|
+
children: Children
|
|
238
|
+
} = _a, others = __objRest(_a, [
|
|
239
|
+
"size",
|
|
240
|
+
"color",
|
|
241
|
+
"className",
|
|
242
|
+
"children"
|
|
243
|
+
]);
|
|
244
|
+
return /* @__PURE__ */ jsx(
|
|
245
|
+
Flex,
|
|
246
|
+
__spreadProps(__spreadValues({
|
|
247
|
+
verticalAlign: "center",
|
|
248
|
+
className: [
|
|
249
|
+
className,
|
|
250
|
+
LogoClasses("Icon"),
|
|
251
|
+
LogoClasses("Size_" + size)
|
|
252
|
+
].join(" ")
|
|
253
|
+
}, others), {
|
|
254
|
+
children: $$.is.function(Children) ? /* @__PURE__ */ jsx(Children, {}) : Children
|
|
255
|
+
})
|
|
256
|
+
);
|
|
257
|
+
},
|
|
258
|
+
Title: (props) => {
|
|
259
|
+
let _a = props, {
|
|
260
|
+
size = "R",
|
|
261
|
+
color = "normal",
|
|
262
|
+
className = "",
|
|
263
|
+
children: Children
|
|
264
|
+
} = _a, others = __objRest(_a, [
|
|
265
|
+
"size",
|
|
266
|
+
"color",
|
|
267
|
+
"className",
|
|
268
|
+
"children"
|
|
269
|
+
]);
|
|
270
|
+
return /* @__PURE__ */ jsx(
|
|
271
|
+
Flex,
|
|
272
|
+
__spreadProps(__spreadValues({
|
|
273
|
+
verticalAlign: "center",
|
|
274
|
+
fontColor: color == "white" ? "white" : "logo",
|
|
275
|
+
className: [
|
|
276
|
+
className,
|
|
277
|
+
LogoClasses("Title"),
|
|
278
|
+
LogoClasses("Size_" + size)
|
|
279
|
+
].join(" ")
|
|
280
|
+
}, others), {
|
|
281
|
+
freeCSS: __spreadValues({
|
|
282
|
+
lineHeight: "1.25"
|
|
283
|
+
}, others.freeCSS),
|
|
284
|
+
children: $$.is.function(Children) ? /* @__PURE__ */ jsx(Children, {}) : Children
|
|
285
|
+
})
|
|
286
|
+
);
|
|
287
|
+
},
|
|
288
|
+
Brands: {
|
|
289
|
+
MingooIcon: Mingoos.Icon,
|
|
290
|
+
MingooTitle: Mingoos.Title,
|
|
291
|
+
MingooLogoH: Mingoos.LogoH,
|
|
292
|
+
MingooLogoV: Mingoos.LogoV,
|
|
293
|
+
ComunIcon: Comuns.Icon,
|
|
294
|
+
ComunTitle: Comuns.Title,
|
|
295
|
+
ComunLogoH: Comuns.LogoH,
|
|
296
|
+
ComunLogoV: Comuns.LogoV,
|
|
297
|
+
Google: (params) => /* @__PURE__ */ jsx(
|
|
298
|
+
Logo.Icon,
|
|
299
|
+
__spreadProps(__spreadValues({}, params), {
|
|
300
|
+
children: /* @__PURE__ */ jsx(
|
|
301
|
+
Img,
|
|
302
|
+
{
|
|
303
|
+
src: publicURI + "@env/@logos/brands/Google_Icon.svg",
|
|
304
|
+
alt: ""
|
|
305
|
+
}
|
|
306
|
+
)
|
|
307
|
+
})
|
|
308
|
+
),
|
|
309
|
+
Facebook: (params) => /* @__PURE__ */ jsx(
|
|
310
|
+
Logo.Icon,
|
|
311
|
+
__spreadProps(__spreadValues({}, params), {
|
|
312
|
+
children: /* @__PURE__ */ jsx(
|
|
313
|
+
Img,
|
|
314
|
+
{
|
|
315
|
+
src: publicURI + "@env/@logos/brands/FaceBook_Icon.svg",
|
|
316
|
+
alt: ""
|
|
317
|
+
}
|
|
318
|
+
)
|
|
319
|
+
})
|
|
320
|
+
),
|
|
321
|
+
Twitter: (params) => /* @__PURE__ */ jsx(
|
|
322
|
+
Logo.Icon,
|
|
323
|
+
__spreadProps(__spreadValues({}, params), {
|
|
324
|
+
children: /* @__PURE__ */ jsx(
|
|
325
|
+
Img,
|
|
326
|
+
{
|
|
327
|
+
src: publicURI + "@env/@logos/brands/Twitter_Icon.svg",
|
|
328
|
+
alt: ""
|
|
329
|
+
}
|
|
330
|
+
)
|
|
331
|
+
})
|
|
332
|
+
),
|
|
333
|
+
LINE: (params) => /* @__PURE__ */ jsx(
|
|
334
|
+
Logo.Icon,
|
|
335
|
+
__spreadProps(__spreadValues({}, params), {
|
|
336
|
+
children: /* @__PURE__ */ jsx(
|
|
337
|
+
Img,
|
|
338
|
+
{
|
|
339
|
+
src: publicURI + "@env/@logos/brands/Line_Icon.svg",
|
|
340
|
+
alt: ""
|
|
341
|
+
}
|
|
342
|
+
)
|
|
343
|
+
})
|
|
344
|
+
)
|
|
345
|
+
},
|
|
346
|
+
Images: {
|
|
347
|
+
mingooIcon: publicURI + "@env/@logos/mingoo/icon.png",
|
|
348
|
+
mingooIconClear: publicURI + "@env/@logos/mingoo/iconClear.png",
|
|
349
|
+
comunIcon: publicURI + "@env/@logos/comun/icon.png",
|
|
350
|
+
comunIconClear: publicURI + "@env/@logos/comun/iconClear.png",
|
|
351
|
+
defaultIcon: (type) => {
|
|
352
|
+
return publicURI + "@env/@icon/" + (type || "image") + ".png";
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
};
|
|
356
|
+
export {
|
|
357
|
+
Logo,
|
|
358
|
+
Logo as default
|
|
359
|
+
};
|
package/dist/atoms/P.js
CHANGED
|
@@ -1 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadValues
|
|
4
|
+
} from "../chunk-JJ3PEWPN.js";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
import {
|
|
7
|
+
GenerateClassName
|
|
8
|
+
} from "../@utils/_";
|
|
9
|
+
const P = (params) => {
|
|
10
|
+
let _a = GenerateClassName(params), {
|
|
11
|
+
freeCSS
|
|
12
|
+
} = _a, Params = __objRest(_a, [
|
|
13
|
+
"freeCSS"
|
|
14
|
+
]);
|
|
15
|
+
return /* @__PURE__ */ jsx("p", __spreadValues({}, Params));
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
P,
|
|
19
|
+
P as default
|
|
20
|
+
};
|
|
@@ -1 +1,44 @@
|
|
|
1
|
-
import
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadProps,
|
|
4
|
+
__spreadValues
|
|
5
|
+
} from "../chunk-JJ3PEWPN.js";
|
|
6
|
+
import { jsx } from "react/jsx-runtime";
|
|
7
|
+
import Box from "./Box";
|
|
8
|
+
import { PlaceholderClasses } from "../@styles/componentClasses/_";
|
|
9
|
+
const Placeholder = (params) => {
|
|
10
|
+
let _a = params, {
|
|
11
|
+
color = "cloud"
|
|
12
|
+
} = _a, others = __objRest(_a, [
|
|
13
|
+
"color"
|
|
14
|
+
]);
|
|
15
|
+
return /* @__PURE__ */ jsx(
|
|
16
|
+
Box,
|
|
17
|
+
__spreadProps(__spreadValues({
|
|
18
|
+
className: [
|
|
19
|
+
PlaceholderClasses("Placeholder"),
|
|
20
|
+
params.className
|
|
21
|
+
].join(" "),
|
|
22
|
+
flexCenter: true,
|
|
23
|
+
position: "relative",
|
|
24
|
+
ssCardBox: true,
|
|
25
|
+
border: "unset",
|
|
26
|
+
overflow: "hidden",
|
|
27
|
+
backgroundColor: "3.layer.canvas"
|
|
28
|
+
}, others), {
|
|
29
|
+
children: /* @__PURE__ */ jsx(
|
|
30
|
+
Box,
|
|
31
|
+
{
|
|
32
|
+
className: [
|
|
33
|
+
PlaceholderClasses("Body"),
|
|
34
|
+
PlaceholderClasses("Color_" + color)
|
|
35
|
+
].join(" ")
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
})
|
|
39
|
+
);
|
|
40
|
+
};
|
|
41
|
+
export {
|
|
42
|
+
Placeholder,
|
|
43
|
+
Placeholder as default
|
|
44
|
+
};
|
package/dist/atoms/Span.js
CHANGED
|
@@ -1 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadValues
|
|
4
|
+
} from "../chunk-JJ3PEWPN.js";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
import {
|
|
7
|
+
GenerateClassName
|
|
8
|
+
} from "../@utils/_";
|
|
9
|
+
const Span = (params) => {
|
|
10
|
+
let _a = GenerateClassName(params), {
|
|
11
|
+
freeCSS
|
|
12
|
+
} = _a, Params = __objRest(_a, [
|
|
13
|
+
"freeCSS"
|
|
14
|
+
]);
|
|
15
|
+
return /* @__PURE__ */ jsx("span", __spreadValues({}, Params));
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
Span,
|
|
19
|
+
Span as default
|
|
20
|
+
};
|
package/dist/atoms/_.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
export*from"./Box";
|
|
1
|
+
export * from "./Box";
|
|
2
|
+
export * from "./FAI";
|
|
3
|
+
export * from "./Flex";
|
|
4
|
+
export * from "./Grid";
|
|
5
|
+
export * from "./Img";
|
|
6
|
+
export * from "./Logo";
|
|
7
|
+
export * from "./P";
|
|
8
|
+
export * from "./Placeholder";
|
|
9
|
+
export * from "./Span";
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
+
var __pow = Math.pow;
|
|
8
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
9
|
+
var __spreadValues = (a, b) => {
|
|
10
|
+
for (var prop in b || (b = {}))
|
|
11
|
+
if (__hasOwnProp.call(b, prop))
|
|
12
|
+
__defNormalProp(a, prop, b[prop]);
|
|
13
|
+
if (__getOwnPropSymbols)
|
|
14
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
15
|
+
if (__propIsEnum.call(b, prop))
|
|
16
|
+
__defNormalProp(a, prop, b[prop]);
|
|
17
|
+
}
|
|
18
|
+
return a;
|
|
19
|
+
};
|
|
20
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
21
|
+
var __objRest = (source, exclude) => {
|
|
22
|
+
var target = {};
|
|
23
|
+
for (var prop in source)
|
|
24
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
25
|
+
target[prop] = source[prop];
|
|
26
|
+
if (source != null && __getOwnPropSymbols)
|
|
27
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
28
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
29
|
+
target[prop] = source[prop];
|
|
30
|
+
}
|
|
31
|
+
return target;
|
|
32
|
+
};
|
|
33
|
+
var __async = (__this, __arguments, generator) => {
|
|
34
|
+
return new Promise((resolve, reject) => {
|
|
35
|
+
var fulfilled = (value) => {
|
|
36
|
+
try {
|
|
37
|
+
step(generator.next(value));
|
|
38
|
+
} catch (e) {
|
|
39
|
+
reject(e);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
var rejected = (value) => {
|
|
43
|
+
try {
|
|
44
|
+
step(generator.throw(value));
|
|
45
|
+
} catch (e) {
|
|
46
|
+
reject(e);
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
50
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
51
|
+
});
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export {
|
|
55
|
+
__pow,
|
|
56
|
+
__spreadValues,
|
|
57
|
+
__spreadProps,
|
|
58
|
+
__objRest,
|
|
59
|
+
__async
|
|
60
|
+
};
|