snice 1.13.9 → 1.13.10

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,6 +1,6 @@
1
1
  import { element, on, property, query, request, dispatch, watch } from 'snice';
2
- import '../input/snice-input';
3
- import '../select/snice-select';
2
+ import 'snice/input/snice-input';
3
+ import 'snice/select/snice-select';
4
4
  import './snice-cell.ts';
5
5
  import './snice-cell-text.ts';
6
6
  import './snice-cell-number.ts';
@@ -1,5 +1,5 @@
1
1
  import { element, property, ready, dispose } from 'snice';
2
- import { getSymbol } from '../symbols';
2
+ import { getSymbol } from 'snice/symbols';
3
3
  import type { ToastPosition, ToastOptions, ToastEventDetail, ToastResponseEventDetail, SniceToastContainerElement } from './snice-toast.types';
4
4
  import './snice-toast';
5
5
 
@@ -12,7 +12,7 @@ import {
12
12
  noneTransition,
13
13
  type Transition,
14
14
  performTransition
15
- } from '../src/transitions';
15
+ } from 'snice/transitions';
16
16
 
17
17
  /**
18
18
  * Map of all transitions for components to use
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snice",
3
- "version": "1.13.9",
3
+ "version": "1.13.10",
4
4
  "type": "module",
5
5
  "description": "Imperative TypeScript framework for building vanilla web components with decorators, routing, and controllers. No virtual DOM, no build complexity.",
6
6
  "main": "dist/index.js",