@utrecht/web-component-library-stencil 1.0.0-alpha.319 → 1.0.0-alpha.321
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/utrecht-html-content.cjs.entry.js +1 -1
- package/dist/cjs/utrecht.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +0 -1
- package/dist/collection/heading-group/css/story-template.js +32 -0
- package/dist/collection/html-content/web-component/index.css +21 -0
- package/dist/collection/icon/src/build.js +1 -1
- package/dist/collection/node_modules/@babel/core/lib/config/cache-contexts.js +1 -0
- package/dist/collection/node_modules/@babel/core/lib/config/caching.js +326 -0
- package/dist/collection/node_modules/@babel/core/lib/config/config-chain.js +566 -0
- package/dist/collection/node_modules/@babel/core/lib/config/config-descriptors.js +246 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/configuration.js +360 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +43 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/index-browser.js +69 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/index.js +87 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/module-types.js +121 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/package.js +77 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/plugins.js +275 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/types.js +1 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/utils.js +46 -0
- package/dist/collection/node_modules/@babel/core/lib/config/full.js +380 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/config-api.js +109 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/deep-array.js +26 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/dist/collection/node_modules/@babel/core/lib/config/index.js +83 -0
- package/dist/collection/node_modules/@babel/core/lib/config/item.js +77 -0
- package/dist/collection/node_modules/@babel/core/lib/config/partial.js +198 -0
- package/dist/collection/node_modules/@babel/core/lib/config/pattern-to-regex.js +46 -0
- package/dist/collection/node_modules/@babel/core/lib/config/plugin.js +35 -0
- package/dist/collection/node_modules/@babel/core/lib/config/printer.js +140 -0
- package/dist/collection/node_modules/@babel/core/lib/config/resolve-targets-browser.js +47 -0
- package/dist/collection/node_modules/@babel/core/lib/config/resolve-targets.js +73 -0
- package/dist/collection/node_modules/@babel/core/lib/config/util.js +33 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/option-assertions.js +354 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/options.js +213 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/plugins.js +73 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/removed.js +67 -0
- package/dist/collection/node_modules/@babel/core/lib/gensync-utils/async.js +114 -0
- package/dist/collection/node_modules/@babel/core/lib/gensync-utils/fs.js +41 -0
- package/dist/collection/node_modules/@babel/core/lib/index.js +268 -0
- package/dist/collection/node_modules/@babel/core/lib/parse.js +54 -0
- package/dist/collection/node_modules/@babel/core/lib/parser/index.js +97 -0
- package/dist/collection/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +325 -0
- package/dist/collection/node_modules/@babel/core/lib/tools/build-external-helpers.js +166 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-ast.js +55 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-file-browser.js +28 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-file.js +42 -0
- package/dist/collection/node_modules/@babel/core/lib/transform.js +54 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +95 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/file.js +255 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/generate.js +96 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/merge-map.js +45 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/index.js +129 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/normalize-file.js +169 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/normalize-opts.js +64 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/plugin-pass.js +55 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/util/clone-deep.js +41 -0
- package/dist/collection/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +3557 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1296 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.development.js +1314 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
- package/dist/collection/node_modules/react/cjs/react.development.js +2739 -0
- package/dist/collection/node_modules/react/cjs/react.production.min.js +26 -0
- package/dist/collection/node_modules/react/cjs/react.shared-subset.development.js +20 -0
- package/dist/collection/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
- package/dist/collection/node_modules/react/index.js +7 -0
- package/dist/collection/node_modules/react/jsx-dev-runtime.js +7 -0
- package/dist/collection/node_modules/react/jsx-runtime.js +7 -0
- package/dist/collection/node_modules/react/react.shared-subset.js +7 -0
- package/dist/collection/node_modules/react/umd/react.development.js +3342 -0
- package/dist/collection/node_modules/react/umd/react.production.min.js +31 -0
- package/dist/collection/node_modules/react/umd/react.profiling.min.js +31 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7018 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7078 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7003 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.node.development.js +7059 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1741 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.profiling.min.js +367 -0
- package/dist/collection/node_modules/react-dom/client.js +25 -0
- package/dist/collection/node_modules/react-dom/index.js +38 -0
- package/dist/collection/node_modules/react-dom/profiling.js +38 -0
- package/dist/collection/node_modules/react-dom/server.browser.js +17 -0
- package/dist/collection/node_modules/react-dom/server.js +3 -0
- package/dist/collection/node_modules/react-dom/server.node.js +17 -0
- package/dist/collection/node_modules/react-dom/test-utils.js +7 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7015 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server.browser.development.js +7000 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-test-utils.development.js +1737 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.development.js +29869 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler.development.js +634 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
- package/dist/collection/node_modules/scheduler/index.js +7 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.development.js +152 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
- package/dist/collection/node_modules/scheduler/unstable_mock.js +7 -0
- package/dist/collection/node_modules/scheduler/unstable_post_task.js +7 -0
- package/dist/collection/node_modules/semver/bin/semver.js +174 -0
- package/dist/collection/node_modules/semver/semver.js +1596 -0
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +0 -1
- package/dist/components/utrecht-html-content.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/utrecht-html-content.entry.js +1 -1
- package/dist/esm/utrecht.js +1 -1
- package/dist/packages/web-component-library-stencil/sequential-output-targets.js +9 -9
- package/dist/packages/web-component-library-stencil/stencil.config.js +65 -65
- package/dist/types/components.d.ts +0 -13
- package/dist/utrecht/p-8d5a8cf5.entry.js +1 -0
- package/dist/utrecht/utrecht.esm.js +1 -1
- package/package.json +4 -4
- package/dist/cjs/utrecht-page-header.cjs.entry.js +0 -19
- package/dist/collection/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.js +0 -6
- package/dist/collection/page-header/web-component/index.css +0 -35
- package/dist/collection/page-header/web-component/stencil.js +0 -20
- package/dist/components/article/web-component/index.stencil.d.ts +0 -8
- package/dist/components/article/web-component/index.stencil.js +0 -26
- package/dist/components/backdrop/web-component/index.stencil.d.ts +0 -9
- package/dist/components/backdrop/web-component/index.stencil.js +0 -31
- package/dist/components/badge-counter/web-component/index.stencil.d.ts +0 -11
- package/dist/components/badge-counter/web-component/index.stencil.js +0 -38
- package/dist/components/badge-data/web-component/index.stencil.d.ts +0 -8
- package/dist/components/badge-data/web-component/index.stencil.js +0 -26
- package/dist/components/badge-status/web-component/index.stencil.d.ts +0 -9
- package/dist/components/badge-status/web-component/index.stencil.js +0 -29
- package/dist/components/breadcrumb/web-component/index.stencil.d.ts +0 -5
- package/dist/components/breadcrumb/web-component/index.stencil.js +0 -38
- package/dist/components/button/web-component/index.stencil.d.ts +0 -11
- package/dist/components/button/web-component/index.stencil.js +0 -65
- package/dist/components/checkbox/web-component/index.stencil.d.ts +0 -16
- package/dist/components/checkbox/web-component/index.stencil.js +0 -59
- package/dist/components/custom-checkbox/web-component/index.stencil.d.ts +0 -17
- package/dist/components/custom-checkbox/web-component/index.stencil.js +0 -85
- package/dist/components/digid-button/web-component/index.stencil.d.ts +0 -9
- package/dist/components/digid-button/web-component/index.stencil.js +0 -30
- package/dist/components/digid-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/digid-logo/web-component/index.stencil.js +0 -29
- package/dist/components/document/web-component/index.stencil.d.ts +0 -3
- package/dist/components/document/web-component/index.stencil.js +0 -21
- package/dist/components/eherkenning-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/eherkenning-logo/web-component/index.stencil.js +0 -32
- package/dist/components/eidas-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/eidas-logo/web-component/index.stencil.js +0 -34
- package/dist/components/form-field-checkbox/web-component/index.stencil.d.ts +0 -18
- package/dist/components/form-field-checkbox/web-component/index.stencil.js +0 -70
- package/dist/components/form-field-description/web-component/index.stencil.d.ts +0 -8
- package/dist/components/form-field-description/web-component/index.stencil.js +0 -33
- package/dist/components/form-field-textarea/web-component/index.stencil.d.ts +0 -18
- package/dist/components/form-field-textarea/web-component/index.stencil.js +0 -70
- package/dist/components/form-field-textbox/web-component/index.stencil.d.ts +0 -23
- package/dist/components/form-field-textbox/web-component/index.stencil.js +0 -90
- package/dist/components/form-toggle/web-component/index.stencil.d.ts +0 -14
- package/dist/components/form-toggle/web-component/index.stencil.js +0 -73
- package/dist/components/heading/web-component/index.stencil.d.ts +0 -7
- package/dist/components/heading/web-component/index.stencil.js +0 -50
- package/dist/components/heading-1/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-1/web-component/index.stencil.js +0 -21
- package/dist/components/heading-2/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-2/web-component/index.stencil.js +0 -21
- package/dist/components/heading-3/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-3/web-component/index.stencil.js +0 -21
- package/dist/components/heading-4/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-4/web-component/index.stencil.js +0 -21
- package/dist/components/heading-5/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-5/web-component/index.stencil.js +0 -21
- package/dist/components/heading-6/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-6/web-component/index.stencil.js +0 -21
- package/dist/components/html-content/web-component/index.stencil.d.ts +0 -3
- package/dist/components/html-content/web-component/index.stencil.js +0 -25
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.stencil.js +0 -25
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.stencil.js +0 -26
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.stencil.js +0 -21
- package/dist/components/icon/web-component/index.stencil.d.ts +0 -3
- package/dist/components/icon/web-component/index.stencil.js +0 -20
- package/dist/components/logo/web-component/index.stencil.d.ts +0 -7
- package/dist/components/logo/web-component/index.stencil.js +0 -32
- package/dist/components/logo-button/web-component/index.stencil.d.ts +0 -9
- package/dist/components/logo-button/web-component/index.stencil.js +0 -31
- package/dist/components/navigatie sidenav/web-component/index.stencil.d.ts +0 -9
- package/dist/components/navigatie sidenav/web-component/index.stencil.js +0 -40
- package/dist/components/page/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page/web-component/index.stencil.js +0 -26
- package/dist/components/page-content/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page-content/web-component/index.stencil.js +0 -26
- package/dist/components/page-footer/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page-footer/web-component/index.stencil.js +0 -25
- package/dist/components/page-header/web-component/stencil.d.ts +0 -7
- package/dist/components/page-header/web-component/stencil.js +0 -26
- package/dist/components/pagination/web-component/index.stencil.d.ts +0 -11
- package/dist/components/pagination/web-component/index.stencil.js +0 -58
- package/dist/components/paragraph/web-component/index.stencil.d.ts +0 -7
- package/dist/components/paragraph/web-component/index.stencil.js +0 -25
- package/dist/components/separator/web-component/index.stencil.d.ts +0 -3
- package/dist/components/separator/web-component/index.stencil.js +0 -20
- package/dist/components/table/web-component/table-body.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-body.stencil.js +0 -21
- package/dist/components/table/web-component/table-caption.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-caption.stencil.js +0 -21
- package/dist/components/table/web-component/table-cell.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-cell.stencil.js +0 -21
- package/dist/components/table/web-component/table-footer.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-footer.stencil.js +0 -21
- package/dist/components/table/web-component/table-header-cell.stencil.d.ts +0 -4
- package/dist/components/table/web-component/table-header-cell.stencil.js +0 -24
- package/dist/components/table/web-component/table-header.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-header.stencil.js +0 -21
- package/dist/components/table/web-component/table-row.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-row.stencil.js +0 -21
- package/dist/components/table/web-component/table.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table.stencil.js +0 -21
- package/dist/components/templates/contact-card-template/web-component/index.stencil.d.ts +0 -3
- package/dist/components/templates/contact-card-template/web-component/index.stencil.js +0 -31
- package/dist/components/textbox/web-component/index.stencil.d.ts +0 -23
- package/dist/components/textbox/web-component/index.stencil.js +0 -87
- package/dist/components/utrecht-page-header.d.ts +0 -11
- package/dist/components/utrecht-page-header.js +0 -33
- package/dist/esm/utrecht-page-header.entry.js +0 -15
- package/dist/packages/web-component-library-stencil/sequential-output-targets.d.ts +0 -7
- package/dist/packages/web-component-library-stencil/stencil.config.d.ts +0 -2
- package/dist/types/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.d.ts +0 -1
- package/dist/types/page-header/web-component/stencil.d.ts +0 -7
- package/dist/utrecht/p-06d7a75d.entry.js +0 -1
- package/dist/utrecht/p-b135eec3.entry.js +0 -1
|
@@ -0,0 +1,566 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.buildPresetChain = buildPresetChain;
|
|
7
|
+
exports.buildPresetChainWalker = void 0;
|
|
8
|
+
exports.buildRootChain = buildRootChain;
|
|
9
|
+
|
|
10
|
+
function _path() {
|
|
11
|
+
const data = require("path");
|
|
12
|
+
|
|
13
|
+
_path = function () {
|
|
14
|
+
return data;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
return data;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function _debug() {
|
|
21
|
+
const data = require("debug");
|
|
22
|
+
|
|
23
|
+
_debug = function () {
|
|
24
|
+
return data;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
return data;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
var _options = require("./validation/options");
|
|
31
|
+
|
|
32
|
+
var _patternToRegex = require("./pattern-to-regex");
|
|
33
|
+
|
|
34
|
+
var _printer = require("./printer");
|
|
35
|
+
|
|
36
|
+
var _files = require("./files");
|
|
37
|
+
|
|
38
|
+
var _caching = require("./caching");
|
|
39
|
+
|
|
40
|
+
var _configDescriptors = require("./config-descriptors");
|
|
41
|
+
|
|
42
|
+
const debug = _debug()("babel:config:config-chain");
|
|
43
|
+
|
|
44
|
+
function* buildPresetChain(arg, context) {
|
|
45
|
+
const chain = yield* buildPresetChainWalker(arg, context);
|
|
46
|
+
if (!chain) return null;
|
|
47
|
+
return {
|
|
48
|
+
plugins: dedupDescriptors(chain.plugins),
|
|
49
|
+
presets: dedupDescriptors(chain.presets),
|
|
50
|
+
options: chain.options.map(o => normalizeOptions(o)),
|
|
51
|
+
files: new Set()
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const buildPresetChainWalker = makeChainWalker({
|
|
56
|
+
root: preset => loadPresetDescriptors(preset),
|
|
57
|
+
env: (preset, envName) => loadPresetEnvDescriptors(preset)(envName),
|
|
58
|
+
overrides: (preset, index) => loadPresetOverridesDescriptors(preset)(index),
|
|
59
|
+
overridesEnv: (preset, index, envName) => loadPresetOverridesEnvDescriptors(preset)(index)(envName),
|
|
60
|
+
createLogger: () => () => {}
|
|
61
|
+
});
|
|
62
|
+
exports.buildPresetChainWalker = buildPresetChainWalker;
|
|
63
|
+
const loadPresetDescriptors = (0, _caching.makeWeakCacheSync)(preset => buildRootDescriptors(preset, preset.alias, _configDescriptors.createUncachedDescriptors));
|
|
64
|
+
const loadPresetEnvDescriptors = (0, _caching.makeWeakCacheSync)(preset => (0, _caching.makeStrongCacheSync)(envName => buildEnvDescriptors(preset, preset.alias, _configDescriptors.createUncachedDescriptors, envName)));
|
|
65
|
+
const loadPresetOverridesDescriptors = (0, _caching.makeWeakCacheSync)(preset => (0, _caching.makeStrongCacheSync)(index => buildOverrideDescriptors(preset, preset.alias, _configDescriptors.createUncachedDescriptors, index)));
|
|
66
|
+
const loadPresetOverridesEnvDescriptors = (0, _caching.makeWeakCacheSync)(preset => (0, _caching.makeStrongCacheSync)(index => (0, _caching.makeStrongCacheSync)(envName => buildOverrideEnvDescriptors(preset, preset.alias, _configDescriptors.createUncachedDescriptors, index, envName))));
|
|
67
|
+
|
|
68
|
+
function* buildRootChain(opts, context) {
|
|
69
|
+
let configReport, babelRcReport;
|
|
70
|
+
const programmaticLogger = new _printer.ConfigPrinter();
|
|
71
|
+
const programmaticChain = yield* loadProgrammaticChain({
|
|
72
|
+
options: opts,
|
|
73
|
+
dirname: context.cwd
|
|
74
|
+
}, context, undefined, programmaticLogger);
|
|
75
|
+
if (!programmaticChain) return null;
|
|
76
|
+
const programmaticReport = yield* programmaticLogger.output();
|
|
77
|
+
let configFile;
|
|
78
|
+
|
|
79
|
+
if (typeof opts.configFile === "string") {
|
|
80
|
+
configFile = yield* (0, _files.loadConfig)(opts.configFile, context.cwd, context.envName, context.caller);
|
|
81
|
+
} else if (opts.configFile !== false) {
|
|
82
|
+
configFile = yield* (0, _files.findRootConfig)(context.root, context.envName, context.caller);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
let {
|
|
86
|
+
babelrc,
|
|
87
|
+
babelrcRoots
|
|
88
|
+
} = opts;
|
|
89
|
+
let babelrcRootsDirectory = context.cwd;
|
|
90
|
+
const configFileChain = emptyChain();
|
|
91
|
+
const configFileLogger = new _printer.ConfigPrinter();
|
|
92
|
+
|
|
93
|
+
if (configFile) {
|
|
94
|
+
const validatedFile = validateConfigFile(configFile);
|
|
95
|
+
const result = yield* loadFileChain(validatedFile, context, undefined, configFileLogger);
|
|
96
|
+
if (!result) return null;
|
|
97
|
+
configReport = yield* configFileLogger.output();
|
|
98
|
+
|
|
99
|
+
if (babelrc === undefined) {
|
|
100
|
+
babelrc = validatedFile.options.babelrc;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (babelrcRoots === undefined) {
|
|
104
|
+
babelrcRootsDirectory = validatedFile.dirname;
|
|
105
|
+
babelrcRoots = validatedFile.options.babelrcRoots;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
mergeChain(configFileChain, result);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
let ignoreFile, babelrcFile;
|
|
112
|
+
let isIgnored = false;
|
|
113
|
+
const fileChain = emptyChain();
|
|
114
|
+
|
|
115
|
+
if ((babelrc === true || babelrc === undefined) && typeof context.filename === "string") {
|
|
116
|
+
const pkgData = yield* (0, _files.findPackageData)(context.filename);
|
|
117
|
+
|
|
118
|
+
if (pkgData && babelrcLoadEnabled(context, pkgData, babelrcRoots, babelrcRootsDirectory)) {
|
|
119
|
+
({
|
|
120
|
+
ignore: ignoreFile,
|
|
121
|
+
config: babelrcFile
|
|
122
|
+
} = yield* (0, _files.findRelativeConfig)(pkgData, context.envName, context.caller));
|
|
123
|
+
|
|
124
|
+
if (ignoreFile) {
|
|
125
|
+
fileChain.files.add(ignoreFile.filepath);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
if (ignoreFile && shouldIgnore(context, ignoreFile.ignore, null, ignoreFile.dirname)) {
|
|
129
|
+
isIgnored = true;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
if (babelrcFile && !isIgnored) {
|
|
133
|
+
const validatedFile = validateBabelrcFile(babelrcFile);
|
|
134
|
+
const babelrcLogger = new _printer.ConfigPrinter();
|
|
135
|
+
const result = yield* loadFileChain(validatedFile, context, undefined, babelrcLogger);
|
|
136
|
+
|
|
137
|
+
if (!result) {
|
|
138
|
+
isIgnored = true;
|
|
139
|
+
} else {
|
|
140
|
+
babelRcReport = yield* babelrcLogger.output();
|
|
141
|
+
mergeChain(fileChain, result);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (babelrcFile && isIgnored) {
|
|
146
|
+
fileChain.files.add(babelrcFile.filepath);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
if (context.showConfig) {
|
|
152
|
+
console.log(`Babel configs on "${context.filename}" (ascending priority):\n` + [configReport, babelRcReport, programmaticReport].filter(x => !!x).join("\n\n") + "\n-----End Babel configs-----");
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const chain = mergeChain(mergeChain(mergeChain(emptyChain(), configFileChain), fileChain), programmaticChain);
|
|
156
|
+
return {
|
|
157
|
+
plugins: isIgnored ? [] : dedupDescriptors(chain.plugins),
|
|
158
|
+
presets: isIgnored ? [] : dedupDescriptors(chain.presets),
|
|
159
|
+
options: isIgnored ? [] : chain.options.map(o => normalizeOptions(o)),
|
|
160
|
+
fileHandling: isIgnored ? "ignored" : "transpile",
|
|
161
|
+
ignore: ignoreFile || undefined,
|
|
162
|
+
babelrc: babelrcFile || undefined,
|
|
163
|
+
config: configFile || undefined,
|
|
164
|
+
files: chain.files
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
function babelrcLoadEnabled(context, pkgData, babelrcRoots, babelrcRootsDirectory) {
|
|
169
|
+
if (typeof babelrcRoots === "boolean") return babelrcRoots;
|
|
170
|
+
const absoluteRoot = context.root;
|
|
171
|
+
|
|
172
|
+
if (babelrcRoots === undefined) {
|
|
173
|
+
return pkgData.directories.indexOf(absoluteRoot) !== -1;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
let babelrcPatterns = babelrcRoots;
|
|
177
|
+
|
|
178
|
+
if (!Array.isArray(babelrcPatterns)) {
|
|
179
|
+
babelrcPatterns = [babelrcPatterns];
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
babelrcPatterns = babelrcPatterns.map(pat => {
|
|
183
|
+
return typeof pat === "string" ? _path().resolve(babelrcRootsDirectory, pat) : pat;
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
if (babelrcPatterns.length === 1 && babelrcPatterns[0] === absoluteRoot) {
|
|
187
|
+
return pkgData.directories.indexOf(absoluteRoot) !== -1;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
return babelrcPatterns.some(pat => {
|
|
191
|
+
if (typeof pat === "string") {
|
|
192
|
+
pat = (0, _patternToRegex.default)(pat, babelrcRootsDirectory);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
return pkgData.directories.some(directory => {
|
|
196
|
+
return matchPattern(pat, babelrcRootsDirectory, directory, context);
|
|
197
|
+
});
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
const validateConfigFile = (0, _caching.makeWeakCacheSync)(file => ({
|
|
202
|
+
filepath: file.filepath,
|
|
203
|
+
dirname: file.dirname,
|
|
204
|
+
options: (0, _options.validate)("configfile", file.options)
|
|
205
|
+
}));
|
|
206
|
+
const validateBabelrcFile = (0, _caching.makeWeakCacheSync)(file => ({
|
|
207
|
+
filepath: file.filepath,
|
|
208
|
+
dirname: file.dirname,
|
|
209
|
+
options: (0, _options.validate)("babelrcfile", file.options)
|
|
210
|
+
}));
|
|
211
|
+
const validateExtendFile = (0, _caching.makeWeakCacheSync)(file => ({
|
|
212
|
+
filepath: file.filepath,
|
|
213
|
+
dirname: file.dirname,
|
|
214
|
+
options: (0, _options.validate)("extendsfile", file.options)
|
|
215
|
+
}));
|
|
216
|
+
const loadProgrammaticChain = makeChainWalker({
|
|
217
|
+
root: input => buildRootDescriptors(input, "base", _configDescriptors.createCachedDescriptors),
|
|
218
|
+
env: (input, envName) => buildEnvDescriptors(input, "base", _configDescriptors.createCachedDescriptors, envName),
|
|
219
|
+
overrides: (input, index) => buildOverrideDescriptors(input, "base", _configDescriptors.createCachedDescriptors, index),
|
|
220
|
+
overridesEnv: (input, index, envName) => buildOverrideEnvDescriptors(input, "base", _configDescriptors.createCachedDescriptors, index, envName),
|
|
221
|
+
createLogger: (input, context, baseLogger) => buildProgrammaticLogger(input, context, baseLogger)
|
|
222
|
+
});
|
|
223
|
+
const loadFileChainWalker = makeChainWalker({
|
|
224
|
+
root: file => loadFileDescriptors(file),
|
|
225
|
+
env: (file, envName) => loadFileEnvDescriptors(file)(envName),
|
|
226
|
+
overrides: (file, index) => loadFileOverridesDescriptors(file)(index),
|
|
227
|
+
overridesEnv: (file, index, envName) => loadFileOverridesEnvDescriptors(file)(index)(envName),
|
|
228
|
+
createLogger: (file, context, baseLogger) => buildFileLogger(file.filepath, context, baseLogger)
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
function* loadFileChain(input, context, files, baseLogger) {
|
|
232
|
+
const chain = yield* loadFileChainWalker(input, context, files, baseLogger);
|
|
233
|
+
|
|
234
|
+
if (chain) {
|
|
235
|
+
chain.files.add(input.filepath);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
return chain;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
const loadFileDescriptors = (0, _caching.makeWeakCacheSync)(file => buildRootDescriptors(file, file.filepath, _configDescriptors.createUncachedDescriptors));
|
|
242
|
+
const loadFileEnvDescriptors = (0, _caching.makeWeakCacheSync)(file => (0, _caching.makeStrongCacheSync)(envName => buildEnvDescriptors(file, file.filepath, _configDescriptors.createUncachedDescriptors, envName)));
|
|
243
|
+
const loadFileOverridesDescriptors = (0, _caching.makeWeakCacheSync)(file => (0, _caching.makeStrongCacheSync)(index => buildOverrideDescriptors(file, file.filepath, _configDescriptors.createUncachedDescriptors, index)));
|
|
244
|
+
const loadFileOverridesEnvDescriptors = (0, _caching.makeWeakCacheSync)(file => (0, _caching.makeStrongCacheSync)(index => (0, _caching.makeStrongCacheSync)(envName => buildOverrideEnvDescriptors(file, file.filepath, _configDescriptors.createUncachedDescriptors, index, envName))));
|
|
245
|
+
|
|
246
|
+
function buildFileLogger(filepath, context, baseLogger) {
|
|
247
|
+
if (!baseLogger) {
|
|
248
|
+
return () => {};
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
return baseLogger.configure(context.showConfig, _printer.ChainFormatter.Config, {
|
|
252
|
+
filepath
|
|
253
|
+
});
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function buildRootDescriptors({
|
|
257
|
+
dirname,
|
|
258
|
+
options
|
|
259
|
+
}, alias, descriptors) {
|
|
260
|
+
return descriptors(dirname, options, alias);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
function buildProgrammaticLogger(_, context, baseLogger) {
|
|
264
|
+
var _context$caller;
|
|
265
|
+
|
|
266
|
+
if (!baseLogger) {
|
|
267
|
+
return () => {};
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
return baseLogger.configure(context.showConfig, _printer.ChainFormatter.Programmatic, {
|
|
271
|
+
callerName: (_context$caller = context.caller) == null ? void 0 : _context$caller.name
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
function buildEnvDescriptors({
|
|
276
|
+
dirname,
|
|
277
|
+
options
|
|
278
|
+
}, alias, descriptors, envName) {
|
|
279
|
+
const opts = options.env && options.env[envName];
|
|
280
|
+
return opts ? descriptors(dirname, opts, `${alias}.env["${envName}"]`) : null;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function buildOverrideDescriptors({
|
|
284
|
+
dirname,
|
|
285
|
+
options
|
|
286
|
+
}, alias, descriptors, index) {
|
|
287
|
+
const opts = options.overrides && options.overrides[index];
|
|
288
|
+
if (!opts) throw new Error("Assertion failure - missing override");
|
|
289
|
+
return descriptors(dirname, opts, `${alias}.overrides[${index}]`);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
function buildOverrideEnvDescriptors({
|
|
293
|
+
dirname,
|
|
294
|
+
options
|
|
295
|
+
}, alias, descriptors, index, envName) {
|
|
296
|
+
const override = options.overrides && options.overrides[index];
|
|
297
|
+
if (!override) throw new Error("Assertion failure - missing override");
|
|
298
|
+
const opts = override.env && override.env[envName];
|
|
299
|
+
return opts ? descriptors(dirname, opts, `${alias}.overrides[${index}].env["${envName}"]`) : null;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
function makeChainWalker({
|
|
303
|
+
root,
|
|
304
|
+
env,
|
|
305
|
+
overrides,
|
|
306
|
+
overridesEnv,
|
|
307
|
+
createLogger
|
|
308
|
+
}) {
|
|
309
|
+
return function* (input, context, files = new Set(), baseLogger) {
|
|
310
|
+
const {
|
|
311
|
+
dirname
|
|
312
|
+
} = input;
|
|
313
|
+
const flattenedConfigs = [];
|
|
314
|
+
const rootOpts = root(input);
|
|
315
|
+
|
|
316
|
+
if (configIsApplicable(rootOpts, dirname, context)) {
|
|
317
|
+
flattenedConfigs.push({
|
|
318
|
+
config: rootOpts,
|
|
319
|
+
envName: undefined,
|
|
320
|
+
index: undefined
|
|
321
|
+
});
|
|
322
|
+
const envOpts = env(input, context.envName);
|
|
323
|
+
|
|
324
|
+
if (envOpts && configIsApplicable(envOpts, dirname, context)) {
|
|
325
|
+
flattenedConfigs.push({
|
|
326
|
+
config: envOpts,
|
|
327
|
+
envName: context.envName,
|
|
328
|
+
index: undefined
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
(rootOpts.options.overrides || []).forEach((_, index) => {
|
|
333
|
+
const overrideOps = overrides(input, index);
|
|
334
|
+
|
|
335
|
+
if (configIsApplicable(overrideOps, dirname, context)) {
|
|
336
|
+
flattenedConfigs.push({
|
|
337
|
+
config: overrideOps,
|
|
338
|
+
index,
|
|
339
|
+
envName: undefined
|
|
340
|
+
});
|
|
341
|
+
const overrideEnvOpts = overridesEnv(input, index, context.envName);
|
|
342
|
+
|
|
343
|
+
if (overrideEnvOpts && configIsApplicable(overrideEnvOpts, dirname, context)) {
|
|
344
|
+
flattenedConfigs.push({
|
|
345
|
+
config: overrideEnvOpts,
|
|
346
|
+
index,
|
|
347
|
+
envName: context.envName
|
|
348
|
+
});
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
if (flattenedConfigs.some(({
|
|
355
|
+
config: {
|
|
356
|
+
options: {
|
|
357
|
+
ignore,
|
|
358
|
+
only
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}) => shouldIgnore(context, ignore, only, dirname))) {
|
|
362
|
+
return null;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
const chain = emptyChain();
|
|
366
|
+
const logger = createLogger(input, context, baseLogger);
|
|
367
|
+
|
|
368
|
+
for (const {
|
|
369
|
+
config,
|
|
370
|
+
index,
|
|
371
|
+
envName
|
|
372
|
+
} of flattenedConfigs) {
|
|
373
|
+
if (!(yield* mergeExtendsChain(chain, config.options, dirname, context, files, baseLogger))) {
|
|
374
|
+
return null;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
logger(config, index, envName);
|
|
378
|
+
yield* mergeChainOpts(chain, config);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
return chain;
|
|
382
|
+
};
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
function* mergeExtendsChain(chain, opts, dirname, context, files, baseLogger) {
|
|
386
|
+
if (opts.extends === undefined) return true;
|
|
387
|
+
const file = yield* (0, _files.loadConfig)(opts.extends, dirname, context.envName, context.caller);
|
|
388
|
+
|
|
389
|
+
if (files.has(file)) {
|
|
390
|
+
throw new Error(`Configuration cycle detected loading ${file.filepath}.\n` + `File already loaded following the config chain:\n` + Array.from(files, file => ` - ${file.filepath}`).join("\n"));
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
files.add(file);
|
|
394
|
+
const fileChain = yield* loadFileChain(validateExtendFile(file), context, files, baseLogger);
|
|
395
|
+
files.delete(file);
|
|
396
|
+
if (!fileChain) return false;
|
|
397
|
+
mergeChain(chain, fileChain);
|
|
398
|
+
return true;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function mergeChain(target, source) {
|
|
402
|
+
target.options.push(...source.options);
|
|
403
|
+
target.plugins.push(...source.plugins);
|
|
404
|
+
target.presets.push(...source.presets);
|
|
405
|
+
|
|
406
|
+
for (const file of source.files) {
|
|
407
|
+
target.files.add(file);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
return target;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
function* mergeChainOpts(target, {
|
|
414
|
+
options,
|
|
415
|
+
plugins,
|
|
416
|
+
presets
|
|
417
|
+
}) {
|
|
418
|
+
target.options.push(options);
|
|
419
|
+
target.plugins.push(...(yield* plugins()));
|
|
420
|
+
target.presets.push(...(yield* presets()));
|
|
421
|
+
return target;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
function emptyChain() {
|
|
425
|
+
return {
|
|
426
|
+
options: [],
|
|
427
|
+
presets: [],
|
|
428
|
+
plugins: [],
|
|
429
|
+
files: new Set()
|
|
430
|
+
};
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
function normalizeOptions(opts) {
|
|
434
|
+
const options = Object.assign({}, opts);
|
|
435
|
+
delete options.extends;
|
|
436
|
+
delete options.env;
|
|
437
|
+
delete options.overrides;
|
|
438
|
+
delete options.plugins;
|
|
439
|
+
delete options.presets;
|
|
440
|
+
delete options.passPerPreset;
|
|
441
|
+
delete options.ignore;
|
|
442
|
+
delete options.only;
|
|
443
|
+
delete options.test;
|
|
444
|
+
delete options.include;
|
|
445
|
+
delete options.exclude;
|
|
446
|
+
|
|
447
|
+
if (Object.prototype.hasOwnProperty.call(options, "sourceMap")) {
|
|
448
|
+
options.sourceMaps = options.sourceMap;
|
|
449
|
+
delete options.sourceMap;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
return options;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
function dedupDescriptors(items) {
|
|
456
|
+
const map = new Map();
|
|
457
|
+
const descriptors = [];
|
|
458
|
+
|
|
459
|
+
for (const item of items) {
|
|
460
|
+
if (typeof item.value === "function") {
|
|
461
|
+
const fnKey = item.value;
|
|
462
|
+
let nameMap = map.get(fnKey);
|
|
463
|
+
|
|
464
|
+
if (!nameMap) {
|
|
465
|
+
nameMap = new Map();
|
|
466
|
+
map.set(fnKey, nameMap);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
let desc = nameMap.get(item.name);
|
|
470
|
+
|
|
471
|
+
if (!desc) {
|
|
472
|
+
desc = {
|
|
473
|
+
value: item
|
|
474
|
+
};
|
|
475
|
+
descriptors.push(desc);
|
|
476
|
+
if (!item.ownPass) nameMap.set(item.name, desc);
|
|
477
|
+
} else {
|
|
478
|
+
desc.value = item;
|
|
479
|
+
}
|
|
480
|
+
} else {
|
|
481
|
+
descriptors.push({
|
|
482
|
+
value: item
|
|
483
|
+
});
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
return descriptors.reduce((acc, desc) => {
|
|
488
|
+
acc.push(desc.value);
|
|
489
|
+
return acc;
|
|
490
|
+
}, []);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
function configIsApplicable({
|
|
494
|
+
options
|
|
495
|
+
}, dirname, context) {
|
|
496
|
+
return (options.test === undefined || configFieldIsApplicable(context, options.test, dirname)) && (options.include === undefined || configFieldIsApplicable(context, options.include, dirname)) && (options.exclude === undefined || !configFieldIsApplicable(context, options.exclude, dirname));
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
function configFieldIsApplicable(context, test, dirname) {
|
|
500
|
+
const patterns = Array.isArray(test) ? test : [test];
|
|
501
|
+
return matchesPatterns(context, patterns, dirname);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
function ignoreListReplacer(_key, value) {
|
|
505
|
+
if (value instanceof RegExp) {
|
|
506
|
+
return String(value);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
return value;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
function shouldIgnore(context, ignore, only, dirname) {
|
|
513
|
+
if (ignore && matchesPatterns(context, ignore, dirname)) {
|
|
514
|
+
var _context$filename;
|
|
515
|
+
|
|
516
|
+
const message = `No config is applied to "${(_context$filename = context.filename) != null ? _context$filename : "(unknown)"}" because it matches one of \`ignore: ${JSON.stringify(ignore, ignoreListReplacer)}\` from "${dirname}"`;
|
|
517
|
+
debug(message);
|
|
518
|
+
|
|
519
|
+
if (context.showConfig) {
|
|
520
|
+
console.log(message);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
return true;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
if (only && !matchesPatterns(context, only, dirname)) {
|
|
527
|
+
var _context$filename2;
|
|
528
|
+
|
|
529
|
+
const message = `No config is applied to "${(_context$filename2 = context.filename) != null ? _context$filename2 : "(unknown)"}" because it fails to match one of \`only: ${JSON.stringify(only, ignoreListReplacer)}\` from "${dirname}"`;
|
|
530
|
+
debug(message);
|
|
531
|
+
|
|
532
|
+
if (context.showConfig) {
|
|
533
|
+
console.log(message);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
return true;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
return false;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
function matchesPatterns(context, patterns, dirname) {
|
|
543
|
+
return patterns.some(pattern => matchPattern(pattern, dirname, context.filename, context));
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
function matchPattern(pattern, dirname, pathToTest, context) {
|
|
547
|
+
if (typeof pattern === "function") {
|
|
548
|
+
return !!pattern(pathToTest, {
|
|
549
|
+
dirname,
|
|
550
|
+
envName: context.envName,
|
|
551
|
+
caller: context.caller
|
|
552
|
+
});
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
if (typeof pathToTest !== "string") {
|
|
556
|
+
throw new Error(`Configuration contains string/RegExp pattern, but no filename was passed to Babel`);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
if (typeof pattern === "string") {
|
|
560
|
+
pattern = (0, _patternToRegex.default)(pattern, dirname);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
return pattern.test(pathToTest);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
0 && 0;
|