@bagelink/vue 1.15.80 → 1.15.82
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/components/Card.vue.d.ts +8 -0
- package/dist/components/Card.vue.d.ts.map +1 -1
- package/dist/components/calendar/CalendarPopover.vue.d.ts +18 -0
- package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
- package/dist/index.cjs +30 -30
- package/dist/index.mjs +1008 -997
- package/package.json +1 -1
- package/src/components/Card.vue +22 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { GradientDirProp, GradientProp } from '..';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
label?: string;
|
|
3
4
|
/** Card header title. Pairs with the `#header-action` slot (e.g. a "View all"
|
|
@@ -13,6 +14,13 @@ type __VLS_Props = {
|
|
|
13
14
|
overflowX?: boolean;
|
|
14
15
|
overflowY?: boolean;
|
|
15
16
|
frame?: boolean;
|
|
17
|
+
/** Theme tone used as the gradient's first stop (e.g. `color="green"`). */
|
|
18
|
+
color?: string;
|
|
19
|
+
/** Paint the card with a gradient. `true` = auto (a darker shade of `color`);
|
|
20
|
+
a tone list like "green" or "blue purple pink" sets explicit stops. */
|
|
21
|
+
gradient?: GradientProp;
|
|
22
|
+
/** Gradient direction — a named dir (`to-br`) or an angle in degrees. */
|
|
23
|
+
gradientDir?: GradientDirProp;
|
|
16
24
|
bg?: 'gray' | 'light' | 'dark' | 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'white' | 'transparent';
|
|
17
25
|
};
|
|
18
26
|
declare function __VLS_template(): {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../src/components/Card.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../src/components/Card.vue"],"names":[],"mappings":"AAsJA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AAIlE,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;2DAGuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,2EAA2E;IAC3E,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;8EAC0E;IAC1E,QAAQ,CAAC,EAAE,YAAY,CAAA;IACvB,yEAAyE;IACzE,WAAW,CAAC,EAAE,eAAe,CAAA;IAC7B,EAAE,CAAC,EACA,MAAM,GACN,OAAO,GACP,MAAM,GACN,SAAS,GACT,WAAW,GACX,SAAS,GACT,QAAQ,GACR,SAAS,GACT,MAAM,GACN,OAAO,GACP,aAAa,CAAA;CAChB,CAAC;AA4BF,iBAAS,cAAc;WAoFT,OAAO,IAA6B;;wBAZtB,GAAG;iCACM,GAAG;yBACX,GAAG;;;;EAe/B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,kSAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -33,6 +33,9 @@ declare function __VLS_template(): {
|
|
|
33
33
|
readonly overflowX?: boolean | undefined;
|
|
34
34
|
readonly overflowY?: boolean | undefined;
|
|
35
35
|
readonly frame?: boolean | undefined;
|
|
36
|
+
readonly color?: string | undefined;
|
|
37
|
+
readonly gradient?: import('../..').GradientProp | undefined;
|
|
38
|
+
readonly gradientDir?: import('../..').GradientDirProp | undefined;
|
|
36
39
|
readonly bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent" | undefined;
|
|
37
40
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
38
41
|
$attrs: import('vue').Attrs;
|
|
@@ -58,6 +61,9 @@ declare function __VLS_template(): {
|
|
|
58
61
|
overflowX?: boolean;
|
|
59
62
|
overflowY?: boolean;
|
|
60
63
|
frame?: boolean;
|
|
64
|
+
color?: string;
|
|
65
|
+
gradient?: import('../..').GradientProp;
|
|
66
|
+
gradientDir?: import('../..').GradientDirProp;
|
|
61
67
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
62
68
|
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
63
69
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -90,6 +96,9 @@ declare function __VLS_template(): {
|
|
|
90
96
|
overflowX?: boolean;
|
|
91
97
|
overflowY?: boolean;
|
|
92
98
|
frame?: boolean;
|
|
99
|
+
color?: string;
|
|
100
|
+
gradient?: import('../..').GradientProp;
|
|
101
|
+
gradientDir?: import('../..').GradientDirProp;
|
|
93
102
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
94
103
|
}> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
95
104
|
$slots: {
|
|
@@ -123,6 +132,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
123
132
|
readonly overflowX?: boolean | undefined;
|
|
124
133
|
readonly overflowY?: boolean | undefined;
|
|
125
134
|
readonly frame?: boolean | undefined;
|
|
135
|
+
readonly color?: string | undefined;
|
|
136
|
+
readonly gradient?: import('../..').GradientProp | undefined;
|
|
137
|
+
readonly gradientDir?: import('../..').GradientDirProp | undefined;
|
|
126
138
|
readonly bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent" | undefined;
|
|
127
139
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
128
140
|
$attrs: import('vue').Attrs;
|
|
@@ -148,6 +160,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
148
160
|
overflowX?: boolean;
|
|
149
161
|
overflowY?: boolean;
|
|
150
162
|
frame?: boolean;
|
|
163
|
+
color?: string;
|
|
164
|
+
gradient?: import('../..').GradientProp;
|
|
165
|
+
gradientDir?: import('../..').GradientDirProp;
|
|
151
166
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
152
167
|
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
153
168
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -180,6 +195,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
180
195
|
overflowX?: boolean;
|
|
181
196
|
overflowY?: boolean;
|
|
182
197
|
frame?: boolean;
|
|
198
|
+
color?: string;
|
|
199
|
+
gradient?: import('../..').GradientProp;
|
|
200
|
+
gradientDir?: import('../..').GradientDirProp;
|
|
183
201
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
184
202
|
}> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
185
203
|
$slots: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CalendarPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/CalendarPopover.vue"],"names":[],"mappings":"AAuGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,aAAa,CAAC,EAAE,WAAW,CAAA;IAC3B,QAAQ,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAC;AA+CF,iBAAS,YAAY,SAEpB;AAID,iBAAS,cAAc;WA0DT,OAAO,IAA6B;;;;;YAXhB,GAAG
|
|
1
|
+
{"version":3,"file":"CalendarPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/CalendarPopover.vue"],"names":[],"mappings":"AAuGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,aAAa,CAAC,EAAE,WAAW,CAAA;IAC3B,QAAQ,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAC;AA+CF,iBAAS,YAAY,SAEpB;AAID,iBAAS,cAAc;WA0DT,OAAO,IAA6B;;;;;YAXhB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAqDukkB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;EArCjukB;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuBulkB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;OAfhukB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|