@licklist/design 0.78.5-dev.109 → 0.78.5-dev.110

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.
@@ -3,7 +3,7 @@ import './ReorderRow.scss';
3
3
  export interface DragHandleRenderProps {
4
4
  /** Spread onto the drag handle element for dnd-kit or similar */
5
5
  attributes?: HTMLAttributes<HTMLElement>;
6
- listeners?: Record<string, (...args: any[]) => any> | undefined;
6
+ listeners?: Record<string, Function> | undefined;
7
7
  }
8
8
  export interface ReorderRowProps {
9
9
  label: string;
@@ -1 +1 @@
1
- {"version":3,"file":"ReorderRow.d.ts","sourceRoot":"","sources":["../../../../src/v2/components/ReorderRow/ReorderRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAE7C,OAAO,mBAAmB,CAAA;AAE1B,MAAM,WAAW,qBAAqB;IACpC,iEAAiE;IACjE,UAAU,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,CAAA;IAExC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,GAAG,SAAS,CAAA;CAChE;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gFAAgF;IAChF,eAAe,CAAC,EAAE,qBAAqB,CAAA;IACvC,2DAA2D;IAC3D,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,uEAAuE;IACvE,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,4DAA4D;IAC5D,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;CAC5B;AAED,eAAO,MAAM,UAAU,wFA0DtB,CAAA"}
1
+ {"version":3,"file":"ReorderRow.d.ts","sourceRoot":"","sources":["../../../../src/v2/components/ReorderRow/ReorderRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAE7C,OAAO,mBAAmB,CAAA;AAE1B,MAAM,WAAW,qBAAqB;IACpC,iEAAiE;IACjE,UAAU,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,CAAA;IAExC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,GAAG,SAAS,CAAA;CACjD;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gFAAgF;IAChF,eAAe,CAAC,EAAE,qBAAqB,CAAA;IACvC,2DAA2D;IAC3D,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,uEAAuE;IACvE,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,4DAA4D;IAC5D,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;CAC5B;AAED,eAAO,MAAM,UAAU,wFA0DtB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.78.5-dev.109",
3
+ "version": "0.78.5-dev.110",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/bookedit-licklist/licklist_design.git"
@@ -5,8 +5,8 @@ import './ReorderRow.scss'
5
5
  export interface DragHandleRenderProps {
6
6
  /** Spread onto the drag handle element for dnd-kit or similar */
7
7
  attributes?: HTMLAttributes<HTMLElement>
8
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
9
- listeners?: Record<string, (...args: any[]) => any> | undefined
8
+ // eslint-disable-next-line @typescript-eslint/ban-types
9
+ listeners?: Record<string, Function> | undefined
10
10
  }
11
11
 
12
12
  export interface ReorderRowProps {