@bamboocss/preset-atlaskit 1.11.1 → 1.11.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.cjs +2086 -0
- package/dist/index.d.cts +26 -0
- package/dist/index.d.mts +26 -0
- package/dist/index.mjs +2066 -2861
- package/package.json +9 -9
- package/dist/index.js +0 -2903
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 };
|