@atlaskit/status 3.0.9 → 3.0.11
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 +12 -0
- package/afm-cc/tsconfig.json +49 -43
- package/afm-jira/tsconfig.json +7 -1
- package/afm-post-office/tsconfig.json +7 -1
- package/afm-rovo-extension/tsconfig.json +51 -0
- package/afm-townsquare/tsconfig.json +51 -0
- package/afm-volt/tsconfig.json +45 -0
- package/build/tsconfig.json +8 -2
- package/dist/cjs/components/analytics.js +1 -1
- package/dist/cjs/i18n/hr.js +23 -0
- package/dist/cjs/i18n/sl.js +23 -0
- package/dist/cjs/i18n/sr_RS.js +23 -0
- package/dist/cjs/i18n/sr_YR.js +23 -0
- package/dist/es2019/components/analytics.js +1 -1
- package/dist/es2019/i18n/hr.js +17 -0
- package/dist/es2019/i18n/sl.js +17 -0
- package/dist/es2019/i18n/sr_RS.js +17 -0
- package/dist/es2019/i18n/sr_YR.js +17 -0
- package/dist/esm/components/analytics.js +1 -1
- package/dist/esm/i18n/hr.js +17 -0
- package/dist/esm/i18n/sl.js +17 -0
- package/dist/esm/i18n/sr_RS.js +17 -0
- package/dist/esm/i18n/sr_YR.js +17 -0
- package/dist/types/i18n/hr.d.ts +16 -0
- package/dist/types/i18n/sl.d.ts +16 -0
- package/dist/types/i18n/sr_RS.d.ts +16 -0
- package/dist/types/i18n/sr_YR.d.ts +16 -0
- package/dist/types-ts4.5/i18n/hr.d.ts +16 -0
- package/dist/types-ts4.5/i18n/sl.d.ts +16 -0
- package/dist/types-ts4.5/i18n/sr_RS.d.ts +16 -0
- package/dist/types-ts4.5/i18n/sr_YR.d.ts +16 -0
- package/package.json +5 -7
- package/tsconfig.json +9 -4
package/CHANGELOG.md
CHANGED
package/afm-cc/tsconfig.json
CHANGED
|
@@ -1,45 +1,51 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.confluence.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"composite": true,
|
|
7
|
+
"outDir": "../../../../../confluence/tsDist/@atlaskit__status",
|
|
8
|
+
"rootDir": "../"
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../analytics/analytics-next/afm-cc/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/icon/afm-cc/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/lozenge/afm-cc/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../platform/feature-flags/afm-cc/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../platform/feature-flags-react/afm-cc/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/primitives/afm-cc/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/textfield/afm-cc/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/tokens/afm-cc/tsconfig.json"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
45
51
|
}
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"exclude": [
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*"
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
18
24
|
],
|
|
19
25
|
"references": [
|
|
20
26
|
{
|
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"exclude": [
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*"
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
18
24
|
],
|
|
19
25
|
"references": [
|
|
20
26
|
{
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.rovo-extension.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../rovo-extension/tsDist/@atlaskit__status/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../analytics/analytics-next/afm-rovo-extension/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/icon/afm-rovo-extension/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/lozenge/afm-rovo-extension/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../platform/feature-flags/afm-rovo-extension/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../platform/feature-flags-react/afm-rovo-extension/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/primitives/afm-rovo-extension/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/textfield/afm-rovo-extension/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/tokens/afm-rovo-extension/tsconfig.json"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.townsquare.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../townsquare/tsDist/@atlaskit__status/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/lozenge/afm-townsquare/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../platform/feature-flags-react/afm-townsquare/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/textfield/afm-townsquare/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.volt.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../volt/tsDist/@atlaskit__status/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../analytics/analytics-next/afm-volt/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../../design-system/icon/afm-volt/tsconfig.json"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../design-system/lozenge/afm-volt/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../platform/feature-flags/afm-volt/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../platform/feature-flags-react/afm-volt/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../design-system/primitives/afm-volt/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../design-system/textfield/afm-volt/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/tokens/afm-volt/tsconfig.json"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|
package/build/tsconfig.json
CHANGED
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"exclude": [
|
|
13
13
|
"../src/**/__tests__/*",
|
|
14
14
|
"../src/**/*.test.*",
|
|
15
|
-
"../src/**/test.*"
|
|
15
|
+
"../src/**/test.*",
|
|
16
|
+
"../src/**/examples.*",
|
|
17
|
+
"../src/**/examples/*",
|
|
18
|
+
"../src/**/examples/**/*",
|
|
19
|
+
"../src/**/*.stories.*",
|
|
20
|
+
"../src/**/stories/*",
|
|
21
|
+
"../src/**/stories/**/*"
|
|
16
22
|
]
|
|
17
|
-
}
|
|
23
|
+
}
|
|
@@ -10,7 +10,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
10
10
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
11
11
|
var ELEMENTS_CHANNEL = exports.ELEMENTS_CHANNEL = 'fabric-elements';
|
|
12
12
|
var packageName = "@atlaskit/status";
|
|
13
|
-
var packageVersion = "3.0.
|
|
13
|
+
var packageVersion = "3.0.10";
|
|
14
14
|
var createStatusAnalyticsAndFire = exports.createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
|
|
15
15
|
return function (payload) {
|
|
16
16
|
var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/* prettier-ignore */
|
|
8
|
+
/**
|
|
9
|
+
* NOTE:
|
|
10
|
+
*
|
|
11
|
+
* This file is automatically generated by Traduki 2.0.
|
|
12
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
|
+
*/
|
|
14
|
+
//Croatian (Croatia) [hr-HR]
|
|
15
|
+
var _default = exports.default = {
|
|
16
|
+
'fabric.status.color.blue': 'Plava',
|
|
17
|
+
'fabric.status.color.green': 'Zelena',
|
|
18
|
+
'fabric.status.color.grey': 'Siva',
|
|
19
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
20
|
+
'fabric.status.color.red': 'Crvena',
|
|
21
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
22
|
+
'fabric.status.input.label': 'Postavi status'
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/* prettier-ignore */
|
|
8
|
+
/**
|
|
9
|
+
* NOTE:
|
|
10
|
+
*
|
|
11
|
+
* This file is automatically generated by Traduki 2.0.
|
|
12
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
|
+
*/
|
|
14
|
+
//Slovenian (Slovenia) [sl-SI]
|
|
15
|
+
var _default = exports.default = {
|
|
16
|
+
'fabric.status.color.blue': 'Modra',
|
|
17
|
+
'fabric.status.color.green': 'Zelena',
|
|
18
|
+
'fabric.status.color.grey': 'Siva',
|
|
19
|
+
'fabric.status.color.purple': 'Vijolična',
|
|
20
|
+
'fabric.status.color.red': 'Rdeča',
|
|
21
|
+
'fabric.status.color.yellow': 'Rumena',
|
|
22
|
+
'fabric.status.input.label': 'Nastavite status'
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/* prettier-ignore */
|
|
8
|
+
/**
|
|
9
|
+
* NOTE:
|
|
10
|
+
*
|
|
11
|
+
* This file is automatically generated by Traduki 2.0.
|
|
12
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
|
+
*/
|
|
14
|
+
//Serbian (Serbia) [sr-RS]
|
|
15
|
+
var _default = exports.default = {
|
|
16
|
+
'fabric.status.color.blue': 'Plava',
|
|
17
|
+
'fabric.status.color.green': 'Zelena',
|
|
18
|
+
'fabric.status.color.grey': 'Siva',
|
|
19
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
20
|
+
'fabric.status.color.red': 'Crvena',
|
|
21
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
22
|
+
'fabric.status.input.label': 'Podesite status'
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/* prettier-ignore */
|
|
8
|
+
/**
|
|
9
|
+
* NOTE:
|
|
10
|
+
*
|
|
11
|
+
* This file is automatically generated by Traduki 2.0.
|
|
12
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
|
+
*/
|
|
14
|
+
//Serbian (Cyrillic) [sr-YR]
|
|
15
|
+
var _default = exports.default = {
|
|
16
|
+
'fabric.status.color.blue': 'Плава',
|
|
17
|
+
'fabric.status.color.green': 'Зелена',
|
|
18
|
+
'fabric.status.color.grey': 'Сива',
|
|
19
|
+
'fabric.status.color.purple': 'Љубичаста',
|
|
20
|
+
'fabric.status.color.red': 'Црвена',
|
|
21
|
+
'fabric.status.color.yellow': 'Жута',
|
|
22
|
+
'fabric.status.input.label': 'Подесите статус'
|
|
23
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const ELEMENTS_CHANNEL = 'fabric-elements';
|
|
2
2
|
const packageName = "@atlaskit/status";
|
|
3
|
-
const packageVersion = "3.0.
|
|
3
|
+
const packageVersion = "3.0.10";
|
|
4
4
|
export const createStatusAnalyticsAndFire = createAnalyticsEvent => payload => {
|
|
5
5
|
const statusPayload = {
|
|
6
6
|
...payload,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Croatian (Croatia) [hr-HR]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Plava',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
14
|
+
'fabric.status.color.red': 'Crvena',
|
|
15
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
16
|
+
'fabric.status.input.label': 'Postavi status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Slovenian (Slovenia) [sl-SI]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Modra',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Vijolična',
|
|
14
|
+
'fabric.status.color.red': 'Rdeča',
|
|
15
|
+
'fabric.status.color.yellow': 'Rumena',
|
|
16
|
+
'fabric.status.input.label': 'Nastavite status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Serbian (Serbia) [sr-RS]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Plava',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
14
|
+
'fabric.status.color.red': 'Crvena',
|
|
15
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
16
|
+
'fabric.status.input.label': 'Podesite status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Serbian (Cyrillic) [sr-YR]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Плава',
|
|
11
|
+
'fabric.status.color.green': 'Зелена',
|
|
12
|
+
'fabric.status.color.grey': 'Сива',
|
|
13
|
+
'fabric.status.color.purple': 'Љубичаста',
|
|
14
|
+
'fabric.status.color.red': 'Црвена',
|
|
15
|
+
'fabric.status.color.yellow': 'Жута',
|
|
16
|
+
'fabric.status.input.label': 'Подесите статус'
|
|
17
|
+
};
|
|
@@ -3,7 +3,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
3
3
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
4
|
export var ELEMENTS_CHANNEL = 'fabric-elements';
|
|
5
5
|
var packageName = "@atlaskit/status";
|
|
6
|
-
var packageVersion = "3.0.
|
|
6
|
+
var packageVersion = "3.0.10";
|
|
7
7
|
export var createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
|
|
8
8
|
return function (payload) {
|
|
9
9
|
var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Croatian (Croatia) [hr-HR]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Plava',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
14
|
+
'fabric.status.color.red': 'Crvena',
|
|
15
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
16
|
+
'fabric.status.input.label': 'Postavi status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Slovenian (Slovenia) [sl-SI]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Modra',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Vijolična',
|
|
14
|
+
'fabric.status.color.red': 'Rdeča',
|
|
15
|
+
'fabric.status.color.yellow': 'Rumena',
|
|
16
|
+
'fabric.status.input.label': 'Nastavite status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Serbian (Serbia) [sr-RS]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Plava',
|
|
11
|
+
'fabric.status.color.green': 'Zelena',
|
|
12
|
+
'fabric.status.color.grey': 'Siva',
|
|
13
|
+
'fabric.status.color.purple': 'Ljubičasta',
|
|
14
|
+
'fabric.status.color.red': 'Crvena',
|
|
15
|
+
'fabric.status.color.yellow': 'Žuta',
|
|
16
|
+
'fabric.status.input.label': 'Podesite status'
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
2
|
+
/**
|
|
3
|
+
* NOTE:
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically generated by Traduki 2.0.
|
|
6
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
7
|
+
*/
|
|
8
|
+
//Serbian (Cyrillic) [sr-YR]
|
|
9
|
+
export default {
|
|
10
|
+
'fabric.status.color.blue': 'Плава',
|
|
11
|
+
'fabric.status.color.green': 'Зелена',
|
|
12
|
+
'fabric.status.color.grey': 'Сива',
|
|
13
|
+
'fabric.status.color.purple': 'Љубичаста',
|
|
14
|
+
'fabric.status.color.red': 'Црвена',
|
|
15
|
+
'fabric.status.color.yellow': 'Жута',
|
|
16
|
+
'fabric.status.input.label': 'Подесите статус'
|
|
17
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NOTE:
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by Traduki 2.0.
|
|
5
|
+
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
'fabric.status.color.blue': string;
|
|
9
|
+
'fabric.status.color.green': string;
|
|
10
|
+
'fabric.status.color.grey': string;
|
|
11
|
+
'fabric.status.color.purple': string;
|
|
12
|
+
'fabric.status.color.red': string;
|
|
13
|
+
'fabric.status.color.yellow': string;
|
|
14
|
+
'fabric.status.input.label': string;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/status",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.11",
|
|
4
4
|
"description": "Fabric Status React Components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
"team": "Editor: Core Experiences",
|
|
18
18
|
"website": {
|
|
19
19
|
"name": "Status"
|
|
20
|
-
}
|
|
21
|
-
"runReact18": true
|
|
20
|
+
}
|
|
22
21
|
},
|
|
23
22
|
"sideEffects": [
|
|
24
23
|
"*.compiled.css"
|
|
@@ -28,13 +27,13 @@
|
|
|
28
27
|
},
|
|
29
28
|
"dependencies": {
|
|
30
29
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
31
|
-
"@atlaskit/icon": "^
|
|
30
|
+
"@atlaskit/icon": "^27.9.0",
|
|
32
31
|
"@atlaskit/lozenge": "^13.0.0",
|
|
33
32
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
34
33
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
35
|
-
"@atlaskit/primitives": "^14.
|
|
34
|
+
"@atlaskit/primitives": "^14.11.0",
|
|
36
35
|
"@atlaskit/textfield": "^8.0.0",
|
|
37
|
-
"@atlaskit/tokens": "^
|
|
36
|
+
"@atlaskit/tokens": "^6.0.0",
|
|
38
37
|
"@babel/runtime": "^7.0.0",
|
|
39
38
|
"@compiled/react": "^0.18.3",
|
|
40
39
|
"@emotion/react": "^11.7.1"
|
|
@@ -51,7 +50,6 @@
|
|
|
51
50
|
"@testing-library/jest-dom": "^6.4.5",
|
|
52
51
|
"@testing-library/react": "^13.4.0",
|
|
53
52
|
"enzyme": "^3.10.0",
|
|
54
|
-
"enzyme-adapter-react-16": "^1.15.1",
|
|
55
53
|
"react": "^18.2.0",
|
|
56
54
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
57
55
|
"typescript": "~5.4.2"
|
package/tsconfig.json
CHANGED
|
@@ -6,8 +6,13 @@
|
|
|
6
6
|
"./docs/**/*.ts",
|
|
7
7
|
"./docs/**/*.tsx",
|
|
8
8
|
"./examples/**/*.ts",
|
|
9
|
-
"./examples/**/*.tsx"
|
|
9
|
+
"./examples/**/*.tsx",
|
|
10
|
+
"**/stories.ts",
|
|
11
|
+
"**/stories.tsx",
|
|
12
|
+
"**/stories/*.ts",
|
|
13
|
+
"**/stories/*.tsx",
|
|
14
|
+
"**/stories/**/*.ts",
|
|
15
|
+
"**/stories/**/*.tsx"
|
|
10
16
|
],
|
|
11
|
-
"compilerOptions": {
|
|
12
|
-
|
|
13
|
-
}
|
|
17
|
+
"compilerOptions": {}
|
|
18
|
+
}
|