@sikka/hawa 0.32.0 → 0.32.2-next
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/blocks/auth/index.d.mts +1 -1
- package/dist/blocks/auth/index.d.ts +1 -1
- package/dist/blocks/index.d.mts +1 -1
- package/dist/blocks/index.d.ts +1 -1
- package/dist/dataTable/index.d.mts +1 -0
- package/dist/dataTable/index.d.ts +1 -0
- package/dist/dataTable/index.js +2 -1
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs +2 -1
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +1 -0
- package/dist/elements/index.d.ts +1 -0
- package/dist/elements/index.js +2 -1
- package/dist/elements/index.mjs +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
@@ -469,6 +469,7 @@ declare module "@tanstack/table-core" {
|
|
469
469
|
padding?: "condensed" | "default" | "noPadding";
|
470
470
|
sortable?: boolean;
|
471
471
|
hidden?: boolean;
|
472
|
+
i18nKey?: string;
|
472
473
|
}
|
473
474
|
}
|
474
475
|
declare const DataTable: <DataProps extends {}>({ columns, data, paginationPosition, translateFn, enableHideColumns, enableSearch, enableGoTo, ...props }: DataTableProps<DataProps>) => React$1.JSX.Element;
|
@@ -1576,7 +1577,7 @@ type LoginFormTypes = {
|
|
1576
1577
|
/** If true, the form is displayed without a card container styling.*/
|
1577
1578
|
cardless?: boolean;
|
1578
1579
|
/** Props to pass to the PhoneInput component */
|
1579
|
-
phoneInputProps
|
1580
|
+
phoneInputProps?: PhoneInputProps;
|
1580
1581
|
};
|
1581
1582
|
declare const LoginForm: FC<LoginFormTypes>;
|
1582
1583
|
|
package/dist/index.d.ts
CHANGED
@@ -469,6 +469,7 @@ declare module "@tanstack/table-core" {
|
|
469
469
|
padding?: "condensed" | "default" | "noPadding";
|
470
470
|
sortable?: boolean;
|
471
471
|
hidden?: boolean;
|
472
|
+
i18nKey?: string;
|
472
473
|
}
|
473
474
|
}
|
474
475
|
declare const DataTable: <DataProps extends {}>({ columns, data, paginationPosition, translateFn, enableHideColumns, enableSearch, enableGoTo, ...props }: DataTableProps<DataProps>) => React$1.JSX.Element;
|
@@ -1576,7 +1577,7 @@ type LoginFormTypes = {
|
|
1576
1577
|
/** If true, the form is displayed without a card container styling.*/
|
1577
1578
|
cardless?: boolean;
|
1578
1579
|
/** Props to pass to the PhoneInput component */
|
1579
|
-
phoneInputProps
|
1580
|
+
phoneInputProps?: PhoneInputProps;
|
1580
1581
|
};
|
1581
1582
|
declare const LoginForm: FC<LoginFormTypes>;
|
1582
1583
|
|
package/dist/index.js
CHANGED
@@ -2965,6 +2965,7 @@ var DataTable = ({
|
|
2965
2965
|
align: props.direction === "rtl" ? "start" : "end"
|
2966
2966
|
},
|
2967
2967
|
table.getAllColumns().filter((column) => column.getCanHide()).map((column) => {
|
2968
|
+
var _a2, _b2;
|
2968
2969
|
return /* @__PURE__ */ React22.createElement(
|
2969
2970
|
DropdownMenuCheckboxItem,
|
2970
2971
|
{
|
@@ -2972,7 +2973,7 @@ var DataTable = ({
|
|
2972
2973
|
checked: column.getIsVisible(),
|
2973
2974
|
onCheckedChange: (value) => column.toggleVisibility(!!value)
|
2974
2975
|
},
|
2975
|
-
translateFn ? translateFn(column.id) : column.id
|
2976
|
+
((_a2 = column.columnDef.meta) == null ? void 0 : _a2.i18nKey) ? (_b2 = column.columnDef.meta) == null ? void 0 : _b2.i18nKey : translateFn ? translateFn(column.id) : column.id
|
2976
2977
|
);
|
2977
2978
|
})
|
2978
2979
|
))), props.isLoading ? /* @__PURE__ */ React22.createElement(Skeleton, { className: "hawa-h-[130px] hawa-w-full" }) : /* @__PURE__ */ React22.createElement(
|
package/dist/index.mjs
CHANGED
@@ -2735,6 +2735,7 @@ var DataTable = ({
|
|
2735
2735
|
align: props.direction === "rtl" ? "start" : "end"
|
2736
2736
|
},
|
2737
2737
|
table.getAllColumns().filter((column) => column.getCanHide()).map((column) => {
|
2738
|
+
var _a2, _b2;
|
2738
2739
|
return /* @__PURE__ */ React22.createElement(
|
2739
2740
|
DropdownMenuCheckboxItem,
|
2740
2741
|
{
|
@@ -2742,7 +2743,7 @@ var DataTable = ({
|
|
2742
2743
|
checked: column.getIsVisible(),
|
2743
2744
|
onCheckedChange: (value) => column.toggleVisibility(!!value)
|
2744
2745
|
},
|
2745
|
-
translateFn ? translateFn(column.id) : column.id
|
2746
|
+
((_a2 = column.columnDef.meta) == null ? void 0 : _a2.i18nKey) ? (_b2 = column.columnDef.meta) == null ? void 0 : _b2.i18nKey : translateFn ? translateFn(column.id) : column.id
|
2746
2747
|
);
|
2747
2748
|
})
|
2748
2749
|
))), props.isLoading ? /* @__PURE__ */ React22.createElement(Skeleton, { className: "hawa-h-[130px] hawa-w-full" }) : /* @__PURE__ */ React22.createElement(
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sikka/hawa",
|
3
|
-
"version": "0.32.
|
3
|
+
"version": "0.32.2-next",
|
4
4
|
"description": "Modern UI Kit made with Tailwind",
|
5
5
|
"author": {
|
6
6
|
"name": "Sikka Software",
|
@@ -65,8 +65,8 @@
|
|
65
65
|
"@radix-ui/react-tabs": "^1.0.4",
|
66
66
|
"@radix-ui/react-toast": "^1.1.5",
|
67
67
|
"@radix-ui/react-tooltip": "^1.0.7",
|
68
|
-
"@tanstack/react-table": "^8.
|
69
|
-
"@tanstack/table-core": "^8.
|
68
|
+
"@tanstack/react-table": "^8.17.3",
|
69
|
+
"@tanstack/table-core": "^8.17.3",
|
70
70
|
"class-variance-authority": "^0.7.0",
|
71
71
|
"clsx": "^2.1.1",
|
72
72
|
"cmdk": "^1.0.0",
|
@@ -74,7 +74,7 @@
|
|
74
74
|
"embla-carousel-react": "^8.0.4",
|
75
75
|
"eslint": "^9.2.0",
|
76
76
|
"eslint-config-next": "^14.2.3",
|
77
|
-
"libphonenumber-js": "^1.
|
77
|
+
"libphonenumber-js": "^1.11.1",
|
78
78
|
"prism-react-renderer": "^2.3.1",
|
79
79
|
"prismjs": "^1.29.0",
|
80
80
|
"react-dropzone": "^14.2.3",
|
@@ -86,15 +86,15 @@
|
|
86
86
|
"tailwind-merge": "^2.3.0",
|
87
87
|
"tailwind-variants": "^0.2.1",
|
88
88
|
"trim-canvas": "^0.1.2",
|
89
|
-
"zod": "^3.23.
|
89
|
+
"zod": "^3.23.8"
|
90
90
|
},
|
91
91
|
"devDependencies": {
|
92
92
|
"@babel/preset-react": "^7.24.1",
|
93
93
|
"@sikka/alam": "^0.0.4",
|
94
94
|
"@testing-library/jest-dom": "^6.4.5",
|
95
|
-
"@testing-library/react": "^15.0.
|
95
|
+
"@testing-library/react": "^15.0.7",
|
96
96
|
"@types/jest": "^29.5.12",
|
97
|
-
"@types/react": "^18.3.
|
97
|
+
"@types/react": "^18.3.2",
|
98
98
|
"@types/react-dom": "^18.3.0",
|
99
99
|
"autoprefixer": "^10.4.19",
|
100
100
|
"boxen": "^7.1.1",
|