@addsign/moje-agenda-shared-lib 0.0.29 → 0.0.32
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 +1484 -1
- package/dist/components/Button.js +23 -20
- package/dist/components/Button.js.map +1 -0
- package/dist/components/Calendar.d.ts +1 -1
- package/dist/components/Calendar.js +91 -57
- package/dist/components/Calendar.js.map +1 -0
- package/dist/components/ConfirmationModalDialog.js +52 -47
- package/dist/components/ConfirmationModalDialog.js.map +1 -0
- package/dist/components/DataTable.js +211 -145
- package/dist/components/DataTable.js.map +1 -0
- package/dist/components/Spinner.js +9 -8
- package/dist/components/Spinner.js.map +1 -0
- package/dist/components/form/AutocompleteSearchBar.js +323 -239
- package/dist/components/form/AutocompleteSearchBar.js.map +1 -0
- package/dist/components/form/FormField.js +171 -142
- package/dist/components/form/FormField.js.map +1 -0
- package/dist/components/form/PositionsSelectorSingle.js +143 -113
- package/dist/components/form/PositionsSelectorSingle.js.map +1 -0
- package/dist/components/layout/PageTitle.js +9 -8
- package/dist/components/layout/PageTitle.js.map +1 -0
- package/dist/components/layout/SectionTitle.js +9 -8
- package/dist/components/layout/SectionTitle.js.map +1 -0
- package/dist/contexts/FederationContext.js +12 -8
- package/dist/contexts/FederationContext.js.map +1 -0
- package/dist/contexts/useFederationContext.js +5 -4
- package/dist/contexts/useFederationContext.js.map +1 -0
- package/dist/iconBase-BY_L6Cb_.js +144 -0
- package/dist/iconBase-BY_L6Cb_.js.map +1 -0
- package/dist/index-C0yNf1cc.js +48 -0
- package/dist/index-C0yNf1cc.js.map +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +31 -28
- package/dist/main.js.map +1 -0
- package/dist/types.d.ts +31 -0
- package/dist/types.js +1 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/getFullName.js +9 -3
- package/dist/utils/getFullName.js.map +1 -0
- package/dist/utils/getIntersectingDays.d.ts +4 -0
- package/dist/utils/getIntersectingDays.js +22 -0
- package/dist/utils/getIntersectingDays.js.map +1 -0
- package/package.json +1 -1
- package/dist/iconBase-DkR9t2l_.js +0 -117
- package/dist/index-CO5g84CR.js +0 -47
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
function
|
|
3
|
-
children
|
|
4
|
-
textSize
|
|
5
|
-
...
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
function PageTitle({
|
|
3
|
+
children,
|
|
4
|
+
textSize = "text-2xl",
|
|
5
|
+
...props
|
|
6
6
|
}) {
|
|
7
|
-
const
|
|
8
|
-
return /* @__PURE__ */
|
|
7
|
+
const className = ` text-gray-900 ${textSize} font-medium font-['Inter'] leading-7 mb-5`;
|
|
8
|
+
return /* @__PURE__ */ jsx("h1", { ...props, className, children });
|
|
9
9
|
}
|
|
10
10
|
export {
|
|
11
|
-
|
|
11
|
+
PageTitle as default
|
|
12
12
|
};
|
|
13
|
+
//# sourceMappingURL=PageTitle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageTitle.js","sources":["../../../lib/components/layout/PageTitle.tsx"],"sourcesContent":["interface IPageTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {\n textSize?: string;\n children?: React.ReactNode;\n}\n\nexport default function PageTitle({\n children,\n textSize = \"text-2xl\",\n ...props\n}: IPageTitleProps) {\n // Combine textSize with the other fixed class names\n const className = ` text-gray-900 ${textSize} font-medium font-['Inter'] leading-7 mb-5`;\n\n return (\n <h1 {...props} className={className}>\n {children}\n </h1>\n );\n}\n"],"names":[],"mappings":";AAKA,SAAwB,UAAU;AAAA,EAChC;AAAA,EACA,WAAW;AAAA,EACX,GAAG;AACL,GAAoB;AAEZ,QAAA,YAAY,kBAAkB,QAAQ;AAE5C,SACG,oBAAA,MAAA,EAAI,GAAG,OAAO,WACZ,SACH,CAAA;AAEJ;"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
function
|
|
3
|
-
children
|
|
4
|
-
textSize
|
|
5
|
-
...
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
function SectionTitle({
|
|
3
|
+
children,
|
|
4
|
+
textSize = "text-lg",
|
|
5
|
+
...props
|
|
6
6
|
}) {
|
|
7
|
-
const
|
|
8
|
-
return /* @__PURE__ */
|
|
7
|
+
const className = ` text-gray-900 ${textSize} font-medium font-['Inter'] leading-7 mb-3`;
|
|
8
|
+
return /* @__PURE__ */ jsx("div", { className: "border-b border-gray-300 pt-2 mb-5 ", children: /* @__PURE__ */ jsx("h2", { ...props, className, children }) });
|
|
9
9
|
}
|
|
10
10
|
export {
|
|
11
|
-
|
|
11
|
+
SectionTitle as default
|
|
12
12
|
};
|
|
13
|
+
//# sourceMappingURL=SectionTitle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SectionTitle.js","sources":["../../../lib/components/layout/SectionTitle.tsx"],"sourcesContent":["import * as React from \"react\";\n\ninterface ISectionTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {\n textSize?: string;\n children?: React.ReactNode;\n}\nexport default function SectionTitle({\n children,\n textSize = \"text-lg\",\n ...props\n}: ISectionTitleProps) {\n // Combine textSize with the other fixed class names\n const className = ` text-gray-900 ${textSize} font-medium font-['Inter'] leading-7 mb-3`;\n\n return (\n <div className=\"border-b border-gray-300 pt-2 mb-5 \">\n <h2 {...props} className={className}>\n {children}\n </h2>\n </div>\n );\n}\n"],"names":[],"mappings":";AAMA,SAAwB,aAAa;AAAA,EACnC;AAAA,EACA,WAAW;AAAA,EACX,GAAG;AACL,GAAuB;AAEf,QAAA,YAAY,kBAAkB,QAAQ;AAG1C,SAAA,oBAAC,OAAI,EAAA,WAAU,uCACb,UAAA,oBAAC,QAAI,GAAG,OAAO,WACZ,SACH,CAAA,EACF,CAAA;AAEJ;"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
import { createContext
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { createContext } from "react";
|
|
3
|
+
const FederationContext = createContext({});
|
|
4
|
+
const FederationContextProvider = ({
|
|
5
|
+
children,
|
|
6
|
+
value
|
|
7
|
+
}) => {
|
|
8
|
+
return /* @__PURE__ */ jsx(FederationContext.Provider, { value, children });
|
|
9
|
+
};
|
|
7
10
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
FederationContext,
|
|
12
|
+
FederationContextProvider
|
|
10
13
|
};
|
|
14
|
+
//# sourceMappingURL=FederationContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FederationContext.js","sources":["../../lib/contexts/FederationContext.tsx"],"sourcesContent":["import { FC, PropsWithChildren, createContext } from \"react\";\r\nimport { IContextValue } from \"../types\";\r\n\r\nexport const FederationContext = createContext({} as IContextValue);\r\n\r\ntype FederationContextProviderProps = PropsWithChildren & {\r\n value: IContextValue;\r\n};\r\n\r\nexport const FederationContextProvider: FC<FederationContextProviderProps> = ({\r\n children,\r\n value,\r\n}) => {\r\n //const { userInfo, apiClient, authApps, emitter } = value;\r\n\r\n // const contextValue = {\r\n // userInfo: userInfo,\r\n // apiClient: apiClient,\r\n // authApps: authApps,\r\n // emitter: emitter,\r\n // };\r\n\r\n return (\r\n <FederationContext.Provider value={value}>\r\n {children}\r\n </FederationContext.Provider>\r\n );\r\n};\r\n"],"names":[],"mappings":";;AAGa,MAAA,oBAAoB,cAAc,EAAmB;AAM3D,MAAM,4BAAgE,CAAC;AAAA,EAC5E;AAAA,EACA;AACF,MAAM;AAUJ,SACG,oBAAA,kBAAkB,UAAlB,EAA2B,OACzB,SACH,CAAA;AAEJ;"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { useContext
|
|
2
|
-
import { FederationContext
|
|
3
|
-
const
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import { FederationContext } from "./FederationContext.js";
|
|
3
|
+
const useFederationContext = () => useContext(FederationContext);
|
|
4
4
|
export {
|
|
5
|
-
|
|
5
|
+
useFederationContext
|
|
6
6
|
};
|
|
7
|
+
//# sourceMappingURL=useFederationContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFederationContext.js","sources":["../../lib/contexts/useFederationContext.ts"],"sourcesContent":["import { useContext } from \"react\";\r\nimport { FederationContext } from \"./FederationContext\";\r\n\r\nexport const useFederationContext = () => useContext(FederationContext);"],"names":[],"mappings":";;AAGa,MAAA,uBAAuB,MAAM,WAAW,iBAAiB;"}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
var DefaultContext = {
|
|
3
|
+
color: void 0,
|
|
4
|
+
size: void 0,
|
|
5
|
+
className: void 0,
|
|
6
|
+
style: void 0,
|
|
7
|
+
attr: void 0
|
|
8
|
+
};
|
|
9
|
+
var IconContext = React.createContext && /* @__PURE__ */ React.createContext(DefaultContext);
|
|
10
|
+
var _excluded = ["attr", "size", "title"];
|
|
11
|
+
function _objectWithoutProperties(source, excluded) {
|
|
12
|
+
if (source == null)
|
|
13
|
+
return {};
|
|
14
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
15
|
+
var key, i;
|
|
16
|
+
if (Object.getOwnPropertySymbols) {
|
|
17
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
18
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
19
|
+
key = sourceSymbolKeys[i];
|
|
20
|
+
if (excluded.indexOf(key) >= 0)
|
|
21
|
+
continue;
|
|
22
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key))
|
|
23
|
+
continue;
|
|
24
|
+
target[key] = source[key];
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
30
|
+
if (source == null)
|
|
31
|
+
return {};
|
|
32
|
+
var target = {};
|
|
33
|
+
for (var key in source) {
|
|
34
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
35
|
+
if (excluded.indexOf(key) >= 0)
|
|
36
|
+
continue;
|
|
37
|
+
target[key] = source[key];
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return target;
|
|
41
|
+
}
|
|
42
|
+
function _extends() {
|
|
43
|
+
_extends = Object.assign ? Object.assign.bind() : function(target) {
|
|
44
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
45
|
+
var source = arguments[i];
|
|
46
|
+
for (var key in source) {
|
|
47
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
48
|
+
target[key] = source[key];
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
return target;
|
|
53
|
+
};
|
|
54
|
+
return _extends.apply(this, arguments);
|
|
55
|
+
}
|
|
56
|
+
function ownKeys(e, r) {
|
|
57
|
+
var t = Object.keys(e);
|
|
58
|
+
if (Object.getOwnPropertySymbols) {
|
|
59
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
60
|
+
r && (o = o.filter(function(r2) {
|
|
61
|
+
return Object.getOwnPropertyDescriptor(e, r2).enumerable;
|
|
62
|
+
})), t.push.apply(t, o);
|
|
63
|
+
}
|
|
64
|
+
return t;
|
|
65
|
+
}
|
|
66
|
+
function _objectSpread(e) {
|
|
67
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
68
|
+
var t = null != arguments[r] ? arguments[r] : {};
|
|
69
|
+
r % 2 ? ownKeys(Object(t), true).forEach(function(r2) {
|
|
70
|
+
_defineProperty(e, r2, t[r2]);
|
|
71
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function(r2) {
|
|
72
|
+
Object.defineProperty(e, r2, Object.getOwnPropertyDescriptor(t, r2));
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
return e;
|
|
76
|
+
}
|
|
77
|
+
function _defineProperty(obj, key, value) {
|
|
78
|
+
key = _toPropertyKey(key);
|
|
79
|
+
if (key in obj) {
|
|
80
|
+
Object.defineProperty(obj, key, { value, enumerable: true, configurable: true, writable: true });
|
|
81
|
+
} else {
|
|
82
|
+
obj[key] = value;
|
|
83
|
+
}
|
|
84
|
+
return obj;
|
|
85
|
+
}
|
|
86
|
+
function _toPropertyKey(t) {
|
|
87
|
+
var i = _toPrimitive(t, "string");
|
|
88
|
+
return "symbol" == typeof i ? i : i + "";
|
|
89
|
+
}
|
|
90
|
+
function _toPrimitive(t, r) {
|
|
91
|
+
if ("object" != typeof t || !t)
|
|
92
|
+
return t;
|
|
93
|
+
var e = t[Symbol.toPrimitive];
|
|
94
|
+
if (void 0 !== e) {
|
|
95
|
+
var i = e.call(t, r || "default");
|
|
96
|
+
if ("object" != typeof i)
|
|
97
|
+
return i;
|
|
98
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
99
|
+
}
|
|
100
|
+
return ("string" === r ? String : Number)(t);
|
|
101
|
+
}
|
|
102
|
+
function Tree2Element(tree) {
|
|
103
|
+
return tree && tree.map((node, i) => /* @__PURE__ */ React.createElement(node.tag, _objectSpread({
|
|
104
|
+
key: i
|
|
105
|
+
}, node.attr), Tree2Element(node.child)));
|
|
106
|
+
}
|
|
107
|
+
function GenIcon(data) {
|
|
108
|
+
return (props) => /* @__PURE__ */ React.createElement(IconBase, _extends({
|
|
109
|
+
attr: _objectSpread({}, data.attr)
|
|
110
|
+
}, props), Tree2Element(data.child));
|
|
111
|
+
}
|
|
112
|
+
function IconBase(props) {
|
|
113
|
+
var elem = (conf) => {
|
|
114
|
+
var {
|
|
115
|
+
attr,
|
|
116
|
+
size,
|
|
117
|
+
title
|
|
118
|
+
} = props, svgProps = _objectWithoutProperties(props, _excluded);
|
|
119
|
+
var computedSize = size || conf.size || "1em";
|
|
120
|
+
var className;
|
|
121
|
+
if (conf.className)
|
|
122
|
+
className = conf.className;
|
|
123
|
+
if (props.className)
|
|
124
|
+
className = (className ? className + " " : "") + props.className;
|
|
125
|
+
return /* @__PURE__ */ React.createElement("svg", _extends({
|
|
126
|
+
stroke: "currentColor",
|
|
127
|
+
fill: "currentColor",
|
|
128
|
+
strokeWidth: "0"
|
|
129
|
+
}, conf.attr, attr, svgProps, {
|
|
130
|
+
className,
|
|
131
|
+
style: _objectSpread(_objectSpread({
|
|
132
|
+
color: props.color || conf.color
|
|
133
|
+
}, conf.style), props.style),
|
|
134
|
+
height: computedSize,
|
|
135
|
+
width: computedSize,
|
|
136
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
137
|
+
}), title && /* @__PURE__ */ React.createElement("title", null, title), props.children);
|
|
138
|
+
};
|
|
139
|
+
return IconContext !== void 0 ? /* @__PURE__ */ React.createElement(IconContext.Consumer, null, (conf) => elem(conf)) : elem(DefaultContext);
|
|
140
|
+
}
|
|
141
|
+
export {
|
|
142
|
+
GenIcon as G
|
|
143
|
+
};
|
|
144
|
+
//# sourceMappingURL=iconBase-BY_L6Cb_.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"iconBase-BY_L6Cb_.js","sources":["../node_modules/react-icons/lib/iconContext.mjs","../node_modules/react-icons/lib/iconBase.mjs"],"sourcesContent":["import React from \"react\";\nexport var DefaultContext = {\n color: undefined,\n size: undefined,\n className: undefined,\n style: undefined,\n attr: undefined\n};\nexport var IconContext = React.createContext && /*#__PURE__*/React.createContext(DefaultContext);","var _excluded = [\"attr\", \"size\", \"title\"];\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == typeof i ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != typeof i) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nimport React from \"react\";\nimport { IconContext, DefaultContext } from \"./iconContext.mjs\";\nfunction Tree2Element(tree) {\n return tree && tree.map((node, i) => /*#__PURE__*/React.createElement(node.tag, _objectSpread({\n key: i\n }, node.attr), Tree2Element(node.child)));\n}\nexport function GenIcon(data) {\n return props => /*#__PURE__*/React.createElement(IconBase, _extends({\n attr: _objectSpread({}, data.attr)\n }, props), Tree2Element(data.child));\n}\nexport function IconBase(props) {\n var elem = conf => {\n var {\n attr,\n size,\n title\n } = props,\n svgProps = _objectWithoutProperties(props, _excluded);\n var computedSize = size || conf.size || \"1em\";\n var className;\n if (conf.className) className = conf.className;\n if (props.className) className = (className ? className + \" \" : \"\") + props.className;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n stroke: \"currentColor\",\n fill: \"currentColor\",\n strokeWidth: \"0\"\n }, conf.attr, attr, svgProps, {\n className: className,\n style: _objectSpread(_objectSpread({\n color: props.color || conf.color\n }, conf.style), props.style),\n height: computedSize,\n width: computedSize,\n xmlns: \"http://www.w3.org/2000/svg\"\n }), title && /*#__PURE__*/React.createElement(\"title\", null, title), props.children);\n };\n return IconContext !== undefined ? /*#__PURE__*/React.createElement(IconContext.Consumer, null, conf => elem(conf)) : elem(DefaultContext);\n}"],"names":["r"],"mappings":"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","x_google_ignoreList":[0,1]}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { G as GenIcon } from "./iconBase-BY_L6Cb_.js";
|
|
2
|
+
function MdSearch(props) {
|
|
3
|
+
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
|
+
}
|
|
5
|
+
function MdArrowBack(props) {
|
|
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": "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" }, "child": [] }] })(props);
|
|
7
|
+
}
|
|
8
|
+
function MdArrowDownward(props) {
|
|
9
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" }, "child": [] }, { "tag": "path", "attr": { "d": "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" }, "child": [] }] })(props);
|
|
10
|
+
}
|
|
11
|
+
function MdArrowForward(props) {
|
|
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": "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z" }, "child": [] }] })(props);
|
|
13
|
+
}
|
|
14
|
+
function MdArrowUpward(props) {
|
|
15
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" }, "child": [] }, { "tag": "path", "attr": { "d": "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" }, "child": [] }] })(props);
|
|
16
|
+
}
|
|
17
|
+
function MdCheck(props) {
|
|
18
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" }, "child": [] }] })(props);
|
|
19
|
+
}
|
|
20
|
+
function MdClose(props) {
|
|
21
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" }, "child": [] }] })(props);
|
|
22
|
+
}
|
|
23
|
+
function MdExpandLess(props) {
|
|
24
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" }, "child": [] }] })(props);
|
|
25
|
+
}
|
|
26
|
+
function MdExpandMore(props) {
|
|
27
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z" }, "child": [] }] })(props);
|
|
28
|
+
}
|
|
29
|
+
function MdOutlineFilterAltOff(props) {
|
|
30
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0z" }, "child": [] }, { "tag": "path", "attr": { "d": "m16.95 6-3.57 4.55 1.43 1.43c1.03-1.31 4.98-6.37 4.98-6.37A.998.998 0 0 0 19 4H6.83l2 2h8.12zM2.81 2.81 1.39 4.22 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.17l5.78 5.78 1.41-1.41L2.81 2.81z" }, "child": [] }] })(props);
|
|
31
|
+
}
|
|
32
|
+
function MdOutlineFilterAlt(props) {
|
|
33
|
+
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24" }, "child": [{ "tag": "path", "attr": { "fill": "none", "d": "M0 0h24m0 24H0" }, "child": [] }, { "tag": "path", "attr": { "d": "M7 6h10l-5.01 6.3L7 6zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39A.998.998 0 0 0 18.95 4H5.04c-.83 0-1.3.95-.79 1.61z" }, "child": [] }, { "tag": "path", "attr": { "fill": "none", "d": "M0 0h24v24H0V0z" }, "child": [] }] })(props);
|
|
34
|
+
}
|
|
35
|
+
export {
|
|
36
|
+
MdOutlineFilterAlt as M,
|
|
37
|
+
MdOutlineFilterAltOff as a,
|
|
38
|
+
MdSearch as b,
|
|
39
|
+
MdClose as c,
|
|
40
|
+
MdArrowBack as d,
|
|
41
|
+
MdArrowForward as e,
|
|
42
|
+
MdArrowUpward as f,
|
|
43
|
+
MdArrowDownward as g,
|
|
44
|
+
MdCheck as h,
|
|
45
|
+
MdExpandLess as i,
|
|
46
|
+
MdExpandMore as j
|
|
47
|
+
};
|
|
48
|
+
//# sourceMappingURL=index-C0yNf1cc.js.map
|