@atlaskit/editor-palette 2.1.26 → 2.2.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 +7 -0
- package/background/package.json +15 -0
- package/border/package.json +15 -0
- package/dist/cjs/entry-points/background.js +18 -0
- package/dist/cjs/entry-points/border.js +12 -0
- package/dist/cjs/entry-points/table-charts.js +18 -0
- package/dist/cjs/entry-points/text-background-color.js +12 -0
- package/dist/cjs/entry-points/text.js +12 -0
- package/dist/es2019/entry-points/background.js +2 -0
- package/dist/es2019/entry-points/border.js +2 -0
- package/dist/es2019/entry-points/table-charts.js +2 -0
- package/dist/es2019/entry-points/text-background-color.js +2 -0
- package/dist/es2019/entry-points/text.js +2 -0
- package/dist/esm/entry-points/background.js +2 -0
- package/dist/esm/entry-points/border.js +2 -0
- package/dist/esm/entry-points/table-charts.js +2 -0
- package/dist/esm/entry-points/text-background-color.js +2 -0
- package/dist/esm/entry-points/text.js +2 -0
- package/dist/types/entry-points/background.d.ts +1 -0
- package/dist/types/entry-points/border.d.ts +1 -0
- package/dist/types/entry-points/table-charts.d.ts +1 -0
- package/dist/types/entry-points/text-background-color.d.ts +1 -0
- package/dist/types/entry-points/text.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/background.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/border.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/table-charts.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/text-background-color.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/text.d.ts +1 -0
- package/docs/0-intro.tsx +5 -5
- package/package.json +1 -1
- package/table-charts/package.json +15 -0
- package/text/package.json +15 -0
- package/text-background-color/package.json +15 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-palette
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ce30a31e6369d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ce30a31e6369d) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
3
10
|
## 2.1.26
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-palette/background",
|
|
3
|
+
"main": "../dist/cjs/entry-points/background.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/background.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/background.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/background.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/background.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-palette/border",
|
|
3
|
+
"main": "../dist/cjs/entry-points/border.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/border.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/border.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/border.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/border.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "hexToEditorBackgroundPaletteColor", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _background.hexToEditorBackgroundPaletteColor;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "hexToEditorBackgroundPaletteRawValue", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _background.hexToEditorBackgroundPaletteRawValue;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _background = require("../background");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "hexToEditorBorderPaletteColor", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _border.hexToEditorBorderPaletteColor;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _border = require("../border");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "hexToEditorTableChartsPaletteColor", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _tableCharts.hexToEditorTableChartsPaletteColor;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "hexToEditorTableChartsPaletteRawValue", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _tableCharts.hexToEditorTableChartsPaletteRawValue;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _tableCharts = require("../table-charts");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "hexToEditorTextBackgroundPaletteColor", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _textBackgroundColor.hexToEditorTextBackgroundPaletteColor;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _textBackgroundColor = require("../text-background-color");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "hexToEditorTextPaletteColor", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _text.hexToEditorTextPaletteColor;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _text = require("../text");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorBackgroundPaletteColor, hexToEditorBackgroundPaletteRawValue, } from '../background';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorBorderPaletteColor } from '../border';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTableChartsPaletteColor, hexToEditorTableChartsPaletteRawValue, } from '../table-charts';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTextBackgroundPaletteColor } from '../text-background-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTextPaletteColor } from '../text';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorBackgroundPaletteColor, hexToEditorBackgroundPaletteRawValue, } from '../background';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorBorderPaletteColor } from '../border';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTableChartsPaletteColor, hexToEditorTableChartsPaletteRawValue, } from '../table-charts';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTextBackgroundPaletteColor } from '../text-background-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { hexToEditorTextPaletteColor } from '../text';
|
package/docs/0-intro.tsx
CHANGED
|
@@ -37,9 +37,9 @@ or reach out to the Design System Team via the [Atlassian Developer Community fo
|
|
|
37
37
|
|
|
38
38
|
## API documentation
|
|
39
39
|
|
|
40
|
-
${
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
${(
|
|
41
|
+
<>
|
|
42
|
+
{/* eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766 */}
|
|
43
43
|
<div style={{ marginTop: token('space.100') }}>
|
|
44
44
|
<SectionMessage
|
|
45
45
|
title="Design token names and values are an implementation detail."
|
|
@@ -67,8 +67,8 @@ ${
|
|
|
67
67
|
</ul>
|
|
68
68
|
</SectionMessage>
|
|
69
69
|
</div>
|
|
70
|
-
|
|
71
|
-
}
|
|
70
|
+
</>
|
|
71
|
+
)}
|
|
72
72
|
|
|
73
73
|
### \`hexToTextPaletteColor\`
|
|
74
74
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-palette/table-charts",
|
|
3
|
+
"main": "../dist/cjs/entry-points/table-charts.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/table-charts.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/table-charts.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/table-charts.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/table-charts.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-palette/text",
|
|
3
|
+
"main": "../dist/cjs/entry-points/text.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/text.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/text.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/text.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/text.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-palette/text-background-color",
|
|
3
|
+
"main": "../dist/cjs/entry-points/text-background-color.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/text-background-color.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/text-background-color.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/text-background-color.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/text-background-color.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|