@nimbus-ds/styles 9.14.0 → 9.15.0-rc.1
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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +25 -0
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/themes/dark/index.js +1 -1
- package/dist/themes/next/index.js +1 -1
- package/dist/themes/next-dark/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5042,6 +5042,31 @@ export declare const table: {
|
|
|
5042
5042
|
container__cell: string;
|
|
5043
5043
|
};
|
|
5044
5044
|
};
|
|
5045
|
+
export declare const segmentedControl: {
|
|
5046
|
+
classnames: {
|
|
5047
|
+
container: string;
|
|
5048
|
+
};
|
|
5049
|
+
subcomponents: {
|
|
5050
|
+
button: {
|
|
5051
|
+
classnames: {
|
|
5052
|
+
appearance: Record<"default" | "selected", string>;
|
|
5053
|
+
fullWidth: string;
|
|
5054
|
+
};
|
|
5055
|
+
};
|
|
5056
|
+
};
|
|
5057
|
+
sprinkle: ((props: {
|
|
5058
|
+
padding?: "base" | "small" | "none" | undefined;
|
|
5059
|
+
}) => string) & {
|
|
5060
|
+
properties: Set<"padding">;
|
|
5061
|
+
};
|
|
5062
|
+
properties: {
|
|
5063
|
+
padding: {
|
|
5064
|
+
base: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
5065
|
+
small: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
5066
|
+
none: string;
|
|
5067
|
+
};
|
|
5068
|
+
};
|
|
5069
|
+
};
|
|
5045
5070
|
export declare const calendar: {
|
|
5046
5071
|
classnames: {
|
|
5047
5072
|
table: string;
|