@streamscloud/kit 0.1.5 → 0.1.6-1771230824827

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,4 +1,4 @@
1
- import { isBrowser } from '../utils';
1
+ import { isBrowser } from '../utils/browser';
2
2
  import { LocaleCookie } from './locale-cookie';
3
3
  import { APP_LOCALE_DEFAULT, APP_LOCALE_VALUES } from './types';
4
4
  class AppLocaleContainer {
@@ -1,4 +1,4 @@
1
- import { isBrowser } from '../utils';
1
+ import { isBrowser } from '../utils/browser';
2
2
  import { APP_LOCALE_COOKIE, APP_LOCALE_VALUES } from './types';
3
3
  const COOKIE_MAX_AGE = 60 * 60 * 24 * 365; // 1 year
4
4
  export const LocaleCookie = {
@@ -1,4 +1,4 @@
1
- import { type AppLocaleValue } from '../locale';
1
+ import { type AppLocaleValue } from '../locale/types';
2
2
  type CompactOptions = {
3
3
  decimals?: number;
4
4
  trimZeros?: boolean;
@@ -1,4 +1,5 @@
1
- import { AppLocale } from '../locale';
1
+ import { AppLocale } from '../locale/app-locale.svelte';
2
+ import {} from '../locale/types';
2
3
  const THOUSAND = 1_000;
3
4
  const MILLION = 1_000_000;
4
5
  const BILLION = 1_000_000_000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamscloud/kit",
3
- "version": "0.1.5",
3
+ "version": "0.1.6-1771230824827",
4
4
  "author": "StreamsCloud",
5
5
  "repository": {
6
6
  "type": "git",
@@ -189,6 +189,9 @@
189
189
  "sass": "./dist/styles/_theme.scss"
190
190
  }
191
191
  },
192
+ "dependencies": {
193
+ "svelte-sonner": "^1.0.7"
194
+ },
192
195
  "peerDependencies": {
193
196
  "@fluentui/svg-icons": "^1.1.318",
194
197
  "@popperjs/core": "^2.11.8",
@@ -199,7 +202,6 @@
199
202
  "nanoid": "^5.1.6",
200
203
  "rfdc": "^1.4.1",
201
204
  "svelte": "^5.50.0",
202
- "svelte-sonner": "^1.0.7",
203
205
  "wheel-gestures": "^2.2.48",
204
206
  "yup": "^1.6.1"
205
207
  },