@michelangelo-ai/core 0.5.0 → 0.6.0-rc.1
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/tag/styled-components.d.ts +1 -1
- package/dist/index.d.ts +0 -27
- package/dist/index.d.ts.map +1 -1
- package/dist/michelangelo-core.cjs +16 -552
- package/dist/michelangelo-core.js +14975 -90011
- package/dist/primitives.cjs +1 -0
- package/dist/primitives.d.ts +27 -0
- package/dist/primitives.d.ts.map +1 -0
- package/dist/primitives.js +41 -0
- package/dist/theme-provider-B6-u7x9y.js +17291 -0
- package/dist/theme-provider-BYi0kcUt.cjs +303 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/vite.config.d.ts.map +1 -1
- package/package.json +9 -2
|
@@ -18,7 +18,7 @@ export declare const getTagOverrides: (theme: Theme, { size, behavior, color, hi
|
|
|
18
18
|
paddingLeft?: string | undefined;
|
|
19
19
|
paddingRight?: string | undefined;
|
|
20
20
|
fontFamily?: string | undefined;
|
|
21
|
-
fontWeight?: number | "
|
|
21
|
+
fontWeight?: number | "bold" | "normal" | "bolder" | "lighter" | import("baseui/themes").Globals | undefined;
|
|
22
22
|
fontSize?: string | undefined;
|
|
23
23
|
lineHeight?: string | number | undefined;
|
|
24
24
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ThemeProvider } from './themes/theme-provider';
|
|
2
1
|
import type { NavigationLink } from './components/navigation-bar/types';
|
|
3
2
|
import type { ErrorContextValue } from './providers/error-provider/types';
|
|
4
3
|
import type { IconProviderContext } from './providers/icon-provider/types';
|
|
@@ -21,7 +20,6 @@ export { useStudioQuery } from './hooks/use-studio-query';
|
|
|
21
20
|
export { useStudioMutation } from './hooks/use-studio-mutation/use-studio-mutation';
|
|
22
21
|
export type { UseStudioMutationResult } from './hooks/use-studio-mutation/types';
|
|
23
22
|
export type { MutationConfig, MutationOptions } from './types/query-types';
|
|
24
|
-
export { ServiceProvider } from './providers/service-provider/service-provider';
|
|
25
23
|
export { useCellToString } from './components/cell/use-cell-to-string';
|
|
26
24
|
export { cellTooltipHoc } from './components/cell/components/tooltip/cell-tooltip-hoc';
|
|
27
25
|
export { DefaultCellRenderer } from './components/cell/renderers/default-cell-renderer';
|
|
@@ -39,26 +37,6 @@ export { StateCell } from './components/cell/renderers/state/state-cell';
|
|
|
39
37
|
export { TagCell } from './components/cell/renderers/tag/tag-cell';
|
|
40
38
|
export { TextCell } from './components/cell/renderers/text/text-cell';
|
|
41
39
|
export { TypeCell } from './components/cell/renderers/type/type-cell';
|
|
42
|
-
export { Box } from './components/box/box';
|
|
43
|
-
export * from './components/box/styled-components';
|
|
44
|
-
export { DateTime } from './components/date-time/date-time';
|
|
45
|
-
export { DescriptionText } from './components/description-text';
|
|
46
|
-
export { HelpTooltip } from './components/help-tooltip';
|
|
47
|
-
export { Link } from './components/link/link';
|
|
48
|
-
export * from './components/link/styled-components';
|
|
49
|
-
export { Markdown } from './components/markdown/markdown';
|
|
50
|
-
export { Row } from './components/row/row';
|
|
51
|
-
export type { RowCell, RowProps } from './components/row/types';
|
|
52
|
-
export { Tag } from './components/tag/tag';
|
|
53
|
-
export * from './components/tag/constants';
|
|
54
|
-
export type { TagColor, TagHierarchy, TagBehavior, TagSize } from './components/tag/types';
|
|
55
|
-
export { TruncatedText } from './components/truncated-text/truncated-text';
|
|
56
|
-
export { Banner } from './components/banner/banner';
|
|
57
|
-
export { Icon } from './components/icon/icon';
|
|
58
|
-
export { IconKind } from './components/icon/types';
|
|
59
|
-
export { IconProvider } from './providers/icon-provider/icon-provider';
|
|
60
|
-
export * from './providers/icon-provider/types';
|
|
61
|
-
export { ThemeProvider };
|
|
62
40
|
export { useStudioParams } from './hooks/routing/use-studio-params/use-studio-params';
|
|
63
41
|
export * from './hooks/routing/use-studio-params/types';
|
|
64
42
|
export { useUrlQueryString } from './hooks/routing/use-url-query-string';
|
|
@@ -68,12 +46,8 @@ export * from './utils/time-utils';
|
|
|
68
46
|
export { TimeZone } from './types/time-types';
|
|
69
47
|
export * from './types/common/studio-types';
|
|
70
48
|
export * from './types/common/view-types';
|
|
71
|
-
export { CellProvider } from './providers/cell-provider/cell-provider';
|
|
72
|
-
export { useCellProvider } from './providers/cell-provider/use-cell-provider';
|
|
73
|
-
export type { CellContextType } from './providers/cell-provider/types';
|
|
74
49
|
export { ApplicationError } from './types/error-types';
|
|
75
50
|
export type { ErrorNormalizer } from './types/error-types';
|
|
76
|
-
export { ErrorProvider } from './providers/error-provider/error-provider';
|
|
77
51
|
export { useErrorNormalizer } from './providers/error-provider/use-error-normalizer';
|
|
78
52
|
export { GrpcStatusCode } from './constants/grpc-status-codes';
|
|
79
53
|
export { interpolate } from './interpolation/interpolate';
|
|
@@ -133,6 +107,5 @@ export * from './components/actions/types';
|
|
|
133
107
|
export { DetailView } from './components/views/detail-view/detail-view';
|
|
134
108
|
export { DetailViewPages } from './components/views/detail-view/components/detail-view-pages/detail-view-pages';
|
|
135
109
|
export type { DetailViewProps, DetailViewTab, DetailViewPagesProps, } from './components/views/detail-view/types/detail-view-component-types';
|
|
136
|
-
export { UserProvider } from './providers/user-provider/user-provider';
|
|
137
110
|
export { UserRole } from './providers/user-provider/types';
|
|
138
111
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.tsx"],"names":[],"mappings":"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"}
|