karsten-design-system 1.2.50 → 1.2.52

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.
@@ -11,5 +11,6 @@ export type MenubarProps = {
11
11
  redirect?: string;
12
12
  helloTranslation?: string;
13
13
  favoritesTranslation?: string;
14
+ homeTranslation?: string;
14
15
  };
15
- export declare function Header({ sidebarItems, sidebarTopItems, username, userConfigItems, setOpenNotifications, isRenderNotifications, rightActions, redirect, helloTranslation, favoritesTranslation, }: MenubarProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function Header({ sidebarItems, sidebarTopItems, username, userConfigItems, setOpenNotifications, isRenderNotifications, rightActions, redirect, helloTranslation, favoritesTranslation, homeTranslation, }: MenubarProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ export type TextColorProps = {
2
+ value: string;
3
+ color?: TextColor;
4
+ };
5
+ export type TextColor = 'blue' | 'red' | 'green' | 'gray' | 'purple' | 'yellow' | 'orange' | 'pink' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'indigo' | 'violet' | 'fuchsia' | 'rose' | 'stone' | 'amber' | 'lime' | 'slate' | 'zinc' | 'neutral';
6
+ export declare function TextColor({ value, color }: TextColorProps): import("react/jsx-runtime").JSX.Element;
@@ -36,5 +36,6 @@ export * from './stories/components/spinner';
36
36
  export * from './stories/components/table';
37
37
  export * from './stories/components/tabs';
38
38
  export * from './stories/components/tagStatus';
39
+ export * from './stories/components/textColor';
39
40
  export * from './stories/components/toast';
40
41
  export * from './stories/components/tooltip';
@@ -11,5 +11,6 @@ export type MenubarProps = {
11
11
  redirect?: string;
12
12
  helloTranslation?: string;
13
13
  favoritesTranslation?: string;
14
+ homeTranslation?: string;
14
15
  };
15
- export declare function Header({ sidebarItems, sidebarTopItems, username, userConfigItems, setOpenNotifications, isRenderNotifications, rightActions, redirect, helloTranslation, favoritesTranslation, }: MenubarProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function Header({ sidebarItems, sidebarTopItems, username, userConfigItems, setOpenNotifications, isRenderNotifications, rightActions, redirect, helloTranslation, favoritesTranslation, homeTranslation, }: MenubarProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ export type TextColorProps = {
2
+ value: string;
3
+ color?: TextColor;
4
+ };
5
+ export type TextColor = 'blue' | 'red' | 'green' | 'gray' | 'purple' | 'yellow' | 'orange' | 'pink' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'indigo' | 'violet' | 'fuchsia' | 'rose' | 'stone' | 'amber' | 'lime' | 'slate' | 'zinc' | 'neutral';
6
+ export declare function TextColor({ value, color }: TextColorProps): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "karsten-design-system",
3
3
  "description": "Karsten Design System Components",
4
- "version": "1.2.50",
4
+ "version": "1.2.52",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",