@axinom/mosaic-ui 0.2.3 → 0.3.0-rc.4

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 (31) hide show
  1. package/CHANGELOG.md +54 -40
  2. package/dist/components/DynamicDataList/DynamicDataList.d.ts +1 -1
  3. package/dist/components/DynamicDataList/DynamicDataList.d.ts.map +1 -1
  4. package/dist/components/Filters/Validators/NumberRangeFilterValidator.d.ts +29 -0
  5. package/dist/components/Filters/Validators/NumberRangeFilterValidator.d.ts.map +1 -0
  6. package/dist/components/Filters/Validators/index.d.ts +3 -0
  7. package/dist/components/Filters/Validators/index.d.ts.map +1 -0
  8. package/dist/components/Filters/index.d.ts +1 -1
  9. package/dist/components/Filters/index.d.ts.map +1 -1
  10. package/dist/components/FormElements/CustomTags/CustomTags.d.ts.map +1 -1
  11. package/dist/components/FormElements/Divider/Divider.d.ts +1 -2
  12. package/dist/components/FormElements/Divider/Divider.d.ts.map +1 -1
  13. package/dist/components/FormElements/FormElementContainer/FormElementContainer.d.ts +9 -0
  14. package/dist/components/FormElements/FormElementContainer/FormElementContainer.d.ts.map +1 -1
  15. package/dist/components/FormElements/FormGroupTitle/FormGroupTitle.d.ts +8 -0
  16. package/dist/components/FormElements/FormGroupTitle/FormGroupTitle.d.ts.map +1 -0
  17. package/dist/components/FormElements/GenericField/GenericField.d.ts +4 -1
  18. package/dist/components/FormElements/GenericField/GenericField.d.ts.map +1 -1
  19. package/dist/components/FormElements/ReadOnly/ReadOnlyField.d.ts +3 -1
  20. package/dist/components/FormElements/ReadOnly/ReadOnlyField.d.ts.map +1 -1
  21. package/dist/components/FormElements/ReadOnlyText/ReadOnlyTextField.d.ts +16 -0
  22. package/dist/components/FormElements/ReadOnlyText/ReadOnlyTextField.d.ts.map +1 -0
  23. package/dist/components/FormElements/Tags/Tags.d.ts.map +1 -1
  24. package/dist/components/FormElements/index.d.ts +5 -1
  25. package/dist/components/FormElements/index.d.ts.map +1 -1
  26. package/dist/components/Icons/Icons.d.ts.map +1 -1
  27. package/dist/components/Icons/Icons.models.d.ts +21 -20
  28. package/dist/components/Icons/Icons.models.d.ts.map +1 -1
  29. package/dist/index.es.js +4 -4
  30. package/dist/index.js +4 -4
  31. package/package.json +9 -11
package/CHANGELOG.md CHANGED
@@ -1,15 +1,29 @@
1
- # Changelog
1
+ # Change Log
2
2
 
3
- ## [0.2.3] - 2021-08-17
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
4
5
 
5
- ### Added
6
+ ### 0.2.6 (2021-09-01)
7
+
8
+ **Note:** Version bump only for package @axinom/mosaic-ui
9
+
10
+ ### [0.2.4] - 2021-08-31
11
+
12
+ #### Fixed
13
+
14
+ - Animations in Tags, CustomTags, DynamicDataList no longer shows when data is
15
+ loaded asynchrnously
16
+
17
+ ### [0.2.3] - 2021-08-17
18
+
19
+ #### Added
6
20
 
7
21
  - New 'InfoTooltip' component
8
22
  - Form elements can show a info tooltip. The tooltip content can be passed
9
23
  through 'tooltipContent' prop
10
24
  - Default sorting for Explorers
11
25
 
12
- ### Changed
26
+ #### Changed
13
27
 
14
28
  - useField hook is used instead of useFormikContext hook in form field
15
29
  components
@@ -19,24 +33,24 @@
19
33
  - Tags, CustomTags, DynamicDataList input fields are moved to first position
20
34
  - sortArray transformer does not modify original array
21
35
 
22
- ## [0.2.2] - 2021-08-03
36
+ ### [0.2.2] - 2021-08-03
23
37
 
24
- ### Fixed
38
+ #### Fixed
25
39
 
26
40
  - File upload field false positive validation error is fixed
27
41
  - Fixing an issue where the breadcrumb overflow element would sometimes gets
28
42
  added in expanded state'
