@agility/plenum-ui 1.0.0
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/.babelrc +14 -0
- package/.editorconfig +9 -0
- package/.eslintrc +13 -0
- package/.github/workflows/test.yml +27 -0
- package/.prettierrc +13 -0
- package/.storybook/Layout.jsx +9 -0
- package/.storybook/main.js +17 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/plenumTheme.js +8 -0
- package/.storybook/preview.js +44 -0
- package/README.md +17 -0
- package/_templates/component/new/component.ejs.t +18 -0
- package/_templates/component/new/component.stories.ejs.t +21 -0
- package/_templates/component/new/component.test.ejs.t +15 -0
- package/_templates/component/new/index.ejs.t +6 -0
- package/_templates/component/new/prompt.js +7 -0
- package/coverage/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +204 -0
- package/coverage/Forms/TextInputSelect/InputSelect/index.html +155 -0
- package/coverage/Select/Select.tsx.html +264 -0
- package/coverage/Select/index.html +153 -0
- package/coverage/Select.tsx.html +261 -0
- package/coverage/agility-component-lib-react/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Button/Button.tsx.html +289 -0
- package/coverage/agility-component-lib-react/src/components/Button/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Checkbox/Checkbox.tsx.html +235 -0
- package/coverage/agility-component-lib-react/src/components/Checkbox/index.html +156 -0
- package/coverage/agility-component-lib-react/src/components/Forms/BaseField/BaseField.tsx.html +406 -0
- package/coverage/agility-component-lib-react/src/components/Forms/BaseField/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Checkbox/Checkbox.tsx.html +283 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Checkbox/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/InputCounter/InputCounter.tsx.html +139 -0
- package/coverage/agility-component-lib-react/src/components/Forms/InputCounter/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/InputLabel/InputLabel.tsx.html +211 -0
- package/coverage/agility-component-lib-react/src/components/Forms/InputLabel/index.html +131 -0
- package/coverage/agility-component-lib-react/src/components/Forms/InputLabel/index.ts.html +94 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Radio/Radio.tsx.html +271 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Radio/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Select/Select.tsx.html +337 -0
- package/coverage/agility-component-lib-react/src/components/Forms/Select/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/InputCta.tsx.html +271 -0
- package/coverage/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +217 -0
- package/coverage/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/index.html +116 -0
- package/coverage/agility-component-lib-react/src/components/Radio/Radio.tsx.html +243 -0
- package/coverage/agility-component-lib-react/src/components/Radio/index.html +156 -0
- package/coverage/agility-component-lib-react/src/components/Switch/Switch.tsx.html +214 -0
- package/coverage/agility-component-lib-react/src/components/Switch/index.html +116 -0
- package/coverage/agility-component-lib-react/src/util/DynamicIcons.tsx.html +151 -0
- package/coverage/agility-component-lib-react/src/util/index.html +116 -0
- package/coverage/agility-component-lib-react/styleMock.js.html +91 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/clover.xml +145 -0
- package/coverage/coverage-final.json +14 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +281 -0
- package/coverage/lcov-report/agility-component-lib-react/index.html +153 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Button/Button.tsx.html +255 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Button/index.html +156 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Checkbox/Checkbox.tsx.html +235 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Checkbox/index.html +156 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/BaseField/BaseField.tsx.html +330 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/BaseField/index.html +158 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/InputCounter/InputCounter.tsx.html +147 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/InputCounter/index.html +158 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/InputCta.tsx.html +258 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/index.html +159 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +210 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/index.html +159 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Radio/Radio.tsx.html +243 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Radio/index.html +156 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Switch/Switch.tsx.html +225 -0
- package/coverage/lcov-report/agility-component-lib-react/src/components/Switch/index.html +156 -0
- package/coverage/lcov-report/agility-component-lib-react/src/util/DynamicIcons.tsx.html +137 -0
- package/coverage/lcov-report/agility-component-lib-react/src/util/index.html +155 -0
- package/coverage/lcov-report/agility-component-lib-react/styleMock.js.html +90 -0
- package/coverage/lcov-report/base.css +354 -0
- package/coverage/lcov-report/block-navigation.js +82 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +385 -0
- package/coverage/lcov-report/prettify.css +101 -0
- package/coverage/lcov-report/prettify.js +955 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +189 -0
- package/coverage/lcov.info +267 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/jest.config.js +8 -0
- package/lib/common/brandCfg.d.ts +3 -0
- package/lib/common/index.d.ts +3 -0
- package/lib/common/storyCfg.d.ts +5 -0
- package/lib/components/Button/Button.d.ts +29 -0
- package/lib/components/Button/Button.stories.d.ts +8 -0
- package/lib/components/Button/Button.test.d.ts +1 -0
- package/lib/components/Button/index.d.ts +1 -0
- package/lib/components/Checkbox/Checkbox.d.ts +19 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +12 -0
- package/lib/components/Checkbox/Checkbox.test.d.ts +1 -0
- package/lib/components/Checkbox/index.d.ts +1 -0
- package/lib/components/Combobox/Combobox.d.ts +24 -0
- package/lib/components/Combobox/Combobox.stories.d.ts +11 -0
- package/lib/components/Combobox/Combobox.test.d.ts +1 -0
- package/lib/components/Combobox/index.d.ts +1 -0
- package/lib/components/DatePicker/DatePicker.d.ts +7 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +6 -0
- package/lib/components/DatePicker/DatePicker.test.d.ts +1 -0
- package/lib/components/DatePicker/index.d.ts +1 -0
- package/lib/components/Dropdown/Dropdown.d.ts +15 -0
- package/lib/components/Dropdown/Dropdown.stories.d.ts +7 -0
- package/lib/components/Dropdown/Dropdown.test.d.ts +1 -0
- package/lib/components/Dropdown/data.d.ts +3 -0
- package/lib/components/Dropdown/index.d.ts +1 -0
- package/lib/components/Forms/BaseField/BaseField.d.ts +30 -0
- package/lib/components/Forms/BaseField/BaseField.stories.d.ts +6 -0
- package/lib/components/Forms/BaseField/BaseField.test.d.ts +1 -0
- package/lib/components/Forms/BaseField/index.d.ts +1 -0
- package/lib/components/Forms/Checkbox/Checkbox.d.ts +19 -0
- package/lib/components/Forms/Checkbox/Checkbox.stories.d.ts +12 -0
- package/lib/components/Forms/Checkbox/Checkbox.test.d.ts +1 -0
- package/lib/components/Forms/Checkbox/index.d.ts +1 -0
- package/lib/components/Forms/InputCounter/InputCounter.d.ts +9 -0
- package/lib/components/Forms/InputCounter/InputCounter.stories.d.ts +6 -0
- package/lib/components/Forms/InputCounter/InputCounter.test.d.ts +1 -0
- package/lib/components/Forms/InputCounter/index.d.ts +1 -0
- package/lib/components/Forms/InputCta/InputCta.d.ts +16 -0
- package/lib/components/Forms/InputCta/InputCta.stories.d.ts +6 -0
- package/lib/components/Forms/InputCta/InputCta.test.d.ts +1 -0
- package/lib/components/Forms/InputCta/index.d.ts +1 -0
- package/lib/components/Forms/InputLabel/InputLabel.d.ts +14 -0
- package/lib/components/Forms/InputLabel/InputLabel.stories.d.ts +6 -0
- package/lib/components/Forms/InputLabel/InputLabel.test.d.ts +1 -0
- package/lib/components/Forms/InputLabel/index.d.ts +1 -0
- package/lib/components/Forms/Radio/Radio.d.ts +21 -0
- package/lib/components/Forms/Radio/Radio.stories.d.ts +12 -0
- package/lib/components/Forms/Radio/Radio.test.d.ts +1 -0
- package/lib/components/Forms/Radio/index.d.ts +1 -0
- package/lib/components/Forms/Select/Select.d.ts +25 -0
- package/lib/components/Forms/Select/Select.stories.d.ts +11 -0
- package/lib/components/Forms/Select/Select.test.d.ts +1 -0
- package/lib/components/Forms/Select/index.d.ts +1 -0
- package/lib/components/Forms/TextInput/TextInput.d.ts +33 -0
- package/lib/components/Forms/TextInput/TextInput.stories.d.ts +12 -0
- package/lib/components/Forms/TextInput/index.d.ts +1 -0
- package/lib/components/Forms/TextInputAddon/InputCta/InputCta.d.ts +16 -0
- package/lib/components/Forms/TextInputAddon/InputCta/InputCta.stories.d.ts +6 -0
- package/lib/components/Forms/TextInputAddon/InputCta/InputCta.test.d.ts +1 -0
- package/lib/components/Forms/TextInputAddon/InputCta/index.d.ts +1 -0
- package/lib/components/Forms/TextInputAddon/TextInputAddon.d.ts +49 -0
- package/lib/components/Forms/TextInputAddon/TextInputAddon.stories.d.ts +12 -0
- package/lib/components/Forms/TextInputAddon/index.d.ts +1 -0
- package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.d.ts +11 -0
- package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.stories.d.ts +6 -0
- package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.test.d.ts +1 -0
- package/lib/components/Forms/TextInputSelect/InputSelect/index.d.ts +1 -0
- package/lib/components/Forms/TextInputSelect/TextInputSelect.d.ts +46 -0
- package/lib/components/Forms/TextInputSelect/TextInputSelect.stories.d.ts +8 -0
- package/lib/components/Forms/TextInputSelect/index.d.ts +1 -0
- package/lib/components/Forms/Textarea/Textarea.d.ts +29 -0
- package/lib/components/Forms/Textarea/Textarea.stories.d.ts +12 -0
- package/lib/components/Forms/Textarea/Textarea.test.d.ts +1 -0
- package/lib/components/Forms/Textarea/index.d.ts +1 -0
- package/lib/components/InputCounter/InputCounter.d.ts +16 -0
- package/lib/components/InputCounter/InputCounter.stories.d.ts +6 -0
- package/lib/components/InputCounter/InputCounter.test.d.ts +1 -0
- package/lib/components/InputCounter/index.d.ts +1 -0
- package/lib/components/Radio/Radio.d.ts +21 -0
- package/lib/components/Radio/Radio.stories.d.ts +12 -0
- package/lib/components/Radio/Radio.test.d.ts +1 -0
- package/lib/components/Radio/index.d.ts +1 -0
- package/lib/components/Select/Select.d.ts +25 -0
- package/lib/components/Select/Select.stories.d.ts +11 -0
- package/lib/components/Select/Select.test.d.ts +1 -0
- package/lib/components/Select/index.d.ts +1 -0
- package/lib/components/Switch/Switch.d.ts +9 -0
- package/lib/components/Switch/Switch.stories.d.ts +6 -0
- package/lib/components/Switch/Switch.test.d.ts +1 -0
- package/lib/components/Switch/index.d.ts +1 -0
- package/lib/components/TextInput/TextInput.d.ts +46 -0
- package/lib/components/TextInput/TextInput.stories.d.ts +10 -0
- package/lib/components/TextInput/index.d.ts +1 -0
- package/lib/components/TextInputAddon/TextInputAddon.d.ts +51 -0
- package/lib/components/TextInputAddon/TextInputAddon.stories.d.ts +6 -0
- package/lib/components/TextInputAddon/index.d.ts +1 -0
- package/lib/components/TreeView/TreeItem/TreeItem.d.ts +16 -0
- package/lib/components/TreeView/TreeItem/TreeItem.stories.d.ts +9 -0
- package/lib/components/TreeView/TreeItem/TreeItem.test.d.ts +1 -0
- package/lib/components/TreeView/TreeItem/index.d.ts +1 -0
- package/lib/components/TreeView/TreeView.d.ts +34 -0
- package/lib/components/TreeView/TreeView.stories.d.ts +6 -0
- package/lib/components/TreeView/TreeView.test.d.ts +1 -0
- package/lib/components/TreeView/context.d.ts +9 -0
- package/lib/components/TreeView/index.d.ts +1 -0
- package/lib/components/TreeView/sampleData.d.ts +71 -0
- package/lib/components/TreeView/types/tree.types.d.ts +21 -0
- package/lib/components/TreeView V1/TreeItem/TreeItem.d.ts +16 -0
- package/lib/components/TreeView V1/TreeItem/TreeItem.stories.d.ts +9 -0
- package/lib/components/TreeView V1/TreeItem/TreeItem.test.d.ts +1 -0
- package/lib/components/TreeView V1/TreeItem/index.d.ts +1 -0
- package/lib/components/TreeView V1/TreeView.d.ts +6 -0
- package/lib/components/TreeView V1/TreeView.stories.d.ts +6 -0
- package/lib/components/TreeView V1/TreeView.test.d.ts +1 -0
- package/lib/components/TreeView V1/context.d.ts +9 -0
- package/lib/components/TreeView V1/index.d.ts +1 -0
- package/lib/components/TreeView V1/sampleData.d.ts +71 -0
- package/lib/components/TreeView V1/types/tree.types.d.ts +21 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.esm.js +7228 -0
- package/lib/index.esm.js.map +1 -0
- package/lib/index.js +7256 -0
- package/lib/index.js.map +1 -0
- package/lib/page/TreeNavigation/CustomNode/CustomNode.d.ts +3 -0
- package/lib/page/TreeNavigation/CustomNode/CustomNode.test.d.ts +1 -0
- package/lib/page/TreeNavigation/CustomNode/index.d.ts +1 -0
- package/lib/page/TreeNavigation/TreeNavigation.d.ts +8 -0
- package/lib/page/TreeNavigation/TreeNavigation.stories.d.ts +6 -0
- package/lib/page/TreeNavigation/hooks/useFetch.d.ts +14 -0
- package/lib/page/TreeNavigation/index.d.ts +1 -0
- package/lib/util/DynamicIcons.d.ts +10 -0
- package/package.json +76 -0
- package/postcss.config.js +7 -0
- package/rollup.config.js +37 -0
- package/setupTests.js +6 -0
- package/styleMock.js +2 -0
- package/tailwind.config.js +18 -0
- package/tsconfig.json +23 -0
- package/yarn-error.log +12463 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{"/Users/jeromevercide/projects/agility-component-lib-react/styleMock.js": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/styleMock.js","statementMap":{"0":{"start":{"line":2,"column":0},"end":{"line":2,"column":20}}},"fnMap":{},"branchMap":{},"s":{"0":1},"f":{},"b":{},"inputSourceMap":null,"_coverageSchema":"1a1c01bbd47fc00a2c39e90264f33305004495a9","hash":"dbdf0703ad524837ad48c397c3d1fbb6e6a9ef82"}
|
|
2
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Button/Button.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Button/Button.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":65}},"3":{"start":{"line":5,"column":0},"end":{"line":5,"column":28}},"4":{"start":{"line":32,"column":39},"end":{"line":68,"column":1}},"5":{"start":{"line":33,"column":4},"end":{"line":33,"column":8}},"6":{"start":{"line":33,"column":8},"end":{"line":33,"column":null}},"7":{"start":{"line":34,"column":4},"end":{"line":34,"column":8}},"8":{"start":{"line":34,"column":8},"end":{"line":34,"column":null}},"9":{"start":{"line":35,"column":11},"end":{"line":35,"column":null}},"10":{"start":{"line":36,"column":9},"end":{"line":36,"column":null}},"11":{"start":{"line":37,"column":8},"end":{"line":37,"column":null}},"12":{"start":{"line":39,"column":22},"end":{"line":52,"column":null}},"13":{"start":{"line":55,"column":23},"end":{"line":59,"column":null}},"14":{"start":{"line":62,"column":4},"end":{"line":67,"column":6}},"15":{"start":{"line":32,"column":13},"end":{"line":32,"column":39}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":32,"column":39},"end":{"line":32,"column":40}},"loc":{"start":{"line":38,"column":14},"end":{"line":68,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":33,"column":8},"end":{"line":33,"column":null}},"type":"cond-expr","locations":[{"start":{"line":33,"column":11},"end":{"line":33,"column":20}},{"start":{"line":33,"column":20},"end":{"line":33,"column":null}}]},"1":{"loc":{"start":{"line":34,"column":8},"end":{"line":34,"column":null}},"type":"cond-expr","locations":[{"start":{"line":34,"column":11},"end":{"line":34,"column":17}},{"start":{"line":34,"column":17},"end":{"line":34,"column":null}}]},"2":{"loc":{"start":{"line":64,"column":13},"end":{"line":64,"column":88}},"type":"binary-expr","locations":[{"start":{"line":64,"column":13},"end":{"line":64,"column":17}},{"start":{"line":64,"column":21},"end":{"line":64,"column":88}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":16,"6":16,"7":16,"8":16,"9":16,"10":16,"11":16,"12":16,"13":16,"14":16,"15":1},"f":{"0":16},"b":{"0":[0,16],"1":[13,3],"2":[16,0]}}
|
|
3
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/BaseField/BaseField.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/BaseField/BaseField.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":42}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":47,"column":4},"end":{"line":47,"column":96}},"3":{"start":{"line":49,"column":18},"end":{"line":104,"column":1}},"4":{"start":{"line":51,"column":15},"end":{"line":51,"column":null}},"5":{"start":{"line":52,"column":14},"end":{"line":52,"column":null}},"6":{"start":{"line":53,"column":10},"end":{"line":53,"column":null}},"7":{"start":{"line":54,"column":12},"end":{"line":54,"column":null}},"8":{"start":{"line":55,"column":12},"end":{"line":55,"column":null}},"9":{"start":{"line":56,"column":20},"end":{"line":56,"column":null}},"10":{"start":{"line":57,"column":18},"end":{"line":57,"column":null}},"11":{"start":{"line":58,"column":8},"end":{"line":58,"column":17}},"12":{"start":{"line":58,"column":17},"end":{"line":58,"column":null}},"13":{"start":{"line":59,"column":19},"end":{"line":59,"column":null}},"14":{"start":{"line":60,"column":8},"end":{"line":60,"column":19}},"15":{"start":{"line":60,"column":19},"end":{"line":60,"column":null}},"16":{"start":{"line":61,"column":16},"end":{"line":61,"column":null}},"17":{"start":{"line":62,"column":21},"end":{"line":62,"column":null}},"18":{"start":{"line":66,"column":25},"end":{"line":70,"column":5}},"19":{"start":{"line":67,"column":28},"end":{"line":67,"column":49}},"20":{"start":{"line":68,"column":8},"end":{"line":68,"column":42}},"21":{"start":{"line":69,"column":8},"end":{"line":69,"column":52}},"22":{"start":{"line":72,"column":24},"end":{"line":74,"column":5}},"23":{"start":{"line":73,"column":8},"end":{"line":73,"column":29}},"24":{"start":{"line":76,"column":23},"end":{"line":78,"column":5}},"25":{"start":{"line":77,"column":8},"end":{"line":77,"column":27}},"26":{"start":{"line":81,"column":24},"end":{"line":83,"column":6}},"27":{"start":{"line":85,"column":4},"end":{"line":103,"column":6}},"28":{"start":{"line":90,"column":16},"end":{"line":90,"column":32}},"29":{"start":{"line":106,"column":19},"end":{"line":106,"column":74}},"30":{"start":{"line":107,"column":23},"end":{"line":107,"column":32}}},"fnMap":{"0":{"name":"(anonymous_7)","decl":{"start":{"line":49,"column":18},"end":{"line":49,"column":null}},"loc":{"start":{"line":64,"column":42},"end":{"line":104,"column":1}}},"1":{"name":"(anonymous_8)","decl":{"start":{"line":66,"column":25},"end":{"line":66,"column":26}},"loc":{"start":{"line":66,"column":64},"end":{"line":70,"column":5}}},"2":{"name":"(anonymous_9)","decl":{"start":{"line":72,"column":24},"end":{"line":72,"column":null}},"loc":{"start":{"line":72,"column":24},"end":{"line":74,"column":5}}},"3":{"name":"(anonymous_10)","decl":{"start":{"line":76,"column":23},"end":{"line":76,"column":null}},"loc":{"start":{"line":76,"column":23},"end":{"line":78,"column":5}}},"4":{"name":"(anonymous_11)","decl":{"start":{"line":89,"column":22},"end":{"line":89,"column":23}},"loc":{"start":{"line":89,"column":24},"end":{"line":91,"column":13}}}},"branchMap":{"0":{"loc":{"start":{"line":58,"column":17},"end":{"line":58,"column":null}},"type":"cond-expr","locations":[{"start":{"line":58,"column":20},"end":{"line":58,"column":23}},{"start":{"line":58,"column":23},"end":{"line":58,"column":null}}]},"1":{"loc":{"start":{"line":60,"column":19},"end":{"line":60,"column":null}},"type":"cond-expr","locations":[{"start":{"line":60,"column":22},"end":{"line":60,"column":35}},{"start":{"line":60,"column":35},"end":{"line":60,"column":null}}]},"2":{"loc":{"start":{"line":68,"column":8},"end":{"line":68,"column":41}},"type":"binary-expr","locations":[{"start":{"line":68,"column":8},"end":{"line":68,"column":16}},{"start":{"line":68,"column":20},"end":{"line":68,"column":41}}]},"3":{"loc":{"start":{"line":69,"column":8},"end":{"line":69,"column":51}},"type":"binary-expr","locations":[{"start":{"line":69,"column":8},"end":{"line":69,"column":21}},{"start":{"line":69,"column":25},"end":{"line":69,"column":51}}]},"4":{"loc":{"start":{"line":73,"column":8},"end":{"line":73,"column":28}},"type":"binary-expr","locations":[{"start":{"line":73,"column":8},"end":{"line":73,"column":15}},{"start":{"line":73,"column":19},"end":{"line":73,"column":28}}]},"5":{"loc":{"start":{"line":77,"column":8},"end":{"line":77,"column":26}},"type":"binary-expr","locations":[{"start":{"line":77,"column":8},"end":{"line":77,"column":14}},{"start":{"line":77,"column":18},"end":{"line":77,"column":26}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":15,"5":15,"6":15,"7":15,"8":15,"9":15,"10":15,"11":15,"12":15,"13":15,"14":15,"15":15,"16":15,"17":15,"18":15,"19":0,"20":0,"21":0,"22":15,"23":0,"24":15,"25":0,"26":15,"27":15,"28":0,"29":1,"30":1},"f":{"0":15,"1":0,"2":0,"3":0,"4":0},"b":{"0":[15,0],"1":[15,0],"2":[0,0],"3":[0,0],"4":[0,0],"5":[0,0]}}
|
|
4
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Checkbox/Checkbox.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Checkbox/Checkbox.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":43}},"3":{"start":{"line":23,"column":43},"end":{"line":66,"column":1}},"4":{"start":{"line":24,"column":9},"end":{"line":24,"column":null}},"5":{"start":{"line":25,"column":6},"end":{"line":25,"column":null}},"6":{"start":{"line":26,"column":14},"end":{"line":26,"column":null}},"7":{"start":{"line":27,"column":13},"end":{"line":27,"column":null}},"8":{"start":{"line":28,"column":14},"end":{"line":28,"column":null}},"9":{"start":{"line":29,"column":11},"end":{"line":29,"column":null}},"10":{"start":{"line":30,"column":11},"end":{"line":30,"column":null}},"11":{"start":{"line":32,"column":26},"end":{"line":34,"column":null}},"12":{"start":{"line":36,"column":26},"end":{"line":36,"column":87}},"13":{"start":{"line":37,"column":4},"end":{"line":65,"column":6}},"14":{"start":{"line":23,"column":13},"end":{"line":23,"column":43}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":23,"column":43},"end":{"line":23,"column":44}},"loc":{"start":{"line":31,"column":16},"end":{"line":66,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":58,"column":17},"end":{"line":61,"column":null}},"type":"binary-expr","locations":[{"start":{"line":58,"column":17},"end":{"line":58,"column":24}},{"start":{"line":59,"column":20},"end":{"line":60,"column":null}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":12,"5":12,"6":12,"7":12,"8":12,"9":12,"10":12,"11":12,"12":12,"13":12,"14":1},"f":{"0":12},"b":{"0":[12,1]}}
|
|
5
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputCounter/InputCounter.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputCounter/InputCounter.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":11,"column":51},"end":{"line":18,"column":1}},"2":{"start":{"line":11,"column":54},"end":{"line":11,"column":61}},"3":{"start":{"line":11,"column":61},"end":{"line":11,"column":67}},"4":{"start":{"line":11,"column":72},"end":{"line":11,"column":93}},"5":{"start":{"line":12,"column":4},"end":{"line":17,"column":6}},"6":{"start":{"line":11,"column":13},"end":{"line":11,"column":51}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":11,"column":51},"end":{"line":11,"column":52}},"loc":{"start":{"line":11,"column":93},"end":{"line":18,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":11,"column":61},"end":{"line":11,"column":67}},"type":"cond-expr","locations":[{"start":{"line":11,"column":64},"end":{"line":11,"column":65}},{"start":{"line":11,"column":65},"end":{"line":11,"column":67}}]},"1":{"loc":{"start":{"line":14,"column":44},"end":{"line":14,"column":77}},"type":"cond-expr","locations":[{"start":{"line":14,"column":62},"end":{"line":14,"column":67}},{"start":{"line":14,"column":70},"end":{"line":14,"column":77}}]}},"s":{"0":1,"1":1,"2":3,"3":3,"4":3,"5":3,"6":1},"f":{"0":3},"b":{"0":[0,3],"1":[1,2]}}
|
|
6
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputLabel/InputLabel.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputLabel/InputLabel.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":17,"column":47},"end":{"line":42,"column":1}},"3":{"start":{"line":18,"column":4},"end":{"line":18,"column":17}},"4":{"start":{"line":18,"column":17},"end":{"line":18,"column":null}},"5":{"start":{"line":19,"column":6},"end":{"line":19,"column":null}},"6":{"start":{"line":20,"column":14},"end":{"line":20,"column":null}},"7":{"start":{"line":21,"column":14},"end":{"line":21,"column":null}},"8":{"start":{"line":22,"column":12},"end":{"line":22,"column":null}},"9":{"start":{"line":23,"column":11},"end":{"line":23,"column":null}},"10":{"start":{"line":24,"column":9},"end":{"line":24,"column":null}},"11":{"start":{"line":26,"column":24},"end":{"line":33,"column":null}},"12":{"start":{"line":36,"column":4},"end":{"line":41,"column":6}},"13":{"start":{"line":17,"column":13},"end":{"line":17,"column":47}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":17,"column":47},"end":{"line":17,"column":48}},"loc":{"start":{"line":25,"column":18},"end":{"line":42,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":18,"column":17},"end":{"line":18,"column":null}},"type":"cond-expr","locations":[{"start":{"line":18,"column":20},"end":{"line":18,"column":25}},{"start":{"line":18,"column":25},"end":{"line":18,"column":null}}]},"1":{"loc":{"start":{"line":29,"column":46},"end":{"line":29,"column":72}},"type":"binary-expr","locations":[{"start":{"line":29,"column":46},"end":{"line":29,"column":59}},{"start":{"line":29,"column":63},"end":{"line":29,"column":72}}]},"2":{"loc":{"start":{"line":30,"column":60},"end":{"line":30,"column":85}},"type":"binary-expr","locations":[{"start":{"line":30,"column":60},"end":{"line":30,"column":73}},{"start":{"line":30,"column":77},"end":{"line":30,"column":85}}]},"3":{"loc":{"start":{"line":31,"column":59},"end":{"line":31,"column":83}},"type":"binary-expr","locations":[{"start":{"line":31,"column":59},"end":{"line":31,"column":72}},{"start":{"line":31,"column":76},"end":{"line":31,"column":83}}]},"4":{"loc":{"start":{"line":32,"column":35},"end":{"line":32,"column":60}},"type":"binary-expr","locations":[{"start":{"line":32,"column":35},"end":{"line":32,"column":49}},{"start":{"line":32,"column":53},"end":{"line":32,"column":60}}]},"5":{"loc":{"start":{"line":39,"column":13},"end":{"line":39,"column":67}},"type":"binary-expr","locations":[{"start":{"line":39,"column":13},"end":{"line":39,"column":23}},{"start":{"line":39,"column":27},"end":{"line":39,"column":67}}]}},"s":{"0":3,"1":3,"2":3,"3":13,"4":13,"5":13,"6":13,"7":13,"8":13,"9":13,"10":13,"11":13,"12":13,"13":3},"f":{"0":13},"b":{"0":[8,5],"1":[13,5],"2":[13,5],"3":[13,5],"4":[13,8],"5":[13,6]}}
|
|
7
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputLabel/index.ts": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/InputLabel/index.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":28}}},"fnMap":{},"branchMap":{},"s":{"0":3},"f":{},"b":{}}
|
|
8
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Radio/Radio.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Radio/Radio.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":43}},"3":{"start":{"line":25,"column":37},"end":{"line":62,"column":1}},"4":{"start":{"line":26,"column":9},"end":{"line":26,"column":null}},"5":{"start":{"line":27,"column":6},"end":{"line":27,"column":null}},"6":{"start":{"line":28,"column":8},"end":{"line":28,"column":null}},"7":{"start":{"line":29,"column":4},"end":{"line":29,"column":14}},"8":{"start":{"line":29,"column":14},"end":{"line":29,"column":null}},"9":{"start":{"line":30,"column":4},"end":{"line":30,"column":13}},"10":{"start":{"line":30,"column":13},"end":{"line":30,"column":null}},"11":{"start":{"line":31,"column":4},"end":{"line":31,"column":14}},"12":{"start":{"line":31,"column":14},"end":{"line":31,"column":null}},"13":{"start":{"line":32,"column":4},"end":{"line":32,"column":11}},"14":{"start":{"line":32,"column":11},"end":{"line":32,"column":null}},"15":{"start":{"line":33,"column":11},"end":{"line":33,"column":null}},"16":{"start":{"line":35,"column":26},"end":{"line":37,"column":6}},"17":{"start":{"line":38,"column":26},"end":{"line":38,"column":87}},"18":{"start":{"line":39,"column":4},"end":{"line":61,"column":6}},"19":{"start":{"line":25,"column":13},"end":{"line":25,"column":37}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":25,"column":37},"end":{"line":25,"column":38}},"loc":{"start":{"line":34,"column":13},"end":{"line":62,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":29,"column":14},"end":{"line":29,"column":null}},"type":"cond-expr","locations":[{"start":{"line":29,"column":17},"end":{"line":29,"column":22}},{"start":{"line":29,"column":22},"end":{"line":29,"column":null}}]},"1":{"loc":{"start":{"line":30,"column":13},"end":{"line":30,"column":null}},"type":"cond-expr","locations":[{"start":{"line":30,"column":16},"end":{"line":30,"column":21}},{"start":{"line":30,"column":21},"end":{"line":30,"column":null}}]},"2":{"loc":{"start":{"line":31,"column":14},"end":{"line":31,"column":null}},"type":"cond-expr","locations":[{"start":{"line":31,"column":17},"end":{"line":31,"column":22}},{"start":{"line":31,"column":22},"end":{"line":31,"column":null}}]},"3":{"loc":{"start":{"line":32,"column":11},"end":{"line":32,"column":null}},"type":"cond-expr","locations":[{"start":{"line":32,"column":14},"end":{"line":32,"column":19}},{"start":{"line":32,"column":19},"end":{"line":32,"column":null}}]},"4":{"loc":{"start":{"line":54,"column":17},"end":{"line":57,"column":null}},"type":"binary-expr","locations":[{"start":{"line":54,"column":17},"end":{"line":54,"column":24}},{"start":{"line":55,"column":20},"end":{"line":56,"column":null}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":13,"5":13,"6":13,"7":13,"8":13,"9":13,"10":13,"11":13,"12":13,"13":13,"14":13,"15":13,"16":13,"17":13,"18":13,"19":1},"f":{"0":13},"b":{"0":[12,1],"1":[12,1],"2":[12,1],"3":[12,1],"4":[13,1]}}
|
|
9
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Select/Select.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/Select/Select.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":44}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":43}},"3":{"start":{"line":30,"column":39},"end":{"line":84,"column":1}},"4":{"start":{"line":31,"column":9},"end":{"line":31,"column":null}},"5":{"start":{"line":32,"column":6},"end":{"line":32,"column":null}},"6":{"start":{"line":33,"column":8},"end":{"line":33,"column":null}},"7":{"start":{"line":34,"column":11},"end":{"line":34,"column":null}},"8":{"start":{"line":35,"column":12},"end":{"line":35,"column":null}},"9":{"start":{"line":36,"column":14},"end":{"line":36,"column":null}},"10":{"start":{"line":37,"column":11},"end":{"line":37,"column":null}},"11":{"start":{"line":38,"column":14},"end":{"line":38,"column":null}},"12":{"start":{"line":40,"column":48},"end":{"line":40,"column":82}},"13":{"start":{"line":40,"column":25},"end":{"line":40,"column":27}},"14":{"start":{"line":40,"column":44},"end":{"line":40,"column":48}},"15":{"start":{"line":41,"column":25},"end":{"line":45,"column":5}},"16":{"start":{"line":42,"column":28},"end":{"line":42,"column":42}},"17":{"start":{"line":43,"column":8},"end":{"line":43,"column":63}},"18":{"start":{"line":44,"column":8},"end":{"line":44,"column":39}},"19":{"start":{"line":46,"column":25},"end":{"line":50,"column":null}},"20":{"start":{"line":52,"column":25},"end":{"line":52,"column":57}},"21":{"start":{"line":53,"column":4},"end":{"line":83,"column":6}},"22":{"start":{"line":74,"column":37},"end":{"line":74,"column":39}},"23":{"start":{"line":74,"column":44},"end":{"line":74,"column":46}},"24":{"start":{"line":75,"column":20},"end":{"line":79,"column":22}},"25":{"start":{"line":30,"column":13},"end":{"line":30,"column":39}}},"fnMap":{"0":{"name":"(anonymous_7)","decl":{"start":{"line":30,"column":39},"end":{"line":30,"column":40}},"loc":{"start":{"line":39,"column":14},"end":{"line":84,"column":1}}},"1":{"name":"(anonymous_8)","decl":{"start":{"line":41,"column":25},"end":{"line":41,"column":26}},"loc":{"start":{"line":41,"column":65},"end":{"line":45,"column":5}}},"2":{"name":"(anonymous_9)","decl":{"start":{"line":74,"column":29},"end":{"line":74,"column":30}},"loc":{"start":{"line":74,"column":46},"end":{"line":80,"column":17}}}},"branchMap":{"0":{"loc":{"start":{"line":43,"column":8},"end":{"line":43,"column":62}},"type":"binary-expr","locations":[{"start":{"line":43,"column":8},"end":{"line":43,"column":37}},{"start":{"line":43,"column":41},"end":{"line":43,"column":62}}]},"1":{"loc":{"start":{"line":55,"column":13},"end":{"line":64,"column":null}},"type":"binary-expr","locations":[{"start":{"line":55,"column":13},"end":{"line":55,"column":18}},{"start":{"line":56,"column":16},"end":{"line":63,"column":null}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":7,"5":7,"6":7,"7":7,"8":7,"9":7,"10":7,"11":7,"12":7,"13":7,"14":7,"15":7,"16":1,"17":1,"18":1,"19":7,"20":7,"21":7,"22":8,"23":8,"24":8,"25":1},"f":{"0":7,"1":1,"2":8},"b":{"0":[1,1],"1":[7,5]}}
|
|
10
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/InputCta.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/InputCta.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":34}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":71}},"3":{"start":{"line":19,"column":43},"end":{"line":62,"column":1}},"4":{"start":{"line":20,"column":8},"end":{"line":20,"column":null}},"5":{"start":{"line":21,"column":12},"end":{"line":21,"column":null}},"6":{"start":{"line":22,"column":4},"end":{"line":22,"column":9}},"7":{"start":{"line":22,"column":9},"end":{"line":22,"column":null}},"8":{"start":{"line":23,"column":4},"end":{"line":23,"column":11}},"9":{"start":{"line":23,"column":11},"end":{"line":23,"column":null}},"10":{"start":{"line":24,"column":18},"end":{"line":24,"column":null}},"11":{"start":{"line":26,"column":24},"end":{"line":28,"column":5}},"12":{"start":{"line":27,"column":8},"end":{"line":27,"column":43}},"13":{"start":{"line":29,"column":24},"end":{"line":54,"column":null}},"14":{"start":{"line":56,"column":4},"end":{"line":61,"column":6}},"15":{"start":{"line":19,"column":13},"end":{"line":19,"column":43}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":19,"column":43},"end":{"line":19,"column":44}},"loc":{"start":{"line":25,"column":16},"end":{"line":62,"column":1}}},"1":{"name":"(anonymous_2)","decl":{"start":{"line":26,"column":24},"end":{"line":26,"column":null}},"loc":{"start":{"line":26,"column":24},"end":{"line":28,"column":5}}}},"branchMap":{"0":{"loc":{"start":{"line":22,"column":9},"end":{"line":22,"column":null}},"type":"cond-expr","locations":[{"start":{"line":22,"column":12},"end":{"line":22,"column":19}},{"start":{"line":22,"column":19},"end":{"line":22,"column":null}}]},"1":{"loc":{"start":{"line":23,"column":11},"end":{"line":23,"column":null}},"type":"cond-expr","locations":[{"start":{"line":23,"column":14},"end":{"line":23,"column":19}},{"start":{"line":23,"column":19},"end":{"line":23,"column":null}}]},"2":{"loc":{"start":{"line":27,"column":8},"end":{"line":27,"column":42}},"type":"binary-expr","locations":[{"start":{"line":27,"column":8},"end":{"line":27,"column":22}},{"start":{"line":27,"column":26},"end":{"line":27,"column":42}}]},"3":{"loc":{"start":{"line":41,"column":33},"end":{"line":41,"column":59}},"type":"binary-expr","locations":[{"start":{"line":41,"column":33},"end":{"line":41,"column":47}},{"start":{"line":41,"column":51},"end":{"line":41,"column":59}}]},"4":{"loc":{"start":{"line":44,"column":30},"end":{"line":44,"column":58}},"type":"binary-expr","locations":[{"start":{"line":44,"column":30},"end":{"line":44,"column":37}},{"start":{"line":44,"column":41},"end":{"line":44,"column":58}}]},"5":{"loc":{"start":{"line":47,"column":30},"end":{"line":47,"column":57}},"type":"binary-expr","locations":[{"start":{"line":47,"column":30},"end":{"line":47,"column":37}},{"start":{"line":47,"column":41},"end":{"line":47,"column":57}}]},"6":{"loc":{"start":{"line":59,"column":13},"end":{"line":59,"column":48}},"type":"binary-expr","locations":[{"start":{"line":59,"column":13},"end":{"line":59,"column":21}},{"start":{"line":59,"column":25},"end":{"line":59,"column":48}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":4,"5":4,"6":4,"7":4,"8":4,"9":4,"10":4,"11":4,"12":0,"13":4,"14":4,"15":1},"f":{"0":4,"1":0},"b":{"0":[0,4],"1":[0,4],"2":[0,0],"3":[4,0],"4":[4,3],"5":[4,3],"6":[4,4]}}
|
|
11
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":44}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":14,"column":49},"end":{"line":44,"column":1}},"3":{"start":{"line":15,"column":16},"end":{"line":15,"column":null}},"4":{"start":{"line":16,"column":18},"end":{"line":16,"column":null}},"5":{"start":{"line":17,"column":4},"end":{"line":17,"column":9}},"6":{"start":{"line":17,"column":9},"end":{"line":17,"column":null}},"7":{"start":{"line":19,"column":48},"end":{"line":19,"column":87}},"8":{"start":{"line":19,"column":25},"end":{"line":19,"column":27}},"9":{"start":{"line":19,"column":44},"end":{"line":19,"column":48}},"10":{"start":{"line":20,"column":25},"end":{"line":24,"column":5}},"11":{"start":{"line":21,"column":28},"end":{"line":21,"column":42}},"12":{"start":{"line":22,"column":8},"end":{"line":22,"column":54}},"13":{"start":{"line":23,"column":8},"end":{"line":23,"column":39}},"14":{"start":{"line":25,"column":24},"end":{"line":31,"column":null}},"15":{"start":{"line":34,"column":4},"end":{"line":34,"column":43}},"16":{"start":{"line":34,"column":31},"end":{"line":34,"column":43}},"17":{"start":{"line":35,"column":4},"end":{"line":43,"column":6}},"18":{"start":{"line":37,"column":42},"end":{"line":41,"column":14}},"19":{"start":{"line":14,"column":13},"end":{"line":14,"column":49}}},"fnMap":{"0":{"name":"(anonymous_7)","decl":{"start":{"line":14,"column":49},"end":{"line":14,"column":50}},"loc":{"start":{"line":18,"column":19},"end":{"line":44,"column":1}}},"1":{"name":"(anonymous_8)","decl":{"start":{"line":20,"column":25},"end":{"line":20,"column":26}},"loc":{"start":{"line":20,"column":65},"end":{"line":24,"column":5}}},"2":{"name":"(anonymous_9)","decl":{"start":{"line":37,"column":30},"end":{"line":37,"column":31}},"loc":{"start":{"line":37,"column":37},"end":{"line":37,"column":null}}}},"branchMap":{"0":{"loc":{"start":{"line":17,"column":9},"end":{"line":17,"column":null}},"type":"cond-expr","locations":[{"start":{"line":17,"column":12},"end":{"line":17,"column":19}},{"start":{"line":17,"column":19},"end":{"line":17,"column":null}}]},"1":{"loc":{"start":{"line":22,"column":8},"end":{"line":22,"column":53}},"type":"binary-expr","locations":[{"start":{"line":22,"column":8},"end":{"line":22,"column":22}},{"start":{"line":22,"column":26},"end":{"line":22,"column":53}}]},"2":{"loc":{"start":{"line":34,"column":4},"end":{"line":34,"column":43}},"type":"if","locations":[{"start":{"line":34,"column":4},"end":{"line":34,"column":43}}]},"3":{"loc":{"start":{"line":34,"column":9},"end":{"line":34,"column":29}},"type":"cond-expr","locations":[{"start":{"line":34,"column":21},"end":{"line":34,"column":23}},{"start":{"line":34,"column":9},"end":{"line":34,"column":29}}]},"4":{"loc":{"start":{"line":34,"column":9},"end":{"line":34,"column":23}},"type":"binary-expr","locations":[{"start":{"line":34,"column":9},"end":{"line":34,"column":23}},{"start":{"line":34,"column":9},"end":{"line":34,"column":23}}]}},"s":{"0":1,"1":1,"2":1,"3":4,"4":4,"5":4,"6":4,"7":4,"8":4,"9":4,"10":4,"11":1,"12":1,"13":1,"14":4,"15":4,"16":0,"17":4,"18":4,"19":1},"f":{"0":4,"1":1,"2":4},"b":{"0":[0,4],"1":[1,1],"2":[0],"3":[0,4],"4":[4,4]}}
|
|
12
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Switch/Switch.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/components/Switch/Switch.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":55}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":43}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":63}},"3":{"start":{"line":13,"column":39},"end":{"line":43,"column":1}},"4":{"start":{"line":13,"column":42},"end":{"line":13,"column":54}},"5":{"start":{"line":13,"column":54},"end":{"line":13,"column":64}},"6":{"start":{"line":13,"column":72},"end":{"line":13,"column":87}},"7":{"start":{"line":14,"column":34},"end":{"line":14,"column":65}},"8":{"start":{"line":14,"column":18},"end":{"line":14,"column":20}},"9":{"start":{"line":14,"column":30},"end":{"line":14,"column":34}},"10":{"start":{"line":15,"column":4},"end":{"line":17,"column":18}},"11":{"start":{"line":16,"column":8},"end":{"line":16,"column":38}},"12":{"start":{"line":19,"column":25},"end":{"line":25,"column":null}},"13":{"start":{"line":28,"column":25},"end":{"line":32,"column":null}},"14":{"start":{"line":35,"column":4},"end":{"line":42,"column":6}},"15":{"start":{"line":13,"column":13},"end":{"line":13,"column":39}}},"fnMap":{"0":{"name":"(anonymous_7)","decl":{"start":{"line":13,"column":39},"end":{"line":13,"column":40}},"loc":{"start":{"line":13,"column":87},"end":{"line":43,"column":1}}},"1":{"name":"(anonymous_8)","decl":{"start":{"line":15,"column":14},"end":{"line":15,"column":null}},"loc":{"start":{"line":15,"column":14},"end":{"line":17,"column":5}}}},"branchMap":{"0":{"loc":{"start":{"line":13,"column":54},"end":{"line":13,"column":64}},"type":"cond-expr","locations":[{"start":{"line":13,"column":57},"end":{"line":13,"column":62}},{"start":{"line":13,"column":62},"end":{"line":13,"column":64}}]},"1":{"loc":{"start":{"line":16,"column":8},"end":{"line":16,"column":37}},"type":"binary-expr","locations":[{"start":{"line":16,"column":8},"end":{"line":16,"column":16}},{"start":{"line":16,"column":20},"end":{"line":16,"column":37}}]}},"s":{"0":1,"1":1,"2":1,"3":1,"4":2,"5":2,"6":2,"7":2,"8":2,"9":2,"10":2,"11":0,"12":2,"13":2,"14":2,"15":1},"f":{"0":2,"1":0},"b":{"0":[1,1],"1":[0,0]}}
|
|
13
|
+
,"/Users/jeromevercide/projects/agility-component-lib-react/src/util/DynamicIcons.tsx": {"path":"/Users/jeromevercide/projects/agility-component-lib-react/src/util/DynamicIcons.tsx","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":26}},"1":{"start":{"line":3,"column":0},"end":{"line":3,"column":53}},"2":{"start":{"line":4,"column":0},"end":{"line":4,"column":57}},"3":{"start":{"line":14,"column":28},"end":{"line":22,"column":1}},"4":{"start":{"line":15,"column":8},"end":{"line":15,"column":null}},"5":{"start":{"line":16,"column":4},"end":{"line":16,"column":13}},"6":{"start":{"line":16,"column":13},"end":{"line":16,"column":null}},"7":{"start":{"line":17,"column":11},"end":{"line":17,"column":null}},"8":{"start":{"line":19,"column":4},"end":{"line":19,"column":27}},"9":{"start":{"line":19,"column":15},"end":{"line":19,"column":27}},"10":{"start":{"line":20,"column":17},"end":{"line":20,"column":64}},"11":{"start":{"line":21,"column":4},"end":{"line":21,"column":56}},"12":{"start":{"line":14,"column":13},"end":{"line":14,"column":28}}},"fnMap":{"0":{"name":"(anonymous_7)","decl":{"start":{"line":14,"column":28},"end":{"line":14,"column":29}},"loc":{"start":{"line":18,"column":20},"end":{"line":22,"column":1}}}},"branchMap":{"0":{"loc":{"start":{"line":16,"column":13},"end":{"line":16,"column":null}},"type":"cond-expr","locations":[{"start":{"line":16,"column":16},"end":{"line":16,"column":39}},{"start":{"line":16,"column":39},"end":{"line":16,"column":null}}]},"1":{"loc":{"start":{"line":19,"column":4},"end":{"line":19,"column":27}},"type":"if","locations":[{"start":{"line":19,"column":4},"end":{"line":19,"column":27}}]},"2":{"loc":{"start":{"line":20,"column":17},"end":{"line":20,"column":64}},"type":"cond-expr","locations":[{"start":{"line":20,"column":27},"end":{"line":20,"column":45}},{"start":{"line":20,"column":48},"end":{"line":20,"column":64}}]},"3":{"loc":{"start":{"line":21,"column":11},"end":{"line":21,"column":55}},"type":"cond-expr","locations":[{"start":{"line":21,"column":18},"end":{"line":21,"column":48}},{"start":{"line":21,"column":51},"end":{"line":21,"column":55}}]}},"s":{"0":2,"1":2,"2":2,"3":2,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":2},"f":{"0":0},"b":{"0":[0,0],"1":[0],"2":[0,0],"3":[0,0]}}
|
|
14
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for All files</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1>All files</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">91.32% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>179/196</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">64.28% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>54/84</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">66.66% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>14/21</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">91.13% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>144/158</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input oninput="onInput()" type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line high'></div>
|
|
65
|
+
<div class="pad1">
|
|
66
|
+
<table class="coverage-summary">
|
|
67
|
+
<thead>
|
|
68
|
+
<tr>
|
|
69
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
|
70
|
+
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
|
71
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
|
72
|
+
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
73
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
|
74
|
+
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
75
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
|
76
|
+
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
77
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
|
78
|
+
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
79
|
+
</tr>
|
|
80
|
+
</thead>
|
|
81
|
+
<tbody><tr>
|
|
82
|
+
<td class="file high" data-value="agility-component-lib-react"><a href="agility-component-lib-react/index.html">agility-component-lib-react</a></td>
|
|
83
|
+
<td data-value="100" class="pic high">
|
|
84
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
85
|
+
</td>
|
|
86
|
+
<td data-value="100" class="pct high">100%</td>
|
|
87
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
88
|
+
<td data-value="100" class="pct high">100%</td>
|
|
89
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
90
|
+
<td data-value="100" class="pct high">100%</td>
|
|
91
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
92
|
+
<td data-value="100" class="pct high">100%</td>
|
|
93
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
94
|
+
</tr>
|
|
95
|
+
|
|
96
|
+
<tr>
|
|
97
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Button"><a href="agility-component-lib-react/src/components/Button/index.html">agility-component-lib-react/src/components/Button</a></td>
|
|
98
|
+
<td data-value="100" class="pic high">
|
|
99
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="100" class="pct high">100%</td>
|
|
102
|
+
<td data-value="16" class="abs high">16/16</td>
|
|
103
|
+
<td data-value="66.66" class="pct medium">66.66%</td>
|
|
104
|
+
<td data-value="6" class="abs medium">4/6</td>
|
|
105
|
+
<td data-value="100" class="pct high">100%</td>
|
|
106
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
107
|
+
<td data-value="100" class="pct high">100%</td>
|
|
108
|
+
<td data-value="13" class="abs high">13/13</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
<tr>
|
|
112
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/BaseField"><a href="agility-component-lib-react/src/components/Forms/BaseField/index.html">agility-component-lib-react/src/components/Forms/BaseField</a></td>
|
|
113
|
+
<td data-value="80.64" class="pic high">
|
|
114
|
+
<div class="chart"><div class="cover-fill" style="width: 80%"></div><div class="cover-empty" style="width: 20%"></div></div>
|
|
115
|
+
</td>
|
|
116
|
+
<td data-value="80.64" class="pct high">80.64%</td>
|
|
117
|
+
<td data-value="31" class="abs high">25/31</td>
|
|
118
|
+
<td data-value="16.66" class="pct low">16.66%</td>
|
|
119
|
+
<td data-value="12" class="abs low">2/12</td>
|
|
120
|
+
<td data-value="20" class="pct low">20%</td>
|
|
121
|
+
<td data-value="5" class="abs low">1/5</td>
|
|
122
|
+
<td data-value="79.31" class="pct medium">79.31%</td>
|
|
123
|
+
<td data-value="29" class="abs medium">23/29</td>
|
|
124
|
+
</tr>
|
|
125
|
+
|
|
126
|
+
<tr>
|
|
127
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/Checkbox"><a href="agility-component-lib-react/src/components/Forms/Checkbox/index.html">agility-component-lib-react/src/components/Forms/Checkbox</a></td>
|
|
128
|
+
<td data-value="100" class="pic high">
|
|
129
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
130
|
+
</td>
|
|
131
|
+
<td data-value="100" class="pct high">100%</td>
|
|
132
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
133
|
+
<td data-value="100" class="pct high">100%</td>
|
|
134
|
+
<td data-value="2" class="abs high">2/2</td>
|
|
135
|
+
<td data-value="100" class="pct high">100%</td>
|
|
136
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
137
|
+
<td data-value="100" class="pct high">100%</td>
|
|
138
|
+
<td data-value="14" class="abs high">14/14</td>
|
|
139
|
+
</tr>
|
|
140
|
+
|
|
141
|
+
<tr>
|
|
142
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/InputCounter"><a href="agility-component-lib-react/src/components/Forms/InputCounter/index.html">agility-component-lib-react/src/components/Forms/InputCounter</a></td>
|
|
143
|
+
<td data-value="100" class="pic high">
|
|
144
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
145
|
+
</td>
|
|
146
|
+
<td data-value="100" class="pct high">100%</td>
|
|
147
|
+
<td data-value="7" class="abs high">7/7</td>
|
|
148
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
149
|
+
<td data-value="4" class="abs medium">3/4</td>
|
|
150
|
+
<td data-value="100" class="pct high">100%</td>
|
|
151
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
152
|
+
<td data-value="100" class="pct high">100%</td>
|
|
153
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
154
|
+
</tr>
|
|
155
|
+
|
|
156
|
+
<tr>
|
|
157
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/InputLabel"><a href="agility-component-lib-react/src/components/Forms/InputLabel/index.html">agility-component-lib-react/src/components/Forms/InputLabel</a></td>
|
|
158
|
+
<td data-value="100" class="pic high">
|
|
159
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
160
|
+
</td>
|
|
161
|
+
<td data-value="100" class="pct high">100%</td>
|
|
162
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
163
|
+
<td data-value="100" class="pct high">100%</td>
|
|
164
|
+
<td data-value="12" class="abs high">12/12</td>
|
|
165
|
+
<td data-value="100" class="pct high">100%</td>
|
|
166
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
167
|
+
<td data-value="100" class="pct high">100%</td>
|
|
168
|
+
<td data-value="13" class="abs high">13/13</td>
|
|
169
|
+
</tr>
|
|
170
|
+
|
|
171
|
+
<tr>
|
|
172
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/Radio"><a href="agility-component-lib-react/src/components/Forms/Radio/index.html">agility-component-lib-react/src/components/Forms/Radio</a></td>
|
|
173
|
+
<td data-value="100" class="pic high">
|
|
174
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
175
|
+
</td>
|
|
176
|
+
<td data-value="100" class="pct high">100%</td>
|
|
177
|
+
<td data-value="20" class="abs high">20/20</td>
|
|
178
|
+
<td data-value="100" class="pct high">100%</td>
|
|
179
|
+
<td data-value="10" class="abs high">10/10</td>
|
|
180
|
+
<td data-value="100" class="pct high">100%</td>
|
|
181
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
182
|
+
<td data-value="100" class="pct high">100%</td>
|
|
183
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
184
|
+
</tr>
|
|
185
|
+
|
|
186
|
+
<tr>
|
|
187
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/Select"><a href="agility-component-lib-react/src/components/Forms/Select/index.html">agility-component-lib-react/src/components/Forms/Select</a></td>
|
|
188
|
+
<td data-value="100" class="pic high">
|
|
189
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
190
|
+
</td>
|
|
191
|
+
<td data-value="100" class="pct high">100%</td>
|
|
192
|
+
<td data-value="26" class="abs high">26/26</td>
|
|
193
|
+
<td data-value="100" class="pct high">100%</td>
|
|
194
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
195
|
+
<td data-value="100" class="pct high">100%</td>
|
|
196
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
197
|
+
<td data-value="100" class="pct high">100%</td>
|
|
198
|
+
<td data-value="22" class="abs high">22/22</td>
|
|
199
|
+
</tr>
|
|
200
|
+
|
|
201
|
+
<tr>
|
|
202
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta"><a href="agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta/index.html">agility-component-lib-react/src/components/Forms/TextInputAddon/InputCta</a></td>
|
|
203
|
+
<td data-value="93.75" class="pic high">
|
|
204
|
+
<div class="chart"><div class="cover-fill" style="width: 93%"></div><div class="cover-empty" style="width: 7%"></div></div>
|
|
205
|
+
</td>
|
|
206
|
+
<td data-value="93.75" class="pct high">93.75%</td>
|
|
207
|
+
<td data-value="16" class="abs high">15/16</td>
|
|
208
|
+
<td data-value="64.28" class="pct medium">64.28%</td>
|
|
209
|
+
<td data-value="14" class="abs medium">9/14</td>
|
|
210
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
211
|
+
<td data-value="2" class="abs medium">1/2</td>
|
|
212
|
+
<td data-value="92.3" class="pct high">92.3%</td>
|
|
213
|
+
<td data-value="13" class="abs high">12/13</td>
|
|
214
|
+
</tr>
|
|
215
|
+
|
|
216
|
+
<tr>
|
|
217
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect"><a href="agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect/index.html">agility-component-lib-react/src/components/Forms/TextInputSelect/InputSelect</a></td>
|
|
218
|
+
<td data-value="95" class="pic high">
|
|
219
|
+
<div class="chart"><div class="cover-fill" style="width: 95%"></div><div class="cover-empty" style="width: 5%"></div></div>
|
|
220
|
+
</td>
|
|
221
|
+
<td data-value="95" class="pct high">95%</td>
|
|
222
|
+
<td data-value="20" class="abs high">19/20</td>
|
|
223
|
+
<td data-value="66.66" class="pct medium">66.66%</td>
|
|
224
|
+
<td data-value="9" class="abs medium">6/9</td>
|
|
225
|
+
<td data-value="100" class="pct high">100%</td>
|
|
226
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
227
|
+
<td data-value="100" class="pct high">100%</td>
|
|
228
|
+
<td data-value="15" class="abs high">15/15</td>
|
|
229
|
+
</tr>
|
|
230
|
+
|
|
231
|
+
<tr>
|
|
232
|
+
<td class="file high" data-value="agility-component-lib-react/src/components/Switch"><a href="agility-component-lib-react/src/components/Switch/index.html">agility-component-lib-react/src/components/Switch</a></td>
|
|
233
|
+
<td data-value="93.75" class="pic high">
|
|
234
|
+
<div class="chart"><div class="cover-fill" style="width: 93%"></div><div class="cover-empty" style="width: 7%"></div></div>
|
|
235
|
+
</td>
|
|
236
|
+
<td data-value="93.75" class="pct high">93.75%</td>
|
|
237
|
+
<td data-value="16" class="abs high">15/16</td>
|
|
238
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
239
|
+
<td data-value="4" class="abs medium">2/4</td>
|
|
240
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
241
|
+
<td data-value="2" class="abs medium">1/2</td>
|
|
242
|
+
<td data-value="90" class="pct high">90%</td>
|
|
243
|
+
<td data-value="10" class="abs high">9/10</td>
|
|
244
|
+
</tr>
|
|
245
|
+
|
|
246
|
+
<tr>
|
|
247
|
+
<td class="file low" data-value="agility-component-lib-react/src/util"><a href="agility-component-lib-react/src/util/index.html">agility-component-lib-react/src/util</a></td>
|
|
248
|
+
<td data-value="38.46" class="pic low">
|
|
249
|
+
<div class="chart"><div class="cover-fill" style="width: 38%"></div><div class="cover-empty" style="width: 62%"></div></div>
|
|
250
|
+
</td>
|
|
251
|
+
<td data-value="38.46" class="pct low">38.46%</td>
|
|
252
|
+
<td data-value="13" class="abs low">5/13</td>
|
|
253
|
+
<td data-value="0" class="pct low">0%</td>
|
|
254
|
+
<td data-value="7" class="abs low">0/7</td>
|
|
255
|
+
<td data-value="0" class="pct low">0%</td>
|
|
256
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
257
|
+
<td data-value="40" class="pct low">40%</td>
|
|
258
|
+
<td data-value="10" class="abs low">4/10</td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
</tbody>
|
|
262
|
+
</table>
|
|
263
|
+
</div>
|
|
264
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
265
|
+
</div><!-- /wrapper -->
|
|
266
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
267
|
+
Code coverage generated by
|
|
268
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
269
|
+
at Mon Feb 28 2022 11:30:39 GMT-0500 (Eastern Standard Time)
|
|
270
|
+
</div>
|
|
271
|
+
<script src="prettify.js"></script>
|
|
272
|
+
<script>
|
|
273
|
+
window.onload = function () {
|
|
274
|
+
prettyPrint();
|
|
275
|
+
};
|
|
276
|
+
</script>
|
|
277
|
+
<script src="sorter.js"></script>
|
|
278
|
+
<script src="block-navigation.js"></script>
|
|
279
|
+
</body>
|
|
280
|
+
</html>
|
|
281
|
+
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<title>Code coverage report for agility-component-lib-react</title>
|
|
5
|
+
<meta charset="utf-8" />
|
|
6
|
+
<link rel="stylesheet" href="../prettify.css" />
|
|
7
|
+
<link rel="stylesheet" href="../base.css" />
|
|
8
|
+
<link rel="shortcut icon" type="image/x-icon" href="../favicon.png" />
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
.coverage-summary .sorter {
|
|
12
|
+
background-image: url(../sort-arrow-sprite.png);
|
|
13
|
+
}
|
|
14
|
+
</style>
|
|
15
|
+
</head>
|
|
16
|
+
|
|
17
|
+
<body>
|
|
18
|
+
<div class="wrapper">
|
|
19
|
+
<div class="pad1">
|
|
20
|
+
<h1><a href="../index.html">All files</a> agility-component-lib-react</h1>
|
|
21
|
+
<div class="clearfix">
|
|
22
|
+
<div class="fl pad1y space-right2">
|
|
23
|
+
<span class="strong">100% </span>
|
|
24
|
+
<span class="quiet">Statements</span>
|
|
25
|
+
<span class="fraction">1/1</span>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<div class="fl pad1y space-right2">
|
|
29
|
+
<span class="strong">100% </span>
|
|
30
|
+
<span class="quiet">Branches</span>
|
|
31
|
+
<span class="fraction">0/0</span>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
<div class="fl pad1y space-right2">
|
|
35
|
+
<span class="strong">100% </span>
|
|
36
|
+
<span class="quiet">Functions</span>
|
|
37
|
+
<span class="fraction">0/0</span>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<div class="fl pad1y space-right2">
|
|
41
|
+
<span class="strong">100% </span>
|
|
42
|
+
<span class="quiet">Lines</span>
|
|
43
|
+
<span class="fraction">1/1</span>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<p class="quiet">
|
|
47
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>,
|
|
48
|
+
<em>p</em> or <em>k</em> for the previous block.
|
|
49
|
+
</p>
|
|
50
|
+
<template id="filterTemplate">
|
|
51
|
+
<div class="quiet">
|
|
52
|
+
Filter:
|
|
53
|
+
<input oninput="onInput()" type="search" id="fileSearch" />
|
|
54
|
+
</div>
|
|
55
|
+
</template>
|
|
56
|
+
</div>
|
|
57
|
+
<div class="status-line high"></div>
|
|
58
|
+
<div class="pad1">
|
|
59
|
+
<table class="coverage-summary">
|
|
60
|
+
<thead>
|
|
61
|
+
<tr>
|
|
62
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">
|
|
63
|
+
File
|
|
64
|
+
</th>
|
|
65
|
+
<th
|
|
66
|
+
data-col="pic"
|
|
67
|
+
data-type="number"
|
|
68
|
+
data-fmt="html"
|
|
69
|
+
data-html="true"
|
|
70
|
+
class="pic"
|
|
71
|
+
></th>
|
|
72
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">
|
|
73
|
+
Statements
|
|
74
|
+
</th>
|
|
75
|
+
<th
|
|
76
|
+
data-col="statements_raw"
|
|
77
|
+
data-type="number"
|
|
78
|
+
data-fmt="html"
|
|
79
|
+
class="abs"
|
|
80
|
+
></th>
|
|
81
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">
|
|
82
|
+
Branches
|
|
83
|
+
</th>
|
|
84
|
+
<th
|
|
85
|
+
data-col="branches_raw"
|
|
86
|
+
data-type="number"
|
|
87
|
+
data-fmt="html"
|
|
88
|
+
class="abs"
|
|
89
|
+
></th>
|
|
90
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">
|
|
91
|
+
Functions
|
|
92
|
+
</th>
|
|
93
|
+
<th
|
|
94
|
+
data-col="functions_raw"
|
|
95
|
+
data-type="number"
|
|
96
|
+
data-fmt="html"
|
|
97
|
+
class="abs"
|
|
98
|
+
></th>
|
|
99
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">
|
|
100
|
+
Lines
|
|
101
|
+
</th>
|
|
102
|
+
<th
|
|
103
|
+
data-col="lines_raw"
|
|
104
|
+
data-type="number"
|
|
105
|
+
data-fmt="html"
|
|
106
|
+
class="abs"
|
|
107
|
+
></th>
|
|
108
|
+
</tr>
|
|
109
|
+
</thead>
|
|
110
|
+
<tbody>
|
|
111
|
+
<tr>
|
|
112
|
+
<td class="file high" data-value="styleMock.js">
|
|
113
|
+
<a href="styleMock.js.html">styleMock.js</a>
|
|
114
|
+
</td>
|
|
115
|
+
<td data-value="100" class="pic high">
|
|
116
|
+
<div class="chart">
|
|
117
|
+
<div class="cover-fill cover-full" style="width: 100%"></div>
|
|
118
|
+
<div class="cover-empty" style="width: 0%"></div>
|
|
119
|
+
</div>
|
|
120
|
+
</td>
|
|
121
|
+
<td data-value="100" class="pct high">100%</td>
|
|
122
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
123
|
+
<td data-value="100" class="pct high">100%</td>
|
|
124
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
125
|
+
<td data-value="100" class="pct high">100%</td>
|
|
126
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
127
|
+
<td data-value="100" class="pct high">100%</td>
|
|
128
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
129
|
+
</tr>
|
|
130
|
+
</tbody>
|
|
131
|
+
</table>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="push"></div>
|
|
134
|
+
<!-- for sticky footer -->
|
|
135
|
+
</div>
|
|
136
|
+
<!-- /wrapper -->
|
|
137
|
+
<div class="footer quiet pad2 space-top1 center small">
|
|
138
|
+
Code coverage generated by
|
|
139
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer"
|
|
140
|
+
>istanbul</a
|
|
141
|
+
>
|
|
142
|
+
at Wed Feb 23 2022 12:37:11 GMT-0500 (Eastern Standard Time)
|
|
143
|
+
</div>
|
|
144
|
+
<script src="../prettify.js"></script>
|
|
145
|
+
<script>
|
|
146
|
+
window.onload = function () {
|
|
147
|
+
prettyPrint();
|
|
148
|
+
};
|
|
149
|
+
</script>
|
|
150
|
+
<script src="../sorter.js"></script>
|
|
151
|
+
<script src="../block-navigation.js"></script>
|
|
152
|
+
</body>
|
|
153
|
+
</html>
|