@atlaskit/lozenge 13.4.3 → 13.4.4
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/CHANGELOG.md +6 -0
- package/dist/types/lozenge.d.ts +1 -1
- package/dist/types/new/lozenge-base.d.ts +1 -1
- package/dist/types/new/lozenge-dropdown-trigger.d.ts +1 -1
- package/dist/types-ts4.5/lozenge.d.ts +1 -1
- package/dist/types-ts4.5/new/lozenge-base.d.ts +1 -1
- package/dist/types-ts4.5/new/lozenge-dropdown-trigger.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/types/lozenge.d.ts
CHANGED
|
@@ -38,5 +38,5 @@ export interface LozengeProps {
|
|
|
38
38
|
/**
|
|
39
39
|
* Wrapper component that switches between old and new Lozenge based on feature flag
|
|
40
40
|
*/
|
|
41
|
-
declare const LozengeWrapper: import(
|
|
41
|
+
declare const LozengeWrapper: import('react').MemoExoticComponent<(props: LozengeProps | NewLozengeProps) => JSX.Element>;
|
|
42
42
|
export default LozengeWrapper;
|
|
@@ -5,5 +5,5 @@ import { type LozengeBaseProps } from './types';
|
|
|
5
5
|
* A lozenge is a visual indicator used to highlight an item's status for quick recognition.
|
|
6
6
|
* This is the updated version with the new North Star visual language.
|
|
7
7
|
*/
|
|
8
|
-
declare const LozengeBase: import(
|
|
8
|
+
declare const LozengeBase: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<LozengeBaseProps, 'ref'> & import('react').RefAttributes<HTMLButtonElement | HTMLElement>>>;
|
|
9
9
|
export default LozengeBase;
|
|
@@ -11,5 +11,5 @@ import { type LozengeDropdownTriggerProps } from './types';
|
|
|
11
11
|
* - Built for dropdown menu interactions
|
|
12
12
|
* - Supports analytics events and UFO press interactions
|
|
13
13
|
*/
|
|
14
|
-
declare const LozengeDropdownTrigger: import(
|
|
14
|
+
declare const LozengeDropdownTrigger: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<LozengeDropdownTriggerProps & import('react').RefAttributes<HTMLElement>>>;
|
|
15
15
|
export default LozengeDropdownTrigger;
|
|
@@ -38,5 +38,5 @@ export interface LozengeProps {
|
|
|
38
38
|
/**
|
|
39
39
|
* Wrapper component that switches between old and new Lozenge based on feature flag
|
|
40
40
|
*/
|
|
41
|
-
declare const LozengeWrapper: import(
|
|
41
|
+
declare const LozengeWrapper: import('react').MemoExoticComponent<(props: LozengeProps | NewLozengeProps) => JSX.Element>;
|
|
42
42
|
export default LozengeWrapper;
|
|
@@ -5,5 +5,5 @@ import { type LozengeBaseProps } from './types';
|
|
|
5
5
|
* A lozenge is a visual indicator used to highlight an item's status for quick recognition.
|
|
6
6
|
* This is the updated version with the new North Star visual language.
|
|
7
7
|
*/
|
|
8
|
-
declare const LozengeBase: import(
|
|
8
|
+
declare const LozengeBase: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<Omit<LozengeBaseProps, 'ref'> & import('react').RefAttributes<HTMLButtonElement | HTMLElement>>>;
|
|
9
9
|
export default LozengeBase;
|
|
@@ -11,5 +11,5 @@ import { type LozengeDropdownTriggerProps } from './types';
|
|
|
11
11
|
* - Built for dropdown menu interactions
|
|
12
12
|
* - Supports analytics events and UFO press interactions
|
|
13
13
|
*/
|
|
14
|
-
declare const LozengeDropdownTrigger: import(
|
|
14
|
+
declare const LozengeDropdownTrigger: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<LozengeDropdownTriggerProps & import('react').RefAttributes<HTMLElement>>>;
|
|
15
15
|
export default LozengeDropdownTrigger;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/lozenge",
|
|
3
|
-
"version": "13.4.
|
|
3
|
+
"version": "13.4.4",
|
|
4
4
|
"description": "A lozenge is a visual indicator used to highlight an item's status for quick recognition.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"id": "lozenge",
|
|
36
36
|
"status": {
|
|
37
37
|
"type": "beta",
|
|
38
|
-
"description": "New and ready to use. We'll provide comms and support for any major changes."
|
|
38
|
+
"description": "New and ready to use. These visual updates are currently behind the feature flag: `platform-dst-lozenge-tag-badge-visual-uplifts`. We'll provide comms and support for any major changes."
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
{
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@atlaskit/badge": "^18.4.0",
|
|
55
55
|
"@atlaskit/css": "^0.19.0",
|
|
56
56
|
"@atlaskit/ds-lib": "^5.3.0",
|
|
57
|
-
"@atlaskit/icon": "^
|
|
57
|
+
"@atlaskit/icon": "^32.0.0",
|
|
58
58
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
59
59
|
"@atlaskit/primitives": "^18.0.0",
|
|
60
60
|
"@atlaskit/spinner": "^19.0.0",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@af/accessibility-testing": "workspace:^",
|
|
70
70
|
"@af/integration-testing": "workspace:^",
|
|
71
71
|
"@af/visual-regression": "workspace:^",
|
|
72
|
-
"@atlaskit/docs": "^11.
|
|
72
|
+
"@atlaskit/docs": "^11.4.0",
|
|
73
73
|
"@atlaskit/dropdown-menu": "^16.4.0",
|
|
74
74
|
"@atlaskit/heading": "^5.3.0",
|
|
75
75
|
"@atlaskit/link": "^3.3.0",
|