@rarui/styles 1.18.0 → 1.19.0

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.ts CHANGED
@@ -8166,6 +8166,98 @@ export declare const link: {
8166
8166
  }>;
8167
8167
  };
8168
8168
  };
8169
+ declare const progressStyles: {
8170
+ progress: string;
8171
+ progressBar: string;
8172
+ circle: import("@vanilla-extract/recipes").RuntimeFn<{
8173
+ /**
8174
+ * Specifies the size of the progress indicator.
8175
+ * This prop accepts one of the following values: "large" or "small".
8176
+ * @default large
8177
+ */
8178
+ size: {
8179
+ large: {
8180
+ width: "8.75rem";
8181
+ height: "8.75rem";
8182
+ };
8183
+ small: {
8184
+ width: "5rem";
8185
+ height: "5rem";
8186
+ };
8187
+ };
8188
+ }>;
8189
+ circleBase: string;
8190
+ circleProgress: import("@vanilla-extract/recipes").RuntimeFn<{
8191
+ completed: {
8192
+ true: {
8193
+ stroke: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8194
+ };
8195
+ };
8196
+ }>;
8197
+ circleText: string;
8198
+ };
8199
+ export type ProgressVariants = RecipeVariants<typeof progressStyles.circle>;
8200
+ export declare const progress: {
8201
+ classnames: {
8202
+ progress: string;
8203
+ progressBar: string;
8204
+ circle: import("@vanilla-extract/recipes").RuntimeFn<{
8205
+ size: {
8206
+ large: {
8207
+ width: "8.75rem";
8208
+ height: "8.75rem";
8209
+ };
8210
+ small: {
8211
+ width: "5rem";
8212
+ height: "5rem";
8213
+ };
8214
+ };
8215
+ }>;
8216
+ circleBase: string;
8217
+ circleProgress: import("@vanilla-extract/recipes").RuntimeFn<{
8218
+ completed: {
8219
+ true: {
8220
+ stroke: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8221
+ };
8222
+ };
8223
+ }>;
8224
+ circleText: string;
8225
+ };
8226
+ sprinkle: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[
8227
+ {
8228
+ config: {
8229
+ backgroundColor: {
8230
+ values: {
8231
+ info: {
8232
+ default: string;
8233
+ };
8234
+ success: {
8235
+ default: string;
8236
+ };
8237
+ };
8238
+ staticScale: {
8239
+ info: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8240
+ success: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8241
+ };
8242
+ name: "backgroundColor";
8243
+ };
8244
+ };
8245
+ } & {
8246
+ config: {
8247
+ width: {
8248
+ dynamic: {
8249
+ default: string;
8250
+ };
8251
+ dynamicScale: true;
8252
+ name: "width";
8253
+ vars: {
8254
+ default: string;
8255
+ };
8256
+ };
8257
+ };
8258
+ }
8259
+ ]>;
8260
+ };
8169
8261
  declare const styles$6: {
8170
8262
  radioButton: import("@vanilla-extract/recipes").RuntimeFn<{
8171
8263
  size: {