@hkdigital/lib-sveltekit 0.2.20 → 0.2.22

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,39 +1,32 @@
1
1
 
2
- @define-mixin all_layout {
2
+ .page-centered-xl {
3
+ @apply max-w-xl px-20p mb-40p;
4
+ @apply flex flex-col;
3
5
 
4
- .page-centered-xl {
5
- @apply max-w-xl px-20p mb-40p;
6
- @apply flex flex-col;
7
-
8
- @apply self-center;
9
- @apply w-full;
10
- }
11
-
12
- .page-full {
13
- @apply flex flex-col;
14
-
15
- @apply w-full h-full;
16
- }
6
+ @apply self-center;
7
+ @apply w-full;
8
+ }
17
9
 
18
- .page-row {
19
- @apply w-full flex flex-col;
20
- }
10
+ .page-full {
11
+ @apply flex flex-col;
21
12
 
13
+ @apply w-full h-full;
14
+ }
22
15
 
23
- .page-ui-margins
24
- {
25
- @apply mt-120p;
26
- @apply mr-20p;
27
- @apply mb-120p;
28
- @apply ml-20p;
29
- }
16
+ .page-row {
17
+ @apply w-full flex flex-col;
18
+ }
30
19
 
31
- .page-ui-margins-equal
32
- {
33
- @apply mt-20p;
34
- @apply mr-20p;
35
- @apply mb-20p;
36
- @apply ml-20p;
37
- }
20
+ .page-ui-margins {
21
+ @apply mt-120p;
22
+ @apply mr-20p;
23
+ @apply mb-120p;
24
+ @apply ml-20p;
25
+ }
38
26
 
27
+ .page-ui-margins-equal {
28
+ @apply mt-20p;
29
+ @apply mr-20p;
30
+ @apply mb-20p;
31
+ @apply ml-20p;
39
32
  }
@@ -1,53 +1,32 @@
1
-
2
- @define-mixin on_surface_dark {
3
-
4
- & .h1 {
5
- color: rgb(var(--color-primary-contrast-light));
6
- }
7
-
8
- & .p {
9
- color: rgb(var(--color-primary-contrast-light));
10
- }
11
-
12
- & .a {
13
- color: rgb(var(--color-primary-contrast-light));
14
- }
15
-
16
- & svg {
17
- color: rgb(var(--color-primary-contrast-light));
18
- }
19
-
1
+ & .h1 {
2
+ color: var(--color-primary-contrast-light);
20
3
  }
21
4
 
22
- @define-mixin on_surface_light {
23
-
24
- & .h1 {
25
- color: rgb(var(--color-surface-950));
26
- }
27
-
28
- & .p {
29
- color: rgb(var(--color-surface-500));
30
- }
5
+ & .p {
6
+ color: var(--color-primary-contrast-light);
7
+ }
31
8
 
32
- & .a {
33
- color: rgb(var(--color-surface-500));
34
- }
9
+ & .a {
10
+ color: var(--color-primary-contrast-light);
11
+ }
35
12
 
36
- & svg {
37
- color: rgb(var(--color-surface-500));
38
- }
39
-
13
+ & svg {
14
+ color: var(--color-primary-contrast-light);
40
15
  }
41
16
 
42
- @define-mixin all_on_colors {
17
+ & .h1 {
18
+ color: var(--color-surface-950);
19
+ }
43
20
 
44
- /* .on-primary-dark < :not('cancel-on-primary-dark') */
45
- .on-primary-dark {
46
- @mixin on_surface_dark;
47
- }
21
+ & .p {
22
+ color: var(--color-surface-500);
23
+ }
48
24
 
49
- .on-primary-light {
50
- @mixin on_surface_light;
51
- }
25
+ & .a {
26
+ color: var(--color-surface-500);
27
+ }
52
28
 
29
+ & svg {
30
+ color: var(--color-surface-500);
53
31
  }
32
+
@@ -1,11 +1,4 @@
1
1
  /*@import "./global/vars.css";*/
2
- /*@import "./global/on-colors.css";*/
2
+ @import "./global/on-colors.css";
3
3
  @import './global/layout.css';
4
- /*@import "./global/text.css";*/
5
-
6
- [data-theme='hkdev'] {
7
- /* @mixin all_vars;*/
8
- /* @mixin all_on_colors;*/
9
- @mixin all_layout;
10
- /* @mixin all_text;*/
11
- }
4
+ /*@import "./global/text.css";*/
@@ -1,15 +1,12 @@
1
- import theme from '../hkdev/theme.js';
2
-
3
1
  import { theme as themeStore } from '../../stores/index.js';
4
2
 
5
3
  /**
6
4
  * Set meta them color for the current theme
7
5
  */
8
6
  export function setMetaThemeColor() {
9
- const props = theme.properties;
10
-
11
- themeStore.setMetaThemeColor(`rgb( ${props['--color-surface-950']})`);
7
+ const surfaceColor = getComputedStyle(document.documentElement)
8
+ .getPropertyValue('--color-surface-950')
9
+ .trim();
12
10
 
13
- // setMetaThemeColorDark(`rgb( ${props['--color-primary-950']})`);
14
- // setMetaThemeColorBase(`rgb( ${props['--color-primary-50']})`);
11
+ themeStore.setMetaThemeColor(`rgb(${surfaceColor})`);
15
12
  }
@@ -0,0 +1,219 @@
1
+ [data-theme='hkdev'] {
2
+ --text-scaling: 1.067;
3
+ --base-font-color: var(--color-surface-950);
4
+ --base-font-color-dark: var(--color-surface-50);
5
+ --base-font-family: mulish, system-ui, sans-serif;
6
+ --base-font-size: inherit;
7
+ --base-line-height: inherit;
8
+ --base-font-weight: normal;
9
+ --base-font-style: normal;
10
+ --base-letter-spacing: 0em;
11
+ --heading-font-color: var(--color-surface-950);
12
+ --heading-font-color-dark: var(--color-surface-50);
13
+ --heading-font-family: 'Guyot-Sans', system-ui, sans-serif;
14
+ --heading-font-weight: 900;
15
+ --heading-font-style: normal;
16
+ --heading-letter-spacing: inherit;
17
+ --anchor-font-color: var(--color-primary-500);
18
+ --anchor-font-color-dark: var(--color-primary-500);
19
+ --anchor-font-family: inherit;
20
+ --anchor-font-size: inherit;
21
+ --anchor-line-height: inherit;
22
+ --anchor-font-weight: inherit;
23
+ --anchor-font-style: inherit;
24
+ --anchor-letter-spacing: inherit;
25
+ --anchor-text-decoration: none;
26
+ --anchor-text-decoration-hover: underline;
27
+ --anchor-text-decoration-active: none;
28
+ --anchor-text-decoration-focus: none;
29
+ --spacing: 0.25rem;
30
+ --radius-base: 6px;
31
+ --radius-container: 12px;
32
+ --default-border-width: 1px;
33
+ --default-divide-width: 1px;
34
+ --default-ring-width: 1px;
35
+ --body-background-color: var(--color-surface-50);
36
+ --body-background-color-dark: var(--color-surface-950);
37
+
38
+ /* Primary Colors */
39
+ --color-primary-50: oklch(100% 0 none);
40
+ --color-primary-100: oklch(89.21% 0.06 344.59deg);
41
+ --color-primary-200: oklch(79.1% 0.13 346.59deg);
42
+ --color-primary-300: oklch(70.14% 0.19 348.99deg);
43
+ --color-primary-400: oklch(63.52% 0.23 352.85deg);
44
+ --color-primary-500: oklch(59.83% 0.24 358.78deg);
45
+ --color-primary-600: oklch(55.33% 0.22 358.81deg);
46
+ --color-primary-700: oklch(50.94% 0.2 359.11deg);
47
+ --color-primary-800: oklch(46.26% 0.18 359.76deg);
48
+ --color-primary-900: oklch(41.75% 0.16 0.47deg);
49
+ --color-primary-950: oklch(37.02% 0.14 1.33deg);
50
+ --color-primary-contrast-dark: var(--color-primary-950);
51
+ --color-primary-contrast-light: var(--color-primary-50);
52
+ --color-primary-contrast-50: var(--color-primary-contrast-dark);
53
+ --color-primary-contrast-100: var(--color-primary-contrast-dark);
54
+ --color-primary-contrast-200: var(--color-primary-contrast-dark);
55
+ --color-primary-contrast-300: var(--color-primary-contrast-dark);
56
+ --color-primary-contrast-400: var(--color-primary-contrast-light);
57
+ --color-primary-contrast-500: var(--color-primary-contrast-light);
58
+ --color-primary-contrast-600: var(--color-primary-contrast-light);
59
+ --color-primary-contrast-700: var(--color-primary-contrast-light);
60
+ --color-primary-contrast-800: var(--color-primary-contrast-light);
61
+ --color-primary-contrast-900: var(--color-primary-contrast-light);
62
+ --color-primary-contrast-950: var(--color-primary-contrast-light);
63
+
64
+ /* Secondary Colors */
65
+ --color-secondary-50: oklch(100% 0 none);
66
+ --color-secondary-100: oklch(92.02% 0.04 56.93deg);
67
+ --color-secondary-200: oklch(84.06% 0.08 54.85deg);
68
+ --color-secondary-300: oklch(76.66% 0.12 53.95deg);
69
+ --color-secondary-400: oklch(69.69% 0.15 50.67deg);
70
+ --color-secondary-500: oklch(63.83% 0.18 44.57deg);
71
+ --color-secondary-600: oklch(60.17% 0.18 43.16deg);
72
+ --color-secondary-700: oklch(56.48% 0.17 41.6deg);
73
+ --color-secondary-800: oklch(52.69% 0.16 40.52deg);
74
+ --color-secondary-900: oklch(48.91% 0.15 38.6deg);
75
+ --color-secondary-950: oklch(45.09% 0.15 36.44deg);
76
+ --color-secondary-contrast-dark: var(--color-secondary-950);
77
+ --color-secondary-contrast-light: var(--color-secondary-50);
78
+ --color-secondary-contrast-50: var(--color-secondary-contrast-dark);
79
+ --color-secondary-contrast-100: var(--color-secondary-contrast-dark);
80
+ --color-secondary-contrast-200: var(--color-secondary-contrast-dark);
81
+ --color-secondary-contrast-300: var(--color-secondary-contrast-dark);
82
+ --color-secondary-contrast-400: var(--color-secondary-contrast-light);
83
+ --color-secondary-contrast-500: var(--color-secondary-contrast-light);
84
+ --color-secondary-contrast-600: var(--color-secondary-contrast-light);
85
+ --color-secondary-contrast-700: var(--color-secondary-contrast-light);
86
+ --color-secondary-contrast-800: var(--color-secondary-contrast-light);
87
+ --color-secondary-contrast-900: var(--color-secondary-contrast-light);
88
+ --color-secondary-contrast-950: var(--color-secondary-contrast-light);
89
+
90
+ /* Tertiary Colors */
91
+ --color-tertiary-50: oklch(100% 0 none);
92
+ --color-tertiary-100: oklch(91.02% 0.03 239.84deg);
93
+ --color-tertiary-200: oklch(81.89% 0.07 242.23deg);
94
+ --color-tertiary-300: oklch(73.25% 0.1 243.03deg);
95
+ --color-tertiary-400: oklch(64.86% 0.14 246.03deg);
96
+ --color-tertiary-500: oklch(57.51% 0.16 250.54deg);
97
+ --color-tertiary-600: oklch(53.76% 0.16 252.89deg);
98
+ --color-tertiary-700: oklch(49.99% 0.16 255.29deg);
99
+ --color-tertiary-800: oklch(46.26% 0.16 257.75deg);
100
+ --color-tertiary-900: oklch(42.46% 0.16 260.05deg);
101
+ --color-tertiary-950: oklch(38.66% 0.16 262.13deg);
102
+ --color-tertiary-contrast-dark: var(--color-tertiary-950);
103
+ --color-tertiary-contrast-light: var(--color-tertiary-50);
104
+ --color-tertiary-contrast-50: var(--color-tertiary-contrast-dark);
105
+ --color-tertiary-contrast-100: var(--color-tertiary-contrast-dark);
106
+ --color-tertiary-contrast-200: var(--color-tertiary-contrast-dark);
107
+ --color-tertiary-contrast-300: var(--color-tertiary-contrast-dark);
108
+ --color-tertiary-contrast-400: var(--color-tertiary-contrast-light);
109
+ --color-tertiary-contrast-500: var(--color-tertiary-contrast-light);
110
+ --color-tertiary-contrast-600: var(--color-tertiary-contrast-light);
111
+ --color-tertiary-contrast-700: var(--color-tertiary-contrast-light);
112
+ --color-tertiary-contrast-800: var(--color-tertiary-contrast-light);
113
+ --color-tertiary-contrast-900: var(--color-tertiary-contrast-light);
114
+ --color-tertiary-contrast-950: var(--color-tertiary-contrast-light);
115
+
116
+ /* Success Colors */
117
+ --color-success-50: oklch(100% 0 none);
118
+ --color-success-100: oklch(92.84% 0.04 120.75deg);
119
+ --color-success-200: oklch(85.91% 0.08 122.19deg);
120
+ --color-success-300: oklch(78.79% 0.12 123.79deg);
121
+ --color-success-400: oklch(72.08% 0.15 125.47deg);
122
+ --color-success-500: oklch(65.33% 0.17 127.94deg);
123
+ --color-success-600: oklch(60.9% 0.16 127.69deg);
124
+ --color-success-700: oklch(56.39% 0.14 127.39deg);
125
+ --color-success-800: oklch(51.72% 0.13 127.41deg);
126
+ --color-success-900: oklch(47.01% 0.12 127.01deg);
127
+ --color-success-950: oklch(42.19% 0.1 126.49deg);
128
+ --color-success-contrast-dark: var(--color-success-950);
129
+ --color-success-contrast-light: var(--color-success-50);
130
+ --color-success-contrast-50: var(--color-success-contrast-dark);
131
+ --color-success-contrast-100: var(--color-success-contrast-dark);
132
+ --color-success-contrast-200: var(--color-success-contrast-dark);
133
+ --color-success-contrast-300: var(--color-success-contrast-dark);
134
+ --color-success-contrast-400: var(--color-success-contrast-dark);
135
+ --color-success-contrast-500: var(--color-success-contrast-light);
136
+ --color-success-contrast-600: var(--color-success-contrast-light);
137
+ --color-success-contrast-700: var(--color-success-contrast-light);
138
+ --color-success-contrast-800: var(--color-success-contrast-light);
139
+ --color-success-contrast-900: var(--color-success-contrast-light);
140
+ --color-success-contrast-950: var(--color-success-contrast-light);
141
+
142
+ /* Warning Colors */
143
+ --color-warning-50: oklch(100% 0 none);
144
+ --color-warning-100: oklch(94.18% 0.04 94.27deg);
145
+ --color-warning-200: oklch(88.37% 0.08 95.33deg);
146
+ --color-warning-300: oklch(82.58% 0.11 94.03deg);
147
+ --color-warning-400: oklch(77.04% 0.13 93.57deg);
148
+ --color-warning-500: oklch(71.79% 0.14 90.64deg);
149
+ --color-warning-600: oklch(67.54% 0.14 90.18deg);
150
+ --color-warning-700: oklch(63.12% 0.13 88.36deg);
151
+ --color-warning-800: oklch(58.72% 0.12 87.66deg);
152
+ --color-warning-900: oklch(54.14% 0.11 85.27deg);
153
+ --color-warning-950: oklch(49.57% 0.1 84.14deg);
154
+ --color-warning-contrast-dark: var(--color-warning-950);
155
+ --color-warning-contrast-light: var(--color-warning-50);
156
+ --color-warning-contrast-50: var(--color-warning-contrast-dark);
157
+ --color-warning-contrast-100: var(--color-warning-contrast-dark);
158
+ --color-warning-contrast-200: var(--color-warning-contrast-dark);
159
+ --color-warning-contrast-300: var(--color-warning-contrast-dark);
160
+ --color-warning-contrast-400: var(--color-warning-contrast-dark);
161
+ --color-warning-contrast-500: var(--color-warning-contrast-light);
162
+ --color-warning-contrast-600: var(--color-warning-contrast-light);
163
+ --color-warning-contrast-700: var(--color-warning-contrast-light);
164
+ --color-warning-contrast-800: var(--color-warning-contrast-light);
165
+ --color-warning-contrast-900: var(--color-warning-contrast-light);
166
+ --color-warning-contrast-950: var(--color-warning-contrast-light);
167
+
168
+ /* Error Colors */
169
+ --color-error-50: oklch(100% 0 none);
170
+ --color-error-100: oklch(90.1% 0.04 12.28deg);
171
+ --color-error-200: oklch(80.53% 0.09 12.75deg);
172
+ --color-error-300: oklch(71.54% 0.14 14.79deg);
173
+ --color-error-400: oklch(63.85% 0.18 17.92deg);
174
+ --color-error-500: oklch(58.16% 0.21 22.85deg);
175
+ --color-error-600: oklch(53.02% 0.19 22.7deg);
176
+ --color-error-700: oklch(47.67% 0.17 22.71deg);
177
+ --color-error-800: oklch(42.25% 0.15 22.49deg);
178
+ --color-error-900: oklch(36.57% 0.13 22.46deg);
179
+ --color-error-950: oklch(30.75% 0.11 22.06deg);
180
+ --color-error-contrast-dark: var(--color-error-950);
181
+ --color-error-contrast-light: var(--color-error-50);
182
+ --color-error-contrast-50: var(--color-error-contrast-dark);
183
+ --color-error-contrast-100: var(--color-error-contrast-dark);
184
+ --color-error-contrast-200: var(--color-error-contrast-dark);
185
+ --color-error-contrast-300: var(--color-error-contrast-dark);
186
+ --color-error-contrast-400: var(--color-error-contrast-dark);
187
+ --color-error-contrast-500: var(--color-error-contrast-light);
188
+ --color-error-contrast-600: var(--color-error-contrast-light);
189
+ --color-error-contrast-700: var(--color-error-contrast-light);
190
+ --color-error-contrast-800: var(--color-error-contrast-light);
191
+ --color-error-contrast-900: var(--color-error-contrast-light);
192
+ --color-error-contrast-950: var(--color-error-contrast-light);
193
+
194
+ /* Surface Colors */
195
+ --color-surface-50: oklch(100% 0 none);
196
+ --color-surface-100: oklch(89.43% 0.04 261.71deg);
197
+ --color-surface-200: oklch(78.91% 0.09 261.69deg);
198
+ --color-surface-300: oklch(68.77% 0.13 260.58deg);
199
+ --color-surface-400: oklch(59% 0.18 260.54deg);
200
+ --color-surface-500: oklch(50.57% 0.22 261.54deg);
201
+ --color-surface-600: oklch(46.58% 0.2 261.41deg);
202
+ --color-surface-700: oklch(42.51% 0.18 261.24deg);
203
+ --color-surface-800: oklch(38.37% 0.16 261.17deg);
204
+ --color-surface-900: oklch(34.11% 0.13 260.96deg);
205
+ --color-surface-950: oklch(29.76% 0.11 260.7deg);
206
+ --color-surface-contrast-dark: var(--color-surface-950);
207
+ --color-surface-contrast-light: var(--color-surface-50);
208
+ --color-surface-contrast-50: var(--color-surface-contrast-dark);
209
+ --color-surface-contrast-100: var(--color-surface-contrast-dark);
210
+ --color-surface-contrast-200: var(--color-surface-contrast-dark);
211
+ --color-surface-contrast-300: var(--color-surface-contrast-dark);
212
+ --color-surface-contrast-400: var(--color-surface-contrast-light);
213
+ --color-surface-contrast-500: var(--color-surface-contrast-light);
214
+ --color-surface-contrast-600: var(--color-surface-contrast-light);
215
+ --color-surface-contrast-700: var(--color-surface-contrast-light);
216
+ --color-surface-contrast-800: var(--color-surface-contrast-light);
217
+ --color-surface-contrast-900: var(--color-surface-contrast-light);
218
+ --color-surface-contrast-950: var(--color-surface-contrast-light);
219
+ }
@@ -1 +1 @@
1
- export { default as hkdev } from "./hkdev/theme.js";
1
+ export {};
@@ -51,22 +51,22 @@ export function customUtilitiesPlugin({ addUtilities, theme }) {
51
51
 
52
52
  const textColorUtilities = {
53
53
  '.text-base-color': {
54
- color: 'rgb( var(--base-font-color) )'
54
+ color: 'var(--base-font-color)'
55
55
  },
56
56
  '.text-base-color-dark': {
57
- color: 'rgb( var(--base-font-color-dark) )'
57
+ color: 'var(--base-font-color-dark)'
58
58
  },
59
59
  '.text-heading-color': {
60
- color: 'rgb( var(--heading-font-color) )'
60
+ color: 'var(--heading-font-color)'
61
61
  },
62
62
  '.text-heading-color-dark': {
63
- color: 'rgb( var(--heading-font-color-dark) )'
63
+ color: 'var(--heading-font-color-dark)'
64
64
  },
65
65
  '.text-ui-color': {
66
- color: 'rgb( var(--ui-font-color, var(--base-font-color)) )'
66
+ color: 'var(--ui-font-color, var(--base-font-color))'
67
67
  },
68
68
  '.text-ui-color-dark': {
69
- color: 'rgb( var(--ui-font-color-dark, var(--base-font-color-dark)) )'
69
+ color: 'var(--ui-font-color-dark, var(--base-font-color-dark))'
70
70
  }
71
71
  };
72
72
 
@@ -142,12 +142,12 @@ function generateTypographyUtilities(theme) {
142
142
  fontStyle: 'var(--heading-font-style)',
143
143
  fontWeight: 'var(--heading-font-weight)',
144
144
  letterSpacing: 'var(--heading-letter-spacing)',
145
- color: 'rgb(var(--heading-font-color))'
145
+ color: 'var(--heading-font-color)'
146
146
  };
147
147
 
148
148
  propertiesDark = {
149
149
  ...properties,
150
- color: 'rgb(var(--heading-font-color-dark))'
150
+ color: 'var(--heading-font-color-dark)'
151
151
  };
152
152
  } else if (key.startsWith('base-')) {
153
153
  properties = {
@@ -155,12 +155,12 @@ function generateTypographyUtilities(theme) {
155
155
  fontFamily: 'var(--base-font-family)',
156
156
  fontWeight: 'var(--base-font-weight)',
157
157
  letterSpacing: 'var(--base-letter-spacing)',
158
- color: 'rgb(var(--base-font-color))'
158
+ color: 'var(--base-font-color)'
159
159
  };
160
160
 
161
161
  propertiesDark = {
162
162
  ...properties,
163
- color: 'rgb(var(--base-font-color-dark))'
163
+ color: 'var(--base-font-color-dark)'
164
164
  };
165
165
  } else if (key.startsWith('ui-')) {
166
166
  properties = {
@@ -168,12 +168,12 @@ function generateTypographyUtilities(theme) {
168
168
  fontFamily: 'var(--ui-font-family, var(--base-font-family))',
169
169
  fontWeight: 'var(--ui-font-weight)',
170
170
  letterSpacing: 'var(--ui-letter-spacing, var(--base-letter-spacing))',
171
- color: 'rgb(var(--ui-font-color, var(--base-font-color)))'
171
+ color: 'var(--ui-font-color, var(--base-font-color))'
172
172
  };
173
173
 
174
174
  propertiesDark = {
175
175
  ...properties,
176
- color: 'rgb(var(--ui-font-color-dark, var(--base-font-color-dark)))'
176
+ color: 'var(--ui-font-color-dark, var(--base-font-color-dark))'
177
177
  };
178
178
  }
179
179
 
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Creates a new Error from the error message and throws it with a reference
3
+ * to the originating Error
4
+ * - The originating Error is set as `cause` property
5
+ *
6
+ * @param {string} message - Additional message to prepend
7
+ * @param {Error|string} error - Original error
8
+ *
9
+ * @throws {Error}
10
+ */
11
+ export function rethrow(message: string, error: Error | string): void;
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Creates a new Error from the error message and throws it with a reference
3
+ * to the originating Error
4
+ * - The originating Error is set as `cause` property
5
+ *
6
+ * @param {string} message - Additional message to prepend
7
+ * @param {Error|string} error - Original error
8
+ *
9
+ * @throws {Error}
10
+ */
11
+ export function rethrow(message, error) {
12
+ if (!(error instanceof Error)) {
13
+ // Convert non-Error values to Error objects
14
+ error = new Error(String(error));
15
+ }
16
+ throw new Error(message, { cause: error });
17
+ }
@@ -1,2 +1,3 @@
1
+ export * as exceptions from "./exceptions/index.js";
1
2
  export * as expect from "./expect/index.js";
2
3
  export * as singleton from "./singleton/index.js";
@@ -1,2 +1,3 @@
1
+ export * as exceptions from './exceptions/index.js';
1
2
  export * as expect from './expect/index.js';
2
3
  export * as singleton from './singleton/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.2.20",
3
+ "version": "0.2.22",
4
4
  "author": {
5
5
  "name": "HKdigital",
6
6
  "url": "https://hkdigital.nl"
@@ -88,8 +88,8 @@
88
88
  "devDependencies": {
89
89
  "@eslint/js": "^9.28.0",
90
90
  "@playwright/test": "^1.52.0",
91
- "@skeletonlabs/skeleton": "3.0.0-next.2",
92
- "@skeletonlabs/skeleton-svelte": "1.0.0-next.4",
91
+ "@skeletonlabs/skeleton": "3.0.0",
92
+ "@skeletonlabs/skeleton-svelte": "1.2.3",
93
93
  "@steeze-ui/heroicons": "^2.4.2",
94
94
  "@sveltejs/adapter-auto": "^6.0.1",
95
95
  "@sveltejs/package": "^2.3.11",
@@ -106,6 +106,7 @@
106
106
  "fake-indexeddb": "^6.0.0",
107
107
  "globals": "^16.2.0",
108
108
  "jsdom": "^26.1.0",
109
+ "npm-check-updates": "^18.0.1",
109
110
  "npm-run-all": "^4.1.5",
110
111
  "pino": "^9.7.0",
111
112
  "pino-pretty": "^13.0.0",
@@ -119,11 +120,14 @@
119
120
  "svelte": "^5.33.16",
120
121
  "svelte-check": "^4.2.1",
121
122
  "svelte-preprocess": "^6.0.3",
122
- "tailwindcss": "^3.4.17",
123
+ "tailwindcss": "^4.1.10",
123
124
  "typescript": "^5.8.3",
124
125
  "vite": "^6.3.5",
125
126
  "vite-imagetools": "^7.1.0",
126
127
  "vitest": "^3.2.2",
127
128
  "zod": "^3.24.2"
129
+ },
130
+ "dependencies": {
131
+ "@tailwindcss/postcss": "^4.1.11"
128
132
  }
129
133
  }