@juspay/blend-design-system 0.0.1 → 0.0.5
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/Inputs/DropdownInput/DropdownInput.d.ts +1 -1
- package/dist/components/Inputs/DropdownInput/dropdownInput.tokens.d.ts +5 -1
- package/dist/components/Inputs/DropdownInput/types.d.ts +3 -1
- package/dist/components/Inputs/NumberInput/NumberInput.d.ts +1 -1
- package/dist/components/Inputs/NumberInput/numberInput.tokens.d.ts +5 -1
- package/dist/components/Inputs/NumberInput/types.d.ts +4 -2
- package/dist/components/Inputs/TextArea/textarea.token.d.ts +5 -1
- package/dist/components/Inputs/TextArea/types.d.ts +1 -1
- package/dist/components/Inputs/TextInput/TextInput.d.ts +1 -1
- package/dist/components/Inputs/TextInput/textInput.tokens.d.ts +5 -1
- package/dist/components/Inputs/TextInput/types.d.ts +3 -1
- package/dist/components/Inputs/UnitInput/UnitInput.d.ts +1 -1
- package/dist/components/Inputs/UnitInput/types.d.ts +3 -1
- package/dist/components/Inputs/UnitInput/unitInput.tokens.d.ts +5 -1
- package/dist/components/Inputs/utils/FloatingLabels/FloatingLabels.d.ts +7 -0
- package/dist/components/MultiSelect/MultiSelectTrigger.d.ts +22 -0
- package/dist/components/MultiSelect/index.d.ts +1 -0
- package/dist/components/MultiSelect/multiSelect.tokens.d.ts +10 -2
- package/dist/components/MultiSelect/types.d.ts +1 -0
- package/dist/components/Primitives/PrimitiveButton/PrimitiveButton.d.ts +4 -0
- package/dist/components/Primitives/PrimitiveInput/PrimitiveInput.d.ts +2 -0
- package/dist/components/Primitives/PrimitiveText/PrimitiveText.d.ts +5 -0
- package/dist/components/Primitives/PrimitiveTextArea.d.ts +2 -0
- package/dist/components/SingleSelect/SingleSelectTrigger.d.ts +21 -0
- package/dist/components/SingleSelect/singleSelect.tokens.d.ts +76 -0
- package/dist/components/SingleSelect/types.d.ts +54 -1
- package/dist/context/ThemeContext.d.ts +14 -12
- package/dist/context/useComponentToken.d.ts +8 -7
- package/dist/global-utils/GlobalUtils.d.ts +1 -0
- package/dist/main.js +13135 -11962
- package/package.json +24 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/blend-design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"description": "A comprehensive React component library and design system by Juspay",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/main.js",
|
|
@@ -22,7 +22,12 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "eslint .",
|
|
24
24
|
"build": "pnpm lint && tsc --p ./tsconfig.json && vite build",
|
|
25
|
-
"prepublishOnly": "pnpm run build"
|
|
25
|
+
"prepublishOnly": "pnpm run build",
|
|
26
|
+
"test": "vitest",
|
|
27
|
+
"test:ui": "vitest --ui",
|
|
28
|
+
"test:coverage": "vitest --coverage",
|
|
29
|
+
"test:watch": "vitest --watch",
|
|
30
|
+
"test:run": "vitest run"
|
|
26
31
|
},
|
|
27
32
|
"peerDependencies": {
|
|
28
33
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -53,24 +58,37 @@
|
|
|
53
58
|
"@storybook/react": "^8.6.12",
|
|
54
59
|
"@storybook/react-vite": "^8.6.12",
|
|
55
60
|
"@storybook/test": "^8.6.12",
|
|
61
|
+
"@testing-library/dom": "^10.4.0",
|
|
62
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
63
|
+
"@testing-library/react": "^16.3.0",
|
|
64
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
65
|
+
"@testing-library/user-event": "^14.6.1",
|
|
66
|
+
"@types/jest-axe": "^3.5.9",
|
|
56
67
|
"@types/node": "^22.15.21",
|
|
57
68
|
"@types/react": "^19.1.2",
|
|
58
69
|
"@types/react-dom": "^19.1.2",
|
|
59
70
|
"@vitejs/plugin-react": "^4.4.1",
|
|
71
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
72
|
+
"@vitest/ui": "^3.2.4",
|
|
60
73
|
"eslint": "^9.25.0",
|
|
61
74
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
62
75
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
63
76
|
"eslint-plugin-storybook": "^0.12.0",
|
|
64
77
|
"globals": "^16.0.0",
|
|
78
|
+
"jest-axe": "^10.0.0",
|
|
79
|
+
"jest-styled-components": "^7.2.0",
|
|
80
|
+
"jsdom": "^26.1.0",
|
|
65
81
|
"prettier": "^3.1.0",
|
|
66
82
|
"react": "^19.1.0",
|
|
67
83
|
"react-dom": "^19.1.0",
|
|
84
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
68
85
|
"storybook": "^8.6.12",
|
|
69
86
|
"typescript": "~5.8.3",
|
|
70
87
|
"typescript-eslint": "^8.30.1",
|
|
71
88
|
"vite": "^6.3.5",
|
|
72
89
|
"vite-plugin-dts": "^4.5.4",
|
|
73
|
-
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
90
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
91
|
+
"vitest": "^3.2.4"
|
|
74
92
|
},
|
|
75
93
|
"keywords": [
|
|
76
94
|
"react",
|
|
@@ -95,5 +113,8 @@
|
|
|
95
113
|
"plugin:storybook/recommended"
|
|
96
114
|
]
|
|
97
115
|
},
|
|
116
|
+
"publishConfig": {
|
|
117
|
+
"access": "public"
|
|
118
|
+
},
|
|
98
119
|
"packageManager": "pnpm@10.11.0"
|
|
99
120
|
}
|