@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
|
@@ -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 UtrechtIconMeldingKlacht = class UtrechtIconMeldingKlacht {
|
|
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.21 14.37.12.03c.56.13 1.12.2 1.66.2 2.07 0 4.08-.86 5.53-2.36l1.6-1.58 1.37 1.36a7.68 7.68 0 0 0 3.07 2.09l.22.08-.07-.23C15.82 11.04 13.06 9 10.02 9s-5.97 2.16-6.77 5.25l-.03.11h-.01Zm-.18 2.07v.16c.31 3.6 3.38 6.41 6.98 6.41s6.76-2.89 6.98-6.58v-.1l-.65-.13a9.545 9.545 0 0 1-4.15-2.77l-.09-.1-.09.1c-1.79 2.06-4.36 3.24-7.03 3.24-.59 0-1.19-.07-1.8-.19l-.15-.03ZM36 2v10c0 1.1-.9 2-2 2h-5l-4.01 4v-4H24c-1.1 0-2-.9-2-2V2c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2Zm-6 8c0-.29-.09-.53-.28-.72-.19-.19-.43-.28-.72-.28s-.54.09-.72.28c-.19.19-.28.43-.28.72s.09.53.28.72c.19.19.43.28.72.28s.54-.09.72-.28c.19-.19.28-.43.28-.72Zm0-7h-2v5h2V3ZM15 25H5c-3 0-5 2-5 5v6h20v-6c0-3-2-5-5-5Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconMeldingKlacht = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-melding-klacht',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconMeldingKlacht);
|
|
21
|
-
export { UtrechtIconMeldingKlacht };
|
package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.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 UtrechtIconMenselijk = class UtrechtIconMenselijk {
|
|
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.08 7.27c-4.79 1.25-9.87 1.69-15.06 1.69-4.19 0-9.38-.19-15.11-1.69l-.92 3.58c3.41.9 7.33 1.49 11 1.79v23.35h4v-11h2v11h4V12.65c3.67-.3 7.59-.9 11-1.79l-.92-3.58ZM14.51 3.55c0-1.94 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconMenselijk = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-menselijk',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconMenselijk);
|
|
21
|
-
export { UtrechtIconMenselijk };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -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 UtrechtIconMilieuOntheffing = class UtrechtIconMilieuOntheffing {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M28.46 32a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 0 0 5Zm-21 0a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 0 0 5Z" }),
|
|
12
|
-
h("path", { d: "M33.99 14c-.67-1.33-1.33-2-2-2h-4l-.03-5.99H0v20.5c0 .83.67 1.5 1.5 1.5h1.74c.62-1.74 2.27-3 4.22-3s3.6 1.26 4.22 3h12.55c.62-1.74 2.27-3 4.22-3s3.6 1.26 4.22 3h1.28c1 0 2-1 2-2l.03-8.01-2-4Zm-21 7-5.65-5.65 1.39-1.37 4.24 4.23 7.1-7.1 1.41 1.41-8.49 8.49Zm14.96-3.01.04-4h3.79l2 4h-5.83Z" })));
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
UtrechtIconMilieuOntheffing = __decorate([
|
|
16
|
-
Component({
|
|
17
|
-
tag: 'utrecht-icon-milieu-ontheffing',
|
|
18
|
-
styleUrl: "../../../web-component/index.scss",
|
|
19
|
-
shadow: true,
|
|
20
|
-
})
|
|
21
|
-
], UtrechtIconMilieuOntheffing);
|
|
22
|
-
export { UtrechtIconMilieuOntheffing };
|
package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.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 UtrechtIconNatuur = class UtrechtIconNatuur {
|
|
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.5 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.66H24.3l3.48-5.66h-1.74L29.53.01l3.48 5.66h-1.74l3.48 5.66h-2.61l3.92 5.66h-5.02v3.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-.03C4.05 35.54 0 31.23 0 26.04c4.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
|
-
UtrechtIconNatuur = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-natuur',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconNatuur);
|
|
21
|
-
export { UtrechtIconNatuur };
|
|
@@ -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 UtrechtIconNieuwHuis = class UtrechtIconNieuwHuis {
|
|
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.99 9.35c.07-.43.12-.87.12-1.32A8.054 8.054 0 0 0 10.43.16C7.35.77 4.87 3.22 4.22 6.29c-.85 4.08 1.38 7.76 4.8 9.16V9.08a2.509 2.509 0 0 1-1.39-3.02c.23-.8.89-1.45 1.7-1.66 1.67-.45 3.18.8 3.18 2.4 0 1.02-.61 1.89-1.49 2.28l.03 10.77L3 27l1.34 1.59L5 28l.06 8h14l-.03-7.98.69.57 1.31-1.57-8-7.11v-3.9c1.31-.16 2.59-.66 3.62-1.38l2.54 1.57 1.61-.65 1.22.89v1.52l2.08 1.36 1.64-.65 1.22.89v1.53l2.21 1.36 3.79-1.62v-2.82L19.99 9.36ZM14.1 28.06l.02 2.94h-4v-2.94h3.98Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconNieuwHuis = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-nieuw-huis',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconNieuwHuis);
|
|
21
|
-
export { UtrechtIconNieuwHuis };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,23 +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 UtrechtIconNummerbord = class UtrechtIconNummerbord {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M14.92 26.91c0-.26-.08-.44-.24-.56-.12-.1-.3-.15-.53-.15h-1.13v1.5h1.09c.27 0 .47-.09.61-.24a.8.8 0 0 0 .2-.54Zm12.31-.17c0-.07-.03-.14-.06-.21a.523.523 0 0 0-.33-.29c-.08-.03-.19-.04-.32-.03-.14 0-.25.04-.34.1a.7.7 0 0 0-.21.21c-.05.08-.09.15-.11.22s-.03.12-.03.15c0 .09 0 .18.01.29 0 .11.04.21.08.3s.11.17.21.24c.09.07.23.1.4.11.09 0 .16 0 .23-.03s.13-.06.19-.1c.05-.04.1-.09.14-.15.04-.05.07-.11.1-.16s.04-.1.06-.15.02-.08.02-.11v-.19c0-.07 0-.14-.02-.21h-.02Z" }),
|
|
12
|
-
h("path", { d: "M35 23H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h34c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1ZM7.79 28.79c0 .52-.17.93-.49 1.23-.32.31-.72.47-1.21.48-.48 0-.88-.16-1.2-.48-.33-.3-.49-.71-.5-1.23v-3.25h.72v3.17c0 .34.1.59.28.77.18.18.41.28.69.28s.51-.09.7-.28c.18-.18.27-.43.27-.77v-3.17h.72v3.25h.02Zm3.89-2.59h-1.31v4.26h-.72V26.2H8.34v-.66h3.33v.66h.01Zm3.25 4.26-.99-2.1h-.92v2.1h-.72v-4.92h1.86c.4 0 .72.11.97.32.3.25.46.59.47 1.05 0 .67-.31 1.12-.92 1.36l1.1 2.18h-.85Zm3.44-1.55h-2.01v-.7h2.01v.7Zm2.92 1.19c-.27.27-.61.41-1.03.42-.32 0-.61-.11-.86-.32-.25-.22-.41-.53-.49-.94h.68c.06.16.15.3.26.4.11.11.26.16.45.16.2 0 .37-.07.51-.21.14-.13.21-.32.22-.57 0-.25-.08-.44-.22-.58a.733.733 0 0 0-.52-.2H20v-.62h.24c.23 0 .41-.07.54-.2.13-.13.19-.3.19-.5 0-.21-.07-.38-.2-.51a.67.67 0 0 0-.5-.2c-.15 0-.28.05-.4.15-.13.1-.21.25-.26.45h-.68c.03-.36.18-.67.43-.92s.54-.37.88-.38c.43 0 .78.15 1.03.43.24.27.37.6.37.97 0 .19-.03.37-.1.55-.08.18-.22.33-.42.47.21.13.36.3.45.49s.13.39.13.59c0 .46-.14.82-.41 1.09v-.02Zm3.21-1.19h-2.01v-.7h2.01v.7Zm3.42-1.65c-.02.09-.03.17-.06.25-.02.08-.05.16-.07.23-.03.08-.06.16-.09.25 0 .02-.03.08-.07.16-.04.08-.09.18-.15.31-.06.12-.12.25-.2.4-.07.15-.14.3-.22.44-.17.35-.37.74-.58 1.17h-.81l.06-.12c.04-.08.09-.19.16-.32s.14-.28.22-.44c.08-.16.16-.32.24-.47.08-.15.15-.3.22-.43s.12-.23.17-.31c-.07.04-.14.06-.22.07h-.29c-.15 0-.28-.03-.39-.08s-.21-.11-.29-.19c-.08-.08-.15-.16-.2-.25-.05-.09-.1-.18-.13-.27-.03-.09-.06-.17-.07-.24-.01-.08-.02-.13-.02-.18v-.43s0-.06.02-.12c.01-.06.04-.14.07-.23.03-.09.08-.19.14-.29a1.275 1.275 0 0 1 .6-.52c.14-.06.31-.11.51-.12.2-.02.39 0 .54.04.16.04.29.1.4.19.11.08.21.18.28.28.07.11.13.22.17.33s.07.22.08.32c.01.1.02.19 0 .27 0 .11-.03.21-.04.3h.02Zm3.68-1.04h-1.31v4.26h-.72v-4.26h-1.31v-.66h3.33v.66ZM17.21 6.91c0-.26-.08-.44-.24-.56-.12-.1-.3-.15-.53-.15h-1.13v1.5h1.09c.27 0 .47-.09.61-.24a.8.8 0 0 0 .2-.54Zm9.49-.17c0-.07-.03-.14-.06-.21a.523.523 0 0 0-.33-.29.793.793 0 0 0-.32-.03c-.14 0-.25.04-.34.1a.7.7 0 0 0-.21.21c-.05.08-.09.15-.11.22-.02.07-.03.12-.03.15v.29c0 .11.04.21.08.3s.11.17.21.24c.09.07.23.1.4.11.09 0 .16 0 .23-.03s.13-.06.19-.1c.05-.04.1-.09.14-.15.04-.05.07-.11.1-.16s.04-.1.06-.15c.01-.04.02-.08.02-.11v-.19c0-.07 0-.14-.02-.21h-.02Z" }),
|
|
13
|
-
h("path", { d: "M34.92 3h-34c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h34c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1ZM8.15 8.79c0 .52-.17.93-.49 1.23-.32.31-.72.47-1.21.48-.48 0-.88-.16-1.2-.48-.33-.3-.49-.71-.5-1.23V5.54h.72v3.17c0 .34.1.59.28.77.18.18.41.28.69.28s.51-.09.7-.28c.18-.18.27-.43.27-.77V5.54h.72v3.25h.02Zm2.58 1.67h-.72V6.2H8.7v-.66h3.33v.66h-1.31v4.26h.01Zm2.89-1.56h-2.01v-.7h2.01v.7Zm3.58 1.56-.99-2.1h-.92v2.1h-.72V5.54h1.86c.4 0 .72.11.97.32.3.25.46.59.47 1.05 0 .67-.31 1.12-.92 1.36l1.1 2.18h-.85Zm3.55-.36c-.27.27-.61.41-1.03.42-.32 0-.61-.11-.86-.32-.25-.22-.41-.53-.49-.94h.68c.06.16.15.3.26.4.11.11.26.16.45.16.2 0 .37-.07.51-.21.14-.13.21-.32.22-.57 0-.25-.08-.44-.22-.58a.733.733 0 0 0-.52-.2h-.29v-.62h.24c.23 0 .41-.07.54-.2.13-.13.19-.3.19-.5 0-.21-.07-.38-.2-.51a.67.67 0 0 0-.5-.2c-.15 0-.28.05-.4.15-.13.1-.21.25-.26.45h-.68c.03-.36.18-.67.43-.92s.54-.37.88-.38c.43 0 .78.15 1.03.43.24.27.37.6.37.97 0 .19-.03.37-.1.55-.08.18-.22.33-.42.47.21.13.36.3.45.49.09.19.13.39.13.59 0 .46-.14.82-.41 1.09v-.02Zm3.21-1.19h-2.01v-.7h2.01v.7Zm3.42-1.65c-.02.09-.03.17-.06.25-.02.08-.05.16-.07.23-.03.08-.06.16-.09.25 0 .02-.03.08-.07.16s-.09.18-.15.31c-.06.12-.12.25-.2.4-.07.15-.14.3-.22.44-.17.35-.37.74-.58 1.17h-.81l.06-.12c.04-.08.09-.19.16-.32s.14-.28.22-.44l.24-.47c.08-.16.15-.3.22-.43s.12-.23.17-.31c-.07.04-.14.06-.22.07h-.29c-.15 0-.28-.03-.39-.08a.972.972 0 0 1-.29-.19.958.958 0 0 1-.2-.25c-.05-.09-.1-.18-.13-.27-.03-.09-.06-.17-.07-.24-.01-.08-.02-.13-.02-.18v-.43s0-.06.02-.12c.01-.06.04-.14.07-.23.03-.09.08-.19.14-.29a1.275 1.275 0 0 1 .6-.52c.14-.06.31-.11.51-.12.2-.02.39 0 .54.04.15.04.29.1.4.19.11.08.21.18.28.28.07.11.13.22.17.33.04.11.07.22.08.32.01.1.02.19 0 .27 0 .11-.03.21-.04.3h.02Zm3.68-1.04h-1.31v4.26h-.72V6.21h-1.31v-.66h3.33v.66ZM13.89 21l-1.45-3L11 15h5.77l-1.44 3-1.44 3Zm7.77-6 1.44 3 1.45 3h-5.78l1.45-3 1.44-3Z" })));
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
UtrechtIconNummerbord = __decorate([
|
|
17
|
-
Component({
|
|
18
|
-
tag: 'utrecht-icon-nummerbord',
|
|
19
|
-
styleUrl: "../../../web-component/index.scss",
|
|
20
|
-
shadow: true,
|
|
21
|
-
})
|
|
22
|
-
], UtrechtIconNummerbord);
|
|
23
|
-
export { UtrechtIconNummerbord };
|
package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.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 UtrechtIconOmgeving = class UtrechtIconOmgeving {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M14 24.05h-2v-9.19c0-1.55 1.31-2.81 2.98-2.81h6.04c1.56 0 2.83 1.11 2.99 2.53v9.47h-2V28a55.312 55.312 0 0 1-8 .01v-3.95ZM26.01 21v3c4.86.82 6.67 2.07 6.67 3.2 0 1.47-4.85 3.85-14.68 3.85S3.19 28.78 3.19 27.18c0-1.17 2.13-2.33 6.76-3.13v-2.99C3.8 22.15 0 24.38 0 27.19c0 4.48 9.1 6.82 18 6.82s17.98-2.34 17.98-6.82c0-2.87-3.6-5.13-9.97-6.2ZM18 10c1.93 0 3.5-1.57 3.5-3.5S19.93 3 18 3s-3.5 1.57-3.5 3.5S16.07 10 18 10Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconOmgeving = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-omgeving',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconOmgeving);
|
|
21
|
-
export { UtrechtIconOmgeving };
|
|
@@ -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 UtrechtIconOmgevingsvisie = class UtrechtIconOmgevingsvisie {
|
|
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.04 11.6c.98-1.84.96-3.95-.1-5.48-.85-1.24-2.25-1.95-3.84-1.95-.4 0-.8.04-1.2.13-1.2-1.38-2.83-2.18-4.46-2.18-1.04 0-2.02.33-2.82.96a4.85 4.85 0 0 0-1.47 2.01c-2.92.3-5.16 2.85-5.16 5.99 0 1.76.74 3.42 1.99 4.56a4.97 4.97 0 0 0-.26 1.57c0 2.68 2.08 4.85 4.64 4.85.51 0 1.27-.02 1.69-.06l-.02 2.96-2.06-.92-.94 2.44 3.02 1.38-.06 8.12 3.98.02V21.84c.53.1.97.21 1.92.21 3.47 0 6.3-2.97 6.3-6.62 0-1.69-.58-2.98-1.17-3.84h.02Zm2.68-2.15.28.37 1.04-.94v4.06c5.92 0 9.97 1.37 9.97 1.37V8.95l1.03.9 1.82-2.38-2.85-2.44V.96h-2.99v1.68L27.93.81l-6.59 5.62c.35.95.47 1.97.38 3.01ZM26 6.99h4v3h-4v-3Zm10 11.44c-6.49-3.46-11.92-3.56-13.82-3.46 0 .19.03.37.03.56 0 .6-.05 1.18-.14 1.75 1.5-.09 7.24-.12 13.93 3.71v-2.56Zm-2.13 17.56h2.1C32.68 25.1 24.73 21.54 20.68 20.43a8.59 8.59 0 0 1-1.5 1.68c2.99.62 11.23 3.29 14.69 13.88Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconOmgevingsvisie = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-omgevingsvisie',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconOmgevingsvisie);
|
|
21
|
-
export { UtrechtIconOmgevingsvisie };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,23 +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 UtrechtIconOmgevingswet = class UtrechtIconOmgevingswet {
|
|
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: "M.15 27.03 9.09 36h.06v-9h-9v.03Zm14-13.03c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3Z" }),
|
|
12
|
-
h("path", { d: "m16.55 29.79-1.19-1.62 1.62-1.19 9-6.59 1.17-.86 1 .73V1.97C28.15.88 27.27 0 26.18 0H2.12C1.03 0 .15.88.15 1.97V25h9.08c1.06 0 1.92.86 1.92 1.92V36h8v-2.68l-.82-1.12-1.78-2.41ZM8.32 12.41l-.09-.42c0-.05-.02-.1-.02-.16a5.69 5.69 0 0 1-.06-.83c0-3.31 2.69-6 6-6s6 2.69 6 6c0 .28-.03.56-.06.83 0 .05-.02.1-.02.16-.02.14-.05.28-.09.42C19.03 16.97 14.15 23 14.15 23s-4.87-6.03-5.83-10.59Z" }),
|
|
13
|
-
h("path", { d: "M33.15 26.45V23h-3v1.29l-2.98-2.16-9.01 6.59 1.78 2.41 1.21-.89V36h12v-5.82l1.21.89 1.81-2.44-3.02-2.16v-.02Zm-4 5.55h-4v-3h4v3Z" })));
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
UtrechtIconOmgevingswet = __decorate([
|
|
17
|
-
Component({
|
|
18
|
-
tag: 'utrecht-icon-omgevingswet',
|
|
19
|
-
styleUrl: "../../../web-component/index.scss",
|
|
20
|
-
shadow: true,
|
|
21
|
-
})
|
|
22
|
-
], UtrechtIconOmgevingswet);
|
|
23
|
-
export { UtrechtIconOmgevingswet };
|
package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.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 UtrechtIconOnderhoud = class UtrechtIconOnderhoud {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M14 7c0-3.86-3.13-7-7-7S0 3.14 0 7s3.13 7 7 7 7-3.13 7-7Zm-6.28 3.72c-.19.19-.43.28-.72.28s-.54-.09-.72-.28C6.09 10.53 6 10.29 6 10s.09-.53.28-.72C6.47 9.09 6.71 9 7 9s.54.09.72.28c.19.19.28.43.28.72s-.09.53-.28.72ZM7.93 8h-2V3h2v5Zm24.21 22.07L25.6 5.01h-6.35l-6.54 25.07a4.487 4.487 0 0 0-3.75 4.43V36h26.97v-1.51c0-2.24-1.65-4.08-3.8-4.42ZM21.56 8.01h1.72l2.09 8.01h-5.9l2.09-8.01ZM16.61 27l1.37-5.27h8.87L28.22 27H16.6Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconOnderhoud = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-onderhoud',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconOnderhoud);
|
|
21
|
-
export { UtrechtIconOnderhoud };
|
|
@@ -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 UtrechtIconOpeningstijden = class UtrechtIconOpeningstijden {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { "fill-rule": "evenodd", d: "M30.29 31.71 27 28.42V23h2v4.59l2.71 2.71-1.41 1.41ZM28 20c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8ZM9.95 15.48c-.83 0-1.5-.67-1.5-1.5 0-.44.19-.84.5-1.11l.03-5.95c0-2.21 1.51-4.06 3.58-4.68-.97 1.04-1.57 2.35-1.57 3.78v.95h2v-.95c0-1.58 1.21-3.01 2.95-3.66 1.8.72 3.05 2.47 3.05 4.56l-.02 2.06h-8l-.02 3.89c.3.27.5.67.5 1.11 0 .83-.67 1.5-1.5 1.5ZM18 28c0-5.52 4.48-10 10-10 .93 0 1.83.14 2.68.37L30 8.99h-6.99l-.02 3.87c.3.27.5.67.5 1.11 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.44.19-.84.5-1.11V6.93c-.01-1.89-.77-3.6-2-4.85 2.25.37 3.99 2 3.99 3.94v.95h2v-.95C24.98 2.7 21.83 0 18.01 0c-.7 0-1.39.09-2.04.27V.25s-.04.01-.05.02C15.32.1 14.7.01 14.05.01c-3.9 0-7.08 3.11-7.08 6.93l-.02 2.07-4.97-.02L-.04 36h22.06C19.59 34.18 18 31.28 18 28Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconOpeningstijden = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-openingstijden',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconOpeningstijden);
|
|
21
|
-
export { UtrechtIconOpeningstijden };
|
package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.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 UtrechtIconPanden = class UtrechtIconPanden {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "m35.91 9-7.4-3L21 9V0H6v18H0v18h36V9h-.09ZM6 33H3v-6h3v6Zm0-9H3v-3h3v3Zm6 9H9v-6h3v6Zm0-9H9v-3h3v3Zm0-6H9v-3h3v3Zm0-6H9V9h3v3Zm0-6H9V3h3v3Zm6 27h-3v-6h3v6Zm0-9h-3v-3h3v3Zm0-6h-3v-3h3v3Zm0-6h-3V9h3v3Zm0-6h-3V3h3v3Zm15 27H23v-3h10v3Zm0-6H23v-3h10v3Zm0-6H23v-3h10v3Zm0-6H23v-3h10v3Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconPanden = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-panden',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconPanden);
|
|
21
|
-
export { UtrechtIconPanden };
|
|
@@ -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 UtrechtIconPark = class UtrechtIconPark {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "M21.96 10.49c1.33-1.96 1.49-4.38.22-6.13-.92-1.26-2.4-1.9-4-1.9-.63 0-1.29.1-1.93.3C14.85.98 12.86 0 10.98 0 9.94 0 8.93.3 8.07.93c-.87.65-1.45 1.56-1.76 2.59h-.05C2.8 3.52 0 6.34 0 9.81c0 2.16 1.08 4.06 2.72 5.19-.32.65-.51 1.38-.51 2.15 0 2.7 2.18 4.89 4.86 4.89h.22c.89 0 2.17 0 2.93-.08l-.11 2.92-2.75-1.59-1 1.73 3.66 2.11-.34 8.9h3.96l-.59-14.09c.96.08 2.56.09 3.63.09 3.85 0 6.96-3.14 6.96-7.01 0-1.74-.63-3.32-1.67-4.54ZM19.3 36.04h2.13l1.45-4h8.24l1.45 4h2.13l-1.45-4H36v-2h-3.48l-1.09-3H34v-2H20v2h2.57l-1.09 3H18v2h2.75l-1.45 4Zm5.4-9h4.6l1.09 3h-6.78l1.09-3Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconPark = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-park',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconPark);
|
|
21
|
-
export { UtrechtIconPark };
|
|
@@ -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 UtrechtIconParkeerkaart = class UtrechtIconParkeerkaart {
|
|
9
|
-
render() {
|
|
10
|
-
return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" },
|
|
11
|
-
h("path", { d: "m36.14 18-6 15H0l6.02-15h5.77c2.06 3.74 4.58 6.88 4.74 7.08L18.09 27l1.56-1.92c.16-.2 2.68-3.33 4.74-7.08h11.75Zm-16.79-5.99c.95 0 1.72-.9 1.72-2s-.77-2-1.73-2h-2.27v4h2.28Zm-8.15-1.09c-.04-.32-.08-.64-.08-.96 0-3.83 3.13-6.95 6.98-6.95s6.98 3.12 6.98 6.95c0 .33-.03.65-.07.96 0 .06-.02.12-.03.18-.03.17-.06.33-.1.49-1.11 5.28-6.77 12.27-6.77 12.27s-5.67-6.98-6.77-12.27c-.04-.16-.07-.32-.1-.49 0-.06-.02-.12-.03-.18h-.01Zm3.88 5.09h2v-2h2.25c2.04 0 3.7-1.79 3.7-4s-1.66-4-3.7-4h-4.25v10Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParkeerkaart = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-parkeerkaart',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParkeerkaart);
|
|
21
|
-
export { UtrechtIconParkeerkaart };
|
|
@@ -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 UtrechtIconParkeervergunning = class UtrechtIconParkeervergunning {
|
|
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 18.99V15h2.28c.95 0 1.72.9 1.72 2s-.77 2-1.72 2H9Zm-2 5.99h2v-4h2.3c2.04 0 3.7-1.79 3.7-4s-1.66-4-3.7-4H7v12ZM36 9.97V26c0 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-8 13h-7v2h7v-2Zm2-5h-9v2h9v-2Zm0-5h-9v2h9v-2Z" })));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
UtrechtIconParkeervergunning = __decorate([
|
|
15
|
-
Component({
|
|
16
|
-
tag: 'utrecht-icon-parkeervergunning',
|
|
17
|
-
styleUrl: "../../../web-component/index.scss",
|
|
18
|
-
shadow: true,
|
|
19
|
-
})
|
|
20
|
-
], UtrechtIconParkeervergunning);
|
|
21
|
-
export { UtrechtIconParkeervergunning };
|
package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|