Skip to content

Commit

Permalink
Merge pull request #623 from planetlabs/dependabot/npm_and_yarn/ol-10…
Browse files Browse the repository at this point in the history
….2.0

Bump ol from 10.1.0 to 10.2.0
  • Loading branch information
tschaub authored Sep 24, 2024
2 parents b21995f + 5f85b41 commit 5644c87
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 7 deletions.
29 changes: 29 additions & 0 deletions lib/layer/Flow.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// This file is generated by tools/generate.js. DO NOT EDIT.
/**
* Copyright Planet Labs PBC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import OLFlow from 'ol/layer/Flow.js';
import propTypes from 'prop-types';
import {createElement, forwardRef} from 'react';

const Flow = forwardRef(({children, ...props}, ref) => {
return createElement('layer', {cls: OLFlow, ref, ...props}, children);
});

Flow.propTypes = {
children: propTypes.node,
};

export default Flow;
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5644c87

Please sign in to comment.