29
43
  - Fixed an issue where 0 is not accepted by SingleLineText
30
44
 
31
- ## [0.2.1] - 2021-07-27
45
+ ### [0.2.1] - 2021-07-27
32
46
 
33
- ### Fixed
47
+ #### Fixed
34
48
 
35
49
  - Fixed an issue with context actions not showing correct confirmation color
36
50
 
37
- ## [0.2.0] - 2021-07-21
51
+ ### [0.2.0] - 2021-07-21
38
52
 
39
- ### Added
53
+ #### Added
40
54
 
41
55
  - Making it easier to add custom styling by adding a `className` prop to all
42
56
  components that can be used to pass in custom CSS classes that will be added
@@ -50,7 +64,7 @@
50
64
  - Explorer actions and bulk actions can now return or throw `ErrorType` objects
51
65
  to signalize an error during execution.
52
66
 
53
- ### Changed
67
+ #### Changed
54
68
 
55
69
  - max-width of input form elements are updated with default values
56
70
  - Custom Filters now get the current value passed through the props, to allow
@@ -60,7 +74,7 @@
60
74
  which should be used if the filter value is presented in the UI by passing it
61
75
  as optional parameter to the `onSelect` callback.
62
76
 
63
- ### Fixed
77
+ #### Fixed
64
78
 
65
79
  - Swapped GenerateArrayMutations order so that deletions are performed before
66
80
  additions
@@ -70,9 +84,9 @@
70
84
  - `reloadData` now also works when the list already loaded all pages from the
71
85
  backend
72
86
 
73
- ## [0.1.0] - 2021-06-21
87
+ ### [0.1.0] - 2021-06-21
74
88
 
75
- ### Added
89
+ #### Added
76
90
 
77
91
  - minimizedHeader option for EmptyStation.
78
92
  - `ErrorType` type, which defines the values that the stations can handle when
@@ -81,7 +95,7 @@
81
95
  - Adding optional property `modalMode` for Explorers for better visuals when the
82
96
  Explorer is used in a `Modal`
83
97
 
84
- ### Changed
98
+ #### Changed
85
99
 
86
100
  - Removed actionId property from both form action data and page header action
87
101
  data
@@ -99,14 +113,14 @@
99
113
  - `Explorer`s now render actual anchor tags to allow better navigation options
100
114
  (e.g. open in new tab)
101
115
 
102
- ### Fixed
116
+ #### Fixed
103
117
 
104
118
  - Error message bar covers user info dropdown
105
119
  - When selected, Options filter will display label instead of value
106
120
 
107
- ## [0.0.7] - 2021-05-31
121
+ ### [0.0.7] - 2021-05-31
108
122
 
109
- ### Added
123
+ #### Added
110
124
 
111
125
  - Advanced confirmation mode for actions, allowing for a more explicit
112
126
  confirmation experience with the option to add explanations and more
@@ -133,7 +147,7 @@
133
147
  - Validation for filters. Default Validation function for Date Range Filters.
134
148
  - Improvements for filter experience.
135
149
 
136
- ### Changed
150
+ #### Changed
137
151
 
138
152
  - `confirmationRequired` was removed from the Action and PageHeaderAction
139
153
  components and replaced with confirmationMode.
@@ -147,26 +161,26 @@
147
161
  - `ImageLoader` and `Loader` `primaryColor` and `secondaryColor` props renamed
148
162
  to `backgroundColor` and `foregroundColor`
149
163
 
150
- ### Removed
164
+ #### Removed
151
165
 
152
166
  - `createStateAndThumbnailRenderer` and related stories.
153
167
  - `ThumbnailRenderer` and related stories.
154
168
 
155
- ### Fixed
169
+ #### Fixed
156
170
 
157
171
  - Textarea hover and focus style issues.
158
172
 
159
- ## [0.0.6] - 2021-03-31
173
+ ### [0.0.6] - 2021-03-31
160
174
 
161
- ### Fixed
175
+ #### Fixed
162
176
 
163
177
  - Console errors in textarea component
164
178
  - Storybook error in Form Elements -> Main page is fixed
165
179
  - Hover effect is added to the '+' button in CustomTags component
166
180
 
167
- ## [0.0.5] - 2021-02-26
181
+ ### [0.0.5] - 2021-02-26
168
182
 
169
- ### Added
183
+ #### Added
170
184
 
171
185
  - Fallback image prop to InfoImage component
172
186
  - UX - home large tiles hover effect added
