diff --git a/src/demos/browse-solutions.html b/src/demos/browse-solutions.html index 120e03013..6ed25ae48 100644 --- a/src/demos/browse-solutions.html +++ b/src/demos/browse-solutions.html @@ -24,8 +24,8 @@ - - + + - - -
diff --git a/src/demos/info-card.html b/src/demos/info-card.html index 9c1a6ca69..ff5bfc322 100644 --- a/src/demos/info-card.html +++ b/src/demos/info-card.html @@ -38,8 +38,8 @@ - - + + - - + + - - diff --git a/src/demos/json-editor.html b/src/demos/json-editor.html index d46e12b5f..a514778ef 100644 --- a/src/demos/json-editor.html +++ b/src/demos/json-editor.html @@ -26,15 +26,13 @@ - - + + - - diff --git a/src/demos/layer-list.html b/src/demos/layer-list.html index c108fdb19..110ab5e03 100644 --- a/src/demos/layer-list.html +++ b/src/demos/layer-list.html @@ -56,8 +56,8 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - diff --git a/src/demos/solution-group-details.html b/src/demos/solution-group-details.html index 866c6d615..4ba9810d7 100644 --- a/src/demos/solution-group-details.html +++ b/src/demos/solution-group-details.html @@ -26,8 +26,8 @@ - - + + - - - diff --git a/src/demos/solution-item-accordion.html b/src/demos/solution-item-accordion.html index 8de82d87f..83e088c87 100644 --- a/src/demos/solution-item-accordion.html +++ b/src/demos/solution-item-accordion.html @@ -36,8 +36,8 @@ - - + + - - + + - - - diff --git a/src/demos/solution-item-icon.html b/src/demos/solution-item-icon.html index 6cbf2bac0..c91195945 100644 --- a/src/demos/solution-item-icon.html +++ b/src/demos/solution-item-icon.html @@ -26,8 +26,8 @@ - - + + - - diff --git a/src/demos/solution-item-sharing.html b/src/demos/solution-item-sharing.html index 9be1dbf69..d950d1f15 100644 --- a/src/demos/solution-item-sharing.html +++ b/src/demos/solution-item-sharing.html @@ -31,8 +31,8 @@ - - + + diff --git a/src/demos/solution-item.html b/src/demos/solution-item.html index 5d237c563..d8cfb45cc 100644 --- a/src/demos/solution-item.html +++ b/src/demos/solution-item.html @@ -26,8 +26,8 @@ - - + + - - - diff --git a/src/demos/solution-organization-variables.html b/src/demos/solution-organization-variables.html index 74a7f64e7..d7ef137e3 100644 --- a/src/demos/solution-organization-variables.html +++ b/src/demos/solution-organization-variables.html @@ -26,8 +26,8 @@ - - + + - - - diff --git a/src/demos/solution-resource-item.html b/src/demos/solution-resource-item.html index 4a82071ec..4431ac806 100644 --- a/src/demos/solution-resource-item.html +++ b/src/demos/solution-resource-item.html @@ -26,16 +26,14 @@ - - + + - - diff --git a/src/demos/solution-spatial-ref.html b/src/demos/solution-spatial-ref.html index 03174a5c1..c6d5756b5 100644 --- a/src/demos/solution-spatial-ref.html +++ b/src/demos/solution-spatial-ref.html @@ -26,8 +26,8 @@ - - + + - - - diff --git a/src/demos/solution-template-data.html b/src/demos/solution-template-data.html index 1899aecd2..c715b099e 100644 --- a/src/demos/solution-template-data.html +++ b/src/demos/solution-template-data.html @@ -26,8 +26,8 @@ - - + + - - - - - diff --git a/stencil.config.ts b/stencil.config.ts index 49496666c..05847611b 100644 --- a/stencil.config.ts +++ b/stencil.config.ts @@ -8,11 +8,6 @@ import { generatePreactTypes } from './support/preact'; import resolvePkg from 'resolve-pkg'; import { makeArcgisExternal, makeCalciteExternal } from './src/utils/makeExternal'; -const t9nAssetsObj = { - src: './assets/t9n', - dest: '../assets/t9n', -}; - export const config: Config = { namespace: 'solutions-components', globalStyle: 'src/assets/styles/styles.scss', @@ -24,9 +19,13 @@ export const config: Config = { type: 'dist', copy: [ { src: 'assets', dest: 'assets' }, + { src: 'demos', dest: 'demos' }, { src: 'utils', dest: 'utils' }, - t9nAssetsObj - ] + { + src: resolvePkg('@esri/calcite-components/dist/calcite') ?? '', + dest: 'vendor/calcite-components', + }, + ], }, { type: 'docs-readme' @@ -40,20 +39,6 @@ export const config: Config = { type: 'dist-custom-elements', customElementsExportBehavior: 'auto-define-custom-elements' }, - { - type: 'www', - copy: [ - { src: '**/*.html' }, - { ...t9nAssetsObj, dest: 'assets/t9n' }, - { src: 'assets', dest: 'build/assets' }, - { - src: resolvePkg('@esri/calcite-components/dist/calcite') ?? '', - dest: 'vendor/calcite-components', - }, - { src: 'demos', dest: 'demos' }, - ], - serviceWorker: null, // disable service workers - }, ], testing: { browserHeadless: 'new',