@formio/uswds 2.3.9-rc.2 → 2.4.0-rc.3
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/Changelog.md +19 -3
- package/dist/uswds.css +21 -12
- package/dist/uswds.js +7 -7
- package/dist/uswds.min.css +1 -1
- package/dist/uswds.min.js +1 -1
- package/lib/css/styles.css +21 -12
- package/lib/index.d.ts +12 -0
- package/lib/sass/styles.scss +18 -7
- package/lib/templates/index.d.ts +12 -0
- package/lib/templates/uswds/componentModal/form.ejs.js +1 -1
- package/lib/templates/uswds/cssClasses.d.ts +11 -0
- package/lib/templates/uswds/cssClasses.js +12 -1
- package/lib/templates/uswds/index.d.ts +12 -0
- package/lib/templates/uswds/index.js +10 -0
- package/lib/templates/uswds/input/form.ejs.js +11 -1
- package/lib/templates/uswds/radio/form.ejs.js +3 -3
- package/lib/templates/uswds/tab/form.ejs.js +3 -3
- package/lib/templates/uswds/wizardHeader/form.ejs.js +3 -1
- package/package.json +6 -6
package/Changelog.md
CHANGED
|
@@ -4,13 +4,29 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
-
## 2.
|
|
7
|
+
## 2.4.0-rc.3
|
|
8
8
|
### Fixed
|
|
9
|
-
- FIO-
|
|
9
|
+
- FIO-3758: Duplication of radio ids inside nested forms
|
|
10
10
|
|
|
11
|
-
## 2.
|
|
11
|
+
## 2.4.0-rc.2
|
|
12
12
|
### Fixed
|
|
13
13
|
- FIO-3758: Duplication of radio ids inside nested forms
|
|
14
|
+
- FIO-3782 Fixed outline for choicesjs select in PDF
|
|
15
|
+
|
|
16
|
+
## 2.4.0-rc.1
|
|
17
|
+
### Changed
|
|
18
|
+
- Upgrade formiojs@4.14.0-rc.23
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- FIO-3656 Fixed issue when columns were not auto collapsing in some cases
|
|
22
|
+
- FIO-3519 Made 'scroll on top' option in wizard to scroll to the top of progressbar
|
|
23
|
+
- Changes for 2.4.0 uswds release:
|
|
24
|
+
- FIO-3208 Fixed issue when description was displaying under charcount
|
|
25
|
+
- FIO-3206 Fixed styles for labels
|
|
26
|
+
- FIO-2648 Adjusted uswds styles to work with vpat
|
|
27
|
+
- FIO-2546 Fixed focus outline of builder modal buttons, which were not fully visible for Content component
|
|
28
|
+
- FIO-2544 Fixed issue when suffixes and prefixes were displayed wrong on a big scale
|
|
29
|
+
- FIO-2535 Fixed modal buttons that were displaying outside of modal window in FMG
|
|
14
30
|
|
|
15
31
|
## 2.3.8
|
|
16
32
|
### Fixed
|
package/dist/uswds.css
CHANGED
|
@@ -79,8 +79,8 @@ span[role=link]:hover {
|
|
|
79
79
|
margin: 0.5em 0 0.3em;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
.formio-dialog.formio-dialog-theme-default .
|
|
83
|
-
padding:
|
|
82
|
+
.formio-dialog.formio-dialog-theme-default .component-edit-container {
|
|
83
|
+
padding: 0.6em;
|
|
84
84
|
}
|
|
85
85
|
.formio-dialog.formio-dialog-theme-default .formio-dialog-content .formio-dialog-close {
|
|
86
86
|
right: 4px;
|
|
@@ -95,7 +95,16 @@ span[role=link]:hover {
|
|
|
95
95
|
color: #6b6b6b;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
.formio-dialog-content .usa-label {
|
|
99
|
+
padding-right: 30px;
|
|
100
|
+
}
|
|
101
|
+
.formio-dialog-content .usa-label label {
|
|
102
|
+
padding-right: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
98
105
|
.formio-dialog-buttons {
|
|
106
|
+
display: flex;
|
|
107
|
+
justify-content: flex-end;
|
|
99
108
|
margin: 0 -0.5rem;
|
|
100
109
|
}
|
|
101
110
|
|
|
@@ -176,7 +185,7 @@ span[role=link]:hover {
|
|
|
176
185
|
.input-group .usa-input, .input-group .usa-textarea {
|
|
177
186
|
position: relative;
|
|
178
187
|
z-index: 1;
|
|
179
|
-
width:
|
|
188
|
+
width: 1%;
|
|
180
189
|
min-width: 50px;
|
|
181
190
|
flex-grow: 1;
|
|
182
191
|
margin-top: 0;
|
|
@@ -267,11 +276,11 @@ span[role=link]:hover {
|
|
|
267
276
|
transition: width 0.6s ease;
|
|
268
277
|
}
|
|
269
278
|
|
|
270
|
-
.tooltip__trigger {
|
|
279
|
+
.formio-tooltip__trigger {
|
|
271
280
|
cursor: pointer;
|
|
272
281
|
}
|
|
273
282
|
|
|
274
|
-
.tooltip__body {
|
|
283
|
+
.formio-tooltip__body {
|
|
275
284
|
background-color: #1b1b1b;
|
|
276
285
|
border-radius: 0.25rem;
|
|
277
286
|
bottom: 0;
|
|
@@ -286,32 +295,32 @@ span[role=link]:hover {
|
|
|
286
295
|
white-space: pre;
|
|
287
296
|
z-index: 1000;
|
|
288
297
|
}
|
|
289
|
-
.tooltip__body.is-set {
|
|
298
|
+
.formio-tooltip__body.formio-tooltip--is-set {
|
|
290
299
|
display: block;
|
|
291
300
|
}
|
|
292
|
-
.tooltip__body--whitespace {
|
|
301
|
+
.formio-tooltip__body--whitespace {
|
|
293
302
|
white-space: normal;
|
|
294
303
|
width: 250px;
|
|
295
304
|
}
|
|
296
|
-
.tooltip__body--right {
|
|
305
|
+
.formio-tooltip__body--right {
|
|
297
306
|
top: auto;
|
|
298
307
|
transform: translateX(0);
|
|
299
308
|
}
|
|
300
|
-
.tooltip__body--left {
|
|
309
|
+
.formio-tooltip__body--left {
|
|
301
310
|
top: auto;
|
|
302
311
|
left: 0;
|
|
303
312
|
right: auto;
|
|
304
313
|
transform: translateX(0);
|
|
305
314
|
}
|
|
306
|
-
.tooltip__body--bottom {
|
|
315
|
+
.formio-tooltip__body--bottom {
|
|
307
316
|
bottom: auto;
|
|
308
317
|
top: 0;
|
|
309
318
|
}
|
|
310
319
|
|
|
311
|
-
.tooltip__wrapper {
|
|
320
|
+
.formio-tooltip__wrapper {
|
|
312
321
|
position: relative;
|
|
313
322
|
}
|
|
314
|
-
.tooltip__wrapper > span {
|
|
323
|
+
.formio-tooltip__wrapper > span {
|
|
315
324
|
font-weight: normal;
|
|
316
325
|
}
|
|
317
326
|
|
package/dist/uswds.js
CHANGED
|
@@ -472,7 +472,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
472
472
|
\********************************************************/
|
|
473
473
|
/***/ (function(__unused_webpack_module, exports) {
|
|
474
474
|
|
|
475
|
-
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"formio-component-modal-wrapper formio-component-modal-wrapper-' +\n((__t = ( ctx.component.type )) == null ? '' : __t) +\n'\" ref=\"componentModalWrapper\">\\n <div ref=\"openModalWrapper\"></div>\\n <div class=\"formio-dialog formio-dialog-theme-default component-rendering-hidden\" ref=\"modalWrapper\">\\n <div class=\"formio-dialog-overlay\" ref=\"modalOverlay\"></div>\\n <div class=\"formio-dialog-content\" aria-labelledby=\"ml-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\" ';\n if (!ctx.self.isIE()) { ;\n__p += ' role=\"dialog\" ';\n } ;\n__p += ' ref=\"modalContents\">\\n <label class=\"usa-sr-only\" id=\"ml-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\">' +\n((__t = ( ctx.t(ctx.component.label) )) == null ? '' : __t) +\n'' +\n((__t = (ctx.self.isIE() ? ', dialog' : '')) == null ? '' : __t) +\n'</label>\\n <button class=\"formio-dialog-close float-right\" title=\"Close\" aria-label=\"Close button. Click to get back to the form\" ref=\"modalCloseButton\"></button>\\n <div ref=\"modalContents\">\\n ';\n if (ctx.visible) { ;\n__p += '\\n ' +\n((__t = (ctx.children)) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n <div class=\"formio-dialog-buttons
|
|
475
|
+
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"formio-component-modal-wrapper formio-component-modal-wrapper-' +\n((__t = ( ctx.component.type )) == null ? '' : __t) +\n'\" ref=\"componentModalWrapper\">\\n <div ref=\"openModalWrapper\"></div>\\n <div class=\"formio-dialog formio-dialog-theme-default component-rendering-hidden\" ref=\"modalWrapper\">\\n <div class=\"formio-dialog-overlay\" ref=\"modalOverlay\"></div>\\n <div class=\"formio-dialog-content\" aria-labelledby=\"ml-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\" ';\n if (!ctx.self.isIE()) { ;\n__p += ' role=\"dialog\" ';\n } ;\n__p += ' ref=\"modalContents\">\\n <label class=\"usa-sr-only\" id=\"ml-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\">' +\n((__t = ( ctx.t(ctx.component.label) )) == null ? '' : __t) +\n'' +\n((__t = (ctx.self.isIE() ? ', dialog' : '')) == null ? '' : __t) +\n'</label>\\n <button class=\"formio-dialog-close float-right\" title=\"Close\" aria-label=\"Close button. Click to get back to the form\" ref=\"modalCloseButton\"></button>\\n <div ref=\"modalContents\">\\n ';\n if (ctx.visible) { ;\n__p += '\\n ' +\n((__t = (ctx.children)) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n <div class=\"formio-dialog-buttons\">\\n <button class=\"usa-button usa-button--secondary\" ref=\"modalClose\" aria-label=\"Cancel button. Click to cancel the changes and get back to the form.\">' +\n((__t = (ctx.t('Cancel'))) == null ? '' : __t) +\n'</button>\\n <button class=\"usa-button\" ref=\"modalSave\" aria-label=\"Save button. Click to save the changes and get back to the form.\">' +\n((__t = (ctx.t('Save'))) == null ? '' : __t) +\n'</button>\\n </div>\\n </div>\\n <span class=\"usa-sr-only\" ref=\"modalLiveRegion\" aria-live=\"assertive\"></span>\\n </div>\\n </div>\\n</div>\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/componentModal/form.ejs.js?");
|
|
476
476
|
|
|
477
477
|
/***/ }),
|
|
478
478
|
|
|
@@ -515,7 +515,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
515
515
|
/***/ (function(__unused_webpack_module, exports) {
|
|
516
516
|
|
|
517
517
|
"use strict";
|
|
518
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.default = {\n 'formio-tab-panel-active': 'usa-current',\n 'formio-tab-link-active': 'usa-current',\n 'formio-tab-link-container-active': 'usa-current'
|
|
518
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.default = {\n 'formio-tab-panel-active': 'usa-current',\n 'formio-tab-link-active': 'usa-current',\n 'formio-tab-link-container-active': 'usa-current',\n 'sr-only': 'usa-sr-only',\n 'formio-form-error': 'usa-form-group--error',\n 'formio-label-error': 'usa-label--error',\n 'formio-input-success': 'usa-input--success',\n 'formio-input-error': 'usa-input--error',\n 'formio-modal-save': 'usa-error',\n 'formio-alert-danger': 'usa-alert usa-alert--error usa-alert--no-icon',\n 'formio-alert-success': 'usa-alert usa-alert--success usa-alert--no-icon',\n 'formio-modal-cancel-button': 'usa-button usa-button--secondary',\n 'formio-modal-confirm-button': 'usa-button',\n 'form-control ui fluid selection dropdown': 'usa-select maxw-full',\n};\n\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/cssClasses.js?");
|
|
519
519
|
|
|
520
520
|
/***/ }),
|
|
521
521
|
|
|
@@ -756,7 +756,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
756
756
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
757
757
|
|
|
758
758
|
"use strict";
|
|
759
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar address_1 = __webpack_require__(/*! ./address */ \"./lib/templates/uswds/address/index.js\");\nvar alert_1 = __webpack_require__(/*! ./alert */ \"./lib/templates/uswds/alert/index.js\");\nvar builder_1 = __webpack_require__(/*! ./builder */ \"./lib/templates/uswds/builder/index.js\");\nvar builderComponent_1 = __webpack_require__(/*! ./builderComponent */ \"./lib/templates/uswds/builderComponent/index.js\");\nvar builderComponents_1 = __webpack_require__(/*! ./builderComponents */ \"./lib/templates/uswds/builderComponents/index.js\");\nvar builderEditForm_1 = __webpack_require__(/*! ./builderEditForm */ \"./lib/templates/uswds/builderEditForm/index.js\");\nvar builderPlaceholder_1 = __webpack_require__(/*! ./builderPlaceholder */ \"./lib/templates/uswds/builderPlaceholder/index.js\");\nvar builderSidebar_1 = __webpack_require__(/*! ./builderSidebar */ \"./lib/templates/uswds/builderSidebar/index.js\");\nvar builderSidebarGroup_1 = __webpack_require__(/*! ./builderSidebarGroup */ \"./lib/templates/uswds/builderSidebarGroup/index.js\");\nvar builderWizard_1 = __webpack_require__(/*! ./builderWizard */ \"./lib/templates/uswds/builderWizard/index.js\");\nvar button_1 = __webpack_require__(/*! ./button */ \"./lib/templates/uswds/button/index.js\");\nvar checkbox_1 = __webpack_require__(/*! ./checkbox */ \"./lib/templates/uswds/checkbox/index.js\");\nvar columns_1 = __webpack_require__(/*! ./columns */ \"./lib/templates/uswds/columns/index.js\");\nvar component_1 = __webpack_require__(/*! ./component */ \"./lib/templates/uswds/component/index.js\");\nvar componentModal_1 = __webpack_require__(/*! ./componentModal */ \"./lib/templates/uswds/componentModal/index.js\");\nvar container_1 = __webpack_require__(/*! ./container */ \"./lib/templates/uswds/container/index.js\");\nvar datagrid_1 = __webpack_require__(/*! ./datagrid */ \"./lib/templates/uswds/datagrid/index.js\");\nvar day_1 = __webpack_require__(/*! ./day */ \"./lib/templates/uswds/day/index.js\");\nvar dialog_1 = __webpack_require__(/*! ./dialog */ \"./lib/templates/uswds/dialog/index.js\");\nvar editgrid_1 = __webpack_require__(/*! ./editgrid */ \"./lib/templates/uswds/editgrid/index.js\");\nvar errorsList_1 = __webpack_require__(/*! ./errorsList */ \"./lib/templates/uswds/errorsList/index.js\");\nvar field_1 = __webpack_require__(/*! ./field */ \"./lib/templates/uswds/field/index.js\");\nvar fieldset_1 = __webpack_require__(/*! ./fieldset */ \"./lib/templates/uswds/fieldset/index.js\");\nvar file_1 = __webpack_require__(/*! ./file */ \"./lib/templates/uswds/file/index.js\");\nvar html_1 = __webpack_require__(/*! ./html */ \"./lib/templates/uswds/html/index.js\");\nvar icon_1 = __webpack_require__(/*! ./icon */ \"./lib/templates/uswds/icon/index.js\");\nvar input_1 = __webpack_require__(/*! ./input */ \"./lib/templates/uswds/input/index.js\");\nvar label_1 = __webpack_require__(/*! ./label */ \"./lib/templates/uswds/label/index.js\");\nvar loader_1 = __webpack_require__(/*! ./loader */ \"./lib/templates/uswds/loader/index.js\");\nvar loading_1 = __webpack_require__(/*! ./loading */ \"./lib/templates/uswds/loading/index.js\");\nvar message_1 = __webpack_require__(/*! ./message */ \"./lib/templates/uswds/message/index.js\");\nvar modalPreview_1 = __webpack_require__(/*! ./modalPreview */ \"./lib/templates/uswds/modalPreview/index.js\");\nvar multiValueRow_1 = __webpack_require__(/*! ./multiValueRow */ \"./lib/templates/uswds/multiValueRow/index.js\");\nvar multiValueTable_1 = __webpack_require__(/*! ./multiValueTable */ \"./lib/templates/uswds/multiValueTable/index.js\");\nvar panel_1 = __webpack_require__(/*! ./panel */ \"./lib/templates/uswds/panel/index.js\");\nvar pdf_1 = __webpack_require__(/*! ./pdf */ \"./lib/templates/uswds/pdf/index.js\");\nvar pdfBuilder_1 = __webpack_require__(/*! ./pdfBuilder */ \"./lib/templates/uswds/pdfBuilder/index.js\");\nvar pdfBuilderUpload_1 = __webpack_require__(/*! ./pdfBuilderUpload */ \"./lib/templates/uswds/pdfBuilderUpload/index.js\");\nvar radio_1 = __webpack_require__(/*! ./radio */ \"./lib/templates/uswds/radio/index.js\");\nvar resourceAdd_1 = __webpack_require__(/*! ./resourceAdd */ \"./lib/templates/uswds/resourceAdd/index.js\");\nvar select_1 = __webpack_require__(/*! ./select */ \"./lib/templates/uswds/select/index.js\");\nvar selectOption_1 = __webpack_require__(/*! ./selectOption */ \"./lib/templates/uswds/selectOption/index.js\");\nvar survey_1 = __webpack_require__(/*! ./survey */ \"./lib/templates/uswds/survey/index.js\");\nvar tab_1 = __webpack_require__(/*! ./tab */ \"./lib/templates/uswds/tab/index.js\");\nvar table_1 = __webpack_require__(/*! ./table */ \"./lib/templates/uswds/table/index.js\");\nvar warning_1 = __webpack_require__(/*! ./warning */ \"./lib/templates/uswds/warning/index.js\");\nvar webform_1 = __webpack_require__(/*! ./webform */ \"./lib/templates/uswds/webform/index.js\");\nvar well_1 = __webpack_require__(/*! ./well */ \"./lib/templates/uswds/well/index.js\");\nvar wizard_1 = __webpack_require__(/*! ./wizard */ \"./lib/templates/uswds/wizard/index.js\");\nvar wizardHeader_1 = __webpack_require__(/*! ./wizardHeader */ \"./lib/templates/uswds/wizardHeader/index.js\");\nvar wizardNav_1 = __webpack_require__(/*! ./wizardNav */ \"./lib/templates/uswds/wizardNav/index.js\");\nvar size_1 = __webpack_require__(/*! ./size */ \"./lib/templates/uswds/size.js\");\nvar cssClasses_1 = __webpack_require__(/*! ./cssClasses */ \"./lib/templates/uswds/cssClasses.js\");\nexports.default = {\n address: address_1.default,\n alert: alert_1.default,\n builder: builder_1.default,\n builderComponent: builderComponent_1.default,\n builderComponents: builderComponents_1.default,\n builderEditForm: builderEditForm_1.default,\n builderPlaceholder: builderPlaceholder_1.default,\n builderSidebar: builderSidebar_1.default,\n builderSidebarGroup: builderSidebarGroup_1.default,\n builderWizard: builderWizard_1.default,\n button: button_1.default,\n checkbox: checkbox_1.default,\n columns: columns_1.default,\n component: component_1.default,\n componentModal: componentModal_1.default,\n container: container_1.default,\n datagrid: datagrid_1.default,\n day: day_1.default,\n dialog: dialog_1.default,\n editgrid: editgrid_1.default,\n errorsList: errorsList_1.default,\n field: field_1.default,\n fieldset: fieldset_1.default,\n file: file_1.default,\n html: html_1.default,\n icon: icon_1.default,\n input: input_1.default,\n label: label_1.default,\n loader: loader_1.default,\n loading: loading_1.default,\n message: message_1.default,\n modalPreview: modalPreview_1.default,\n multiValueRow: multiValueRow_1.default,\n multiValueTable: multiValueTable_1.default,\n panel: panel_1.default,\n pdf: pdf_1.default,\n pdfBuilder: pdfBuilder_1.default,\n pdfBuilderUpload: pdfBuilderUpload_1.default,\n radio: radio_1.default,\n resourceAdd: resourceAdd_1.default,\n select: select_1.default,\n selectOption: selectOption_1.default,\n survey: survey_1.default,\n tab: tab_1.default,\n table: table_1.default,\n warning: warning_1.default,\n webform: webform_1.default,\n well: well_1.default,\n wizard: wizard_1.default,\n wizardHeader: wizardHeader_1.default,\n wizardNav: wizardNav_1.default,\n size: size_1.default,\n cssClasses: cssClasses_1.default,\n};\n\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/index.js?");
|
|
759
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar address_1 = __webpack_require__(/*! ./address */ \"./lib/templates/uswds/address/index.js\");\nvar alert_1 = __webpack_require__(/*! ./alert */ \"./lib/templates/uswds/alert/index.js\");\nvar builder_1 = __webpack_require__(/*! ./builder */ \"./lib/templates/uswds/builder/index.js\");\nvar builderComponent_1 = __webpack_require__(/*! ./builderComponent */ \"./lib/templates/uswds/builderComponent/index.js\");\nvar builderComponents_1 = __webpack_require__(/*! ./builderComponents */ \"./lib/templates/uswds/builderComponents/index.js\");\nvar builderEditForm_1 = __webpack_require__(/*! ./builderEditForm */ \"./lib/templates/uswds/builderEditForm/index.js\");\nvar builderPlaceholder_1 = __webpack_require__(/*! ./builderPlaceholder */ \"./lib/templates/uswds/builderPlaceholder/index.js\");\nvar builderSidebar_1 = __webpack_require__(/*! ./builderSidebar */ \"./lib/templates/uswds/builderSidebar/index.js\");\nvar builderSidebarGroup_1 = __webpack_require__(/*! ./builderSidebarGroup */ \"./lib/templates/uswds/builderSidebarGroup/index.js\");\nvar builderWizard_1 = __webpack_require__(/*! ./builderWizard */ \"./lib/templates/uswds/builderWizard/index.js\");\nvar button_1 = __webpack_require__(/*! ./button */ \"./lib/templates/uswds/button/index.js\");\nvar checkbox_1 = __webpack_require__(/*! ./checkbox */ \"./lib/templates/uswds/checkbox/index.js\");\nvar columns_1 = __webpack_require__(/*! ./columns */ \"./lib/templates/uswds/columns/index.js\");\nvar component_1 = __webpack_require__(/*! ./component */ \"./lib/templates/uswds/component/index.js\");\nvar componentModal_1 = __webpack_require__(/*! ./componentModal */ \"./lib/templates/uswds/componentModal/index.js\");\nvar container_1 = __webpack_require__(/*! ./container */ \"./lib/templates/uswds/container/index.js\");\nvar datagrid_1 = __webpack_require__(/*! ./datagrid */ \"./lib/templates/uswds/datagrid/index.js\");\nvar day_1 = __webpack_require__(/*! ./day */ \"./lib/templates/uswds/day/index.js\");\nvar dialog_1 = __webpack_require__(/*! ./dialog */ \"./lib/templates/uswds/dialog/index.js\");\nvar editgrid_1 = __webpack_require__(/*! ./editgrid */ \"./lib/templates/uswds/editgrid/index.js\");\nvar errorsList_1 = __webpack_require__(/*! ./errorsList */ \"./lib/templates/uswds/errorsList/index.js\");\nvar field_1 = __webpack_require__(/*! ./field */ \"./lib/templates/uswds/field/index.js\");\nvar fieldset_1 = __webpack_require__(/*! ./fieldset */ \"./lib/templates/uswds/fieldset/index.js\");\nvar file_1 = __webpack_require__(/*! ./file */ \"./lib/templates/uswds/file/index.js\");\nvar html_1 = __webpack_require__(/*! ./html */ \"./lib/templates/uswds/html/index.js\");\nvar icon_1 = __webpack_require__(/*! ./icon */ \"./lib/templates/uswds/icon/index.js\");\nvar input_1 = __webpack_require__(/*! ./input */ \"./lib/templates/uswds/input/index.js\");\nvar label_1 = __webpack_require__(/*! ./label */ \"./lib/templates/uswds/label/index.js\");\nvar loader_1 = __webpack_require__(/*! ./loader */ \"./lib/templates/uswds/loader/index.js\");\nvar loading_1 = __webpack_require__(/*! ./loading */ \"./lib/templates/uswds/loading/index.js\");\nvar message_1 = __webpack_require__(/*! ./message */ \"./lib/templates/uswds/message/index.js\");\nvar modalPreview_1 = __webpack_require__(/*! ./modalPreview */ \"./lib/templates/uswds/modalPreview/index.js\");\nvar multiValueRow_1 = __webpack_require__(/*! ./multiValueRow */ \"./lib/templates/uswds/multiValueRow/index.js\");\nvar multiValueTable_1 = __webpack_require__(/*! ./multiValueTable */ \"./lib/templates/uswds/multiValueTable/index.js\");\nvar panel_1 = __webpack_require__(/*! ./panel */ \"./lib/templates/uswds/panel/index.js\");\nvar pdf_1 = __webpack_require__(/*! ./pdf */ \"./lib/templates/uswds/pdf/index.js\");\nvar pdfBuilder_1 = __webpack_require__(/*! ./pdfBuilder */ \"./lib/templates/uswds/pdfBuilder/index.js\");\nvar pdfBuilderUpload_1 = __webpack_require__(/*! ./pdfBuilderUpload */ \"./lib/templates/uswds/pdfBuilderUpload/index.js\");\nvar radio_1 = __webpack_require__(/*! ./radio */ \"./lib/templates/uswds/radio/index.js\");\nvar resourceAdd_1 = __webpack_require__(/*! ./resourceAdd */ \"./lib/templates/uswds/resourceAdd/index.js\");\nvar select_1 = __webpack_require__(/*! ./select */ \"./lib/templates/uswds/select/index.js\");\nvar selectOption_1 = __webpack_require__(/*! ./selectOption */ \"./lib/templates/uswds/selectOption/index.js\");\nvar survey_1 = __webpack_require__(/*! ./survey */ \"./lib/templates/uswds/survey/index.js\");\nvar tab_1 = __webpack_require__(/*! ./tab */ \"./lib/templates/uswds/tab/index.js\");\nvar table_1 = __webpack_require__(/*! ./table */ \"./lib/templates/uswds/table/index.js\");\nvar warning_1 = __webpack_require__(/*! ./warning */ \"./lib/templates/uswds/warning/index.js\");\nvar webform_1 = __webpack_require__(/*! ./webform */ \"./lib/templates/uswds/webform/index.js\");\nvar well_1 = __webpack_require__(/*! ./well */ \"./lib/templates/uswds/well/index.js\");\nvar wizard_1 = __webpack_require__(/*! ./wizard */ \"./lib/templates/uswds/wizard/index.js\");\nvar wizardHeader_1 = __webpack_require__(/*! ./wizardHeader */ \"./lib/templates/uswds/wizardHeader/index.js\");\nvar wizardNav_1 = __webpack_require__(/*! ./wizardNav */ \"./lib/templates/uswds/wizardNav/index.js\");\nvar size_1 = __webpack_require__(/*! ./size */ \"./lib/templates/uswds/size.js\");\nvar cssClasses_1 = __webpack_require__(/*! ./cssClasses */ \"./lib/templates/uswds/cssClasses.js\");\nexports.default = {\n transform: function (type, text) {\n if (!text) {\n return text;\n }\n switch (type) {\n case 'class':\n return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text;\n }\n return text;\n },\n address: address_1.default,\n alert: alert_1.default,\n builder: builder_1.default,\n builderComponent: builderComponent_1.default,\n builderComponents: builderComponents_1.default,\n builderEditForm: builderEditForm_1.default,\n builderPlaceholder: builderPlaceholder_1.default,\n builderSidebar: builderSidebar_1.default,\n builderSidebarGroup: builderSidebarGroup_1.default,\n builderWizard: builderWizard_1.default,\n button: button_1.default,\n checkbox: checkbox_1.default,\n columns: columns_1.default,\n component: component_1.default,\n componentModal: componentModal_1.default,\n container: container_1.default,\n datagrid: datagrid_1.default,\n day: day_1.default,\n dialog: dialog_1.default,\n editgrid: editgrid_1.default,\n errorsList: errorsList_1.default,\n field: field_1.default,\n fieldset: fieldset_1.default,\n file: file_1.default,\n html: html_1.default,\n icon: icon_1.default,\n input: input_1.default,\n label: label_1.default,\n loader: loader_1.default,\n loading: loading_1.default,\n message: message_1.default,\n modalPreview: modalPreview_1.default,\n multiValueRow: multiValueRow_1.default,\n multiValueTable: multiValueTable_1.default,\n panel: panel_1.default,\n pdf: pdf_1.default,\n pdfBuilder: pdfBuilder_1.default,\n pdfBuilderUpload: pdfBuilderUpload_1.default,\n radio: radio_1.default,\n resourceAdd: resourceAdd_1.default,\n select: select_1.default,\n selectOption: selectOption_1.default,\n survey: survey_1.default,\n tab: tab_1.default,\n table: table_1.default,\n warning: warning_1.default,\n webform: webform_1.default,\n well: well_1.default,\n wizard: wizard_1.default,\n wizardHeader: wizardHeader_1.default,\n wizardNav: wizardNav_1.default,\n size: size_1.default,\n cssClasses: cssClasses_1.default,\n};\n\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/index.js?");
|
|
760
760
|
|
|
761
761
|
/***/ }),
|
|
762
762
|
|
|
@@ -766,7 +766,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
766
766
|
\***********************************************/
|
|
767
767
|
/***/ (function(__unused_webpack_module, exports) {
|
|
768
768
|
|
|
769
|
-
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n\n if (ctx.prefix || ctx.suffix) { ;\n__p += '\\n<div class=\"input-group\">\\n';\n } ;\n__p += '\\n';\n if (ctx.prefix) { ;\n__p += '\\n<div class=\"input-group-prepend\" ref=\"prefix\">\\n <span class=\"input-group-text\">\\n ';\n if (ctx.prefix instanceof HTMLElement) { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.prefix.outerHTML) )) == null ? '' : __t) +\n'\\n ';\n } else { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.prefix) )) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n </span>\\n</div>\\n';\n } ;\n__p += '\\n';\n if (!ctx.component.editor && !ctx.component.wysiwyg) { ;\n__p += '\\n<' +\n((__t = (ctx.input.type)) == null ? '' : __t) +\n'\\n class=\"usa-' +\n((__t = (ctx.input.type === 'textarea' ? 'textarea' : 'input')) == null ? '' : __t) +\n' maxw-full\"\\n ref=\"' +\n((__t = (ctx.input.ref || 'input')) == null ? '' : __t) +\n'\"\\n ';\n for (var attr in ctx.input.attr) { ;\n__p += '\\n ' +\n((__t = (attr)) == null ? '' : __t) +\n'=\"' +\n((__t = (ctx.input.attr[attr])) == null ? '' : __t) +\n'\"\\n ';\n } ;\n__p += '\\n id=\"' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\"\\n aria-labelledby=\"l-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n' ';\n if (ctx.component.description) { ;\n__p += 'd-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t);\n } ;\n__p += '\"\\n aria-required=\"' +\n((__t = (ctx.input.ref === 'input' || !ctx.input.ref ? ctx.component.validate.required : ctx.component.fields[ctx.input.ref].required)) == null ? '' : __t) +\n'\"\\n>' +\n((__t = (ctx.input.content)) == null ? '' : __t) +\n'</' +\n((__t = (ctx.input.type)) == null ? '' : __t) +\n'>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.editor || ctx.component.wysiwyg) { ;\n__p += '\\n<div ref=\"input\"></div>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.type === 'datetime') { ;\n__p += '\\n<span aria-live=\"assertive\" id=\"' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-liveRegion\" class=\"usa-sr-only\" ref=\"liveRegion\"></span>\\n';\n } ;\n__p += '\\n';\n if (ctx.suffix) { ;\n__p += '\\n<div class=\"input-group-append\" ref=\"suffix\">\\n <span class=\"input-group-text\">\\n ';\n if (ctx.suffix instanceof HTMLElement) { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.suffix.outerHTML) )) == null ? '' : __t) +\n'\\n ';\n } else { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.suffix) )) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n </span>\\n</div>\\n';\n } ;\n__p += '\\n';\n if (ctx.prefix || ctx.suffix) { ;\n__p += '\\n</div>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.showCharCount) { ;\n__p += '\\n<span aria-live=\"polite\" class=\"text-
|
|
769
|
+
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n\n if (ctx.prefix || ctx.suffix) { ;\n__p += '\\n<div class=\"input-group\">\\n';\n } ;\n__p += '\\n';\n if (ctx.prefix) { ;\n__p += '\\n<div class=\"input-group-prepend\" ref=\"prefix\">\\n <span class=\"input-group-text\">\\n ';\n if (ctx.prefix instanceof HTMLElement) { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.prefix.outerHTML) )) == null ? '' : __t) +\n'\\n ';\n } else { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.prefix) )) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n </span>\\n</div>\\n';\n } ;\n__p += '\\n';\n if (!ctx.component.editor && !ctx.component.wysiwyg) { ;\n__p += '\\n<' +\n((__t = (ctx.input.type)) == null ? '' : __t) +\n'\\n class=\"usa-' +\n((__t = (ctx.input.type === 'textarea' ? 'textarea' : 'input')) == null ? '' : __t) +\n' maxw-full\"\\n ref=\"' +\n((__t = (ctx.input.ref || 'input')) == null ? '' : __t) +\n'\"\\n ';\n for (var attr in ctx.input.attr) { ;\n__p += '\\n ' +\n((__t = (attr)) == null ? '' : __t) +\n'=\"' +\n((__t = (ctx.input.attr[attr])) == null ? '' : __t) +\n'\"\\n ';\n } ;\n__p += '\\n id=\"' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\"\\n aria-labelledby=\"l-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n' ';\n if (ctx.component.description) { ;\n__p += 'd-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t);\n } ;\n__p += '\"\\n aria-required=\"' +\n((__t = (ctx.input.ref === 'input' || !ctx.input.ref ? ctx.component.validate.required : ctx.component.fields[ctx.input.ref].required)) == null ? '' : __t) +\n'\"\\n>' +\n((__t = (ctx.input.content)) == null ? '' : __t) +\n'</' +\n((__t = (ctx.input.type)) == null ? '' : __t) +\n'>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.editor || ctx.component.wysiwyg) { ;\n__p += '\\n<div ref=\"input\"></div>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.type === 'datetime') { ;\n__p += '\\n<span aria-live=\"assertive\" id=\"' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-liveRegion\" class=\"usa-sr-only\" ref=\"liveRegion\"></span>\\n';\n } ;\n__p += '\\n';\n if (ctx.suffix) { ;\n__p += '\\n<div class=\"input-group-append\" ref=\"suffix\">\\n <span class=\"input-group-text\">\\n ';\n if (ctx.suffix instanceof HTMLElement) { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.suffix.outerHTML) )) == null ? '' : __t) +\n'\\n ';\n } else { ;\n__p += '\\n ' +\n((__t = ( ctx.t(ctx.suffix) )) == null ? '' : __t) +\n'\\n ';\n } ;\n__p += '\\n </span>\\n</div>\\n';\n } ;\n__p += '\\n';\n if (ctx.prefix || ctx.suffix) { ;\n__p += '\\n</div>\\n';\n } ;\n__p += '\\n';\n if (ctx.component.showCharCount || ctx.component.showWordCount) { ;\n__p += '\\n<div class=\"' +\n((__t = (ctx.component.description ? 'pull-right' : 'text-right')) == null ? '' : __t) +\n'\">\\n ';\n if (ctx.component.showCharCount) { ;\n__p += '\\n <span aria-live=\"polite\" class=\"text-muted\" ref=\"charcount\"></span>\\n ';\n } ;\n__p += '\\n ';\n if (ctx.component.showWordCount) { ;\n__p += '\\n <span aria-live=\"polite\" class=\"text-muted\" ref=\"wordcount\"></span>\\n ';\n } ;\n__p += '\\n</div>\\n';\n } ;\n__p += '\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/input/form.ejs.js?");
|
|
770
770
|
|
|
771
771
|
/***/ }),
|
|
772
772
|
|
|
@@ -1028,7 +1028,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
1028
1028
|
\***********************************************/
|
|
1029
1029
|
/***/ (function(__unused_webpack_module, exports) {
|
|
1030
1030
|
|
|
1031
|
-
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<fieldset\\n class=\"usa-fieldset\"\\n ref=\"
|
|
1031
|
+
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<fieldset\\n class=\"usa-fieldset\"\\n ref=\"radioGroup\"\\n aria-labelledby=\"l-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n' ';\n if (ctx.component.description) { ;\n__p += 'd-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t);\n } ;\n__p += '\"\\n>\\n <legend id=\"l-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\" ref=\"label\" class=\"usa-sr-only\">\\n ' +\n((__t = (ctx.t(ctx.component.label))) == null ? '' : __t) +\n'\\n </legend>\\n <span class=\"legend-wrapper font-sans-md\">\\n <span class=\"' +\n((__t = (ctx.component.validate && ctx.component.validate.required ? ' field-required' : '')) == null ? '' : __t) +\n'\">\\n ' +\n((__t = (ctx.t(ctx.component.label))) == null ? '' : __t) +\n'\\n </span>\\n ';\n if (ctx.component.tooltip) { ;\n__p += '\\n <span ref=\"tooltip\" data-tooltip=\"' +\n((__t = (ctx.component.tooltip)) == null ? '' : __t) +\n'\" class=\"' +\n((__t = (ctx.iconClass('question-sign'))) == null ? '' : __t) +\n' text-base\" tabindex=\"0\"></span>\\n ';\n } ;\n__p += '\\n </span>\\n\\n <div\\n ref=\"messageContainer\"\\n class=\"text-secondary-dark width-full margin-top-05 formio-errors\"\\n ></div>\\n\\n ';\n ctx.values.forEach(function(item) { ;\n__p += '\\n <div class=\"usa-' +\n((__t = (ctx.component.type === \"selectboxes\" ? \"checkbox\" : \"radio\")) == null ? '' : __t) +\n' ' +\n((__t = (ctx.inline ? 'display-inline float-left margin-right-1' : '')) == null ? '' : __t) +\n'\" ref=\"wrapper\">\\n <' +\n((__t = (ctx.input.type)) == null ? '' : __t) +\n'\\n ref=\"input\"\\n class=\"usa-' +\n((__t = (ctx.component.type === \"selectboxes\" ? \"checkbox\" : \"radio\")) == null ? '' : __t) +\n'__input ' +\n((__t = (ctx.component.tileView ? ctx.component.type === 'selectboxes' ? 'usa-checkbox__input--tile' : 'usa-radio__input--tile' : '')) == null ? '' : __t) +\n'\"\\n ';\n for (var attr in ctx.input.attr) { ;\n__p += '\\n ' +\n((__t = (attr)) == null ? '' : __t) +\n'=\"' +\n((__t = (ctx.input.attr[attr])) == null ? '' : __t) +\n'\"\\n ';\n } ;\n__p += '\\n value=\"' +\n((__t = (item.value)) == null ? '' : __t) +\n'\"\\n ';\n if (ctx.value && (ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value]))) { ;\n__p += '\\n checked=true\\n ';\n } ;\n__p += '\\n id=\"' +\n((__t = (ctx.instance.root && ctx.instance.root.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.row)) == null ? '' : __t) +\n'-' +\n((__t = (item.value)) == null ? '' : __t) +\n'\"\\n aria-required=\"' +\n((__t = (ctx.input.component.validate.required)) == null ? '' : __t) +\n'\"\\n >\\n <label class=\"' +\n((__t = (ctx.component.type === \"selectboxes\" ? \"usa-checkbox__label\" : \"usa-radio__label\")) == null ? '' : __t) +\n'\" for=\"' +\n((__t = (ctx.instance.root && ctx.instance.root.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.row)) == null ? '' : __t) +\n'-' +\n((__t = (item.value)) == null ? '' : __t) +\n'\">' +\n((__t = (ctx.t(item.label))) == null ? '' : __t) +\n'</label>\\n </div>\\n ';\n }) ;\n__p += '\\n\\n ';\n if (ctx.component.description) { ;\n__p += '\\n <div class=\"text-base-dark\">\\n <span id=\"d-' +\n((__t = (ctx.instance.id)) == null ? '' : __t) +\n'-' +\n((__t = (ctx.component.key)) == null ? '' : __t) +\n'\">' +\n((__t = (ctx.t(ctx.component.description))) == null ? '' : __t) +\n'</span>\\n </div>\\n ';\n } ;\n__p += '\\n</fieldset>\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/radio/form.ejs.js?");
|
|
1032
1032
|
|
|
1033
1033
|
/***/ }),
|
|
1034
1034
|
|
|
@@ -1194,7 +1194,7 @@ eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nex
|
|
|
1194
1194
|
\*********************************************/
|
|
1195
1195
|
/***/ (function(__unused_webpack_module, exports) {
|
|
1196
1196
|
|
|
1197
|
-
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"formio-usa-card\">\\n <ul role=\"
|
|
1197
|
+
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"formio-usa-card\">\\n <ul role=\"tablist\" class=\"usa-sidenav\">\\n ';\n ctx.component.components.forEach(function(tab, index) { ;\n__p += '\\n <li role=\"tab\" class=\"usa-sidenav__item ' +\n((__t = (ctx.currentTab === index ? 'usa-current' : '')) == null ? '' : __t) +\n' border-top-0\" ref=\"' +\n((__t = (ctx.tabLikey)) == null ? '' : __t) +\n'\">\\n <a href=\"#' +\n((__t = (tab.key)) == null ? '' : __t) +\n'\" ref=\"' +\n((__t = (ctx.tabLinkKey)) == null ? '' : __t) +\n'\">' +\n((__t = (ctx.t(tab.label))) == null ? '' : __t) +\n'</a>\\n </li>\\n ';\n }) ;\n__p += '\\n </ul>\\n\\n ';\n ctx.component.components.forEach(function(tab, index) { ;\n__p += '\\n <div\\n role=\"tabpanel\"\\n class=\"formio-usa-card-body\"\\n style=\"display: ' +\n((__t = (ctx.currentTab === index ? 'block' : 'none')) == null ? '' : __t) +\n'\"\\n ref=\"' +\n((__t = (ctx.tabKey)) == null ? '' : __t) +\n'\"\\n >\\n ' +\n((__t = (ctx.tabComponents[index])) == null ? '' : __t) +\n'\\n </div>\\n ';\n }) ;\n__p += '\\n</div>\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/tab/form.ejs.js?");
|
|
1198
1198
|
|
|
1199
1199
|
/***/ }),
|
|
1200
1200
|
|
|
@@ -1340,7 +1340,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nvar
|
|
|
1340
1340
|
\******************************************************/
|
|
1341
1341
|
/***/ (function(__unused_webpack_module, exports) {
|
|
1342
1342
|
|
|
1343
|
-
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"usa-step-indicator usa-step-indicator--no-labels\" aria-label=\"Wizard\" id=\"' +\n((__t = ( ctx.wizardKey )) == null ? '' : __t) +\n'-header\">\\n <ol class=\"usa-step-indicator__segments\" tabindex=\"0\" aria-label=\"Progress bar, Step ' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n' of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n', ' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'\">\\n ';\n ctx.panels.forEach(function(panel, index) { ;\n__p += '\\n <li data-index=\"' +\n((__t = (index)) == null ? '' : __t) +\n'\" class=\"usa-step-indicator__segment ' +\n((__t = (ctx.currentPage === index ? 'usa-step-indicator__segment--current' : '')) == null ? '' : __t) +\n' ' +\n((__t = (ctx.currentPage > index ? 'usa-step-indicator__segment--complete' : '')) == null ? '' : __t) +\n'\"></li>\\n ';\n }) ;\n__p += '\\n </ol>\\n <div class=\"usa-sr-only\" ref=\"' +\n((__t = ( ctx.wizardKey )) == null ? '' : __t) +\n'-progressbar\" tabindex=\"-1\">Progress bar, Step ' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n' of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n', ' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'</div>\\n <div class=\"usa-step-indicator__header\">\\n <div class=\"usa-step-indicator__heading\">\\n <span class=\"usa-sr-only\">Progress bar, step</span>\\n <span class=\"usa-step-indicator__heading-counter\">\\n <span class=\"usa-step-indicator__current-step\">' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n'</span>\\n <span class=\"usa-step-indicator__total-steps\">of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n'</span>\\n </span>\\n <span class=\"usa-step-indicator__heading-text\">' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'</span>\\n ';\n if (ctx.panels[ctx.currentPage].tooltip) { ;\n__p += '\\n <i ref=\"' +\n((__t = (ctx.wizardKey)) == null ? '' : __t) +\n'-tooltip\" class=\"' +\n((__t = (ctx.iconClass('question-sign'))) == null ? '' : __t) +\n' text-muted\" data-tooltip=\"' +\n((__t = (ctx.panels[ctx.currentPage].tooltip)) == null ? '' : __t) +\n'\" tabindex=\"0\"></i>\\n ';\n } ;\n__p += '\\n </div>\\n </div>\\n</div>\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/wizardHeader/form.ejs.js?");
|
|
1343
|
+
eval("Object.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports.default=function(ctx) {\nvar __t, __p = '', __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n__p += '<div class=\"usa-step-indicator usa-step-indicator--no-labels\" ref=\"' +\n((__t = ( ctx.wizardKey )) == null ? '' : __t) +\n'-header\" aria-label=\"Wizard\" id=\"' +\n((__t = ( ctx.wizardKey )) == null ? '' : __t) +\n'-header\">\\n <ol class=\"usa-step-indicator__segments\" tabindex=\"0\" aria-label=\"Progress bar, Step ' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n' of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n', ' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'\">\\n ';\n ctx.panels.forEach(function(panel, index) { ;\n__p += '\\n <li data-index=\"' +\n((__t = (index)) == null ? '' : __t) +\n'\" class=\"usa-step-indicator__segment ' +\n((__t = (ctx.currentPage === index ? 'usa-step-indicator__segment--current' : '')) == null ? '' : __t) +\n' ' +\n((__t = (ctx.currentPage > index ? 'usa-step-indicator__segment--complete' : '')) == null ? '' : __t) +\n'\"></li>\\n ';\n }) ;\n__p += '\\n </ol>\\n <div class=\"usa-sr-only\" ref=\"' +\n((__t = ( ctx.wizardKey )) == null ? '' : __t) +\n'-progressbar\" tabindex=\"-1\">Progress bar, Step ' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n' of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n', ' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'</div>\\n <div class=\"usa-step-indicator__header\">\\n <div class=\"usa-step-indicator__heading\">\\n <span class=\"usa-sr-only\">Progress bar, step</span>\\n <span class=\"usa-step-indicator__heading-counter\">\\n <span class=\"usa-step-indicator__current-step\">' +\n((__t = (ctx.currentPage + 1)) == null ? '' : __t) +\n'</span>\\n <span class=\"usa-step-indicator__total-steps\">of ' +\n((__t = (ctx.panels.length)) == null ? '' : __t) +\n'</span>\\n </span>\\n <span class=\"usa-step-indicator__heading-text\">' +\n((__t = (ctx.panels[ctx.currentPage].title)) == null ? '' : __t) +\n'</span>\\n ';\n if (ctx.panels[ctx.currentPage].tooltip) { ;\n__p += '\\n <i ref=\"' +\n((__t = (ctx.wizardKey)) == null ? '' : __t) +\n'-tooltip\" class=\"' +\n((__t = (ctx.iconClass('question-sign'))) == null ? '' : __t) +\n' text-muted\" data-tooltip=\"' +\n((__t = (ctx.panels[ctx.currentPage].tooltip)) == null ? '' : __t) +\n'\" tabindex=\"0\"></i>\\n ';\n } ;\n__p += '\\n </div>\\n </div>\\n</div>\\n';\nreturn __p\n}\n\n//# sourceURL=webpack://uswds/./lib/templates/uswds/wizardHeader/form.ejs.js?");
|
|
1344
1344
|
|
|
1345
1345
|
/***/ }),
|
|
1346
1346
|
|
package/dist/uswds.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
span[role=link]:hover{text-decoration:underline;cursor:pointer}.builder-sidebar .usa-accordion__content{padding-bottom:0}.builder-sidebar .form-builder-panel{margin-bottom:5px}.builder-sidebar .form-builder-panel .form-builder-group-header .form-builder-group-heading{margin:0}.builder-sidebar .form-builder-panel .form-builder-group-header .usa-accordion__button.builder-group-button{background-color:#f0f0f0}.builder-sidebar .form-builder-panel .usa-button{margin-right:0;margin-top:0;margin-bottom:5px}.builder-component{padding:3px;margin:-3px -3px 20px -3px}.builder-component .formio-form-group{margin-bottom:0}.builder-component .component-btn-group{display:flex;flex-direction:row-reverse}.component-btn-group .component-settings-button.usa-button{margin:3px}.component-btn-group .usa-button.component-settings-button-paste{display:none}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month input.cur-year:focus,.flatpickr-days:focus{outline:1px solid #2491ff!important}.flatpickr-days{margin:1px;width:305.875px!important}.flatpickr-day.selected{background:#0073ec!important}.flatpickr-day.nextMonthDay:focus,.flatpickr-day.nextMonthDay:hover,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.prevMonthDay:hover,.flatpickr-day:focus,.flatpickr-day:hover{background-color:#71767a!important;color:#fff!important}.flatpickr-wrapper{display:block!important}.formio-choices .usa-select{background-image:none;border:1px solid #565c65}.formio-component-address .usa-checkbox{margin:.5em 0 .3em}.formio-dialog.formio-dialog-theme-default .
|
|
1
|
+
span[role=link]:hover{text-decoration:underline;cursor:pointer}.builder-sidebar .usa-accordion__content{padding-bottom:0}.builder-sidebar .form-builder-panel{margin-bottom:5px}.builder-sidebar .form-builder-panel .form-builder-group-header .form-builder-group-heading{margin:0}.builder-sidebar .form-builder-panel .form-builder-group-header .usa-accordion__button.builder-group-button{background-color:#f0f0f0}.builder-sidebar .form-builder-panel .usa-button{margin-right:0;margin-top:0;margin-bottom:5px}.builder-component{padding:3px;margin:-3px -3px 20px -3px}.builder-component .formio-form-group{margin-bottom:0}.builder-component .component-btn-group{display:flex;flex-direction:row-reverse}.component-btn-group .component-settings-button.usa-button{margin:3px}.component-btn-group .usa-button.component-settings-button-paste{display:none}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month input.cur-year:focus,.flatpickr-days:focus{outline:1px solid #2491ff!important}.flatpickr-days{margin:1px;width:305.875px!important}.flatpickr-day.selected{background:#0073ec!important}.flatpickr-day.nextMonthDay:focus,.flatpickr-day.nextMonthDay:hover,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.prevMonthDay:hover,.flatpickr-day:focus,.flatpickr-day:hover{background-color:#71767a!important;color:#fff!important}.flatpickr-wrapper{display:block!important}.formio-choices .usa-select{background-image:none;border:1px solid #565c65}.formio-component-address .usa-checkbox{margin:.5em 0 .3em}.formio-dialog.formio-dialog-theme-default .component-edit-container{padding:.6em}.formio-dialog.formio-dialog-theme-default .formio-dialog-content .formio-dialog-close{right:4px;top:4px}.formio-dialog.formio-dialog-theme-default .formio-dialog-content .formio-dialog-close:before{font-size:24px;line-height:24px;color:#8a8a8a}.formio-dialog.formio-dialog-theme-default .formio-dialog-content .formio-dialog-close :active:before,.formio-dialog.formio-dialog-theme-default .formio-dialog-content .formio-dialog-close:hover:before{color:#6b6b6b}.formio-dialog-content .usa-label{padding-right:30px}.formio-dialog-content .usa-label label{padding-right:0}.formio-dialog-buttons{display:flex;justify-content:flex-end;margin:0 -.5rem}.formio-form-group{margin-bottom:20px}@media print{.formio-form-group{page-break-inside:avoid}}.formio-form-group>.usa-label>label{display:initial}.formio-hidden{margin:0}.formio-panel-content.usa-accordion__content{overflow:visible}.formio-usa-card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-clip:border-box;border:1px solid #000;border-radius:.25rem}.formio-usa-card-body{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.formio-usa-card-header{position:relative;display:flex;padding:.5rem;margin-bottom:0;margin-top:1px;border-bottom:1px solid #000;border-radius:.25rem .25rem 0 0;background-color:#f0f0f0}.formio-usa-card-title{margin-bottom:.75rem;font-size:1.2rem}.has-error .help-block{color:#b50909}.has-success .help-block{color:#00a91c}.input-group{display:flex;flex-wrap:nowrap;align-items:stretch;width:100%;margin-top:.5rem}.input-group .usa-input,.input-group .usa-textarea{position:relative;z-index:1;width:1%;min-width:50px;flex-grow:1;margin-top:0}.input-group .usa-textarea{resize:vertical}.input-group .flatpickr-wrapper{display:flex;flex-grow:1}.input-group .flatpickr-wrapper .usa-input{width:100%}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:.9375rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da}.input-group-append,.input-group-prepend{display:flex;flex-shrink:0}.legend-wrapper{display:inline-block;margin-bottom:6px}.legend-wrapper>span{margin-right:3px}.open-modal-button{font-weight:400;color:#000;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#f8f9fa;border:2px solid #8a8a8a;padding:.375rem .75rem;font-size:.9375rem;line-height:1.5;border-radius:0}.open-modal-button:hover{background-color:#f0f1f5}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress .progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;background-color:#007bff;transition:width .6s ease}.formio-tooltip__trigger{cursor:pointer}.formio-tooltip__body{background-color:#1b1b1b;border-radius:.25rem;bottom:0;color:#f0f0f0;display:none;font-size:1rem;padding:.5rem;position:absolute;left:0;transform:translateX(-50%);width:auto;white-space:pre;z-index:1000}.formio-tooltip__body.formio-tooltip--is-set{display:block}.formio-tooltip__body--whitespace{white-space:normal;width:250px}.formio-tooltip__body--right{top:auto;transform:translateX(0)}.formio-tooltip__body--left{top:auto;left:0;right:auto;transform:translateX(0)}.formio-tooltip__body--bottom{bottom:auto;top:0}.formio-tooltip__wrapper{position:relative}.formio-tooltip__wrapper>span{font-weight:400}.wizard-page{margin:20px 0}.wizard-nav-container{display:flex}@media not all and (min-width:30em){.wizard-nav-container{flex-direction:column}}.wizard-nav-container li .usa-button{margin-bottom:.25em}.word-wrap{word-wrap:break-word}b,strong{font-weight:700!important}pre{background-color:#f0f0f0;padding:1em}ul.usa-sidenav{display:flex;flex-wrap:wrap;margin-top:1px;border-bottom:1px solid #000}.usa-sidenav__item{border-top:0}.usa-input--error.usa-select,.usa-input--success.usa-select{height:auto}.usa-accordion__button.non-collapsible-panel--button{background-image:none}.usa-accordion__button.non-collapsible-panel--button:hover{background-color:#f0f0f0;cursor:auto}.usa-table{width:100%}.usa-table caption{caption-side:top;color:#000}.usa-table td{background-color:inherit}.usa-checkbox .usa-checkbox__input--tile+.usa-checkbox__label{padding-left:.5rem;text-indent:0}.usa-checkbox__input:disabled+.usa-checkbox__label{color:#71767a!important}.usa-fieldset .usa-legend{font-size:1.5rem}.usa-label{margin-top:0!important;margin-bottom:0;max-width:100%!important}.usa-prose>ol li,.usa-prose>p,.usa-prose>ul li{max-width:100%!important}.usa-button+.has-error,.usa-button+.has-success{display:none}.usa-radio__input:disabled:checked+.usa-radio__label::before{-webkit-box-shadow:0 0 0 2px #c9c9c9,inset 0 0 0 3px #fff;box-shadow:0 0 0 2px #c9c9c9,inset 0 0 0 3px #fff}.usa-step-indicator{margin-top:1rem}.usa-step-indicator .usa-step-indicator__segments{outline-width:1px!important;outline-offset:2px!important;padding:1px}.usa-step-indicator .usa-step-indicator__segments .usa-step-indicator__segment{max-width:none}@media print{div[class*=":grid-col-1"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}div[class*=":grid-col-2"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}div[class*=":grid-col-3"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}div[class*=":grid-col-4"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}div[class*=":grid-col-5"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}div[class*=":grid-col-6"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}div[class*=":grid-col-7"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}div[class*=":grid-col-8"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}div[class*=":grid-col-9"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}div[class*=":grid-col-10"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}div[class*=":grid-col-11"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}div[class*=":grid-col-12"]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.usa-checkbox__input:checked:disabled+.usa-checkbox__label::before{background-image:none;background-color:#c9c9c9;-webkit-box-shadow:0 0 0 2px #c9c9c9,inset 0 0 0 3px #fff;box-shadow:0 0 0 2px #c9c9c9,inset 0 0 0 3px #fff;-webkit-print-color-adjust:exact;text-indent:0}}.usa-button.formio-hidden{background-color:initial;border:none;box-shadow:none}
|