@yourdash/uikit 0.1.2 → 0.1.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/src/index.d.ts +2 -0
- package/dist/src/index.mjs +78 -76
- package/dist/src/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/src/index.d.ts
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
export { UKIcons } from '../lib/core/iconDictionary.js';
|
2
|
+
export type { UKIconType } from '../lib/core/iconDictionary.js';
|
1
3
|
export { default as UKBox } from '../lib/components/box/UKBox.js';
|
2
4
|
export { default as UKButton } from '../lib/components/button/UKButton.js';
|
3
5
|
export { default as UKButtonCombo } from '../lib/components/buttonCombo/UKButtonCombo.js';
|
package/dist/src/index.mjs
CHANGED
@@ -1,79 +1,81 @@
|
|
1
|
-
import {
|
2
|
-
import { default as r } from "../lib/components/
|
3
|
-
import { default as u } from "../lib/components/
|
4
|
-
import { default as x } from "../lib/components/
|
5
|
-
import { default as m } from "../lib/components/
|
6
|
-
import { default as p } from "../lib/components/
|
7
|
-
import { default as U } from "../lib/components/
|
8
|
-
import { default as i } from "../lib/components/
|
9
|
-
import { default as g } from "../lib/components/
|
10
|
-
import { default as
|
11
|
-
import { default as T } from "../lib/components/
|
12
|
-
import { default as c } from "../lib/components/
|
13
|
-
import { default as H } from "../lib/components/
|
14
|
-
import { default as P } from "../lib/components/
|
15
|
-
import { default as k } from "../lib/components/
|
16
|
-
import { default as L } from "../lib/components/
|
17
|
-
import { default as A } from "../lib/components/
|
18
|
-
import { default as F } from "../lib/components/
|
19
|
-
import { default as R } from "../lib/components/
|
20
|
-
import { default as W } from "../lib/components/
|
21
|
-
import { default as j } from "../lib/components/
|
22
|
-
import { default as y } from "../lib/components/
|
23
|
-
import { default as E } from "../lib/components/
|
24
|
-
import { default as J } from "../lib/
|
25
|
-
import { default as X } from "../lib/utilityComponent/
|
26
|
-
import { default as _ } from "../lib/
|
27
|
-
import { default as ee } from "../lib/views/
|
28
|
-
import { default as
|
29
|
-
import { default as re } from "../lib/views/
|
30
|
-
import { default as ue } from "../lib/views/
|
31
|
-
import { default as xe } from "../lib/views/
|
32
|
-
import { default as me } from "../lib/views/navBar/
|
33
|
-
import { default as pe } from "../lib/views/navBar/components/
|
34
|
-
import { default as Ue } from "../lib/views/
|
35
|
-
import { default as ie } from "../lib/views/
|
36
|
-
import { default as ge } from "../lib/views/sidebar/
|
37
|
-
import { default as
|
38
|
-
import { default as Te } from "../lib/views/sidebar/
|
1
|
+
import { UKIcons as o } from "../lib/core/iconDictionary.mjs";
|
2
|
+
import { default as r } from "../lib/components/box/UKBox.mjs";
|
3
|
+
import { default as u } from "../lib/components/button/UKButton.mjs";
|
4
|
+
import { default as x } from "../lib/components/buttonCombo/UKButtonCombo.mjs";
|
5
|
+
import { default as m } from "../lib/components/buttonLink/UKButtonLink.mjs";
|
6
|
+
import { default as p } from "../lib/components/buttonWithIcon/UKButtonWithIcon.mjs";
|
7
|
+
import { default as U } from "../lib/components/card/UKCard.mjs";
|
8
|
+
import { default as i } from "../lib/components/container/UKContainer.mjs";
|
9
|
+
import { default as g } from "../lib/components/contextMenu/UKContextMenu.mjs";
|
10
|
+
import { default as S } from "../lib/components/flex/UKFlex.mjs";
|
11
|
+
import { default as T } from "../lib/components/heading/UKHeading.mjs";
|
12
|
+
import { default as c } from "../lib/components/icon/UKIcon.mjs";
|
13
|
+
import { default as H } from "../lib/components/iconButton/UKIconButton.mjs";
|
14
|
+
import { default as P } from "../lib/components/image/UKImage.mjs";
|
15
|
+
import { default as k } from "../lib/components/link/UKLink.mjs";
|
16
|
+
import { default as L } from "../lib/components/progressBar/UKProgressBar.mjs";
|
17
|
+
import { default as A } from "../lib/components/redirect/UKRedirect.mjs";
|
18
|
+
import { default as F } from "../lib/components/separator/UKSeparator.mjs";
|
19
|
+
import { default as R } from "../lib/components/spinner/UKSpinner.mjs";
|
20
|
+
import { default as W } from "../lib/components/subtext/UKSubtext.mjs";
|
21
|
+
import { default as j } from "../lib/components/tag/UKTag.mjs";
|
22
|
+
import { default as y } from "../lib/components/text/UKText.mjs";
|
23
|
+
import { default as E } from "../lib/components/textButton/UKTextButton.mjs";
|
24
|
+
import { default as J } from "../lib/components/textInput/UKTextInput.mjs";
|
25
|
+
import { default as X } from "../lib/utilityComponent/hasBeenShown/hasBeenShown.mjs";
|
26
|
+
import { default as _ } from "../lib/utilityComponent/onInView/onInView.mjs";
|
27
|
+
import { default as ee } from "../lib/views/carousel/UKCarousel.mjs";
|
28
|
+
import { default as oe } from "../lib/views/dialog/UKDialog.mjs";
|
29
|
+
import { default as re } from "../lib/views/pageHeader/UKPageHeader.mjs";
|
30
|
+
import { default as ue } from "../lib/views/panAndZoom/UKPanAndZoom.mjs";
|
31
|
+
import { default as xe } from "../lib/views/infiniteScroll/UKInfiniteScroll.mjs";
|
32
|
+
import { default as me } from "../lib/views/navBar/UKNavBar.mjs";
|
33
|
+
import { default as pe } from "../lib/views/navBar/components/navImage/UKNavbarNavImage.mjs";
|
34
|
+
import { default as Ue } from "../lib/views/navBar/components/navTitle/UKNavbarNavTitle.mjs";
|
35
|
+
import { default as ie } from "../lib/views/onBoarding/UKOnBoarding.mjs";
|
36
|
+
import { default as ge } from "../lib/views/sidebar/UKSidebar.mjs";
|
37
|
+
import { default as Se } from "../lib/views/sidebar/UKSidebarContainer.mjs";
|
38
|
+
import { default as Te } from "../lib/views/sidebar/UKSidebarContext.mjs";
|
39
|
+
import { default as ce } from "../lib/views/sidebar/UKSidebarToggleButton.mjs";
|
39
40
|
export {
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
me as
|
61
|
-
pe as
|
62
|
-
Ue as
|
63
|
-
|
64
|
-
re as
|
65
|
-
|
66
|
-
L as
|
67
|
-
A as
|
68
|
-
|
69
|
-
ge as
|
70
|
-
|
71
|
-
Te as
|
72
|
-
|
73
|
-
R as
|
74
|
-
W as
|
75
|
-
j as
|
76
|
-
y as
|
77
|
-
E as
|
41
|
+
X as HasBeenShown,
|
42
|
+
_ as OnInView,
|
43
|
+
r as UKBox,
|
44
|
+
u as UKButton,
|
45
|
+
x as UKButtonCombo,
|
46
|
+
m as UKButtonLink,
|
47
|
+
p as UKButtonWithIcon,
|
48
|
+
U as UKCard,
|
49
|
+
ee as UKCarousel,
|
50
|
+
i as UKContainer,
|
51
|
+
g as UKContextMenu,
|
52
|
+
oe as UKDialog,
|
53
|
+
S as UKFlex,
|
54
|
+
T as UKHeading,
|
55
|
+
c as UKIcon,
|
56
|
+
H as UKIconButton,
|
57
|
+
o as UKIcons,
|
58
|
+
P as UKImage,
|
59
|
+
xe as UKInfiniteScroll,
|
60
|
+
k as UKLink,
|
61
|
+
me as UKNavBar,
|
62
|
+
pe as UKNavBarImage,
|
63
|
+
Ue as UKNavBarTitle,
|
64
|
+
ie as UKOnBoarding,
|
65
|
+
re as UKPageHeader,
|
66
|
+
ue as UKPanAndZoom,
|
67
|
+
L as UKProgressBar,
|
68
|
+
A as UKRedirect,
|
69
|
+
F as UKSeparator,
|
70
|
+
ge as UKSidebar,
|
71
|
+
Se as UKSidebarContainer,
|
72
|
+
Te as UKSidebarContext,
|
73
|
+
ce as UKSidebarToggleButton,
|
74
|
+
R as UKSpinner,
|
75
|
+
W as UKSubText,
|
76
|
+
j as UKTag,
|
77
|
+
y as UKText,
|
78
|
+
E as UKTextButton,
|
79
|
+
J as UKTextInput
|
78
80
|
};
|
79
81
|
//# sourceMappingURL=index.mjs.map
|
package/dist/src/index.mjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yourdash/uikit",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.4",
|
4
4
|
"description": "",
|
5
5
|
"scripts": {
|
6
6
|
"dev-compile": "vite build --watch",
|
@@ -19,8 +19,8 @@
|
|
19
19
|
],
|
20
20
|
"type": "module",
|
21
21
|
"exports": {
|
22
|
-
"./lib/theme
|
23
|
-
"default": "./dist
|
22
|
+
"./lib/theme/themeValues.scss": {
|
23
|
+
"default": "./dist/themeValues.scss"
|
24
24
|
},
|
25
25
|
"./themeValues.scss": {
|
26
26
|
"default": "./dist/themeValues.scss"
|