@agnos-ui/svelte-headless 0.9.2 → 0.10.0-next.0

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.
package/Slot.svelte.d.ts CHANGED
@@ -1,11 +1,18 @@
1
1
  import type { SlotContent } from './types';
2
- declare class __sveltets_Render<Props extends object> {
3
- props(): {
2
+ declare function $$render<Props extends object>(): {
3
+ props: {
4
4
  content: SlotContent<Props>;
5
5
  props: Props;
6
6
  };
7
- events(): {};
8
- slots(): {};
7
+ exports: {};
8
+ bindings: "";
9
+ slots: {};
10
+ events: {};
11
+ };
12
+ declare class __sveltets_Render<Props extends object> {
13
+ props(): ReturnType<typeof $$render<Props>>['props'];
14
+ events(): ReturnType<typeof $$render<Props>>['events'];
15
+ slots(): ReturnType<typeof $$render<Props>>['slots'];
9
16
  bindings(): "";
10
17
  exports(): {};
11
18
  }
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/collapse';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/collapse';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/drawer';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/components/drawer';
@@ -6,8 +6,13 @@ export * from './services/matchMedia';
6
6
  export * from './services/intersection';
7
7
  export * from './services/hash';
8
8
  export * from './services/focustrack';
9
+ export * from './services/focusElement';
9
10
  export * from './services/floatingUI';
10
11
  export * from './services/extendWidget';
12
+ export * from './services/transitions/simpleClassTransition';
13
+ export * from './services/transitions/cssTransitions';
14
+ export * from './services/transitions/collapse';
15
+ export * from './services/transitions/baseTransitions';
11
16
  export * from './utils/writables';
12
17
  export * from './utils/widget';
13
18
  export * from './utils/stores';
@@ -15,10 +20,6 @@ export * from './utils/func';
15
20
  export * from './utils/directive';
16
21
  export * from './types';
17
22
  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
23
  export * from './components/tree/index';
23
24
  export * from './components/toast/index';
24
25
  export * from './components/slider/index';
@@ -27,6 +28,8 @@ export * from './components/rating/index';
27
28
  export * from './components/progressbar/index';
28
29
  export * from './components/pagination/index';
29
30
  export * from './components/modal/index';
31
+ export * from './components/drawer/index';
32
+ export * from './components/collapse/index';
30
33
  export * from './components/carousel/index';
31
34
  export * from './components/alert/index';
32
35
  export * from './components/accordion/index';
@@ -6,8 +6,13 @@ export * from './services/matchMedia';
6
6
  export * from './services/intersection';
7
7
  export * from './services/hash';
8
8
  export * from './services/focustrack';
9
+ export * from './services/focusElement';
9
10
  export * from './services/floatingUI';
10
11
  export * from './services/extendWidget';
12
+ export * from './services/transitions/simpleClassTransition';
13
+ export * from './services/transitions/cssTransitions';
14
+ export * from './services/transitions/collapse';
15
+ export * from './services/transitions/baseTransitions';
11
16
  export * from './utils/writables';
12
17
  export * from './utils/widget';
13
18
  export * from './utils/stores';
@@ -15,10 +20,6 @@ export * from './utils/func';
15
20
  export * from './utils/directive';
16
21
  export * from './types';
17
22
  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
23
  export * from './components/tree/index';
23
24
  export * from './components/toast/index';
24
25
  export * from './components/slider/index';
@@ -27,6 +28,8 @@ export * from './components/rating/index';
27
28
  export * from './components/progressbar/index';
28
29
  export * from './components/pagination/index';
29
30
  export * from './components/modal/index';
31
+ export * from './components/drawer/index';
32
+ export * from './components/collapse/index';
30
33
  export * from './components/carousel/index';
31
34
  export * from './components/alert/index';
32
35
  export * from './components/accordion/index';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/services/focusElement';
@@ -0,0 +1 @@
1
+ export * from '@agnos-ui/core/services/focusElement';
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.10.0-next.0",
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.10.0-next.0"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "@amadeus-it-group/tansu": "^2.0.0",