@juspay/blend-design-system 0.0.25-beta → 0.0.26-beta
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/Avatar/Avatar.d.ts +2 -1
- package/dist/components/Avatar/types.d.ts +5 -0
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/Button/types.d.ts +1 -1
- package/dist/components/Checkbox/checkboxUtils.d.ts +0 -19
- package/dist/components/Checkbox/types.d.ts +1 -1
- package/dist/components/DataTable/TableBody/types.d.ts +5 -0
- package/dist/components/DataTable/TableHeader/DraggableColumnHeader.d.ts +9 -0
- package/dist/components/DataTable/TableHeader/index.d.ts +2 -1
- package/dist/components/DataTable/TableHeader/types.d.ts +2 -0
- package/dist/components/DataTable/types.d.ts +8 -14
- package/dist/components/Directory/directory.tokens.d.ts +86 -0
- package/dist/components/Drawer/components/DrawerBase.d.ts +1 -1
- package/dist/components/Drawer/types.d.ts +17 -0
- package/dist/components/Inputs/MultiValueInput/MultiValueInput.d.ts +1 -1
- package/dist/components/Inputs/MultiValueInput/types.d.ts +3 -1
- package/dist/components/Menu/Menu.d.ts +1 -1
- package/dist/components/Menu/types.d.ts +6 -0
- package/dist/components/MultiSelect/MultiSelect.d.ts +1 -1
- package/dist/components/MultiSelect/MultiSelectMenu.d.ts +1 -1
- package/dist/components/MultiSelect/types.d.ts +11 -0
- package/dist/components/Radio/utils.d.ts +0 -1
- package/dist/components/Sidebar/TenantPanel.d.ts +3 -1
- package/dist/components/Sidebar/sidebar.tokens.d.ts +1 -0
- package/dist/components/Sidebar/types.d.ts +22 -1
- package/dist/components/Sidebar/utils.d.ts +1 -1
- package/dist/components/SingleSelect/SingleSelect.d.ts +1 -1
- package/dist/components/SingleSelect/SingleSelectMenu.d.ts +7 -1
- package/dist/components/SingleSelect/types.d.ts +6 -0
- package/dist/components/SplitTag/types.d.ts +1 -10
- package/dist/components/StatCard/StatCard.d.ts +1 -1
- package/dist/components/StatCard/types.d.ts +6 -0
- package/dist/components/Switch/utils.d.ts +0 -1
- package/dist/components/Tabs/StyledTabs.d.ts +2 -0
- package/dist/components/Tabs/Tabs.d.ts +2 -0
- package/dist/components/Tabs/TabsList.d.ts +2 -0
- package/dist/components/Tabs/TabsTrigger.d.ts +5 -0
- package/dist/components/Tabs/types.d.ts +12 -0
- package/dist/components/Tabs/utils.d.ts +20 -0
- package/dist/components/Topbar/topbar.tokens.d.ts +19 -11
- package/dist/components/Topbar/types.d.ts +2 -1
- package/dist/context/ThemeContext.d.ts +2 -0
- package/dist/context/useComponentToken.d.ts +2 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +38266 -29411
- package/dist/tokens/unit.tokens.d.ts +2 -0
- package/package.json +5 -1
|
@@ -2,7 +2,9 @@ import { CSSObject } from 'styled-components';
|
|
|
2
2
|
type UnitType = CSSObject['width'] | CSSObject['height'] | CSSObject['gap'] | CSSObject['padding'] | CSSObject['margin'];
|
|
3
3
|
export type UnitTokensType = Readonly<{
|
|
4
4
|
0: UnitType;
|
|
5
|
+
0.5: UnitType;
|
|
5
6
|
1: UnitType;
|
|
7
|
+
1.5: UnitType;
|
|
6
8
|
2: UnitType;
|
|
7
9
|
3: UnitType;
|
|
8
10
|
4: UnitType;
|
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.26-beta",
|
|
5
5
|
"description": "A comprehensive React component library and design system by Juspay",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/main.js",
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@dnd-kit/core": "^6.3.1",
|
|
38
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
39
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
37
40
|
"@monaco-editor/react": "^4.7.0",
|
|
38
41
|
"@radix-ui/react-accordion": "^1.2.3",
|
|
39
42
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
@@ -43,6 +46,7 @@
|
|
|
43
46
|
"@radix-ui/react-tabs": "^1.0.4",
|
|
44
47
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
45
48
|
"@types/styled-components": "^5.1.34",
|
|
49
|
+
"framer-motion": "^12.23.24",
|
|
46
50
|
"lucide-react": "^0.511.0",
|
|
47
51
|
"monaco-editor": "^0.54.0",
|
|
48
52
|
"radix-ui": "^1.1.3",
|