@tipp/ui 1.4.16 → 1.4.18
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/atoms/field-error-wrapper.js +2 -2
- package/dist/atoms/index.cjs +2 -2
- package/dist/atoms/index.cjs.map +1 -1
- package/dist/atoms/index.js +62 -62
- package/dist/atoms/pagination.cjs.map +1 -1
- package/dist/atoms/pagination.js +3 -3
- package/dist/atoms/text-area.cjs +2 -2
- package/dist/atoms/text-area.cjs.map +1 -1
- package/dist/atoms/text-area.js +1 -1
- package/dist/chunk-3GR5ZATM.js +128 -0
- package/dist/chunk-3GR5ZATM.js.map +1 -0
- package/dist/chunk-F77ES5Y3.js +79 -0
- package/dist/chunk-F77ES5Y3.js.map +1 -0
- package/dist/chunk-KVNTQ4LE.js +169 -0
- package/dist/chunk-KVNTQ4LE.js.map +1 -0
- package/dist/chunk-MR7N42HJ.js +97 -0
- package/dist/chunk-MR7N42HJ.js.map +1 -0
- package/dist/chunk-OAG6DLXW.js +192 -0
- package/dist/chunk-OAG6DLXW.js.map +1 -0
- package/dist/chunk-TTYPIX4R.js +32 -0
- package/dist/chunk-TTYPIX4R.js.map +1 -0
- package/dist/chunk-VPUWVGC2.js +340 -0
- package/dist/chunk-VPUWVGC2.js.map +1 -0
- package/dist/icon.cjs +2 -0
- package/dist/icon.cjs.map +1 -1
- package/dist/icon.d.cts +1 -1
- package/dist/icon.d.ts +1 -1
- package/dist/icon.js +3 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +77 -75
- package/dist/molecules/date-picker/index.cjs.map +1 -1
- package/dist/molecules/date-picker/index.js +3 -3
- package/dist/molecules/expand-table/index.cjs.map +1 -1
- package/dist/molecules/expand-table/index.js +27 -27
- package/dist/molecules/expand-table/row.js +26 -26
- package/dist/molecules/form.d.cts +1 -1
- package/dist/molecules/form.d.ts +1 -1
- package/dist/molecules/form.js +2 -2
- package/dist/molecules/index.cjs.map +1 -1
- package/dist/molecules/index.js +32 -32
- package/dist/molecules/learning-post.js +3 -3
- package/dist/molecules/navigation.js +27 -27
- package/dist/molecules/stepper.cjs.map +1 -1
- package/dist/molecules/stepper.js +3 -3
- package/dist/molecules/tag-selector.cjs.map +1 -1
- package/dist/molecules/tag-selector.js +27 -27
- package/package.json +3 -3
- package/src/atoms/text-area.tsx +6 -3
- package/src/icon.ts +1 -0
package/dist/icon.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ArchiveIcon,
|
|
3
|
+
ArrowLeftIcon,
|
|
3
4
|
BackpackIcon,
|
|
4
5
|
BarChartIcon,
|
|
5
6
|
BookmarkFilledIcon,
|
|
@@ -34,10 +35,11 @@ import {
|
|
|
34
35
|
RowsIcon,
|
|
35
36
|
Share1Icon,
|
|
36
37
|
TrashIcon
|
|
37
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-F77ES5Y3.js";
|
|
38
39
|
import "./chunk-N552FDTV.js";
|
|
39
40
|
export {
|
|
40
41
|
ArchiveIcon,
|
|
42
|
+
ArrowLeftIcon,
|
|
41
43
|
BackpackIcon,
|
|
42
44
|
BarChartIcon,
|
|
43
45
|
BookmarkFilledIcon,
|
package/dist/index.cjs
CHANGED
|
@@ -61,6 +61,7 @@ var src_exports = {};
|
|
|
61
61
|
__export(src_exports, {
|
|
62
62
|
AlertDialog: () => import_themes.AlertDialog,
|
|
63
63
|
ArchiveIcon: () => import_react_icons2.ArchiveIcon,
|
|
64
|
+
ArrowLeftIcon: () => import_react_icons2.ArrowLeftIcon,
|
|
64
65
|
AspectRatio: () => import_themes2.AspectRatio,
|
|
65
66
|
AutoSizingInput: () => AutoSizingInput,
|
|
66
67
|
Avatar: () => Avatar,
|
|
@@ -659,9 +660,9 @@ var TextArea = (0, import_react12.forwardRef)(
|
|
|
659
660
|
const fieldStyle = (0, import_react12.useMemo)(() => {
|
|
660
661
|
if (!style && !error)
|
|
661
662
|
return void 0;
|
|
662
|
-
const errorStyle = {
|
|
663
|
+
const errorStyle = error ? {
|
|
663
664
|
boxShadow: "inset 0 0 0 var(--text-area-border-width) var(--error-11)"
|
|
664
|
-
};
|
|
665
|
+
} : {};
|
|
665
666
|
return __spreadValues(__spreadValues({}, style || {}), errorStyle);
|
|
666
667
|
}, [error, style]);
|
|
667
668
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_themes45.TextArea, __spreadProps(__spreadValues({}, rest), { ref, style: fieldStyle }));
|
|
@@ -2375,6 +2376,7 @@ function scrollTo(element, targetPosition, duration) {
|
|
|
2375
2376
|
0 && (module.exports = {
|
|
2376
2377
|
AlertDialog,
|
|
2377
2378
|
ArchiveIcon,
|
|
2379
|
+
ArrowLeftIcon,
|
|
2378
2380
|
AspectRatio,
|
|
2379
2381
|
AutoSizingInput,
|
|
2380
2382
|
Avatar,
|