Skip to content

Commit 93d0cff

Browse files
chore(release): set package.json to 1.0.0 [skip ci]
# @opengemeenten/iconset-react 1.0.0 (2022-06-23) ### Bug Fixes * **iconset-react:** remove relative path dependency ([0a47856](0a47856)) ### chore * **iconset-react:** rename package to iconset-react ([850a5c6](850a5c6)) ### Features * add @wip/iconset-web-component as dependency ([42154b5](42154b5)) * **iconset-react:** support react 18 ([1685d3c](1685d3c)) ### BREAKING CHANGES * **iconset-react:** rename package name to @opengemeenten/iconset-react
1 parent 0a47856 commit 93d0cff

31 files changed

+796
-0
lines changed

packages/iconset-react/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# @opengemeenten/iconset-react 1.0.0 (2022-06-23)
2+
3+
4+
### Bug Fixes
5+
6+
* **iconset-react:** remove relative path dependency ([0a47856](https://github.com/frameless/iconset-npm/commit/0a4785627b81fc8d2332bca81a1d0a5e320d517d))
7+
8+
9+
### chore
10+
11+
* **iconset-react:** rename package to iconset-react ([850a5c6](https://github.com/frameless/iconset-npm/commit/850a5c6d52b7fbfba6f3c48ecc85008566425064))
12+
13+
14+
### Features
15+
16+
* add @wip/iconset-web-component as dependency ([42154b5](https://github.com/frameless/iconset-npm/commit/42154b57327b798f00808c30e1e6985272902a9f))
17+
* **iconset-react:** support react 18 ([1685d3c](https://github.com/frameless/iconset-npm/commit/1685d3ce0d6752e41b50cde8d322285017b5af7c))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* **iconset-react:** rename package name to @opengemeenten/iconset-react
23+
124
# @opengemeenten/iconset-react [1.2.0](https://github.com/frameless/iconset-npm/compare/@opengemeenten/iconset-react@1.1.0...@opengemeenten/iconset-react@1.2.0) (2022-06-22)
225

326
### Features

packages/iconset-react/dist/components/stencil-generated/index.d.ts

Lines changed: 163 additions & 0 deletions
Large diffs are not rendered by default.

packages/iconset-react/dist/components/stencil-generated/index.js

Lines changed: 168 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/iconset-react/dist/components/stencil-generated/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react';
2+
export interface HTMLStencilElement extends HTMLElement {
3+
componentOnReady(): Promise<this>;
4+
}
5+
interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
6+
forwardedRef: React.RefObject<ElementType>;
7+
ref?: React.Ref<any>;
8+
}
9+
export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
10+
export {};

packages/iconset-react/dist/components/stencil-generated/react-component-lib/createComponent.js

Lines changed: 75 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/iconset-react/dist/components/stencil-generated/react-component-lib/createComponent.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)