@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 +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/package.json +1 -1
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
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
|
};
|