md-components-mdigial-azamat 0.0.97 → 0.0.99
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/ActionIconList/ActionIconList.js +1 -1
- package/dist/AllComponents.js +1 -1
- package/dist/AllComponentsInfo.js +1 -1
- package/dist/Cards/WarningCard/WarningCard.js +1 -1
- package/dist/Cards/WarningCard/index.js +1 -1
- package/dist/Cards/WarningCard/info.js +1 -1
- package/dist/FileLoader/index.js +6 -1785
- package/dist/Forms/FormDefault/index.js +5 -3
- package/dist/Forms/FormDefault/info.js +6 -5
- package/dist/Forms/helpers/renderFormFields.js +2 -2
- package/dist/Forms/model/components.js +1 -1
- package/dist/Forms/model/requestForm.js +4 -0
- package/dist/PageViewer/renderComponents.js +1 -1
- package/dist/RenderAllComponents/RenderAllComponents.js +1 -1
- package/dist/assets/index.css +1 -1
- package/dist/{componentsMap-280a0148.js → componentsMap-d3d722b2.js} +1 -1
- package/dist/index-6686852d.js +1794 -0
- package/dist/info-14d8693d.js +1480 -0
- package/dist/main.js +1 -1
- package/dist/requestForm-23442a57.js +25 -0
- package/package.json +1 -1
- package/dist/info-085c4fc3.js +0 -1415
package/dist/main.js
CHANGED
|
@@ -22,7 +22,7 @@ import { PartnersColors as $ } from "./PartnersColors/PartnersColors.js";
|
|
|
22
22
|
import { PreviewList as ro } from "./PreviewList/PreviewList.js";
|
|
23
23
|
import { CardImage as to } from "./Cards/CardImage/CardImage.js";
|
|
24
24
|
import { ContentCard as po } from "./Cards/ContentCard/ContentCard.js";
|
|
25
|
-
import { a as mo, A as fo, F as xo, W as so } from "./info-
|
|
25
|
+
import { a as mo, A as fo, F as xo, W as so } from "./info-14d8693d.js";
|
|
26
26
|
import { ColoredCard as io } from "./Cards/ColoredCard/index.js";
|
|
27
27
|
import { FeaturesCard as co } from "./Cards/FeaturesCard/index.js";
|
|
28
28
|
import { DownloadFileBanner as Fo } from "./DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FieldTypes as a } from "./Types/FiledTypes.js";
|
|
2
|
+
const r = ({
|
|
3
|
+
label: e,
|
|
4
|
+
type: t
|
|
5
|
+
}) => ({
|
|
6
|
+
dataType: a.STRING,
|
|
7
|
+
label: e,
|
|
8
|
+
type: t
|
|
9
|
+
}), o = r({
|
|
10
|
+
label: "API URL",
|
|
11
|
+
type: "api_url"
|
|
12
|
+
}), s = {
|
|
13
|
+
type: "requestForm",
|
|
14
|
+
label: "Форма заявки",
|
|
15
|
+
dataType: "object",
|
|
16
|
+
data: {
|
|
17
|
+
keys: {
|
|
18
|
+
api_url: o
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
s as R,
|
|
24
|
+
r as c
|
|
25
|
+
};
|