impaktapps-ui-builder 0.0.382456 → 0.0.382460

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.
Files changed (109) hide show
  1. package/dist/impaktapps-ui-builder.es.js +4233 -2667
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +15 -15
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.d.ts +4 -1
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildCard.d.ts +1 -1
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -1
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildDate.d.ts +1 -0
  9. package/dist/src/impaktapps-ui-builder/builder/build/buildInputSlider.d.ts +1 -0
  10. package/dist/src/impaktapps-ui-builder/builder/build/buildTable.d.ts +0 -1
  11. package/dist/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.d.ts +1 -0
  12. package/dist/src/impaktapps-ui-builder/builder/build/buildTreeMap.d.ts +1 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/buildUiSchema.d.ts +1 -1
  14. package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +36 -2
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +2 -2
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +60 -0
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +1 -7
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +172 -86
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +15 -0
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.d.ts +19 -0
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +121 -119
  22. package/dist/src/impaktapps-ui-builder/builder/build/uischema/file.d.ts +6 -6
  23. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +42 -115
  24. package/dist/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.d.ts +10 -288
  25. package/dist/src/impaktapps-ui-builder/builder/build/uischema/progressBar.d.ts +6 -1
  26. package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +2 -0
  27. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +119 -96
  28. package/dist/src/impaktapps-ui-builder/builder/build/uischema/{lazyLoadingTable.d.ts → thoughtOfTheDay.d.ts} +6 -3
  29. package/dist/src/impaktapps-ui-builder/builder/build/uischema/timer.d.ts +1 -14
  30. package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +17 -2
  31. package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +17 -2
  32. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +2 -1
  33. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +9 -0
  34. package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +3 -0
  35. package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +12 -4
  36. package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +11 -2
  37. package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +16 -3
  38. package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +4 -4
  39. package/dist/src/impaktapps-ui-builder/lib/index.d.ts +1 -1
  40. package/dist/src/impaktapps-ui-builder/runtime/services/events.d.ts +8 -5
  41. package/dist/src/impaktapps-ui-builder/runtime/services/interface.d.ts +2 -0
  42. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +11 -8
  43. package/package.json +5 -1
  44. package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +9 -5
  45. package/src/impaktapps-ui-builder/builder/build/buildButton.ts +0 -2
  46. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +11 -7
  47. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +15 -19
  48. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +12 -2
  49. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -1
  50. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +22 -9
  51. package/src/impaktapps-ui-builder/builder/build/buildInputSlider.ts +46 -0
  52. package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +26 -19
  53. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +16 -2
  54. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +24 -23
  55. package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +1 -1
  56. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
  57. package/src/impaktapps-ui-builder/builder/build/buildRankCard.ts +4 -10
  58. package/src/impaktapps-ui-builder/builder/build/buildSchema.ts +1 -2
  59. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +19 -8
  60. package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +9 -2
  61. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +39 -29
  62. package/src/impaktapps-ui-builder/builder/build/buildTextArea.ts +6 -0
  63. package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +22 -0
  64. package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +61 -0
  65. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +77 -57
  66. package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +16 -19
  67. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +16 -11
  68. package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +50 -27
  69. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +3 -2
  70. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +174 -80
  71. package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +1 -7
  72. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +171 -75
  73. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +43 -41
  74. package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +17 -7
  75. package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
  76. package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +78 -56
  77. package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +2 -12
  78. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +13 -141
  79. package/src/impaktapps-ui-builder/builder/build/uischema/leaderBoard.ts +10 -357
  80. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
  81. package/src/impaktapps-ui-builder/builder/build/uischema/progressBar.ts +1 -1
  82. package/src/impaktapps-ui-builder/builder/build/uischema/rankCard.ts +1 -1
  83. package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +15 -11
  84. package/src/impaktapps-ui-builder/builder/build/uischema/runnerBoyProgressBar.ts +1 -1
  85. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -6
  86. package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +5 -6
  87. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +125 -97
  88. package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -6
  89. package/src/impaktapps-ui-builder/builder/build/uischema/thoughtOfTheDay.ts +14 -0
  90. package/src/impaktapps-ui-builder/builder/build/uischema/timer.ts +2 -16
  91. package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
  92. package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +13 -13
  93. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +2 -1
  94. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +67 -19
  95. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +525 -166
  96. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +12 -2
  97. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +757 -321
  98. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +7 -2
  99. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +516 -269
  100. package/src/impaktapps-ui-builder/builder/services/component.ts +165 -73
  101. package/src/impaktapps-ui-builder/builder/services/event.ts +74 -13
  102. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +61 -20
  103. package/src/impaktapps-ui-builder/builder/services/utils.ts +13 -14
  104. package/src/impaktapps-ui-builder/lib/index.ts +1 -1
  105. package/src/impaktapps-ui-builder/runtime/services/downloadFile.ts +1 -1
  106. package/src/impaktapps-ui-builder/runtime/services/events.ts +154 -96
  107. package/src/impaktapps-ui-builder/runtime/services/interface.ts +3 -1
  108. package/src/impaktapps-ui-builder/runtime/services/service.ts +211 -49
  109. package/src/impaktapps-ui-builder/builder/build/uischema/lazyLoadingTable.ts +0 -14
