@zealsolutions/zeal-ui 1.0.0-alpha.100
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-D4GSZKdk.js +43 -0
- package/dist/BaseOverlay-aTh6_ssu.js +21 -0
- package/dist/BaseTooltip-CcnCHpL4.js +53 -0
- package/dist/ChevronDownIcon-De0Ga7A4.js +23 -0
- package/dist/ChevronRightIcon-Be-vxVtQ.js +95 -0
- package/dist/CircleExclamationIcon-CVpIK7Mu.js +23 -0
- package/dist/CircleStatusIcon-CRoBchKs.js +46 -0
- package/dist/CloseButton-BsjhPDWi.js +19 -0
- package/dist/DropdownMenuTextItem-BYGt1jLy.js +1813 -0
- package/dist/InfiniteScroll-CgeGewSV.js +498 -0
- package/dist/InputField-CxSec0eW.js +59 -0
- package/dist/NavigationMenuNotification-C_z9naik.js +452 -0
- package/dist/NotificationIcon-CxO6DGyQ.js +191 -0
- package/dist/OpacityScaleTransition-CtMzqccC.js +26 -0
- package/dist/OpacityTransition-D4EuhJnX.js +26 -0
- package/dist/OpacityTranslateTransition-fF3EnRwC.js +32 -0
- package/dist/ProclusLogo-BAHzwRvI.js +81 -0
- package/dist/TranslateTransition-iGQAQ66h.js +32 -0
- package/dist/TruncateText-BOyOYUV6.js +61 -0
- package/dist/XMarkIcon-Ba-nxo3h.js +23 -0
- package/dist/_plugin-vue_export-helper-CHgC5LLL.js +9 -0
- package/dist/components/buttons/index.js +68 -0
- package/dist/components/forms/index.js +118 -0
- package/dist/components/icons/index.js +1416 -0
- package/dist/components/inputs/index.js +360 -0
- package/dist/components/layouts/index.js +118 -0
- package/dist/components/logos/index.js +468 -0
- package/dist/components/menus/index.js +304 -0
- package/dist/components/modals/index.js +212 -0
- package/dist/components/navigation/index.js +9 -0
- package/dist/components/overlays/index.js +4 -0
- package/dist/components/tooltips/index.js +4 -0
- package/dist/components/transitions/index.js +10 -0
- package/dist/components/utils/index.js +6 -0
- package/dist/config/tailwind/index.js +354 -0
- package/dist/css/base.css +185 -0
- package/dist/css/typography.css +43 -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 +83 -0
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zealsolutions/zeal-ui",
|
|
3
|
+
"version": "1.0.0-alpha.100",
|
|
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
|
+
"./layouts": "./dist/components/layouts/index",
|
|
34
|
+
"./logos": "./dist/components/logos/index",
|
|
35
|
+
"./menus": "./dist/components/menus/index",
|
|
36
|
+
"./modals": "./dist/components/modals/index",
|
|
37
|
+
"./navigation": "./dist/components/navigation/index",
|
|
38
|
+
"./overlays": "./dist/components/overlays/index",
|
|
39
|
+
"./tooltips": "./dist/components/tooltips/index",
|
|
40
|
+
"./transitions": "./dist/components/transitions/index",
|
|
41
|
+
"./utils": "./dist/utils/index"
|
|
42
|
+
},
|
|
43
|
+
"type": "module",
|
|
44
|
+
"scripts": {
|
|
45
|
+
"dev": "vite",
|
|
46
|
+
"build": "vite build",
|
|
47
|
+
"build:publish": "npm run build && npm publish",
|
|
48
|
+
"preview": "vite preview",
|
|
49
|
+
"storybook": "storybook dev -p 6006",
|
|
50
|
+
"build-storybook": "storybook build",
|
|
51
|
+
"chromatic": "npx chromatic --project-token=chpt_368bf7fc8d469c1"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@tailwindcss/forms": "^0.5.7",
|
|
55
|
+
"@vueuse/core": "^10.9.0",
|
|
56
|
+
"@whitespace/storybook-addon-html": "^6.1.1",
|
|
57
|
+
"axios": "^1.6.8",
|
|
58
|
+
"i": "^0.3.7",
|
|
59
|
+
"lodash": "^4.17.21",
|
|
60
|
+
"npm": "^10.7.0",
|
|
61
|
+
"postcss": "^8.4.38",
|
|
62
|
+
"tailwindcss": "^3.4.3",
|
|
63
|
+
"tailwindcss-convert-px-to-rem": "^1.0.4",
|
|
64
|
+
"vue": "^3.4.21"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@chromatic-com/storybook": "^1.6.0",
|
|
68
|
+
"@storybook/addon-essentials": "^8.1.11",
|
|
69
|
+
"@storybook/addon-interactions": "^8.1.11",
|
|
70
|
+
"@storybook/addon-links": "^8.1.11",
|
|
71
|
+
"@storybook/addon-mdx-gfm": "^8.1.11",
|
|
72
|
+
"@storybook/blocks": "^8.1.11",
|
|
73
|
+
"@storybook/test": "^8.1.11",
|
|
74
|
+
"@storybook/vue3": "^8.1.11",
|
|
75
|
+
"@storybook/vue3-vite": "^8.1.11",
|
|
76
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
77
|
+
"autoprefixer": "^10.4.19",
|
|
78
|
+
"chromatic": "^11.3.1",
|
|
79
|
+
"storybook": "^8.1.11",
|
|
80
|
+
"vite": "^5.2.8",
|
|
81
|
+
"vite-plugin-vue-devtools": "^7.0.25"
|
|
82
|
+
}
|
|
83
|
+
}
|