@radix-ui/react-arrow
Advanced tools
Comparing version 1.0.3 to 1.1.0-rc.1
@@ -1,10 +0,11 @@ | ||
import * as React from "react"; | ||
import * as Radix from "@radix-ui/react-primitive"; | ||
import { Primitive } from "@radix-ui/react-primitive"; | ||
type PrimitiveSvgProps = Radix.ComponentPropsWithoutRef<typeof Primitive.svg>; | ||
export interface ArrowProps extends PrimitiveSvgProps { | ||
import * as React from 'react'; | ||
import * as Radix from '@radix-ui/react-primitive'; | ||
import { Primitive } from '@radix-ui/react-primitive'; | ||
declare type PrimitiveSvgProps = Radix.ComponentPropsWithoutRef<typeof Primitive.svg>; | ||
interface ArrowProps extends PrimitiveSvgProps { | ||
} | ||
export const Arrow: React.ForwardRefExoticComponent<ArrowProps & React.RefAttributes<SVGSVGElement>>; | ||
export const Root: React.ForwardRefExoticComponent<ArrowProps & React.RefAttributes<SVGSVGElement>>; | ||
declare const Arrow: React.ForwardRefExoticComponent<ArrowProps & React.RefAttributes<SVGSVGElement>>; | ||
declare const Root: React.ForwardRefExoticComponent<ArrowProps & React.RefAttributes<SVGSVGElement>>; | ||
//# sourceMappingURL=index.d.ts.map | ||
export { Arrow, type ArrowProps, Root }; |
@@ -1,40 +0,55 @@ | ||
var $eQpDd$babelruntimehelpersextends = require("@babel/runtime/helpers/extends"); | ||
var $eQpDd$react = require("react"); | ||
var $eQpDd$radixuireactprimitive = require("@radix-ui/react-primitive"); | ||
"use strict"; | ||
(() => { | ||
var __create = Object.create; | ||
var __defProp = Object.defineProperty; | ||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | ||
var __getOwnPropNames = Object.getOwnPropertyNames; | ||
var __getProtoOf = Object.getPrototypeOf; | ||
var __hasOwnProp = Object.prototype.hasOwnProperty; | ||
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { | ||
get: (a, b) => (typeof require !== "undefined" ? require : a)[b] | ||
}) : x)(function(x) { | ||
if (typeof require !== "undefined") return require.apply(this, arguments); | ||
throw Error('Dynamic require of "' + x + '" is not supported'); | ||
}); | ||
var __copyProps = (to, from, except, desc) => { | ||
if (from && typeof from === "object" || typeof from === "function") { | ||
for (let key of __getOwnPropNames(from)) | ||
if (!__hasOwnProp.call(to, key) && key !== except) | ||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | ||
} | ||
return to; | ||
}; | ||
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( | ||
// If the importer is in node compatibility mode or this is not an ESM | ||
// file that has been converted to a CommonJS file using a Babel- | ||
// compatible transform (i.e. "__esModule" has not been set), then set | ||
// "default" to the CommonJS "module.exports" for node compatibility. | ||
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, | ||
mod | ||
)); | ||
function $parcel$export(e, n, v, s) { | ||
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true}); | ||
} | ||
function $parcel$interopDefault(a) { | ||
return a && a.__esModule ? a.default : a; | ||
} | ||
$parcel$export(module.exports, "Arrow", () => $09f4ad68a9251bc3$export$21b07c8f274aebd5); | ||
$parcel$export(module.exports, "Root", () => $09f4ad68a9251bc3$export$be92b6f5f03c0fe9); | ||
/* ------------------------------------------------------------------------------------------------- | ||
* Arrow | ||
* -----------------------------------------------------------------------------------------------*/ const $09f4ad68a9251bc3$var$NAME = 'Arrow'; | ||
const $09f4ad68a9251bc3$export$21b07c8f274aebd5 = /*#__PURE__*/ $eQpDd$react.forwardRef((props, forwardedRef)=>{ | ||
const { children: children , width: width = 10 , height: height = 5 , ...arrowProps } = props; | ||
return /*#__PURE__*/ $eQpDd$react.createElement($eQpDd$radixuireactprimitive.Primitive.svg, ($parcel$interopDefault($eQpDd$babelruntimehelpersextends))({}, arrowProps, { | ||
// packages/react/arrow/src/Arrow.tsx | ||
var React = __toESM(__require("react")); | ||
var import_react_primitive = __require("@radix-ui/react-primitive"); | ||
var import_jsx_runtime = __require("react/jsx-runtime"); | ||
var NAME = "Arrow"; | ||
var Arrow = React.forwardRef((props, forwardedRef) => { | ||
const { children, width = 10, height = 5, ...arrowProps } = props; | ||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)( | ||
import_react_primitive.Primitive.svg, | ||
{ | ||
...arrowProps, | ||
ref: forwardedRef, | ||
width: width, | ||
height: height, | ||
width, | ||
height, | ||
viewBox: "0 0 30 10", | ||
preserveAspectRatio: "none" | ||
}), props.asChild ? children : /*#__PURE__*/ $eQpDd$react.createElement("polygon", { | ||
points: "0,0 30,0 15,10" | ||
})); | ||
}); | ||
/*#__PURE__*/ Object.assign($09f4ad68a9251bc3$export$21b07c8f274aebd5, { | ||
displayName: $09f4ad68a9251bc3$var$NAME | ||
}); | ||
/* -----------------------------------------------------------------------------------------------*/ const $09f4ad68a9251bc3$export$be92b6f5f03c0fe9 = $09f4ad68a9251bc3$export$21b07c8f274aebd5; | ||
preserveAspectRatio: "none", | ||
children: props.asChild ? children : /* @__PURE__ */ (0, import_jsx_runtime.jsx)("polygon", { points: "0,0 30,0 15,10" }) | ||
} | ||
); | ||
}); | ||
Arrow.displayName = NAME; | ||
var Root = Arrow; | ||
})(); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@radix-ui/react-arrow", | ||
"version": "1.0.3", | ||
"version": "1.1.0-rc.1", | ||
"license": "MIT", | ||
@@ -31,4 +31,3 @@ "exports": { | ||
"dependencies": { | ||
"@babel/runtime": "^7.13.10", | ||
"@radix-ui/react-primitive": "1.0.3" | ||
"@radix-ui/react-primitive": "1.1.0-rc.1" | ||
}, | ||
@@ -56,3 +55,4 @@ "peerDependencies": { | ||
"url": "https://github.com/radix-ui/primitives/issues" | ||
} | ||
}, | ||
"stableVersion": "1.0.3" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5
90
9377
8
1
3
+ Added@radix-ui/react-compose-refs@1.1.0-rc.1(transitive)
+ Added@radix-ui/react-primitive@1.1.0-rc.1(transitive)
+ Added@radix-ui/react-slot@1.1.0-rc.1(transitive)
- Removed@babel/runtime@^7.13.10
- Removed@babel/runtime@7.26.0(transitive)
- Removed@radix-ui/react-compose-refs@1.0.1(transitive)
- Removed@radix-ui/react-primitive@1.0.3(transitive)
- Removed@radix-ui/react-slot@1.0.2(transitive)
- Removedregenerator-runtime@0.14.1(transitive)