@appkit/dek-lib 0.19.0 → 0.21.0

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.
Files changed (25) hide show
  1. package/dist/components/CommandGroup/CommandGroup.styled.d.ts +2 -298
  2. package/dist/components/Header/Header.styled.d.ts +3 -816
  3. package/dist/components/Router/Router.styled.d.ts +1 -272
  4. package/dist/icon-192x192.png +0 -0
  5. package/dist/icon-256x256.png +0 -0
  6. package/dist/icon-384x384.png +0 -0
  7. package/dist/icon-512x512.png +0 -0
  8. package/dist/index.es.js +39880 -31383
  9. package/dist/index.umd.js +39899 -31402
  10. package/dist/manifest.webmanifest +32 -0
  11. package/dist/plugins/base/components/Greeting/Greeting.styled.d.ts +2 -544
  12. package/dist/plugins/base/components/backgrounds/BlurredLightsBackground/BlurredLightsBackground.styled.d.ts +19 -5168
  13. package/dist/plugins/base/screens/dev/ComponentScreen/ComponentScreen.styled.d.ts +1 -50
  14. package/dist/plugins/calendar/CalendarTiles/CalendarTiles.styled.d.ts +3 -816
  15. package/dist/plugins/calendar/screens/EventScreen/EventScreen.styled.d.ts +1 -272
  16. package/dist/plugins/home-assistant/MediaView/MediaView.styled.d.ts +5 -1114
  17. package/dist/plugins/sample/boards/SampleBoard.d.ts +4 -0
  18. package/dist/plugins/sample/components/CenteredText.d.ts +6 -0
  19. package/dist/plugins/sample/components/JsonView.d.ts +6 -0
  20. package/dist/plugins/sample/components/ToggleButton.d.ts +5 -0
  21. package/dist/plugins/sample/plugin.d.ts +11 -0
  22. package/dist/plugins/sample/screens/SampleScreen/SampleScreen.d.ts +4 -0
  23. package/dist/plugins/weather/WeatherComponent/WeatherComponent.styled.d.ts +3 -816
  24. package/dist/plugins/weather/WeatherDisplay/WeatherDisplay.styled.d.ts +3 -816
  25. package/package.json +6 -5
@@ -0,0 +1,4 @@
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ type Props = DekPluginElementProps;
3
+ declare const SampleBoard: (props: Props) => import("react/jsx-runtime").JSX.Element;
4
+ export default SampleBoard;
@@ -0,0 +1,6 @@
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ type Props = DekPluginElementProps & {
3
+ text?: string;
4
+ };
5
+ declare const CenteredText: ({ text }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export default CenteredText;
@@ -0,0 +1,6 @@
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ type Props = DekPluginElementProps & {
3
+ json?: any;
4
+ };
5
+ declare const JsonView: ({ json }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export default JsonView;
@@ -0,0 +1,5 @@
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ import { CardButtonProps } from '@appkit/dek-ui';
3
+ type Props = DekPluginElementProps & CardButtonProps;
4
+ declare const ToggleButton: (props: Props) => import("react/jsx-runtime").JSX.Element;
5
+ export default ToggleButton;
@@ -0,0 +1,11 @@
1
+ import { DekApi, DekPlugin, DekPluginBoardItem, DekPluginComponentItem, DekPluginConfig, DekPluginScreenItem, DekRegistry } from '@appkit/dek-plugin';
2
+ declare class Plugin implements DekPlugin {
3
+ readonly config: DekPluginConfig;
4
+ constructor(config: DekPluginConfig, registry: DekRegistry);
5
+ load(api: DekApi): Promise<void>;
6
+ unload(): Promise<void>;
7
+ get screens(): DekPluginScreenItem[];
8
+ get components(): DekPluginComponentItem[];
9
+ get boards(): DekPluginBoardItem[];
10
+ }
11
+ export default Plugin;
@@ -0,0 +1,4 @@
1
+ import { DekPluginElementProps } from '@appkit/dek-plugin';
2
+ type Props = DekPluginElementProps;
3
+ declare const SampleScreen: (props: Props) => import("react/jsx-runtime").JSX.Element;
4
+ export default SampleScreen;