@verifiedinc-public/shared-ui-elements 2.0.0 → 2.1.0
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/components/animation/Counter.d.ts +8 -0
- package/dist/components/animation/index.d.ts +2 -0
- package/dist/components/animation/index.mjs +1 -0
- package/dist/components/animation/motions.d.ts +2220 -0
- package/dist/components/index.mjs +1 -1
- package/dist/hooks/useOnClickOutside.d.ts +23 -0
- package/dist/index.mjs +1 -1
- package/dist/shared/index-C9nSeFPi.mjs +105 -0
- package/dist/shared/jsx-runtime-jmtevAuS.mjs +1 -0
- package/package.json +8 -5
- package/dist/shared/index-CTvz4BbG.mjs +0 -105
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";import N from"react";var E={exports:{}},l={},P;function F(){if(P)return l;P=1;var _=N,k=Symbol.for("react.element"),w=Symbol.for("react.fragment"),S=Object.prototype.hasOwnProperty,j=_.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,O={key:!0,ref:!0,__self:!0,__source:!0};function v(c,o,m){var i,f={},p=null,g=null;m!==void 0&&(p=""+m),o.key!==void 0&&(p=""+o.key),o.ref!==void 0&&(g=o.ref);for(i in o)S.call(o,i)&&!O.hasOwnProperty(i)&&(f[i]=o[i]);if(c&&c.defaultProps)for(i in o=c.defaultProps,o)f[i]===void 0&&(f[i]=o[i]);return{$$typeof:k,type:c,key:p,ref:g,props:f,_owner:j.current}}return l.Fragment=w,l.jsx=v,l.jsxs=v,l}var D={},T;function yr(){return T||(T=1),D}E.exports=F();var I=E.exports;export{I as j};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@verifiedinc-public/shared-ui-elements",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.1.0",
|
4
4
|
"description": "A set of UI components, utilities that is shareable with the core apps.",
|
5
5
|
"private": false,
|
6
6
|
"keywords": [],
|
@@ -23,6 +23,10 @@
|
|
23
23
|
"types": "./dist/components/index.d.ts",
|
24
24
|
"import": "./dist/components/index.mjs"
|
25
25
|
},
|
26
|
+
"./components/*": {
|
27
|
+
"types": "./dist/components/*/index.d.ts",
|
28
|
+
"import": "./dist/components/*/index.mjs"
|
29
|
+
},
|
26
30
|
"./hooks": {
|
27
31
|
"types": "./dist/hooks/index.d.ts",
|
28
32
|
"import": "./dist/hooks/index.mjs"
|
@@ -109,9 +113,7 @@
|
|
109
113
|
"tsx": "^3.12.4",
|
110
114
|
"typescript": "^5.2.2",
|
111
115
|
"vite-plugin-dts": "^4.3.0",
|
112
|
-
"vitest": "^1.6.0"
|
113
|
-
"zod": "^3.23.8",
|
114
|
-
"notistack": "^3.0.1"
|
116
|
+
"vitest": "^1.6.0"
|
115
117
|
},
|
116
118
|
"peerDependencies": {
|
117
119
|
"@emotion/react": "^11.11.4",
|
@@ -122,6 +124,7 @@
|
|
122
124
|
"@mui/icons-material": "^5 || ^6",
|
123
125
|
"@mui/material": "^5 || ^6",
|
124
126
|
"libphonenumber-js": "^1.11.11",
|
127
|
+
"notistack": "^3.0.1",
|
125
128
|
"qrcode": "^1.5.4",
|
126
129
|
"react": "^18",
|
127
130
|
"react-dnd": "^16.0.1",
|
@@ -130,6 +133,6 @@
|
|
130
133
|
"react-hook-form": "^7.52.1",
|
131
134
|
"react-imask": "^7.6.1",
|
132
135
|
"zod": "^3.23.8",
|
133
|
-
"
|
136
|
+
"framer-motion": ">=11.15.0"
|
134
137
|
}
|
135
138
|
}
|