@code-coaching/vuetiful 0.30.0 → 0.32.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/css/overrides/quasar.css +16 -28
- package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +4 -4
- package/dist/types/components/molecules/VCodeBlock.vue.d.ts +12 -12
- package/dist/types/components/molecules/VDrawer.vue.d.ts +4 -4
- package/dist/types/components/molecules/VRail/VRail.vue.d.ts +31 -27
- package/dist/types/utils/theme/VThemeSwitch.vue.d.ts +34 -35
- package/dist/vuetiful.es.mjs +1214 -1229
- package/dist/vuetiful.umd.cjs +32 -10
- package/package.json +1 -1
|
@@ -1,32 +1,6 @@
|
|
|
1
|
-
h1,
|
|
2
|
-
h2,
|
|
3
|
-
h3,
|
|
4
|
-
h4,
|
|
5
|
-
h5,
|
|
6
|
-
h6 {
|
|
7
|
-
@apply mb-4 md:mb-8;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
section.section {
|
|
11
|
-
@apply mb-6 md:mb-14;
|
|
12
|
-
}
|
|
13
|
-
header.header {
|
|
14
|
-
@apply mb-4 md:mb-10;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
summary {
|
|
18
|
-
cursor: pointer;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
1
|
html,
|
|
22
2
|
body,
|
|
23
3
|
#q-app {
|
|
24
|
-
/*
|
|
25
|
-
* This is done to prevent double scrollbars
|
|
26
|
-
*/
|
|
27
|
-
/* height: 100%; */
|
|
28
|
-
/* overflow: hidden; */
|
|
29
|
-
|
|
30
4
|
/*
|
|
31
5
|
* Reset several font properties to browser defaults
|
|
32
6
|
*/
|
|
@@ -283,8 +257,12 @@ body,
|
|
|
283
257
|
}
|
|
284
258
|
|
|
285
259
|
.q-date__calendar-item .q-btn--unelevated {
|
|
286
|
-
@apply !bg-surface-
|
|
287
|
-
@apply !text-surface-
|
|
260
|
+
@apply !bg-surface-800;
|
|
261
|
+
@apply !text-surface-200;
|
|
262
|
+
}
|
|
263
|
+
.dark .q-date__calendar-item .q-btn--unelevated {
|
|
264
|
+
@apply !bg-surface-200;
|
|
265
|
+
@apply !text-surface-800;
|
|
288
266
|
}
|
|
289
267
|
|
|
290
268
|
.q-date__navigation .q-btn {
|
|
@@ -323,3 +301,13 @@ body,
|
|
|
323
301
|
.q-field__native select:focus {
|
|
324
302
|
--tw-ring-color: transparent;
|
|
325
303
|
}
|
|
304
|
+
|
|
305
|
+
/* The teleporting of elements makes it go from top left to location -> turn it off */
|
|
306
|
+
.q-position-engine {
|
|
307
|
+
@apply transition-none;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.q-toolbar {
|
|
311
|
+
@apply bg-surface-300-700;
|
|
312
|
+
@apply text-surface-950-50;
|
|
313
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
interface RadioItemProps {
|
|
2
|
-
class
|
|
3
|
-
classActive
|
|
4
|
-
classHover
|
|
5
|
-
classDisabled
|
|
2
|
+
class?: string;
|
|
3
|
+
classActive?: string;
|
|
4
|
+
classHover?: string;
|
|
5
|
+
classDisabled?: string;
|
|
6
6
|
value: string | number | boolean | object;
|
|
7
7
|
}
|
|
8
8
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RadioItemProps>, {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
interface CodeBlockProps {
|
|
2
|
-
class
|
|
3
|
-
language
|
|
2
|
+
class?: string;
|
|
3
|
+
language?: string;
|
|
4
4
|
code: string;
|
|
5
|
-
fileName
|
|
6
|
-
preventOverflow
|
|
7
|
-
classHeader
|
|
8
|
-
classLanguage
|
|
9
|
-
classPre
|
|
10
|
-
classCode
|
|
11
|
-
classFileName
|
|
12
|
-
classButton
|
|
13
|
-
buttonText
|
|
14
|
-
buttonCopiedText
|
|
5
|
+
fileName?: string;
|
|
6
|
+
preventOverflow?: boolean;
|
|
7
|
+
classHeader?: string;
|
|
8
|
+
classLanguage?: string;
|
|
9
|
+
classPre?: string;
|
|
10
|
+
classCode?: string;
|
|
11
|
+
classFileName?: string;
|
|
12
|
+
classButton?: string;
|
|
13
|
+
buttonText?: string;
|
|
14
|
+
buttonCopiedText?: string;
|
|
15
15
|
}
|
|
16
16
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CodeBlockProps>, {
|
|
17
17
|
class: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
interface DrawerProps {
|
|
2
|
-
classBackdrop
|
|
3
|
-
classDrawer
|
|
4
|
-
labelledby
|
|
5
|
-
describedby
|
|
2
|
+
classBackdrop?: string;
|
|
3
|
+
classDrawer?: string;
|
|
4
|
+
labelledby?: string;
|
|
5
|
+
describedby?: string;
|
|
6
6
|
}
|
|
7
7
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<DrawerProps>, {
|
|
8
8
|
classBackdrop: string;
|
|
@@ -1,30 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
class
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
class: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
classItemActive: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
classItemHover: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
}>>, {
|
|
1
|
+
interface RailProps {
|
|
2
|
+
class?: string;
|
|
3
|
+
classItemActive?: string;
|
|
4
|
+
classItemHover?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RailProps>, {
|
|
7
|
+
class: string;
|
|
8
|
+
classItemActive: string;
|
|
9
|
+
classItemHover: string;
|
|
10
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RailProps>, {
|
|
11
|
+
class: string;
|
|
12
|
+
classItemActive: string;
|
|
13
|
+
classItemHover: string;
|
|
14
|
+
}>>>, {
|
|
28
15
|
class: string;
|
|
29
16
|
classItemActive: string;
|
|
30
17
|
classItemHover: string;
|
|
@@ -32,6 +19,23 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
32
19
|
default?(_: {}): any;
|
|
33
20
|
}>;
|
|
34
21
|
export default _default;
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithDefaults<P, D> = {
|
|
32
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
+
default: D[K];
|
|
34
|
+
}> : P[K];
|
|
35
|
+
};
|
|
36
|
+
type __VLS_Prettify<T> = {
|
|
37
|
+
[K in keyof T]: T[K];
|
|
38
|
+
} & {};
|
|
35
39
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
40
|
new (): {
|
|
37
41
|
$slots: S;
|
|
@@ -1,41 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
class
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
classItem:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
class: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
classButton: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
classItem: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
classItemActive: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
}>>, {
|
|
1
|
+
interface ThemeSwitchProps {
|
|
2
|
+
class?: string;
|
|
3
|
+
classButton?: string;
|
|
4
|
+
classItem?: string;
|
|
5
|
+
classItemActive?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ThemeSwitchProps>, {
|
|
8
|
+
class: string;
|
|
9
|
+
classButton: string;
|
|
10
|
+
classItem: string;
|
|
11
|
+
classItemActive: string;
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ThemeSwitchProps>, {
|
|
13
|
+
class: string;
|
|
14
|
+
classButton: string;
|
|
15
|
+
classItem: string;
|
|
16
|
+
classItemActive: string;
|
|
17
|
+
}>>>, {
|
|
36
18
|
class: string;
|
|
37
19
|
classButton: string;
|
|
38
20
|
classItem: string;
|
|
39
21
|
classItemActive: string;
|
|
40
22
|
}, {}>;
|
|
41
23
|
export default _default;
|
|
24
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
+
} : {
|
|
29
|
+
type: import('vue').PropType<T[K]>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|