@opengeoweb/knmi-components 14.0.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/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@opengeoweb/knmi-components",
3
+ "version": "14.0.1",
4
+ "description": "GeoWeb knmi-components library for the opengeoweb project",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git@gitlab.com:opengeoweb/opengeoweb.git"
9
+ },
10
+ "dependencies": {},
11
+ "devDependencies": {
12
+ "eslint-plugin-storybook": "9.0.17"
13
+ },
14
+ "module": "./index.esm.js",
15
+ "type": "module",
16
+ "main": "./index.esm.js",
17
+ "types": "./index.d.ts"
18
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib/knmi-components';
@@ -0,0 +1,2 @@
1
+ export declare const KnmiComponents: () => React.JSX.Element;
2
+ export default KnmiComponents;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import type { StoryObj } from '@storybook/react-webpack5';
2
+ import { KnmiComponents } from './knmi-components';
3
+ type Story = StoryObj<typeof KnmiComponents>;
4
+ declare const _default: {
5
+ title: string;
6
+ };
7
+ export default _default;
8
+ export declare const ComponentLight: Story;
9
+ export declare const ComponentDark: Story;