@@ -174,7 +188,7 @@
174
188
  - TitleCase Transformer
175
189
  - Publish and Snapshot Icons
176
190
 
177
- ### Changed
191
+ #### Changed
178
192
 
179
193
  - Added '+' button to the CustomTags component
180
194
  - FileUpload Control to use ProgressBar component
@@ -183,15 +197,15 @@
183
197
  - UX - spacing adjustments in hub station tiles
184
198
  - UX - file upload input border changed to gray
185
199
 
186
- ### Fixed
200
+ #### Fixed
187
201
 
188
202
  - The margin of the last section item in InfoPanels is now correct
189
203
  - Font styles in textarea and tags components are now consistent
190
204
  - InfoPanel now always stretches the whole height of the screen
191
205
 
192
- ## [0.0.4] - 2021-02-19
206
+ ### [0.0.4] - 2021-02-19
193
207
 
194
- ### Added
208
+ #### Added
195
209
 
196
210
  - InfoImage component which is used to render images in the InfoPanel component.
197
211
  - Optional 'onImageClick' callback to the ImageLoader component.
@@ -204,7 +218,7 @@
204
218
  - For tile icons, a react element can be passed. Different stroke colors will be
205
219
  applied based on tile type (small or large).
206
220
 
207
- ### Changed
221
+ #### Changed
208
222
 
209
223
  - ImageLoader now has separate height and width properties for the image
210
224
  element.
@@ -213,36 +227,36 @@
213
227
  - UX - list style adjusted for explorer, DDL, accordion - alternate style was
214
228
  removed due hard readability.
215
229
 
216
- ### Fixed
230
+ #### Fixed
217
231
 
218
232
  - Collapse misspelling in useExpand hook.
219
233
 
220
- ## [0.0.3] - 2021-02-04
234
+ ### [0.0.3] - 2021-02-04
221
235
 
222
- ### Added
236
+ #### Added
223
237
 
224
238
  - Transformer for converting Boolean values to String.
225
239
  - UI Library - added delete button icon.
226
240
 
227
- ### Changed
241
+ #### Changed
228
242
 
229
243
  - More appropriate Explorer Bulk actions typings.
230
244
  - Explorer Bulk actions will accept a reloadData value which will refresh the
231
245
  Explorer data once the bulk action is complete.
232
246
 
233
- ### Fixed
247
+ #### Fixed
234
248
 
235
249
  - GenericField minimum height is set to 50px.
236
250
 
237
- ## [0.0.2] - 2021-02-01
251
+ ### [0.0.2] - 2021-02-01
238
252
 
239
- ### Added
253
+ #### Added
240
254
 
241
255
  - New Filters for Date and DateTime.
242
256
  - RangeTransformer - Utility to transform an array of two filter values to a
243
257
  filter object that can be sent to a PostGraphile API.
244
258
 
245
- ### Changed
259
+ #### Changed
246
260
 
247
261
  - Filters will accept multiple FilterOptions for a single property. When a
248
262
  filter is selected these multiple filter values will be returned as an array.
@@ -255,11 +269,11 @@
255
269
  string if parsing failed.
256
270
  - LinkField will accept download property for HTML Anchor tag.
257
271
 
258
- ### Fixed
272
+ #### Fixed
259
273
 
260
274
  - Preventing the browser submit the form of a FormStation containing only a
261
275
  single text input filed, when the "Enter" key is pressed.
262
276
 
263
- ## [0.0.1]
277
+ ### [0.0.1]
264
278
 
265
279
  - First release.
