@appkit/dek-ui 0.1.3 → 0.1.5

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.
@@ -1,4 +1,3 @@
1
- import { DefaultTheme } from 'styled-components';
2
1
  import { ViewBackColor } from '../../components/View/View';
3
- declare function viewBackColorToCSS(theme: DefaultTheme, color: ViewBackColor | string): string;
2
+ declare function viewBackColorToCSS(color: ViewBackColor | string): string;
4
3
  export default viewBackColorToCSS;
@@ -4,4 +4,5 @@ declare const meta: Meta<typeof TitleBar>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof TitleBar>;
6
6
  export declare const Default: Story;
7
+ export declare const WithSubTitle: Story;
7
8
  export declare const WithChildren: Story;
@@ -5,4 +5,3 @@ export default meta;
5
5
  type Story = StoryObj<typeof View>;
6
6
  export declare const Default: Story;
7
7
  export declare const BackColors: Story;
8
- export declare const Shades: Story;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appkit/dek-ui",
3
3
  "private": false,
4
- "version": "0.1.3",
4
+ "version": "0.1.5",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsc && vite build",
@@ -1,6 +0,0 @@
1
- import { ReactNode } from 'react';
2
- type Props = {
3
- children?: ReactNode;
4
- };
5
- declare const Provider: ({ children }: Props) => import("react/jsx-runtime").JSX.Element;
6
- export default Provider;