@ceed/cds 1.15.0-next.7 → 1.15.0-next.9
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/FilterableCheckboxGroup/FilterableCheckboxGroup.d.ts +2 -0
- package/dist/components/Pagination/Pagination.d.ts +1 -0
- package/dist/components/navigation/Pagination.md +2 -2
- package/dist/index.cjs +338 -200
- package/dist/index.js +161 -23
- package/framer/index.js +51 -51
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
interface FilterableCheckboxGroupOption {
|
|
3
3
|
value: string;
|
|
4
4
|
label: string;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
7
|
export type FilterableCheckboxGroupProps = {
|
|
7
8
|
value?: string[];
|
|
@@ -13,6 +14,7 @@ export type FilterableCheckboxGroupProps = {
|
|
|
13
14
|
required?: boolean;
|
|
14
15
|
onChange?: (value: string[]) => void;
|
|
15
16
|
maxHeight?: string | number;
|
|
17
|
+
disabled?: boolean;
|
|
16
18
|
};
|
|
17
19
|
declare function FilterableCheckboxGroup(props: FilterableCheckboxGroupProps): React.JSX.Element;
|
|
18
20
|
declare namespace FilterableCheckboxGroup {
|
|
@@ -21,6 +21,7 @@ interface PaginationProps extends React.ComponentProps<typeof PaginationRoot> {
|
|
|
21
21
|
rowCount: number;
|
|
22
22
|
onPageChange: (newPage: number) => void;
|
|
23
23
|
size?: 'sm' | 'md' | 'lg';
|
|
24
|
+
variant?: 'standard' | 'compact';
|
|
24
25
|
}
|
|
25
26
|
declare function Pagination(props: PaginationProps): React.JSX.Element;
|
|
26
27
|
declare namespace Pagination {
|