@@ -56,7 +56,7 @@ export interface DynamicDataListProps<T extends Data> {
56
56
  maxItemLimit?: number;
57
57
  /** CSS Class name for additional styles */
58
58
  className?: string;
59
- /** Whether the header and input field should stick to the top (default: true) */
59
+ /** Whether the header and input field should stick to the top (default: false) */
60
60
  stickyHeader?: boolean;
61
61
  /** Raised when the list has changed */
62
62
  onChange?: (list: T[]) => void;
@@ -1 +1 @@
1
- {"version":3,"file":"DynamicDataList.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicDataList/DynamicDataList.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAA+B,MAAM,OAAO,CAAC;AAE9E,OAAO,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAEtD,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EACL,iBAAiB,EACjB,2BAA2B,EAC5B,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAEL,yBAAyB,EAC1B,MAAM,6CAA6C,CAAC;AAIrD,MAAM,WAAW,oBAAoB,CAAC,CAAC,SAAS,IAAI;IAClD;;;OAGG;IACH,OAAO,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,CAAC;IAChC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB;IAChB,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,8BAA8B;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sCAAsC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wBAAwB;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sBAAsB;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iEAAiE;IACjE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAG3B,2BAA2B;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,mCAAmC;IACnC,mBAAmB,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IAClD,iCAAiC;IACjC,iBAAiB,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IAC/C,yHAAyH;IACzH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,wFAAwF;IACxF,oBAAoB,CAAC,EAAE,MAAM,CAAC,CAAC;IAC/B,4EAA4E;IAC5E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,8DAA8D;IAC9D,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,mFAAmF;IACnF,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,+EAA+E;IAC/E,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,4DAA4D;IAC5D,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oGAAoG;IACpG,eAAe,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC;IACzD,6DAA6D;IAC7D,mBAAmB,CAAC,EAAE,oBAAoB,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC;IACtE,mFAAmF;IACnF,uBAAuB,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iFAAiF;IACjF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,uCAAuC;IACvC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;CAChC;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,ycA2BoB,WA2P/C,CAAC;AAyJF,eAAO,MAAM,gBAAgB,sDAGP,MAAM,eACb,MAAM,aACR,MAAM,GAAG,OAAO,6DAiL5B,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB,uCAGxB,MAAM,QAsCZ,CAAC"}
1
+ {"version":3,"file":"DynamicDataList.d.ts","sourceRoot":"","sources":["../../../src/components/DynamicDataList/DynamicDataList.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAA+B,MAAM,OAAO,CAAC;AAE9E,OAAO,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAEtD,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EACL,iBAAiB,EACjB,2BAA2B,EAC5B,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAEL,yBAAyB,EAC1B,MAAM,6CAA6C,CAAC;AAIrD,MAAM,WAAW,oBAAoB,CAAC,CAAC,SAAS,IAAI;IAClD;;;OAGG;IACH,OAAO,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,CAAC;IAChC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB;IAChB,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,8BAA8B;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sCAAsC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wBAAwB;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sBAAsB;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iEAAiE;IACjE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAG3B,2BAA2B;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,mCAAmC;IACnC,mBAAmB,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IAClD,iCAAiC;IACjC,iBAAiB,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IAC/C,yHAAyH;IACzH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,wFAAwF;IACxF,oBAAoB,CAAC,EAAE,MAAM,CAAC,CAAC;IAC/B,4EAA4E;IAC5E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,8DAA8D;IAC9D,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,mFAAmF;IACnF,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,+EAA+E;IAC/E,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,4DAA4D;IAC5D,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oGAAoG;IACpG,eAAe,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC;IACzD,6DAA6D;IAC7D,mBAAmB,CAAC,EAAE,oBAAoB,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC;IACtE,mFAAmF;IACnF,uBAAuB,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kFAAkF;IAClF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,uCAAuC;IACvC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;CAChC;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,ycA2BoB,WAmQ/C,CAAC;AAyJF,eAAO,MAAM,gBAAgB,sDAGP,MAAM,eACb,MAAM,aACR,MAAM,GAAG,OAAO,6DAiL5B,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB,uCAGxB,MAAM,QAsCZ,CAAC"}
@@ -0,0 +1,29 @@
1
+ import { FilterValidatorFunction } from '../Filters.model';
2
+ interface NumberRangeFilterValidatorOptions {
3
+ fromIndex: number;
4
+ toIndex: number;
5
+ }
6
+ /**
7
+ * Generates two functions for validating Number Ranges. Inputs for this function expects the number filters to be defined under a single key in FilterValues.
8
+ *
9
+ * @param options Sets the options for the number range filter validators. Default { fromNumberIndex: 0, toNumberIndex: 1 }.
10
+ * @example
11
+ * const [createFromValidator, createToValidator] = createNumberRangeValidators<T>();
12
+ * const filters = FilterType<T>[] = {
13
+ * {
14
+ * label: 'Duration (From)',
15
+ * property: 'duration',
16
+ * type: FilterTypes.Numeric,
17
+ * onValidate: createFromValidator('duration'),
18
+ * },
19
+ * {
20
+ * label: 'Duration (To)',
21
+ * property: 'duration',
22
+ * type: FilterTypes.Numeric,
23
+ * onValidate: createToValidator('duration'),
24
+ * }
25
+ * }
26
+ */
27
+ export declare const createNumberRangeFilterValidators: <T>(options?: NumberRangeFilterValidatorOptions) => [(key: keyof T) => FilterValidatorFunction<T>, (key: keyof T) => FilterValidatorFunction<T>];
28
+ export {};
29
+ //# sourceMappingURL=NumberRangeFilterValidator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NumberRangeFilterValidator.d.ts","sourceRoot":"","sources":["../../../../src/components/Filters/Validators/NumberRangeFilterValidator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,UAAU,iCAAiC;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,iCAAiC,gBACnC,iCAAiC,iGAqC3C,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './DateRangeFilterValidator';
2
+ export * from './NumberRangeFilterValidator';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Filters/Validators/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,8BAA8B,CAAC"}
@@ -1,4 +1,4 @@
1
1
  export { Filters } from './Filters';
2
2
  export * from './Filters.model';
3
- export * from './Validators/DateRangeFilterValidator';
3
+ export * from './Validators';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Filters/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uCAAuC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Filters/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"CustomTags.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/CustomTags/CustomTags.tsx"],"names":[],"mappings":"AACA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAMtE,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAclE,MAAM,WAAW,eAAgB,SAAQ,eAAe,EAAE,eAAe;IACvE,0CAA0C;IAC1C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,wBAAwB;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uEAAuE;IACvE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,2DAA2D;IAC3D,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,0GAA0G;IAC1G,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,kIAAkI;IAClI,uBAAuB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC;CAC3E;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA6RhD,CAAC"}
1
+ {"version":3,"file":"CustomTags.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/CustomTags/CustomTags.tsx"],"names":[],"mappings":"AACA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAMtE,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAclE,MAAM,WAAW,eAAgB,SAAQ,eAAe,EAAE,eAAe;IACvE,0CAA0C;IAC1C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,wBAAwB;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uEAAuE;IACvE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,2DAA2D;IAC3D,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,0GAA0G;IAC1G,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,kIAAkI;IAClI,uBAAuB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC;CAC3E;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAqShD,CAAC"}
@@ -1,7 +1,6 @@
1
1
  import React from 'react';
