@utrecht/web-component-library-stencil 1.0.0-alpha.319 → 1.0.0-alpha.321
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/utrecht-html-content.cjs.entry.js +1 -1
- package/dist/cjs/utrecht.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +0 -1
- package/dist/collection/heading-group/css/story-template.js +32 -0
- package/dist/collection/html-content/web-component/index.css +21 -0
- package/dist/collection/icon/src/build.js +1 -1
- package/dist/collection/node_modules/@babel/core/lib/config/cache-contexts.js +1 -0
- package/dist/collection/node_modules/@babel/core/lib/config/caching.js +326 -0
- package/dist/collection/node_modules/@babel/core/lib/config/config-chain.js +566 -0
- package/dist/collection/node_modules/@babel/core/lib/config/config-descriptors.js +246 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/configuration.js +360 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +43 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/index-browser.js +69 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/index.js +87 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/module-types.js +121 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/package.js +77 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/plugins.js +275 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/types.js +1 -0
- package/dist/collection/node_modules/@babel/core/lib/config/files/utils.js +46 -0
- package/dist/collection/node_modules/@babel/core/lib/config/full.js +380 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/config-api.js +109 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/deep-array.js +26 -0
- package/dist/collection/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/dist/collection/node_modules/@babel/core/lib/config/index.js +83 -0
- package/dist/collection/node_modules/@babel/core/lib/config/item.js +77 -0
- package/dist/collection/node_modules/@babel/core/lib/config/partial.js +198 -0
- package/dist/collection/node_modules/@babel/core/lib/config/pattern-to-regex.js +46 -0
- package/dist/collection/node_modules/@babel/core/lib/config/plugin.js +35 -0
- package/dist/collection/node_modules/@babel/core/lib/config/printer.js +140 -0
- package/dist/collection/node_modules/@babel/core/lib/config/resolve-targets-browser.js +47 -0
- package/dist/collection/node_modules/@babel/core/lib/config/resolve-targets.js +73 -0
- package/dist/collection/node_modules/@babel/core/lib/config/util.js +33 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/option-assertions.js +354 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/options.js +213 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/plugins.js +73 -0
- package/dist/collection/node_modules/@babel/core/lib/config/validation/removed.js +67 -0
- package/dist/collection/node_modules/@babel/core/lib/gensync-utils/async.js +114 -0
- package/dist/collection/node_modules/@babel/core/lib/gensync-utils/fs.js +41 -0
- package/dist/collection/node_modules/@babel/core/lib/index.js +268 -0
- package/dist/collection/node_modules/@babel/core/lib/parse.js +54 -0
- package/dist/collection/node_modules/@babel/core/lib/parser/index.js +97 -0
- package/dist/collection/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +325 -0
- package/dist/collection/node_modules/@babel/core/lib/tools/build-external-helpers.js +166 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-ast.js +55 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-file-browser.js +28 -0
- package/dist/collection/node_modules/@babel/core/lib/transform-file.js +42 -0
- package/dist/collection/node_modules/@babel/core/lib/transform.js +54 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +95 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/file.js +255 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/generate.js +96 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/file/merge-map.js +45 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/index.js +129 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/normalize-file.js +169 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/normalize-opts.js +64 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/plugin-pass.js +55 -0
- package/dist/collection/node_modules/@babel/core/lib/transformation/util/clone-deep.js +41 -0
- package/dist/collection/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +3557 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1296 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.development.js +1314 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
- package/dist/collection/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
- package/dist/collection/node_modules/react/cjs/react.development.js +2739 -0
- package/dist/collection/node_modules/react/cjs/react.production.min.js +26 -0
- package/dist/collection/node_modules/react/cjs/react.shared-subset.development.js +20 -0
- package/dist/collection/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
- package/dist/collection/node_modules/react/index.js +7 -0
- package/dist/collection/node_modules/react/jsx-dev-runtime.js +7 -0
- package/dist/collection/node_modules/react/jsx-runtime.js +7 -0
- package/dist/collection/node_modules/react/react.shared-subset.js +7 -0
- package/dist/collection/node_modules/react/umd/react.development.js +3342 -0
- package/dist/collection/node_modules/react/umd/react.production.min.js +31 -0
- package/dist/collection/node_modules/react/umd/react.profiling.min.js +31 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7018 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7078 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7003 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.node.development.js +7059 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1741 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
- package/dist/collection/node_modules/react-dom/cjs/react-dom.profiling.min.js +367 -0
- package/dist/collection/node_modules/react-dom/client.js +25 -0
- package/dist/collection/node_modules/react-dom/index.js +38 -0
- package/dist/collection/node_modules/react-dom/profiling.js +38 -0
- package/dist/collection/node_modules/react-dom/server.browser.js +17 -0
- package/dist/collection/node_modules/react-dom/server.js +3 -0
- package/dist/collection/node_modules/react-dom/server.node.js +17 -0
- package/dist/collection/node_modules/react-dom/test-utils.js +7 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7015 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server.browser.development.js +7000 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-test-utils.development.js +1737 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.development.js +29869 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
- package/dist/collection/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler.development.js +634 -0
- package/dist/collection/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
- package/dist/collection/node_modules/scheduler/index.js +7 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.development.js +152 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
- package/dist/collection/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
- package/dist/collection/node_modules/scheduler/unstable_mock.js +7 -0
- package/dist/collection/node_modules/scheduler/unstable_post_task.js +7 -0
- package/dist/collection/node_modules/semver/bin/semver.js +174 -0
- package/dist/collection/node_modules/semver/semver.js +1596 -0
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +0 -1
- package/dist/components/utrecht-html-content.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/utrecht-html-content.entry.js +1 -1
- package/dist/esm/utrecht.js +1 -1
- package/dist/packages/web-component-library-stencil/sequential-output-targets.js +9 -9
- package/dist/packages/web-component-library-stencil/stencil.config.js +65 -65
- package/dist/types/components.d.ts +0 -13
- package/dist/utrecht/p-8d5a8cf5.entry.js +1 -0
- package/dist/utrecht/utrecht.esm.js +1 -1
- package/package.json +4 -4
- package/dist/cjs/utrecht-page-header.cjs.entry.js +0 -19
- package/dist/collection/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.js +0 -6
- package/dist/collection/page-header/web-component/index.css +0 -35
- package/dist/collection/page-header/web-component/stencil.js +0 -20
- package/dist/components/article/web-component/index.stencil.d.ts +0 -8
- package/dist/components/article/web-component/index.stencil.js +0 -26
- package/dist/components/backdrop/web-component/index.stencil.d.ts +0 -9
- package/dist/components/backdrop/web-component/index.stencil.js +0 -31
- package/dist/components/badge-counter/web-component/index.stencil.d.ts +0 -11
- package/dist/components/badge-counter/web-component/index.stencil.js +0 -38
- package/dist/components/badge-data/web-component/index.stencil.d.ts +0 -8
- package/dist/components/badge-data/web-component/index.stencil.js +0 -26
- package/dist/components/badge-status/web-component/index.stencil.d.ts +0 -9
- package/dist/components/badge-status/web-component/index.stencil.js +0 -29
- package/dist/components/breadcrumb/web-component/index.stencil.d.ts +0 -5
- package/dist/components/breadcrumb/web-component/index.stencil.js +0 -38
- package/dist/components/button/web-component/index.stencil.d.ts +0 -11
- package/dist/components/button/web-component/index.stencil.js +0 -65
- package/dist/components/checkbox/web-component/index.stencil.d.ts +0 -16
- package/dist/components/checkbox/web-component/index.stencil.js +0 -59
- package/dist/components/custom-checkbox/web-component/index.stencil.d.ts +0 -17
- package/dist/components/custom-checkbox/web-component/index.stencil.js +0 -85
- package/dist/components/digid-button/web-component/index.stencil.d.ts +0 -9
- package/dist/components/digid-button/web-component/index.stencil.js +0 -30
- package/dist/components/digid-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/digid-logo/web-component/index.stencil.js +0 -29
- package/dist/components/document/web-component/index.stencil.d.ts +0 -3
- package/dist/components/document/web-component/index.stencil.js +0 -21
- package/dist/components/eherkenning-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/eherkenning-logo/web-component/index.stencil.js +0 -32
- package/dist/components/eidas-logo/web-component/index.stencil.d.ts +0 -8
- package/dist/components/eidas-logo/web-component/index.stencil.js +0 -34
- package/dist/components/form-field-checkbox/web-component/index.stencil.d.ts +0 -18
- package/dist/components/form-field-checkbox/web-component/index.stencil.js +0 -70
- package/dist/components/form-field-description/web-component/index.stencil.d.ts +0 -8
- package/dist/components/form-field-description/web-component/index.stencil.js +0 -33
- package/dist/components/form-field-textarea/web-component/index.stencil.d.ts +0 -18
- package/dist/components/form-field-textarea/web-component/index.stencil.js +0 -70
- package/dist/components/form-field-textbox/web-component/index.stencil.d.ts +0 -23
- package/dist/components/form-field-textbox/web-component/index.stencil.js +0 -90
- package/dist/components/form-toggle/web-component/index.stencil.d.ts +0 -14
- package/dist/components/form-toggle/web-component/index.stencil.js +0 -73
- package/dist/components/heading/web-component/index.stencil.d.ts +0 -7
- package/dist/components/heading/web-component/index.stencil.js +0 -50
- package/dist/components/heading-1/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-1/web-component/index.stencil.js +0 -21
- package/dist/components/heading-2/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-2/web-component/index.stencil.js +0 -21
- package/dist/components/heading-3/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-3/web-component/index.stencil.js +0 -21
- package/dist/components/heading-4/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-4/web-component/index.stencil.js +0 -21
- package/dist/components/heading-5/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-5/web-component/index.stencil.js +0 -21
- package/dist/components/heading-6/web-component/index.stencil.d.ts +0 -3
- package/dist/components/heading-6/web-component/index.stencil.js +0 -21
- package/dist/components/html-content/web-component/index.stencil.d.ts +0 -3
- package/dist/components/html-content/web-component/index.stencil.js +0 -25
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afspraak-maken/utrecht-icon-afspraak-maken.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval/utrecht-icon-afval.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-container/utrecht-icon-afval-container.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-containerpas/utrecht-icon-afval-containerpas.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-kalender/utrecht-icon-afval-kalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afval-scheiden/utrecht-icon-afval-scheiden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-afvalkalender/utrecht-icon-afvalkalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-alleen/utrecht-icon-alleen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-arrow/utrecht-icon-arrow.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bestemmingsplan/utrecht-icon-bestemmingsplan.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-betaaldatum/utrecht-icon-betaaldatum.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bewijsstukken/utrecht-icon-bewijsstukken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bijstand/utrecht-icon-bijstand.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-blad/utrecht-icon-blad.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-bouwproject/utrecht-icon-bouwproject.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-brandgevaar/utrecht-icon-brandgevaar.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-checkmark/utrecht-icon-checkmark.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-college-b-w/utrecht-icon-college-b-w.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-container-bio/utrecht-icon-container-bio.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-cross/utrecht-icon-cross.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-dakloos/utrecht-icon-dakloos.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-dementie/utrecht-icon-dementie.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-duurzaam/utrecht-icon-duurzaam.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-eenzaamheid/utrecht-icon-eenzaamheid.stencil.js +0 -25
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-eikenprocessie/utrecht-icon-eikenprocessie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-energie-vergoeding/utrecht-icon-energie-vergoeding.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-energietransitie/utrecht-icon-energietransitie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-error/utrecht-icon-error.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-evenementen/utrecht-icon-evenementen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-facebook/utrecht-icon-facebook.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-fiets/utrecht-icon-fiets.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-filter/utrecht-icon-filter.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gebruiker-centraal/utrecht-icon-gebruiker-centraal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gegevenswoordenboek/utrecht-icon-gegevenswoordenboek.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-gemeenteraad/utrecht-icon-gemeenteraad.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-grofvuil/utrecht-icon-grofvuil.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-horeca/utrecht-icon-horeca.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-huishoudelijk-geweld/utrecht-icon-huishoudelijk-geweld.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-huishouden/utrecht-icon-hulp-huishouden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-vervoer/utrecht-icon-hulp-vervoer.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulp-zorg/utrecht-icon-hulp-zorg.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-hulpverlening/utrecht-icon-hulpverlening.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-information/utrecht-icon-information.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-innovatie/utrecht-icon-innovatie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-instagram/utrecht-icon-instagram.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kalender/utrecht-icon-kalender.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kerstbomen/utrecht-icon-kerstbomen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-klachten/utrecht-icon-klachten.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-kroon/utrecht-icon-kroon.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-laadpaal/utrecht-icon-laadpaal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-lantaarnpaal/utrecht-icon-lantaarnpaal.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-leren/utrecht-icon-leren.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-let-op/utrecht-icon-let-op.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-linkedin/utrecht-icon-linkedin.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-list/utrecht-icon-list.stencil.js +0 -26
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-loupe/utrecht-icon-loupe.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-markt/utrecht-icon-markt.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-melding/utrecht-icon-melding.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-melding-klacht/utrecht-icon-melding-klacht.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-menselijk/utrecht-icon-menselijk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-milieu-ontheffing/utrecht-icon-milieu-ontheffing.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-natuur/utrecht-icon-natuur.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-nieuw-huis/utrecht-icon-nieuw-huis.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-nummerbord/utrecht-icon-nummerbord.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgeving/utrecht-icon-omgeving.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingsvisie/utrecht-icon-omgevingsvisie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-omgevingswet/utrecht-icon-omgevingswet.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-onderhoud/utrecht-icon-onderhoud.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-openingstijden/utrecht-icon-openingstijden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-panden/utrecht-icon-panden.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-park/utrecht-icon-park.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeerkaart/utrecht-icon-parkeerkaart.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeervergunning/utrecht-icon-parkeervergunning.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parken/utrecht-icon-parken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-bedrijven/utrecht-icon-parkeren-bedrijven.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-parkeren-betalen/utrecht-icon-parkeren-betalen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-participatie-campagne/utrecht-icon-participatie-campagne.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-paspoort/utrecht-icon-paspoort.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-rijbewijs/utrecht-icon-rijbewijs.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-rolstoel/utrecht-icon-rolstoel.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-shoppen/utrecht-icon-shoppen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-sinterklaas/utrecht-icon-sinterklaas.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-sport/utrecht-icon-sport.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-stookverbod/utrecht-icon-stookverbod.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-strooien/utrecht-icon-strooien.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-subsidie-gezin/utrecht-icon-subsidie-gezin.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-toeslag/utrecht-icon-toeslag.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-trein/utrecht-icon-trein.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-trouwen/utrecht-icon-trouwen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-twitter/utrecht-icon-twitter.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vaccinatie/utrecht-icon-vaccinatie.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-veilige-wijk/utrecht-icon-veilige-wijk.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vergoeding/utrecht-icon-vergoeding.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verhuizen/utrecht-icon-verhuizen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verkiezingen/utrecht-icon-verkiezingen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-verslaving/utrecht-icon-verslaving.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vervoersvoorziening/utrecht-icon-vervoersvoorziening.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-virus/utrecht-icon-virus.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vluchtelingen/utrecht-icon-vluchtelingen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-voorzieningen-vervoer/utrecht-icon-voorzieningen-vervoer.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vrijwilligerswerk/utrecht-icon-vrijwilligerswerk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-vuurwerk/utrecht-icon-vuurwerk.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-wandelstok/utrecht-icon-wandelstok.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-warm/utrecht-icon-warm.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-warning/utrecht-icon-warning.stencil.js +0 -23
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-werken/utrecht-icon-werken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-werkzaamheden/utrecht-icon-werkzaamheden.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-whatsapp/utrecht-icon-whatsapp.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-wonen-kosten/utrecht-icon-wonen-kosten.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-woning-zoeken/utrecht-icon-woning-zoeken.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-youtube/utrecht-icon-youtube.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zelfstandig-wonen/utrecht-icon-zelfstandig-wonen.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zoomin/utrecht-icon-zoomin.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zoomout/utrecht-icon-zoomout.stencil.js +0 -21
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zorg-huis/utrecht-icon-zorg-huis.stencil.js +0 -22
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.spec.d.ts +0 -1
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.spec.js +0 -6
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.stencil.d.ts +0 -3
- package/dist/components/icon/tmp/components/utrecht-icon-zwemmen/utrecht-icon-zwemmen.stencil.js +0 -21
- package/dist/components/icon/web-component/index.stencil.d.ts +0 -3
- package/dist/components/icon/web-component/index.stencil.js +0 -20
- package/dist/components/logo/web-component/index.stencil.d.ts +0 -7
- package/dist/components/logo/web-component/index.stencil.js +0 -32
- package/dist/components/logo-button/web-component/index.stencil.d.ts +0 -9
- package/dist/components/logo-button/web-component/index.stencil.js +0 -31
- package/dist/components/navigatie sidenav/web-component/index.stencil.d.ts +0 -9
- package/dist/components/navigatie sidenav/web-component/index.stencil.js +0 -40
- package/dist/components/page/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page/web-component/index.stencil.js +0 -26
- package/dist/components/page-content/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page-content/web-component/index.stencil.js +0 -26
- package/dist/components/page-footer/web-component/index.stencil.d.ts +0 -7
- package/dist/components/page-footer/web-component/index.stencil.js +0 -25
- package/dist/components/page-header/web-component/stencil.d.ts +0 -7
- package/dist/components/page-header/web-component/stencil.js +0 -26
- package/dist/components/pagination/web-component/index.stencil.d.ts +0 -11
- package/dist/components/pagination/web-component/index.stencil.js +0 -58
- package/dist/components/paragraph/web-component/index.stencil.d.ts +0 -7
- package/dist/components/paragraph/web-component/index.stencil.js +0 -25
- package/dist/components/separator/web-component/index.stencil.d.ts +0 -3
- package/dist/components/separator/web-component/index.stencil.js +0 -20
- package/dist/components/table/web-component/table-body.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-body.stencil.js +0 -21
- package/dist/components/table/web-component/table-caption.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-caption.stencil.js +0 -21
- package/dist/components/table/web-component/table-cell.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-cell.stencil.js +0 -21
- package/dist/components/table/web-component/table-footer.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-footer.stencil.js +0 -21
- package/dist/components/table/web-component/table-header-cell.stencil.d.ts +0 -4
- package/dist/components/table/web-component/table-header-cell.stencil.js +0 -24
- package/dist/components/table/web-component/table-header.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-header.stencil.js +0 -21
- package/dist/components/table/web-component/table-row.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table-row.stencil.js +0 -21
- package/dist/components/table/web-component/table.stencil.d.ts +0 -3
- package/dist/components/table/web-component/table.stencil.js +0 -21
- package/dist/components/templates/contact-card-template/web-component/index.stencil.d.ts +0 -3
- package/dist/components/templates/contact-card-template/web-component/index.stencil.js +0 -31
- package/dist/components/textbox/web-component/index.stencil.d.ts +0 -23
- package/dist/components/textbox/web-component/index.stencil.js +0 -87
- package/dist/components/utrecht-page-header.d.ts +0 -11
- package/dist/components/utrecht-page-header.js +0 -33
- package/dist/esm/utrecht-page-header.entry.js +0 -15
- package/dist/packages/web-component-library-stencil/sequential-output-targets.d.ts +0 -7
- package/dist/packages/web-component-library-stencil/stencil.config.d.ts +0 -2
- package/dist/types/icon/tmp/components/utrecht-icon-container/utrecht-icon-container.space.d.ts +0 -1
- package/dist/types/page-header/web-component/stencil.d.ts +0 -7
- package/dist/utrecht/p-06d7a75d.entry.js +0 -1
- package/dist/utrecht/p-b135eec3.entry.js +0 -1
|
@@ -0,0 +1,699 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* scheduler-unstable_mock.development.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
(function (global, factory) {
|
|
11
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
12
|
+
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
13
|
+
(global = global || self, factory(global.SchedulerMock = {}));
|
|
14
|
+
}(this, (function (exports) { 'use strict';
|
|
15
|
+
|
|
16
|
+
var enableSchedulerDebugging = false;
|
|
17
|
+
var enableProfiling = false;
|
|
18
|
+
|
|
19
|
+
function push(heap, node) {
|
|
20
|
+
var index = heap.length;
|
|
21
|
+
heap.push(node);
|
|
22
|
+
siftUp(heap, node, index);
|
|
23
|
+
}
|
|
24
|
+
function peek(heap) {
|
|
25
|
+
return heap.length === 0 ? null : heap[0];
|
|
26
|
+
}
|
|
27
|
+
function pop(heap) {
|
|
28
|
+
if (heap.length === 0) {
|
|
29
|
+
return null;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var first = heap[0];
|
|
33
|
+
var last = heap.pop();
|
|
34
|
+
|
|
35
|
+
if (last !== first) {
|
|
36
|
+
heap[0] = last;
|
|
37
|
+
siftDown(heap, last, 0);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return first;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function siftUp(heap, node, i) {
|
|
44
|
+
var index = i;
|
|
45
|
+
|
|
46
|
+
while (index > 0) {
|
|
47
|
+
var parentIndex = index - 1 >>> 1;
|
|
48
|
+
var parent = heap[parentIndex];
|
|
49
|
+
|
|
50
|
+
if (compare(parent, node) > 0) {
|
|
51
|
+
// The parent is larger. Swap positions.
|
|
52
|
+
heap[parentIndex] = node;
|
|
53
|
+
heap[index] = parent;
|
|
54
|
+
index = parentIndex;
|
|
55
|
+
} else {
|
|
56
|
+
// The parent is smaller. Exit.
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function siftDown(heap, node, i) {
|
|
63
|
+
var index = i;
|
|
64
|
+
var length = heap.length;
|
|
65
|
+
var halfLength = length >>> 1;
|
|
66
|
+
|
|
67
|
+
while (index < halfLength) {
|
|
68
|
+
var leftIndex = (index + 1) * 2 - 1;
|
|
69
|
+
var left = heap[leftIndex];
|
|
70
|
+
var rightIndex = leftIndex + 1;
|
|
71
|
+
var right = heap[rightIndex]; // If the left or right node is smaller, swap with the smaller of those.
|
|
72
|
+
|
|
73
|
+
if (compare(left, node) < 0) {
|
|
74
|
+
if (rightIndex < length && compare(right, left) < 0) {
|
|
75
|
+
heap[index] = right;
|
|
76
|
+
heap[rightIndex] = node;
|
|
77
|
+
index = rightIndex;
|
|
78
|
+
} else {
|
|
79
|
+
heap[index] = left;
|
|
80
|
+
heap[leftIndex] = node;
|
|
81
|
+
index = leftIndex;
|
|
82
|
+
}
|
|
83
|
+
} else if (rightIndex < length && compare(right, node) < 0) {
|
|
84
|
+
heap[index] = right;
|
|
85
|
+
heap[rightIndex] = node;
|
|
86
|
+
index = rightIndex;
|
|
87
|
+
} else {
|
|
88
|
+
// Neither child is smaller. Exit.
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function compare(a, b) {
|
|
95
|
+
// Compare sort index first, then task id.
|
|
96
|
+
var diff = a.sortIndex - b.sortIndex;
|
|
97
|
+
return diff !== 0 ? diff : a.id - b.id;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// TODO: Use symbols?
|
|
101
|
+
var ImmediatePriority = 1;
|
|
102
|
+
var UserBlockingPriority = 2;
|
|
103
|
+
var NormalPriority = 3;
|
|
104
|
+
var LowPriority = 4;
|
|
105
|
+
var IdlePriority = 5;
|
|
106
|
+
|
|
107
|
+
function markTaskErrored(task, ms) {
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* eslint-disable no-var */
|
|
111
|
+
// Math.pow(2, 30) - 1
|
|
112
|
+
// 0b111111111111111111111111111111
|
|
113
|
+
|
|
114
|
+
var maxSigned31BitInt = 1073741823; // Times out immediately
|
|
115
|
+
|
|
116
|
+
var IMMEDIATE_PRIORITY_TIMEOUT = -1; // Eventually times out
|
|
117
|
+
|
|
118
|
+
var USER_BLOCKING_PRIORITY_TIMEOUT = 250;
|
|
119
|
+
var NORMAL_PRIORITY_TIMEOUT = 5000;
|
|
120
|
+
var LOW_PRIORITY_TIMEOUT = 10000; // Never times out
|
|
121
|
+
|
|
122
|
+
var IDLE_PRIORITY_TIMEOUT = maxSigned31BitInt; // Tasks are stored on a min heap
|
|
123
|
+
|
|
124
|
+
var taskQueue = [];
|
|
125
|
+
var timerQueue = []; // Incrementing id counter. Used to maintain insertion order.
|
|
126
|
+
|
|
127
|
+
var taskIdCounter = 1; // Pausing the scheduler is useful for debugging.
|
|
128
|
+
var currentTask = null;
|
|
129
|
+
var currentPriorityLevel = NormalPriority; // This is set while performing work, to prevent re-entrance.
|
|
130
|
+
|
|
131
|
+
var isPerformingWork = false;
|
|
132
|
+
var isHostCallbackScheduled = false;
|
|
133
|
+
var isHostTimeoutScheduled = false;
|
|
134
|
+
var currentMockTime = 0;
|
|
135
|
+
var scheduledCallback = null;
|
|
136
|
+
var scheduledTimeout = null;
|
|
137
|
+
var timeoutTime = -1;
|
|
138
|
+
var yieldedValues = null;
|
|
139
|
+
var expectedNumberOfYields = -1;
|
|
140
|
+
var didStop = false;
|
|
141
|
+
var isFlushing = false;
|
|
142
|
+
var needsPaint = false;
|
|
143
|
+
var shouldYieldForPaint = false;
|
|
144
|
+
var disableYieldValue = false;
|
|
145
|
+
|
|
146
|
+
function setDisableYieldValue(newValue) {
|
|
147
|
+
disableYieldValue = newValue;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function advanceTimers(currentTime) {
|
|
151
|
+
// Check for tasks that are no longer delayed and add them to the queue.
|
|
152
|
+
var timer = peek(timerQueue);
|
|
153
|
+
|
|
154
|
+
while (timer !== null) {
|
|
155
|
+
if (timer.callback === null) {
|
|
156
|
+
// Timer was cancelled.
|
|
157
|
+
pop(timerQueue);
|
|
158
|
+
} else if (timer.startTime <= currentTime) {
|
|
159
|
+
// Timer fired. Transfer to the task queue.
|
|
160
|
+
pop(timerQueue);
|
|
161
|
+
timer.sortIndex = timer.expirationTime;
|
|
162
|
+
push(taskQueue, timer);
|
|
163
|
+
} else {
|
|
164
|
+
// Remaining timers are pending.
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
timer = peek(timerQueue);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
function handleTimeout(currentTime) {
|
|
173
|
+
isHostTimeoutScheduled = false;
|
|
174
|
+
advanceTimers(currentTime);
|
|
175
|
+
|
|
176
|
+
if (!isHostCallbackScheduled) {
|
|
177
|
+
if (peek(taskQueue) !== null) {
|
|
178
|
+
isHostCallbackScheduled = true;
|
|
179
|
+
requestHostCallback(flushWork);
|
|
180
|
+
} else {
|
|
181
|
+
var firstTimer = peek(timerQueue);
|
|
182
|
+
|
|
183
|
+
if (firstTimer !== null) {
|
|
184
|
+
requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
function flushWork(hasTimeRemaining, initialTime) {
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
isHostCallbackScheduled = false;
|
|
194
|
+
|
|
195
|
+
if (isHostTimeoutScheduled) {
|
|
196
|
+
// We scheduled a timeout but it's no longer needed. Cancel it.
|
|
197
|
+
isHostTimeoutScheduled = false;
|
|
198
|
+
cancelHostTimeout();
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
isPerformingWork = true;
|
|
202
|
+
var previousPriorityLevel = currentPriorityLevel;
|
|
203
|
+
|
|
204
|
+
try {
|
|
205
|
+
if (enableProfiling) {
|
|
206
|
+
try {
|
|
207
|
+
return workLoop(hasTimeRemaining, initialTime);
|
|
208
|
+
} catch (error) {
|
|
209
|
+
if (currentTask !== null) {
|
|
210
|
+
var currentTime = getCurrentTime();
|
|
211
|
+
markTaskErrored(currentTask, currentTime);
|
|
212
|
+
currentTask.isQueued = false;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
throw error;
|
|
216
|
+
}
|
|
217
|
+
} else {
|
|
218
|
+
// No catch in prod code path.
|
|
219
|
+
return workLoop(hasTimeRemaining, initialTime);
|
|
220
|
+
}
|
|
221
|
+
} finally {
|
|
222
|
+
currentTask = null;
|
|
223
|
+
currentPriorityLevel = previousPriorityLevel;
|
|
224
|
+
isPerformingWork = false;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
function workLoop(hasTimeRemaining, initialTime) {
|
|
229
|
+
var currentTime = initialTime;
|
|
230
|
+
advanceTimers(currentTime);
|
|
231
|
+
currentTask = peek(taskQueue);
|
|
232
|
+
|
|
233
|
+
while (currentTask !== null && !(enableSchedulerDebugging )) {
|
|
234
|
+
if (currentTask.expirationTime > currentTime && (!hasTimeRemaining || shouldYieldToHost())) {
|
|
235
|
+
// This currentTask hasn't expired, and we've reached the deadline.
|
|
236
|
+
break;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
var callback = currentTask.callback;
|
|
240
|
+
|
|
241
|
+
if (typeof callback === 'function') {
|
|
242
|
+
currentTask.callback = null;
|
|
243
|
+
currentPriorityLevel = currentTask.priorityLevel;
|
|
244
|
+
var didUserCallbackTimeout = currentTask.expirationTime <= currentTime;
|
|
245
|
+
|
|
246
|
+
var continuationCallback = callback(didUserCallbackTimeout);
|
|
247
|
+
currentTime = getCurrentTime();
|
|
248
|
+
|
|
249
|
+
if (typeof continuationCallback === 'function') {
|
|
250
|
+
currentTask.callback = continuationCallback;
|
|
251
|
+
} else {
|
|
252
|
+
|
|
253
|
+
if (currentTask === peek(taskQueue)) {
|
|
254
|
+
pop(taskQueue);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
advanceTimers(currentTime);
|
|
259
|
+
} else {
|
|
260
|
+
pop(taskQueue);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
currentTask = peek(taskQueue);
|
|
264
|
+
} // Return whether there's additional work
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
if (currentTask !== null) {
|
|
268
|
+
return true;
|
|
269
|
+
} else {
|
|
270
|
+
var firstTimer = peek(timerQueue);
|
|
271
|
+
|
|
272
|
+
if (firstTimer !== null) {
|
|
273
|
+
requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
return false;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
function unstable_runWithPriority(priorityLevel, eventHandler) {
|
|
281
|
+
switch (priorityLevel) {
|
|
282
|
+
case ImmediatePriority:
|
|
283
|
+
case UserBlockingPriority:
|
|
284
|
+
case NormalPriority:
|
|
285
|
+
case LowPriority:
|
|
286
|
+
case IdlePriority:
|
|
287
|
+
break;
|
|
288
|
+
|
|
289
|
+
default:
|
|
290
|
+
priorityLevel = NormalPriority;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
var previousPriorityLevel = currentPriorityLevel;
|
|
294
|
+
currentPriorityLevel = priorityLevel;
|
|
295
|
+
|
|
296
|
+
try {
|
|
297
|
+
return eventHandler();
|
|
298
|
+
} finally {
|
|
299
|
+
currentPriorityLevel = previousPriorityLevel;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
function unstable_next(eventHandler) {
|
|
304
|
+
var priorityLevel;
|
|
305
|
+
|
|
306
|
+
switch (currentPriorityLevel) {
|
|
307
|
+
case ImmediatePriority:
|
|
308
|
+
case UserBlockingPriority:
|
|
309
|
+
case NormalPriority:
|
|
310
|
+
// Shift down to normal priority
|
|
311
|
+
priorityLevel = NormalPriority;
|
|
312
|
+
break;
|
|
313
|
+
|
|
314
|
+
default:
|
|
315
|
+
// Anything lower than normal priority should remain at the current level.
|
|
316
|
+
priorityLevel = currentPriorityLevel;
|
|
317
|
+
break;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
var previousPriorityLevel = currentPriorityLevel;
|
|
321
|
+
currentPriorityLevel = priorityLevel;
|
|
322
|
+
|
|
323
|
+
try {
|
|
324
|
+
return eventHandler();
|
|
325
|
+
} finally {
|
|
326
|
+
currentPriorityLevel = previousPriorityLevel;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
function unstable_wrapCallback(callback) {
|
|
331
|
+
var parentPriorityLevel = currentPriorityLevel;
|
|
332
|
+
return function () {
|
|
333
|
+
// This is a fork of runWithPriority, inlined for performance.
|
|
334
|
+
var previousPriorityLevel = currentPriorityLevel;
|
|
335
|
+
currentPriorityLevel = parentPriorityLevel;
|
|
336
|
+
|
|
337
|
+
try {
|
|
338
|
+
return callback.apply(this, arguments);
|
|
339
|
+
} finally {
|
|
340
|
+
currentPriorityLevel = previousPriorityLevel;
|
|
341
|
+
}
|
|
342
|
+
};
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
function unstable_scheduleCallback(priorityLevel, callback, options) {
|
|
346
|
+
var currentTime = getCurrentTime();
|
|
347
|
+
var startTime;
|
|
348
|
+
|
|
349
|
+
if (typeof options === 'object' && options !== null) {
|
|
350
|
+
var delay = options.delay;
|
|
351
|
+
|
|
352
|
+
if (typeof delay === 'number' && delay > 0) {
|
|
353
|
+
startTime = currentTime + delay;
|
|
354
|
+
} else {
|
|
355
|
+
startTime = currentTime;
|
|
356
|
+
}
|
|
357
|
+
} else {
|
|
358
|
+
startTime = currentTime;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
var timeout;
|
|
362
|
+
|
|
363
|
+
switch (priorityLevel) {
|
|
364
|
+
case ImmediatePriority:
|
|
365
|
+
timeout = IMMEDIATE_PRIORITY_TIMEOUT;
|
|
366
|
+
break;
|
|
367
|
+
|
|
368
|
+
case UserBlockingPriority:
|
|
369
|
+
timeout = USER_BLOCKING_PRIORITY_TIMEOUT;
|
|
370
|
+
break;
|
|
371
|
+
|
|
372
|
+
case IdlePriority:
|
|
373
|
+
timeout = IDLE_PRIORITY_TIMEOUT;
|
|
374
|
+
break;
|
|
375
|
+
|
|
376
|
+
case LowPriority:
|
|
377
|
+
timeout = LOW_PRIORITY_TIMEOUT;
|
|
378
|
+
break;
|
|
379
|
+
|
|
380
|
+
case NormalPriority:
|
|
381
|
+
default:
|
|
382
|
+
timeout = NORMAL_PRIORITY_TIMEOUT;
|
|
383
|
+
break;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
var expirationTime = startTime + timeout;
|
|
387
|
+
var newTask = {
|
|
388
|
+
id: taskIdCounter++,
|
|
389
|
+
callback: callback,
|
|
390
|
+
priorityLevel: priorityLevel,
|
|
391
|
+
startTime: startTime,
|
|
392
|
+
expirationTime: expirationTime,
|
|
393
|
+
sortIndex: -1
|
|
394
|
+
};
|
|
395
|
+
|
|
396
|
+
if (startTime > currentTime) {
|
|
397
|
+
// This is a delayed task.
|
|
398
|
+
newTask.sortIndex = startTime;
|
|
399
|
+
push(timerQueue, newTask);
|
|
400
|
+
|
|
401
|
+
if (peek(taskQueue) === null && newTask === peek(timerQueue)) {
|
|
402
|
+
// All tasks are delayed, and this is the task with the earliest delay.
|
|
403
|
+
if (isHostTimeoutScheduled) {
|
|
404
|
+
// Cancel an existing timeout.
|
|
405
|
+
cancelHostTimeout();
|
|
406
|
+
} else {
|
|
407
|
+
isHostTimeoutScheduled = true;
|
|
408
|
+
} // Schedule a timeout.
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
requestHostTimeout(handleTimeout, startTime - currentTime);
|
|
412
|
+
}
|
|
413
|
+
} else {
|
|
414
|
+
newTask.sortIndex = expirationTime;
|
|
415
|
+
push(taskQueue, newTask);
|
|
416
|
+
// wait until the next time we yield.
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
if (!isHostCallbackScheduled && !isPerformingWork) {
|
|
420
|
+
isHostCallbackScheduled = true;
|
|
421
|
+
requestHostCallback(flushWork);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
return newTask;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
function unstable_pauseExecution() {
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
function unstable_continueExecution() {
|
|
432
|
+
|
|
433
|
+
if (!isHostCallbackScheduled && !isPerformingWork) {
|
|
434
|
+
isHostCallbackScheduled = true;
|
|
435
|
+
requestHostCallback(flushWork);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
function unstable_getFirstCallbackNode() {
|
|
440
|
+
return peek(taskQueue);
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
function unstable_cancelCallback(task) {
|
|
444
|
+
// remove from the queue because you can't remove arbitrary nodes from an
|
|
445
|
+
// array based heap, only the first one.)
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
task.callback = null;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
function unstable_getCurrentPriorityLevel() {
|
|
452
|
+
return currentPriorityLevel;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
function requestHostCallback(callback) {
|
|
456
|
+
scheduledCallback = callback;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
function requestHostTimeout(callback, ms) {
|
|
460
|
+
scheduledTimeout = callback;
|
|
461
|
+
timeoutTime = currentMockTime + ms;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
function cancelHostTimeout() {
|
|
465
|
+
scheduledTimeout = null;
|
|
466
|
+
timeoutTime = -1;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
function shouldYieldToHost() {
|
|
470
|
+
if (expectedNumberOfYields === 0 && yieldedValues === null || expectedNumberOfYields !== -1 && yieldedValues !== null && yieldedValues.length >= expectedNumberOfYields || shouldYieldForPaint && needsPaint) {
|
|
471
|
+
// We yielded at least as many values as expected. Stop flushing.
|
|
472
|
+
didStop = true;
|
|
473
|
+
return true;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
return false;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
function getCurrentTime() {
|
|
480
|
+
return currentMockTime;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
function forceFrameRate() {// No-op
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
function reset() {
|
|
487
|
+
if (isFlushing) {
|
|
488
|
+
throw new Error('Cannot reset while already flushing work.');
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
currentMockTime = 0;
|
|
492
|
+
scheduledCallback = null;
|
|
493
|
+
scheduledTimeout = null;
|
|
494
|
+
timeoutTime = -1;
|
|
495
|
+
yieldedValues = null;
|
|
496
|
+
expectedNumberOfYields = -1;
|
|
497
|
+
didStop = false;
|
|
498
|
+
isFlushing = false;
|
|
499
|
+
needsPaint = false;
|
|
500
|
+
} // Should only be used via an assertion helper that inspects the yielded values.
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
function unstable_flushNumberOfYields(count) {
|
|
504
|
+
if (isFlushing) {
|
|
505
|
+
throw new Error('Already flushing work.');
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
if (scheduledCallback !== null) {
|
|
509
|
+
var cb = scheduledCallback;
|
|
510
|
+
expectedNumberOfYields = count;
|
|
511
|
+
isFlushing = true;
|
|
512
|
+
|
|
513
|
+
try {
|
|
514
|
+
var hasMoreWork = true;
|
|
515
|
+
|
|
516
|
+
do {
|
|
517
|
+
hasMoreWork = cb(true, currentMockTime);
|
|
518
|
+
} while (hasMoreWork && !didStop);
|
|
519
|
+
|
|
520
|
+
if (!hasMoreWork) {
|
|
521
|
+
scheduledCallback = null;
|
|
522
|
+
}
|
|
523
|
+
} finally {
|
|
524
|
+
expectedNumberOfYields = -1;
|
|
525
|
+
didStop = false;
|
|
526
|
+
isFlushing = false;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
function unstable_flushUntilNextPaint() {
|
|
532
|
+
if (isFlushing) {
|
|
533
|
+
throw new Error('Already flushing work.');
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
if (scheduledCallback !== null) {
|
|
537
|
+
var cb = scheduledCallback;
|
|
538
|
+
shouldYieldForPaint = true;
|
|
539
|
+
needsPaint = false;
|
|
540
|
+
isFlushing = true;
|
|
541
|
+
|
|
542
|
+
try {
|
|
543
|
+
var hasMoreWork = true;
|
|
544
|
+
|
|
545
|
+
do {
|
|
546
|
+
hasMoreWork = cb(true, currentMockTime);
|
|
547
|
+
} while (hasMoreWork && !didStop);
|
|
548
|
+
|
|
549
|
+
if (!hasMoreWork) {
|
|
550
|
+
scheduledCallback = null;
|
|
551
|
+
}
|
|
552
|
+
} finally {
|
|
553
|
+
shouldYieldForPaint = false;
|
|
554
|
+
didStop = false;
|
|
555
|
+
isFlushing = false;
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
function unstable_flushExpired() {
|
|
561
|
+
if (isFlushing) {
|
|
562
|
+
throw new Error('Already flushing work.');
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
if (scheduledCallback !== null) {
|
|
566
|
+
isFlushing = true;
|
|
567
|
+
|
|
568
|
+
try {
|
|
569
|
+
var hasMoreWork = scheduledCallback(false, currentMockTime);
|
|
570
|
+
|
|
571
|
+
if (!hasMoreWork) {
|
|
572
|
+
scheduledCallback = null;
|
|
573
|
+
}
|
|
574
|
+
} finally {
|
|
575
|
+
isFlushing = false;
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function unstable_flushAllWithoutAsserting() {
|
|
581
|
+
// Returns false if no work was flushed.
|
|
582
|
+
if (isFlushing) {
|
|
583
|
+
throw new Error('Already flushing work.');
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
if (scheduledCallback !== null) {
|
|
587
|
+
var cb = scheduledCallback;
|
|
588
|
+
isFlushing = true;
|
|
589
|
+
|
|
590
|
+
try {
|
|
591
|
+
var hasMoreWork = true;
|
|
592
|
+
|
|
593
|
+
do {
|
|
594
|
+
hasMoreWork = cb(true, currentMockTime);
|
|
595
|
+
} while (hasMoreWork);
|
|
596
|
+
|
|
597
|
+
if (!hasMoreWork) {
|
|
598
|
+
scheduledCallback = null;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
return true;
|
|
602
|
+
} finally {
|
|
603
|
+
isFlushing = false;
|
|
604
|
+
}
|
|
605
|
+
} else {
|
|
606
|
+
return false;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
function unstable_clearYields() {
|
|
611
|
+
if (yieldedValues === null) {
|
|
612
|
+
return [];
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
var values = yieldedValues;
|
|
616
|
+
yieldedValues = null;
|
|
617
|
+
return values;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
function unstable_flushAll() {
|
|
621
|
+
if (yieldedValues !== null) {
|
|
622
|
+
throw new Error('Log is not empty. Assert on the log of yielded values before ' + 'flushing additional work.');
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
unstable_flushAllWithoutAsserting();
|
|
626
|
+
|
|
627
|
+
if (yieldedValues !== null) {
|
|
628
|
+
throw new Error('While flushing work, something yielded a value. Use an ' + 'assertion helper to assert on the log of yielded values, e.g. ' + 'expect(Scheduler).toFlushAndYield([...])');
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
function unstable_yieldValue(value) {
|
|
633
|
+
// eslint-disable-next-line react-internal/no-production-logging
|
|
634
|
+
if (console.log.name === 'disabledLog' || disableYieldValue) {
|
|
635
|
+
// If console.log has been patched, we assume we're in render
|
|
636
|
+
// replaying and we ignore any values yielding in the second pass.
|
|
637
|
+
return;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
if (yieldedValues === null) {
|
|
641
|
+
yieldedValues = [value];
|
|
642
|
+
} else {
|
|
643
|
+
yieldedValues.push(value);
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
function unstable_advanceTime(ms) {
|
|
648
|
+
// eslint-disable-next-line react-internal/no-production-logging
|
|
649
|
+
if (console.log.name === 'disabledLog' || disableYieldValue) {
|
|
650
|
+
// If console.log has been patched, we assume we're in render
|
|
651
|
+
// replaying and we ignore any time advancing in the second pass.
|
|
652
|
+
return;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
currentMockTime += ms;
|
|
656
|
+
|
|
657
|
+
if (scheduledTimeout !== null && timeoutTime <= currentMockTime) {
|
|
658
|
+
scheduledTimeout(currentMockTime);
|
|
659
|
+
timeoutTime = -1;
|
|
660
|
+
scheduledTimeout = null;
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
function requestPaint() {
|
|
665
|
+
needsPaint = true;
|
|
666
|
+
}
|
|
667
|
+
var unstable_Profiling = null;
|
|
668
|
+
|
|
669
|
+
exports.reset = reset;
|
|
670
|
+
exports.unstable_IdlePriority = IdlePriority;
|
|
671
|
+
exports.unstable_ImmediatePriority = ImmediatePriority;
|
|
672
|
+
exports.unstable_LowPriority = LowPriority;
|
|
673
|
+
exports.unstable_NormalPriority = NormalPriority;
|
|
674
|
+
exports.unstable_Profiling = unstable_Profiling;
|
|
675
|
+
exports.unstable_UserBlockingPriority = UserBlockingPriority;
|
|
676
|
+
exports.unstable_advanceTime = unstable_advanceTime;
|
|
677
|
+
exports.unstable_cancelCallback = unstable_cancelCallback;
|
|
678
|
+
exports.unstable_clearYields = unstable_clearYields;
|
|
679
|
+
exports.unstable_continueExecution = unstable_continueExecution;
|
|
680
|
+
exports.unstable_flushAll = unstable_flushAll;
|
|
681
|
+
exports.unstable_flushAllWithoutAsserting = unstable_flushAllWithoutAsserting;
|
|
682
|
+
exports.unstable_flushExpired = unstable_flushExpired;
|
|
683
|
+
exports.unstable_flushNumberOfYields = unstable_flushNumberOfYields;
|
|
684
|
+
exports.unstable_flushUntilNextPaint = unstable_flushUntilNextPaint;
|
|
685
|
+
exports.unstable_forceFrameRate = forceFrameRate;
|
|
686
|
+
exports.unstable_getCurrentPriorityLevel = unstable_getCurrentPriorityLevel;
|
|
687
|
+
exports.unstable_getFirstCallbackNode = unstable_getFirstCallbackNode;
|
|
688
|
+
exports.unstable_next = unstable_next;
|
|
689
|
+
exports.unstable_now = getCurrentTime;
|
|
690
|
+
exports.unstable_pauseExecution = unstable_pauseExecution;
|
|
691
|
+
exports.unstable_requestPaint = requestPaint;
|
|
692
|
+
exports.unstable_runWithPriority = unstable_runWithPriority;
|
|
693
|
+
exports.unstable_scheduleCallback = unstable_scheduleCallback;
|
|
694
|
+
exports.unstable_setDisableYieldValue = setDisableYieldValue;
|
|
695
|
+
exports.unstable_shouldYield = shouldYieldToHost;
|
|
696
|
+
exports.unstable_wrapCallback = unstable_wrapCallback;
|
|
697
|
+
exports.unstable_yieldValue = unstable_yieldValue;
|
|
698
|
+
|
|
699
|
+
})));
|