@atlaskit/tokens 0.10.14 → 0.10.17
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 +23 -0
- package/css/atlassian-legacy-dark.css +290 -0
- package/css/atlassian-legacy-light.css +290 -0
- package/dist/cjs/artifacts/palettes-raw/legacy-palette.js +1970 -0
- package/dist/cjs/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +6758 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +6718 -0
- package/dist/cjs/constants.js +7 -5
- package/dist/cjs/entry-points/palettes-raw.js +2 -2
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/legacy-palette.js +825 -0
- package/dist/cjs/{tokens → palettes}/palette.js +0 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +296 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/background.js +250 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/border.js +53 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/icon.js +52 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/interaction.js +22 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/skeleton.js +20 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/color/text.js +63 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/deprecated/deprecated.js +532 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/shadow.js +89 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/surface.js +26 -0
- package/dist/cjs/tokens/atlassian-legacy-dark/utility/utility.js +20 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +296 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/background.js +249 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/border.js +53 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/icon.js +52 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/interaction.js +22 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/skeleton.js +20 -0
- package/dist/cjs/tokens/atlassian-legacy-light/color/text.js +63 -0
- package/dist/cjs/tokens/atlassian-legacy-light/deprecated/deprecated.js +523 -0
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/shadow.js +71 -0
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/surface.js +26 -0
- package/dist/cjs/tokens/atlassian-legacy-light/utility/utility.js +20 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/palettes-raw/legacy-palette.js +1962 -0
- package/dist/es2019/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +6750 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +6710 -0
- package/dist/es2019/constants.js +5 -3
- package/dist/es2019/entry-points/palettes-raw.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/legacy-palette.js +817 -0
- package/dist/es2019/{tokens → palettes}/palette.js +0 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +289 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/background.js +243 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/border.js +46 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/icon.js +45 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/interaction.js +15 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/skeleton.js +13 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/color/text.js +56 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/deprecated/deprecated.js +525 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/shadow.js +82 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/surface.js +19 -0
- package/dist/es2019/tokens/atlassian-legacy-dark/utility/utility.js +13 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +289 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/background.js +242 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/border.js +46 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/icon.js +45 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/interaction.js +15 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/skeleton.js +13 -0
- package/dist/es2019/tokens/atlassian-legacy-light/color/text.js +56 -0
- package/dist/es2019/tokens/atlassian-legacy-light/deprecated/deprecated.js +516 -0
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/shadow.js +64 -0
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/surface.js +19 -0
- package/dist/es2019/tokens/atlassian-legacy-light/utility/utility.js +13 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/palettes-raw/legacy-palette.js +1962 -0
- package/dist/esm/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +6750 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +6710 -0
- package/dist/esm/constants.js +5 -3
- package/dist/esm/entry-points/palettes-raw.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/legacy-palette.js +817 -0
- package/dist/esm/{tokens → palettes}/palette.js +0 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +289 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/background.js +243 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/border.js +46 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/icon.js +45 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/interaction.js +15 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/skeleton.js +13 -0
- package/dist/esm/tokens/atlassian-legacy-dark/color/text.js +56 -0
- package/dist/esm/tokens/atlassian-legacy-dark/deprecated/deprecated.js +525 -0
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/shadow.js +82 -0
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/surface.js +19 -0
- package/dist/esm/tokens/atlassian-legacy-dark/utility/utility.js +13 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +289 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/background.js +242 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/border.js +46 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/icon.js +45 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/interaction.js +15 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/skeleton.js +13 -0
- package/dist/esm/tokens/atlassian-legacy-light/color/text.js +56 -0
- package/dist/esm/tokens/atlassian-legacy-light/deprecated/deprecated.js +516 -0
- package/dist/esm/tokens/atlassian-legacy-light/elevation/shadow.js +64 -0
- package/dist/esm/tokens/atlassian-legacy-light/elevation/surface.js +19 -0
- package/dist/esm/tokens/atlassian-legacy-light/utility/utility.js +13 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/{palettes-raw.d.ts → palettes-raw/legacy-palette.d.ts} +1 -1
- package/dist/types/artifacts/palettes-raw/palette.d.ts +24 -0
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +195 -0
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +147 -0
- package/dist/types/constants.d.ts +7 -2
- package/dist/types/entry-points/palettes-raw.d.ts +1 -1
- package/dist/types/palettes/legacy-palette.d.ts +10 -0
- package/dist/types/palettes/palette.d.ts +5 -0
- package/dist/types/tokens/atlassian-dark/color/accent.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/background.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/border.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/icon.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/skeleton.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/color/text.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/deprecated/deprecated.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/elevation/shadow.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +2 -1
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +1 -1
- package/dist/types/tokens/atlassian-legacy-dark/color/accent.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/background.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/border.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/icon.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/interaction.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/skeleton.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/color/text.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/deprecated/deprecated.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/elevation/surface.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-dark/utility/utility.d.ts +5 -0
- package/dist/types/tokens/atlassian-legacy-light/color/accent.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/background.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/border.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/icon.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/interaction.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/skeleton.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/color/text.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/deprecated/deprecated.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/elevation/shadow.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/elevation/surface.d.ts +4 -0
- package/dist/types/tokens/atlassian-legacy-light/utility/utility.d.ts +5 -0
- package/dist/types/tokens/atlassian-light/color/accent.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/background.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/border.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/icon.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/interaction.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/skeleton.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/color/text.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/deprecated/deprecated.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/elevation/shadow.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +2 -1
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +1 -1
- package/dist/types/tokens/default/color/accent.d.ts +2 -1
- package/dist/types/tokens/default/color/background.d.ts +2 -1
- package/dist/types/tokens/default/color/border.d.ts +2 -1
- package/dist/types/tokens/default/color/icon.d.ts +2 -1
- package/dist/types/tokens/default/color/interaction.d.ts +2 -1
- package/dist/types/tokens/default/color/skeleton.d.ts +2 -1
- package/dist/types/tokens/default/color/text.d.ts +2 -1
- package/dist/types/tokens/default/deprecated/deprecated.d.ts +2 -1
- package/dist/types/tokens/default/elevation/shadow.d.ts +2 -1
- package/dist/types/tokens/default/elevation/surface.d.ts +2 -1
- package/dist/types/tokens/default/utility/utility.d.ts +1 -1
- package/dist/types/types.d.ts +308 -426
- package/dist/types/utils/color-detection.d.ts +1 -1
- package/package.json +6 -4
- package/dist/types/tokens/palette.d.ts +0 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { InteractionColorTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const color: ValueSchema<InteractionColorTokenSchema
|
|
3
|
+
declare const color: ValueSchema<InteractionColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { SkeletonColorTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const color: ValueSchema<SkeletonColorTokenSchema
|
|
3
|
+
declare const color: ValueSchema<SkeletonColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { TextColorTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const color: ValueSchema<TextColorTokenSchema
|
|
3
|
+
declare const color: ValueSchema<TextColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { DeprecatedTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const color: ValueSchema<DeprecatedTokenSchema
|
|
3
|
+
declare const color: ValueSchema<DeprecatedTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { ShadowTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const shadow: ValueSchema<ShadowTokenSchema
|
|
3
|
+
declare const shadow: ValueSchema<ShadowTokenSchema<BaseToken>>;
|
|
3
4
|
export default shadow;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { SurfaceTokenSchema, ValueSchema } from '../../../types';
|
|
2
|
-
declare const elevation: ValueSchema<SurfaceTokenSchema
|
|
3
|
+
declare const elevation: ValueSchema<SurfaceTokenSchema<BaseToken>>;
|
|
3
4
|
export default elevation;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { UtilTokenSchema, ValueSchema } from '../../../types';
|
|
2
2
|
declare const _default: {
|
|
3
|
-
utility: ValueSchema<UtilTokenSchema
|
|
3
|
+
utility: ValueSchema<UtilTokenSchema<"R100" | "R200" | "R300" | "R400" | "R500" | "Y100" | "Y200" | "Y300" | "Y400" | "Y500" | "G100" | "G200" | "G300" | "G400" | "G500" | "B100" | "B200" | "B300" | "B400" | "B500" | "P100" | "P200" | "P300" | "P400" | "P500" | "T100" | "T200" | "T300" | "T400" | "T500" | "N0" | "N100" | "N200" | "N300" | "N400" | "N500" | "N600" | "N700" | "N800" | "N900" | "N100A" | "N200A" | "N300A" | "N400A" | "N500A" | "DN900" | "DN800" | "DN700" | "DN600" | "DN500" | "DN400" | "DN300" | "DN200" | "DN100" | "DN0" | "DN500A" | "DN400A" | "DN300A" | "DN200A" | "DN100A" | "B600" | "B700" | "B800" | "B900" | "B1000" | "R600" | "R700" | "R800" | "R900" | "R1000" | "Y600" | "Y700" | "Y800" | "Y900" | "Y1000" | "G600" | "G700" | "G800" | "G900" | "G1000" | "P600" | "P700" | "P800" | "P900" | "P1000" | "T600" | "T700" | "T800" | "T900" | "T1000" | "O100" | "O200" | "O300" | "O400" | "O500" | "O600" | "O700" | "O800" | "O900" | "O1000" | "M100" | "M200" | "M300" | "M400" | "M500" | "M600" | "M700" | "M800" | "M900" | "M1000" | "DN-100" | "DN-100A" | "DN1000" | "DN1100" | "N1000" | "N1100">>;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AccentColorTokenSchema, AttributeSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<AccentColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<AccentColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, BackgroundColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<BackgroundColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<BackgroundColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, BorderColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<BorderColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<BorderColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, IconColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<IconColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<IconColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, InteractionColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<InteractionColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<InteractionColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, SkeletonColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<SkeletonColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<SkeletonColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, TextColorTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<TextColorTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<TextColorTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, DeprecatedTokenSchema } from '../../../types';
|
|
2
|
-
declare const color: AttributeSchema<DeprecatedTokenSchema
|
|
3
|
+
declare const color: AttributeSchema<DeprecatedTokenSchema<BaseToken>>;
|
|
3
4
|
export default color;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, ShadowTokenSchema } from '../../../types';
|
|
2
|
-
declare const shadow: AttributeSchema<ShadowTokenSchema
|
|
3
|
+
declare const shadow: AttributeSchema<ShadowTokenSchema<BaseToken>>;
|
|
3
4
|
export default shadow;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BaseToken } from '../../../palettes/palette';
|
|
1
2
|
import type { AttributeSchema, SurfaceTokenSchema } from '../../../types';
|
|
2
|
-
declare const shadow: AttributeSchema<SurfaceTokenSchema
|
|
3
|
+
declare const shadow: AttributeSchema<SurfaceTokenSchema<BaseToken>>;
|
|
3
4
|
export default shadow;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AttributeSchema, UtilTokenSchema } from '../../../types';
|
|
2
2
|
declare const _default: {
|
|
3
|
-
utility: AttributeSchema<UtilTokenSchema
|
|
3
|
+
utility: AttributeSchema<UtilTokenSchema<"R100" | "R200" | "R300" | "R400" | "R500" | "Y100" | "Y200" | "Y300" | "Y400" | "Y500" | "G100" | "G200" | "G300" | "G400" | "G500" | "B100" | "B200" | "B300" | "B400" | "B500" | "P100" | "P200" | "P300" | "P400" | "P500" | "T100" | "T200" | "T300" | "T400" | "T500" | "N0" | "N100" | "N200" | "N300" | "N400" | "N500" | "N600" | "N700" | "N800" | "N900" | "N100A" | "N200A" | "N300A" | "N400A" | "N500A" | "DN900" | "DN800" | "DN700" | "DN600" | "DN500" | "DN400" | "DN300" | "DN200" | "DN100" | "DN0" | "DN500A" | "DN400A" | "DN300A" | "DN200A" | "DN100A" | "B600" | "B700" | "B800" | "B900" | "B1000" | "R600" | "R700" | "R800" | "R900" | "R1000" | "Y600" | "Y700" | "Y800" | "Y900" | "Y1000" | "G600" | "G700" | "G800" | "G900" | "G1000" | "P600" | "P700" | "P800" | "P900" | "P1000" | "T600" | "T700" | "T800" | "T900" | "T1000" | "O100" | "O200" | "O300" | "O400" | "O500" | "O600" | "O700" | "O800" | "O900" | "O1000" | "M100" | "M200" | "M300" | "M400" | "M500" | "M600" | "M700" | "M800" | "M900" | "M1000" | "DN-100" | "DN-100A" | "DN1000" | "DN1100" | "N1000" | "N1100">>;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|