@rebilly/revel 6.17.12 → 6.17.14

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.
Files changed (27) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/components/r-avatar/r-avatar.vue.d.ts +1 -1
  3. package/dist/components/r-button/r-button.vue.d.ts +1 -1
  4. package/dist/components/r-checkbox/r-checkbox.vue.d.ts +4 -4
  5. package/dist/components/r-date-input/r-calendar.vue.d.ts +0 -3
  6. package/dist/components/r-date-input/r-date-input.vue.d.ts +9 -9
  7. package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +3 -3
  8. package/dist/components/r-date-input/r-range-calendar.vue.d.ts +1 -4
  9. package/dist/components/r-date-input/v-calendar.es.d.ts +4 -4
  10. package/dist/components/r-file-upload/r-file-upload.vue.d.ts +1 -1
  11. package/dist/components/r-grid/columnTypes/badge.vue.d.ts +2 -2
  12. package/dist/components/r-grid/columnTypes/index.d.ts +14 -14
  13. package/dist/components/r-grid/r-grid.vue.d.ts +9 -11
  14. package/dist/components/r-icon-button/r-icon-button.vue.d.ts +1 -1
  15. package/dist/components/r-input/r-input.vue.d.ts +5 -5
  16. package/dist/components/r-loader/r-loader.vue.d.ts +1 -1
  17. package/dist/components/r-modal/r-modal.vue.d.ts +3 -3
  18. package/dist/components/r-month-picker/r-month-picker.vue.d.ts +1 -1
  19. package/dist/components/r-popper/r-popper.vue.d.ts +5 -5
  20. package/dist/components/r-radio/r-radio.vue.d.ts +5 -5
  21. package/dist/components/r-select/r-select.vue.d.ts +17 -17
  22. package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
  23. package/dist/revel.mjs +137 -136
  24. package/dist/revel.umd.js +1 -1
  25. package/dist/style.css +1 -1
  26. package/dist/styles/tokens.d.ts +3 -2
  27. package/package.json +3 -3
@@ -167,7 +167,7 @@ declare const _default: import("vue").DefineComponent<{
167
167
  * Specify direction of shown popper
168
168
  */
169
169
  openDirection: {
170
- type: PropType<"bottom" | "top" | "below" | "above">;
170
+ type: PropType<"bottom" | "top" | "above" | "below">;
171
171
  default: string;
172
172
  };
173
173
  /**
@@ -293,7 +293,7 @@ declare const _default: import("vue").DefineComponent<{
293
293
  * The array of selected options
294
294
  */
295
295
  modelValue: {
296
- type: PropType<Nullable<OptionItem | Options>>;
296
+ type: PropType<Nullable<Options | OptionItem>>;
297
297
  default(): never[];
298
298
  };
299
299
  asyncGetInitValue: {
@@ -362,7 +362,7 @@ declare const _default: import("vue").DefineComponent<{
362
362
  trackBy: string;
363
363
  multiple: boolean;
364
364
  }): {} | null | undefined;
365
- getValue(): OptionItem | Options | null;
365
+ getValue(): Options | OptionItem | null;
366
366
  isExistingOption(query: string): boolean;
367
367
  isSelected(option: OptionItem): boolean;
368
368
  optionHighlight(index: number, option: OptionItem): {
@@ -386,7 +386,7 @@ declare const _default: import("vue").DefineComponent<{
386
386
  handleAsyncLoadPrev(): Promise<void>;
387
387
  handleAsyncLoadMore(count: number): Promise<void>;
388
388
  handleAsyncLoadByQuery({ limit, offset }: Partial<Query>): Promise<void>;
389
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "close" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove" | "tag")[], "select" | "close" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove" | "tag", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
389
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "select" | "close" | "tag" | "update:modelValue" | "search-change" | "remove" | "async-loaded")[], "open" | "select" | "close" | "tag" | "update:modelValue" | "search-change" | "remove" | "async-loaded", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
390
390
  /**
391
391
  * Specify if no option can be selected
392
392
  */
@@ -531,7 +531,7 @@ declare const _default: import("vue").DefineComponent<{
531
531
  * Specify direction of shown popper
532
532
  */
533
533
  openDirection: {
534
- type: PropType<"bottom" | "top" | "below" | "above">;
534
+ type: PropType<"bottom" | "top" | "above" | "below">;
535
535
  default: string;
536
536
  };
537
537
  /**
@@ -657,7 +657,7 @@ declare const _default: import("vue").DefineComponent<{
657
657
  * The array of selected options
658
658
  */
659
659
  modelValue: {
660
- type: PropType<Nullable<OptionItem | Options>>;
660
+ type: PropType<Nullable<Options | OptionItem>>;
661
661
  default(): never[];
662
662
  };
663
663
  asyncGetInitValue: {
@@ -677,32 +677,28 @@ declare const _default: import("vue").DefineComponent<{
677
677
  default: string;
678
678
  };
679
679
  }>> & {
680
- onSelect?: ((...args: any[]) => any) | undefined;
681
680
  onClose?: ((...args: any[]) => any) | undefined;
682
681
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
683
682
  onOpen?: ((...args: any[]) => any) | undefined;
684
- "onAsync-loaded"?: ((...args: any[]) => any) | undefined;
683
+ onSelect?: ((...args: any[]) => any) | undefined;
684
+ onTag?: ((...args: any[]) => any) | undefined;
685
685
  "onSearch-change"?: ((...args: any[]) => any) | undefined;
686
686
  onRemove?: ((...args: any[]) => any) | undefined;
687
- onTag?: ((...args: any[]) => any) | undefined;
687
+ "onAsync-loaded"?: ((...args: any[]) => any) | undefined;
688
688
  }, {
689
689
  name: string;
690
690
  label: string;
691
691
  loading: boolean;
692
- disabled: boolean;
693
692
  id: string;
694
- modelValue: Nullable<OptionItem | Options>;
693
+ disabled: boolean;
694
+ modelValue: Nullable<Options | OptionItem>;
695
695
  validate: ValidationState;
696
696
  placeholder: string;
697
697
  multiple: boolean;
698
698
  helpText: string;
699
- autocomplete: string;
700
- tabindex: number;
701
699
  limit: number;
702
- asyncGetInitValue: AsyncSearchFn;
703
- asyncFind: AsyncSearchFn;
704
- options: Options;
705
700
  allowEmpty: boolean;
701
+ autocomplete: string;
706
702
  blockKeys: string[];
707
703
  clearOnSelect: boolean;
708
704
  closeOnSelect: boolean;
@@ -712,7 +708,8 @@ declare const _default: import("vue").DefineComponent<{
712
708
  limitText: Function;
713
709
  max: number | boolean;
714
710
  maxHeight: number;
715
- openDirection: "bottom" | "top" | "below" | "above";
711
+ openDirection: "bottom" | "top" | "above" | "below";
712
+ options: Options;
716
713
  optionHeight: number;
717
714
  optionKey: string;
718
715
  optionLabel: string;
@@ -724,9 +721,12 @@ declare const _default: import("vue").DefineComponent<{
724
721
  showNoOptions: boolean;
725
722
  showNoResults: boolean;
726
723
  showPointer: boolean;
724
+ tabindex: number;
727
725
  taggable: boolean;
728
726
  tagPosition: string;
729
727
  tagValidator: TagValidatorFn;
728
+ asyncGetInitValue: AsyncSearchFn;
729
+ asyncFind: AsyncSearchFn;
730
730
  asyncConfig: Config;
731
731
  asyncValuePropsKey: string;
732
732
  }>;
@@ -129,13 +129,13 @@ declare const _default: import("vue").DefineComponent<{
129
129
  }>> & {
130
130
  onHide?: ((...args: any[]) => any) | undefined;
131
131
  }, {
132
+ message: string | Function;
132
133
  type: string;
133
- title: string;
134
- container: Nullable<HTMLElement>;
135
- autoHide: boolean;
136
134
  visible: boolean;
137
- message: string | Function;
135
+ title: string;
138
136
  allowClose: boolean;
137
+ autoHide: boolean;
139
138
  hideDelay: number;
139
+ container: Nullable<HTMLElement>;
140
140
  }>;
141
141
  export default _default;
package/dist/revel.mjs CHANGED
@@ -14614,150 +14614,151 @@ const xg = (M, b) => ({
14614
14614
  );
14615
14615
  O.parseError(z, p).forEach((c) => this.negative(c, o));
14616
14616
  }
14617
- }), _g = "0.125rem", Hg = "0.25rem", Fg = "0.5rem", jg = "624.9375rem", Yg = "50%", Ug = "576px", Kg = "768px", Gg = "1040px", Zg = "1200px", Qg = "1400px", Jg = "#FFFFFF", M9 = "#000000", b9 = "#F5F5F5", z9 = "#E0E0E0", p9 = "#E7EDF1", o9 = "#FFFFFF", O9 = "#F9F9F9", e9 = "#FBFCFE", c9 = "#F5F5F5", t9 = "#F3F5F7", A9 = "#DDF5E0", n9 = "#F2FBF2", a9 = "#FCF0BF", s9 = "#FDF9E5", i9 = "#FBE1E1", r9 = "#FDF3F3", q9 = "#E1E9FA", d9 = "#F3F6FD", l9 = "#4C5361", W9 = "#414753", u9 = "#383F4E", f9 = "#0044D4", h9 = "#093AA5", R9 = "#0036AA", L9 = "#22BC32", m9 = "#1EA02B", g9 = "#0C4112", B9 = "#018310", N9 = "#F1C400", v9 = "#CDA700", y9 = "#544400", X9 = "#C19D00", w9 = "#E53935", T9 = "#C3302D", $9 = "#501412", D9 = "#D31A14", C9 = "#3B6EDE", S9 = "#325DBD", E9 = "#182C59", P9 = "#2F58B2", k9 = "#DDDDDD", I9 = "#E8E8E8", V9 = "#C9C9C9", x9 = "#9E9E9E", _9 = "#A1B2C1", H9 = "#6FD37A", F9 = "#F2CA1A", j9 = "#E6423F", Y9 = "#7FA0E9", U9 = "#363A44", K9 = "#484848", G9 = "#232323", Z9 = "#0D2B3E", Q9 = "#FFFFFF", J9 = "#1a1a1a", MB = "#FFFFFF", bB = "#5f5f5f", zB = "#0D2B3E66", pB = "#3D79FC", oB = "#3D79FC", OB = "-apple-system,system-ui,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial sans-serif", eB = "'SFMono-Medium', 'SF Mono', 'Segoe UI Mono', 'Roboto Mono', 'Ubuntu Mono', Menlo, Consolas, Courier, monospace", cB = "2.5rem", tB = "2.125rem", AB = "1.75rem", nB = "1.5rem", aB = "1.25rem", sB = "1rem", iB = "0.875rem", rB = "0.75rem", qB = "2.75rem", dB = "2.5rem", lB = "2.25rem", WB = "2rem", uB = "1.75rem", fB = "1.5rem", hB = "1.25rem", RB = "1rem", LB = "400", mB = "500", gB = "600", BB = "700", NB = "cubic-bezier(0, 0, 1, 1)", vB = "cubic-bezier(0.25, 0.1, 0.25, 1)", yB = "cubic-bezier(0.42, 0, 1, 1)", XB = "cubic-bezier(0, 0, 0.58, 1)", wB = "cubic-bezier(0.42, 0, 0.58, 1)", TB = "0", $B = "50ms", DB = "100ms", CB = "150ms", SB = "200ms", EB = "300ms", PB = "400ms", kB = "500ms", IB = "none", VB = "0 1px 2px 0 rgba(86, 107, 120, 0.24), 0 4px 4px 0 rgba(86, 107, 120, 0.05)", xB = "0 7px 14px 0 rgba(86, 107, 120, 0.15), 0 3px 6px 0 rgba(86, 107, 120, 0.07)", _B = "0 3px 6px 0 rgba(86, 107, 120, 0.2), 0 7px 14px 0 rgba(86, 107, 120, 0.35)", HB = "0 20px 40px -8px rgba(80, 90, 111, 0.18), 0 3px 6px 0 rgba(80, 90, 111, 0.07)", FB = "0 0 0 1px rgba(86, 107, 120, 0.03), 0 1px 2px 0 rgba(86, 107, 120, 0.24), 0 4px 4px 0 rgba(86, 107, 120, 0.05)", jB = "0 0 0 1px rgba(86, 107, 120, 0.09), 0 7px 14px 0 rgba(86, 107, 120, 0.15), 0 3px 6px 0 rgba(86, 107, 120, 0.07)", YB = "0", UB = "0.125rem", KB = "0.25rem", GB = "0.5rem", ZB = "0.75rem", QB = "1rem", JB = "1.25rem", MN = "1.5rem", bN = "1.75rem", zN = "2rem", pN = "2.5rem", oN = "3rem", ON = "4rem", eN = "5rem", cN = "7.5rem", tN = "10rem", AN = "50", nN = "100", aN = "150", sN = "200", iN = "250", rN = "300", qN = "350", dN = "400", lN = "450", WN = "500", uN = "550", fN = "600", hN = "650", RN = "700", NN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
14617
+ }), _g = "0.125rem", Hg = "0.25rem", Fg = "0.5rem", jg = "624.9375rem", Yg = "50%", Ug = "576px", Kg = "768px", Gg = "1040px", Zg = "1200px", Qg = "1400px", Jg = "#FFFFFF", M9 = "#000000", b9 = "#F5F5F5", z9 = "#E0E0E0", p9 = "#E7EDF1", o9 = "#FFFFFF", O9 = "#F9F9F9", e9 = "#F5F5F5", c9 = "#FBFCFE", t9 = "#F5F5F5", A9 = "#F3F5F7", n9 = "#DDF5E0", a9 = "#F2FBF2", s9 = "#FCF0BF", i9 = "#FDF9E5", r9 = "#FBE1E1", q9 = "#FDF3F3", d9 = "#E1E9FA", l9 = "#F3F6FD", W9 = "#4C5361", u9 = "#414753", f9 = "#383F4E", h9 = "#0044D4", R9 = "#093AA5", L9 = "#0036AA", m9 = "#22BC32", g9 = "#1EA02B", B9 = "#0C4112", N9 = "#018310", v9 = "#F1C400", y9 = "#CDA700", X9 = "#544400", w9 = "#C19D00", T9 = "#E53935", $9 = "#C3302D", D9 = "#501412", C9 = "#D31A14", S9 = "#3B6EDE", E9 = "#325DBD", P9 = "#182C59", k9 = "#2F58B2", I9 = "#DDDDDD", V9 = "#E8E8E8", x9 = "#C9C9C9", _9 = "#9E9E9E", H9 = "#A1B2C1", F9 = "#6FD37A", j9 = "#F2CA1A", Y9 = "#E6423F", U9 = "#7FA0E9", K9 = "#363A44", G9 = "#484848", Z9 = "#232323", Q9 = "#0D2B3E", J9 = "#FFFFFF", MB = "#1a1a1a", bB = "#FFFFFF", zB = "#5f5f5f", pB = "#1A1A1A66", oB = "#3D79FC", OB = "#3D79FC", eB = "-apple-system,system-ui,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial sans-serif", cB = "'SFMono-Medium', 'SF Mono', 'Segoe UI Mono', 'Roboto Mono', 'Ubuntu Mono', Menlo, Consolas, Courier, monospace", tB = "2.5rem", AB = "2.125rem", nB = "1.75rem", aB = "1.5rem", sB = "1.25rem", iB = "1rem", rB = "0.875rem", qB = "0.75rem", dB = "2.75rem", lB = "2.5rem", WB = "2.25rem", uB = "2rem", fB = "1.75rem", hB = "1.5rem", RB = "1.25rem", LB = "1rem", mB = "400", gB = "500", BB = "600", NB = "700", vB = "cubic-bezier(0, 0, 1, 1)", yB = "cubic-bezier(0.25, 0.1, 0.25, 1)", XB = "cubic-bezier(0.42, 0, 1, 1)", wB = "cubic-bezier(0, 0, 0.58, 1)", TB = "cubic-bezier(0.42, 0, 0.58, 1)", $B = "0", DB = "50ms", CB = "100ms", SB = "150ms", EB = "200ms", PB = "300ms", kB = "400ms", IB = "500ms", VB = "none", xB = "0 1px 2px 0 rgba(86, 107, 120, 0.24), 0 4px 4px 0 rgba(86, 107, 120, 0.05)", _B = "0 7px 14px 0 rgba(86, 107, 120, 0.15), 0 3px 6px 0 rgba(86, 107, 120, 0.07)", HB = "0 3px 6px 0 rgba(86, 107, 120, 0.2), 0 7px 14px 0 rgba(86, 107, 120, 0.35)", FB = "0 20px 40px -8px rgba(80, 90, 111, 0.18), 0 3px 6px 0 rgba(80, 90, 111, 0.07)", jB = "0 0 0 1px rgba(86, 107, 120, 0.03), 0 1px 2px 0 rgba(86, 107, 120, 0.24), 0 4px 4px 0 rgba(86, 107, 120, 0.05)", YB = "0 0 0 1px rgba(86, 107, 120, 0.09), 0 7px 14px 0 rgba(86, 107, 120, 0.15), 0 3px 6px 0 rgba(86, 107, 120, 0.07)", UB = "0", KB = "0.125rem", GB = "0.25rem", ZB = "0.5rem", QB = "0.75rem", JB = "1rem", MN = "1.25rem", bN = "1.5rem", zN = "1.75rem", pN = "2rem", oN = "2.5rem", ON = "3rem", eN = "4rem", cN = "5rem", tN = "7.5rem", AN = "10rem", nN = "50", aN = "100", sN = "150", iN = "200", rN = "250", qN = "300", dN = "350", lN = "400", WN = "450", uN = "500", fN = "550", hN = "600", RN = "650", LN = "700", vN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
14618
14618
  __proto__: null,
14619
14619
  RBackground: b9,
14620
14620
  RBackgroundHover: z9,
14621
14621
  RBackgroundRaised: p9,
14622
- RBorder: k9,
14623
- RBorderDanger: j9,
14624
- RBorderDark: U9,
14625
- RBorderInfo: Y9,
14626
- RBorderMuted: I9,
14622
+ RBorder: I9,
14623
+ RBorderDanger: Y9,
14624
+ RBorderDark: K9,
14625
+ RBorderInfo: U9,
14626
+ RBorderMuted: V9,
14627
14627
  RBorderRadius1: _g,
14628
14628
  RBorderRadius2: Hg,
14629
14629
  RBorderRadius3: Fg,
14630
14630
  RBorderRadiusCircle: Yg,
14631
14631
  RBorderRadiusPill: jg,
14632
- RBorderStrong: V9,
14633
- RBorderStrongHover: x9,
14634
- RBorderStrongHovered: _9,
14635
- RBorderSuccess: H9,
14636
- RBorderWarning: F9,
14632
+ RBorderStrong: x9,
14633
+ RBorderStrongHover: _9,
14634
+ RBorderStrongHovered: H9,
14635
+ RBorderSuccess: F9,
14636
+ RBorderWarning: j9,
14637
14637
  RBreakpointsL: Zg,
14638
14638
  RBreakpointsM: Gg,
14639
14639
  RBreakpointsS: Kg,
14640
14640
  RBreakpointsXl: Qg,
14641
14641
  RBreakpointsXs: Ug,
14642
- RComplementaryDanger: w9,
14643
- RComplementaryDangerDark: $9,
14644
- RComplementaryDangerHover: T9,
14645
- RComplementaryDangerHovered: D9,
14646
- RComplementaryInfo: C9,
14647
- RComplementaryInfoDark: E9,
14648
- RComplementaryInfoHover: S9,
14649
- RComplementaryInfoHovered: P9,
14650
- RComplementarySuccess: L9,
14651
- RComplementarySuccessDark: g9,
14652
- RComplementarySuccessHover: m9,
14653
- RComplementarySuccessHovered: B9,
14654
- RComplementaryWarning: N9,
14655
- RComplementaryWarningDark: y9,
14656
- RComplementaryWarningHover: v9,
14657
- RComplementaryWarningHovered: X9,
14658
- RFocus: pB,
14659
- RFocused: oB,
14660
- RFontFamily: OB,
14661
- RFontFamilyMono: eB,
14662
- RFontLineHeight2xl: WB,
14663
- RFontLineHeight3xl: lB,
14664
- RFontLineHeight4xl: dB,
14665
- RFontLineHeight5xl: qB,
14666
- RFontLineHeightL: fB,
14667
- RFontLineHeightM: hB,
14668
- RFontLineHeightS: RB,
14669
- RFontLineHeightXl: uB,
14670
- RFontSize2xl: nB,
14671
- RFontSize3xl: AB,
14672
- RFontSize4xl: tB,
14673
- RFontSize5xl: cB,
14674
- RFontSizeL: sB,
14675
- RFontSizeM: iB,
14676
- RFontSizeS: rB,
14677
- RFontSizeXl: aB,
14678
- RFontWeightBold: BB,
14679
- RFontWeightMedium: mB,
14680
- RFontWeightRegular: LB,
14681
- RFontWeightSemiBold: gB,
14682
- RIcon: K9,
14683
- RIconHover: G9,
14684
- RIconHovered: Z9,
14685
- RIconOnSurface: Q9,
14642
+ RComplementaryDanger: T9,
14643
+ RComplementaryDangerDark: D9,
14644
+ RComplementaryDangerHover: $9,
14645
+ RComplementaryDangerHovered: C9,
14646
+ RComplementaryInfo: S9,
14647
+ RComplementaryInfoDark: P9,
14648
+ RComplementaryInfoHover: E9,
14649
+ RComplementaryInfoHovered: k9,
14650
+ RComplementarySuccess: m9,
14651
+ RComplementarySuccessDark: B9,
14652
+ RComplementarySuccessHover: g9,
14653
+ RComplementarySuccessHovered: N9,
14654
+ RComplementaryWarning: v9,
14655
+ RComplementaryWarningDark: X9,
14656
+ RComplementaryWarningHover: y9,
14657
+ RComplementaryWarningHovered: w9,
14658
+ RFocus: oB,
14659
+ RFocused: OB,
14660
+ RFontFamily: eB,
14661
+ RFontFamilyMono: cB,
14662
+ RFontLineHeight2xl: uB,
14663
+ RFontLineHeight3xl: WB,
14664
+ RFontLineHeight4xl: lB,
14665
+ RFontLineHeight5xl: dB,
14666
+ RFontLineHeightL: hB,
14667
+ RFontLineHeightM: RB,
14668
+ RFontLineHeightS: LB,
14669
+ RFontLineHeightXl: fB,
14670
+ RFontSize2xl: aB,
14671
+ RFontSize3xl: nB,
14672
+ RFontSize4xl: AB,
14673
+ RFontSize5xl: tB,
14674
+ RFontSizeL: iB,
14675
+ RFontSizeM: rB,
14676
+ RFontSizeS: qB,
14677
+ RFontSizeXl: sB,
14678
+ RFontWeightBold: NB,
14679
+ RFontWeightMedium: gB,
14680
+ RFontWeightRegular: mB,
14681
+ RFontWeightSemiBold: BB,
14682
+ RIcon: G9,
14683
+ RIconHover: Z9,
14684
+ RIconHovered: Q9,
14685
+ RIconOnSurface: J9,
14686
14686
  RMono0: Jg,
14687
14687
  RMono100: M9,
14688
- RMotionDuration0: TB,
14689
- RMotionDuration100: DB,
14690
- RMotionDuration150: CB,
14691
- RMotionDuration200: SB,
14692
- RMotionDuration300: EB,
14693
- RMotionDuration400: PB,
14694
- RMotionDuration50: $B,
14695
- RMotionDuration500: kB,
14696
- RMotionEase: vB,
14697
- RMotionEaseIn: yB,
14698
- RMotionEaseInOut: wB,
14699
- RMotionEaseOut: XB,
14700
- RMotionLinear: NB,
14701
- ROverlay: zB,
14702
- RPrimary: f9,
14703
- RPrimaryHover: h9,
14704
- RPrimaryHovered: R9,
14705
- RShadow0: IB,
14706
- RShadow10: VB,
14707
- RShadow20: xB,
14708
- RShadow30: _B,
14709
- RShadow40: HB,
14710
- RShadowInset10: FB,
14711
- RShadowInset20: jB,
14712
- RSpace0: YB,
14713
- RSpace1: UB,
14714
- RSpace10: pN,
14715
- RSpace11: oN,
14716
- RSpace12: ON,
14717
- RSpace13: eN,
14718
- RSpace14: cN,
14719
- RSpace15: tN,
14720
- RSpace2: KB,
14721
- RSpace3: GB,
14722
- RSpace4: ZB,
14723
- RSpace5: QB,
14724
- RSpace6: JB,
14725
- RSpace7: MN,
14726
- RSpace8: bN,
14727
- RSpace9: zN,
14688
+ RMotionDuration0: $B,
14689
+ RMotionDuration100: CB,
14690
+ RMotionDuration150: SB,
14691
+ RMotionDuration200: EB,
14692
+ RMotionDuration300: PB,
14693
+ RMotionDuration400: kB,
14694
+ RMotionDuration50: DB,
14695
+ RMotionDuration500: IB,
14696
+ RMotionEase: yB,
14697
+ RMotionEaseIn: XB,
14698
+ RMotionEaseInOut: TB,
14699
+ RMotionEaseOut: wB,
14700
+ RMotionLinear: vB,
14701
+ ROverlay: pB,
14702
+ RPrimary: h9,
14703
+ RPrimaryHover: R9,
14704
+ RPrimaryHovered: L9,
14705
+ RShadow0: VB,
14706
+ RShadow10: xB,
14707
+ RShadow20: _B,
14708
+ RShadow30: HB,
14709
+ RShadow40: FB,
14710
+ RShadowInset10: jB,
14711
+ RShadowInset20: YB,
14712
+ RSpace0: UB,
14713
+ RSpace1: KB,
14714
+ RSpace10: oN,
14715
+ RSpace11: ON,
14716
+ RSpace12: eN,
14717
+ RSpace13: cN,
14718
+ RSpace14: tN,
14719
+ RSpace15: AN,
14720
+ RSpace2: GB,
14721
+ RSpace3: ZB,
14722
+ RSpace4: QB,
14723
+ RSpace5: JB,
14724
+ RSpace6: MN,
14725
+ RSpace7: bN,
14726
+ RSpace8: zN,
14727
+ RSpace9: pN,
14728
14728
  RSurface: o9,
14729
- RSurfaceDanger: i9,
14730
- RSurfaceDangerMuted: r9,
14731
- RSurfaceDark: l9,
14732
- RSurfaceDarkHover: W9,
14733
- RSurfaceDarkHovered: u9,
14734
- RSurfaceHover: c9,
14735
- RSurfaceHovered: t9,
14736
- RSurfaceInfo: q9,
14737
- RSurfaceInfoMuted: d9,
14738
- RSurfaceRaised: e9,
14729
+ RSurfaceDanger: r9,
14730
+ RSurfaceDangerMuted: q9,
14731
+ RSurfaceDark: W9,
14732
+ RSurfaceDarkHover: u9,
14733
+ RSurfaceDarkHovered: f9,
14734
+ RSurfaceHover: t9,
14735
+ RSurfaceHovered: A9,
14736
+ RSurfaceInfo: d9,
14737
+ RSurfaceInfoMuted: l9,
14738
+ RSurfaceRaised: c9,
14739
14739
  RSurfaceSecondary: O9,
14740
- RSurfaceSuccess: A9,
14741
- RSurfaceSuccessMuted: n9,
14742
- RSurfaceWarning: a9,
14743
- RSurfaceWarningMuted: s9,
14744
- RText: J9,
14745
- RTextMuted: bB,
14746
- RTextOnSurface: MB,
14747
- RZIndex10: nN,
14748
- RZIndex15: aN,
14749
- RZIndex20: sN,
14750
- RZIndex25: iN,
14751
- RZIndex30: rN,
14752
- RZIndex35: qN,
14753
- RZIndex40: dN,
14754
- RZIndex45: lN,
14755
- RZIndex5: AN,
14756
- RZIndex50: WN,
14757
- RZIndex55: uN,
14758
- RZIndex60: fN,
14759
- RZIndex65: hN,
14760
- RZIndex70: RN
14740
+ RSurfaceSuccess: n9,
14741
+ RSurfaceSuccessMuted: a9,
14742
+ RSurfaceTertiary: e9,
14743
+ RSurfaceWarning: s9,
14744
+ RSurfaceWarningMuted: i9,
14745
+ RText: MB,
14746
+ RTextMuted: zB,
14747
+ RTextOnSurface: bB,
14748
+ RZIndex10: aN,
14749
+ RZIndex15: sN,
14750
+ RZIndex20: iN,
14751
+ RZIndex25: rN,
14752
+ RZIndex30: qN,
14753
+ RZIndex35: dN,
14754
+ RZIndex40: lN,
14755
+ RZIndex45: WN,
14756
+ RZIndex5: nN,
14757
+ RZIndex50: uN,
14758
+ RZIndex55: fN,
14759
+ RZIndex60: hN,
14760
+ RZIndex65: RN,
14761
+ RZIndex70: LN
14761
14762
  }, Symbol.toStringTag, { value: "Module" })), f = {
14762
14763
  fingerprint: "fingerprint",
14763
14764
  dashboard: "dashboard",
@@ -14876,7 +14877,7 @@ const xg = (M, b) => ({
14876
14877
  meter: "meter",
14877
14878
  reports: "reports",
14878
14879
  allowlists: "allowlists"
14879
- }, LN = {
14880
+ }, mN = {
14880
14881
  default: null,
14881
14882
  "on-surface": "on-surface",
14882
14883
  primary: "primary",
@@ -15861,20 +15862,20 @@ function V3(M = document.body) {
15861
15862
  z.setAttribute("data-revel", "icon-sprite-sheet"), z.style.display = "none", z.innerHTML = I3, M?.appendChild(z);
15862
15863
  }
15863
15864
  }
15864
- const vN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
15865
+ const yN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
15865
15866
  __proto__: null,
15866
- RIconColors: LN,
15867
+ RIconColors: mN,
15867
15868
  RIconNames: f,
15868
15869
  RIconSprites: I3,
15869
15870
  RIconSpritesAppend: V3
15870
- }, Symbol.toStringTag, { value: "Module" })), mN = (M, { registerDirectives: b = !0, appendIconSheet: z = !0 } = {}) => {
15871
+ }, Symbol.toStringTag, { value: "Module" })), gN = (M, { registerDirectives: b = !0, appendIconSheet: z = !0 } = {}) => {
15871
15872
  b && Object.keys(dz).forEach((p) => {
15872
15873
  M.directive(p, dz[p]);
15873
15874
  }), Object.keys(Up).forEach((p) => {
15874
15875
  M.component(p, Up[p]);
15875
15876
  }), M.config.globalProperties.$toast = xg(M), z && V3();
15876
- }, yN = {
15877
- install: mN
15877
+ }, XN = {
15878
+ install: gN
15878
15879
  };
15879
15880
  export {
15880
15881
  Ic as RAvatar,
@@ -15906,11 +15907,11 @@ export {
15906
15907
  Gp as clickOutside,
15907
15908
  Nc as content,
15908
15909
  xg as createRToastManager,
15909
- yN as default,
15910
+ XN as default,
15910
15911
  Kp as fsExclude,
15911
- vN as icons,
15912
- mN as install,
15912
+ yN as icons,
15913
+ gN as install,
15913
15914
  ro as lazy,
15914
- NN as tokens,
15915
+ vN as tokens,
15915
15916
  io as tooltip
15916
15917
  };