@agnos-ui/svelte-headless 0.9.2 → 0.9.3

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.
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/collapse';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/collapse';
@@ -8,6 +8,10 @@ export * from './services/hash';
8
8
  export * from './services/focustrack';
9
9
  export * from './services/floatingUI';
10
10
  export * from './services/extendWidget';
11
+ export * from './services/transitions/simpleClassTransition';
12
+ export * from './services/transitions/cssTransitions';
13
+ export * from './services/transitions/collapse';
14
+ export * from './services/transitions/baseTransitions';
11
15
  export * from './utils/writables';
12
16
  export * from './utils/widget';
13
17
  export * from './utils/stores';
@@ -15,10 +19,6 @@ export * from './utils/func';
15
19
  export * from './utils/directive';
16
20
  export * from './types';
17
21
  export * from './config';
18
- export * from './services/transitions/simpleClassTransition';
19
- export * from './services/transitions/cssTransitions';
20
- export * from './services/transitions/collapse';
21
- export * from './services/transitions/baseTransitions';
22
22
  export * from './components/tree/index';
23
23
  export * from './components/toast/index';
24
24
  export * from './components/slider/index';
@@ -27,6 +27,7 @@ export * from './components/rating/index';
27
27
  export * from './components/progressbar/index';
28
28
  export * from './components/pagination/index';
29
29
  export * from './components/modal/index';
30
+ export * from './components/collapse/index';
30
31
  export * from './components/carousel/index';
31
32
  export * from './components/alert/index';
32
33
  export * from './components/accordion/index';
@@ -8,6 +8,10 @@ export * from './services/hash';
8
8
  export * from './services/focustrack';
9
9
  export * from './services/floatingUI';
10
10
  export * from './services/extendWidget';
11
+ export * from './services/transitions/simpleClassTransition';
12
+ export * from './services/transitions/cssTransitions';
13
+ export * from './services/transitions/collapse';
14
+ export * from './services/transitions/baseTransitions';
11
15
  export * from './utils/writables';
12
16
  export * from './utils/widget';
13
17
  export * from './utils/stores';
@@ -15,10 +19,6 @@ export * from './utils/func';
15
19
  export * from './utils/directive';
16
20
  export * from './types';
17
21
  export * from './config';
18
- export * from './services/transitions/simpleClassTransition';
19
- export * from './services/transitions/cssTransitions';
20
- export * from './services/transitions/collapse';
21
- export * from './services/transitions/baseTransitions';
22
22
  export * from './components/tree/index';
23
23
  export * from './components/toast/index';
24
24
  export * from './components/slider/index';
@@ -27,6 +27,7 @@ export * from './components/rating/index';
27
27
  export * from './components/progressbar/index';
28
28
  export * from './components/pagination/index';
29
29
  export * from './components/modal/index';
30
+ export * from './components/collapse/index';
30
31
  export * from './components/carousel/index';
31
32
  export * from './components/alert/index';
32
33
  export * from './components/accordion/index';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agnos-ui/svelte-headless",
3
3
  "description": "Headless component library for Svelte.",
4
- "version": "0.9.2",
4
+ "version": "0.9.3",
5
5
  "type": "module",
6
6
  "main": "./index.js",
7
7
  "module": "./index.js",
@@ -49,7 +49,7 @@
49
49
  }
50
50
  },
51
51
  "dependencies": {
52
- "@agnos-ui/core": "0.9.2"
52
+ "@agnos-ui/core": "0.9.3"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "@amadeus-it-group/tansu": "^2.0.0",