@luscii-healthtech/web-ui 2.48.0 → 2.48.2
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 +9 -0
- package/dist/components/ButtonV2/ButtonProps.type.d.ts +2 -2
- package/dist/components/ConfirmationDialog/ConfirmationDialogTitle.d.ts +1 -1
- package/dist/components/ConfirmationDialog/types/ConfirmationDialog.types.d.ts +2 -2
- package/dist/components/Icon/Icon.d.ts +7 -0
- package/dist/components/Icons/AddIcon.d.ts +2 -1
- package/dist/components/Icons/AlertsIcon.d.ts +2 -1
- package/dist/components/Icons/BellIcon.d.ts +2 -1
- package/dist/components/Icons/ChartIcon.d.ts +2 -1
- package/dist/components/Icons/ChartLineColoredIcon.d.ts +2 -1
- package/dist/components/Icons/ChatBoxIcon.d.ts +2 -1
- package/dist/components/Icons/CheckIcon.d.ts +2 -1
- package/dist/components/Icons/ChevronDoubleIcon.d.ts +2 -1
- package/dist/components/Icons/ChevronDownIcon.d.ts +2 -1
- package/dist/components/Icons/ChevronRightIcon.d.ts +2 -1
- package/dist/components/Icons/CrossIcon.d.ts +2 -1
- package/dist/components/Icons/DeleteIcon.d.ts +2 -1
- package/dist/components/Icons/DownArrowIcon.d.ts +2 -1
- package/dist/components/Icons/DragIcon.d.ts +2 -1
- package/dist/components/Icons/EditIcon.d.ts +2 -1
- package/dist/components/Icons/EmptyIcon.d.ts +2 -1
- package/dist/components/Icons/EmptyStateDashboardIcon.d.ts +3 -1
- package/dist/components/Icons/ExclamationMarkIcon.d.ts +2 -1
- package/dist/components/Icons/EyeIcon.d.ts +2 -1
- package/dist/components/Icons/GearColoredIcon.d.ts +2 -1
- package/dist/components/Icons/GearIcon.d.ts +2 -1
- package/dist/components/Icons/GroupColoredIcon.d.ts +2 -1
- package/dist/components/Icons/GroupIcon.d.ts +2 -1
- package/dist/components/Icons/HamburgerIcon.d.ts +2 -1
- package/dist/components/Icons/HeartIcon.d.ts +2 -1
- package/dist/components/Icons/ImageIcon.d.ts +2 -2
- package/dist/components/Icons/InfoIcon.d.ts +2 -1
- package/dist/components/Icons/LeftArrowIcon.d.ts +2 -1
- package/dist/components/Icons/LightBulbIcon.d.ts +2 -1
- package/dist/components/Icons/LinkIcon.d.ts +2 -1
- package/dist/components/Icons/LockIcon.d.ts +2 -1
- package/dist/components/Icons/MessagesIcon.d.ts +2 -1
- package/dist/components/Icons/NotesIcon.d.ts +2 -1
- package/dist/components/Icons/PinIcon.d.ts +2 -1
- package/dist/components/Icons/PrintIcon.d.ts +2 -1
- package/dist/components/Icons/RightArrowIcon.d.ts +2 -1
- package/dist/components/Icons/SearchCancelIcon.d.ts +2 -1
- package/dist/components/Icons/SearchIcon.d.ts +2 -1
- package/dist/components/Icons/SmallCircleIcon.d.ts +2 -1
- package/dist/components/Icons/SmallDiamondIcon.d.ts +2 -1
- package/dist/components/Icons/SmallSquareIcon.d.ts +2 -1
- package/dist/components/Icons/SpaceRocketIcon.d.ts +2 -1
- package/dist/components/Icons/StarIcon.d.ts +2 -1
- package/dist/components/Icons/StatusColoredIcon.d.ts +2 -1
- package/dist/components/Icons/WarningIcon.d.ts +2 -2
- package/dist/components/Icons/iconWrapper/iconWrapper.d.ts +4 -0
- package/dist/components/Icons/iconWrapper/index.d.ts +1 -0
- package/dist/components/Icons/index.d.ts +45 -40
- package/dist/components/Icons/templates/component.d.ts +3 -0
- package/dist/components/Icons/templates/index.d.ts +2 -0
- package/dist/components/Input/Input.d.ts +2 -2
- package/dist/components/Toaster/Toaster.d.ts +1 -1
- package/dist/web-ui.cjs.development.js +6503 -6510
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +6499 -6511
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.48.
|
|
2
|
+
"version": "2.48.2",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"build-tailwind": "NODE_ENV=production yarn run tailwindcss build tailwind.css -o ./dist/web-ui-tailwind.css",
|
|
24
24
|
"copy-build": "cp -a ./dist/. ../cVitals-Web/node_modules/@luscii-healthtech/web-ui/dist",
|
|
25
25
|
"test-copy-build": "yarn build && yarn copy-build",
|
|
26
|
-
"prepare": "husky install"
|
|
26
|
+
"prepare": "husky install",
|
|
27
|
+
"icons": "svgr --out-dir src/components/Icons src/components/Icons/icons --typescript --template src/components/Icons/templates/component.ts --index-template src/components/Icons/templates/index.ts"
|
|
27
28
|
},
|
|
28
29
|
"peerDependencies": {
|
|
29
30
|
"@dnd-kit/core": "^6.0.8",
|
|
@@ -70,6 +71,7 @@
|
|
|
70
71
|
"@storybook/addon-postcss": "^2.0.0",
|
|
71
72
|
"@storybook/addons": "^6.5.16",
|
|
72
73
|
"@storybook/react": "^6.5.16",
|
|
74
|
+
"@svgr/cli": "^7.0.0",
|
|
73
75
|
"@types/reach__router": "^1.3.10",
|
|
74
76
|
"@types/react": "^18.0.27",
|
|
75
77
|
"@types/react-dom": "^18.0.10",
|