diff --git a/examples/site-rebrand-tutorial/CompanyPage/img/left-arrow.svg b/examples/site-rebrand-tutorial/CompanyPage/img/left-arrow.svg index 51a2504335c..eeac0ce59ac 100644 --- a/examples/site-rebrand-tutorial/CompanyPage/img/left-arrow.svg +++ b/examples/site-rebrand-tutorial/CompanyPage/img/left-arrow.svg @@ -1,6 +1,6 @@ - diff --git a/examples/site-rebrand-tutorial/CompanyPage/img/right-arrow.svg b/examples/site-rebrand-tutorial/CompanyPage/img/right-arrow.svg index 6dcc5d23c91..c91f9005d57 100644 --- a/examples/site-rebrand-tutorial/CompanyPage/img/right-arrow.svg +++ b/examples/site-rebrand-tutorial/CompanyPage/img/right-arrow.svg @@ -1,6 +1,6 @@ - diff --git a/examples/site-rebrand-tutorial/FastPage/img/left-arrow.svg b/examples/site-rebrand-tutorial/FastPage/img/left-arrow.svg index 51a2504335c..eeac0ce59ac 100644 --- a/examples/site-rebrand-tutorial/FastPage/img/left-arrow.svg +++ b/examples/site-rebrand-tutorial/FastPage/img/left-arrow.svg @@ -1,6 +1,6 @@ - diff --git a/examples/site-rebrand-tutorial/FastPage/img/right-arrow.svg b/examples/site-rebrand-tutorial/FastPage/img/right-arrow.svg index 6dcc5d23c91..c91f9005d57 100644 --- a/examples/site-rebrand-tutorial/FastPage/img/right-arrow.svg +++ b/examples/site-rebrand-tutorial/FastPage/img/right-arrow.svg @@ -1,6 +1,6 @@ - diff --git a/packages/tooling/fast-figma-plugin-msft/src/core/ui/components/drawer/index.ts b/packages/tooling/fast-figma-plugin-msft/src/core/ui/components/drawer/index.ts index 05ab593d702..3626245bfa6 100644 --- a/packages/tooling/fast-figma-plugin-msft/src/core/ui/components/drawer/index.ts +++ b/packages/tooling/fast-figma-plugin-msft/src/core/ui/components/drawer/index.ts @@ -18,7 +18,7 @@ const template = html` width="9" height="9" viewBox="0 0 9 9" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" aria-hidden="true" > { width="12" height="12" viewBox="0 0 15 15" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > {this.renderTitle()} @@ -25,7 +25,7 @@ export default class Badge extends React.Component { width="12" height="12" viewBox="0 0 15 15" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > {this.renderTitle()} @@ -38,7 +38,7 @@ export default class Badge extends React.Component { width="12" height="12" viewBox="0 0 12 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > {this.renderTitle()} diff --git a/packages/tooling/fast-tooling-react/src/form/templates/const-value.tsx b/packages/tooling/fast-tooling-react/src/form/templates/const-value.tsx index 5804d2bf712..138643f89e7 100644 --- a/packages/tooling/fast-tooling-react/src/form/templates/const-value.tsx +++ b/packages/tooling/fast-tooling-react/src/form/templates/const-value.tsx @@ -14,7 +14,7 @@ class ConstValue extends React.Component { height={"13"} viewBox={"0 0 13 13"} fill={"none"} - xmlns={"http://www.w3.org/2000/svg"} + xmlns={"https://www.w3.org/2000/svg"} > Set the value diff --git a/packages/tooling/fast-tooling-react/src/form/templates/default-value.tsx b/packages/tooling/fast-tooling-react/src/form/templates/default-value.tsx index 502b47f14b3..849f8272b37 100644 --- a/packages/tooling/fast-tooling-react/src/form/templates/default-value.tsx +++ b/packages/tooling/fast-tooling-react/src/form/templates/default-value.tsx @@ -14,7 +14,7 @@ class DefaultValue extends React.Component { height={"14"} width={"14"} fill={"none"} - xmlns={"http://www.w3.org/2000/svg"} + xmlns={"https://www.w3.org/2000/svg"} > This is the default value, click to set it as the value { width={"12"} height={"14"} viewBox={"0 0 10 16"} - xmlns={"http://www.w3.org/2000/svg"} + xmlns={"https://www.w3.org/2000/svg"} > { mapperPlugins: [], }); expect(dataDictionary[0][""].data).toEqual( - document.createElementNS("http://www.w3.org/2000/svg", "svg") + document.createElementNS("https://www.w3.org/2000/svg", "svg") ); }); test("should map an svg element with an attribute specifying a URI to data", () => { @@ -1027,7 +1027,7 @@ describe("htmlMapper", () => { name: "foo", description: "URI override", type: DataType.string, - default: "http://www.w3.org/2000/svg", + default: "https://www.w3.org/2000/svg", required: true, }, ], @@ -1051,7 +1051,7 @@ describe("htmlMapper", () => { mapperPlugins: [], }); expect(dataDictionary[0][""].data).toEqual( - document.createElementNS("http://www.w3.org/2000/svg", "svg") + document.createElementNS("https://www.w3.org/2000/svg", "svg") ); }); }); @@ -1095,7 +1095,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, @@ -1143,7 +1143,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, @@ -1186,7 +1186,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, @@ -1229,7 +1229,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, @@ -1284,7 +1284,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, @@ -1341,7 +1341,7 @@ describe("mapWebComponentDefinitionToJSONSchema", () => { }) ).toEqual([ { - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: name, id: name, title: `<${name}>`, diff --git a/packages/tooling/fast-tooling/src/data-utilities/mapping.ts b/packages/tooling/fast-tooling/src/data-utilities/mapping.ts index e2dbc714085..57c81216f91 100644 --- a/packages/tooling/fast-tooling/src/data-utilities/mapping.ts +++ b/packages/tooling/fast-tooling/src/data-utilities/mapping.ts @@ -180,7 +180,7 @@ export interface ResolverConfig { } const nameSpacedURIs = { - svg: "http://www.w3.org/2000/svg", + svg: "https://www.w3.org/2000/svg", }; const nameSpacedTags = { animate: nameSpacedURIs.svg, @@ -473,7 +473,7 @@ export function mapWebComponentDefinitionToJSONSchema( i++ ) { schemas.push({ - $schema: "http://json-schema.org/schema#", + $schema: "https://json-schema.org/schema#", $id: webComponentDefinition.tags[i].name, id: webComponentDefinition.tags[i].name, title: `<${webComponentDefinition.tags[i].name}>`, diff --git a/packages/utilities/fast-animation/client/examples/app/assets/images/do-check.svg b/packages/utilities/fast-animation/client/examples/app/assets/images/do-check.svg index b7367279a4e..b664fbf54be 100644 --- a/packages/utilities/fast-animation/client/examples/app/assets/images/do-check.svg +++ b/packages/utilities/fast-animation/client/examples/app/assets/images/do-check.svg @@ -1 +1 @@ -Untitled-1 \ No newline at end of file +Untitled-1 \ No newline at end of file diff --git a/packages/utilities/fast-animation/client/examples/app/assets/images/easing-curve.svg b/packages/utilities/fast-animation/client/examples/app/assets/images/easing-curve.svg index 7a031d33d43..43d3dcccd59 100644 --- a/packages/utilities/fast-animation/client/examples/app/assets/images/easing-curve.svg +++ b/packages/utilities/fast-animation/client/examples/app/assets/images/easing-curve.svg @@ -1 +1 @@ -easing-curveUntitled-1 \ No newline at end of file +easing-curveUntitled-1 \ No newline at end of file diff --git a/packages/web-components/fast-components/src/accordion/fixtures/base.html b/packages/web-components/fast-components/src/accordion/fixtures/base.html index dee7e7b1cd8..6eaa4d07be6 100644 --- a/packages/web-components/fast-components/src/accordion/fixtures/base.html +++ b/packages/web-components/fast-components/src/accordion/fixtures/base.html @@ -26,7 +26,7 @@

Default

height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Default height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Default height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Default height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Default height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Default height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Single expand height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With disabled item height="18" viewBox="0 0 18 18" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With start width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With end width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Icon in default slot width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With start width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With end width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Icon in default slot width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Previous with slotted content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Next with slotted content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Disabled Start End width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Disabled Start End width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Start width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > End width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Complex content layout width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Complex content layout width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With seperator width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With seperator width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Custom thumb Custom labels and thumb, hide marks on labels Custom labels and thumb, hide marks on labels width="14px" height="14px" viewBox="0 0 14 14" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Clock Icon Custom labels and thumb, hide marks on labels width="16px" height="16px" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Icons - horizontal Icons - horizontal Icons - horizontal Icons - Vertical Icons - Vertical Icons - Vertical With start width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With end width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Before content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Before content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > After content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > After content width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Disabled width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > Disabled width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > With several nested items (expanded) width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > ` part="checked-indicator" class="checked-indicator" viewBox="0 0 20 20" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > ` html` - + @@ -31,7 +31,7 @@ export const FlipperTemplate = html` html` - + diff --git a/packages/web-components/fast-foundation/src/tree-item/tree-item.template.ts b/packages/web-components/fast-foundation/src/tree-item/tree-item.template.ts index 897d4914c87..f5d33c6809f 100644 --- a/packages/web-components/fast-foundation/src/tree-item/tree-item.template.ts +++ b/packages/web-components/fast-foundation/src/tree-item/tree-item.template.ts @@ -44,7 +44,7 @@ export const TreeItemTemplate = html` diff --git a/sites/fast-color-explorer/app/icons.tsx b/sites/fast-color-explorer/app/icons.tsx index 77a65def20d..229fb7f4c6f 100644 --- a/sites/fast-color-explorer/app/icons.tsx +++ b/sites/fast-color-explorer/app/icons.tsx @@ -4,7 +4,7 @@ export const StealthIcon: any = (className?: string): JSX.Element => ( width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" className={className} style={{ marginRight: "12px" }} > diff --git a/sites/fast-component-explorer/app/fast-components/configs/fast-accordion.ts b/sites/fast-component-explorer/app/fast-components/configs/fast-accordion.ts index a9f9baded3e..45ffb0b511b 100644 --- a/sites/fast-component-explorer/app/fast-components/configs/fast-accordion.ts +++ b/sites/fast-component-explorer/app/fast-components/configs/fast-accordion.ts @@ -37,7 +37,7 @@ function expandedIcon(parent: string): DataDictionary { height: "18", viewBox: "0 0 18 18", fill: "none", - xmlns: "http://www.w3.org/2000/svg", + xmlns: "https://www.w3.org/2000/svg", Slot: [ { id: expandedIconPath1, @@ -97,7 +97,7 @@ function collapsedIcon(parent: string): DataDictionary { height: "18", viewBox: "0 0 18 18", fill: "none", - xmlns: "http://www.w3.org/2000/svg", + xmlns: "https://www.w3.org/2000/svg", Slot: [ { id: collapsedIconPath1, diff --git a/sites/fast-component-explorer/app/fast-components/utilities/icons.ts b/sites/fast-component-explorer/app/fast-components/utilities/icons.ts index e0f3d293d33..512e689c98f 100644 --- a/sites/fast-component-explorer/app/fast-components/utilities/icons.ts +++ b/sites/fast-component-explorer/app/fast-components/utilities/icons.ts @@ -19,7 +19,7 @@ export function placeholderIcon( width: "16", height: "16", viewBox: "0 0 16 16", - xmlns: "http://www.w3.org/2000/svg", + xmlns: "https://www.w3.org/2000/svg", Slot: [ { id: placeholderIconPath1, diff --git a/sites/fast-creator/app/utilities/resolver.ts b/sites/fast-creator/app/utilities/resolver.ts index 08f3bbc891e..904cafc17f6 100644 --- a/sites/fast-creator/app/utilities/resolver.ts +++ b/sites/fast-creator/app/utilities/resolver.ts @@ -9,7 +9,7 @@ import { get } from "lodash-es"; export const dataSetDictionaryId = "data-creator-wrapper-dictionary-id"; const nameSpacedURIs = { - svg: "http://www.w3.org/2000/svg", + svg: "https://www.w3.org/2000/svg", }; const nameSpacedTags = { animate: nameSpacedURIs.svg, diff --git a/sites/fast-website/src/app/svg/background.svg b/sites/fast-website/src/app/svg/background.svg index 89a48b96753..8062f0a3aa2 100644 --- a/sites/fast-website/src/app/svg/background.svg +++ b/sites/fast-website/src/app/svg/background.svg @@ -1 +1 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-brand-fast.svg b/sites/fast-website/src/app/svg/icon-brand-fast.svg index 0476063a8e4..b1b50b27785 100644 --- a/sites/fast-website/src/app/svg/icon-brand-fast.svg +++ b/sites/fast-website/src/app/svg/icon-brand-fast.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-brand.svg b/sites/fast-website/src/app/svg/icon-brand.svg index 096d156117a..11ab92863b0 100644 --- a/sites/fast-website/src/app/svg/icon-brand.svg +++ b/sites/fast-website/src/app/svg/icon-brand.svg @@ -1,4 +1,4 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-close.svg b/sites/fast-website/src/app/svg/icon-close.svg index cc2912be176..2b74e3499f1 100644 --- a/sites/fast-website/src/app/svg/icon-close.svg +++ b/sites/fast-website/src/app/svg/icon-close.svg @@ -1,4 +1,4 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-context.svg b/sites/fast-website/src/app/svg/icon-context.svg index 21f87c875fc..d642b4c4dd1 100644 --- a/sites/fast-website/src/app/svg/icon-context.svg +++ b/sites/fast-website/src/app/svg/icon-context.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-contrast.svg b/sites/fast-website/src/app/svg/icon-contrast.svg index 4563c840748..a3ce311fe84 100644 --- a/sites/fast-website/src/app/svg/icon-contrast.svg +++ b/sites/fast-website/src/app/svg/icon-contrast.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-discord.svg b/sites/fast-website/src/app/svg/icon-discord.svg index 5ce1cc32bf1..cafb01dc7ef 100644 --- a/sites/fast-website/src/app/svg/icon-discord.svg +++ b/sites/fast-website/src/app/svg/icon-discord.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/sites/fast-website/src/app/svg/icon-download.svg b/sites/fast-website/src/app/svg/icon-download.svg index a198628bc2a..c633a4efcb6 100644 --- a/sites/fast-website/src/app/svg/icon-download.svg +++ b/sites/fast-website/src/app/svg/icon-download.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-github.svg b/sites/fast-website/src/app/svg/icon-github.svg index 7ac96ba93f2..dd67d3057a9 100644 --- a/sites/fast-website/src/app/svg/icon-github.svg +++ b/sites/fast-website/src/app/svg/icon-github.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-medium.svg b/sites/fast-website/src/app/svg/icon-medium.svg index f259883cd7a..864df49eb0f 100644 --- a/sites/fast-website/src/app/svg/icon-medium.svg +++ b/sites/fast-website/src/app/svg/icon-medium.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-menu.svg b/sites/fast-website/src/app/svg/icon-menu.svg index f82eb7bfbdc..c477f7339c7 100644 --- a/sites/fast-website/src/app/svg/icon-menu.svg +++ b/sites/fast-website/src/app/svg/icon-menu.svg @@ -1,4 +1,4 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-palette.svg b/sites/fast-website/src/app/svg/icon-palette.svg index e06bfa93a3c..9477ba1b9c2 100644 --- a/sites/fast-website/src/app/svg/icon-palette.svg +++ b/sites/fast-website/src/app/svg/icon-palette.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-play.svg b/sites/fast-website/src/app/svg/icon-play.svg index 3f58840b900..7658d20e463 100644 --- a/sites/fast-website/src/app/svg/icon-play.svg +++ b/sites/fast-website/src/app/svg/icon-play.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-screen.svg b/sites/fast-website/src/app/svg/icon-screen.svg index 683867e7649..5160f8a66c7 100644 --- a/sites/fast-website/src/app/svg/icon-screen.svg +++ b/sites/fast-website/src/app/svg/icon-screen.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-share.svg b/sites/fast-website/src/app/svg/icon-share.svg index 5ecd82a6aba..808c0f8bafe 100644 --- a/sites/fast-website/src/app/svg/icon-share.svg +++ b/sites/fast-website/src/app/svg/icon-share.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-swatches.svg b/sites/fast-website/src/app/svg/icon-swatches.svg index 87f1bccb4f3..d79e8ba7a2e 100644 --- a/sites/fast-website/src/app/svg/icon-swatches.svg +++ b/sites/fast-website/src/app/svg/icon-swatches.svg @@ -1,3 +1,3 @@ - + diff --git a/sites/fast-website/src/app/svg/icon-twitter.svg b/sites/fast-website/src/app/svg/icon-twitter.svg index 1ed207e4135..7b70d1f2d02 100644 --- a/sites/fast-website/src/app/svg/icon-twitter.svg +++ b/sites/fast-website/src/app/svg/icon-twitter.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/sites/fast-website/src/public/index.html b/sites/fast-website/src/public/index.html index ba96e61da29..f096b28b7b9 100644 --- a/sites/fast-website/src/public/index.html +++ b/sites/fast-website/src/public/index.html @@ -197,7 +197,7 @@

Features and utilities

View GitHub diff --git a/sites/site-utilities/src/components/dimension/index.tsx b/sites/site-utilities/src/components/dimension/index.tsx index 380c1013288..4f139145b7f 100644 --- a/sites/site-utilities/src/components/dimension/index.tsx +++ b/sites/site-utilities/src/components/dimension/index.tsx @@ -27,7 +27,7 @@ export const Dimension: React.FC = ({ height="14" viewBox="0 0 14 14" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" aria-hidden={true} style={{ marginRight: 4, marginLeft: 4 }} > diff --git a/sites/site-utilities/src/definitions/native/svg.definition.ts b/sites/site-utilities/src/definitions/native/svg.definition.ts index 0560e209ef3..59b9f5ead7f 100644 --- a/sites/site-utilities/src/definitions/native/svg.definition.ts +++ b/sites/site-utilities/src/definitions/native/svg.definition.ts @@ -39,7 +39,7 @@ export const svgDefinition: WebComponentDefinition = { { name: "xmlns", description: "The svg xmls", - default: "http://www.w3.org/2000/svg", + default: "https://www.w3.org/2000/svg", type: DataType.string, required: false, }, diff --git a/sites/site-utilities/src/icons/chevron.tsx b/sites/site-utilities/src/icons/chevron.tsx index fe66d567524..4d05a84552c 100644 --- a/sites/site-utilities/src/icons/chevron.tsx +++ b/sites/site-utilities/src/icons/chevron.tsx @@ -7,7 +7,7 @@ function chevron(rotate: number): (className?: string) => JSX.Element { width="16" height="16" viewBox="0 0 16 16" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" className={className} style={{ transform: `rotate(${rotate}deg)` }} > diff --git a/sites/site-utilities/src/icons/dot-dot-dot.tsx b/sites/site-utilities/src/icons/dot-dot-dot.tsx index eca8b964865..3518b1f7f3e 100644 --- a/sites/site-utilities/src/icons/dot-dot-dot.tsx +++ b/sites/site-utilities/src/icons/dot-dot-dot.tsx @@ -2,7 +2,7 @@ import React from "react"; export function dotDotDotGlyph(className?: string): JSX.Element { return ( - + ); diff --git a/sites/site-utilities/src/icons/editor-logo.tsx b/sites/site-utilities/src/icons/editor-logo.tsx index cdd0d74bdd1..3aaea560d11 100644 --- a/sites/site-utilities/src/icons/editor-logo.tsx +++ b/sites/site-utilities/src/icons/editor-logo.tsx @@ -6,7 +6,7 @@ export const editorLogo = ( height="19" viewBox="0 0 19 19" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" > diff --git a/sites/site-utilities/src/icons/rotate.tsx b/sites/site-utilities/src/icons/rotate.tsx index 58a0a613b9d..de34174133d 100644 --- a/sites/site-utilities/src/icons/rotate.tsx +++ b/sites/site-utilities/src/icons/rotate.tsx @@ -7,7 +7,7 @@ export function rotateGlyph(className?: string): JSX.Element { height="16" viewBox="0 0 16 16" fill="none" - xmlns="http://www.w3.org/2000/svg" + xmlns="https://www.w3.org/2000/svg" className={className} > +