@atlaskit/navigation-system 8.2.0 → 9.0.0
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 +28 -0
- package/constellation/layout/usage.mdx +2 -0
- package/constellation/top-nav-items/usage.mdx +2 -0
- package/package.json +5 -5
- package/theming/color-utils/parse-hex/package.json +17 -0
- package/theming/color-utils/parse-hsl/package.json +17 -0
- package/theming/color-utils/parse-rgb/package.json +17 -0
- package/theming/color-utils/parse-user-color/package.json +17 -0
- package/theming/top-nav-button/package.json +17 -0
- package/theming/use-has-custom-theme/package.json +17 -0
- package/theming/use-legacy-search-theme/package.json +17 -0
- package/experimental/color-utils/parse-hex/package.json +0 -17
- package/experimental/color-utils/parse-hsl/package.json +0 -17
- package/experimental/color-utils/parse-rgb/package.json +0 -17
- package/experimental/color-utils/parse-user-color/package.json +0 -17
- package/experimental/top-nav-button/package.json +0 -17
- package/experimental/use-has-custom-theme/package.json +0 -17
- package/experimental/use-legacy-search-theme/package.json +0 -17
- /package/dist/cjs/entry-points/{experimental → theming}/color-utils/parse-hex.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/color-utils/parse-hsl.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/color-utils/parse-rgb.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/color-utils/parse-user-color.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/top-nav-button.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/use-has-custom-theme.js +0 -0
- /package/dist/cjs/entry-points/{experimental → theming}/use-legacy-search-theme.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/color-utils/parse-hex.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/color-utils/parse-hsl.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/color-utils/parse-rgb.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/color-utils/parse-user-color.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/top-nav-button.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/use-has-custom-theme.js +0 -0
- /package/dist/es2019/entry-points/{experimental → theming}/use-legacy-search-theme.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/color-utils/parse-hex.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/color-utils/parse-hsl.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/color-utils/parse-rgb.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/color-utils/parse-user-color.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/top-nav-button.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/use-has-custom-theme.js +0 -0
- /package/dist/esm/entry-points/{experimental → theming}/use-legacy-search-theme.js +0 -0
- /package/dist/types/entry-points/{experimental → theming}/color-utils/parse-hex.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/color-utils/parse-hsl.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/color-utils/parse-rgb.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/color-utils/parse-user-color.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/top-nav-button.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/use-has-custom-theme.d.ts +0 -0
- /package/dist/types/entry-points/{experimental → theming}/use-legacy-search-theme.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/color-utils/parse-hex.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/color-utils/parse-hsl.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/color-utils/parse-rgb.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/color-utils/parse-user-color.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/top-nav-button.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/use-has-custom-theme.d.ts +0 -0
- /package/dist/types-ts4.5/entry-points/{experimental → theming}/use-legacy-search-theme.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @atlassian/navigation-system
|
|
2
2
|
|
|
3
|
+
## 9.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`2d4e2aa315dc1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2d4e2aa315dc1) -
|
|
8
|
+
Renamed the experimental theming entrypoints from `/experimental/*` to `/theming/*`. The
|
|
9
|
+
`/experimental/ribbon` entrypoint is unaffected.
|
|
10
|
+
|
|
11
|
+
Migration:
|
|
12
|
+
- `@atlaskit/navigation-system/experimental/top-nav-button` →
|
|
13
|
+
`@atlaskit/navigation-system/theming/top-nav-button`
|
|
14
|
+
- `@atlaskit/navigation-system/experimental/use-has-custom-theme` →
|
|
15
|
+
`@atlaskit/navigation-system/theming/use-has-custom-theme`
|
|
16
|
+
- `@atlaskit/navigation-system/experimental/use-legacy-search-theme` →
|
|
17
|
+
`@atlaskit/navigation-system/theming/use-legacy-search-theme`
|
|
18
|
+
- `@atlaskit/navigation-system/experimental/color-utils/parse-hex` →
|
|
19
|
+
`@atlaskit/navigation-system/theming/color-utils/parse-hex`
|
|
20
|
+
- `@atlaskit/navigation-system/experimental/color-utils/parse-hsl` →
|
|
21
|
+
`@atlaskit/navigation-system/theming/color-utils/parse-hsl`
|
|
22
|
+
- `@atlaskit/navigation-system/experimental/color-utils/parse-rgb` →
|
|
23
|
+
`@atlaskit/navigation-system/theming/color-utils/parse-rgb`
|
|
24
|
+
- `@atlaskit/navigation-system/experimental/color-utils/parse-user-color` →
|
|
25
|
+
`@atlaskit/navigation-system/theming/color-utils/parse-user-color`
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
|
|
3
31
|
## 8.2.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
|
@@ -23,6 +23,8 @@ navigational areas.
|
|
|
23
23
|
When applying components to the navigational areas,
|
|
24
24
|
[see navigation resources (Atlassians only)](https://hello.atlassian.net/wiki/spaces/navx/pages/5104144812).
|
|
25
25
|
|
|
26
|
+
## Parts
|
|
27
|
+
|
|
26
28
|
<Image
|
|
27
29
|
src={layoutAnatomyLight}
|
|
28
30
|
srcDark={layoutAnatomyDark}
|
|
@@ -22,6 +22,8 @@ import topNavItemsDont2Dark from './images/topNavItems-dont-2-dark.png';
|
|
|
22
22
|
Use top nav items to create common utilities in the top nav within
|
|
23
23
|
[layout](/components/navigation-system/layout/examples).
|
|
24
24
|
|
|
25
|
+
## Parts
|
|
26
|
+
|
|
25
27
|
<Image
|
|
26
28
|
src={topNavItemsAnatomyLight}
|
|
27
29
|
srcDark={topNavItemsAnatomyDark}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/navigation-system",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "The latest navigation system for Atlassian apps.",
|
|
5
5
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
6
6
|
"author": "Atlassian Pty Ltd",
|
|
@@ -72,16 +72,16 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@atlaskit/analytics-next": "^11.2.0",
|
|
74
74
|
"@atlaskit/app-provider": "^4.3.0",
|
|
75
|
-
"@atlaskit/avatar": "^25.
|
|
75
|
+
"@atlaskit/avatar": "^25.14.0",
|
|
76
76
|
"@atlaskit/button": "^23.11.0",
|
|
77
77
|
"@atlaskit/css": "^0.19.0",
|
|
78
78
|
"@atlaskit/ds-lib": "^7.0.0",
|
|
79
79
|
"@atlaskit/icon": "^34.3.0",
|
|
80
80
|
"@atlaskit/layering": "^3.7.0",
|
|
81
|
-
"@atlaskit/logo": "^20.
|
|
81
|
+
"@atlaskit/logo": "^20.1.0",
|
|
82
82
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
83
83
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
84
|
-
"@atlaskit/popup": "^4.
|
|
84
|
+
"@atlaskit/popup": "^4.17.0",
|
|
85
85
|
"@atlaskit/pragmatic-drag-and-drop": "^1.8.0",
|
|
86
86
|
"@atlaskit/primitives": "^19.0.0",
|
|
87
87
|
"@atlaskit/side-nav-items": "^1.13.0",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"@atlaskit/form": "^15.5.0",
|
|
110
110
|
"@atlaskit/heading": "^5.4.0",
|
|
111
111
|
"@atlaskit/link": "^3.4.0",
|
|
112
|
-
"@atlaskit/lozenge": "^13.
|
|
112
|
+
"@atlaskit/lozenge": "^13.8.0",
|
|
113
113
|
"@atlaskit/menu": "^8.5.0",
|
|
114
114
|
"@atlaskit/modal-dialog": "^14.18.0",
|
|
115
115
|
"@atlaskit/onboarding": "^14.6.0",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/color-utils/parse-hex",
|
|
3
|
+
"main": "../../../dist/cjs/entry-points/theming/color-utils/parse-hex.js",
|
|
4
|
+
"module": "../../../dist/esm/entry-points/theming/color-utils/parse-hex.js",
|
|
5
|
+
"module:es2019": "../../../dist/es2019/entry-points/theming/color-utils/parse-hex.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../../dist/types/entry-points/theming/color-utils/parse-hex.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../../dist/types-ts4.5/entry-points/theming/color-utils/parse-hex.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/color-utils/parse-hsl",
|
|
3
|
+
"main": "../../../dist/cjs/entry-points/theming/color-utils/parse-hsl.js",
|
|
4
|
+
"module": "../../../dist/esm/entry-points/theming/color-utils/parse-hsl.js",
|
|
5
|
+
"module:es2019": "../../../dist/es2019/entry-points/theming/color-utils/parse-hsl.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../../dist/types/entry-points/theming/color-utils/parse-hsl.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../../dist/types-ts4.5/entry-points/theming/color-utils/parse-hsl.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/color-utils/parse-rgb",
|
|
3
|
+
"main": "../../../dist/cjs/entry-points/theming/color-utils/parse-rgb.js",
|
|
4
|
+
"module": "../../../dist/esm/entry-points/theming/color-utils/parse-rgb.js",
|
|
5
|
+
"module:es2019": "../../../dist/es2019/entry-points/theming/color-utils/parse-rgb.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../../dist/types/entry-points/theming/color-utils/parse-rgb.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../../dist/types-ts4.5/entry-points/theming/color-utils/parse-rgb.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/color-utils/parse-user-color",
|
|
3
|
+
"main": "../../../dist/cjs/entry-points/theming/color-utils/parse-user-color.js",
|
|
4
|
+
"module": "../../../dist/esm/entry-points/theming/color-utils/parse-user-color.js",
|
|
5
|
+
"module:es2019": "../../../dist/es2019/entry-points/theming/color-utils/parse-user-color.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../../dist/types/entry-points/theming/color-utils/parse-user-color.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../../dist/types-ts4.5/entry-points/theming/color-utils/parse-user-color.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/top-nav-button",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/theming/top-nav-button.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/theming/top-nav-button.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/theming/top-nav-button.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/theming/top-nav-button.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/theming/top-nav-button.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/use-has-custom-theme",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/theming/use-has-custom-theme.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/theming/use-has-custom-theme.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/theming/use-has-custom-theme.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/theming/use-has-custom-theme.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/theming/use-has-custom-theme.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/navigation-system/theming/use-legacy-search-theme",
|
|
3
|
+
"main": "../../dist/cjs/entry-points/theming/use-legacy-search-theme.js",
|
|
4
|
+
"module": "../../dist/esm/entry-points/theming/use-legacy-search-theme.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/entry-points/theming/use-legacy-search-theme.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/entry-points/theming/use-legacy-search-theme.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/entry-points/theming/use-legacy-search-theme.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/color-utils/parse-hex",
|
|
3
|
-
"main": "../../../dist/cjs/entry-points/experimental/color-utils/parse-hex.js",
|
|
4
|
-
"module": "../../../dist/esm/entry-points/experimental/color-utils/parse-hex.js",
|
|
5
|
-
"module:es2019": "../../../dist/es2019/entry-points/experimental/color-utils/parse-hex.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../../dist/types/entry-points/experimental/color-utils/parse-hex.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../../dist/types-ts4.5/entry-points/experimental/color-utils/parse-hex.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/color-utils/parse-hsl",
|
|
3
|
-
"main": "../../../dist/cjs/entry-points/experimental/color-utils/parse-hsl.js",
|
|
4
|
-
"module": "../../../dist/esm/entry-points/experimental/color-utils/parse-hsl.js",
|
|
5
|
-
"module:es2019": "../../../dist/es2019/entry-points/experimental/color-utils/parse-hsl.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../../dist/types/entry-points/experimental/color-utils/parse-hsl.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../../dist/types-ts4.5/entry-points/experimental/color-utils/parse-hsl.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/color-utils/parse-rgb",
|
|
3
|
-
"main": "../../../dist/cjs/entry-points/experimental/color-utils/parse-rgb.js",
|
|
4
|
-
"module": "../../../dist/esm/entry-points/experimental/color-utils/parse-rgb.js",
|
|
5
|
-
"module:es2019": "../../../dist/es2019/entry-points/experimental/color-utils/parse-rgb.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../../dist/types/entry-points/experimental/color-utils/parse-rgb.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../../dist/types-ts4.5/entry-points/experimental/color-utils/parse-rgb.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/color-utils/parse-user-color",
|
|
3
|
-
"main": "../../../dist/cjs/entry-points/experimental/color-utils/parse-user-color.js",
|
|
4
|
-
"module": "../../../dist/esm/entry-points/experimental/color-utils/parse-user-color.js",
|
|
5
|
-
"module:es2019": "../../../dist/es2019/entry-points/experimental/color-utils/parse-user-color.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../../dist/types/entry-points/experimental/color-utils/parse-user-color.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../../dist/types-ts4.5/entry-points/experimental/color-utils/parse-user-color.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/top-nav-button",
|
|
3
|
-
"main": "../../dist/cjs/entry-points/experimental/top-nav-button.js",
|
|
4
|
-
"module": "../../dist/esm/entry-points/experimental/top-nav-button.js",
|
|
5
|
-
"module:es2019": "../../dist/es2019/entry-points/experimental/top-nav-button.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../dist/types/entry-points/experimental/top-nav-button.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../dist/types-ts4.5/entry-points/experimental/top-nav-button.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/use-has-custom-theme",
|
|
3
|
-
"main": "../../dist/cjs/entry-points/experimental/use-has-custom-theme.js",
|
|
4
|
-
"module": "../../dist/esm/entry-points/experimental/use-has-custom-theme.js",
|
|
5
|
-
"module:es2019": "../../dist/es2019/entry-points/experimental/use-has-custom-theme.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../dist/types/entry-points/experimental/use-has-custom-theme.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../dist/types-ts4.5/entry-points/experimental/use-has-custom-theme.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/navigation-system/experimental/use-legacy-search-theme",
|
|
3
|
-
"main": "../../dist/cjs/entry-points/experimental/use-legacy-search-theme.js",
|
|
4
|
-
"module": "../../dist/esm/entry-points/experimental/use-legacy-search-theme.js",
|
|
5
|
-
"module:es2019": "../../dist/es2019/entry-points/experimental/use-legacy-search-theme.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../dist/types/entry-points/experimental/use-legacy-search-theme.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../dist/types-ts4.5/entry-points/experimental/use-legacy-search-theme.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/types-ts4.5/entry-points/{experimental → theming}/color-utils/parse-user-color.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/types-ts4.5/entry-points/{experimental → theming}/use-legacy-search-theme.d.ts
RENAMED
|
File without changes
|