uplord-ui 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1367 -1367
- package/dist/index.d.ts +18 -18
- package/dist/index.es.js +0 -3
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
1
|
+
export { Banner } from './components/blocks/Banner';
|
|
2
|
+
export { Projects } from './components/blocks/Projects';
|
|
3
|
+
export { Section } from './components/blocks/Section';
|
|
4
|
+
export { Stack } from './components/blocks/Stack';
|
|
5
|
+
export { Timeline } from './components/blocks/Timeline';
|
|
6
|
+
export { Footer } from './components/main/Footer';
|
|
7
|
+
export { Header } from './components/main/Header';
|
|
8
|
+
export { Pagination } from './components/navigation/Pagination';
|
|
9
|
+
export { Button } from './components/ui/Button';
|
|
10
|
+
export { Checkbox } from './components/ui/Checkbox';
|
|
11
|
+
export { FormikInput } from './components/ui/FormikInput';
|
|
12
|
+
export { Input } from './components/ui/Input';
|
|
13
|
+
export { Radio } from './components/ui/Radio';
|
|
14
|
+
export { Select } from './components/ui/Select';
|
|
15
|
+
export { Textarea } from './components/ui/Textarea';
|
|
16
|
+
export { Example } from './components/utils/Example';
|
|
17
|
+
export { Icon } from './components/utils/Icon';
|
|
18
|
+
export { Modal } from './components/utils/Modal';
|
package/dist/index.es.js
CHANGED
|
@@ -40301,7 +40301,6 @@ const Rse = (e) => `not ${e}`, $se = (e, t) => {
|
|
|
40301
40301
|
export {
|
|
40302
40302
|
Cde as Banner,
|
|
40303
40303
|
i1 as Button,
|
|
40304
|
-
fv as ButtonGroup,
|
|
40305
40304
|
ise as Checkbox,
|
|
40306
40305
|
Tde as Example,
|
|
40307
40306
|
Sde as Footer,
|
|
@@ -40310,8 +40309,6 @@ export {
|
|
|
40310
40309
|
h1 as Icon,
|
|
40311
40310
|
Rde as Input,
|
|
40312
40311
|
Hde as Modal,
|
|
40313
|
-
Rb as ModalFooter,
|
|
40314
|
-
Pb as ModalHeader,
|
|
40315
40312
|
Pde as Pagination,
|
|
40316
40313
|
xde as Projects,
|
|
40317
40314
|
$de as Radio,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uplord-ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"main": "dist/index.
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -15,9 +15,10 @@
|
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"import": "./dist/index.js",
|
|
19
|
-
"
|
|
20
|
-
}
|
|
18
|
+
"import": "./dist/index.es.js",
|
|
19
|
+
"require": "./dist/index.cjs.js"
|
|
20
|
+
},
|
|
21
|
+
"./dist/uplord-ui.css": "./dist/uplord-ui.css"
|
|
21
22
|
},
|
|
22
23
|
"scripts": {
|
|
23
24
|
"dev": "next dev",
|