@@ -1,5 +1,8 @@
1
1
  export declare const buildBasicUiSchema: (config: any) => {
2
2
  type: string;
3
- pageName: string;
3
+ pageName: any;
4
+ name: any;
5
+ accessorKey: any;
6
+ heading: any;
4
7
  elements: any[];
5
8
  };
@@ -1 +1 @@
1
- export declare const buildCard: (config: any, componentScope: any) => any;
1
+ export declare const buildCard: (config: any, componentScope: any, store: any) => any;
@@ -1,4 +1,4 @@
1
1
  declare const _default: (FormData: any) => any;
2
2
  export default _default;
3
3
  export declare const createLayoutFormat: (config: any[]) => any;
4
- export declare const flatObjectValueInArray: (config: any[]) => any[];
4
+ export declare const flatObjectValueInArray: (config?: any[]) => any[];
@@ -1 +1,2 @@
1
1
  export declare const buildDate: (config: any, componentScope: string) => any;
2
+ export declare const buildDateTime: (config: any, componentScope: string) => any;
@@ -0,0 +1 @@
1
+ export declare const buildInputSlider: (config: any, componentScope: any) => any;
@@ -1,2 +1 @@
1
1
  export declare const buildTable: (config: any, componentScope: string) => any;
2
- export declare const buildLazyLoadingTable: (config: any, componentScope: string) => any;
@@ -0,0 +1 @@
1
+ export declare const buildThoughtOfTheDay: (config: any, componentScope: any) => any;
@@ -0,0 +1 @@
1
+ export declare const buildTreeMap: (config: any, componentScope: any) => any;
@@ -8,5 +8,5 @@ export declare const buildSchema: (config: any, tableName?: string, isArrayType?
8
8
  properties: {};
9
9
  required: any[];
10
10
  };
11
- declare const buildUiSchema: (config: any) => any;
11
+ declare const buildUiSchema: (config: any, store?: any) => any;
12
12
  export default buildUiSchema;
@@ -22,6 +22,7 @@ export declare const APISection: {
22
22
  heading: string;
23
23
  minRows: number;
24
24
  hideButton: boolean;
25
+ enableCodeEditor: boolean;
25
26
  };
26
27
  };
27
28
  } | {
@@ -70,6 +71,24 @@ export declare const APISection: {
70
71
  };
71
72
  };
72
73
  layout?: undefined;
