@zealsolutions/zeal-ui 1.0.0-alpha.11
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/README.md +29 -0
- package/dist/BaseDropdownButton-UQfsyK6a.js +43 -0
- package/dist/BaseOverlay-ulI9NqJC.js +21 -0
- package/dist/BaseTooltip-BWN44Hgh.js +53 -0
- package/dist/CircleStatusIcon-Cqfkui_k.js +14 -0
- package/dist/CloseButton-BY5yns2W.js +17 -0
- package/dist/InfiniteScroll-UshOR9FB.js +430 -0
- package/dist/InputField-Dy0a6K08.js +55 -0
- package/dist/OpacityScaleTransition-CtMzqccC.js +26 -0
- package/dist/OpacityTranslateTransition-fF3EnRwC.js +32 -0
- package/dist/TranslateTransition-Bae6KuMl.js +54 -0
- package/dist/TruncateText-CLf5O_YR.js +61 -0
- package/dist/components/buttons/index.js +68 -0
- package/dist/components/forms/index.js +96 -0
- package/dist/components/icons/index.js +4 -0
- package/dist/components/inputs/index.js +4 -0
- package/dist/components/menus/index.js +1784 -0
- package/dist/components/modals/index.js +209 -0
- package/dist/components/overlays/index.js +4 -0
- package/dist/components/tooltips/index.js +4 -0
- package/dist/components/transitions/index.js +9 -0
- package/dist/components/utils/index.js +6 -0
- package/dist/config/tailwind/index.js +307 -0
- package/dist/css/base.css +185 -0
- package/dist/css/typography.css +31 -0
- package/dist/favicon.ico +0 -0
- package/dist/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2 +0 -0
- package/dist/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2 +0 -0
- package/dist/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2 +0 -0
- package/dist/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2 +0 -0
- package/dist/fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2 +0 -0
- package/dist/fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 +0 -0
- package/dist/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 +0 -0
- package/dist/fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 +0 -0
- package/dist/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 +0 -0
- package/dist/fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 +0 -0
- package/dist/fonts/unna/AYCEpXzofN0NOp8LlQ.woff2 +0 -0
- package/dist/fonts/unna/AYCEpXzofN0NOpELlVHC.woff2 +0 -0
- package/dist/fonts/unna/AYCJpXzofN0NOpozLGzTR3Jv.woff2 +0 -0
- package/dist/fonts/unna/AYCJpXzofN0NOpozLGzTSXJv_vc.woff2 +0 -0
- package/dist/fonts/unna/AYCKpXzofN0NOpo7l0nG.woff2 +0 -0
- package/dist/fonts/unna/AYCKpXzofN0NOpo7mUnGeFM.woff2 +0 -0
- package/dist/fonts/unna/AYCLpXzofN0NMiQugG7jRQ.woff2 +0 -0
- package/dist/fonts/unna/AYCLpXzofN0NMiQugGDjRWpr.woff2 +0 -0
- package/package.json +78 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
html,
|
|
2
|
+
body,
|
|
3
|
+
body>div:first-child {
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/* cyrillic-ext */
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: 'Montserrat';
|
|
10
|
+
font-style: italic;
|
|
11
|
+
font-weight: 200 800;
|
|
12
|
+
font-display: swap;
|
|
13
|
+
src: url(../fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
|
|
14
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* cyrillic */
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: 'Montserrat';
|
|
20
|
+
font-style: italic;
|
|
21
|
+
font-weight: 200 800;
|
|
22
|
+
font-display: swap;
|
|
23
|
+
src: url(../fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
|
|
24
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* vietnamese */
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'Montserrat';
|
|
30
|
+
font-style: italic;
|
|
31
|
+
font-weight: 200 800;
|
|
32
|
+
font-display: swap;
|
|
33
|
+
src: url(../fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
|
|
34
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* latin-ext */
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'Montserrat';
|
|
40
|
+
font-style: italic;
|
|
41
|
+
font-weight: 200 800;
|
|
42
|
+
font-display: swap;
|
|
43
|
+
src: url(../fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
|
|
44
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* latin */
|
|
48
|
+
@font-face {
|
|
49
|
+
font-family: 'Montserrat';
|
|
50
|
+
font-style: italic;
|
|
51
|
+
font-weight: 200 800;
|
|
52
|
+
font-display: swap;
|
|
53
|
+
src: url(../fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
|
|
54
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* cyrillic-ext */
|
|
58
|
+
@font-face {
|
|
59
|
+
font-family: 'Montserrat';
|
|
60
|
+
font-style: normal;
|
|
61
|
+
font-weight: 200 800;
|
|
62
|
+
font-display: swap;
|
|
63
|
+
src: url(../fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
|
|
64
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* cyrillic */
|
|
68
|
+
@font-face {
|
|
69
|
+
font-family: 'Montserrat';
|
|
70
|
+
font-style: normal;
|
|
71
|
+
font-weight: 200 800;
|
|
72
|
+
font-display: swap;
|
|
73
|
+
src: url(../fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
|
|
74
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* vietnamese */
|
|
78
|
+
@font-face {
|
|
79
|
+
font-family: 'Montserrat';
|
|
80
|
+
font-style: normal;
|
|
81
|
+
font-weight: 200 800;
|
|
82
|
+
font-display: swap;
|
|
83
|
+
src: url(../fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
|
|
84
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* latin-ext */
|
|
88
|
+
@font-face {
|
|
89
|
+
font-family: 'Montserrat';
|
|
90
|
+
font-style: normal;
|
|
91
|
+
font-weight: 200 800;
|
|
92
|
+
font-display: swap;
|
|
93
|
+
src: url(../fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
|
|
94
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* latin */
|
|
98
|
+
@font-face {
|
|
99
|
+
font-family: 'Montserrat';
|
|
100
|
+
font-style: normal;
|
|
101
|
+
font-weight: 200 800;
|
|
102
|
+
font-display: swap;
|
|
103
|
+
src: url(../fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
|
|
104
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* latin-ext */
|
|
108
|
+
@font-face {
|
|
109
|
+
font-family: 'Unna';
|
|
110
|
+
font-style: italic;
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-display: swap;
|
|
113
|
+
src: url(../fonts/unna/AYCKpXzofN0NOpo7mUnGeFM.woff2) format('woff2');
|
|
114
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* latin */
|
|
118
|
+
@font-face {
|
|
119
|
+
font-family: 'Unna';
|
|
120
|
+
font-style: italic;
|
|
121
|
+
font-weight: 400;
|
|
122
|
+
font-display: swap;
|
|
123
|
+
src: url(../fonts/unna/AYCKpXzofN0NOpo7l0nG.woff2) format('woff2');
|
|
124
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* latin-ext */
|
|
128
|
+
@font-face {
|
|
129
|
+
font-family: 'Unna';
|
|
130
|
+
font-style: italic;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
font-display: swap;
|
|
133
|
+
src: url(../fonts/unna/AYCJpXzofN0NOpozLGzTSXJv_vc.woff2) format('woff2');
|
|
134
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* latin */
|
|
138
|
+
@font-face {
|
|
139
|
+
font-family: 'Unna';
|
|
140
|
+
font-style: italic;
|
|
141
|
+
font-weight: 700;
|
|
142
|
+
font-display: swap;
|
|
143
|
+
src: url(../fonts/unna/AYCJpXzofN0NOpozLGzTR3Jv.woff2) format('woff2');
|
|
144
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/* latin-ext */
|
|
148
|
+
@font-face {
|
|
149
|
+
font-family: 'Unna';
|
|
150
|
+
font-style: normal;
|
|
151
|
+
font-weight: 400;
|
|
152
|
+
font-display: swap;
|
|
153
|
+
src: url(../fonts/unna/AYCEpXzofN0NOpELlVHC.woff2) format('woff2');
|
|
154
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/* latin */
|
|
158
|
+
@font-face {
|
|
159
|
+
font-family: 'Unna';
|
|
160
|
+
font-style: normal;
|
|
161
|
+
font-weight: 400;
|
|
162
|
+
font-display: swap;
|
|
163
|
+
src: url(../fonts/unna/AYCEpXzofN0NOp8LlQ.woff2) format('woff2');
|
|
164
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* latin-ext */
|
|
168
|
+
@font-face {
|
|
169
|
+
font-family: 'Unna';
|
|
170
|
+
font-style: normal;
|
|
171
|
+
font-weight: 700;
|
|
172
|
+
font-display: swap;
|
|
173
|
+
src: url(../fonts/unna/AYCLpXzofN0NMiQugGDjRWpr.woff2) format('woff2');
|
|
174
|
+
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/* latin */
|
|
178
|
+
@font-face {
|
|
179
|
+
font-family: 'Unna';
|
|
180
|
+
font-style: normal;
|
|
181
|
+
font-weight: 700;
|
|
182
|
+
font-display: swap;
|
|
183
|
+
src: url(../fonts/unna/AYCLpXzofN0NMiQugG7jRQ.woff2) format('woff2');
|
|
184
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
185
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.text-style-main-header {
|
|
2
|
+
@apply font-sans font-semibold text-2xl lg:text-3xl
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.text-style-sub-header {
|
|
6
|
+
@apply font-sans font-semibold text-lg lg:text-xl
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.text-style-base-body {
|
|
10
|
+
@apply font-sans font-normal text-base
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.text-style-feature {
|
|
14
|
+
@apply font-sans font-bold text-xl
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.text-style-quote {
|
|
18
|
+
@apply font-sans font-bold text-xl italic
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.text-style-button {
|
|
22
|
+
@apply font-sans font-semibold text-sm
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.text-style-label {
|
|
26
|
+
@apply font-sans font-medium text-sm leading-4
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.text-style-tooltip {
|
|
30
|
+
@apply font-sans font-semibold text-xs
|
|
31
|
+
}
|
package/dist/favicon.ico
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zealsolutions/zeal-ui",
|
|
3
|
+
"version": "1.0.0-alpha.11",
|
|
4
|
+
"description": "UI library for Zeal Solutions",
|
|
5
|
+
"author": "Zeal Solutions",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/zeal-solutions/zeal-ui/issues"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/zeal-solutions/zeal-ui#readme",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"zeal",
|
|
13
|
+
"ui"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/zeal-solutions/zeal-ui.git"
|
|
18
|
+
},
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"browser": "dist/index.js",
|
|
21
|
+
"module": "dist/index.js",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/*"
|
|
24
|
+
],
|
|
25
|
+
"exports": {
|
|
26
|
+
"./css/typography.css": "./dist/css/typography.css",
|
|
27
|
+
"./css/base.css": "./dist/css/base.css",
|
|
28
|
+
"./config/tailwind": "./dist/config/tailwind/index.js",
|
|
29
|
+
"./buttons": "./dist/components/buttons/index",
|
|
30
|
+
"./forms": "./dist/components/forms/index",
|
|
31
|
+
"./icons": "./dist/components/icons/index",
|
|
32
|
+
"./inputs": "./dist/components/inputs/index",
|
|
33
|
+
"./menus": "./dist/components/menus/index",
|
|
34
|
+
"./modals": "./dist/components/modals/index",
|
|
35
|
+
"./overlays": "./dist/components/overlays/index",
|
|
36
|
+
"./tooltips": "./dist/components/tooltips/index",
|
|
37
|
+
"./transitions": "./dist/components/transitions/index",
|
|
38
|
+
"./utils": "./dist/utils/index"
|
|
39
|
+
},
|
|
40
|
+
"type": "module",
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "vite",
|
|
43
|
+
"build": "vite build",
|
|
44
|
+
"build:publish": "npm run build && npm publish",
|
|
45
|
+
"preview": "vite preview",
|
|
46
|
+
"storybook": "storybook dev -p 6006",
|
|
47
|
+
"build-storybook": "storybook build",
|
|
48
|
+
"chromatic": "npx chromatic --project-token=chpt_368bf7fc8d469c1"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@vueuse/core": "^10.9.0",
|
|
52
|
+
"@whitespace/storybook-addon-html": "^6.1.0",
|
|
53
|
+
"axios": "^1.6.8",
|
|
54
|
+
"i": "^0.3.7",
|
|
55
|
+
"lodash": "^4.17.21",
|
|
56
|
+
"npm": "^10.7.0",
|
|
57
|
+
"vue": "^3.4.21",
|
|
58
|
+
"tailwindcss": "^3.4.3",
|
|
59
|
+
"@tailwindcss/forms": "^0.5.7",
|
|
60
|
+
"postcss": "^8.4.38"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@chromatic-com/storybook": "^1.3.3",
|
|
64
|
+
"@storybook/addon-essentials": "^8.0.9",
|
|
65
|
+
"@storybook/addon-interactions": "^8.0.9",
|
|
66
|
+
"@storybook/addon-links": "^8.0.9",
|
|
67
|
+
"@storybook/blocks": "^8.0.9",
|
|
68
|
+
"@storybook/test": "^8.0.9",
|
|
69
|
+
"@storybook/vue3": "^8.0.9",
|
|
70
|
+
"@storybook/vue3-vite": "^8.0.9",
|
|
71
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
72
|
+
"autoprefixer": "^10.4.19",
|
|
73
|
+
"chromatic": "^11.3.1",
|
|
74
|
+
"storybook": "^8.0.9",
|
|
75
|
+
"vite": "^5.2.8",
|
|
76
|
+
"vite-plugin-vue-devtools": "^7.0.25"
|
|
77
|
+
}
|
|
78
|
+
}
|