Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atlaskit/tag-group

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaskit/tag-group - npm Package Compare versions

Comparing version 10.1.2 to 10.2.0

6

CHANGELOG.md
# @atlaskit/tag-group
## 10.2.0
### Minor Changes
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
## 10.1.2

@@ -4,0 +10,0 @@

2

dist/cjs/index.js
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {

@@ -14,3 +13,2 @@ value: true

});
var _TagGroup = _interopRequireDefault(require("./TagGroup"));

@@ -7,8 +7,6 @@ "use strict";

exports.default = void 0;
var _react = require("react");
var _react2 = require("@emotion/react");
/** @jsx jsx */
/** @jsx jsx */
var baseStyles = (0, _react2.css)({

@@ -25,2 +23,3 @@ display: 'flex',

});
/**

@@ -35,7 +34,6 @@ * __Tag group__

*/
var TagGroup = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
var _ref$alignment = _ref.alignment,
alignment = _ref$alignment === void 0 ? 'start' : _ref$alignment,
children = _ref.children;
alignment = _ref$alignment === void 0 ? 'start' : _ref$alignment,
children = _ref.children;
return (0, _react2.jsx)("div", {

@@ -42,0 +40,0 @@ ref: ref,

{
"name": "@atlaskit/tag-group",
"version": "10.1.2",
"version": "10.2.0",
"sideEffects": false
}
/** @jsx jsx */
import { forwardRef } from 'react';

@@ -15,2 +16,3 @@ import { css, jsx } from '@emotion/react';

});
/**

@@ -25,3 +27,2 @@ * __Tag group__

*/
const TagGroup = /*#__PURE__*/forwardRef(({

@@ -28,0 +29,0 @@ alignment = 'start',

{
"name": "@atlaskit/tag-group",
"version": "10.1.2",
"version": "10.2.0",
"sideEffects": false
}
/** @jsx jsx */
import { forwardRef } from 'react';

@@ -15,2 +16,3 @@ import { css, jsx } from '@emotion/react';

});
/**

@@ -25,7 +27,6 @@ * __Tag group__

*/
var TagGroup = /*#__PURE__*/forwardRef(function (_ref, ref) {
var _ref$alignment = _ref.alignment,
alignment = _ref$alignment === void 0 ? 'start' : _ref$alignment,
children = _ref.children;
alignment = _ref$alignment === void 0 ? 'start' : _ref$alignment,
children = _ref.children;
return jsx("div", {

@@ -32,0 +33,0 @@ ref: ref,

{
"name": "@atlaskit/tag-group",
"version": "10.1.2",
"version": "10.2.0",
"sideEffects": false
}
{
"name": "@atlaskit/tag-group",
"version": "10.1.2",
"version": "10.2.0",
"description": "A tag group controls the layout and alignment for a collection of tags.",

@@ -15,10 +15,2 @@ "publishConfig": {

"types": "dist/types/index.d.ts",
"typesVersions": {
">=4.0 <4.5": {
"*": [
"dist/types-ts4.0/*",
"dist/types-ts4.0/index.d.ts"
]
}
},
"sideEffects": false,

@@ -28,3 +20,2 @@ "atlaskit:src": "src/index.tsx",

"atlassian": {
"disableProductCI": true,
"team": "Design System Team",

@@ -48,6 +39,6 @@ "releaseModel": "scheduled",

"devDependencies": {
"@atlaskit/avatar": "^21.1.0",
"@atlaskit/avatar": "^21.3.0",
"@atlaskit/docs": "*",
"@atlaskit/ds-lib": "^2.0.1",
"@atlaskit/section-message": "^6.3.0",
"@atlaskit/ds-lib": "^2.2.0",
"@atlaskit/section-message": "^6.4.0",
"@atlaskit/ssr": "*",

@@ -72,3 +63,5 @@ "@atlaskit/tag": "*",

"analytics": "analytics-next",
"theming": "tokens",
"design-tokens": [
"color"
],
"deprecation": "no-deprecated-imports",

@@ -75,0 +68,0 @@ "styling": [

@@ -1,7 +0,16 @@

## API Report File for "@atlaskit/tag-group".
<!-- API Report Version: 2.3 -->
> Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
## API Report File for "@atlaskit/tag-group"
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
> Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
> [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
### Table of contents
- [Main Entry Types](#main-entry-types)
### Main Entry Types
<!--SECTION START: Main Entry Types-->
```ts

@@ -12,30 +21,18 @@ import { ForwardRefExoticComponent } from 'react';

declare type Alignment = 'start' | 'end';
// @public (undocumented)
type Alignment = 'end' | 'start';
/**
* __Tag group__
*
* A tag group controls the layout and alignment for a collection of tags.
*
* - [Examples](https://atlassian.design/components/tag-group/examples)
* - [Code](https://atlassian.design/components/tag-group/code)
* - [Usage](https://atlassian.design/components/tag-group/usage)
*/
declare const TagGroup: ForwardRefExoticComponent<
TagGroupProps & RefAttributes<any>
>;
// @public
const TagGroup: ForwardRefExoticComponent<TagGroupProps & RefAttributes<any>>;
export default TagGroup;
declare interface TagGroupProps {
/**
* Whether the tags should be left-aligned or right-aligned.
*/
// @public (undocumented)
interface TagGroupProps {
alignment?: Alignment;
/**
* Tags to render within the tag group.
*/
children: ReactNode;
}
export {};
// (No @packageDocumentation comment for this package)
```
<!--SECTION END: Main Entry Types-->
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc