@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.
- package/CHANGELOG.md +9 -0
- package/dist/components/r-avatar/r-avatar.vue.d.ts +1 -1
- package/dist/components/r-button/r-button.vue.d.ts +1 -1
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +4 -4
- package/dist/components/r-date-input/r-calendar.vue.d.ts +0 -3
- package/dist/components/r-date-input/r-date-input.vue.d.ts +9 -9
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +3 -3
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +1 -4
- package/dist/components/r-date-input/v-calendar.es.d.ts +4 -4
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +1 -1
- package/dist/components/r-grid/columnTypes/badge.vue.d.ts +2 -2
- package/dist/components/r-grid/columnTypes/index.d.ts +14 -14
- package/dist/components/r-grid/r-grid.vue.d.ts +9 -11
- package/dist/components/r-icon-button/r-icon-button.vue.d.ts +1 -1
- package/dist/components/r-input/r-input.vue.d.ts +5 -5
- package/dist/components/r-loader/r-loader.vue.d.ts +1 -1
- package/dist/components/r-modal/r-modal.vue.d.ts +3 -3
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +1 -1
- package/dist/components/r-popper/r-popper.vue.d.ts +5 -5
- package/dist/components/r-radio/r-radio.vue.d.ts +5 -5
- package/dist/components/r-select/r-select.vue.d.ts +17 -17
- package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
- package/dist/revel.mjs +137 -136
- package/dist/revel.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/styles/tokens.d.ts +3 -2
- 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" | "
|
|
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<
|
|
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():
|
|
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" | "
|
|
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" | "
|
|
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<
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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" | "
|
|
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
|
-
|
|
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 = "#
|
|
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:
|
|
14623
|
-
RBorderDanger:
|
|
14624
|
-
RBorderDark:
|
|
14625
|
-
RBorderInfo:
|
|
14626
|
-
RBorderMuted:
|
|
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:
|
|
14633
|
-
RBorderStrongHover:
|
|
14634
|
-
RBorderStrongHovered:
|
|
14635
|
-
RBorderSuccess:
|
|
14636
|
-
RBorderWarning:
|
|
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:
|
|
14643
|
-
RComplementaryDangerDark:
|
|
14644
|
-
RComplementaryDangerHover:
|
|
14645
|
-
RComplementaryDangerHovered:
|
|
14646
|
-
RComplementaryInfo:
|
|
14647
|
-
RComplementaryInfoDark:
|
|
14648
|
-
RComplementaryInfoHover:
|
|
14649
|
-
RComplementaryInfoHovered:
|
|
14650
|
-
RComplementarySuccess:
|
|
14651
|
-
RComplementarySuccessDark:
|
|
14652
|
-
RComplementarySuccessHover:
|
|
14653
|
-
RComplementarySuccessHovered:
|
|
14654
|
-
RComplementaryWarning:
|
|
14655
|
-
RComplementaryWarningDark:
|
|
14656
|
-
RComplementaryWarningHover:
|
|
14657
|
-
RComplementaryWarningHovered:
|
|
14658
|
-
RFocus:
|
|
14659
|
-
RFocused:
|
|
14660
|
-
RFontFamily:
|
|
14661
|
-
RFontFamilyMono:
|
|
14662
|
-
RFontLineHeight2xl:
|
|
14663
|
-
RFontLineHeight3xl:
|
|
14664
|
-
RFontLineHeight4xl:
|
|
14665
|
-
RFontLineHeight5xl:
|
|
14666
|
-
RFontLineHeightL:
|
|
14667
|
-
RFontLineHeightM:
|
|
14668
|
-
RFontLineHeightS:
|
|
14669
|
-
RFontLineHeightXl:
|
|
14670
|
-
RFontSize2xl:
|
|
14671
|
-
RFontSize3xl:
|
|
14672
|
-
RFontSize4xl:
|
|
14673
|
-
RFontSize5xl:
|
|
14674
|
-
RFontSizeL:
|
|
14675
|
-
RFontSizeM:
|
|
14676
|
-
RFontSizeS:
|
|
14677
|
-
RFontSizeXl:
|
|
14678
|
-
RFontWeightBold:
|
|
14679
|
-
RFontWeightMedium:
|
|
14680
|
-
RFontWeightRegular:
|
|
14681
|
-
RFontWeightSemiBold:
|
|
14682
|
-
RIcon:
|
|
14683
|
-
RIconHover:
|
|
14684
|
-
RIconHovered:
|
|
14685
|
-
RIconOnSurface:
|
|
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:
|
|
14689
|
-
RMotionDuration100:
|
|
14690
|
-
RMotionDuration150:
|
|
14691
|
-
RMotionDuration200:
|
|
14692
|
-
RMotionDuration300:
|
|
14693
|
-
RMotionDuration400:
|
|
14694
|
-
RMotionDuration50:
|
|
14695
|
-
RMotionDuration500:
|
|
14696
|
-
RMotionEase:
|
|
14697
|
-
RMotionEaseIn:
|
|
14698
|
-
RMotionEaseInOut:
|
|
14699
|
-
RMotionEaseOut:
|
|
14700
|
-
RMotionLinear:
|
|
14701
|
-
ROverlay:
|
|
14702
|
-
RPrimary:
|
|
14703
|
-
RPrimaryHover:
|
|
14704
|
-
RPrimaryHovered:
|
|
14705
|
-
RShadow0:
|
|
14706
|
-
RShadow10:
|
|
14707
|
-
RShadow20:
|
|
14708
|
-
RShadow30:
|
|
14709
|
-
RShadow40:
|
|
14710
|
-
RShadowInset10:
|
|
14711
|
-
RShadowInset20:
|
|
14712
|
-
RSpace0:
|
|
14713
|
-
RSpace1:
|
|
14714
|
-
RSpace10:
|
|
14715
|
-
RSpace11:
|
|
14716
|
-
RSpace12:
|
|
14717
|
-
RSpace13:
|
|
14718
|
-
RSpace14:
|
|
14719
|
-
RSpace15:
|
|
14720
|
-
RSpace2:
|
|
14721
|
-
RSpace3:
|
|
14722
|
-
RSpace4:
|
|
14723
|
-
RSpace5:
|
|
14724
|
-
RSpace6:
|
|
14725
|
-
RSpace7:
|
|
14726
|
-
RSpace8:
|
|
14727
|
-
RSpace9:
|
|
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:
|
|
14730
|
-
RSurfaceDangerMuted:
|
|
14731
|
-
RSurfaceDark:
|
|
14732
|
-
RSurfaceDarkHover:
|
|
14733
|
-
RSurfaceDarkHovered:
|
|
14734
|
-
RSurfaceHover:
|
|
14735
|
-
RSurfaceHovered:
|
|
14736
|
-
RSurfaceInfo:
|
|
14737
|
-
RSurfaceInfoMuted:
|
|
14738
|
-
RSurfaceRaised:
|
|
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:
|
|
14741
|
-
RSurfaceSuccessMuted:
|
|
14742
|
-
|
|
14743
|
-
|
|
14744
|
-
|
|
14745
|
-
|
|
14746
|
-
|
|
14747
|
-
|
|
14748
|
-
|
|
14749
|
-
|
|
14750
|
-
|
|
14751
|
-
|
|
14752
|
-
|
|
14753
|
-
|
|
14754
|
-
|
|
14755
|
-
|
|
14756
|
-
|
|
14757
|
-
|
|
14758
|
-
|
|
14759
|
-
|
|
14760
|
-
|
|
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
|
-
},
|
|
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
|
|
15865
|
+
const yN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
15865
15866
|
__proto__: null,
|
|
15866
|
-
RIconColors:
|
|
15867
|
+
RIconColors: mN,
|
|
15867
15868
|
RIconNames: f,
|
|
15868
15869
|
RIconSprites: I3,
|
|
15869
15870
|
RIconSpritesAppend: V3
|
|
15870
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
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
|
-
},
|
|
15877
|
-
install:
|
|
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
|
-
|
|
15910
|
+
XN as default,
|
|
15910
15911
|
Kp as fsExclude,
|
|
15911
|
-
|
|
15912
|
-
|
|
15912
|
+
yN as icons,
|
|
15913
|
+
gN as install,
|
|
15913
15914
|
ro as lazy,
|
|
15914
|
-
|
|
15915
|
+
vN as tokens,
|
|
15915
15916
|
io as tooltip
|
|
15916
15917
|
};
|