@proyecto-viviana/silapse 0.4.0 → 0.4.2

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.
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { type JSX } from 'solid-js';
7
7
  import { type MenuProps as HeadlessMenuProps } from '@proyecto-viviana/solidaria-components';
8
- export interface ActionMenuProps<T> extends Omit<HeadlessMenuProps<T>, 'class'> {
8
+ export interface ActionMenuProps<T> extends Omit<HeadlessMenuProps<T>, 'class' | 'children'> {
9
9
  /** Additional CSS class name for the menu. */
10
10
  class?: string;
11
11
  /** Label for the trigger button. @default 'Actions' */
@@ -1 +1 @@
1
- {"version":3,"file":"ActionMenu.d.ts","sourceRoot":"","sources":["../../src/menu/ActionMenu.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,GAAG,EAAc,MAAM,UAAU,CAAC;AAChD,OAAO,EAKL,KAAK,SAAS,IAAI,iBAAiB,EAGpC,MAAM,wCAAwC,CAAC;AAMhD,MAAM,WAAW,eAAe,CAAC,CAAC,CAAE,SAAQ,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC;IAC7E,8CAA8C;IAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,yEAAyE;IACzE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uCAAuC;IACvC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,yDAAyD;IACzD,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC;CACzB;AAMD;;GAEG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,OAAO,CAiEpE"}
1
+ {"version":3,"file":"ActionMenu.d.ts","sourceRoot":"","sources":["../../src/menu/ActionMenu.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,GAAG,EAAc,MAAM,UAAU,CAAC;AAChD,OAAO,EAKL,KAAK,SAAS,IAAI,iBAAiB,EAGpC,MAAM,wCAAwC,CAAC;AAMhD,MAAM,WAAW,eAAe,CAAC,CAAC,CAAE,SAAQ,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAC1F,8CAA8C;IAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,yEAAyE;IACzE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uCAAuC;IACvC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,yDAAyD;IACzD,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC;CACzB;AAMD;;GAEG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,OAAO,CAiEpE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proyecto-viviana/silapse",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Styled UI components for SolidJS - inspired by React Spectrum",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,12 +36,12 @@
36
36
  "scripts": {
37
37
  "build": "tsup && rm -f tsconfig.build.tsbuildinfo && tsc -p tsconfig.build.json",
38
38
  "dev": "tsup --watch",
39
- "prepublishOnly": "echo 'Use the root Changesets/JSR release workflow'"
39
+ "prepublishOnly": "echo 'Use the root Changesets npm release workflow'"
40
40
  },
41
41
  "dependencies": {
42
- "@proyecto-viviana/solid-stately": "^0.2.5",
43
- "@proyecto-viviana/solidaria": "^0.2.6",
44
- "@proyecto-viviana/solidaria-components": "^0.2.7"
42
+ "@proyecto-viviana/solid-stately": "^0.2.7",
43
+ "@proyecto-viviana/solidaria": "^0.2.8",
44
+ "@proyecto-viviana/solidaria-components": "^0.2.9"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "solid-js": "^1.9.0"
@@ -59,7 +59,8 @@
59
59
  "license": "MIT",
60
60
  "repository": {
61
61
  "type": "git",
62
- "url": "https://github.com/proyecto-viviana/proyecto-viviana"
62
+ "url": "git+https://github.com/proyecto-viviana/proyecto-viviana.git",
63
+ "directory": "packages/silapse"
63
64
  },
64
65
  "publishConfig": {
65
66
  "access": "public"
@@ -19,7 +19,7 @@ import {
19
19
  // TYPES
20
20
  // ============================================
21
21
 
22
- export interface ActionMenuProps<T> extends Omit<HeadlessMenuProps<T>, 'class'> {
22
+ export interface ActionMenuProps<T> extends Omit<HeadlessMenuProps<T>, 'class' | 'children'> {
23
23
  /** Additional CSS class name for the menu. */
24
24
  class?: string;
25
25
  /** Label for the trigger button. @default 'Actions' */