@sortsys/ui 0.1.15 → 0.1.16

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/dist/dev.js CHANGED
@@ -2366,6 +2366,12 @@ function createSSTile(build) {
2366
2366
  },
2367
2367
  get icon() {
2368
2368
  return memo(() => !!props.noIcon)() ? void 0 : built.icon;
2369
+ },
2370
+ get unwrapped() {
2371
+ return props.unwrapped ?? built.unwrapped;
2372
+ },
2373
+ get noPadding() {
2374
+ return props.noPadding ?? built.noPadding;
2369
2375
  }
2370
2376
  }));
2371
2377
  };
package/dist/index.d.ts CHANGED
@@ -432,6 +432,8 @@ declare function createSSTile<T>(build: (data: T) => SSTileProps): (props: {
432
432
  data: T;
433
433
  noLink?: boolean;
434
434
  noIcon?: boolean;
435
+ unwrapped?: boolean;
436
+ noPadding?: boolean;
435
437
  onLinkClick?: () => void;
436
438
  }) => solid_js.JSX.Element;
437
439
 
package/dist/index.js CHANGED
@@ -2366,6 +2366,12 @@ function createSSTile(build) {
2366
2366
  },
2367
2367
  get icon() {
2368
2368
  return memo(() => !!props.noIcon)() ? void 0 : built.icon;
2369
+ },
2370
+ get unwrapped() {
2371
+ return props.unwrapped ?? built.unwrapped;
2372
+ },
2373
+ get noPadding() {
2374
+ return props.noPadding ?? built.noPadding;
2369
2375
  }
2370
2376
  }));
2371
2377
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sortsys/ui",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Simple and beautiful UI library for sortsys",
5
5
  "license": "MIT",
6
6
  "author": "Ludwig Lehnert",