@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
package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconParken = class UtrechtIconParken {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M17.71 17.39c-.18-.24-.37-.46-.59-.65.29-.03.57-.09.86-.18a4.161 4.161 0 0 0 2.67-5.23 4.15 4.15 0 0 0-3.95-2.87c-.43 0-.86.07-1.28.2-.28.09-.55.21-.8.36A4.153 4.153 0 0 0 10.56 4 4.153 4.153 0 0 0 6.5 9.02a4.44 4.44 0 0 0-.8-.36 4.162 4.162 0 0 0-5.23 2.67A4.145 4.145 0 0 0 4 16.74c-.21.19-.41.41-.59.65a4.146 4.146 0 0 0 .92 5.8c.74.54 1.59.79 2.44.79 1.28 0 2.55-.59 3.36-1.71.18-.24.32-.5.44-.76.12.26.26.52.44.76a4.137 4.137 0 0 0 3.36 1.71 4.146 4.146 0 0 0 3.36-6.59Zm-7.14.61c-1.92 0-3.47-1.55-3.47-3.47s1.55-3.47 3.47-3.47 3.47 1.55 3.47 3.47S12.49 18 10.57 18Zm25.46 17.98-3.29-.02c-.51-1.09-1.14-2.14-1.86-3.12a17.565 17.565 0 0 0-5.22-4.9 16.237 16.237 0 0 0-7.18-2.34s.01 0 .02-.01a7.09 7.09 0 0 0 2.85-4.65c.06-.35.08-.7.08-1.05 2.22-.12 4.33-.02 6.54.33v-3.25h-5.02l3.92-5.66h-2.61l3.48-5.66H26L29.49.01l3.48 5.66h-1.74l3.48 5.66H32.1l3.92 5.66H31v3.91c1.72.45 3.4 1.03 5.05 1.77l-.03 3.17c-1.5-.67-3.86-1.56-5.53-2l-2.95-.64c-1.79-.29-3.83-.36-5.81-.29 1.92.47 3.76 1.22 5.5 2.25 3.59 2.12 7.29 6.34 8.8 10.84Zm-24-9.41.06 9.43-3-.03c-5.07-.42-9.13-4.74-9.13-9.92 4.05 0 7.54 2.45 9.07 5.94v-5.43c.52-.18 1.02-.4 1.49-.69.47.3.98.52 1.51.7Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParken = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-parken',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParken);
|
|
21
|
-
export { UtrechtIconParken };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconParkerenBedrijven = class UtrechtIconParkerenBedrijven {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M20 11.99c0 2.21-1.54 4-3.43 4h-4.61v-8h4.61c1.89 0 3.43 1.79 3.43 4Zm5.54 8.99h3.96c.83 0 1.5.65 1.5 1.47v1.54h3.5c.83 0 1.5.67 1.5 1.5v9.01c0 .83-.67 1.5-1.5 1.5H20.49c-.83 0-1.5-.67-1.5-1.5v-9.01c0-.83.67-1.5 1.5-1.5h3.5v-1.51c0-.83.68-1.5 1.54-1.5h.01Zm.46 3h3v-1h-3v1Zm-9 6H4.5c-2.48 0-4.5-2.02-4.5-4.5v-21C0 2 2.02-.02 4.5-.02h21C27.98-.02 30 2 30 4.48v14.54l-4.46-.04c-1.78 0-3.26 1.31-3.5 3H20.5c-1.93 0-3.5 1.57-3.5 3.5v4.5Zm-.52-12.01c3.04 0 5.52-2.68 5.52-5.98s-2.48-5.98-5.52-5.98H10v17.97h1.96v-6.01h4.52Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParkerenBedrijven = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-parkeren-bedrijven',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParkerenBedrijven);
|
|
21
|
-
export { UtrechtIconParkerenBedrijven };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconParkerenBetalen = class UtrechtIconParkerenBetalen {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M20 12.01c0 2.21-1.54 4-3.43 4h-4.61v-8h4.61c1.89 0 3.43 1.79 3.43 4ZM22.77 23H20v7H4.5C2.02 30 0 27.98 0 25.5v-21C0 2.02 2.02 0 4.5 0h21C27.98 0 30 2.02 30 4.5v13.21c-3.08.56-5.76 2.5-7.23 5.29ZM22 12.01c0-3.3-2.48-5.98-5.52-5.98H10V24h1.96v-6.01h4.52c3.04 0 5.52-2.68 5.52-5.98Zm12.56 21.35c-.83.41-1.76.64-2.74.64-2.25 0-4.22-1.2-5.32-3h4.11l.91-2h-5.73a6.284 6.284 0 0 1-.07-2h6.79l.91-2h-7.1c1.02-2.05 3.14-3.47 5.58-3.47 1 0 1.95.24 2.79.67l.83-1.82a8.14 8.14 0 0 0-3.62-.85c-3.57 0-6.61 2.29-7.75 5.47h-2.07v2h1.54c-.02.25-.04.51-.04.76 0 .42.04.83.1 1.24h-1.6v2h2.16c1.26 2.94 4.18 5 7.57 5 1.53 0 2.95-.43 4.18-1.15l-1.44-1.49h.01Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParkerenBetalen = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-parkeren-betalen',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParkerenBetalen);
|
|
21
|
-
export { UtrechtIconParkerenBetalen };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconParticipatieCampagne = class UtrechtIconParticipatieCampagne {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M16.46 32.16a1.5 1.5 0 0 1-1.45 1.89h-4.89c-.68 0-1.27-.45-1.45-1.11L7 25.05h7.99l1.46 7.11Zm-1.44-22.11H3.49c-.83 0-1.5.67-1.5 1.5v.5H0v8h1.99v.5c0 .83.67 1.5 1.5 1.5h11.53v-12Zm15.98-8h-1.86l-11.14 8v12l11 8h2v-28Zm3.04 10.08v6.95c1.17-.72 1.97-2 1.97-3.48s-.79-2.76-1.97-3.47Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParticipatieCampagne = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-participatie-campagne',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParticipatieCampagne);
|
|
21
|
-
export { UtrechtIconParticipatieCampagne };
|
package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconPaspoort = class UtrechtIconPaspoort {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M33.47 19h-7.48v3h-2v-3h-7.96c-1.12 0-2.03.91-2.03 2.03v12.42c0 1.4 1.14 2.54 2.54 2.54h16.93c1.4 0 2.53-1.13 2.53-2.53V21.52a2.54 2.54 0 0 0-2.53-2.53Zm-11.96 5.08c.96 0 1.74.78 1.74 1.75s-.78 1.75-1.74 1.75-1.74-.78-1.74-1.75.78-1.75 1.74-1.75ZM25 31.01h-7v-.87c0-1.16 2.33-1.75 3.5-1.75s3.5.59 3.5 1.75v.87Zm6 0h-4v-2h4v2Zm1-4h-5v-2h5v2ZM23 6.3v10.71h-6v-2h-1v-1h.94l.47-3h-.94l-.47-1-2.99.32-.85.91-.19 1.62 1.14.22-.44 1.91-1.55.83.57-1.05-.47-.95c-.03-.07.08-.8.08-.8l-1.41-.5-1.88 5v1.09l.92.58-.92 1.03-1.38-.52-.46 1.03 1.84 2.55 1.38-2.26h1.84l.46.75.3.11v5.14H6v2h5.99v5.31c.07.61.26 1.18.56 1.69H2.04C.91 36.02 0 35.11 0 33.98V7.01h.02V2.96C.02 1.33 1.34 0 2.97 0h15.02c1.3 0 2.39.84 2.8 2H3c-.56 0-1 .44-1 1s.44 1 1 1h17.7c.61 0 1.19.24 1.62.67.44.43.68 1.01.68 1.63Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconPaspoort = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-paspoort',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconPaspoort);
|
|
21
|
-
export { UtrechtIconPaspoort };
|
package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconRijbewijs = class UtrechtIconRijbewijs {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M15.09 17.47H6.93l.95-2.8c.03-.09.11-.2.24-.2h5.79c.12 0 .2.09.23.19l.95 2.81ZM7.26 19c-.41 0-.75.33-.75.74s.33.74.75.74a.74.74 0 1 0 0-1.48Zm7.51 0c-.41 0-.75.33-.75.74s.33.74.75.74a.74.74 0 1 0 0-1.48ZM36 9.99V26c0 2.21-1.79 4-4 4H3.98C1.78 30 0 28.22 0 26.02V9.99C0 7.78 1.79 6 3.99 6H17v4h2V6h13.01C34.21 6 36 7.79 36 9.99Zm-19 8.54c0-.16-.03-.32-.08-.48l-1.3-3.86A1.72 1.72 0 0 0 13.98 13H8.03c-.74 0-1.39.47-1.64 1.18l-1.32 3.85c-.05.15-.08.32-.08.48v6.46s2.03 0 2 .04v-2l8-.04v2.04h2v-6.47H17Zm11 4.46h-7v2h7v-2Zm2-5h-9v2h9v-2Zm0-5h-9v2h9v-2Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconRijbewijs = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-rijbewijs',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconRijbewijs);
|
|
21
|
-
export { UtrechtIconRijbewijs };
|
package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconRolstoel = class UtrechtIconRolstoel {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 35.98 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M13.29 3.87c0-2.14 1.73-3.87 3.87-3.87s3.87 1.73 3.87 3.87-1.73 3.87-3.87 3.87-3.87-1.73-3.87-3.87Zm13.87 16.68H21v-6.41c0-2.14-1.73-3.87-3.85-3.87S13.3 12 13.3 14.14v7.68a3.88 3.88 0 0 0 3.87 3.87h8.98v10.28h5.14v-11.3c0-2.26-1.85-4.12-4.12-4.12ZM7.05 27.89c-.83-3.19.97-6.06 3.66-7.04v-4C4.83 18.04.88 24.58 4.16 31.17a8.16 8.16 0 0 0 3.65 3.65c6.59 3.27 13.13-.68 14.32-6.55h-4c-.96 2.72-3.91 4.53-7.12 3.64-1.91-.53-3.45-2.1-3.95-4.01Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconRolstoel = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-rolstoel',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconRolstoel);
|
|
21
|
-
export { UtrechtIconRolstoel };
|
package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconShoppen = class UtrechtIconShoppen {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M18.05 8.99h-6.99v2.98c.29.27.49.67.49 1.11 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.44.2-.84.5-1.11V9h-.02V6.93c0-2.21 1.52-4.06 3.58-4.68-.96 1.04-1.57 2.35-1.57 3.78v.95h2v-.95c0-1.58 1.21-3.01 2.95-3.66 1.13.45 2.04 1.31 2.56 2.4.25-.74.59-1.45 1.01-2.1-.16-.2-.33-.4-.51-.58.26.04.52.11.77.18.41-.58.88-1.12 1.41-1.6-.95-.42-2.02-.66-3.15-.66-.7 0-1.38.09-2.04.27V.26s-.04 0-.05.02c-.6-.17-1.22-.26-1.87-.26-3.9 0-7.08 3.11-7.08 6.92l-.02 2.07L2 8.99 0 36.02h29L27.67 18c-5.04-.17-9.13-4.05-9.62-9Zm1.58 20.52c-.9.77-2.2 1.3-3.74 1.3-2.59 0-5.02-1.46-5.94-4.1H8.13v-1.69H9.6a5.824 5.824 0 0 1 0-1.38H8.13v-1.67h1.8c.92-2.68 3.41-4.16 5.98-4.16 1.34 0 2.41.29 3.28.88l-.88 1.78c-.63-.46-1.46-.67-2.39-.67-1.48 0-2.87.69-3.58 2.16h5.27l-.8 1.67h-4.9c-.02.15-.04.36-.04.67 0 .34.02.57.04.71h4.33l-.79 1.69h-3.08c.71 1.4 2.05 2.07 3.54 2.07 1.07 0 2.01-.31 2.66-.92l1.07 1.65h-.01ZM28 0c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8Zm2.29 11.71L27 8.42V3h2v4.59l2.71 2.71-1.41 1.41Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconShoppen = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-shoppen',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconShoppen);
|
|
21
|
-
export { UtrechtIconShoppen };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconSinterklaas = class UtrechtIconSinterklaas {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M1.93 32.5V31h17v1.5c0 .83-.67 1.5-1.5 1.5h-14c-.83 0-1.5-.67-1.5-1.5ZM28.16 0c-3.99.14-7.2 3.31-7.2 7.18 0 2.55 2.1 4.79 4.49 4.79 2.69 0 4.49-1.77 4.49-4.41h-.04s.01-.09.01-.13c0-.82-.66-1.48-1.48-1.48s-1.48.66-1.48 1.48c0 .05 0 .09.01.13h-.04c0 .66-.17 1.41-1.49 1.41-.75 0-1.49-.88-1.49-1.79 0-2.32 2.03-4.2 4.51-4.18 2.67.02 4.62 2.49 4.42 5.16-.21 2.75-1.7 4.97-4.09 6.06-1.11.5-1.87 1.56-1.87 2.78v3.95h-1.49c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h1.5v11.97h3V23.95h1.53c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.49-1.5h-1.54v-3.98c3.17-1.44 5.33-4.28 5.86-7.79C36.52 4.38 33-.17 28.16 0ZM11.72 2.25c-.58-1-2.02-1-2.61 0L.21 17.52c-.19.33-.25.72-.17 1.09L1.8 28h7.13v-7h-5v-3h5v-6h3v6h5v3h-5v7h7.01l1.86-9.38c.09-.38.03-.77-.17-1.1L11.72 2.25Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconSinterklaas = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-sinterklaas',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconSinterklaas);
|
|
21
|
-
export { UtrechtIconSinterklaas };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconSport = class UtrechtIconSport {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M3.02 2.46C3.02 1.1 4.12 0 5.48 0s2.46 1.1 2.46 2.46-1.1 2.46-2.46 2.46-2.46-1.1-2.46-2.46ZM1.99 19.02c-1.1 0-1.99.89-1.99 1.99S.89 23 1.99 23s1.99-.89 1.99-1.99-.89-1.99-1.99-1.99Zm29.57-6.15c1.36 0 2.46-1.1 2.46-2.46s-1.1-2.46-2.46-2.46-2.46 1.1-2.46 2.46 1.1 2.46 2.46 2.46Zm-1.39 6.4.06.1c.35.57 1.01 1.64 2.22 1.64h3.58v-3h-3.12c-.05-.08-.1-.15-.13-.21l-2.65-3.84c-.04-.06-.09-.12-.14-.18-.78-.82-2.06-.8-2.81-.78h-.46c-5.12 0-4.86 0-5.28.2-.2.09-.37.23-.48.41l-2.58 4.07 2.48 1.62 2.1-3.3h2.11l-.07.12-.03-.02-2.38 3.18a3.41 3.41 0 0 0-.56 2.93l.04 3.61-4.87 1.65.93 2.84 5.88-1.99c.62-.21 1.03-.79 1.02-1.44l-.04-3.7 4.04 2.55v5.28h-6.77c-.53 0-.97.45-.97 1s.43 1 .97 1h12.56c.53 0 .97-.45.97-1s-.43-1-.97-1h-2.79v-5.58c0-.75-.33-1.46-.91-1.94-.06-.05-.12-.09-.18-.13l-3.93-2.4c.61-1.01 1.46-2.41 2.01-3.32l1.15 1.64ZM24 33.99c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1Zm10.03 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1ZM6.9 11.76l1.25-1.94 1.96 3.19-3.98 2.39c-.07.04-.13.08-.19.13-.58.48-.91 1.18-.91 1.93v5.53h3v-5.25l3.51-2.15-.94 2.54c-.18.49-.1 1.04.23 1.45l2.69 3.4h3.83l-3.63-4.61 1.44-3.86c.4-1.08.22-2.29-.47-3.21l-2.43-3.21-.03.02-.07-.12h2.15l2.13 3.33 2.52-1.63-2.63-4.1c-.12-.18-.29-.32-.49-.42-.42-.2-.16-.2-5.38-.2h-.43c-.78-.02-2.09-.05-2.89.79-.07.07-.13.15-.19.24L4.44 9.97H1.05v3h3.61c.92 0 1.77-.47 2.26-1.24l-.02.03Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconSport = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-sport',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconSport);
|
|
21
|
-
export { UtrechtIconSport };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconStookverbod = class UtrechtIconStookverbod {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M33.5 7.04c0 3.87-3.13 7-7 7s-7-3.13-7-7 3.14-7 7-7 7 3.13 7 7Zm-5.59 0 2.47-2.47-1.41-1.41-2.47 2.47-2.47-2.47-1.41 1.41 2.47 2.47-2.47 2.47 1.41 1.41 2.47-2.47 2.47 2.47 1.41-1.41-2.47-2.47ZM7.56 36.02h16v-3h-16v3ZM26.5 17.04c-5.52 0-10-4.48-10-10 0-1.24.24-2.42.65-3.52C16.14 2.06 14.85.79 13.21 0c.23 3.8.79 8.53-5.28 15.01 0-3.22-2.11-5.36-2.11-5.36 0 7.51-7.66 17.07 5.28 20.38-3.29-6.12-.12-7.43 1.25-12.72.82 1.11 1.41 3.09 1.14 4.2 1.92-2.51 1.88-7.45 1.88-9.68 4.11 2.78 7.74 11.24 4.18 18.2 7-2.96 8.66-8.07 7.78-13.03-.27.02-.55.04-.82.04Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconStookverbod = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-stookverbod',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconStookverbod);
|
|
21
|
-
export { UtrechtIconStookverbod };
|
package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconStrooien = class UtrechtIconStrooien {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M19.59 6.01h-3v4h3v-4Zm0-5.98h-3v3.91h3V.03ZM3.19 21.04 10.8.05H7.61L0 21.04h3.19ZM25.18.05l7.61 20.99h3.19L28.37.05h-3.19Zm.63 22.91 3.47-3.47-2.12-2.12-5.59 5.59H19.6v-2.04l5.56-5.56-2.12-2.12-3.44 3.44v-3.7h-3v3.7l-3.53-3.53-2.12 2.12 5.66 5.66v2.04h-2.05l-5.65-5.65-2.12 2.12 3.53 3.53H6.5v3h3.82l-3.56 3.56 2.12 2.12 5.68-5.68h2.05v2.01l-5.7 5.7 2.12 2.12 3.57-3.57v3.78h3v-3.78l3.48 3.48 2.12-2.12-5.6-5.6v-2.01h1.97l5.62 5.62 2.12-2.12-3.5-3.5h3.7v-3h-3.7Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconStrooien = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-strooien',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconStrooien);
|
|
21
|
-
export { UtrechtIconStrooien };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconSubsidieGezin = class UtrechtIconSubsidieGezin {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M26.98 3.49c0-1.93 1.57-3.49 3.51-3.49S34 1.56 34 3.49s-1.57 3.49-3.51 3.49-3.51-1.56-3.51-3.49Zm-6.52 3.49c1.94 0 3.51-1.56 3.51-3.49S22.4 0 20.46 0s-3.51 1.56-3.51 3.49 1.57 3.49 3.51 3.49ZM14.94 21.1V10.98c-.01-1.65 1.34-2 3-2h4.46c1.66 0 3.01 1.34 3.01 2.99 0-1.65 1.35-2.99 3.01-2.99H33c1.66 0 3.01 1.34 3.01 2.99v10.98h-2v4.99c-.82-.25-1.79-.41-2.95-.41h-.28l-.78.08v-5.6c0-1.14-.93-2.06-2.07-2.06h-4.99c-1.1 0-2 .89-1.99 1.99v.89l-5.18-1.56-.65-.19-.16.02Zm7.53-5.14c0 1.65 1.35 2.99 3.01 2.99s3.01-1.34 3.01-2.99-1.35-2.99-3.01-2.99-3.01 1.34-3.01 2.99Zm-9.95-3.31-1.08-1.64c-.65.61-1.59.92-2.67.92-1.5 0-2.84-.67-3.55-1.95h3.09l.79-2H4.76s-.04-.16-.04-.51c0-.31.04-.49.04-.49h4.92l.81-2H5.2c.71-1.32 2.11-2 3.59-2 .94 0 1.77.21 2.4.67l.88-1.78c-.86-.59-1.94-.88-3.28-.88-2.57 0-5.07 1.47-5.99 3.99H.92v2h1.56s-.04.21-.04.51c0 .25.02.52.04.49H.92v2h1.9v-.11c.92 2.64 3.36 4.09 5.95 4.09 1.54 0 2.84-.54 3.74-1.3Zm2.37 11.48-5.85.88v7.98l11.99 2.99 14.13-3.08s0-2.39-4.11-2.39l-10.03.92-4.77-1.21.78-2.24 3.95 1.01h3.18s-.22-2.21-3.11-3.02l-6.17-1.86M6.01 24H0v9.98h6.01V24Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconSubsidieGezin = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-subsidie-gezin',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconSubsidieGezin);
|
|
21
|
-
export { UtrechtIconSubsidieGezin };
|
package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.stencil.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconToeslag = class UtrechtIconToeslag {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 23 29", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M11.11 28.25v-5.28c0-1.56-1.75-2.83-3.92-2.83H3.92C1.75 20.14 0 21.41 0 22.97v5.28h11.11ZM8.62 16.79a3.07 3.07 0 1 1-3.07-3 3 3 0 0 1 3.07 3Z" }),
|
|
12
|
-
h("path", { "fill-rule": "evenodd", d: "M19.65 0H8.91a2.83 2.83 0 0 0-2.82 2.82v5.2a2.82 2.82 0 0 0 2.82 2.81h.38v2.31l2.3-2.31h8.06a2.82 2.82 0 0 0 2.82-2.81v-5.2A2.83 2.83 0 0 0 19.65 0Zm-6 4.26h2l-.1.55a.05.05 0 0 1-.05 0h-1.94v.46h1.81l-.1.55a.07.07 0 0 1-.05 0h-1.61c.062.224.153.44.27.64a1.169 1.169 0 0 0 1 .48 2.49 2.49 0 0 0 1.1-.45v1.17a.07.07 0 0 1 0 .05 3.91 3.91 0 0 1-1.08.25 2.24 2.24 0 0 1-1.78-.81 5.097 5.097 0 0 1-.62-1.34h-.47l.1-.55h.29v-.3h-.41l.1-.55h.36c.14-.463.346-.904.61-1.31a2.3 2.3 0 0 1 1.84-.82 4 4 0 0 1 1 .23.05.05 0 0 1 0 .05l-.2 1a2 2 0 0 0-.89-.32 1.18 1.18 0 0 0-1 .47c-.121.198-.219.41-.29.63 0 0 .02-.09.07-.09l.04.01Z", "clip-rule": "evenodd" })));
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
UtrechtIconToeslag = __decorate([
|
|
16
|
-
Component({
|
|
17
|
-
tag: 'utrecht-icon-toeslag',
|
|
18
|
-
styleUrl: "../../../web-component/index.scss",
|
|
19
|
-
shadow: true,
|
|
20
|
-
})
|
|
21
|
-
], UtrechtIconToeslag);
|
|
22
|
-
export { UtrechtIconToeslag };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.stencil.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Component, h } from '@stencil/core';
|
|
8
|
-
let UtrechtIconTrein = class UtrechtIconTrein {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M9.92 13.15 9.9 19H7.93v8H1.95v-8H-.04v-5.86c0-1.72 1.22-3.05 2.82-3.15h4.21c1.65.03 2.93 1.39 2.93 3.15ZM4.9 9.02c1.64 0 2.99-1.35 2.99-3s-1.35-3-2.99-3-2.99 1.35-2.99 3 1.35 3 2.99 3ZM29.84 0h-8.93c-3.3 0-6 2.71-6 6.02V23c0 2.76 2.23 5 4.99 5h10.96c2.76 0 4.99-2.24 4.99-5.01V6.02C35.84 2.7 33.16 0 29.84 0ZM25.4 23.97c-1.11 0-2.01-.9-2.01-2.02s.9-2.02 2.01-2.02 2.01.9 2.01 2.02-.9 2.02-2.01 2.02ZM30.83 15H19.87l-1.99-8h14.95l-1.99 8Zm-8.96 16h-3.53l-3.43 5h3.53l3.43-5Zm10.55 5h3.53l-3.43-5h-3.53l3.43 5Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconTrein = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-trein',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconTrein);
|
|
21
|
-
export { UtrechtIconTrein };
|
package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|