74
+ } | {
75
+ type: string;
76
+ scope: string;
77
+ options: {
78
+ widget: string;
79
+ elementLabelProp?: undefined;
80
+ detail?: undefined;
81
+ };
82
+ config: {
83
+ layout: {
84
+ xs: number;
85
+ sm: number;
86
+ md: number;
87
+ lg: number;
88
+ };
89
+ main?: undefined;
90
+ };
91
+ layout?: undefined;
73
92
  } | {
74
93
  type: string;
75
94
  scope: string;
@@ -78,7 +97,7 @@ export declare const APISection: {
78
97
  elementLabelProp: string;
79
98
  detail: {
80
99
  type: string;
81
- elements: {
100
+ elements: ({
82
101
  type: string;
83
102
  scope: string;
84
103
  options: {
@@ -95,7 +114,22 @@ export declare const APISection: {
95
114
  label: string;
96
115
  };
97
116
  };
98
- }[];
117
+ } | {
118
+ type: string;
119
+ scope: string;
120
+ options: {
121
+ widget: string;
122
+ };
123
+ config: {
124
+ layout: {
125
+ xs: number;
126
+ sm: number;
127
+ md: number;
128
+ lg: number;
129
+ };
130
+ main?: undefined;
131
+ };
132
+ })[];
99
133
  };
100
134
  widget?: undefined;
101
135
  };
@@ -1,4 +1,4 @@
1
- declare const _default: {
1
+ declare const Box: {
2
2
  type: string;
3
3
  scope: string;
4
4
  options: {
@@ -10,4 +10,4 @@ declare const _default: {
10
10
  style: {};
11
11
  };
12
12
  };
13
- export default _default;
13
+ export default Box;
@@ -1,3 +1,42 @@
1
+ export declare const getRadioInputField: (scope: String, label: String, options: string[]) => {
2
+ type: string;
3
+ scope: string;
4
+ options: {
5
+ widget: string;
6
+ };
7
+ config: {
8
+ layout: {
9
+ xs: number;
10
+ sm: number;
11
+ md: number;
12
+ lg: number;
13
+ };
14
+ main: {
15
+ label: String;
16
+ options: string[];
17
+ };
18
+ };
19
+ };
20
+ export declare const buildWrapper: (label: string, elements: any[]) => {
21
+ type: string;
22
+ config: {
23
+ main: {
24
+ label: string;
25
+ isAccordion: boolean;
26
+ };
27
+ wrapperStyle: {
28
+ marginTop: string;
29
+ marginBottom: string;
30
+ marginLeft: string;
31
+ width: string;
32
+ };
33
+ componentsBoxStyle: {
34
+ marginLeft: string;
35
+ };
36
+ defaultStyle: boolean;
37
+ };
38
+ elements: any[];
39
+ };
1
40
  export declare const getTextArea: (scope: string, heading: string, hideButton: boolean, layout?: any) => {
2
41
  type: string;
3
42
  scope: string;
@@ -20,6 +59,7 @@ export declare const getTextArea: (scope: string, heading: string, hideButton: b
20
59
  heading: string;
21
60
  minRows: number;
22
61
  hideButton: boolean;
62
+ enableCodeEditor: boolean;
23
63
  };
24
64
  };
25
65
  };
@@ -45,6 +85,26 @@ export declare const getSelectField: (scope: string, label: string, options: {
45
85
  };
46
86
  };
47
87
  };
88
+ export declare const getMultiSelectField: (scope: string, label: string) => {
89
+ type: string;
90
+ scope: string;
91
+ options: {
92
+ widget: string;
93
+ };
94
+ config: {
95
+ layout: {
96
+ xs: number;
97
+ sm: number;
98
+ md: number;
99
+ lg: number;
100
+ };
101
+ main: {
102
+ multiple: boolean;
103
+ label: string;
104
+ options: any[];
105
+ };
106
+ };
107
+ };
48
108
  export declare const buildPropertiesSection: (type: String) => {
49
109
  type: string;
50
110
  elements: any[];
@@ -5,16 +5,10 @@ declare const _default: {
5
5
  widget: string;
6
6
  };
7
7
  config: {
8
- layout: {
9
- xs: number;
10
- sm: number;
11
- md: number;
12
- lg: number;
13
- };
8
+ layout: number;
14
9
  main: {
15
10
  name: string;
16
11
  variant: string;
17
- color: string;
18
12
  type: string;
19
13
  startIcon: string;
20
14
  styleDefault: boolean;
@@ -1,21 +1,30 @@
1
- declare const _default: {
1
+ export default function Card(theme: any): {
2
2
  type: string;
3
3
  config: {
4
- main: {
5
- rowSpacing: number;
4
+ main: {};
5
+ wrapperStyle: {
6
+ position: string;
7
+ top: string;
8
+ transform: string;
6
9
  };
7
- style: {
8
- wrapperStyle: {
9
- position: string;
10
- color: string;
11
- height: {
12
- xs: string;
13
- md: string;
14
- };
15
- width: string;
16
- textAlign: string;
10
+ componentsBoxStyle: {
11
+ boxShadow: string;
12
+ flexDirection: string;
13
+ flexWrap: string;
14
+ width: string;
15
+ background: string;
16
+ border: string;
17
+ borderRadius: string;
18
+ padding: string;
19
+ height: string;
20
+ alignItems: string;
21
+ marginLeft: string;
22
+ "&: hover": {
17
23
  background: string;
18
- borderRadius: string;
24
+ border: string;
25
+ "& p": {
26
+ color: string;
27
+ };
19
28
  };
20
29
  };
21
30
  layout: {
@@ -27,94 +36,171 @@ declare const _default: {
27
36
  };
28
37
  elements: ({
29
38
  type: string;
30
- scope: string;
31
39
  config: {
32
- main: {
33
- heading: string;
34
- url?: undefined;
35
- };
36
- style: {
37
- position: string;
38
- left: string;
39
- top: string;
40
- color: string;
41
- height: string;
42
- display: string;
43
- fontSize: {
44
- xs: string;
45
- md: string;
46
- };
47
- alignItems: string;
48
- background: string;
49
- justifyContent: string;
50
- objectFit?: undefined;
51
- right?: undefined;
52
- width?: undefined;
53
- padding?: undefined;
54
- };
55
40
  layout: number;
41
+ main?: undefined;
42
+ style?: undefined;
56
43
  };
57
- options: {
58
- widget: string;
59
- };
60
- } | {
61
- type: string;
62
- scope: string;
63
- config: {
64
- main: {
65
- url: string;
66
- heading?: undefined;
67
- };
68
- style: {
69
- color: string;
70
- objectFit: string;
71
- position: string;
72
- top: string;
73
- right: string;
74
- height: string;
75
- width: string;
76
- display: string;
77
- fontSize: string;
78
- alignItems: string;
79
- background: string;
80
- padding: string;
81
- justifyContent: string;
82
- left?: undefined;
44
+ elements: {
45
+ type: string;
46
+ config: {
47
+ main: {
48
+ columnSpacing: number;
49
+ gap: number;
50
+ };
51
+ wrapperStyle: {
52
+ background: string;
53
+ };
54
+ componentsBoxStyle: {
55
+ flexDirection: string;
56
+ flexWrap: string;
57
+ width: string;
58
+ height: string;
59
+ background: string;
60
+ borderRadius: string;
61
+ };
62
+ layout: number;
83
63
  };
84
- layout: number;
85
- };
86
- options: {
87
- widget: string;
88
- };
64
+ elements: ({
65
+ type: string;
66
+ config: {
67
+ main: {
68
+ columnSpacing: number;
69
+ gap: number;
70
+ heading?: undefined;
71
+ };
72
+ wrapperStyle: {
73
+ background: string;
74
+ };
75
+ componentsBoxStyle: {
76
+ flexDirection: string;
77
+ flexWrap: string;
78
+ width: string;
79
+ height: string;
80
+ background: string;
81
+ borderRadius: string;
82
+ marginLeft: string;
83
+ marginTop: string;
84
+ justifyContent: string;
85
+ position: string;
86
+ };
87
+ layout: number;
88
+ style?: undefined;
89
+ };
90
+ elements: ({
91
+ type: string;
92
+ scope: string;
93
+ config: {
94
+ main: {
95
+ heading: string;
96
+ };
97
+ style: {
98
+ color: string;
99
+ display: string;
100
+ fontSize: {
101
+ xs: string;
102
+ md: string;
103
+ };
104
+ fontWeight: string;
105
+ background: string;
106
+ justifyContent: string;
107
+ width: string;
108
+ margin: string;
109
+ height: number;
110
+ position?: undefined;
111
+ left?: undefined;
112
+ };
113
+ };
114
+ options: {
115
+ widget: string;
116
+ };
117
+ } | {
118
+ type: string;
119
+ scope: string;
120
+ config: {
121
+ main: {
122
+ heading: string;
123
+ };
124
+ style: {
125
+ color: string;
126
+ display: string;
127
+ fontSize: {
128
+ xs: string;
129
+ md: string;
130
+ };
131
+ fontWeight: string;
132
+ background: string;
133
+ justifyContent: string;
134
+ width: string;
135
+ margin: string;
136
+ position: string;
137
+ left: string;
138
+ height?: undefined;
139
+ };
140
+ };
141
+ options: {
142
+ widget: string;
143
+ };
144
+ })[];
145
+ scope?: undefined;
146
+ options?: undefined;
147
+ } | {
148
+ type: string;
149
+ scope: string;
150
+ config: {
151
+ main: {
152
+ heading: string;
153
+ columnSpacing?: undefined;
154
+ gap?: undefined;
155
+ };
156
+ style: {
157
+ color: string;
158
+ fontSize: string;
159
+ justifyContent: string;
160
+ textWrap: string;
161
+ background: string;
162
+ width: string;
163
+ margin: string;
164
+ marginTop: string;
165
+ lineHeight: string;
166
+ };
167
+ layout: number;
168
+ wrapperStyle?: undefined;
169
+ componentsBoxStyle?: undefined;
170
+ };
171
+ options: {
172
+ widget: string;
173
+ };
174
+ elements?: undefined;
175
+ })[];
176
+ }[];
177
+ scope?: undefined;
178
+ options?: undefined;
89
179
  } | {
90
180
  type: string;
91
181
  scope: string;
92
182
  config: {
93
183
  main: {
94
- heading: string;
95
- url?: undefined;
184
+ url: string;
96
185
  };
97
186
  style: {
98
- position: string;
99
- top: string;
100
- alignItems: string;
101
- color: string;
102
- fontSize: string;
103
- left: string;
104
- background: string;
105
- justifyContent: string;
106
- height?: undefined;
107
- display?: undefined;
108
- objectFit?: undefined;
109
- right?: undefined;
110
- width?: undefined;
111
- padding?: undefined;
187
+ containerStyle: {
188
+ height: string;
189
+ display: string;
190
+ justifyContent: string;
191
+ };
192
+ imageStyle: {
193
+ fontSize: string;
194
+ padding: string;
195
+ margin: string;
196
+ height: string;
197
+ };
112
198
  };
113
199
  layout: number;
114
200
  };
115
201
  options: {
116
202
  widget: string;
117
203
  };
204
+ elements?: undefined;
118
205
  })[];
119
206
  };
120
- export default _default;
@@ -108,6 +108,21 @@ export declare const CoreSection: {
108
108
  errorMessage: string;
109
109
  };
110
110
  };
111
+ } | {
112
+ type: string;
113
+ scope: string;
114
+ config: {
115
+ layout: {
116
+ xs: number;
117
+ sm: number;
118
+ md: number;
119
+ lg: number;
120
+ };
121
+ main?: undefined;
122
+ };
123
+ options: {
124
+ widget: string;
125
+ };
111
126
  })[];
112
127
  };
113
128
  widget?: undefined;
@@ -18,3 +18,22 @@ declare const _default: {
18
18
  };
19
19
  };
20
20
  export default _default;
21
+ export declare const DateTime: {
22
+ type: string;
23
+ scope: string;
24
+ options: {
25
+ widget: string;
26
+ };
27
+ config: {
28
+ layout: {
29
+ xs: number;
30
+ sm: number;
31
+ md: number;
32
+ lg: number;
33
+ };
34
+ main: {
35
+ label: string;
36
+ type: string;
37
+ };
38
+ };
39
+ };