From d0f994bb3cdf29ae48409c8bcc0e35a39aed9f37 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 13 Nov 2020 14:19:52 +0800 Subject: [PATCH] docs: add or update stories of alert, avatar and button (#467) affects: @gio-design/components --- .github/workflows/ci.yml | 59 +- packages/components/jest.config.js | 7 +- .../src/components/alert/Alert.stories.tsx | 19 + .../__snapshots__/alert.test.js.snap | 6828 ++++++++++++++++- .../components/src/components/alert/alert.tsx | 29 +- .../components/src/components/alert/index.tsx | 1 + .../src/components/alert/interfaces.ts | 38 + .../src/components/avatar/Avatar.stories.tsx | 4 +- .../src/components/avatar/Avatar.tsx | 5 +- .../src/components/avatar/AvatarGroup.tsx | 15 +- .../src/components/avatar/index.tsx | 2 +- .../avatar/{interface.ts => interfaces.ts} | 32 +- .../src/components/button/Button.stories.tsx | 2 +- .../src/components/button/button.tsx | 12 +- .../src/components/button/index.tsx | 2 +- .../button/{interface.tsx => interfaces.tsx} | 0 16 files changed, 6747 insertions(+), 308 deletions(-) create mode 100644 packages/components/src/components/alert/Alert.stories.tsx create mode 100644 packages/components/src/components/alert/interfaces.ts rename packages/components/src/components/avatar/{interface.ts => interfaces.ts} (66%) rename packages/components/src/components/button/{interface.tsx => interfaces.tsx} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ccf946eee..18133fde5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: path: | node_modules */*/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} - name: Bootstrap if: steps.cache-node-modules.outputs.cache-hit != 'true' run: yarn bootstrap @@ -66,7 +66,7 @@ jobs: path: | node_modules */*/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} - name: Lint pull request title run: echo "${{ github.event.pull_request.title }}" | npx commitlint - name: Lint commits count @@ -76,16 +76,15 @@ jobs: run: yarn lint:style - name: ESLint run: yarn lint:components - review: - name: UI Review - if: ${{ !(startsWith(github.event.pull_request.title, 'chore') || startsWith(github.event.pull_request.title, 'docs')) }} - needs: [install] + build: + name: Build Packages + needs: install runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: - fetch-depth: 0 + fetch-depth: '1' - name: Setup Node.js uses: actions/setup-node@v2.1.2 with: @@ -96,24 +95,29 @@ jobs: path: | node_modules */*/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - - name: Build Storybook - run: yarn build-storybook - - name: Upload to Chromatic - uses: chromaui/action@v1 + key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} + - name: Cache packages + uses: actions/cache@v2 with: - token: ${{ secrets.GITHUB_TOKEN }} - projectToken: no8vpz82l1j - storybookBuildDir: packages/components/storybook-static/ - build: - name: Build Packages - needs: install + path: | + packages/components/dist + packages/components/es + packages/icons/dist + packages/icons/es + packages/tokens/dist + key: packages-${{ github.sha }} + - name: Build + run: yarn build + review: + name: UI Review + if: ${{ !startsWith(github.event.pull_request.title, 'chore') }} + needs: build runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: - fetch-depth: '1' + fetch-depth: 0 - name: Setup Node.js uses: actions/setup-node@v2.1.2 with: @@ -124,8 +128,8 @@ jobs: path: | node_modules */*/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - - name: Cache packages + key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} + - name: Restore packages from cache uses: actions/cache@v2 with: path: | @@ -135,8 +139,14 @@ jobs: packages/icons/es packages/tokens/dist key: packages-${{ github.sha }} - - name: Build - run: yarn build + - name: Build Storybook + run: yarn build-storybook + - name: Upload to Chromatic + uses: chromaui/action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + projectToken: no8vpz82l1j + storybookBuildDir: packages/components/storybook-static/ test: name: Test Coverage if: ${{ !(startsWith(github.event.pull_request.title, 'chore') || startsWith(github.event.pull_request.title, 'docs')) }} @@ -157,7 +167,7 @@ jobs: path: | node_modules */*/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }} - name: Restore packages from cache uses: actions/cache@v2 with: @@ -174,4 +184,3 @@ jobs: uses: codecov/codecov-action@v1 with: directory: ./packages/components/coverage/ - diff --git a/packages/components/jest.config.js b/packages/components/jest.config.js index e1663b6f0e..9a2d19c24c 100644 --- a/packages/components/jest.config.js +++ b/packages/components/jest.config.js @@ -21,6 +21,11 @@ module.exports = { '/__mocks__/fileMock.js', 'iconfont.js': '/__mocks__/iconMock.js', }, - collectCoverageFrom: ['src/**/*.{ts,tsx}', '!src/**/index.{ts,tsx}', '!src/**/interface.ts'], + collectCoverageFrom: [ + 'src/**/*.{ts,tsx}', + '!src/**/index.{ts,tsx}', + '!src/**/interfaces.ts', + '!src/**/*.stories.{ts,tsx}', + ], coverageDirectory: './coverage/', }; diff --git a/packages/components/src/components/alert/Alert.stories.tsx b/packages/components/src/components/alert/Alert.stories.tsx new file mode 100644 index 0000000000..2df5261351 --- /dev/null +++ b/packages/components/src/components/alert/Alert.stories.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import { Story, Meta } from '@storybook/react/types-6-0'; + +import Alert from './index'; +import { AlertProps } from './interfaces'; +import './style'; + +export default { + title: 'Components/Basic/Alert', + component: Alert, +} as Meta; + +const Template: Story = (args) => ; + +export const Default = Template.bind({}); +Default.args = { + type: 'success', + message: 'Success Alert', +}; diff --git a/packages/components/src/components/alert/__tests__/__snapshots__/alert.test.js.snap b/packages/components/src/components/alert/__tests__/__snapshots__/alert.test.js.snap index f5b5bcbf17..449e7515f6 100644 --- a/packages/components/src/components/alert/__tests__/__snapshots__/alert.test.js.snap +++ b/packages/components/src/components/alert/__tests__/__snapshots__/alert.test.js.snap @@ -25,59 +25,19 @@ initialize { "attribs": Object { "class": "gio-icon-svg", "clip-rule": "evenodd", + "color": "#0052CC", "fill": "currentColor", "fill-rule": "evenodd", "height": "1rem", "stroke-linejoin": "round", - "stroke-miterlimit": "2", - "viewBox": "0 0 16 16", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", "width": "1rem", }, "children": Array [ Object { "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", "fill": "currentColor", }, "children": Array [], @@ -85,27 +45,7 @@ initialize { "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], - "prev": Object { - "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { "d": undefined, @@ -126,6 +66,7 @@ initialize { "x-attribsNamespace": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -137,6 +78,7 @@ initialize { "x-attribsPrefix": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -256,7 +198,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -508,11 +452,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -630,7 +578,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -882,11 +832,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -905,59 +859,19 @@ initialize { "attribs": Object { "class": "gio-icon-svg", "clip-rule": "evenodd", + "color": "#0052CC", "fill": "currentColor", "fill-rule": "evenodd", "height": "1rem", "stroke-linejoin": "round", - "stroke-miterlimit": "2", - "viewBox": "0 0 16 16", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", "width": "1rem", }, "children": Array [ Object { "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", "fill": "currentColor", }, "children": Array [], @@ -965,27 +879,7 @@ initialize { "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], - "prev": Object { - "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { "d": undefined, @@ -1006,6 +900,7 @@ initialize { "x-attribsNamespace": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -1017,6 +912,7 @@ initialize { "x-attribsPrefix": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -1067,7 +963,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -1422,59 +1320,19 @@ initialize { "attribs": Object { "class": "gio-icon-svg", "clip-rule": "evenodd", + "color": "#0052CC", "fill": "currentColor", "fill-rule": "evenodd", "height": "1rem", "stroke-linejoin": "round", - "stroke-miterlimit": "2", - "viewBox": "0 0 16 16", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", "width": "1rem", }, "children": Array [ Object { "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, - Object { - "attribs": Object { - "d": "M5.144 3.43a1.715 1.715 0 11-.001 3.43 1.715 1.715 0 01.001-3.43zm0 1.143a.573.573 0 00-.571.572c0 .314.257.571.571.571a.573.573 0 00.571-.571.573.573 0 00-.57-.572z", + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", "fill": "currentColor", }, "children": Array [], @@ -1482,27 +1340,7 @@ initialize { "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], - "prev": Object { - "attribs": Object { - "d": "M7.31.406a1.38 1.38 0 00-.976-.404H1.382a1.38 1.38 0 00-1.38 1.38v4.952c0 .367.144.718.404.978l8.285 8.285c.54.54 1.414.54 1.954 0l4.952-4.952a1.38 1.38 0 000-1.953L7.31.406zm-1.548.976c.367 0 .718.147.977.405 1.379 1.38 5.894 5.895 7.394 7.393.27.27.27.708 0 .977l-3.976 3.976a.691.691 0 01-.978 0c-1.498-1.5-6.013-6.015-7.393-7.393a1.385 1.385 0 01-.404-.977v-3.69c0-.38.31-.69.691-.69h3.69z", - "fill": "currentColor", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "fill": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "fill": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { "d": undefined, @@ -1523,6 +1361,7 @@ initialize { "x-attribsNamespace": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -1534,6 +1373,7 @@ initialize { "x-attribsPrefix": Object { "class": undefined, "clip-rule": undefined, + "color": undefined, "fill": undefined, "fill-rule": undefined, "height": undefined, @@ -1584,11 +1424,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -1658,7 +1502,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -1770,7 +1701,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -2022,11 +1955,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -2160,7 +2097,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -2412,11 +2351,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -2425,7 +2368,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -2452,7 +2482,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -2813,7 +2845,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -2840,11 +2959,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -3233,7 +3356,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -3485,11 +3610,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -3623,7 +3752,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -3875,11 +4006,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -4159,7 +4294,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -4791,11 +4928,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -5027,7 +5168,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -5279,11 +5422,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -5417,7 +5564,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -5669,11 +5818,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -5796,7 +5949,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -6271,11 +6426,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -6664,7 +6823,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -6916,11 +7077,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -7054,7 +7219,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -7306,11 +7473,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -7590,7 +7761,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -8222,11 +8395,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -8259,7 +8436,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -8371,7 +8635,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -8623,11 +8889,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -8761,7 +9031,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -9013,11 +9285,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -9026,7 +9302,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -9053,7 +9416,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -9414,7 +9779,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -9441,11 +9893,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -9834,7 +10290,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -10086,11 +10544,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -10224,7 +10686,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -10476,11 +10940,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -10760,7 +11228,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -11392,11 +11862,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -11628,7 +12102,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -11880,11 +12356,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -12018,7 +12498,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -12270,11 +12752,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -12397,7 +12883,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -12872,11 +13360,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -13265,7 +13757,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -13517,11 +14011,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -13655,7 +14153,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -13907,11 +14407,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -14191,7 +14695,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -14823,11 +15329,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -15265,7 +15775,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -15517,11 +16029,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -15655,7 +16171,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -15907,11 +16425,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -16191,7 +16713,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -16823,11 +17347,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -17059,7 +17587,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -17311,11 +17841,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -17449,7 +17983,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -17701,11 +18237,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -17828,7 +18368,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -18303,11 +18845,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -18696,7 +19242,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -18948,11 +19496,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -19086,7 +19638,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -19338,11 +19892,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -19622,7 +20180,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -20254,11 +20814,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -20291,7 +20855,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -20403,7 +21054,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -20655,11 +21308,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -20793,7 +21450,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -21045,11 +21704,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -21058,7 +21721,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -21085,7 +21835,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -21446,7 +22198,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -21473,11 +22312,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -21866,7 +22709,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -22118,11 +22963,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -22256,7 +23105,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -22508,11 +23359,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -22792,7 +23647,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -23424,11 +24281,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -23660,7 +24521,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -23912,11 +24775,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -24050,7 +24917,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -24302,11 +25171,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -24429,7 +25302,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -24904,11 +25779,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -25297,7 +26176,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -25549,11 +26430,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -25687,7 +26572,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -25939,11 +26826,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -26223,7 +27114,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -26855,11 +27748,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -26930,7 +27827,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -27042,7 +28026,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -27294,11 +28280,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27432,7 +28422,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -27684,11 +28676,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27697,7 +28693,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -27724,7 +28807,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -28085,7 +29170,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -28112,11 +29284,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -28359,7 +29535,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -28611,11 +29789,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -28749,7 +29931,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -29001,11 +30185,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -29128,7 +30316,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -29603,11 +30793,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -29996,7 +31190,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -30248,11 +31444,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30386,7 +31586,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -30638,11 +31840,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30922,7 +32128,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -31554,11 +32762,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -31591,7 +32803,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -31703,7 +33002,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -31955,11 +33256,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32093,7 +33398,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -32345,11 +33652,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32358,7 +33669,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -32385,7 +33783,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -32746,7 +34146,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -32773,11 +34260,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -33166,7 +34657,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -33418,11 +34911,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33556,7 +35053,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -33808,11 +35307,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -34092,7 +35595,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -34724,11 +36229,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -34960,7 +36469,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -35212,11 +36723,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35350,7 +36865,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -35602,11 +37119,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35729,7 +37250,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -36204,11 +37727,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -36597,7 +38124,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -36849,11 +38378,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -36987,7 +38520,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -37239,11 +38774,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -37523,7 +39062,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -38155,11 +39696,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -38580,7 +40125,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -38832,11 +40379,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -38970,7 +40521,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -39222,11 +40775,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -39506,7 +41063,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -40138,11 +41697,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -40177,7 +41740,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -40289,7 +41939,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -40541,11 +42193,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -40679,7 +42335,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -40931,11 +42589,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -40944,7 +42606,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -40971,7 +42720,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -41332,7 +43083,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -41359,11 +43197,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -41767,7 +43609,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -42019,11 +43863,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -42157,7 +44005,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -42409,11 +44259,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -42693,7 +44547,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -43325,11 +45181,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -43362,7 +45222,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -43474,7 +45421,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -43726,11 +45675,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -43864,7 +45817,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -44116,11 +46071,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -44129,7 +46088,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -44156,7 +46202,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -44517,7 +46565,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -44544,11 +46679,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -44937,7 +47076,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -45189,11 +47330,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -45327,7 +47472,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -45579,11 +47726,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -45863,7 +48014,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -46495,11 +48648,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -46731,7 +48888,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -46983,11 +49142,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -47121,7 +49284,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -47373,11 +49538,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -47500,7 +49669,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -47975,11 +50146,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -48368,7 +50543,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -48620,11 +50797,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -48758,7 +50939,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -49010,11 +51193,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -49294,7 +51481,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -49926,11 +52115,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -50188,7 +52381,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -50440,11 +52635,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -50578,7 +52777,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -50830,11 +53031,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -50957,7 +53162,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -51432,11 +53639,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -51827,7 +54038,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -52079,11 +54292,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -52217,7 +54434,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -52469,11 +54688,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -52753,7 +54976,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -53385,11 +55610,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -53424,7 +55653,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -53536,7 +55852,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -53788,11 +56106,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -53926,7 +56248,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -54178,11 +56502,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -54191,7 +56519,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -54218,7 +56633,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -54579,7 +56996,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -54606,11 +57110,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -54662,7 +57170,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -54774,7 +57369,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -55026,11 +57623,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -55164,7 +57765,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -55416,11 +58019,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -55429,7 +58036,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -55456,7 +58150,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -55817,7 +58513,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -55844,11 +58627,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -56237,7 +59024,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -56489,11 +59278,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -56627,7 +59420,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -56879,11 +59674,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -57163,7 +59962,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -57795,11 +60596,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -58031,7 +60836,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -58283,11 +61090,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -58421,7 +61232,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -58673,11 +61486,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -58800,7 +61617,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -59275,11 +62094,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -59668,7 +62491,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -59920,11 +62745,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -60058,7 +62887,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -60310,11 +63141,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -60594,7 +63429,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -61226,11 +64063,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -61639,7 +64480,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -61891,11 +64734,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -62029,7 +64876,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -62281,11 +65130,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -62565,7 +65418,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -63197,11 +66052,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -63435,7 +66294,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -63687,11 +66548,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -63825,7 +66690,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -64077,11 +66944,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -64204,7 +67075,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -64679,11 +67552,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -65074,7 +67951,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -65326,11 +68205,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -65464,7 +68347,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -65716,11 +68601,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -66000,7 +68889,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -66632,11 +69523,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -66671,7 +69566,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -66783,7 +69765,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -67035,11 +70019,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67173,7 +70161,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -67425,11 +70415,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67438,7 +70432,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -67465,7 +70546,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -67826,7 +70909,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -67853,11 +71023,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -68269,7 +71443,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -68521,11 +71697,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -68659,7 +71839,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -68911,11 +72093,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -69195,7 +72381,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -69827,11 +73015,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -70063,7 +73255,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -70315,11 +73509,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70453,7 +73651,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -70705,11 +73905,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70832,7 +74036,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -71307,11 +74513,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -71700,7 +74910,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -71952,11 +75164,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72090,7 +75306,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -72342,11 +75560,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72626,7 +75848,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -73258,11 +76482,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -73309,7 +76537,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -73421,7 +76736,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -73673,11 +76990,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -73811,7 +77132,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -74063,11 +77386,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -74076,7 +77403,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -74103,7 +77517,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -74464,7 +77880,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -74491,11 +77994,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -74886,7 +78393,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -75138,11 +78647,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -75276,7 +78789,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -75528,11 +79043,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -75812,7 +79331,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -76444,11 +79965,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -76682,7 +80207,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -76934,11 +80461,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -77072,7 +80603,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -77324,11 +80857,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -77451,7 +80988,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -77926,11 +81465,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -78321,7 +81864,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -78573,11 +82118,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -78711,7 +82260,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -78963,11 +82514,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -79247,7 +82802,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -79879,11 +83436,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -79918,7 +83479,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -80030,7 +83678,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -80282,11 +83932,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -80420,7 +84074,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -80672,11 +84328,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -80685,7 +84345,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -80712,7 +84459,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -81073,7 +84822,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -81100,11 +84936,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -81363,7 +85203,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -81615,11 +85457,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -81753,7 +85599,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -82005,11 +85853,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -82132,7 +85984,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -82607,11 +86461,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -83000,7 +86858,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -83252,11 +87112,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -83390,7 +87254,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -83642,11 +87508,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -83926,7 +87796,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -84558,11 +88430,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -84959,7 +88835,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -85211,11 +89089,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -85349,7 +89231,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -85601,11 +89485,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -85885,7 +89773,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -86517,11 +90407,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -86556,7 +90450,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -86668,7 +90649,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -86920,11 +90903,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -87058,7 +91045,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -87310,11 +91299,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -87323,7 +91316,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -87350,7 +91430,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -87711,7 +91793,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -87738,11 +91907,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -88133,7 +92306,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -88385,11 +92560,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -88523,7 +92702,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -88775,11 +92956,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -89059,7 +93244,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -89691,11 +93878,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -89929,7 +94120,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -90181,11 +94374,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -90319,7 +94516,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -90571,11 +94770,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -90698,7 +94901,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -91173,11 +95378,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -91568,7 +95777,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -91820,11 +96031,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -91958,7 +96173,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -92210,11 +96427,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -92494,7 +96715,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -93126,11 +97349,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -93165,7 +97392,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -93277,7 +97591,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -93529,11 +97845,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -93667,7 +97987,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -93919,11 +98241,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -93932,7 +98258,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -93959,7 +98372,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -94320,7 +98735,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -94347,11 +98849,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -94771,7 +99277,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -95023,11 +99531,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -95161,7 +99673,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -95413,11 +99927,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -95697,7 +100215,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -96329,11 +100849,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -96567,7 +101091,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -96819,11 +101345,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -96957,7 +101487,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -97209,11 +101741,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -97336,7 +101872,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -97811,11 +102349,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -98206,7 +102748,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -98458,11 +103002,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -98596,7 +103144,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -98848,11 +103398,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -99132,7 +103686,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -99764,11 +104320,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -99803,7 +104363,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -99915,7 +104562,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -100167,11 +104816,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -100305,7 +104958,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -100557,11 +105212,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -100570,7 +105229,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -100597,7 +105343,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -100958,7 +105706,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -100985,11 +105820,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -101380,7 +106219,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -101632,11 +106473,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -101770,7 +106615,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -102022,11 +106869,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -102306,7 +107157,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -102938,11 +107791,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -103176,7 +108033,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -103428,11 +108287,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -103566,7 +108429,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -103818,11 +108683,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -103945,7 +108814,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -104420,11 +109291,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -104815,7 +109690,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -105067,11 +109944,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -105205,7 +110086,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -105457,11 +110340,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -105741,7 +110628,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -106373,11 +111262,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -106412,7 +111305,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": Object { @@ -106524,7 +111504,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -106776,11 +111758,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -106914,7 +111900,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -107166,11 +112154,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -107179,7 +112171,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -107206,7 +112285,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -107567,7 +112648,94 @@ initialize { "class": "gio-alert-icon", "style": "display:none", }, - "children": Array [], + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon", + }, + "children": Array [ + Object { + "attribs": Object { + "class": "gio-icon-svg", + "clip-rule": "evenodd", + "color": "#0052CC", + "fill": "currentColor", + "fill-rule": "evenodd", + "height": "1rem", + "stroke-linejoin": "round", + "stroke-miterlimit": "1.414", + "viewBox": "0 0 59 59", + "width": "1rem", + }, + "children": Array [ + Object { + "attribs": Object { + "d": "M29.167 0c16.096 0 29.167 13.072 29.167 29.168 0 16.095-13.07 29.166-29.167 29.166-16.095 0-29.166-13.07-29.166-29.166S13.07 0 29.167 0zm2.084 41.668c0 .554-.221 1.083-.609 1.475-.391.387-.92.608-1.475.608-.554 0-1.083-.22-1.475-.608a2.098 2.098 0 01-.608-1.475V25c0-.554.221-1.083.608-1.475.392-.388.921-.608 1.475-.608.555 0 1.084.22 1.475.608.388.392.609.92.609 1.475v16.667zm-2.084-27.084a3.126 3.126 0 010 6.25 3.126 3.126 0 010-6.25z", + "fill": "currentColor", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "fill": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "fill": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "clip-rule": undefined, + "color": undefined, + "fill": undefined, + "fill-rule": undefined, + "height": undefined, + "stroke-linejoin": undefined, + "stroke-miterlimit": undefined, + "viewBox": undefined, + "width": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], @@ -107594,11 +112762,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -108059,7 +113231,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -108311,11 +113485,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -108449,7 +113627,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -108701,11 +113881,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -108985,7 +114169,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -109617,11 +114803,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -109890,7 +115080,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -110142,11 +115334,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -110280,7 +115476,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -110532,11 +115730,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -110659,7 +115861,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -111134,11 +116338,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -111527,7 +116735,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -111779,11 +116989,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -111917,7 +117131,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -112169,11 +117385,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -112453,7 +117673,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -113085,11 +118307,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -113321,7 +118547,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -113573,11 +118801,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -113711,7 +118943,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -113963,11 +119197,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -114090,7 +119328,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -114565,11 +119805,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -114958,7 +120202,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -115210,11 +120456,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -115348,7 +120598,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -115600,11 +120852,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -115884,7 +121140,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -116516,11 +121774,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -116752,7 +122014,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -117004,11 +122268,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -117142,7 +122410,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -117394,11 +122664,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -117521,7 +122795,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -117996,11 +123272,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -118389,7 +123669,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -118641,11 +123923,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -118779,7 +124065,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -119031,11 +124319,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -119315,7 +124607,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -119947,11 +125241,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -120183,7 +125481,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -120435,11 +125735,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -120573,7 +125877,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -120825,11 +126131,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -120952,7 +126262,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -121427,11 +126739,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -121820,7 +127136,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -122072,11 +127390,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -122210,7 +127532,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -122462,11 +127786,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -122746,7 +128074,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -123378,11 +128708,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -123820,7 +129154,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -124072,11 +129408,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -124210,7 +129550,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -124462,11 +129804,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -124746,7 +130092,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -125378,11 +130726,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -125614,7 +130966,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -125866,11 +131220,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -126004,7 +131362,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -126256,11 +131616,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -126383,7 +131747,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -126858,11 +132224,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -127251,7 +132621,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -127503,11 +132875,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -127641,7 +133017,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -127893,11 +133271,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -128177,7 +133559,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -128809,11 +134193,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -129045,7 +134433,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -129297,11 +134687,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -129435,7 +134829,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -129687,11 +135083,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -129814,7 +135214,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -130289,11 +135691,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -130682,7 +136088,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -130934,11 +136342,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -131072,7 +136484,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -131324,11 +136738,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -131608,7 +137026,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -132240,11 +137660,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -132476,7 +137900,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -132728,11 +138154,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -132866,7 +138296,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -133118,11 +138550,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -133245,7 +138681,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -133720,11 +139158,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -134113,7 +139555,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -134365,11 +139809,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -134503,7 +139951,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -134755,11 +140205,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -135039,7 +140493,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -135671,11 +141127,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -135945,7 +141405,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -136197,11 +141659,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -136335,7 +141801,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -136587,11 +142055,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -136714,7 +142186,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -137189,11 +142663,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -137436,7 +142914,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -137688,11 +143168,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -137826,7 +143310,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -138078,11 +143564,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -138205,7 +143695,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -138680,11 +144172,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -139073,7 +144569,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -139325,11 +144823,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -139463,7 +144965,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -139715,11 +145219,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -139999,7 +145507,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -140631,11 +146141,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -140867,7 +146381,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -141119,11 +146635,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -141257,7 +146777,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -141509,11 +147031,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -141636,7 +147162,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -142111,11 +147639,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -142504,7 +148036,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -142756,11 +148290,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -142894,7 +148432,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -143146,11 +148686,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -143430,7 +148974,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -144062,11 +149608,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -144298,7 +149848,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -144550,11 +150102,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -144688,7 +150244,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -144940,11 +150498,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -145067,7 +150629,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -145542,11 +151106,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -145935,7 +151503,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -146187,11 +151757,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -146325,7 +151899,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -146577,11 +152153,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -146861,7 +152441,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -147493,11 +153075,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -147918,7 +153504,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -148170,11 +153758,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -148308,7 +153900,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -148560,11 +154154,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -148844,7 +154442,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -149476,11 +155076,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -149714,7 +155318,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -149966,11 +155572,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -150104,7 +155714,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -150356,11 +155968,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -150483,7 +156099,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -150958,11 +156576,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -151366,7 +156988,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -151618,11 +157242,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -151756,7 +157384,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -152008,11 +157638,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -152292,7 +157926,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -152924,11 +158560,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -153160,7 +158800,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -153412,11 +159054,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -153550,7 +159196,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -153802,11 +159450,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -153929,7 +159581,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -154404,11 +160058,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -154797,7 +160455,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -155049,11 +160709,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -155187,7 +160851,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -155439,11 +161105,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -155723,7 +161393,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -156355,11 +162027,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -156591,7 +162267,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -156843,11 +162521,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -156981,7 +162663,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -157233,11 +162917,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -157360,7 +163048,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -157835,11 +163525,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -158228,7 +163922,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -158480,11 +164176,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -158618,7 +164318,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -158870,11 +164572,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -159154,7 +164860,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -159786,11 +165494,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -160048,7 +165760,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -160300,11 +166014,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -160438,7 +166156,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -160690,11 +166410,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -160817,7 +166541,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -161292,11 +167018,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -161687,7 +167417,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -161939,11 +167671,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -162077,7 +167813,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -162329,11 +168067,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -162613,7 +168355,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -163245,11 +168989,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -163483,7 +169231,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -163735,11 +169485,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -163873,7 +169627,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -164125,11 +169881,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -164252,7 +170012,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -164727,11 +170489,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -164982,7 +170748,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -165234,11 +171002,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -165372,7 +171144,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -165624,11 +171398,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -165751,7 +171529,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -166226,11 +172006,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -166619,7 +172403,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -166871,11 +172657,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -167009,7 +172799,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -167261,11 +173053,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -167545,7 +173341,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -168177,11 +173975,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -168413,7 +174215,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -168665,11 +174469,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -168803,7 +174611,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -169055,11 +174865,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -169182,7 +174996,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -169657,11 +175473,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -170050,7 +175870,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -170302,11 +176124,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -170440,7 +176266,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -170692,11 +176520,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -170976,7 +176808,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -171608,11 +177442,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -172021,7 +177859,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -172273,11 +178113,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -172411,7 +178255,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -172663,11 +178509,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -172947,7 +178797,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -173579,11 +179431,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -173817,7 +179673,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -174069,11 +179927,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -174207,7 +180069,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -174459,11 +180323,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -174586,7 +180454,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -175061,11 +180931,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -175456,7 +181330,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -175708,11 +181584,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -175846,7 +181726,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -176098,11 +181980,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -176382,7 +182268,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -177014,11 +182902,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -177252,7 +183144,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -177504,11 +183398,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -177642,7 +183540,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -177894,11 +183794,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -178021,7 +183925,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -178496,11 +184402,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -178912,7 +184822,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -179164,11 +185076,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -179302,7 +185218,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -179554,11 +185472,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -179838,7 +185760,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -180470,11 +186394,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -180706,7 +186634,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -180958,11 +186888,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -181096,7 +187030,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -181348,11 +187284,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -181475,7 +187415,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -181950,11 +187892,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -182343,7 +188289,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -182595,11 +188543,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -182733,7 +188685,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -182985,11 +188939,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -183269,7 +189227,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -183901,11 +189861,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -184151,7 +190115,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -184403,11 +190369,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -184541,7 +190511,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -184793,11 +190765,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -184920,7 +190896,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -185395,11 +191373,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -185790,7 +191772,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -186042,11 +192026,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -186180,7 +192168,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -186432,11 +192422,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -186716,7 +192710,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -187348,11 +193344,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -187586,7 +193586,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -187838,11 +193840,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -187976,7 +193982,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -188228,11 +194236,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -188355,7 +194367,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -188830,11 +194844,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -189225,7 +195243,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -189477,11 +195497,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -189615,7 +195639,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -189867,11 +195893,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -190151,7 +196181,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -190783,11 +196815,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -191021,7 +197057,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -191273,11 +197311,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -191411,7 +197453,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -191663,11 +197707,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -191790,7 +197838,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -192265,11 +198315,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -192528,7 +198582,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -192780,11 +198836,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -192918,7 +198978,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -193170,11 +199232,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -193297,7 +199363,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -193772,11 +199840,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -194165,7 +200237,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -194417,11 +200491,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -194555,7 +200633,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -194807,11 +200887,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -195091,7 +201175,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -195723,11 +201809,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -196124,7 +202214,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -196376,11 +202468,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -196514,7 +202610,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -196766,11 +202864,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -197050,7 +203152,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -197682,11 +203786,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -197920,7 +204028,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -198172,11 +204282,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -198310,7 +204424,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -198562,11 +204678,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -198689,7 +204809,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -199164,11 +205286,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -199559,7 +205685,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -199811,11 +205939,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -199949,7 +206081,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -200201,11 +206335,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -200485,7 +206623,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -201117,11 +207257,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -201355,7 +207499,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -201607,11 +207753,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -201745,7 +207895,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -201997,11 +208149,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -202124,7 +208280,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -202599,11 +208757,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -202994,7 +209156,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -203246,11 +209410,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -203384,7 +209552,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -203636,11 +209806,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -203920,7 +210094,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -204552,11 +210728,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -204790,7 +210970,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -205042,11 +211224,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -205180,7 +211366,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -205432,11 +211620,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -205559,7 +211751,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -206034,11 +212228,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -206458,7 +212656,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -206710,11 +212910,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -206848,7 +213052,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -207100,11 +213306,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -207384,7 +213594,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -208016,11 +214228,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -208254,7 +214470,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -208506,11 +214724,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -208644,7 +214866,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -208896,11 +215120,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -209023,7 +215251,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -209498,11 +215728,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -209893,7 +216127,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -210145,11 +216381,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -210283,7 +216523,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -210535,11 +216777,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -210819,7 +217065,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -211451,11 +217699,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -211689,7 +217941,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -211941,11 +218195,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -212079,7 +218337,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -212331,11 +218591,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -212458,7 +218722,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -212933,11 +219199,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -213328,7 +219598,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -213580,11 +219852,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -213718,7 +219994,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -213970,11 +220248,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -214254,7 +220536,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -214886,11 +221170,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -215124,7 +221412,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -215376,11 +221666,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -215514,7 +221808,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -215766,11 +222062,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -215893,7 +222193,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -216368,11 +222670,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -216763,7 +223069,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -217015,11 +223323,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -217153,7 +223465,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -217405,11 +223719,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -217689,7 +224007,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -218321,11 +224641,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], @@ -218559,7 +224883,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -218811,11 +225137,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -218949,7 +225279,9 @@ initialize { "next": Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -219201,11 +225533,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -219328,7 +225664,9 @@ initialize { Object { "attribs": Object { "class": "gio-alert-closeIcon", + "role": "button", "style": "display:none", + "tabindex": "0", }, "children": Array [ Object { @@ -219803,11 +226141,15 @@ initialize { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, "style": undefined, + "tabindex": undefined, }, }, ], diff --git a/packages/components/src/components/alert/alert.tsx b/packages/components/src/components/alert/alert.tsx index 88c741cacd..68161d5377 100644 --- a/packages/components/src/components/alert/alert.tsx +++ b/packages/components/src/components/alert/alert.tsx @@ -1,21 +1,8 @@ -import React, { ReactNode, useState } from 'react'; +import React, { useState } from 'react'; import classnames from 'classnames'; - +import _ from 'lodash'; import { CheckCircleFilled, WarningFilled, InformationFilled, CloseCircleFilled, Close } from '@gio-design/icons'; - -interface AlertProps { - afterClose?: any; - // banner?: boolean; - closeable?: boolean; - colseText?: string | ReactNode; - description?: string | ReactNode; - icon?: ReactNode; - message?: string | ReactNode; - showIcon?: boolean; - type?: string; - onClose?: any; - size?: string; -} +import { AlertProps } from './interfaces'; const Alert: React.FC = (props: AlertProps) => { const [alertStatus, setAlertStatus] = useState(true); @@ -32,7 +19,6 @@ const Alert: React.FC = (props: AlertProps) => { } = props; const getIcon = () => { - const { type, showIcon } = props; switch (type) { case 'success': return ; @@ -72,7 +58,14 @@ const Alert: React.FC = (props: AlertProps) => { {description || null} -
+
{colseText || }
diff --git a/packages/components/src/components/alert/index.tsx b/packages/components/src/components/alert/index.tsx index 15db282c26..96855ac398 100644 --- a/packages/components/src/components/alert/index.tsx +++ b/packages/components/src/components/alert/index.tsx @@ -1,3 +1,4 @@ import Alert from './alert'; +export { AlertProps } from './interfaces'; export default Alert; diff --git a/packages/components/src/components/alert/interfaces.ts b/packages/components/src/components/alert/interfaces.ts new file mode 100644 index 0000000000..a71fe933c1 --- /dev/null +++ b/packages/components/src/components/alert/interfaces.ts @@ -0,0 +1,38 @@ +export interface AlertProps { + /** + 指定警告提示的样式 + */ + type?: 'success' | 'info' | 'warning' | 'error'; + /** + 指定警告的尺寸 + */ + size?: 'small' | 'middle'; + /** + 是否显示关闭按钮 + */ + closeable?: boolean; + /** + 自定义关闭按钮 + */ + colseText?: React.ReactNode; + /** + 警告提示的辅助性文字介绍 + */ + description?: React.ReactNode; + /** + 警告提示内容 + */ + message?: React.ReactNode; + /** + 是否显示辅助图标 + */ + showIcon?: boolean; + /** + 自定义图标,showIcon 为 true 时有效 + */ + icon?: React.ReactNode; + /** + 关闭时触发的回调函数 + */ + onClose?: () => void; +} diff --git a/packages/components/src/components/avatar/Avatar.stories.tsx b/packages/components/src/components/avatar/Avatar.stories.tsx index 068eae60d7..d10af94965 100644 --- a/packages/components/src/components/avatar/Avatar.stories.tsx +++ b/packages/components/src/components/avatar/Avatar.stories.tsx @@ -2,11 +2,11 @@ import React from 'react'; import { Story, Meta } from '@storybook/react/types-6-0'; import Avatar from './index'; -import { AvatarProps } from './interface'; +import { AvatarProps } from './interfaces'; import './style'; export default { - title: 'Components/Basic/Avatar', + title: 'Components/Functional/Avatar', component: Avatar, } as Meta; diff --git a/packages/components/src/components/avatar/Avatar.tsx b/packages/components/src/components/avatar/Avatar.tsx index 6f728c8e5b..a301295423 100644 --- a/packages/components/src/components/avatar/Avatar.tsx +++ b/packages/components/src/components/avatar/Avatar.tsx @@ -1,11 +1,11 @@ import React, { useState, useEffect, useContext, useRef } from 'react'; import classNames from 'classnames'; import { More } from '@gio-design/icons'; +import { isNil } from 'lodash'; import Tooltip from '../tooltip'; -import { AvatarProps } from './interface'; +import { AvatarProps } from './interfaces'; import { ConfigContext } from '../config-provider'; import composeRef from '../../utils/composeRef'; -import { isNil } from 'lodash'; const Avatar = React.forwardRef((props: AvatarProps, ref: React.Ref) => { const { @@ -85,6 +85,7 @@ const Avatar = React.forwardRef((props: AvatarProp ); return renderTooltip( + // eslint-disable-next-line react/jsx-props-no-spreading {renderMore()} {renderAvatar()} diff --git a/packages/components/src/components/avatar/AvatarGroup.tsx b/packages/components/src/components/avatar/AvatarGroup.tsx index 9adc3972e7..7fab3c3543 100644 --- a/packages/components/src/components/avatar/AvatarGroup.tsx +++ b/packages/components/src/components/avatar/AvatarGroup.tsx @@ -2,7 +2,7 @@ import React, { useContext } from 'react'; import classNames from 'classnames'; import _ from 'lodash'; import Avatar from './Avatar'; -import { AvatarGroupProps, UserAvatarType } from './interface'; +import { AvatarGroupProps, UserAvatarType } from './interfaces'; import { ConfigContext } from '../config-provider'; const AvatarGroup: React.FC = (props: AvatarGroupProps) => { @@ -11,20 +11,21 @@ const AvatarGroup: React.FC = (props: AvatarGroupProps) => { const prefixCls = getPrefixCls('avatar'); let children = null; - const renderAvatarGroup = (users: UserAvatarType[]) => - users.map((user, idx) => ( - + const renderAvatarGroup = (sliceUsers: UserAvatarType[]) => + sliceUsers.map((user) => ( + {user.name} )); - const renderAvatarRest = (users: UserAvatarType[]) => ( - {`+${users.length}`} + const renderAvatarRest = (restUsers: UserAvatarType[]) => ( + {`+${restUsers.length}`} ); const classString = classNames(className, `${prefixCls}-group`); if (users.length === 0) { return null; - } else if (users.length <= number) { + } + if (users.length <= number) { children = renderAvatarGroup(users); } else { const sliceUsers = _.slice(users, 0, number - 1); diff --git a/packages/components/src/components/avatar/index.tsx b/packages/components/src/components/avatar/index.tsx index 36391fb166..16035c9159 100644 --- a/packages/components/src/components/avatar/index.tsx +++ b/packages/components/src/components/avatar/index.tsx @@ -2,4 +2,4 @@ import Avatar from './Avatar'; export default Avatar; export { default as AvatarGroup } from './AvatarGroup'; -export { AvatarProps, UserAvatarType, AvatarGroupProps } from './interface'; +export { AvatarProps, UserAvatarType, AvatarGroupProps } from './interfaces'; diff --git a/packages/components/src/components/avatar/interface.ts b/packages/components/src/components/avatar/interfaces.ts similarity index 66% rename from packages/components/src/components/avatar/interface.ts rename to packages/components/src/components/avatar/interfaces.ts index 4373af1338..2edfd26331 100644 --- a/packages/components/src/components/avatar/interface.ts +++ b/packages/components/src/components/avatar/interfaces.ts @@ -13,17 +13,47 @@ export type tooltipPlacement = | 'bottomRight'; export interface AvatarProps { + /** + 设置头像的尺寸大小 + */ size?: 'small' | 'default' | 'large' | 'huge'; droppable?: boolean; + /** + 设置头像的尺寸大小 + */ src?: string; + /** + 是否省略用户名称 + */ omit?: boolean; + /** + 自定义混入 `CSS` 类 + */ className?: string; - children?: string; + /** + 自定义混入 `CSS` 样式 + */ style?: React.CSSProperties; + /** + 气泡框位置,可选 12 个方位 + */ placement?: tooltipPlacement; + /** + 自定义 `CSS` 类前缀 + */ prefixCls?: string; + /** + 用 `Tooltip` 显示用户名 + */ displayTooltip?: boolean; + /** + 自定义气泡框的内容 + */ tooltipTitle?: React.ReactNode; + /** + 设置字符,用作用户头像 + */ + children?: string; } export interface UserAvatarType { diff --git a/packages/components/src/components/button/Button.stories.tsx b/packages/components/src/components/button/Button.stories.tsx index f40bb714f1..e989bb87bc 100644 --- a/packages/components/src/components/button/Button.stories.tsx +++ b/packages/components/src/components/button/Button.stories.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Story, Meta } from '@storybook/react/types-6-0'; import Button from './index'; -import { ButtonProps } from './interface'; +import { ButtonProps } from './interfaces'; import './style'; export default { diff --git a/packages/components/src/components/button/button.tsx b/packages/components/src/components/button/button.tsx index 1cc5153fb5..1a6961a20a 100644 --- a/packages/components/src/components/button/button.tsx +++ b/packages/components/src/components/button/button.tsx @@ -4,7 +4,7 @@ import classNames from 'classnames'; import { LoadingOutlined } from '@gio-design/icons'; import { ConfigContext } from '../config-provider'; import SizeContext from '../config-provider/SizeContext'; -import { ButtonProps } from './interface'; +import { ButtonProps } from './interfaces'; import { cloneElement } from '../../utils/reactNode'; const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/; @@ -20,10 +20,10 @@ function insertSpace(child: React.ReactChild, needInserted: boolean) { } const SPACE = needInserted ? ' ' : ''; if ( - typeof child !== 'string' - && typeof child !== 'number' - && isString(child.type) - && isTwoCNChar(child.props.children) + typeof child !== 'string' && + typeof child !== 'number' && + isString(child.type) && + isTwoCNChar(child.props.children) ) { return cloneElement(child, { children: child.props.children.split('').join(SPACE), @@ -139,7 +139,7 @@ const InternalButton: React.ForwardRefRenderFunction = (pr if (icon && !innerLoading) { iconNode = icon; } else if (innerLoading) { - iconNode = + iconNode = ; } const kids = children || children === 0 ? spaceChildren(children, isNeedInserted() && autoInsertSpace) : null; diff --git a/packages/components/src/components/button/index.tsx b/packages/components/src/components/button/index.tsx index 2b19bf630d..cb99a0a6e7 100644 --- a/packages/components/src/components/button/index.tsx +++ b/packages/components/src/components/button/index.tsx @@ -1,6 +1,6 @@ import Button from './button'; -export { ButtonProps, ButtonType } from './interface'; +export { ButtonProps, ButtonType } from './interfaces'; export { SizeType as ButtonSize } from '../config-provider/SizeContext'; diff --git a/packages/components/src/components/button/interface.tsx b/packages/components/src/components/button/interfaces.tsx similarity index 100% rename from packages/components/src/components/button/interface.tsx rename to packages/components/src/components/button/interfaces.tsx