@yourdash/uikit 1.0.39 → 1.0.41
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/icon/icon.d.ts +1 -1
- package/dist/{index-C9QO6nHU.js → index-BgUabcaX.js} +2 -2
- package/dist/{index-DgBqz1HD.js → index-C3VgT5vL.js} +1 -1
- package/dist/{index-BoiKlAEs.js → index-DiqAMPiW.js} +5 -5
- package/dist/{index-BJy4nmTN.js → index-avjaKJHH.js} +17 -17
- package/dist/uikit.d.ts +13 -0
- package/dist/uikit.js +17 -8
- package/package.json +9 -5
- /package/{dist → src/theme}/defaultTheme.module.scss +0 -0
- /package/{dist → src/theme}/themeValues.scss +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
import e from "./utilityComponent/hasBeenShown/hasBeenShown.js";
|
2
2
|
import o from "./utilityComponent/onInView/onInView.js";
|
3
|
-
const
|
3
|
+
const i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
4
4
|
__proto__: null,
|
5
5
|
HasBeenShown: e,
|
6
6
|
OnInView: o
|
7
7
|
}, Symbol.toStringTag, { value: "Module" }));
|
8
8
|
export {
|
9
|
-
|
9
|
+
i as U
|
10
10
|
};
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import o from "./views/carousel/carousel.js";
|
2
2
|
import r from "./views/dialog/dialog.js";
|
3
3
|
import m from "./views/header/header.js";
|
4
|
-
import
|
5
|
-
import
|
4
|
+
import t from "./views/infiniteScroll/infiniteScroll.js";
|
5
|
+
import i from "./views/navBar/navBar.js";
|
6
6
|
import e from "./views/navBar/components/navImage/navImage.js";
|
7
7
|
import a from "./views/navBar/components/navTitle/navTitle.js";
|
8
8
|
import f from "./views/onBoarding/onBoarding.js";
|
@@ -15,8 +15,8 @@ const j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
15
15
|
Carousel: o,
|
16
16
|
Dialog: r,
|
17
17
|
Header: m,
|
18
|
-
InfiniteScroll:
|
19
|
-
NavBar:
|
18
|
+
InfiniteScroll: t,
|
19
|
+
NavBar: i,
|
20
20
|
NavImage: e,
|
21
21
|
NavTitle: a,
|
22
22
|
OnBoarding: f,
|
@@ -26,5 +26,5 @@ const j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26
26
|
SidebarToggleButton: d
|
27
27
|
}, Symbol.toStringTag, { value: "Module" }));
|
28
28
|
export {
|
29
|
-
j as
|
29
|
+
j as V
|
30
30
|
};
|
@@ -12,15 +12,15 @@ import a from "./components/icon/icon.js";
|
|
12
12
|
import x from "./components/iconButton/iconButton.js";
|
13
13
|
import B from "./components/image/image.js";
|
14
14
|
import c from "./components/link/link.js";
|
15
|
-
import
|
16
|
-
import
|
17
|
-
import
|
15
|
+
import g from "./components/progressBar/progressBar.js";
|
16
|
+
import l from "./components/redirect/redirect.js";
|
17
|
+
import C from "./components/separator/separator.js";
|
18
18
|
import b from "./components/spinner/spinner.js";
|
19
|
-
import
|
20
|
-
import
|
21
|
-
import
|
22
|
-
import
|
23
|
-
import
|
19
|
+
import d from "./components/subtext/subtext.js";
|
20
|
+
import s from "./components/tag/tag.js";
|
21
|
+
import I from "./components/text/text.js";
|
22
|
+
import S from "./components/textButton/textButton.js";
|
23
|
+
import T from "./components/textInput/textInput.js";
|
24
24
|
const N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
25
25
|
__proto__: null,
|
26
26
|
Box: o,
|
@@ -37,16 +37,16 @@ const N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
37
37
|
IconButton: x,
|
38
38
|
Image: B,
|
39
39
|
Link: c,
|
40
|
-
ProgressBar:
|
41
|
-
Redirect:
|
42
|
-
Separator:
|
40
|
+
ProgressBar: g,
|
41
|
+
Redirect: l,
|
42
|
+
Separator: C,
|
43
43
|
Spinner: b,
|
44
|
-
Subtext:
|
45
|
-
Tag:
|
46
|
-
Text:
|
47
|
-
TextButton:
|
48
|
-
TextInput:
|
44
|
+
Subtext: d,
|
45
|
+
Tag: s,
|
46
|
+
Text: I,
|
47
|
+
TextButton: S,
|
48
|
+
TextInput: T
|
49
49
|
}, Symbol.toStringTag, { value: "Module" }));
|
50
50
|
export {
|
51
|
-
N as
|
51
|
+
N as C
|
52
52
|
};
|
package/dist/uikit.d.ts
CHANGED
@@ -1,4 +1,17 @@
|
|
1
1
|
export * as Components from './components/index.ts';
|
2
|
+
export * as UKC from './components/index.ts';
|
2
3
|
export * as Views from './views/index.ts';
|
4
|
+
export * as UKV from './views/index.ts';
|
3
5
|
export * as Core from './core/index.ts';
|
4
6
|
export * as UtilityComponent from './utilityComponent/index.ts';
|
7
|
+
import * as Components from "./components/index.ts";
|
8
|
+
import * as Views from "./views/index.ts";
|
9
|
+
import * as Core from "./core/index.ts";
|
10
|
+
import * as Utilities from "./utilityComponent/index.ts";
|
11
|
+
declare const UK: {
|
12
|
+
Components: typeof Components;
|
13
|
+
Views: typeof Views;
|
14
|
+
Core: typeof Core;
|
15
|
+
Utilities: typeof Utilities;
|
16
|
+
};
|
17
|
+
export default UK;
|
package/dist/uikit.js
CHANGED
@@ -1,10 +1,19 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
import {
|
1
|
+
import { C as o } from "./index-avjaKJHH.js";
|
2
|
+
import { V as s } from "./index-DiqAMPiW.js";
|
3
|
+
import { C as t } from "./index-C3VgT5vL.js";
|
4
|
+
import { U as e } from "./index-BgUabcaX.js";
|
5
|
+
const C = {
|
6
|
+
Components: o,
|
7
|
+
Views: s,
|
8
|
+
Core: t,
|
9
|
+
Utilities: e
|
10
|
+
};
|
5
11
|
export {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
12
|
+
o as Components,
|
13
|
+
t as Core,
|
14
|
+
o as UKC,
|
15
|
+
s as UKV,
|
16
|
+
e as UtilityComponent,
|
17
|
+
s as Views,
|
18
|
+
C as default
|
10
19
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yourdash/uikit",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.41",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"private": false,
|
@@ -9,11 +9,15 @@
|
|
9
9
|
"node": ">=21.0.0"
|
10
10
|
},
|
11
11
|
"files": [
|
12
|
-
"dist/"
|
12
|
+
"dist/",
|
13
|
+
"src/theme"
|
13
14
|
],
|
14
|
-
"main": "./dist/
|
15
|
-
"types": "./dist/
|
16
|
-
"exports":
|
15
|
+
"main": "./dist/uikit.js",
|
16
|
+
"types": "./dist/uikit.d.ts",
|
17
|
+
"exports": {
|
18
|
+
".": "./dist/uikit.js",
|
19
|
+
"./src/theme/*": "./src/theme/"
|
20
|
+
},
|
17
21
|
"scripts": {
|
18
22
|
"build": "vite build"
|
19
23
|
},
|
File without changes
|
File without changes
|