@code-coaching/vuetiful 0.30.0 → 0.31.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.
@@ -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-900;
287
- @apply !text-surface-50;
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: string;
3
- classActive: string;
4
- classHover: string;
5
- classDisabled: string;
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: string;
3
- language: string;
2
+ class?: string;
3
+ language?: string;
4
4
  code: string;
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;
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@code-coaching/vuetiful",
3
3
  "type": "module",
4
- "version": "0.30.0",
4
+ "version": "0.31.0",
5
5
  "license": "MIT",
6
6
  "scripts": {
7
7
  "dev": "vite",