sprintify-ui 0.0.129 → 0.0.131

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,47 +1,46 @@
1
- import { PropType } from 'vue';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
- contrast: {
4
- default: string;
5
- type: PropType<"high" | "low">;
6
- };
7
- color: {
8
- default: string;
9
- type: PropType<string>;
10
- };
11
- size: {
12
- default: string;
13
- type: PropType<"base" | "lg">;
14
- };
15
- icon: {
16
- default: undefined;
17
- type: PropType<string | undefined>;
18
- };
19
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
- contrast: {
21
- default: string;
22
- type: PropType<"high" | "low">;
23
- };
24
- color: {
25
- default: string;
26
- type: PropType<string>;
27
- };
28
- size: {
29
- default: string;
30
- type: PropType<"base" | "lg">;
31
- };
32
- icon: {
33
- default: undefined;
34
- type: PropType<string | undefined>;
35
- };
36
- }>>, {
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ contrast: 'low' | 'high';
3
+ color: 'gray' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink' | string;
4
+ size: 'base' | 'lg';
5
+ icon?: string | undefined;
6
+ }>, {
7
+ contrast: string;
8
+ color: string;
9
+ size: string;
10
+ icon: undefined;
11
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
+ contrast: 'low' | 'high';
13
+ color: 'gray' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink' | string;
14
+ size: 'base' | 'lg';
15
+ icon?: string | undefined;
16
+ }>, {
17
+ contrast: string;
37
18
  color: string;
38
- icon: string | undefined;
39
- size: "base" | "lg";
40
- contrast: "high" | "low";
19
+ size: string;
20
+ icon: undefined;
21
+ }>>>, {
22
+ color: 'gray' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink' | string;
23
+ icon: string;
24
+ size: 'base' | 'lg';
25
+ contrast: 'low' | 'high';
41
26
  }>, {
42
27
  default: (_: {}) => any;
43
28
  }>;
44
29
  export default _default;
30
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
+ type __VLS_TypePropsToRuntimeProps<T> = {
32
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
33
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
34
+ } : {
35
+ type: import('vue').PropType<T[K]>;
36
+ required: true;
37
+ };
38
+ };
39
+ type __VLS_WithDefaults<P, D> = {
40
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
41
+ default: D[K];
42
+ } : P[K];
43
+ };
45
44
  type __VLS_WithTemplateSlots<T, S> = T & {
46
45
  new (): {
47
46
  $slots: S;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.129",
3
+ "version": "0.0.131",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -10,17 +10,12 @@
10
10
  </template>
11
11
 
12
12
  <script lang="ts" setup>
13
- import { PropType } from 'vue';
14
13
  import { BaseIcon } from '.';
15
14
 
16
- const props = defineProps({
17
- contrast: {
18
- default: 'high',
19
- type: String as PropType<'low' | 'high'>,
20
- },
21
- color: {
22
- default: 'gray',
23
- type: String as PropType<
15
+ const props = withDefaults(
16
+ defineProps<{
17
+ contrast: 'low' | 'high';
18
+ color:
24
19
  | 'gray'
25
20
  | 'red'
26
21
  | 'orange'
@@ -30,18 +25,17 @@ const props = defineProps({
30
25
  | 'indigo'
31
26
  | 'purple'
32
27
  | 'pink'
33
- | string
34
- >,
35
- },
36
- size: {
37
- default: 'base',
38
- type: String as PropType<'base' | 'lg'>,
39
- },
40
- icon: {
41
- default: undefined,
42
- type: String as PropType<string | undefined>,
43
- },
44
- });
28
+ | string;
29
+ size: 'base' | 'lg';
30
+ icon?: string;
31
+ }>(),
32
+ {
33
+ contrast: 'high',
34
+ color: 'gray',
35
+ size: 'base',
36
+ icon: undefined,
37
+ }
38
+ );
45
39
 
46
40
  const colorClasses = computed(() => {
47
41
  if (props.color == 'gray') {
@@ -105,7 +99,10 @@ const colorClasses = computed(() => {
105
99
  });
106
100
 
107
101
  const colorStyle = computed((): Record<string, string> => {
108
- if (props.color.startsWith('#') || props.color.startsWith('rgb')) {
102
+ if (
103
+ props.color &&
104
+ (props.color.startsWith('#') || props.color.startsWith('rgb'))
105
+ ) {
109
106
  let textColor = 'white';
110
107
 
111
108
  if (props.contrast == 'low') {
@@ -121,7 +121,8 @@
121
121
  <div class="z-10 hidden xl:fixed xl:inset-y-0 xl:flex xl:w-64 xl:flex-col">
122
122
  <!-- Sidebar component, swap this element with another sidebar if you like -->
123
123
  <div
124
- class="flex min-h-0 flex-1 flex-col"
124
+ data-scroll-lock-scrollable
125
+ class="flex min-h-0 flex-1 flex-col overflow-y-auto"
125
126
  :class="[dark ? 'bg-slate-800' : 'bg-white shadow']"
126
127
  >
127
128
  <div