@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,354 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.access = access;
|
|
7
|
+
exports.assertArray = assertArray;
|
|
8
|
+
exports.assertAssumptions = assertAssumptions;
|
|
9
|
+
exports.assertBabelrcSearch = assertBabelrcSearch;
|
|
10
|
+
exports.assertBoolean = assertBoolean;
|
|
11
|
+
exports.assertCallerMetadata = assertCallerMetadata;
|
|
12
|
+
exports.assertCompact = assertCompact;
|
|
13
|
+
exports.assertConfigApplicableTest = assertConfigApplicableTest;
|
|
14
|
+
exports.assertConfigFileSearch = assertConfigFileSearch;
|
|
15
|
+
exports.assertFunction = assertFunction;
|
|
16
|
+
exports.assertIgnoreList = assertIgnoreList;
|
|
17
|
+
exports.assertInputSourceMap = assertInputSourceMap;
|
|
18
|
+
exports.assertObject = assertObject;
|
|
19
|
+
exports.assertPluginList = assertPluginList;
|
|
20
|
+
exports.assertRootMode = assertRootMode;
|
|
21
|
+
exports.assertSourceMaps = assertSourceMaps;
|
|
22
|
+
exports.assertSourceType = assertSourceType;
|
|
23
|
+
exports.assertString = assertString;
|
|
24
|
+
exports.assertTargets = assertTargets;
|
|
25
|
+
exports.msg = msg;
|
|
26
|
+
|
|
27
|
+
function _helperCompilationTargets() {
|
|
28
|
+
const data = require("@babel/helper-compilation-targets");
|
|
29
|
+
|
|
30
|
+
_helperCompilationTargets = function () {
|
|
31
|
+
return data;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return data;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
var _options = require("./options");
|
|
38
|
+
|
|
39
|
+
function msg(loc) {
|
|
40
|
+
switch (loc.type) {
|
|
41
|
+
case "root":
|
|
42
|
+
return ``;
|
|
43
|
+
|
|
44
|
+
case "env":
|
|
45
|
+
return `${msg(loc.parent)}.env["${loc.name}"]`;
|
|
46
|
+
|
|
47
|
+
case "overrides":
|
|
48
|
+
return `${msg(loc.parent)}.overrides[${loc.index}]`;
|
|
49
|
+
|
|
50
|
+
case "option":
|
|
51
|
+
return `${msg(loc.parent)}.${loc.name}`;
|
|
52
|
+
|
|
53
|
+
case "access":
|
|
54
|
+
return `${msg(loc.parent)}[${JSON.stringify(loc.name)}]`;
|
|
55
|
+
|
|
56
|
+
default:
|
|
57
|
+
throw new Error(`Assertion failure: Unknown type ${loc.type}`);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function access(loc, name) {
|
|
62
|
+
return {
|
|
63
|
+
type: "access",
|
|
64
|
+
name,
|
|
65
|
+
parent: loc
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function assertRootMode(loc, value) {
|
|
70
|
+
if (value !== undefined && value !== "root" && value !== "upward" && value !== "upward-optional") {
|
|
71
|
+
throw new Error(`${msg(loc)} must be a "root", "upward", "upward-optional" or undefined`);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return value;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function assertSourceMaps(loc, value) {
|
|
78
|
+
if (value !== undefined && typeof value !== "boolean" && value !== "inline" && value !== "both") {
|
|
79
|
+
throw new Error(`${msg(loc)} must be a boolean, "inline", "both", or undefined`);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return value;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function assertCompact(loc, value) {
|
|
86
|
+
if (value !== undefined && typeof value !== "boolean" && value !== "auto") {
|
|
87
|
+
throw new Error(`${msg(loc)} must be a boolean, "auto", or undefined`);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
return value;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function assertSourceType(loc, value) {
|
|
94
|
+
if (value !== undefined && value !== "module" && value !== "script" && value !== "unambiguous") {
|
|
95
|
+
throw new Error(`${msg(loc)} must be "module", "script", "unambiguous", or undefined`);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
return value;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function assertCallerMetadata(loc, value) {
|
|
102
|
+
const obj = assertObject(loc, value);
|
|
103
|
+
|
|
104
|
+
if (obj) {
|
|
105
|
+
if (typeof obj.name !== "string") {
|
|
106
|
+
throw new Error(`${msg(loc)} set but does not contain "name" property string`);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
for (const prop of Object.keys(obj)) {
|
|
110
|
+
const propLoc = access(loc, prop);
|
|
111
|
+
const value = obj[prop];
|
|
112
|
+
|
|
113
|
+
if (value != null && typeof value !== "boolean" && typeof value !== "string" && typeof value !== "number") {
|
|
114
|
+
throw new Error(`${msg(propLoc)} must be null, undefined, a boolean, a string, or a number.`);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
return value;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function assertInputSourceMap(loc, value) {
|
|
123
|
+
if (value !== undefined && typeof value !== "boolean" && (typeof value !== "object" || !value)) {
|
|
124
|
+
throw new Error(`${msg(loc)} must be a boolean, object, or undefined`);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
return value;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function assertString(loc, value) {
|
|
131
|
+
if (value !== undefined && typeof value !== "string") {
|
|
132
|
+
throw new Error(`${msg(loc)} must be a string, or undefined`);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
return value;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
function assertFunction(loc, value) {
|
|
139
|
+
if (value !== undefined && typeof value !== "function") {
|
|
140
|
+
throw new Error(`${msg(loc)} must be a function, or undefined`);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return value;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
function assertBoolean(loc, value) {
|
|
147
|
+
if (value !== undefined && typeof value !== "boolean") {
|
|
148
|
+
throw new Error(`${msg(loc)} must be a boolean, or undefined`);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return value;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
function assertObject(loc, value) {
|
|
155
|
+
if (value !== undefined && (typeof value !== "object" || Array.isArray(value) || !value)) {
|
|
156
|
+
throw new Error(`${msg(loc)} must be an object, or undefined`);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
return value;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function assertArray(loc, value) {
|
|
163
|
+
if (value != null && !Array.isArray(value)) {
|
|
164
|
+
throw new Error(`${msg(loc)} must be an array, or undefined`);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
return value;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function assertIgnoreList(loc, value) {
|
|
171
|
+
const arr = assertArray(loc, value);
|
|
172
|
+
|
|
173
|
+
if (arr) {
|
|
174
|
+
arr.forEach((item, i) => assertIgnoreItem(access(loc, i), item));
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
return arr;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function assertIgnoreItem(loc, value) {
|
|
181
|
+
if (typeof value !== "string" && typeof value !== "function" && !(value instanceof RegExp)) {
|
|
182
|
+
throw new Error(`${msg(loc)} must be an array of string/Function/RegExp values, or undefined`);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
return value;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
function assertConfigApplicableTest(loc, value) {
|
|
189
|
+
if (value === undefined) return value;
|
|
190
|
+
|
|
191
|
+
if (Array.isArray(value)) {
|
|
192
|
+
value.forEach((item, i) => {
|
|
193
|
+
if (!checkValidTest(item)) {
|
|
194
|
+
throw new Error(`${msg(access(loc, i))} must be a string/Function/RegExp.`);
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
} else if (!checkValidTest(value)) {
|
|
198
|
+
throw new Error(`${msg(loc)} must be a string/Function/RegExp, or an array of those`);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
return value;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
function checkValidTest(value) {
|
|
205
|
+
return typeof value === "string" || typeof value === "function" || value instanceof RegExp;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
function assertConfigFileSearch(loc, value) {
|
|
209
|
+
if (value !== undefined && typeof value !== "boolean" && typeof value !== "string") {
|
|
210
|
+
throw new Error(`${msg(loc)} must be a undefined, a boolean, a string, ` + `got ${JSON.stringify(value)}`);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
return value;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
function assertBabelrcSearch(loc, value) {
|
|
217
|
+
if (value === undefined || typeof value === "boolean") return value;
|
|
218
|
+
|
|
219
|
+
if (Array.isArray(value)) {
|
|
220
|
+
value.forEach((item, i) => {
|
|
221
|
+
if (!checkValidTest(item)) {
|
|
222
|
+
throw new Error(`${msg(access(loc, i))} must be a string/Function/RegExp.`);
|
|
223
|
+
}
|
|
224
|
+
});
|
|
225
|
+
} else if (!checkValidTest(value)) {
|
|
226
|
+
throw new Error(`${msg(loc)} must be a undefined, a boolean, a string/Function/RegExp ` + `or an array of those, got ${JSON.stringify(value)}`);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return value;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
function assertPluginList(loc, value) {
|
|
233
|
+
const arr = assertArray(loc, value);
|
|
234
|
+
|
|
235
|
+
if (arr) {
|
|
236
|
+
arr.forEach((item, i) => assertPluginItem(access(loc, i), item));
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
return arr;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
function assertPluginItem(loc, value) {
|
|
243
|
+
if (Array.isArray(value)) {
|
|
244
|
+
if (value.length === 0) {
|
|
245
|
+
throw new Error(`${msg(loc)} must include an object`);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
if (value.length > 3) {
|
|
249
|
+
throw new Error(`${msg(loc)} may only be a two-tuple or three-tuple`);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
assertPluginTarget(access(loc, 0), value[0]);
|
|
253
|
+
|
|
254
|
+
if (value.length > 1) {
|
|
255
|
+
const opts = value[1];
|
|
256
|
+
|
|
257
|
+
if (opts !== undefined && opts !== false && (typeof opts !== "object" || Array.isArray(opts) || opts === null)) {
|
|
258
|
+
throw new Error(`${msg(access(loc, 1))} must be an object, false, or undefined`);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
if (value.length === 3) {
|
|
263
|
+
const name = value[2];
|
|
264
|
+
|
|
265
|
+
if (name !== undefined && typeof name !== "string") {
|
|
266
|
+
throw new Error(`${msg(access(loc, 2))} must be a string, or undefined`);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
} else {
|
|
270
|
+
assertPluginTarget(loc, value);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
return value;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function assertPluginTarget(loc, value) {
|
|
277
|
+
if ((typeof value !== "object" || !value) && typeof value !== "string" && typeof value !== "function") {
|
|
278
|
+
throw new Error(`${msg(loc)} must be a string, object, function`);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
return value;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
function assertTargets(loc, value) {
|
|
285
|
+
if ((0, _helperCompilationTargets().isBrowsersQueryValid)(value)) return value;
|
|
286
|
+
|
|
287
|
+
if (typeof value !== "object" || !value || Array.isArray(value)) {
|
|
288
|
+
throw new Error(`${msg(loc)} must be a string, an array of strings or an object`);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
const browsersLoc = access(loc, "browsers");
|
|
292
|
+
const esmodulesLoc = access(loc, "esmodules");
|
|
293
|
+
assertBrowsersList(browsersLoc, value.browsers);
|
|
294
|
+
assertBoolean(esmodulesLoc, value.esmodules);
|
|
295
|
+
|
|
296
|
+
for (const key of Object.keys(value)) {
|
|
297
|
+
const val = value[key];
|
|
298
|
+
const subLoc = access(loc, key);
|
|
299
|
+
if (key === "esmodules") assertBoolean(subLoc, val);else if (key === "browsers") assertBrowsersList(subLoc, val);else if (!Object.hasOwnProperty.call(_helperCompilationTargets().TargetNames, key)) {
|
|
300
|
+
const validTargets = Object.keys(_helperCompilationTargets().TargetNames).join(", ");
|
|
301
|
+
throw new Error(`${msg(subLoc)} is not a valid target. Supported targets are ${validTargets}`);
|
|
302
|
+
} else assertBrowserVersion(subLoc, val);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
return value;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
function assertBrowsersList(loc, value) {
|
|
309
|
+
if (value !== undefined && !(0, _helperCompilationTargets().isBrowsersQueryValid)(value)) {
|
|
310
|
+
throw new Error(`${msg(loc)} must be undefined, a string or an array of strings`);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
function assertBrowserVersion(loc, value) {
|
|
315
|
+
if (typeof value === "number" && Math.round(value) === value) return;
|
|
316
|
+
if (typeof value === "string") return;
|
|
317
|
+
throw new Error(`${msg(loc)} must be a string or an integer number`);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
function assertAssumptions(loc, value) {
|
|
321
|
+
if (value === undefined) return;
|
|
322
|
+
|
|
323
|
+
if (typeof value !== "object" || value === null) {
|
|
324
|
+
throw new Error(`${msg(loc)} must be an object or undefined.`);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
let root = loc;
|
|
328
|
+
|
|
329
|
+
do {
|
|
330
|
+
root = root.parent;
|
|
331
|
+
} while (root.type !== "root");
|
|
332
|
+
|
|
333
|
+
const inPreset = root.source === "preset";
|
|
334
|
+
|
|
335
|
+
for (const name of Object.keys(value)) {
|
|
336
|
+
const subLoc = access(loc, name);
|
|
337
|
+
|
|
338
|
+
if (!_options.assumptionsNames.has(name)) {
|
|
339
|
+
throw new Error(`${msg(subLoc)} is not a supported assumption.`);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
if (typeof value[name] !== "boolean") {
|
|
343
|
+
throw new Error(`${msg(subLoc)} must be a boolean.`);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
if (inPreset && value[name] === false) {
|
|
347
|
+
throw new Error(`${msg(subLoc)} cannot be set to 'false' inside presets.`);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
return value;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
0 && 0;
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.assumptionsNames = void 0;
|
|
7
|
+
exports.checkNoUnwrappedItemOptionPairs = checkNoUnwrappedItemOptionPairs;
|
|
8
|
+
exports.validate = validate;
|
|
9
|
+
|
|
10
|
+
var _plugin = require("../plugin");
|
|
11
|
+
|
|
12
|
+
var _removed = require("./removed");
|
|
13
|
+
|
|
14
|
+
var _optionAssertions = require("./option-assertions");
|
|
15
|
+
|
|
16
|
+
const ROOT_VALIDATORS = {
|
|
17
|
+
cwd: _optionAssertions.assertString,
|
|
18
|
+
root: _optionAssertions.assertString,
|
|
19
|
+
rootMode: _optionAssertions.assertRootMode,
|
|
20
|
+
configFile: _optionAssertions.assertConfigFileSearch,
|
|
21
|
+
caller: _optionAssertions.assertCallerMetadata,
|
|
22
|
+
filename: _optionAssertions.assertString,
|
|
23
|
+
filenameRelative: _optionAssertions.assertString,
|
|
24
|
+
code: _optionAssertions.assertBoolean,
|
|
25
|
+
ast: _optionAssertions.assertBoolean,
|
|
26
|
+
cloneInputAst: _optionAssertions.assertBoolean,
|
|
27
|
+
envName: _optionAssertions.assertString
|
|
28
|
+
};
|
|
29
|
+
const BABELRC_VALIDATORS = {
|
|
30
|
+
babelrc: _optionAssertions.assertBoolean,
|
|
31
|
+
babelrcRoots: _optionAssertions.assertBabelrcSearch
|
|
32
|
+
};
|
|
33
|
+
const NONPRESET_VALIDATORS = {
|
|
34
|
+
extends: _optionAssertions.assertString,
|
|
35
|
+
ignore: _optionAssertions.assertIgnoreList,
|
|
36
|
+
only: _optionAssertions.assertIgnoreList,
|
|
37
|
+
targets: _optionAssertions.assertTargets,
|
|
38
|
+
browserslistConfigFile: _optionAssertions.assertConfigFileSearch,
|
|
39
|
+
browserslistEnv: _optionAssertions.assertString
|
|
40
|
+
};
|
|
41
|
+
const COMMON_VALIDATORS = {
|
|
42
|
+
inputSourceMap: _optionAssertions.assertInputSourceMap,
|
|
43
|
+
presets: _optionAssertions.assertPluginList,
|
|
44
|
+
plugins: _optionAssertions.assertPluginList,
|
|
45
|
+
passPerPreset: _optionAssertions.assertBoolean,
|
|
46
|
+
assumptions: _optionAssertions.assertAssumptions,
|
|
47
|
+
env: assertEnvSet,
|
|
48
|
+
overrides: assertOverridesList,
|
|
49
|
+
test: _optionAssertions.assertConfigApplicableTest,
|
|
50
|
+
include: _optionAssertions.assertConfigApplicableTest,
|
|
51
|
+
exclude: _optionAssertions.assertConfigApplicableTest,
|
|
52
|
+
retainLines: _optionAssertions.assertBoolean,
|
|
53
|
+
comments: _optionAssertions.assertBoolean,
|
|
54
|
+
shouldPrintComment: _optionAssertions.assertFunction,
|
|
55
|
+
compact: _optionAssertions.assertCompact,
|
|
56
|
+
minified: _optionAssertions.assertBoolean,
|
|
57
|
+
auxiliaryCommentBefore: _optionAssertions.assertString,
|
|
58
|
+
auxiliaryCommentAfter: _optionAssertions.assertString,
|
|
59
|
+
sourceType: _optionAssertions.assertSourceType,
|
|
60
|
+
wrapPluginVisitorMethod: _optionAssertions.assertFunction,
|
|
61
|
+
highlightCode: _optionAssertions.assertBoolean,
|
|
62
|
+
sourceMaps: _optionAssertions.assertSourceMaps,
|
|
63
|
+
sourceMap: _optionAssertions.assertSourceMaps,
|
|
64
|
+
sourceFileName: _optionAssertions.assertString,
|
|
65
|
+
sourceRoot: _optionAssertions.assertString,
|
|
66
|
+
parserOpts: _optionAssertions.assertObject,
|
|
67
|
+
generatorOpts: _optionAssertions.assertObject
|
|
68
|
+
};
|
|
69
|
+
{
|
|
70
|
+
Object.assign(COMMON_VALIDATORS, {
|
|
71
|
+
getModuleId: _optionAssertions.assertFunction,
|
|
72
|
+
moduleRoot: _optionAssertions.assertString,
|
|
73
|
+
moduleIds: _optionAssertions.assertBoolean,
|
|
74
|
+
moduleId: _optionAssertions.assertString
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
const knownAssumptions = ["arrayLikeIsIterable", "constantReexports", "constantSuper", "enumerableModuleMeta", "ignoreFunctionLength", "ignoreToPrimitiveHint", "iterableIsArray", "mutableTemplateObject", "noClassCalls", "noDocumentAll", "noIncompleteNsImportDetection", "noNewArrows", "objectRestNoSymbols", "privateFieldsAsProperties", "pureGetters", "setClassMethods", "setComputedProperties", "setPublicClassFields", "setSpreadProperties", "skipForOfIteratorClosing", "superIsCallableConstructor"];
|
|
78
|
+
const assumptionsNames = new Set(knownAssumptions);
|
|
79
|
+
exports.assumptionsNames = assumptionsNames;
|
|
80
|
+
|
|
81
|
+
function getSource(loc) {
|
|
82
|
+
return loc.type === "root" ? loc.source : getSource(loc.parent);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function validate(type, opts) {
|
|
86
|
+
return validateNested({
|
|
87
|
+
type: "root",
|
|
88
|
+
source: type
|
|
89
|
+
}, opts);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
function validateNested(loc, opts) {
|
|
93
|
+
const type = getSource(loc);
|
|
94
|
+
assertNoDuplicateSourcemap(opts);
|
|
95
|
+
Object.keys(opts).forEach(key => {
|
|
96
|
+
const optLoc = {
|
|
97
|
+
type: "option",
|
|
98
|
+
name: key,
|
|
99
|
+
parent: loc
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
if (type === "preset" && NONPRESET_VALIDATORS[key]) {
|
|
103
|
+
throw new Error(`${(0, _optionAssertions.msg)(optLoc)} is not allowed in preset options`);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
if (type !== "arguments" && ROOT_VALIDATORS[key]) {
|
|
107
|
+
throw new Error(`${(0, _optionAssertions.msg)(optLoc)} is only allowed in root programmatic options`);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
if (type !== "arguments" && type !== "configfile" && BABELRC_VALIDATORS[key]) {
|
|
111
|
+
if (type === "babelrcfile" || type === "extendsfile") {
|
|
112
|
+
throw new Error(`${(0, _optionAssertions.msg)(optLoc)} is not allowed in .babelrc or "extends"ed files, only in root programmatic options, ` + `or babel.config.js/config file options`);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
throw new Error(`${(0, _optionAssertions.msg)(optLoc)} is only allowed in root programmatic options, or babel.config.js/config file options`);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const validator = COMMON_VALIDATORS[key] || NONPRESET_VALIDATORS[key] || BABELRC_VALIDATORS[key] || ROOT_VALIDATORS[key] || throwUnknownError;
|
|
119
|
+
validator(optLoc, opts[key]);
|
|
120
|
+
});
|
|
121
|
+
return opts;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function throwUnknownError(loc) {
|
|
125
|
+
const key = loc.name;
|
|
126
|
+
|
|
127
|
+
if (_removed.default[key]) {
|
|
128
|
+
const {
|
|
129
|
+
message,
|
|
130
|
+
version = 5
|
|
131
|
+
} = _removed.default[key];
|
|
132
|
+
throw new Error(`Using removed Babel ${version} option: ${(0, _optionAssertions.msg)(loc)} - ${message}`);
|
|
133
|
+
} else {
|
|
134
|
+
const unknownOptErr = new Error(`Unknown option: ${(0, _optionAssertions.msg)(loc)}. Check out https://babeljs.io/docs/en/babel-core/#options for more information about options.`);
|
|
135
|
+
unknownOptErr.code = "BABEL_UNKNOWN_OPTION";
|
|
136
|
+
throw unknownOptErr;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function has(obj, key) {
|
|
141
|
+
return Object.prototype.hasOwnProperty.call(obj, key);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
function assertNoDuplicateSourcemap(opts) {
|
|
145
|
+
if (has(opts, "sourceMap") && has(opts, "sourceMaps")) {
|
|
146
|
+
throw new Error(".sourceMap is an alias for .sourceMaps, cannot use both");
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function assertEnvSet(loc, value) {
|
|
151
|
+
if (loc.parent.type === "env") {
|
|
152
|
+
throw new Error(`${(0, _optionAssertions.msg)(loc)} is not allowed inside of another .env block`);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const parent = loc.parent;
|
|
156
|
+
const obj = (0, _optionAssertions.assertObject)(loc, value);
|
|
157
|
+
|
|
158
|
+
if (obj) {
|
|
159
|
+
for (const envName of Object.keys(obj)) {
|
|
160
|
+
const env = (0, _optionAssertions.assertObject)((0, _optionAssertions.access)(loc, envName), obj[envName]);
|
|
161
|
+
if (!env) continue;
|
|
162
|
+
const envLoc = {
|
|
163
|
+
type: "env",
|
|
164
|
+
name: envName,
|
|
165
|
+
parent
|
|
166
|
+
};
|
|
167
|
+
validateNested(envLoc, env);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
return obj;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function assertOverridesList(loc, value) {
|
|
175
|
+
if (loc.parent.type === "env") {
|
|
176
|
+
throw new Error(`${(0, _optionAssertions.msg)(loc)} is not allowed inside an .env block`);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
if (loc.parent.type === "overrides") {
|
|
180
|
+
throw new Error(`${(0, _optionAssertions.msg)(loc)} is not allowed inside an .overrides block`);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
const parent = loc.parent;
|
|
184
|
+
const arr = (0, _optionAssertions.assertArray)(loc, value);
|
|
185
|
+
|
|
186
|
+
if (arr) {
|
|
187
|
+
for (const [index, item] of arr.entries()) {
|
|
188
|
+
const objLoc = (0, _optionAssertions.access)(loc, index);
|
|
189
|
+
const env = (0, _optionAssertions.assertObject)(objLoc, item);
|
|
190
|
+
if (!env) throw new Error(`${(0, _optionAssertions.msg)(objLoc)} must be an object`);
|
|
191
|
+
const overridesLoc = {
|
|
192
|
+
type: "overrides",
|
|
193
|
+
index,
|
|
194
|
+
parent
|
|
195
|
+
};
|
|
196
|
+
validateNested(overridesLoc, env);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
return arr;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function checkNoUnwrappedItemOptionPairs(items, index, type, e) {
|
|
204
|
+
if (index === 0) return;
|
|
205
|
+
const lastItem = items[index - 1];
|
|
206
|
+
const thisItem = items[index];
|
|
207
|
+
|
|
208
|
+
if (lastItem.file && lastItem.options === undefined && typeof thisItem.value === "object") {
|
|
209
|
+
e.message += `\n- Maybe you meant to use\n` + `"${type}s": [\n ["${lastItem.file.request}", ${JSON.stringify(thisItem.value, undefined, 2)}]\n]\n` + `To be a valid ${type}, its name and options should be wrapped in a pair of brackets`;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
0 && 0;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.validatePluginObject = validatePluginObject;
|
|
7
|
+
|
|
8
|
+
var _optionAssertions = require("./option-assertions");
|
|
9
|
+
|
|
10
|
+
const VALIDATORS = {
|
|
11
|
+
name: _optionAssertions.assertString,
|
|
12
|
+
manipulateOptions: _optionAssertions.assertFunction,
|
|
13
|
+
pre: _optionAssertions.assertFunction,
|
|
14
|
+
post: _optionAssertions.assertFunction,
|
|
15
|
+
inherits: _optionAssertions.assertFunction,
|
|
16
|
+
visitor: assertVisitorMap,
|
|
17
|
+
parserOverride: _optionAssertions.assertFunction,
|
|
18
|
+
generatorOverride: _optionAssertions.assertFunction
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
function assertVisitorMap(loc, value) {
|
|
22
|
+
const obj = (0, _optionAssertions.assertObject)(loc, value);
|
|
23
|
+
|
|
24
|
+
if (obj) {
|
|
25
|
+
Object.keys(obj).forEach(prop => assertVisitorHandler(prop, obj[prop]));
|
|
26
|
+
|
|
27
|
+
if (obj.enter || obj.exit) {
|
|
28
|
+
throw new Error(`${(0, _optionAssertions.msg)(loc)} cannot contain catch-all "enter" or "exit" handlers. Please target individual nodes.`);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return obj;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function assertVisitorHandler(key, value) {
|
|
36
|
+
if (value && typeof value === "object") {
|
|
37
|
+
Object.keys(value).forEach(handler => {
|
|
38
|
+
if (handler !== "enter" && handler !== "exit") {
|
|
39
|
+
throw new Error(`.visitor["${key}"] may only have .enter and/or .exit handlers.`);
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
} else if (typeof value !== "function") {
|
|
43
|
+
throw new Error(`.visitor["${key}"] must be a function`);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function validatePluginObject(obj) {
|
|
50
|
+
const rootPath = {
|
|
51
|
+
type: "root",
|
|
52
|
+
source: "plugin"
|
|
53
|
+
};
|
|
54
|
+
Object.keys(obj).forEach(key => {
|
|
55
|
+
const validator = VALIDATORS[key];
|
|
56
|
+
|
|
57
|
+
if (validator) {
|
|
58
|
+
const optLoc = {
|
|
59
|
+
type: "option",
|
|
60
|
+
name: key,
|
|
61
|
+
parent: rootPath
|
|
62
|
+
};
|
|
63
|
+
validator(optLoc, obj[key]);
|
|
64
|
+
} else {
|
|
65
|
+
const invalidPluginPropertyError = new Error(`.${key} is not a valid Plugin property`);
|
|
66
|
+
invalidPluginPropertyError.code = "BABEL_UNKNOWN_PLUGIN_PROPERTY";
|
|
67
|
+
throw invalidPluginPropertyError;
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
return obj;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
0 && 0;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _default = {
|
|
8
|
+
auxiliaryComment: {
|
|
9
|
+
message: "Use `auxiliaryCommentBefore` or `auxiliaryCommentAfter`"
|
|
10
|
+
},
|
|
11
|
+
blacklist: {
|
|
12
|
+
message: "Put the specific transforms you want in the `plugins` option"
|
|
13
|
+
},
|
|
14
|
+
breakConfig: {
|
|
15
|
+
message: "This is not a necessary option in Babel 6"
|
|
16
|
+
},
|
|
17
|
+
experimental: {
|
|
18
|
+
message: "Put the specific transforms you want in the `plugins` option"
|
|
19
|
+
},
|
|
20
|
+
externalHelpers: {
|
|
21
|
+
message: "Use the `external-helpers` plugin instead. " + "Check out http://babeljs.io/docs/plugins/external-helpers/"
|
|
22
|
+
},
|
|
23
|
+
extra: {
|
|
24
|
+
message: ""
|
|
25
|
+
},
|
|
26
|
+
jsxPragma: {
|
|
27
|
+
message: "use the `pragma` option in the `react-jsx` plugin. " + "Check out http://babeljs.io/docs/plugins/transform-react-jsx/"
|
|
28
|
+
},
|
|
29
|
+
loose: {
|
|
30
|
+
message: "Specify the `loose` option for the relevant plugin you are using " + "or use a preset that sets the option."
|
|
31
|
+
},
|
|
32
|
+
metadataUsedHelpers: {
|
|
33
|
+
message: "Not required anymore as this is enabled by default"
|
|
34
|
+
},
|
|
35
|
+
modules: {
|
|
36
|
+
message: "Use the corresponding module transform plugin in the `plugins` option. " + "Check out http://babeljs.io/docs/plugins/#modules"
|
|
37
|
+
},
|
|
38
|
+
nonStandard: {
|
|
39
|
+
message: "Use the `react-jsx` and `flow-strip-types` plugins to support JSX and Flow. " + "Also check out the react preset http://babeljs.io/docs/plugins/preset-react/"
|
|
40
|
+
},
|
|
41
|
+
optional: {
|
|
42
|
+
message: "Put the specific transforms you want in the `plugins` option"
|
|
43
|
+
},
|
|
44
|
+
sourceMapName: {
|
|
45
|
+
message: "The `sourceMapName` option has been removed because it makes more sense for the " + "tooling that calls Babel to assign `map.file` themselves."
|
|
46
|
+
},
|
|
47
|
+
stage: {
|
|
48
|
+
message: "Check out the corresponding stage-x presets http://babeljs.io/docs/plugins/#presets"
|
|
49
|
+
},
|
|
50
|
+
whitelist: {
|
|
51
|
+
message: "Put the specific transforms you want in the `plugins` option"
|
|
52
|
+
},
|
|
53
|
+
resolveModuleSource: {
|
|
54
|
+
version: 6,
|
|
55
|
+
message: "Use `babel-plugin-module-resolver@3`'s 'resolvePath' options"
|
|
56
|
+
},
|
|
57
|
+
metadata: {
|
|
58
|
+
version: 6,
|
|
59
|
+
message: "Generated plugin metadata is always included in the output result"
|
|
60
|
+
},
|
|
61
|
+
sourceMapTarget: {
|
|
62
|
+
version: 6,
|
|
63
|
+
message: "The `sourceMapTarget` option has been removed because it makes more sense for the tooling " + "that calls Babel to assign `map.file` themselves."
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
exports.default = _default;
|
|
67
|
+
0 && 0;
|