@atlaskit/status 4.1.25 → 5.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 +32 -0
- package/dist/cjs/components/analytics.js +1 -1
- package/dist/es2019/components/analytics.js +1 -1
- package/dist/esm/components/analytics.js +1 -1
- package/element/package.json +1 -8
- package/package.json +9 -17
- package/picker/package.json +1 -8
- package/status/package.json +1 -8
- package/status-picker/package.json +1 -8
- package/dist/types-ts4.5/components/Status.d.ts +0 -20
- package/dist/types-ts4.5/components/StatusPicker.d.ts +0 -16
- package/dist/types-ts4.5/components/analytics.d.ts +0 -11
- package/dist/types-ts4.5/components/constants.d.ts +0 -1
- package/dist/types-ts4.5/components/i18n.d.ts +0 -37
- package/dist/types-ts4.5/components/internal/color-palette.d.ts +0 -10
- package/dist/types-ts4.5/components/internal/color.d.ts +0 -23
- package/dist/types-ts4.5/element.d.ts +0 -2
- package/dist/types-ts4.5/i18n/cs.d.ts +0 -16
- package/dist/types-ts4.5/i18n/da.d.ts +0 -16
- package/dist/types-ts4.5/i18n/de.d.ts +0 -16
- package/dist/types-ts4.5/i18n/en.d.ts +0 -16
- package/dist/types-ts4.5/i18n/en_GB.d.ts +0 -16
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +0 -16
- package/dist/types-ts4.5/i18n/es.d.ts +0 -16
- package/dist/types-ts4.5/i18n/et.d.ts +0 -15
- package/dist/types-ts4.5/i18n/fi.d.ts +0 -16
- package/dist/types-ts4.5/i18n/fr.d.ts +0 -16
- package/dist/types-ts4.5/i18n/hr.d.ts +0 -16
- package/dist/types-ts4.5/i18n/hu.d.ts +0 -16
- package/dist/types-ts4.5/i18n/index.d.ts +0 -37
- package/dist/types-ts4.5/i18n/is.d.ts +0 -9
- package/dist/types-ts4.5/i18n/it.d.ts +0 -16
- package/dist/types-ts4.5/i18n/ja.d.ts +0 -16
- package/dist/types-ts4.5/i18n/ko.d.ts +0 -16
- package/dist/types-ts4.5/i18n/languages.d.ts +0 -28
- package/dist/types-ts4.5/i18n/nb.d.ts +0 -16
- package/dist/types-ts4.5/i18n/nl.d.ts +0 -16
- package/dist/types-ts4.5/i18n/pl.d.ts +0 -16
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +0 -16
- package/dist/types-ts4.5/i18n/pt_PT.d.ts +0 -15
- package/dist/types-ts4.5/i18n/ro.d.ts +0 -9
- package/dist/types-ts4.5/i18n/ru.d.ts +0 -16
- package/dist/types-ts4.5/i18n/sk.d.ts +0 -15
- package/dist/types-ts4.5/i18n/sl.d.ts +0 -16
- package/dist/types-ts4.5/i18n/sr_RS.d.ts +0 -16
- package/dist/types-ts4.5/i18n/sr_YR.d.ts +0 -16
- package/dist/types-ts4.5/i18n/sv.d.ts +0 -16
- package/dist/types-ts4.5/i18n/th.d.ts +0 -16
- package/dist/types-ts4.5/i18n/tr.d.ts +0 -16
- package/dist/types-ts4.5/i18n/uk.d.ts +0 -16
- package/dist/types-ts4.5/i18n/vi.d.ts +0 -16
- package/dist/types-ts4.5/i18n/zh.d.ts +0 -16
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +0 -16
- package/dist/types-ts4.5/index.d.ts +0 -4
- package/dist/types-ts4.5/picker.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/status
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
|
|
8
|
+
Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
|
|
9
|
+
|
|
10
|
+
Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
|
|
11
|
+
|
|
12
|
+
Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
|
|
13
|
+
|
|
14
|
+
```diff
|
|
15
|
+
- "typesVersions": {
|
|
16
|
+
- ">=4.5 <4.9": {
|
|
17
|
+
- "*": [
|
|
18
|
+
- "dist/types-ts4.5/*",
|
|
19
|
+
- "dist/types-ts4.5/index.d.ts"
|
|
20
|
+
- ]
|
|
21
|
+
- }
|
|
22
|
+
- },
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
29
|
+
## 4.1.26
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
|
|
3
35
|
## 4.1.25
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
|
@@ -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 = "4.1.
|
|
13
|
+
var packageVersion = "4.1.26";
|
|
14
14
|
var createStatusAnalyticsAndFire = exports.createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
|
|
15
15
|
return function (payload) {
|
|
16
16
|
var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const ELEMENTS_CHANNEL = 'fabric-elements';
|
|
2
2
|
const packageName = "@atlaskit/status";
|
|
3
|
-
const packageVersion = "4.1.
|
|
3
|
+
const packageVersion = "4.1.26";
|
|
4
4
|
export const createStatusAnalyticsAndFire = createAnalyticsEvent => payload => {
|
|
5
5
|
const statusPayload = {
|
|
6
6
|
...payload,
|
|
@@ -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 = "4.1.
|
|
6
|
+
var packageVersion = "4.1.26";
|
|
7
7
|
export var createStatusAnalyticsAndFire = function createStatusAnalyticsAndFire(createAnalyticsEvent) {
|
|
8
8
|
return function (payload) {
|
|
9
9
|
var statusPayload = _objectSpread(_objectSpread({}, payload), {}, {
|
package/element/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/status",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Fabric Status React Components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@atlaskit/afm-i18n-platform-elements-status": "2.7.0",
|
|
48
|
-
"@atlaskit/analytics-next": "^
|
|
49
|
-
"@atlaskit/icon": "^
|
|
50
|
-
"@atlaskit/lozenge": "^
|
|
51
|
-
"@atlaskit/platform-feature-flags": "^
|
|
52
|
-
"@atlaskit/primitives": "^
|
|
53
|
-
"@atlaskit/textfield": "^
|
|
54
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
55
|
-
"@atlaskit/tokens": "^
|
|
48
|
+
"@atlaskit/analytics-next": "^12.0.0",
|
|
49
|
+
"@atlaskit/icon": "^36.0.0",
|
|
50
|
+
"@atlaskit/lozenge": "^14.0.0",
|
|
51
|
+
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
52
|
+
"@atlaskit/primitives": "^20.0.0",
|
|
53
|
+
"@atlaskit/textfield": "^9.0.0",
|
|
54
|
+
"@atlaskit/tmp-editor-statsig": "^104.0.0",
|
|
55
|
+
"@atlaskit/tokens": "^14.0.0",
|
|
56
56
|
"@babel/runtime": "^7.0.0",
|
|
57
57
|
"@compiled/react": "^0.20.0"
|
|
58
58
|
},
|
|
@@ -76,14 +76,6 @@
|
|
|
76
76
|
]
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
|
-
"typesVersions": {
|
|
80
|
-
">=4.5 <4.9": {
|
|
81
|
-
"*": [
|
|
82
|
-
"dist/types-ts4.5/*",
|
|
83
|
-
"dist/types-ts4.5/index.d.ts"
|
|
84
|
-
]
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
79
|
"platform-feature-flags": {
|
|
88
80
|
"platform-component-visual-refresh": {
|
|
89
81
|
"type": "boolean"
|
package/picker/package.json
CHANGED
package/status/package.json
CHANGED
|
@@ -6,12 +6,5 @@
|
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/components/Status.d.ts"
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../dist/types-ts4.5/components/Status.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
9
|
+
"types": "../dist/types/components/Status.d.ts"
|
|
17
10
|
}
|
|
@@ -6,12 +6,5 @@
|
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/components/StatusPicker.d.ts"
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../dist/types-ts4.5/components/StatusPicker.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
9
|
+
"types": "../dist/types/components/StatusPicker.d.ts"
|
|
17
10
|
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @jsxRuntime classic
|
|
3
|
-
* @jsx jsx
|
|
4
|
-
*/
|
|
5
|
-
import { type ForwardRefExoticComponent, type RefAttributes } from 'react';
|
|
6
|
-
import { type WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
7
|
-
export type Color = 'neutral' | 'purple' | 'blue' | 'red' | 'yellow' | 'green';
|
|
8
|
-
export type StatusStyle = 'bold' | 'subtle';
|
|
9
|
-
export interface OwnProps {
|
|
10
|
-
color: Color;
|
|
11
|
-
isBold?: boolean;
|
|
12
|
-
localId?: string;
|
|
13
|
-
onClick?: (event: React.SyntheticEvent<any>) => void;
|
|
14
|
-
onHover?: () => void;
|
|
15
|
-
role?: string;
|
|
16
|
-
style?: StatusStyle;
|
|
17
|
-
text: string;
|
|
18
|
-
}
|
|
19
|
-
export type Props = OwnProps & WithAnalyticsEventsProps;
|
|
20
|
-
export declare const Status: ForwardRefExoticComponent<Omit<OwnProps, keyof WithAnalyticsEventsProps> & RefAttributes<any>>;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { type WithIntlProps, type WrappedComponentProps } from 'react-intl';
|
|
3
|
-
import { type Color } from './Status';
|
|
4
|
-
export type ColorType = Color;
|
|
5
|
-
export interface Props {
|
|
6
|
-
autoFocus?: boolean;
|
|
7
|
-
onColorClick: (value: ColorType) => void;
|
|
8
|
-
onColorHover?: (value: ColorType) => void;
|
|
9
|
-
onEnter: () => void;
|
|
10
|
-
onTextChanged: (value: string) => void;
|
|
11
|
-
selectedColor: ColorType;
|
|
12
|
-
text: string;
|
|
13
|
-
}
|
|
14
|
-
export declare const StatusPicker: React.FC<WithIntlProps<Props & WrappedComponentProps>> & {
|
|
15
|
-
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
16
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { type CreateUIAnalyticsEvent, type UIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
|
-
export declare const ELEMENTS_CHANNEL = "fabric-elements";
|
|
3
|
-
type EventPayload = {
|
|
4
|
-
action: string;
|
|
5
|
-
actionSubject: string;
|
|
6
|
-
attributes?: {
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
export declare const createStatusAnalyticsAndFire: (createAnalyticsEvent: CreateUIAnalyticsEvent) => (payload: EventPayload) => UIAnalyticsEvent;
|
|
11
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const ANALYTICS_HOVER_DELAY = 1000;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
export declare const messages: {
|
|
2
|
-
neutralColor: {
|
|
3
|
-
id: string;
|
|
4
|
-
defaultMessage: string;
|
|
5
|
-
description: string;
|
|
6
|
-
};
|
|
7
|
-
purpleColor: {
|
|
8
|
-
id: string;
|
|
9
|
-
defaultMessage: string;
|
|
10
|
-
description: string;
|
|
11
|
-
};
|
|
12
|
-
blueColor: {
|
|
13
|
-
id: string;
|
|
14
|
-
defaultMessage: string;
|
|
15
|
-
description: string;
|
|
16
|
-
};
|
|
17
|
-
redColor: {
|
|
18
|
-
id: string;
|
|
19
|
-
defaultMessage: string;
|
|
20
|
-
description: string;
|
|
21
|
-
};
|
|
22
|
-
yellowColor: {
|
|
23
|
-
id: string;
|
|
24
|
-
defaultMessage: string;
|
|
25
|
-
description: string;
|
|
26
|
-
};
|
|
27
|
-
greenColor: {
|
|
28
|
-
id: string;
|
|
29
|
-
defaultMessage: string;
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
statusInputLabel: {
|
|
33
|
-
id: string;
|
|
34
|
-
defaultMessage: string;
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { type Color as ColorType } from '../Status';
|
|
2
|
-
interface ColorPaletteProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
cols?: number;
|
|
5
|
-
onClick: (value: ColorType) => void;
|
|
6
|
-
onHover?: (value: ColorType) => void;
|
|
7
|
-
selectedColor?: ColorType;
|
|
8
|
-
}
|
|
9
|
-
declare const _default: ({ cols, onClick, selectedColor, className, onHover, }: ColorPaletteProps) => JSX.Element;
|
|
10
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { PureComponent } from 'react';
|
|
2
|
-
import { type Color as ColorType } from '../Status';
|
|
3
|
-
export interface ColorProps {
|
|
4
|
-
backgroundColor: string;
|
|
5
|
-
borderColor: string;
|
|
6
|
-
iconColor: string;
|
|
7
|
-
isSelected?: boolean;
|
|
8
|
-
onClick: (value: ColorType) => void;
|
|
9
|
-
onHover?: (value: ColorType) => void;
|
|
10
|
-
onKeyDown?: React.KeyboardEventHandler<HTMLButtonElement>;
|
|
11
|
-
setRef?: (value: HTMLButtonElement) => HTMLButtonElement;
|
|
12
|
-
tabIndex?: number;
|
|
13
|
-
value: ColorType;
|
|
14
|
-
}
|
|
15
|
-
export default class Color extends PureComponent<ColorProps> {
|
|
16
|
-
private hoverStartTime;
|
|
17
|
-
render(): JSX.Element;
|
|
18
|
-
componentWillUnmount(): void;
|
|
19
|
-
onMouseEnter: () => void;
|
|
20
|
-
onMouseLeave: () => void;
|
|
21
|
-
onMouseDown: React.MouseEventHandler<HTMLButtonElement>;
|
|
22
|
-
onClick: React.MouseEventHandler<HTMLButtonElement>;
|
|
23
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
};
|
|
15
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NOTE:
|
|
3
|
-
*
|
|
4
|
-
* This file was automatically generated by i18n-tools
|
|
5
|
-
* which is now deprecated. Changes must now be made
|
|
6
|
-
* manually.
|
|
7
|
-
*/
|
|
8
|
-
export { default as zh } from './zh';
|
|
9
|
-
export { default as zh_TW } from './zh_TW';
|
|
10
|
-
export { default as cs } from './cs';
|
|
11
|
-
export { default as da } from './da';
|
|
12
|
-
export { default as nl } from './nl';
|
|
13
|
-
export { default as et } from './et';
|
|
14
|
-
export { default as fi } from './fi';
|
|
15
|
-
export { default as fr } from './fr';
|
|
16
|
-
export { default as de } from './de';
|
|
17
|
-
export { default as hu } from './hu';
|
|
18
|
-
export { default as it } from './it';
|
|
19
|
-
export { default as ja } from './ja';
|
|
20
|
-
export { default as ko } from './ko';
|
|
21
|
-
export { default as nb } from './nb';
|
|
22
|
-
export { default as pl } from './pl';
|
|
23
|
-
export { default as pt_BR } from './pt_BR';
|
|
24
|
-
export { default as pt_PT } from './pt_PT';
|
|
25
|
-
export { default as ru } from './ru';
|
|
26
|
-
export { default as sk } from './sk';
|
|
27
|
-
export { default as es } from './es';
|
|
28
|
-
export { default as sv } from './sv';
|
|
29
|
-
export { default as th } from './th';
|
|
30
|
-
export { default as tr } from './tr';
|
|
31
|
-
export { default as uk } from './uk';
|
|
32
|
-
export { default as vi } from './vi';
|
|
33
|
-
export { default as en } from './en';
|
|
34
|
-
export { default as en_GB } from './en_GB';
|
|
35
|
-
export { default as en_ZZ } from './en_ZZ';
|
|
36
|
-
export { default as is } from './is';
|
|
37
|
-
export { default as ro } from './ro';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
'fabric.status.color.grey': string;
|
|
3
|
-
'fabric.status.color.purple': string;
|
|
4
|
-
'fabric.status.color.blue': string;
|
|
5
|
-
'fabric.status.color.red': string;
|
|
6
|
-
'fabric.status.color.yellow': string;
|
|
7
|
-
'fabric.status.color.green': string;
|
|
8
|
-
};
|
|
9
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
zh: string;
|
|
3
|
-
cs: string;
|
|
4
|
-
da: string;
|
|
5
|
-
nl: string;
|
|
6
|
-
en: string;
|
|
7
|
-
en_GB: string;
|
|
8
|
-
en_ZZ: string;
|
|
9
|
-
et: string;
|
|
10
|
-
fi: string;
|
|
11
|
-
fr: string;
|
|
12
|
-
de: string;
|
|
13
|
-
hu: string;
|
|
14
|
-
is: string;
|
|
15
|
-
it: string;
|
|
16
|
-
ja: string;
|
|
17
|
-
ko: string;
|
|
18
|
-
nb: string;
|
|
19
|
-
pl: string;
|
|
20
|
-
pt_BR: string;
|
|
21
|
-
pt_PT: string;
|
|
22
|
-
ro: string;
|
|
23
|
-
ru: string;
|
|
24
|
-
sk: string;
|
|
25
|
-
es: string;
|
|
26
|
-
sv: string;
|
|
27
|
-
};
|
|
28
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
};
|
|
15
|
-
export default _default;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
'fabric.status.color.grey': string;
|
|
3
|
-
'fabric.status.color.purple': string;
|
|
4
|
-
'fabric.status.color.blue': string;
|
|
5
|
-
'fabric.status.color.red': string;
|
|
6
|
-
'fabric.status.color.yellow': string;
|
|
7
|
-
'fabric.status.color.green': string;
|
|
8
|
-
};
|
|
9
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
};
|
|
15
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|
|
@@ -1,16 +0,0 @@
|
|
|
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;
|