2
- interface DividerProps {
2
+ export interface DividerProps {
3
3
  className?: string;
4
4
  }
5
5
  export declare const Divider: React.FC<DividerProps>;
6
- export {};
7
6
  //# sourceMappingURL=Divider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Divider.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/Divider/Divider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAI1C,CAAC"}
1
+ {"version":3,"file":"Divider.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/Divider/Divider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,YAAY;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAI1C,CAAC"}
@@ -1,7 +1,16 @@
1
1
  import React from 'react';
2
2
  import { BaseFormElement } from '../Form.models';
3
3
  export declare type FormElementContainerProps = BaseFormElement & {
4
+ /** Optional error message to display */
4
5
  error?: string | undefined;
6
+ /** Height of the label (default: 50px) */
7
+ labelHeight?: string;
5
8
  };
9
+ /**
10
+ * A Container Component which renders the label and content which is used as the base for all Form Elements.
11
+ * @example <FormElementContainer label={label}>
12
+ * {fieldContent}
13
+ * </FormElementContainer>
14
+ */
6
15
  export declare const FormElementContainer: React.FC<FormElementContainerProps>;
7
16
  //# sourceMappingURL=FormElementContainer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FormElementContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/FormElementContainer/FormElementContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGjD,oBAAY,yBAAyB,GAAG,eAAe,GAAG;IACxD,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAoBpE,CAAC"}
1
+ {"version":3,"file":"FormElementContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/FormElementContainer/FormElementContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAwB,MAAM,OAAO,CAAC;AAE7C,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGjD,oBAAY,yBAAyB,GAAG,eAAe,GAAG;IACxD,wCAAwC;IACxC,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE3B,0CAA0C;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CA8BpE,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface FormGroupTitleProps {
3
+ className?: string;
4
+ /** Group title to display */
5
+ title: string;
6
+ }
7
+ export declare const FormGroupTitle: React.FC<FormGroupTitleProps>;
8
+ //# sourceMappingURL=FormGroupTitle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormGroupTitle.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/FormGroupTitle/FormGroupTitle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6BAA6B;IAC7B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAOxD,CAAC"}
@@ -1,6 +1,9 @@
1
1
  import React from 'react';
2
2
  import { BaseFormControl } from '../Form.models';
3
- export declare type GenericFieldProps = BaseFormControl;
3
+ export declare type GenericFieldProps = BaseFormControl & {
4
+ /** Height of the label (default: 50px) */
5
+ labelHeight?: string;
6
+ };
4
7
  /**
5
8
  * A Generic Field component which can be used to create custom Field component using the styles from @axinom/mosaic-ui.
6
9
  * @example <GenericField label={label} name={name}>
@@ -1 +1 @@
1
- {"version":3,"file":"GenericField.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/GenericField/GenericField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,oBAAY,iBAAiB,GAAG,eAAe,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAqBpD,CAAC"}
1
+ {"version":3,"file":"GenericField.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/GenericField/GenericField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,oBAAY,iBAAiB,GAAG,eAAe,GAAG;IAChD,0CAA0C;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAuBpD,CAAC"}
@@ -6,11 +6,13 @@ export interface ReadOnlyFieldProps<T = any> extends BaseFormElement {
6
6
  value?: any;
7
7
  /** Transform functions */
8
8
  transform?: TransformerFunction<T>;
9
+ /** Sets whether the field should not be visible if the value is empty (default: false) */
10
+ hideIfEmpty?: boolean;
9
11
  }
