@clickhouse/click-ui 0.0.191 → 0.0.192
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/click-ui.es.js +1322 -751
- package/dist/click-ui.umd.js +1323 -753
- package/dist/components/DateDetails/DateDetails.d.ts +7 -0
- package/dist/components/index.d.ts +5 -4
- package/package.json +2 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type ArrowPosition = "top" | "right" | "left" | "bottom";
|
|
2
|
+
export interface DateDetailsProps {
|
|
3
|
+
date: Date;
|
|
4
|
+
side?: ArrowPosition;
|
|
5
|
+
systemTimeZone?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const DateDetails: ({ date, side, systemTimeZone, }: DateDetailsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,22 +12,23 @@ export { Badge } from './Badge/Badge';
|
|
|
12
12
|
export { BigStat } from './BigStat/BigStat';
|
|
13
13
|
export { ButtonGroup } from './ButtonGroup/ButtonGroup';
|
|
14
14
|
export { Button } from './Button/Button';
|
|
15
|
-
export { CardSecondary } from './CardSecondary/CardSecondary';
|
|
16
|
-
export { CardPrimary } from './CardPrimary/CardPrimary';
|
|
17
15
|
export { CardHorizontal } from './CardHorizontal/CardHorizontal';
|
|
16
|
+
export { CardPrimary } from './CardPrimary/CardPrimary';
|
|
18
17
|
export { CardPromotion } from './CardPromotion/CardPromotion';
|
|
18
|
+
export { CardSecondary } from './CardSecondary/CardSecondary';
|
|
19
19
|
export { Checkbox } from './Checkbox/Checkbox';
|
|
20
20
|
export { CodeBlock } from './CodeBlock/CodeBlock';
|
|
21
|
+
export { ConfirmationDialog } from './ConfirmationDialog/ConfirmationDialog';
|
|
22
|
+
export { ContextMenu } from './ContextMenu/ContextMenu';
|
|
21
23
|
export { Container } from './Container/Container';
|
|
24
|
+
export { DateDetails } from './DateDetails/DateDetails';
|
|
22
25
|
export { DatePicker } from './DatePicker/DatePicker';
|
|
23
26
|
export { Dialog } from './Dialog/Dialog';
|
|
24
|
-
export { ConfirmationDialog } from './ConfirmationDialog/ConfirmationDialog';
|
|
25
27
|
export { EllipsisContent } from './EllipsisContent/EllipsisContent';
|
|
26
28
|
export { Flyout } from './Flyout/Flyout';
|
|
27
29
|
export { FormContainer } from './FormContainer/FormContainer';
|
|
28
30
|
export { GridContainer } from './GridContainer/GridContainer';
|
|
29
31
|
export { InlineCodeBlock } from './CodeBlock/InlineCodeBlock';
|
|
30
|
-
export { ContextMenu } from './ContextMenu/ContextMenu';
|
|
31
32
|
export { default as Flags } from './icons/Flags';
|
|
32
33
|
export { Grid } from './Grid/Grid';
|
|
33
34
|
export { HoverCard } from './HoverCard/HoverCard';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickhouse/click-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.192",
|
|
4
4
|
"description": "Official ClickHouse design system react library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"watch": "^1.0.2"
|
|
116
116
|
},
|
|
117
117
|
"peerDependencies": {
|
|
118
|
+
"dayjs": "^1.11.13",
|
|
118
119
|
"react": "^18.2.0",
|
|
119
120
|
"react-dom": "^18.2.0",
|
|
120
121
|
"styled-components": ">= 5"
|