@xmart/xorder-ui 0.2.1-dev.1 → 0.3.0-dev.2
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/components/tag/tag.css.d.ts +3 -3
- package/dist/index.esm.js +762 -562
- package/dist/styles/compat/index.d.ts +2 -0
- package/dist/styles/compat/primitive.d.ts +198 -0
- package/dist/styles/compat/semantic.d.ts +58 -0
- package/dist/styles/tokens/index.d.ts +1 -2
- package/dist/xorder-ui.css +1 -1
- package/package.json +7 -3
- package/dist/styles/index.css.d.ts +0 -1
- package/dist/styles/tokens/primitive.css.d.ts +0 -201
- package/dist/styles/tokens/semantic.css.d.ts +0 -64
|
@@ -2,7 +2,7 @@ declare const tagColor: `var(--${string})`;
|
|
|
2
2
|
declare const tagBackgroundColor: `var(--${string})`;
|
|
3
3
|
declare const tagBorderColor: `var(--${string})`;
|
|
4
4
|
export declare const root: string;
|
|
5
|
-
export declare const colorVariants: Record<"
|
|
6
|
-
export declare const colorFilledVariants: Record<"
|
|
7
|
-
export declare const colorOutlinedVariants: Record<"
|
|
5
|
+
export declare const colorVariants: Record<"blue" | "green" | "orange" | "purple" | "red" | "orange-brown", string>;
|
|
6
|
+
export declare const colorFilledVariants: Record<"blue" | "green" | "orange" | "purple" | "red" | "orange-brown", string>;
|
|
7
|
+
export declare const colorOutlinedVariants: Record<"blue" | "green" | "orange" | "purple" | "red" | "orange-brown", string>;
|
|
8
8
|
export { tagBackgroundColor, tagBorderColor, tagColor };
|