10
12
  /**
11
13
  * This component renders a read only field into a form.
12
14
  * @props **transform**: an array of transform functions which will be executed sequentially during render time passing the output from each function to the next.
13
15
  * The last transform function must return a single object or array of a type which can be rendered directly _( i.e. string | number | string[] | number[] )_.
14
16
  */
15
- export declare const ReadOnlyField: <T>({ id, label, value, transform, className, tooltipContent, }: React.PropsWithChildren<ReadOnlyFieldProps<T>>) => JSX.Element;
17
+ export declare const ReadOnlyField: <T>({ id, label, value, transform, className, tooltipContent, hideIfEmpty, }: React.PropsWithChildren<ReadOnlyFieldProps<T>>) => JSX.Element;
16
18
  //# sourceMappingURL=ReadOnlyField.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ReadOnlyField.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/ReadOnly/ReadOnlyField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,MAAM,WAAW,kBAAkB,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,eAAe;IAClE,4BAA4B;IAC5B,KAAK,CAAC,EAAE,GAAG,CAAC;IAEZ,0BAA0B;IAC1B,SAAS,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC;CACpC;AACD;;;;GAIG;AACH,eAAO,MAAM,aAAa,sHAOoB,WAe7C,CAAC"}
1
+ {"version":3,"file":"ReadOnlyField.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/ReadOnly/ReadOnlyField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,MAAM,WAAW,kBAAkB,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,eAAe;IAClE,4BAA4B;IAC5B,KAAK,CAAC,EAAE,GAAG,CAAC;IAEZ,0BAA0B;IAC1B,SAAS,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC;IAEnC,0FAA0F;IAC1F,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AACD;;;;GAIG;AACH,eAAO,MAAM,aAAa,mIAQoB,WAqB7C,CAAC"}
@@ -0,0 +1,16 @@
1
+ import React, { PropsWithChildren } from 'react';
2
+ import { TransformerFunction } from '../../Utils';
3
+ import { BaseFormElement } from '../Form.models';
4
+ export interface ReadOnlyTextFieldProps<T = any> extends BaseFormElement {
5
+ /** Value to be displayed */
6
+ value?: any;
7
+ /** Transform functions */
8
+ transform?: TransformerFunction<T>;
9
+ }
10
+ /**
11
+ * This component renders a read only field into a form.
12
+ * @props **transform**: an array of transform functions which will be executed sequentially during render time passing the output from each function to the next.
13
+ * The last transform function must return a single object or array of a type which can be rendered directly _( i.e. string | number | string[] | number[] )_.
14
+ */
15
+ export declare const ReadOnlyTextField: <T>({ id, label, value, transform, className, tooltipContent, }: React.PropsWithChildren<ReadOnlyTextFieldProps<T>>) => JSX.Element;
16
+ //# sourceMappingURL=ReadOnlyTextField.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReadOnlyTextField.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/ReadOnlyText/ReadOnlyTextField.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAIjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,MAAM,WAAW,sBAAsB,CAAC,CAAC,GAAG,GAAG,CAAE,SAAQ,eAAe;IACtE,4BAA4B;IAC5B,KAAK,CAAC,EAAE,GAAG,CAAC;IAEZ,0BAA0B;IAC1B,SAAS,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC;CACpC;AACD;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,0HAOoB,WAiCjD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Tags.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/Tags/Tags.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAEZ,iBAAiB,EAIlB,MAAM,OAAO,CAAC;AAKf,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAInE,MAAM,WAAW,SAAS,CAAC,CAAC,GAAG,MAAM,CACnC,SAAQ,eAAe,EACrB,gBAAgB;IAClB,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,iDAAiD;IACjD,WAAW,CAAC,EAAE,CAAC,EAAE,CAAC;IAClB,4CAA4C;IAC5C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,uEAAuE;IACvE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gHAAgH;IAChH,UAAU,CAAC,EAAE,MAAM,CAAC,CAAC;IACrB,wGAAwG;IACxG,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;CACpB;AAED,eAAO,MAAM,IAAI,iNAiBoB,WAqJpC,CAAC"}
1
+ {"version":3,"file":"Tags.d.ts","sourceRoot":"","sources":["../../../../src/components/FormElements/Tags/Tags.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAEZ,iBAAiB,EAIlB,MAAM,OAAO,CAAC;AAKf,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAInE,MAAM,WAAW,SAAS,CAAC,CAAC,GAAG,MAAM,CACnC,SAAQ,eAAe,EACrB,gBAAgB;IAClB,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,iDAAiD;IACjD,WAAW,CAAC,EAAE,CAAC,EAAE,CAAC;IAClB,4CAA4C;IAC5C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,uEAAuE;IACvE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gHAAgH;IAChH,UAAU,CAAC,EAAE,MAAM,CAAC,CAAC;IACrB,wGAAwG;IACxG,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;CACpB;AAED,eAAO,MAAM,IAAI,iNAiBoB,WA6JpC,CAAC"}
@@ -5,18 +5,21 @@ export { CustomTags, CustomTagsProps } from './CustomTags/CustomTags';
5
5
  export { CustomTagsField } from './CustomTags/CustomTagsField';
6
6
  export { DateTimeText, DateTimeTextProps } from './DateTimeField/DateTimeText';
7
7
  export { DateTimeTextField } from './DateTimeField/DateTimeTextField';
8
- export { Divider } from './Divider/Divider';
8
+ export { Divider, DividerProps } from './Divider/Divider';
9
9
  export { DynamicDataListControl, DynamicDataListControlProps, } from './DynamicDataListControl/DynamicDataListControl';
10
10
  export { DynamicDataListField } from './DynamicDataListControl/DynamicDataListField';
11
11
  export { FileUpload, FileUploadControl, FileUploadProps, } from './FileUploadControl/FileUploadControl';
12
12
  export { FileUploadField } from './FileUploadControl/FileUploadField';
13
13
  export * from './Form.models';
14
+ export { FormElementContainer } from './FormElementContainer';
15
+ export { FormGroupTitle, FormGroupTitleProps, } from './FormGroupTitle/FormGroupTitle';
14
16
  export { FormikDebug } from './FormikDebug/FormikDebug';
15
17
  export { GenericField, GenericFieldProps } from './GenericField/GenericField';
16
18
  export { LinkField, LinkFieldProps } from './Link/LinkField';
17
19
  export { Radio, RadioProps } from './Radio/Radio';
18
20
  export { RadioField } from './Radio/RadioField';
19
21
  export { ReadOnlyField, ReadOnlyFieldProps } from './ReadOnly/ReadOnlyField';
22
+ export { ReadOnlyTextField, ReadOnlyTextFieldProps, } from './ReadOnlyText/ReadOnlyTextField';
20
23
  export { Select, SelectProps } from './Select/Select';
21
24
  export { SelectField } from './Select/SelectField';
22
25
  export { SingleLineText, SingleLineTextProps, } from './SingleLineText/SingleLineText';
@@ -25,4 +28,5 @@ export { Tags, TagsProps } from './Tags/Tags';
25
28
  export { TagsField } from './Tags/TagsField';
26
29
  export { TextArea, TextAreaProps } from './TextArea/TextArea';
27
30
  export { TextAreaField } from './TextArea/TextAreaField';
31
+ export { useFormikError } from './useFormikError';
28
32
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/FormElements/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,qBAAqB,GACtB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EACL,sBAAsB,EACtB,2BAA2B,GAC5B,MAAM,iDAAiD,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,EACL,UAAU,EACV,iBAAiB,EACjB,eAAe,GAChB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EACL,cAAc,EACd,mBAAmB,GACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAC3E,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/FormElements/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,qBAAqB,GACtB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EACL,sBAAsB,EACtB,2BAA2B,GAC5B,MAAM,iDAAiD,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,EACL,UAAU,EACV,iBAAiB,EACjB,eAAe,GAChB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EACL,cAAc,EACd,mBAAmB,GACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EACL,iBAAiB,EACjB,sBAAsB,GACvB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EACL,cAAc,EACd,mBAAmB,GACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAC3E,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/Icons.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAG1C,MAAM,WAAW,UAAU;IACzB,gBAAgB;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAwdD;;;;GAIG;AACH,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CA6CtC,CAAC"}
1
+ {"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/Icons.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAG1C,MAAM,WAAW,UAAU;IACzB,gBAAgB;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AA0eD;;;;GAIG;AACH,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CA8CtC,CAAC"}
@@ -10,25 +10,26 @@ export declare enum IconName {
10
10
  ChevronLeft = 5,
11
11
  ChevronRight = 6,
12
12
  ChevronUp = 7,
13
- Delete = 8,
14
- Details = 9,
15
- Drag = 10,
16
- Ellipsis = 11,
17
- External = 12,
18
- File = 13,
19
- Info = 14,
20
- Minus = 15,
21
- Plus = 16,
22
- Publish = 17,
23
- RemoveFilter = 18,
24
- Retry = 19,
25
- Replace = 20,
26
- Snapshot = 21,
27
- Success = 22,
28
- Undo = 23,
29
- Unpublish = 24,
30
- Upload = 25,
31
- Warning = 26,
32
- X = 27
13
+ Copy = 8,
14
+ Delete = 9,
15
+ Details = 10,
16
+ Drag = 11,
17
+ Ellipsis = 12,
18
+ External = 13,
19
+ File = 14,
20
+ Info = 15,
21
+ Minus = 16,
22
+ Plus = 17,
23
+ Publish = 18,
24
+ RemoveFilter = 19,
25
+ Retry = 20,
26
+ Replace = 21,
27
+ Snapshot = 22,
28
+ Success = 23,
29
+ Undo = 24,
30
+ Unpublish = 25,
31
+ Upload = 26,
32
+ Warning = 27,
33
+ X = 28
33
34
  }
34
35
  //# sourceMappingURL=Icons.models.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Icons.models.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/Icons.models.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,QAAQ;IAClB,OAAO,IAAA;IACP,IAAI,IAAA;IACJ,QAAQ,IAAA;IACR,SAAS,IAAA;IACT,WAAW,IAAA;IACX,WAAW,IAAA;IACX,YAAY,IAAA;IACZ,SAAS,IAAA;IACT,MAAM,IAAA;IACN,OAAO,IAAA;IACP,IAAI,KAAA;IACJ,QAAQ,KAAA;IACR,QAAQ,KAAA;IACR,IAAI,KAAA;IACJ,IAAI,KAAA;IACJ,KAAK,KAAA;IACL,IAAI,KAAA;IACJ,OAAO,KAAA;IACP,YAAY,KAAA;IACZ,KAAK,KAAA;IACL,OAAO,KAAA;IACP,QAAQ,KAAA;IACR,OAAO,KAAA;IACP,IAAI,KAAA;IACJ,SAAS,KAAA;IACT,MAAM,KAAA;IACN,OAAO,KAAA;IACP,CAAC,KAAA;CACF"}
1
+ {"version":3,"file":"Icons.models.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/Icons.models.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,QAAQ;IAClB,OAAO,IAAA;IACP,IAAI,IAAA;IACJ,QAAQ,IAAA;IACR,SAAS,IAAA;IACT,WAAW,IAAA;IACX,WAAW,IAAA;IACX,YAAY,IAAA;IACZ,SAAS,IAAA;IACT,IAAI,IAAA;IACJ,MAAM,IAAA;IACN,OAAO,KAAA;IACP,IAAI,KAAA;IACJ,QAAQ,KAAA;IACR,QAAQ,KAAA;IACR,IAAI,KAAA;IACJ,IAAI,KAAA;IACJ,KAAK,KAAA;IACL,IAAI,KAAA;IACJ,OAAO,KAAA;IACP,YAAY,KAAA;IACZ,KAAK,KAAA;IACL,OAAO,KAAA;IACP,QAAQ,KAAA;IACR,OAAO,KAAA;IACP,IAAI,KAAA;IACJ,SAAS,KAAA;IACT,MAAM,KAAA;IACN,OAAO,KAAA;IACP,CAAC,KAAA;CACF"}