@cloudtower/eagle 0.21.2 → 0.21.4
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/TimeZoneSelect/index.d.ts +2 -8
- package/dist/esm/index.js +141 -24
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/spec/base.d.ts +2 -1
- package/dist/spec/type.d.ts +7 -0
- package/dist/style.css +366 -366
- package/dist/umd/index.js +146 -25
- package/dist/umd/stats1.html +1 -1
- package/package.json +4 -4
package/dist/spec/base.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ import { TooltipProps as AntdTooltipProps } from "antd/lib/tooltip";
|
|
|
29
29
|
import React, { ReactNode } from "react";
|
|
30
30
|
import { SerializableObject } from "../utils/tower";
|
|
31
31
|
import { FieldRenderProps } from "./react-final-form";
|
|
32
|
-
import { Architecture, ISpaceProps } from "./type";
|
|
32
|
+
import { Architecture, ISpaceProps, ITimeZoneSelectProps } from "./type";
|
|
33
33
|
declare type BadgeTypeProps = "warning" | "error" | "info";
|
|
34
34
|
declare type Primitive = "Int" | "Float" | "DateTime" | "Enum" | "String" | "Boolean";
|
|
35
35
|
export declare type Child = {
|
|
@@ -363,6 +363,7 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
363
363
|
autoComplete: React.ForwardRefExoticComponent<AutoCompleteProps>;
|
|
364
364
|
simplePagination: React.FC<ISimplePaginationProps>;
|
|
365
365
|
space: React.FC<ISpaceProps>;
|
|
366
|
+
timeZoneSelect: React.FC<ITimeZoneSelectProps>;
|
|
366
367
|
}
|
|
367
368
|
export declare const kitContext: React.Context<Kit<any, HTMLElement>>;
|
|
368
369
|
export declare type ArchComponentType = React.FC<{
|
package/dist/spec/type.d.ts
CHANGED
|
@@ -43,3 +43,10 @@ export interface ISpaceProps {
|
|
|
43
43
|
direction?: "horizontal" | "vertical";
|
|
44
44
|
align?: "start" | "end" | "center" | "baseline";
|
|
45
45
|
}
|
|
46
|
+
export interface ITimeZoneSelectProps {
|
|
47
|
+
value: string | undefined;
|
|
48
|
+
onChange: (value: string) => void;
|
|
49
|
+
defaultUseBrowserTime?: boolean;
|
|
50
|
+
disabled?: boolean;
|
|
51
|
+
className?: string;
|
|
52
|
+
}
|