@addsign/moje-agenda-shared-lib 0.0.35 → 0.0.39
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/assets/tailwind.css +83 -44
- package/dist/components/Button.js +8 -8
- package/dist/components/Button.js.map +1 -1
- package/dist/components/Calendar.js +32 -28
- package/dist/components/Calendar.js.map +1 -1
- package/dist/components/ConfirmationModalDialog.js +1 -3
- package/dist/components/ConfirmationModalDialog.js.map +1 -1
- package/dist/components/DataTable.js +1 -1
- package/dist/components/form/AutocompleteSearchBar.js +1 -1
- package/dist/components/form/FileInput.d.ts +27 -0
- package/dist/components/form/FileInput.js +2524 -0
- package/dist/components/form/FileInput.js.map +1 -0
- package/dist/components/form/FormField.js +1 -1
- package/dist/components/form/PositionsSelectorSingle.js +1 -1
- package/dist/index-DPrqKh-7.js +16 -0
- package/dist/index-DPrqKh-7.js.map +1 -0
- package/dist/{index-C0yNf1cc.js → index-ZA1ctELQ.js} +10 -2
- package/dist/{index-C0yNf1cc.js.map → index-ZA1ctELQ.js.map} +1 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +14 -12
- package/dist/main.js.map +1 -1
- package/package.json +17 -2
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { G as GenIcon } from "./iconBase-BY_L6Cb_.js";
|
|
2
|
+
function MdDeleteOutline(props) {
|
|
3
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4z" }, "child": [] }] })(props);
|
|
4
|
+
}
|
|
2
5
|
function MdSearch(props) {
|
|
3
6
|
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" }, "child": [] }] })(props);
|
|
4
7
|
}
|
|
8
|
+
function MdInsertDriveFile(props) {
|
|
9
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z" }, "child": [] }] })(props);
|
|
10
|
+
}
|
|
5
11
|
function MdArrowBack(props) {
|
|
6
12
|
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" }, "child": [] }] })(props);
|
|
7
13
|
}
|
|
@@ -43,6 +49,8 @@ export {
|
|
|
43
49
|
MdArrowDownward as g,
|
|
44
50
|
MdCheck as h,
|
|
45
51
|
MdExpandLess as i,
|
|
46
|
-
MdExpandMore as j
|
|
52
|
+
MdExpandMore as j,
|
|
53
|
+
MdInsertDriveFile as k,
|
|
54
|
+
MdDeleteOutline as l
|
|
47
55
|
};
|
|
48
|
-
//# sourceMappingURL=index-
|
|
56
|
+
//# sourceMappingURL=index-ZA1ctELQ.js.map
|