@bamboocss/preset-atlaskit 1.12.1 → 1.12.3
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/dist/index.d.cts +26 -0
- package/dist/index.d.mts +26 -0
- package/package.json +2 -2
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
//#region src/index.d.ts
|
|
2
|
+
declare const preset: {
|
|
3
|
+
name: string;
|
|
4
|
+
theme: {
|
|
5
|
+
breakpoints: Record<string, string> | undefined;
|
|
6
|
+
tokens: {
|
|
7
|
+
colors: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
8
|
+
opacity: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
9
|
+
radii: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
10
|
+
fontSizes: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
11
|
+
fontWeights: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
12
|
+
lineHeights: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
13
|
+
fonts: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | string[]>> | undefined;
|
|
14
|
+
spacing: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
15
|
+
durations: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
16
|
+
easings: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number[]>> | undefined;
|
|
17
|
+
};
|
|
18
|
+
semanticTokens: {
|
|
19
|
+
colors: import("@bamboocss/types").Recursive<import("@bamboocss/types").SemanticToken<string, string>> | undefined;
|
|
20
|
+
shadows: import("@bamboocss/types").Recursive<import("@bamboocss/types").SemanticToken<string | string[] | import("@bamboocss/types").Shadow | import("@bamboocss/types").Shadow[], string>> | undefined;
|
|
21
|
+
};
|
|
22
|
+
textStyles: import("@bamboocss/types").TextStyles | undefined;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
//#endregion
|
|
26
|
+
export { preset as default, preset };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
//#region src/index.d.ts
|
|
2
|
+
declare const preset: {
|
|
3
|
+
name: string;
|
|
4
|
+
theme: {
|
|
5
|
+
breakpoints: Record<string, string> | undefined;
|
|
6
|
+
tokens: {
|
|
7
|
+
colors: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
8
|
+
opacity: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
9
|
+
radii: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
10
|
+
fontSizes: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
11
|
+
fontWeights: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
12
|
+
lineHeights: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
13
|
+
fonts: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | string[]>> | undefined;
|
|
14
|
+
spacing: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number>> | undefined;
|
|
15
|
+
durations: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string>> | undefined;
|
|
16
|
+
easings: import("@bamboocss/types").Recursive<import("@bamboocss/types").Token<string | number[]>> | undefined;
|
|
17
|
+
};
|
|
18
|
+
semanticTokens: {
|
|
19
|
+
colors: import("@bamboocss/types").Recursive<import("@bamboocss/types").SemanticToken<string, string>> | undefined;
|
|
20
|
+
shadows: import("@bamboocss/types").Recursive<import("@bamboocss/types").SemanticToken<string | string[] | import("@bamboocss/types").Shadow | import("@bamboocss/types").Shadow[], string>> | undefined;
|
|
21
|
+
};
|
|
22
|
+
textStyles: import("@bamboocss/types").TextStyles | undefined;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
//#endregion
|
|
26
|
+
export { preset as default, preset };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bamboocss/preset-atlaskit",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.3",
|
|
4
4
|
"description": "The preset for BambooCSS that contains the default theme",
|
|
5
5
|
"homepage": "https://bamboo-css.com",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@bamboocss/types": "1.12.
|
|
36
|
+
"@bamboocss/types": "1.12.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@atlaskit/motion": "^5.3.10",
|