@fastkit/vui 1.5.2 → 1.6.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/README.md CHANGED
@@ -26,6 +26,23 @@ npm install @fastkit/vui
26
26
  pnpm add @fastkit/vui
27
27
  ```
28
28
 
29
+ ### Peer dependencies
30
+
31
+ ```bash
32
+ pnpm add vue vue-router
33
+ ```
34
+
35
+ `@fastkit/vui` exposes icon names, color scopes and media-match keys in its own public
36
+ types, and the code generated for your project (see `@fastkit/vite-plugin-vui`) augments
37
+ `@fastkit/vui` itself to replace their placeholder types with your real values. The
38
+ packages those types originate from — `@fastkit/icon-font`, `@fastkit/color-scheme`,
39
+ `@fastkit/media-match` — are `@fastkit/vui`'s own dependencies, so you do not declare
40
+ them.
41
+
42
+ Declare `@fastkit/color-scheme` or `@fastkit/media-match` only if you import from them in
43
+ your own code. Using `@fastkit/vue-color-scheme` or `@fastkit/vue-media-match` directly,
44
+ rather than through `@fastkit/vui`, still requires their respective peer.
45
+
29
46
  ## Basic Usage
30
47
 
31
48
  ### Plugin Setup
package/dist/vui.css CHANGED
@@ -1,4 +1,4 @@
1
- @layer vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout;
1
+ @layer vui-normalize, vui-color-scheme, vue-disabled-reason, vue-loading, vue-app-layout, vui;
2
2
  @layer vui-normalize{
3
3
  *,:after,:before{
4
4
  box-sizing:border-box;
package/dist/vui.d.mts CHANGED
@@ -31,14 +31,14 @@ export * from "@fastkit/vue-stack";
31
31
  export * from "@fastkit/vue-action";
32
32
  export * from "@fastkit/vue-utils";
33
33
  export * from "@fastkit/vue-loading";
34
- //#region src/schemes/control.d.ts
34
+ //#region src/schema/control.d.ts
35
35
  declare const CONTROL_SIZES: readonly ["sm", "md", "lg"];
36
36
  type ControlSize = (typeof CONTROL_SIZES)[number];
37
37
  declare const CONTROL_FIELD_VARIANTS: readonly ["outlined", "filled", "flat"];
38
38
  type ControlFieldVariant = (typeof CONTROL_FIELD_VARIANTS)[number];
39
39
  declare const CONTROL_LOADING_SPINNER_SIZES: Record<ControlSize, number>;
40
40
  //#endregion
41
- //#region src/schemes/elevation.d.ts
41
+ //#region src/schema/elevation.d.ts
42
42
  type VuiElevationValue = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
43
43
  //#endregion
44
44
  //#region src/composables/control.d.ts
@@ -2494,7 +2494,7 @@ declare const VBusyImage: import("vue").DefineComponent<import("vue").ExtractPro
2494
2494
  'aria-colindex': PropType<(string | number) | undefined>;
2495
2495
  'aria-colspan': PropType<(string | number) | undefined>;
2496
2496
  'aria-controls': PropType<string | undefined>;
2497
- 'aria-current': PropType<"date" | "time" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined>;
2497
+ 'aria-current': PropType<"date" | "time" | "page" | "step" | "location" | (boolean | "true" | "false") | undefined>;
2498
2498
  'aria-describedby': PropType<string | undefined>;
2499
2499
  'aria-details': PropType<string | undefined>;
2500
2500
  'aria-disabled': PropType<(boolean | "true" | "false") | undefined>;
@@ -2705,7 +2705,7 @@ declare const VBusyImage: import("vue").DefineComponent<import("vue").ExtractPro
2705
2705
  'aria-colindex': PropType<(string | number) | undefined>;
2706
2706
  'aria-colspan': PropType<(string | number) | undefined>;
2707
2707
  'aria-controls': PropType<string | undefined>;
2708
- 'aria-current': PropType<"date" | "time" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined>;
2708
+ 'aria-current': PropType<"date" | "time" | "page" | "step" | "location" | (boolean | "true" | "false") | undefined>;
2709
2709
  'aria-describedby': PropType<string | undefined>;
2710
2710
  'aria-details': PropType<string | undefined>;
2711
2711
  'aria-disabled': PropType<(boolean | "true" | "false") | undefined>;
@@ -2850,7 +2850,7 @@ declare const VBusyImage: import("vue").DefineComponent<import("vue").ExtractPro
2850
2850
  default?: () => any;
2851
2851
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2852
2852
  //#endregion
2853
- //#region src/components/VGrid/schemes.d.ts
2853
+ //#region src/components/VGrid/schema.d.ts
2854
2854
  type RawGridValue<T extends number | string = number | string> = T | Partial<Record<MediaMatchKey, T>> | undefined;
2855
2855
  type RawGridValueProp<T extends number | string = number | string> = PropType<RawGridValue<T>>;
2856
2856
  //#endregion
@@ -3041,7 +3041,7 @@ declare function createAvatarProps(): {
3041
3041
  custom: PropType<boolean>;
3042
3042
  activeClass: PropType<string>;
3043
3043
  exactActiveClass: PropType<string>;
3044
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3044
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3045
3045
  viewTransition: PropType<boolean>;
3046
3046
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3047
3047
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3112,7 +3112,7 @@ declare const VAvatar: import("vue").DefineComponent<import("vue").ExtractPropTy
3112
3112
  custom: PropType<boolean>;
3113
3113
  activeClass: PropType<string>;
3114
3114
  exactActiveClass: PropType<string>;
3115
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3115
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3116
3116
  viewTransition: PropType<boolean>;
3117
3117
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3118
3118
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3184,7 +3184,7 @@ declare const VAvatar: import("vue").DefineComponent<import("vue").ExtractPropTy
3184
3184
  custom: PropType<boolean>;
3185
3185
  activeClass: PropType<string>;
3186
3186
  exactActiveClass: PropType<string>;
3187
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3187
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3188
3188
  viewTransition: PropType<boolean>;
3189
3189
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3190
3190
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3266,7 +3266,7 @@ declare function createChipProps(): {
3266
3266
  custom: PropType<boolean>;
3267
3267
  activeClass: PropType<string>;
3268
3268
  exactActiveClass: PropType<string>;
3269
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3269
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3270
3270
  viewTransition: PropType<boolean>;
3271
3271
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3272
3272
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3337,7 +3337,7 @@ declare const VChip: import("vue").DefineComponent<import("vue").ExtractPropType
3337
3337
  custom: PropType<boolean>;
3338
3338
  activeClass: PropType<string>;
3339
3339
  exactActiveClass: PropType<string>;
3340
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3340
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3341
3341
  viewTransition: PropType<boolean>;
3342
3342
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3343
3343
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3409,7 +3409,7 @@ declare const VChip: import("vue").DefineComponent<import("vue").ExtractPropType
3409
3409
  custom: PropType<boolean>;
3410
3410
  activeClass: PropType<string>;
3411
3411
  exactActiveClass: PropType<string>;
3412
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3412
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3413
3413
  viewTransition: PropType<boolean>;
3414
3414
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3415
3415
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3479,7 +3479,7 @@ declare function createCardProps(): {
3479
3479
  custom: import("vue").PropType<boolean>;
3480
3480
  activeClass: import("vue").PropType<string>;
3481
3481
  exactActiveClass: import("vue").PropType<string>;
3482
- ariaCurrentValue: import("vue").PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3482
+ ariaCurrentValue: import("vue").PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3483
3483
  viewTransition: import("vue").PropType<boolean>;
3484
3484
  onDblclick: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
3485
3485
  onMousedown: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3550,7 +3550,7 @@ declare const VCard: import("vue").DefineComponent<import("vue").ExtractPropType
3550
3550
  custom: import("vue").PropType<boolean>;
3551
3551
  activeClass: import("vue").PropType<string>;
3552
3552
  exactActiveClass: import("vue").PropType<string>;
3553
- ariaCurrentValue: import("vue").PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3553
+ ariaCurrentValue: import("vue").PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3554
3554
  viewTransition: import("vue").PropType<boolean>;
3555
3555
  onDblclick: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
3556
3556
  onMousedown: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3620,7 +3620,7 @@ declare const VCard: import("vue").DefineComponent<import("vue").ExtractPropType
3620
3620
  custom: import("vue").PropType<boolean>;
3621
3621
  activeClass: import("vue").PropType<string>;
3622
3622
  exactActiveClass: import("vue").PropType<string>;
3623
- ariaCurrentValue: import("vue").PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3623
+ ariaCurrentValue: import("vue").PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3624
3624
  viewTransition: import("vue").PropType<boolean>;
3625
3625
  onDblclick: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
3626
3626
  onMousedown: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3722,7 +3722,7 @@ declare const vueButtonProps: {
3722
3722
  custom: PropType<boolean>;
3723
3723
  activeClass: PropType<string>;
3724
3724
  exactActiveClass: PropType<string>;
3725
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3725
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3726
3726
  viewTransition: PropType<boolean>;
3727
3727
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3728
3728
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3802,7 +3802,7 @@ declare const VButton: import("vue").DefineComponent<ExtractPropTypes<{
3802
3802
  custom: PropType<boolean>;
3803
3803
  activeClass: PropType<string>;
3804
3804
  exactActiveClass: PropType<string>;
3805
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3805
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3806
3806
  viewTransition: PropType<boolean>;
3807
3807
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3808
3808
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3879,7 +3879,7 @@ declare const VButton: import("vue").DefineComponent<ExtractPropTypes<{
3879
3879
  custom: PropType<boolean>;
3880
3880
  activeClass: PropType<string>;
3881
3881
  exactActiveClass: PropType<string>;
3882
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
3882
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
3883
3883
  viewTransition: PropType<boolean>;
3884
3884
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
3885
3885
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -3917,8 +3917,8 @@ declare const VButton: import("vue").DefineComponent<ExtractPropTypes<{
3917
3917
  borderColor: PropType<PaletteName>;
3918
3918
  }>> & Readonly<{}>, {
3919
3919
  loading: boolean;
3920
- rounded: boolean;
3921
3920
  align: "left" | "right" | "center";
3921
+ rounded: boolean;
3922
3922
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3923
3923
  //#endregion
3924
3924
  //#region src/components/VButton/VButtonGroup.d.ts
@@ -4108,7 +4108,7 @@ declare function createListTileProps(): {
4108
4108
  custom: PropType<boolean>;
4109
4109
  activeClass: PropType<string>;
4110
4110
  exactActiveClass: PropType<string>;
4111
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4111
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4112
4112
  viewTransition: PropType<boolean>;
4113
4113
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4114
4114
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4178,7 +4178,7 @@ declare const VListTile: import("vue").DefineComponent<import("vue").ExtractProp
4178
4178
  custom: PropType<boolean>;
4179
4179
  activeClass: PropType<string>;
4180
4180
  exactActiveClass: PropType<string>;
4181
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4181
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4182
4182
  viewTransition: PropType<boolean>;
4183
4183
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4184
4184
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4246,7 +4246,7 @@ declare const VListTile: import("vue").DefineComponent<import("vue").ExtractProp
4246
4246
  custom: PropType<boolean>;
4247
4247
  activeClass: PropType<string>;
4248
4248
  exactActiveClass: PropType<string>;
4249
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4249
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4250
4250
  viewTransition: PropType<boolean>;
4251
4251
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4252
4252
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4280,9 +4280,9 @@ declare const VListTile: import("vue").DefineComponent<import("vue").ExtractProp
4280
4280
  }>> & Readonly<{
4281
4281
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4282
4282
  }>, {
4283
- linkFallbackTag: string;
4284
4283
  startIconEmptySpace: boolean;
4285
4284
  exactMatch: boolean;
4285
+ linkFallbackTag: string;
4286
4286
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4287
4287
  //#endregion
4288
4288
  //#region src/components/VDrawerLayout/VDrawerLayout.d.ts
@@ -4402,7 +4402,7 @@ declare function createNavigationItemProps(): {
4402
4402
  custom: PropType<boolean>;
4403
4403
  activeClass: PropType<string>;
4404
4404
  exactActiveClass: PropType<string>;
4405
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4405
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4406
4406
  viewTransition: PropType<boolean>;
4407
4407
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4408
4408
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4486,7 +4486,7 @@ declare const VNavigationItem: import("vue").DefineComponent<import("vue").Extra
4486
4486
  custom: PropType<boolean>;
4487
4487
  activeClass: PropType<string>;
4488
4488
  exactActiveClass: PropType<string>;
4489
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4489
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4490
4490
  viewTransition: PropType<boolean>;
4491
4491
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4492
4492
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4561,7 +4561,7 @@ declare const VNavigationItem: import("vue").DefineComponent<import("vue").Extra
4561
4561
  custom: PropType<boolean>;
4562
4562
  activeClass: PropType<string>;
4563
4563
  exactActiveClass: PropType<string>;
4564
- ariaCurrentValue: PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
4564
+ ariaCurrentValue: PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
4565
4565
  viewTransition: PropType<boolean>;
4566
4566
  onDblclick: PropType<((payload: MouseEvent) => void) | undefined>;
4567
4567
  onMousedown: PropType<((payload: MouseEvent) => void) | undefined>;
@@ -4595,9 +4595,9 @@ declare const VNavigationItem: import("vue").DefineComponent<import("vue").Extra
4595
4595
  }>> & Readonly<{
4596
4596
  onChangeActive?: ((isActive: boolean) => any) | undefined;
4597
4597
  }>, {
4598
- linkFallbackTag: string;
4599
4598
  startIconEmptySpace: boolean;
4600
4599
  exactMatch: boolean;
4600
+ linkFallbackTag: string;
4601
4601
  depth: number;
4602
4602
  nested: boolean;
4603
4603
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -7277,11 +7277,11 @@ declare const VForm: import("vue").DefineComponent<import("vue").ExtractPropType
7277
7277
  rules: import("@fastkit/vue-form-control").RecursiveVerifiableRuleOrFn;
7278
7278
  showOwnErrors: boolean;
7279
7279
  detach: boolean;
7280
+ disableAutoScroll: boolean;
7280
7281
  novalidate: boolean;
7281
7282
  autoValidate: boolean;
7282
7283
  sending: boolean;
7283
7284
  acceptInvalidSubmission: import("@fastkit/vue-form-control").FormAcceptInvalidSubmissionSpec;
7284
- disableAutoScroll: boolean;
7285
7285
  }, import("@fastkit/vue-utils").DefinedSlots<{
7286
7286
  default?: ((form: VueForm) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7287
7287
  [key: string]: any;
@@ -7743,7 +7743,7 @@ declare const VToolbarMenu: import("vue").DefineComponent<import("vue").ExtractP
7743
7743
  custom: import("vue").PropType<boolean>;
7744
7744
  activeClass: import("vue").PropType<string>;
7745
7745
  exactActiveClass: import("vue").PropType<string>;
7746
- ariaCurrentValue: import("vue").PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
7746
+ ariaCurrentValue: import("vue").PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
7747
7747
  viewTransition: import("vue").PropType<boolean>;
7748
7748
  onDblclick: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
7749
7749
  onMousedown: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7820,7 +7820,7 @@ declare const VToolbarMenu: import("vue").DefineComponent<import("vue").ExtractP
7820
7820
  custom: import("vue").PropType<boolean>;
7821
7821
  activeClass: import("vue").PropType<string>;
7822
7822
  exactActiveClass: import("vue").PropType<string>;
7823
- ariaCurrentValue: import("vue").PropType<"date" | "time" | "true" | "false" | "page" | "step" | "location">;
7823
+ ariaCurrentValue: import("vue").PropType<"date" | "time" | "page" | "step" | "location" | "true" | "false">;
7824
7824
  viewTransition: import("vue").PropType<boolean>;
7825
7825
  onDblclick: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
7826
7826
  onMousedown: import("vue").PropType<((payload: MouseEvent) => void) | undefined>;
@@ -7858,8 +7858,8 @@ declare const VToolbarMenu: import("vue").DefineComponent<import("vue").ExtractP
7858
7858
  borderColor: import("vue").PropType<PaletteName>;
7859
7859
  }>> & Readonly<{}>, {
7860
7860
  loading: boolean;
7861
- rounded: boolean;
7862
7861
  align: "left" | "right" | "center";
7862
+ rounded: boolean;
7863
7863
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7864
7864
  //#endregion
7865
7865
  //#region src/components/VToolbar/VToolbarEdge.d.ts
package/dist/vui.mjs CHANGED
@@ -36,7 +36,7 @@ export * from "@fastkit/vue-stack";
36
36
  export * from "@fastkit/vue-action";
37
37
  export * from "@fastkit/vue-utils";
38
38
  export * from "@fastkit/vue-loading";
39
- //#region src/schemes/control.ts
39
+ //#region src/schema/control.ts
40
40
  const CONTROL_SIZES = [
41
41
  "sm",
42
42
  "md",
@@ -720,7 +720,7 @@ function isAvailableSrc(src) {
720
720
  return typeof src === "string" && src !== "";
721
721
  }
722
722
  //#endregion
723
- //#region src/components/VGrid/schemes.ts
723
+ //#region src/components/VGrid/schema.ts
724
724
  function extractRawGridValueClasses(value, prefix, getter) {
725
725
  if (typeof value !== "object") return `${prefix}${getter ? getter(value) : value}`;
726
726
  return Object.entries(value).map(([breakpoint, breakpointValue]) => `${prefix}${getter ? getter(breakpointValue) : breakpointValue}--${breakpoint}`);